1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /* pages/bikeList/bikeList.wxss */
- page {
- background-color: rgba(238, 238, 238, 1);
- }
- .top {
- padding-top: 74rpx;
- padding-bottom: 62rpx;
- background-color: rgba(255, 226, 220, 1);
- display: flex;
- }
- .top-left,
- .top-right {
- flex: 1;
- text-align: center;
- }
- .text1 {
- font-size: 24rpx;
- margin-bottom: 16rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #841800;
- line-height: 36rpx;
- opacity: 0.8;
- }
- .text2 {
- font-size: 40rpx;
- font-family: PingFang SC;
- font-weight: 800;
- color: #841800;
- }
- .text3 {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #841800;
- }
- .content {
- padding: 16rpx 30rpx;
- }
- .list {
- position: relative;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #202020;
- padding: 45rpx 50rpx;
- background: #FFFFFF;
- border-radius: 10rpx;
- }
- .list-text {
- margin: 20rpx 0;
- }
- .detail{
- text-align: center;
- position: absolute;
- top: 33rpx;
- right: 35rpx;
- width: 142rpx;
- height: 54rpx;
- line-height: 54rpx;
- background: #FF6545;
- border-radius: 0rpx 27rpx 27rpx 26rpx;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFEFE;
-
- }
|