voyages.wxss 758 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* components/voyages/Voyages.wxss */
  2. .df {
  3. display: flex;
  4. }
  5. .jcsb {
  6. justify-content: space-between;
  7. }
  8. .jcc {
  9. justify-content: center;
  10. }
  11. .jcfe {
  12. justify-content: flex-end;
  13. }
  14. .jcsa {
  15. justify-content: space-around;
  16. }
  17. .aic {
  18. align-items: center;
  19. }
  20. .search {
  21. border: 1rpx solid grey;
  22. width: 80%;
  23. background: #fff;
  24. }
  25. .tabs {
  26. width: 100%;
  27. height: 100rpx;
  28. background: #fff;
  29. box-shadow: rgb(209, 206, 206) 5rpx 5rpx 10rpx;
  30. border-bottom: 2rpx solid grey;
  31. }
  32. .tabsview {
  33. width: 100rpx;
  34. height: 60rpx;
  35. }
  36. .p10 {
  37. padding: 10rpx 20rpx;
  38. }
  39. .m30a {
  40. margin: 30rpx auto;
  41. }
  42. .list {
  43. padding: 20rpx;
  44. font-size: 28rpx;
  45. }
  46. .col-1 {
  47. width: 30vw;
  48. }
  49. .col-2 {
  50. width: 30vw;
  51. }
  52. .col-3 {
  53. width: 10vw;
  54. }
  55. .col-4 {
  56. width: 10vw;
  57. }