visit-agenda.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* pages/visit-agenda/visit-agenda.wxss */
  2. .container {
  3. color: #ffffff;
  4. padding: 30rpx;
  5. display: block;
  6. width: 100%;
  7. height: 100%;
  8. background-size: 100% 100%;
  9. }
  10. .backBtn {
  11. width: 60rpx;
  12. height: 60rpx;
  13. margin-top: 40rpx;
  14. }
  15. .agenda-title {
  16. font-size: 40rpx;
  17. width: 95%;
  18. margin-top: 90rpx;
  19. margin-left: 10rpx;
  20. border-bottom: solid 1rpx #ffffff50;
  21. padding-bottom: 10rpx;
  22. }
  23. .english-name {
  24. font-size: 22rpx;
  25. color: #ffffff50;
  26. text-align: left;
  27. margin-top: 10rpx;
  28. }
  29. .agenda-name {
  30. margin-top: 10rpx;
  31. line-height: 60rpx;
  32. font-size: 50rpx;
  33. color: #2BFFE9;
  34. border-bottom: solid 1rpx #ffffff50;
  35. padding-bottom: 10rpx;
  36. display: inline-flex;
  37. letter-spacing: 8rpx;
  38. }
  39. .now-time {
  40. margin-top: 30rpx;
  41. font-size: 22rpx;
  42. }
  43. .arrangement-list {
  44. /* height: 300rpx; */
  45. margin-top: 60rpx;
  46. }
  47. .arrangement-list textarea {
  48. width: 100%;
  49. height: 800rpx;
  50. word-break: break-all;
  51. }
  52. .item:nth-child(odd) {
  53. background-image: var(--bg--);
  54. color: white;
  55. height: 120rpx;
  56. line-height: 120rpx;
  57. font-size: 28rpx;
  58. width: 100%;
  59. margin-top: 20rpx;
  60. display: inline-flex;
  61. background-size: 100% 100%;
  62. }
  63. .item:nth-child(even) {
  64. background-color: #07309C;
  65. color: white;
  66. height: 120rpx;
  67. line-height: 120rpx;
  68. font-size: 28rpx;
  69. width: 100%;
  70. margin-top: 20rpx;
  71. border-radius: 10rpx;
  72. display: inline-flex;
  73. background-image: none;
  74. background-size: 100% 100%;
  75. }
  76. .item .time {
  77. margin-left: 10rpx;
  78. width: 25%;
  79. }
  80. .item .name {
  81. width: 25%;
  82. }
  83. .item .vertical {
  84. border-left: solid 1rpx #ffffff;
  85. margin-right: 20rpx;
  86. height: 80rpx;
  87. margin-top: 20rpx;
  88. }
  89. .item .desc {
  90. width: 40%;
  91. line-height: 35rpx;
  92. height: 70rpx;
  93. font-size: 22rpx;
  94. word-wrap: break-all;
  95. margin-top: 30rpx;
  96. color: #ffffff60;
  97. overflow: hidden;
  98. text-overflow: ellipsis;
  99. align-items: center;
  100. display: -webkit-box;
  101. -webkit-line-clamp: 2;
  102. -webkit-box-orient: vertical;
  103. }