1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /* required by usingComponents */
- /* pages/ride_rule/ride_rule.wxss */
- page {
- background-color: #fcfcfa;
- }
- .top {
- width: 100%;
- height: auto;
- }
- .content {
- margin: 0 20rpx;
- }
- .title {
- background-color: #2b2676;
- height: 80rpx;
- line-height: 80rpx;
- width: 220rpx;
- text-align: center;
- font-size: 36rpx;
- color: #ffffff;
- font-weight: 600;
- border-top-right-radius: 20rpx;
- }
- .child {
- background-color: #ffffff;
- border-radius: 10rpx;
- padding: 20rpx;
- margin-bottom: 50rpx;
- box-shadow: 0 0 15px #e6e4e4;
- }
- .title2 {
- color: #2b2676;
- font-size: 32rpx;
- font-weight: 600;
- margin: 50rpx 0;
- }
- .text {
- font-size: 28rpx;
- line-height: 40rpx;
- color: #333333;
- }
- .list {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- flex-direction: row;
- }
- .item {
- flex: 0 0 30%;
- margin-top: 30rpx;
- height: 70rpx;
- text-align: center;
- line-height: 70rpx;
- border: solid 1rpx var(--globleColor);
- color: var(--globleColor);
- font-size: 26rpx;
- }
|