| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /* components/voyages/Voyages.wxss */
- .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: 160rpx;
- height: 60rpx;
- text-align: center;
- }
- .p10 {
- padding: 10rpx 20rpx;
- }
- .m30a {
- margin: 30rpx auto;
- }
- .list {
- padding: 30rpx;
- font-size: 28rpx;
- }
- .col-1 {
- width: 30vw;
- }
- .col-2 {
- width: 30vw;
- }
- .col-3 {
- width: 15vw;
- }
- .col-4 {
- width: 10vw;
- }
- .bottom-text {
- text-align: center;
- padding-top: 30rpx;
- padding-bottom: 50rpx;
- font-size: 26rpx;
- color: #777;
- }
|