Merge remote-tracking branch 'origin/dev' into dev
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 231 KiB |
@ -0,0 +1,90 @@
|
|||||||
|
.gender-info{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.gender-input {
|
||||||
|
padding: 0.15rem 0.3rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
border-bottom: 1px solid #F5F5F5;
|
||||||
|
height: 0.78rem;
|
||||||
|
}
|
||||||
|
.gender-inputBox {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size:0.28rem;
|
||||||
|
font-family:PingFang SC;
|
||||||
|
font-weight:500;
|
||||||
|
color:rgba(41,41,41,1)
|
||||||
|
}
|
||||||
|
.gender-inputBox>img{
|
||||||
|
width: 0.3rem;
|
||||||
|
height: 0.3rem;
|
||||||
|
margin-right: 0.23rem;
|
||||||
|
}
|
||||||
|
.gender-sel{
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.radio {
|
||||||
|
color: #292929;
|
||||||
|
font-size: 0.28rem;
|
||||||
|
font-weight: bold;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-left: 0.82rem;
|
||||||
|
}
|
||||||
|
.radio>span{
|
||||||
|
margin-right: 0.2rem;
|
||||||
|
}
|
||||||
|
.radio input[type="radio"] {
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
.radio input[type="radio"] + .radio-label:before {
|
||||||
|
margin-top: 0.12rem;
|
||||||
|
content: '';
|
||||||
|
background: #f4f4f4;
|
||||||
|
border-radius: 100%;
|
||||||
|
border: 1px solid #b4b4b4;
|
||||||
|
display: inline-block;
|
||||||
|
width: 0.28rem;
|
||||||
|
height: 0.28rem;
|
||||||
|
position: relative;
|
||||||
|
top: -0.2em;
|
||||||
|
/* margin-right: 1rem; */
|
||||||
|
vertical-align: top;
|
||||||
|
cursor: pointer;
|
||||||
|
text-align: center;
|
||||||
|
-webkit-transition: all 250ms ease;
|
||||||
|
transition: all 250ms ease;
|
||||||
|
}
|
||||||
|
.radio input[type="radio"]:checked + .radio-label:before {
|
||||||
|
background-color: #3197EE;
|
||||||
|
box-shadow: inset 0 0 0 4px #f4f4f4;
|
||||||
|
}
|
||||||
|
.radio input[type="radio"]:focus + .radio-label:before {
|
||||||
|
outline: none;
|
||||||
|
border-color: #3197EE;
|
||||||
|
}
|
||||||
|
.radio input[type="radio"]:disabled + .radio-label:before {
|
||||||
|
box-shadow: inset 0 0 0 4px #f4f4f4;
|
||||||
|
border-color: #b4b4b4;
|
||||||
|
background: #b4b4b4;
|
||||||
|
}
|
||||||
|
.radio input[type="radio"] + .radio-label:empty:before {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
.save{
|
||||||
|
width:5rem;
|
||||||
|
height:0.8rem;
|
||||||
|
background:rgba(33,177,235,1);
|
||||||
|
border-radius:0.4rem;
|
||||||
|
font-size:0.32rem;
|
||||||
|
font-family:PingFang SC;
|
||||||
|
font-weight:500;
|
||||||
|
color:rgba(255,255,255,1);
|
||||||
|
line-height: 0.8rem;
|
||||||
|
text-align: center;
|
||||||
|
margin: 0.3rem auto 0 auto;
|
||||||
|
}
|
@ -0,0 +1,48 @@
|
|||||||
|
.name-info{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.name-input {
|
||||||
|
padding: 0.15rem 0.3rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
border-bottom: 1px solid #F5F5F5;
|
||||||
|
height: 0.78rem;
|
||||||
|
}
|
||||||
|
.name-inputBox {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size:0.28rem;
|
||||||
|
font-family:PingFang SC;
|
||||||
|
font-weight:500;
|
||||||
|
color:rgba(41,41,41,1)
|
||||||
|
}
|
||||||
|
.name-inputBox>img{
|
||||||
|
width: 0.3rem;
|
||||||
|
height: 0.3rem;
|
||||||
|
margin-right: 0.23rem;
|
||||||
|
}
|
||||||
|
.name-input>input{
|
||||||
|
font-size:0.28rem;
|
||||||
|
font-family:PingFang SC;
|
||||||
|
font-weight:400;
|
||||||
|
color:rgba(169,169,169,1);
|
||||||
|
outline: 0;
|
||||||
|
border: 0;
|
||||||
|
height: 0.5rem;
|
||||||
|
width: 4rem;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.save{
|
||||||
|
width:5rem;
|
||||||
|
height:0.8rem;
|
||||||
|
background:rgba(33,177,235,1);
|
||||||
|
border-radius:0.4rem;
|
||||||
|
font-size:0.32rem;
|
||||||
|
font-family:PingFang SC;
|
||||||
|
font-weight:500;
|
||||||
|
color:rgba(255,255,255,1);
|
||||||
|
line-height: 0.8rem;
|
||||||
|
text-align: center;
|
||||||
|
margin: 0.3rem auto 0 auto;
|
||||||
|
}
|
@ -0,0 +1,61 @@
|
|||||||
|
.remove-info{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.remove-input {
|
||||||
|
padding: 0.15rem 0.3rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
border-bottom: 1px solid #F5F5F5;
|
||||||
|
height: 0.78rem;
|
||||||
|
font-size: 0.28rem;
|
||||||
|
}
|
||||||
|
.remove-inputBox {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size:0.28rem;
|
||||||
|
font-family:PingFang SC;
|
||||||
|
font-weight:500;
|
||||||
|
color:rgba(41,41,41,1)
|
||||||
|
}
|
||||||
|
.remove-inputBox>img{
|
||||||
|
width: 0.3rem;
|
||||||
|
height: 0.3rem;
|
||||||
|
margin-right: 0.23rem;
|
||||||
|
}
|
||||||
|
.remove-inputBox>input{
|
||||||
|
width: 1.8rem;
|
||||||
|
height: 0.5rem;
|
||||||
|
border: 0;
|
||||||
|
outline: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-size: 0.28rem;
|
||||||
|
margin-left: 0.33rem;
|
||||||
|
}
|
||||||
|
.code{
|
||||||
|
width:1.84rem;
|
||||||
|
height:0.6rem;
|
||||||
|
background:rgba(33,177,235,1);
|
||||||
|
border-radius:0.3rem;
|
||||||
|
font-size:0.15rem;
|
||||||
|
font-family:PingFang SC;
|
||||||
|
font-weight:400;
|
||||||
|
color:rgba(255,255,255,1);
|
||||||
|
text-align: center;
|
||||||
|
line-height: 0.6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.save{
|
||||||
|
width:5rem;
|
||||||
|
height:0.8rem;
|
||||||
|
background:rgba(33,177,235,1);
|
||||||
|
border-radius:0.4rem;
|
||||||
|
font-size:0.32rem;
|
||||||
|
font-family:PingFang SC;
|
||||||
|
font-weight:500;
|
||||||
|
color:rgba(255,255,255,1);
|
||||||
|
line-height: 0.8rem;
|
||||||
|
text-align: center;
|
||||||
|
margin: 0.3rem auto 0 auto;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
After Width: | Height: | Size: 1000 B |
After Width: | Height: | Size: 998 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 620 B |
After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 602 B |