2024-01-10 14:50:40 +08:00
|
|
|
@function px2rem($px) {
|
|
|
|
@return $px / 75+rem;
|
2023-07-11 15:27:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
width: 100%;
|
|
|
|
background: #F3F5FA;
|
|
|
|
}
|
|
|
|
|
|
|
|
.back {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 9;
|
2024-01-10 14:50:40 +08:00
|
|
|
width: px2rem(56);
|
|
|
|
height: px2rem(56);
|
|
|
|
left: px2rem(40);
|
2023-07-11 15:27:08 +08:00
|
|
|
top: 0.2rem;
|
|
|
|
// display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
width: 100%;
|
2024-01-10 14:50:40 +08:00
|
|
|
margin-top: px2rem(40);
|
|
|
|
margin-bottom: px2rem(32);
|
2023-07-11 15:27:08 +08:00
|
|
|
text-align: center;
|
|
|
|
color: #1F1B4F;
|
2024-01-10 14:50:40 +08:00
|
|
|
font-size: px2rem(36);
|
2023-07-11 15:27:08 +08:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
box-sizing: border-box;
|
2024-01-10 14:50:40 +08:00
|
|
|
font-size: px2rem(28);
|
2023-07-11 15:27:08 +08:00
|
|
|
|
|
|
|
&::placeholder {
|
2024-01-10 14:50:40 +08:00
|
|
|
font-size: px2rem(28);
|
2023-07-11 15:27:08 +08:00
|
|
|
color: #8A8CAB;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.box1 {
|
2024-01-10 14:50:40 +08:00
|
|
|
width: px2rem(686);
|
|
|
|
height: px2rem(208);
|
2023-07-11 15:27:08 +08:00
|
|
|
background: #fff;
|
2024-01-10 14:50:40 +08:00
|
|
|
border-radius: px2rem(20);
|
2023-07-11 15:27:08 +08:00
|
|
|
box-sizing: border-box;
|
2024-01-10 14:50:40 +08:00
|
|
|
padding: 0 px2rem(40);
|
|
|
|
margin: 0 auto px2rem(24);
|
2023-07-11 15:27:08 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
div {
|
|
|
|
width: 100%;
|
2024-01-10 14:50:40 +08:00
|
|
|
height: px2rem(103);
|
|
|
|
line-height: px2rem(103);
|
|
|
|
border-bottom: px2rem(1) solid #EBEEF5;
|
2023-07-11 15:27:08 +08:00
|
|
|
display: flex;
|
|
|
|
|
|
|
|
span {
|
|
|
|
flex: 3;
|
|
|
|
height: 100%;
|
2024-01-10 14:50:40 +08:00
|
|
|
font-size: px2rem(28);
|
2023-07-11 15:27:08 +08:00
|
|
|
color: #1F1B4F;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
flex: 7;
|
|
|
|
height: 100%;
|
|
|
|
text-align: right;
|
2024-01-10 14:50:40 +08:00
|
|
|
font-size: px2rem(28);
|
2023-07-11 15:27:08 +08:00
|
|
|
color: #1F1B4F;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.box2 {
|
2024-01-10 14:50:40 +08:00
|
|
|
width: px2rem(686);
|
|
|
|
height: px2rem(416);
|
2023-07-11 15:27:08 +08:00
|
|
|
background: #fff;
|
2024-01-10 14:50:40 +08:00
|
|
|
border-radius: px2rem(20);
|
2023-07-11 15:27:08 +08:00
|
|
|
box-sizing: border-box;
|
2024-01-10 14:50:40 +08:00
|
|
|
padding: 0 px2rem(40);
|
|
|
|
margin: 0 auto px2rem(24);
|
2023-07-11 15:27:08 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
div {
|
|
|
|
width: 100%;
|
2024-01-10 14:50:40 +08:00
|
|
|
height: px2rem(103);
|
|
|
|
line-height: px2rem(103);
|
|
|
|
border-bottom: px2rem(1) solid #EBEEF5;
|
2023-07-11 15:27:08 +08:00
|
|
|
display: flex;
|
|
|
|
|
|
|
|
span {
|
|
|
|
flex: 3;
|
|
|
|
height: 100%;
|
2024-01-10 14:50:40 +08:00
|
|
|
font-size: px2rem(28);
|
2023-07-11 15:27:08 +08:00
|
|
|
color: #1F1B4F;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
flex: 7;
|
|
|
|
height: 100%;
|
|
|
|
text-align: right;
|
2024-01-10 14:50:40 +08:00
|
|
|
font-size: px2rem(28);
|
2023-07-11 15:27:08 +08:00
|
|
|
color: #1F1B4F;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.box3 {
|
2024-01-10 14:50:40 +08:00
|
|
|
width: px2rem(686);
|
|
|
|
height: px2rem(416);
|
2023-07-11 15:27:08 +08:00
|
|
|
background: #fff;
|
2024-01-10 14:50:40 +08:00
|
|
|
border-radius: px2rem(20);
|
2023-07-11 15:27:08 +08:00
|
|
|
box-sizing: border-box;
|
2024-01-10 14:50:40 +08:00
|
|
|
padding: 0 px2rem(40);
|
|
|
|
margin: 0 auto px2rem(40);
|
2023-07-11 15:27:08 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
p {
|
2024-01-10 14:50:40 +08:00
|
|
|
font-size: px2rem(28);
|
2023-07-11 15:27:08 +08:00
|
|
|
color: #1F1B4F;
|
2024-01-10 14:50:40 +08:00
|
|
|
margin-top: px2rem(32);
|
2023-07-11 15:27:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.idBox {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2024-01-10 14:50:40 +08:00
|
|
|
margin-top: px2rem(32);
|
2023-07-11 15:27:08 +08:00
|
|
|
|
|
|
|
.z,
|
|
|
|
.f {
|
2024-01-10 14:50:40 +08:00
|
|
|
width: px2rem(288);
|
|
|
|
height: px2rem(236);
|
2023-07-11 15:27:08 +08:00
|
|
|
background: #F3F5FA;
|
2024-01-10 14:50:40 +08:00
|
|
|
border-radius: px2rem(20);
|
2023-07-11 15:27:08 +08:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.documents {
|
|
|
|
position: absolute;
|
2024-01-10 14:50:40 +08:00
|
|
|
width: px2rem(232);
|
|
|
|
height: px2rem(144);
|
2023-07-11 15:27:08 +08:00
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
2024-01-10 14:50:40 +08:00
|
|
|
top: px2rem(28);
|
2023-07-11 15:27:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon_camera {
|
|
|
|
position: absolute;
|
2024-01-10 14:50:40 +08:00
|
|
|
width: px2rem(80);
|
|
|
|
height: px2rem(80);
|
2023-07-11 15:27:08 +08:00
|
|
|
left: 50%;
|
2024-01-10 14:50:40 +08:00
|
|
|
top: px2rem(60);
|
2023-07-11 15:27:08 +08:00
|
|
|
transform: translateX(-50%);
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
position: absolute;
|
|
|
|
color: #8A8CAB;
|
2024-01-10 14:50:40 +08:00
|
|
|
font-size: px2rem(24);
|
2023-07-11 15:27:08 +08:00
|
|
|
left: 50%;
|
2024-01-10 14:50:40 +08:00
|
|
|
top: px2rem(180);
|
2023-07-11 15:27:08 +08:00
|
|
|
transform: translateX(-50%);
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload {
|
|
|
|
position: absolute;
|
2024-01-10 14:50:40 +08:00
|
|
|
width: px2rem(232);
|
|
|
|
height: px2rem(144);
|
2023-07-11 15:27:08 +08:00
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
2024-01-10 14:50:40 +08:00
|
|
|
top: px2rem(28);
|
2023-07-14 15:27:25 +08:00
|
|
|
z-index: 2;
|
2023-07-11 15:27:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.but {
|
2024-01-10 14:50:40 +08:00
|
|
|
width: px2rem(606);
|
|
|
|
height: px2rem(96);
|
|
|
|
line-height: px2rem(96);
|
|
|
|
border-radius: px2rem(96);
|
|
|
|
margin: 0 auto px2rem(48);
|
2023-07-11 15:27:08 +08:00
|
|
|
text-align: center;
|
2024-01-10 14:50:40 +08:00
|
|
|
font-size: px2rem(32);
|
2023-07-11 15:27:08 +08:00
|
|
|
color: #FFFFFF;
|
|
|
|
background: linear-gradient(90deg, #EEDCFF 0%, #DEE4FF 50%, #CCF8F9 100%);
|
|
|
|
}
|
2024-01-10 14:50:40 +08:00
|
|
|
|
|
|
|
.active {
|
2023-07-11 15:27:08 +08:00
|
|
|
background: linear-gradient(90deg, #5AECFA 0%, #9DB4FF 49%, #CF70FF 100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.rule {
|
2024-01-10 14:50:40 +08:00
|
|
|
width: px2rem(654);
|
|
|
|
margin: 0 auto px2rem(50);
|
2023-07-11 15:27:08 +08:00
|
|
|
color: #8A8CAB;
|
2024-01-10 14:50:40 +08:00
|
|
|
font-size: px2rem(28);
|
2023-07-11 15:27:08 +08:00
|
|
|
|
|
|
|
p {
|
2024-01-10 14:50:40 +08:00
|
|
|
margin-bottom: px2rem(10);
|
2023-07-11 15:27:08 +08:00
|
|
|
line-height: 0.45rem;
|
|
|
|
}
|
2024-01-10 14:50:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mainlandInfo {
|
2024-01-10 18:49:52 +08:00
|
|
|
position: fixed;
|
2024-01-10 14:50:40 +08:00
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 99;
|
|
|
|
background: rgba(0, 0, 0, .6);
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
.mainlandInfo_in {
|
|
|
|
width: px2rem(638);
|
|
|
|
height: px2rem(372);
|
|
|
|
border-radius: px2rem(40);
|
|
|
|
background: #fff;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-top: 1.6rem;
|
|
|
|
position: relative;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
|
|
|
p {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
color: #1F1B4F;
|
|
|
|
font-size: px2rem(28);
|
|
|
|
margin-bottom: px2rem(24);
|
|
|
|
|
|
|
|
b {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
color: #9168FA;
|
|
|
|
font-size: px2rem(32);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.close,
|
|
|
|
.ok {
|
|
|
|
position: absolute;
|
|
|
|
width: px2rem(248);
|
|
|
|
height: px2rem(88);
|
|
|
|
line-height: px2rem(88);
|
|
|
|
border-radius: px2rem(88);
|
|
|
|
color: #fff;
|
|
|
|
font-size: px2rem(32);
|
|
|
|
top: px2rem(236);
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close {
|
|
|
|
background: #E6E6F0;
|
|
|
|
left: px2rem(56);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ok {
|
|
|
|
left: px2rem(334);
|
|
|
|
background: linear-gradient(90deg, #5AECFA 0%, #9DB4FF 49%, #CF70FF 100%);
|
|
|
|
}
|
|
|
|
}
|
2023-07-11 15:27:08 +08:00
|
|
|
}
|