mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-22 01:16:37 +08:00
refactor: 手撸前端登录页面
This commit is contained in:
@@ -1,210 +1,205 @@
|
||||
@charset "UTF-8";
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/*公共CSS*/
|
||||
.box {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background-color: #1d4359;
|
||||
}
|
||||
|
||||
.box .content {
|
||||
box-shadow: 0px 1px 6px #3b4859;
|
||||
}
|
||||
|
||||
.box .content .login-wrapper h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.box .content .login-wrapper .login-form .form-item {
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.box .content .login-wrapper .login-form .form-item span {
|
||||
display: block;
|
||||
margin: 5px 20px;
|
||||
font-weight: 100;
|
||||
}
|
||||
|
||||
.box .content .login-wrapper .login-form .form-item .input-item {
|
||||
width: 100%;
|
||||
border-radius: 40px;
|
||||
padding: 20px;
|
||||
box-sizing: border-box;
|
||||
font-size: 20px;
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
.box .content .login-wrapper .login-form .form-item .input-item:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.box .content .login-wrapper .login-form .login-btn {
|
||||
width: 100%;
|
||||
border-radius: 40px;
|
||||
color: #fff;
|
||||
border: 0;
|
||||
font-weight: 100;
|
||||
margin-top: 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.box .content .login-wrapper .divider {
|
||||
width: 100%;
|
||||
margin: 20px 0;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.box .content .login-wrapper .divider span:nth-child(1) {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.box .content .login-wrapper .divider span:nth-child(3) {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.box .content .login-wrapper .divider .line {
|
||||
display: inline-block;
|
||||
max-width: 30%;
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.box .content .login-wrapper .divider .divider-text {
|
||||
vertical-align: middle;
|
||||
margin: 0px 20px;
|
||||
line-height: 0px;
|
||||
display: inline-block;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.box .content .login-wrapper .other-login-wrapper {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.box .content .login-wrapper .other-login-item {
|
||||
cursor: pointer;
|
||||
border: 1px solid #d6dee4;
|
||||
padding: 10px;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
/*一般大于手机的尺寸CSS*/
|
||||
@media (min-width: 767px) {
|
||||
.box {
|
||||
background-color: #f0f2f5;
|
||||
}
|
||||
.box .content {
|
||||
width: 85vw;
|
||||
height: 90vh;
|
||||
background: url("@/assets/login_images/login_two.jpg") no-repeat;
|
||||
background-size: 90% 100%;
|
||||
position: absolute;
|
||||
right: 15%;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
border-radius: 20px;
|
||||
background-color: #fff;
|
||||
}
|
||||
.box .content .login-wrapper {
|
||||
width: 25vw;
|
||||
position: absolute;
|
||||
right: 15%;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
.box .content .login-wrapper h1 {
|
||||
text-align: center;
|
||||
font-size: 45px;
|
||||
color: #516473;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.box .content .login-wrapper .login-form {
|
||||
margin: 10px 0;
|
||||
}
|
||||
.box .content .login-wrapper .login-form .form-item span {
|
||||
color: #516473;
|
||||
}
|
||||
.box .content .login-wrapper .login-form .form-item .input-item {
|
||||
height: 60px;
|
||||
border: 1px solid #d6dee4;
|
||||
}
|
||||
.box .content .login-wrapper .login-form .login-btn {
|
||||
height: 50px;
|
||||
background-color: #3b4859;
|
||||
font-size: 20px;
|
||||
}
|
||||
.box .content .login-wrapper .divider .line {
|
||||
border-bottom: 1px solid #d6dee4;
|
||||
}
|
||||
.box .content .login-wrapper .other-login-item {
|
||||
border-radius: 20px;
|
||||
}
|
||||
.box .content .login-wrapper .other-login-item img {
|
||||
cursor: pointer;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
/*手机端CSS*/
|
||||
@media (max-width: 768px) {
|
||||
.box .content {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background: url("@/assets/login_images/login_bg_phone.png") no-repeat;
|
||||
background-size: 100% 100%;
|
||||
.container {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: center;
|
||||
}
|
||||
.box .content .login-wrapper {
|
||||
width: 70%;
|
||||
height: 60%;
|
||||
padding-top: 15%;
|
||||
}
|
||||
.box .content .login-wrapper h1 {
|
||||
font-size: 30px;
|
||||
color: #fff;
|
||||
}
|
||||
.box .content .login-wrapper .login-form .form-item {
|
||||
margin: 10px 0;
|
||||
}
|
||||
.box .content .login-wrapper .login-form .form-item span {
|
||||
color: #71818d;
|
||||
}
|
||||
.box .content .login-wrapper .login-form .form-item .input-item {
|
||||
height: 30px;
|
||||
border: 1px solid #71818d;
|
||||
background-color: transparent;
|
||||
color: #fff;
|
||||
}
|
||||
.box .content .login-wrapper .login-form .login-btn {
|
||||
height: 40px;
|
||||
background-color: #eb5f5d;
|
||||
font-size: 16px;
|
||||
}
|
||||
.box .content .login-wrapper .divider .line {
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
.box .content .login-wrapper .divider .divider-text {
|
||||
color: #fff;
|
||||
}
|
||||
.box .content .login-wrapper .other-login-item {
|
||||
border-radius: 15px;
|
||||
}
|
||||
.box .content .login-wrapper .other-login-item img {
|
||||
cursor: pointer;
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
}
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
background-color: #272162;
|
||||
}
|
||||
|
||||
.div-content
|
||||
{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.div-left
|
||||
{
|
||||
width: 414px;
|
||||
height:522px;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
.div-right
|
||||
{
|
||||
width: 414px;
|
||||
height:522px;
|
||||
background-color:#4E2665;
|
||||
}
|
||||
.left-container
|
||||
{
|
||||
padding: 40px 60px;
|
||||
|
||||
}
|
||||
.title{
|
||||
margin: 5px;
|
||||
font-size: 35px;
|
||||
}
|
||||
.title-1 span
|
||||
{
|
||||
font-size: 13px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.title-1
|
||||
{
|
||||
color: #7F438C;
|
||||
|
||||
font-weight: normal;
|
||||
}
|
||||
.title-2
|
||||
{
|
||||
color: #7F438C;
|
||||
font-weight:bolder;
|
||||
}
|
||||
.input-content
|
||||
{
|
||||
margin: 25px 0 10px 0;
|
||||
}
|
||||
.input
|
||||
{
|
||||
margin: 15px 0;
|
||||
}
|
||||
.input input:focus {
|
||||
outline: none;
|
||||
}
|
||||
.input input
|
||||
{
|
||||
width: 100%;
|
||||
border: 1px solid #000;
|
||||
border-top: 0;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
height: 25px;
|
||||
|
||||
}
|
||||
.input p
|
||||
{
|
||||
font-weight: bold;
|
||||
margin: 5px 0;
|
||||
}
|
||||
.left-btn
|
||||
{
|
||||
margin: 20px 0;
|
||||
}
|
||||
.left-btn button
|
||||
{
|
||||
border: 1px solid #000;
|
||||
width: 100px;
|
||||
height: 35px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.btn-login
|
||||
{
|
||||
background-color: #EF6562;
|
||||
color: #FFFFFF;
|
||||
|
||||
}
|
||||
.btn-reg
|
||||
{
|
||||
margin-left: 20px;
|
||||
background-color: #FFFFFF;
|
||||
|
||||
}
|
||||
.left-lable
|
||||
{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 12px;
|
||||
}
|
||||
.left-lable label{
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.bottom-div
|
||||
{
|
||||
font-size: 12px;
|
||||
font-weight:bold;
|
||||
margin-top: 30px;
|
||||
|
||||
}
|
||||
.bottom-div span
|
||||
{
|
||||
margin-left: 10px;
|
||||
|
||||
}
|
||||
.bottom-div span img
|
||||
{
|
||||
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.code{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-end;
|
||||
}
|
||||
.code-input
|
||||
{
|
||||
width: 60% !important;
|
||||
}
|
||||
.code-img
|
||||
{
|
||||
margin-left: 20px;
|
||||
border: 0.8px solid #000;
|
||||
width: 100px;
|
||||
height: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
.div-bottom
|
||||
{
|
||||
position: absolute;
|
||||
bottom: 30px;
|
||||
color:#CAD2D9;
|
||||
font-size: 12px;
|
||||
}
|
||||
.div-bottom span{
|
||||
margin: 0 5px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.phone-code{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-end;
|
||||
}
|
||||
.phone-code-input
|
||||
{
|
||||
width: 60% !important;
|
||||
}
|
||||
.phone-code-btn
|
||||
{
|
||||
border: 0.8px solid #000;
|
||||
text-align: center;
|
||||
width: 100px;
|
||||
height: 30px;
|
||||
background-color: #EF6562;
|
||||
color: #FFFFFF;
|
||||
cursor: pointer;
|
||||
margin-left: 20px;
|
||||
}
|
||||
.register-title
|
||||
{
|
||||
color: #7F438C;
|
||||
font-weight:bolder;
|
||||
font-size: 30px;
|
||||
}
|
||||
.div-left-register
|
||||
{
|
||||
width: 414px;
|
||||
height:522px;
|
||||
background-color: #FFFFFF;
|
||||
|
||||
}
|
||||
.div-right-register
|
||||
{
|
||||
width: 414px;
|
||||
height:522px;
|
||||
background-color:#4E2665;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user