1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /* pages/yichang/index.wxss */
- page{
- padding: 252rpx 0 0;
- background: #f4f4f4;
- }
- .header_view{
- position: fixed;
- top: 0;
- left: 0;
- width: 100vw;
- background: #fff;
- }
- .header_input_view{
- padding: 30rpx;
- }
- .header_input{
- padding: 0 30rpx;
- width: calc(100% - 60rpx);
- height: 80rpx;
- background: #F6F6F6;
- border-radius: 8rpx;
- }
- .label-view{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .label-item{
- flex: 1;
- position: relative;
- height: 88rpx;
- font-size: 28rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .label-ac{
- color: #4699FF;
- }
- .label-ac::after{
- display: block;
- content: '';
- position: absolute;
- bottom: 0;
- left: 30%;
- width: 40%;
- height: 4rpx;
- border-radius: 50rpx;
- background: #4699FF;
- }
- .item_icom{
- width: 24rpx;
- height: 24rpx;
- display: inline-block;
- margin-left: 24rpx;
- }
- .item_view{
- margin: 0 32rpx 24rpx;
- padding: 44rpx 24rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background: #fff;
- border-radius: 16rpx;
- }
- .item_left{
- flex: 1;
- }
- .item_left>view:nth-child(1){
- font-size: 28rpx;
- color: #333;
- margin-bottom: 20rpx;
- }
- .item_left>view:nth-child(2){
- font-size: 26rpx;
- color: #666;
- }
|