You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <div class="login_container"> <LoginForm /> <p class="copyright">CopyRight@ xxxxxx公司</p> <div class="shutdown"> <div class="group"> <img :src="Shutdown" class="icon" alt="" /> <p class="text">关机</p> </div> <div class="group"> <img :src="Restart" class="icon" alt="" /> <p class="text">重新启动</p> </div> </div> </div> </template>
<script setup> import Restart from '@/assets/img/login/restart.png' import Shutdown from '@/assets/img/login/shutdown.png' import LoginForm from 'cpns/LoginForm.vue' </script>
<style lang="scss" scoped> .login_container { background: url(../assets/img/login/back.png) no-repeat; background-size: 100% 100%; width: 1280px; height: 800px; display: flex; justify-content: center; padding-top: 162px; box-sizing: border-box; position: relative; .copyright { position: absolute; left: 50%; transform: translateX(-50%); bottom: 56px; font-family: Zona Pro; font-size: 10px; font-weight: normal; letter-spacing: 0.06em; color: #9e9e9e; } .shutdown { position: absolute; right: 38px; bottom: 42px; display: flex; align-items: center; .group { display: flex; align-items: center; cursor: pointer; .icon { width: 35px; height: 35px; margin-right: 10px; } .text { font-family: Source Han Sans CN; font-size: 12px; font-weight: 350; letter-spacing: 0.06em; color: #ffffff; } &:nth-child(odd) { margin-right: 40px; } } } } </style>
|