| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /* 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
- }
- .tabsview {
- width: 100rpx;
- height: 60rpx;
- }
- .p10 {
- padding: 10rpx;
- }
- .m30a {
- margin: 30rpx auto;
- }
- .list {
- padding: 20rpx;
- font-size: 28rpx;
- }
- .col-1 {
- width: 30vw;
- }
- .col-2 {
- width: 30vw;
- }
- .col-3 {
- width: 10vw;
- }
- .col-4 {
- width: 10vw;
- }
|