detail.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* components/voyages/Voyages.wxss */
  2. page {
  3. background: #fff;
  4. }
  5. .df {
  6. display: flex;
  7. }
  8. .jcsb {
  9. justify-content: space-between;
  10. }
  11. .jcc {
  12. justify-content: center;
  13. }
  14. .jcfe {
  15. justify-content: flex-end;
  16. }
  17. .jcsa {
  18. justify-content: space-around;
  19. }
  20. .aic {
  21. align-items: center;
  22. }
  23. .search {
  24. border: 1rpx solid grey;
  25. width: 80%;
  26. background: #fff;
  27. }
  28. .tabs {
  29. width: 100%;
  30. height: 100rpx;
  31. background: #fff;
  32. box-shadow: rgb(209, 206, 206) 5rpx 5rpx 10rpx;
  33. border-bottom: 2rpx solid grey;
  34. }
  35. .tabsview {
  36. width: 130rpx;
  37. height: 50rpx;
  38. font-size: 28rpx;
  39. text-align: center;
  40. color: #333;
  41. }
  42. .line {
  43. display: flex;
  44. justify-content: space-between;
  45. align-items: center;
  46. margin-bottom: 30rpx;
  47. color: #333;
  48. }
  49. .line-item {
  50. display: flex;
  51. align-items: center;
  52. justify-content: space-between;
  53. width: 45%;
  54. }
  55. .line-full-item {
  56. width: 100%;
  57. display: flex;
  58. align-items: center;
  59. }
  60. .line-full-title {
  61. width: 25%;
  62. }
  63. .line-title,
  64. .line-text {
  65. width: 50%;
  66. }
  67. .line-title,
  68. .line-full-title {
  69. color: #444;
  70. }
  71. .type2 .line-full-title {
  72. width: 50%;
  73. }