123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .form-box {
- width: 100%;
- height: 100%;
- padding: 0 10rpx;
- box-sizing: border-box;
- }
- .header {
- float: left;
- width: 100%;
- height: 64rpx;
- line-height: 64rpx;
- background: #F6F7F8;
- border-radius: 8rpx 8rpx 0px 0px;
- margin-top: 12rpx;
- box-sizing: border-box;
- border-bottom: 2rpx solid #E8E8E8;
- }
- .row {
- float: left;
- width: 100%;
- height: 58rpx;
- line-height: 58rpx;
- box-sizing: border-box;
- border-bottom: 2rpx solid #E8E8E8;
- }
- .header>view,
- .row>view {
- float: left;
- text-align: left;
- }
- .header>view {
- font-size: 24rpx;
- color: rgba(0, 0, 0, 0.85);
- }
- .row>view {
- font-size: 20rpx;
- color: rgba(0, 0, 0, 0.65);
- }
- .active {
- background-color: #FAFAFA !important;
- }
|