12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- @import "../../public/page/order-item.wxss";
- .bg-view {
- width: 200%;
- height: 100%;
- display: flex;
- }
- /* tab-view */
- .tab-view {
- width: 750rpx;
- height: 100rpx;
- background-color: white;
- position: fixed;
- top: 0;
- display: flex;
- flex-direction: column;
- }
- .tab-view>view:first-child {
- width: 100%;
- height: 100rpx;
- display: flex;
- }
- .tab-view>view:first-child>view {
- font-size: 32rpx;
- line-height: 100rpx;
- width: 50%;
- text-align: center;
- }
- .tab-view>view:last-child>view {
- width: 50%;
- height: 4rpx;
- display: flex;
- }
- .tab-view>view:last-child>view>view {
- width: 120rpx;
- height: 4rpx;
- margin: 0 auto;
- background-color: #3296FB;
- }
- .tab-text-s {
- color: #3296FB;
- }
- .tab-text-n {
- color: #666666;
- }
|