| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /* pages/voyageManage/myDaily/examine/examine.wxss */
- .box {
- width: 80vw;
- border: 1rpx solid grey;
- border-radius: 20rpx;
- margin: 0 auto;
- padding: 10rpx 20rpx;
- }
- .line {
- font-size: 28rpx;
- margin: 10rpx 20rpx;
- }
- .line-full-item {
- display: flex;
- justify-content: space-between;
- }
- line-full-title,
- .line-full-text {
- width: 50%;
- }
- .line-full-text {
- color: #444;
- }
- .tabsview {
- font-size: 28rpx;
- text-align: center;
- color: #333;
- border-radius: 10rpx;
- padding: 10rpx 20rpx;
- }
- .reject {
- font-size: 28rpx;
- text-align: center;
- color: #333;
- padding: 10rpx 20rpx;
- background: #d90024;
- border-radius: 10rpx;
- color: #fff;
- }
|