You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
166 lines
3.3 KiB
166 lines
3.3 KiB
/* 答题卡 */
|
|
.answer-sheet-page .header {
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
padding: 27rpx 30rpx;
|
|
border-radius: 12rpx;
|
|
margin: 20rpx 30rpx;
|
|
background-color: #ffffff;
|
|
font-size: 30rpx;
|
|
color: #666;
|
|
}
|
|
|
|
.answer-sheet-page .header navigator {
|
|
padding-left: 44rpx;
|
|
background: left center/30rpx 30rpx no-repeat;
|
|
}
|
|
|
|
.answer-sheet-page .header navigator {
|
|
background-image: url(getAssetsPath("/wap/first/zsff/images/question01.png"));
|
|
}
|
|
|
|
.answer-sheet-page .header navigator.time {
|
|
background-image: url(getAssetsPath("/wap/first/zsff/images/question02.png"));
|
|
color: #ff6b00;
|
|
}
|
|
|
|
.answer-sheet-page .header image {
|
|
width: 30rpx;
|
|
height: 30rpx;
|
|
margin-right: 14rpx;
|
|
vertical-align: middle;
|
|
pointer-events: none;
|
|
-webkit-touch-callout: none;
|
|
}
|
|
|
|
.answer-sheet-page .main {
|
|
border-radius: 12rpx;
|
|
margin: 20rpx 30rpx 166rpx;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.answer-sheet-page .main-hd {
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
padding: 20rpx 30rpx;
|
|
font-size: 28rpx;
|
|
color: #666;
|
|
}
|
|
|
|
.answer-sheet-page .main-hd .list {
|
|
display: flex;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.answer-sheet-page .main-hd .item {
|
|
position: relative;
|
|
padding-left: 30rpx;
|
|
}
|
|
|
|
.answer-sheet-page .main-hd .item::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
width: 22rpx;
|
|
height: 22rpx;
|
|
border: 1px solid #ddd;
|
|
border-radius: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.answer-sheet-page .main-hd .item:nth-child(1)::before {
|
|
border-color: #f2f8ff;
|
|
background-color: #f2f8ff;
|
|
}
|
|
|
|
.answer-sheet-page .main-hd .item:nth-child(2)::before {
|
|
border-color: #ebf9eb;
|
|
background-color: #ebf9eb;
|
|
}
|
|
|
|
.answer-sheet-page .main-hd .item:nth-child(3)::before {
|
|
border-color: #fff0e5;
|
|
background-color: #fff0e5;
|
|
}
|
|
|
|
.answer-sheet-page .main-hd .item:last-child::before {
|
|
border-color: #ddd;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.answer-sheet-page .main-hd .item + .item {
|
|
margin-left: 22rpx;
|
|
}
|
|
|
|
.answer-sheet-page .main-bd {
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
padding: 34rpx 15rpx 30rpx;
|
|
border-top: 1px dashed #e3e3e3;
|
|
}
|
|
|
|
.answer-sheet-page .main-bd navigator {
|
|
width: 72rpx;
|
|
height: 72rpx;
|
|
border: 1px solid #dddddd;
|
|
border-radius: 50%;
|
|
margin: 18rpx 19rpx;
|
|
font-size: 30rpx;
|
|
line-height: 72rpx;
|
|
text-align: center;
|
|
color: #666;
|
|
}
|
|
|
|
.answer-sheet-page .main-bd navigator.blue {
|
|
border-color: #f2f8ff;
|
|
background-color: #f2f8ff;
|
|
color: #2c8eff;
|
|
}
|
|
|
|
.answer-sheet-page .main-bd navigator.green {
|
|
border-color: #ebf9eb;
|
|
background-color: #ebf9eb;
|
|
color: #52a452;
|
|
}
|
|
|
|
.answer-sheet-page .main-bd navigator.red {
|
|
border-color: #fff0e5;
|
|
background-color: #fff0e5;
|
|
color: #ff6b00;
|
|
}
|
|
|
|
.answer-sheet-page .footer {
|
|
position: fixed;
|
|
right: 105rpx;
|
|
bottom: 60rpx;
|
|
left: 105rpx;
|
|
|
|
display: flex;
|
|
}
|
|
|
|
.answer-sheet-page .footer .btn {
|
|
flex: 1;
|
|
height: 86rpx;
|
|
border-radius: 43rpx;
|
|
background-color: #2c8eff;
|
|
font-family: inherit;
|
|
font-weight: normal;
|
|
font-size: 30rpx;
|
|
line-height: 86rpx;
|
|
text-align: center;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.answer-sheet-page .footer .btn + .btn {
|
|
margin-left: 30rpx;
|
|
background-color: #ff6b00;
|
|
}
|
|
|
|
|
|
|