voyages.wxss 717 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. }
  31. .tabsview {
  32. width: 100rpx;
  33. height: 60rpx;
  34. }
  35. .p10 {
  36. padding: 10rpx;
  37. }
  38. .m30a {
  39. margin: 30rpx auto;
  40. }
  41. .list {
  42. padding: 20rpx;
  43. font-size: 28rpx;
  44. }
  45. .col-1 {
  46. width: 30vw;
  47. }
  48. .col-2 {
  49. width: 30vw;
  50. }
  51. .col-3 {
  52. width: 10vw;
  53. }
  54. .col-4 {
  55. width: 10vw;
  56. }