| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /* components/voyages/Voyages.wxss */
- page {
- background: #fff;
- }
- .df {
- display: flex;
- }
- .jcsb {
- justify-content: space-between;
- }
- .jcc {
- justify-content: center;
- }
- .jcfe {
- justify-content: flex-end;
- }
- .jcsa {
- justify-content: space-around;
- }
- .aic {
- align-items: center;
- }
- .search {
- border: 1rpx solid grey;
- width: 80%;
- background: #fff;
- }
- .tabs {
- width: 100%;
- height: 100rpx;
- background: #fff;
- box-shadow: rgb(209, 206, 206) 5rpx 5rpx 10rpx;
- border-bottom: 2rpx solid grey;
- }
- .tabsview {
- width: 130rpx;
- height: 50rpx;
- font-size: 28rpx;
- text-align: center;
- color: #333;
- }
|