2025-03-24 21:52:49 +08:00

63 lines
1.2 KiB
CSS

.login-container{
height: 100%;
}
.header{
width: 100%;
height: 7%;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 2px solid #ff6633;
}
.header-back-btn{
width: 10%;
color: #ff6633;
font-size: 22px;
}
.header-title {
width: 90%;
text-align: center;
font-size: 18px;
font-family: Hiragino Sans GB,Arial,Helvetica,"\5B8B\4F53",sans-serif;
}
.content{
height: 93%;
background-color: #f7f5f5;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.login-form {
height: 85%;
}
.login-radio {
height: 15%;
width: 100%;
display: flex;
align-items: start;
}
input[type="radio"] + label::before {
content: "\a0"; /*不换行空格*/
display: inline-block;
vertical-align: middle;
font-size: 12px;
width: 0.7em;
height: 0.7em;
margin-right: .4em;
border-radius: 50%;
border: 2px solid #F63;
text-indent: .15em;
line-height: 1;
padding: .2em;
}
input[type="radio"]:checked + label::before {
background-color: #F63;
background-clip: content-box;
padding: .2em;
}
input[type="radio"] {
opacity: 0;
}