53 lines
866 B
CSS
53 lines
866 B
CSS
html,body{
|
|
background:#fff;
|
|
}
|
|
section{
|
|
padding:0 0.83rem;
|
|
margin:auto;
|
|
}
|
|
.form{
|
|
display:flex;
|
|
display:-webkit-flex;
|
|
align-items: center;
|
|
justify-content:space-between;
|
|
width:100%;
|
|
box-sizing:border-box;
|
|
height:3.25rem;
|
|
border: 1px solid #dad9da;
|
|
padding: 0rem 0.375rem;
|
|
margin:auto;
|
|
border-radius:0.25rem;
|
|
}
|
|
.form .title{
|
|
font-size:0.83rem;
|
|
color:#737373;
|
|
width:6.25rem;
|
|
height:2.5rem;
|
|
line-height:2.5rem;
|
|
border-right:1px solid #dad9da;
|
|
}
|
|
.form .title img{
|
|
padding-right:0.83rem;
|
|
width:1.25rem;
|
|
height:1.25rem;
|
|
vertical-align:text-top;
|
|
}
|
|
.pwd-con{
|
|
border-box:border-box;
|
|
font-size:0.83rem;
|
|
width:70%;
|
|
padding:0 0.5rem;
|
|
display:flex;
|
|
display:-webkit-flex;
|
|
align-items: center;
|
|
justify-content:space-between;
|
|
}
|
|
.confirm {
|
|
text-align:center;
|
|
background:#e4e4e4;
|
|
border: none;
|
|
}
|
|
.confirm input{
|
|
display:inline-block;
|
|
width:100%;
|
|
} |