123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- page {
- font-size: 30rpx;
- color: #131D34;
- }
- .container {
- padding: 0 46rpx 100rpx;
- margin-top: 16rpx;
- }
- .report-form {
- display: flex;
- }
- .report-form picker {
- flex: 1;
- }
- .report-form .icon {
- position: absolute;
- right: 20rpx;
- color: rgba(0,0,0,0.3);
- font-size: 20rpx;
- }
- .form-item {
- height: 80rpx;
- line-height: 76rpx;
- border: 2rpx solid #e5e5e5;
- padding-left: 22rpx;
- flex: 1;
- border-radius: 8rpx;
- font-weight: bold;
- position: relative;
- }
- .form-item:first-child {
- margin-right: 20rpx;
- }
- .type-list {
- display: flex;
- width: 100%;
- margin-top: 24rpx;
- align-items: center;
- }
- .type-item {
- flex: 1;
- color: #909090;
- font-size: 34rpx;
- text-align: center;
- font-weight: bold;
- }
- .type-item.active {
- color: #131D34;
- font-size: 40rpx;
- position: relative;
- }
- .type-item.active::after {
- content: '';
- display: block;
- width: 20px;
- height: 2px;
- background: #17D2D2;
- position: absolute;
- bottom: -5px;
- left: 50%;
- margin-left: -10px;
- }
|