today.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /* pages/today/today.wxss */
  2. page{
  3. background: #F7F7F7;
  4. }
  5. .page_top{
  6. background: #fff;
  7. margin-bottom: 20rpx;
  8. position: relative;
  9. }
  10. .container {
  11. position: relative;
  12. display: flex;
  13. flex-direction: column;
  14. align-items: center;
  15. justify-content: space-between;
  16. box-sizing: border-box;
  17. height: 50vh;
  18. background: #fff;
  19. z-index: 9;
  20. }
  21. ec-canvas {
  22. width: 100%;
  23. height: 100%;
  24. position: relative;
  25. z-index: 99;
  26. }
  27. .name{
  28. font-size:36rpx;
  29. font-weight: 500;
  30. margin-bottom: 20rpx;
  31. }
  32. .name>text{
  33. color: #AAAAAA;
  34. font-size: 22rpx;
  35. border: 1px solid #AAAAAA;
  36. border-radius: 4rpx;
  37. font-weight: 400;
  38. padding: 0 4rpx;
  39. position: relative;
  40. top: -3rpx;
  41. }
  42. .name view{
  43. float: right;
  44. color: #D94B24;
  45. font-size: 28rpx;
  46. text-align: center;
  47. position: relative;
  48. top: -5rpx;
  49. border:1px solid #D94B24;
  50. line-height: 48rpx;
  51. width: 120rpx;
  52. border-radius: 8rpx;
  53. }
  54. .info{
  55. font-size: 30rpx;
  56. padding: 10rpx 24rpx;
  57. display: flex;
  58. }
  59. .info view{
  60. color: #666;
  61. width: 85%;
  62. vertical-align: top;
  63. }
  64. .info label{
  65. font-weight: 500;
  66. color: #333;
  67. }
  68. .player{
  69. background: #fff;
  70. padding: 30rpx;
  71. }
  72. .info .tag{
  73. font-size: 28rpx;
  74. color: #CE994F;
  75. border: 1px solid #CE994F;
  76. border-radius: 8rpx;
  77. margin-right: 8rpx;
  78. font-weight: 400;
  79. padding: 0 8rpx;
  80. }
  81. .infos{
  82. background: #FFF4F5;
  83. border-radius: 16rpx;
  84. padding-top: 24rpx;
  85. }
  86. .bottom{
  87. line-height: 92rpx;
  88. padding: 0 24rpx;
  89. border-radius: 0px 0px 8px 8px;
  90. margin-top: 20rpx;
  91. font-size: 28rpx;
  92. background: linear-gradient(124deg, #FEEAEC 0%, #FFAEAF 100%);
  93. }
  94. .bottom text{
  95. font-size: 36rpx;
  96. margin-right: 30rpx;
  97. font-weight: 500;
  98. }
  99. .legend{
  100. position: absolute;
  101. right: 30rpx;
  102. top: 0;
  103. z-index: 999999;
  104. }
  105. .legend view{
  106. width: 230rpx;
  107. line-height: 64rpx;
  108. background: #F7F7F7;
  109. border-radius: 8rpx;
  110. text-align: center;
  111. font-size: 28rpx;
  112. margin-bottom: 10rpx;
  113. }
  114. .imgs,.content{
  115. margin-bottom: 20rpx;
  116. background: #fff;
  117. padding: 30rpx;
  118. }
  119. .img{
  120. display: inline-block;
  121. width: 224rpx;
  122. height: 224rpx;
  123. border-radius: 8rpx;
  124. margin-right: 8rpx;
  125. margin-bottom: 8rpx;
  126. }
  127. .title{
  128. font-weight: 500;
  129. font-size: 32rpx;
  130. margin-bottom: 24rpx;
  131. }
  132. .content{
  133. font-size: 30rpx;
  134. margin-bottom: 24rpx;
  135. line-height: 48rpx;
  136. }
  137. .days_stock{
  138. background: #fff;
  139. padding: 30rpx;
  140. }
  141. .stock{
  142. border-bottom: 1px solid #f5f5f5;
  143. padding-bottom: 30rpx;
  144. margin-bottom: 30rpx;
  145. }
  146. .stock .info{
  147. padding: 10rpx 0;
  148. }
  149. .stock .imgs{
  150. padding: 30rpx 0 0;
  151. margin: 0;
  152. }
  153. .title navigator{
  154. float: right;
  155. color: #999;
  156. font-size: 28rpx;
  157. }
  158. .title image{
  159. width: 32rpx;
  160. position: relative;
  161. top: 7rpx;
  162. }