...
|
...
|
@@ -97,4 +97,78 @@ |
|
|
color: #d0021b;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.my-edit-address-page {
|
|
|
position: absolute;
|
|
|
bottom: 0;
|
|
|
top: pxToRem(90px);
|
|
|
width: 100%;
|
|
|
color: #d0d0d0;
|
|
|
background: #f0f0f0;
|
|
|
|
|
|
.edit-address {
|
|
|
padding: 0 pxToRem(30px);
|
|
|
background: #fff;
|
|
|
font-size: pxToRem(30px);
|
|
|
line-height: pxToRem(88px);
|
|
|
border-bottom: 1px solid #e0e0e0;
|
|
|
|
|
|
label {
|
|
|
display: block;
|
|
|
position: relative;
|
|
|
|
|
|
&:after {
|
|
|
content: "";
|
|
|
position: absolute;
|
|
|
right: pxToRem(-30px);
|
|
|
bottom: 0;
|
|
|
width: pxToRem(610px);
|
|
|
height: 0;
|
|
|
border-top: 1px solid #e0e0e0;
|
|
|
}
|
|
|
|
|
|
&:last-of-type:after {
|
|
|
content: none;
|
|
|
}
|
|
|
|
|
|
.iconfont {
|
|
|
position: absolute;
|
|
|
right: 0;
|
|
|
top: 0;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
input, textarea {
|
|
|
position: absolute;
|
|
|
top: 0;
|
|
|
right: 0;
|
|
|
width: pxToRem(400px);
|
|
|
height: pxToRem(88px);
|
|
|
color: #444;
|
|
|
padding: 0;
|
|
|
border: none;
|
|
|
-webkit-appearance: none;
|
|
|
}
|
|
|
|
|
|
.address {
|
|
|
height: pxToRem(88px) * 2;
|
|
|
}
|
|
|
|
|
|
textarea {
|
|
|
height: pxToRem(58px) * 2;
|
|
|
padding: pxToRem(20px) pxToRem(10px);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.submit {
|
|
|
margin: pxToRem(30px) auto 0;
|
|
|
width: pxToRem(470px);
|
|
|
height: pxToRem(88px);
|
|
|
color: #fff;
|
|
|
background: #444;
|
|
|
text-align: center;
|
|
|
font-size: pxToRem(32px);
|
|
|
line-height: pxToRem(88px);
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|