Files
income_payments_applet/pages/signUpPage/signUpPage.wxss
T

155 lines
2.3 KiB
Plaintext

/* 报名页面 */
page {
background-color: #F5F5F5;
}
.form-wrap {
width: 100wh;
background-color: #fff;
padding: 10px;
border: 1px solid #eee;
border-radius: 10px;
}
.wrap {
padding: 10px;
box-sizing: border-box;
margin-bottom: 20px;
}
.form-item {
width: 100%;
display: flex;
justify-content: space-between;
height: 40px;
padding: 10rpx 20rpx;
box-sizing: border-box;
}
.form-item input {
text-align: right;
}
.form-item-radio {
margin-top: 20px;
width: 100%;
display: flex;
flex-direction: column;
padding: 10rpx 20rpx;
box-sizing: border-box;
}
.radio-label {
margin-bottom: 20px;
}
.item-label {
width: 120px;
}
.text-right {
text-align: right;
}
.btn-wrap {
padding: 0 20rpx;
margin: 20rpx 0;
line-height: 80rpx;
}
.btn-ok {
width: 100% !important;
height: 80rpx;
border-radius: 4px;
background-color: #069F99;
font-weight: 400;
color: #fff;
font-size: 16px;
letter-spacing: 1px;
}
.validate::before {
content: '*';
font-size: 18px;
color: red;
position: absolute;
left: 40rpx;
}
/* 用作模块的view 目的是少些判断 */
.form-item-template {
margin-top: 20px;
}
/* 弹框中的面板信息 */
.detail-page {
height: 100%;
display: flex;
flex-direction: column;
}
.detail-page>.flex-content {
padding: 20px 55.66rpx 0;
background-color: #F9F9FB;
flex: 1;
overflow: auto;
}
.detail-page .top-notice {
font-weight: bold;
text-align: center;
font-size: 16px;
white-space: pre-wrap;
margin-bottom: 5px;
}
.detail-page .item-view {
display: flex;
align-items: center;
height: 40px;
padding: 10rpx 20rpx;
box-sizing: border-box;
}
.detail-page .item-view .label-box {
flex-basis: 90px;
}
.detail-page .item-view .value-box {
flex: 1;
}
/* 下面的按钮 */
.btn-view {
height: 163rpx;
display: flex;
align-items: center;
/* background-color: #F7F7F7; */
padding: 0 29.33rpx;
}
.btn-view button {
line-height: 100%;
font-size: 16px;
letter-spacing: 2px;
}
.btn-view button+button {
margin-left: 30rpx;
background-color: #069f99;
color: #fff;
border: 0.66rpx solid #F7F7F7;
padding: 31rpx 0;
flex: 1;
width: 0;
}
.btn-view button.cancel {
color: #EA434F;
background-color: #fff;
border: 0.66rpx solid #F7F7F7;
padding: 31rpx 0;
width: 196.66rpx;
}