113 lines
2.3 KiB
CSS
113 lines
2.3 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
word-break: break-word;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: unset;
|
|
}
|
|
body {
|
|
background-color: #eef2f5;
|
|
}
|
|
.flexflex {
|
|
display: flex;
|
|
}
|
|
.flexcenter {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.flexjcenter {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.flexacenter {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.flex1 {
|
|
flex: 1;
|
|
}
|
|
.signInBox-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 10005;
|
|
}
|
|
.signInBox-mask .signInBox {
|
|
width: 1060px;
|
|
height: 658px;
|
|
background-color: #fff;
|
|
border-radius: 20px;
|
|
position: relative;
|
|
filter: drop-shadow(0 -5px 0 #f7c308);
|
|
}
|
|
.signInBox-mask .signInBox .signInBox-head {
|
|
position: relative;
|
|
height: 64px;
|
|
border-bottom: 1px dotted #d7d7d7;
|
|
}
|
|
.signInBox-mask .signInBox .signInBox-head .header-bi {
|
|
width: 83px;
|
|
height: 99px;
|
|
position: absolute;
|
|
top: -61px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
.signInBox-mask .signInBox .signInBox-head .header-halo {
|
|
width: 160px;
|
|
height: 154px;
|
|
position: absolute;
|
|
top: -89px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
.signInBox-mask .signInBox .signInBox-head .header-cross {
|
|
width: 18px;
|
|
height: 18px;
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
cursor: pointer;
|
|
}
|
|
.signInBox-mask .signInBox .signInBox-content .left-box {
|
|
width: 538px;
|
|
padding: 20px 30px;
|
|
border-right: 1px dotted #d7d7d7;
|
|
}
|
|
.signInBox-mask .signInBox .signInBox-content .left-box .content-header {
|
|
font-size: 15px;
|
|
color: #555555;
|
|
line-height: 40px;
|
|
}
|
|
.signInBox-mask .signInBox .signInBox-content .left-box .content-header .bi-img {
|
|
width: 25px;
|
|
height: 30px;
|
|
margin-right: 7px;
|
|
}
|
|
.signInBox-mask .signInBox .signInBox-content .left-box .content-header .bi-value {
|
|
font-family: Arial-Black, "Arial Black", sans-serif;
|
|
font-weight: 900;
|
|
font-style: normal;
|
|
font-size: 28px;
|
|
color: #000000;
|
|
margin-right: 7px;
|
|
}
|
|
.signInBox-mask .signInBox .signInBox-content .left-box .content-header .bi-text {
|
|
font-size: 15px;
|
|
color: #555555;
|
|
line-height: normal;
|
|
margin-top: 8px;
|
|
}
|
|
.signInBox-mask .signInBox .signInBox-content .left-box .content-header .bi-rule {
|
|
margin-left: auto;
|
|
}
|