index.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. page {
  2. background-color: #fff !important;
  3. }
  4. .ceiling {
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. z-index: 1000;
  9. background-color: #fff;
  10. padding: 20rpx;
  11. padding-bottom: 0;
  12. width: 100%;
  13. box-sizing: border-box;
  14. }
  15. .modal-label {
  16. padding: 20rpx;
  17. background-color: #fff;
  18. }
  19. .order-card {
  20. box-sizing: border-box;
  21. position: relative;
  22. }
  23. .order-card-main {
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: center;
  27. }
  28. .order-card-main>image {
  29. flex-shrink: 0;
  30. width: 180rpx;
  31. height: 180rpx;
  32. border-radius: 20rpx;
  33. }
  34. .order-card-content {
  35. display: flex;
  36. flex-direction: column;
  37. flex-shrink: 1;
  38. width: 100%;
  39. }
  40. .listTitle {
  41. font-size: 28rpx;
  42. overflow: hidden;
  43. font-weight: 600;
  44. text-overflow: ellipsis;
  45. display: -webkit-box;
  46. /* height: 84rpx; */
  47. -webkit-line-clamp: 2;
  48. -webkit-box-orient: vertical;
  49. }
  50. .photo-date-list {
  51. display: flex;
  52. align-items: center;
  53. color: #595757;
  54. }
  55. .photo-date-list-title {
  56. box-sizing: border-box;
  57. padding: 10rpx 0 28rpx 0;
  58. text-align: center;
  59. }
  60. .date-tabs-wrap {
  61. flex: 1;
  62. overflow: auto;
  63. -webkit-overflow-scrolling: touch;
  64. }
  65. .date-img-wrap {
  66. max-height: 1330rpx;
  67. }
  68. .date-tabs {
  69. position: relative;
  70. padding: 0rpx 0 18rpx 0;
  71. }
  72. .date-tabs-item {
  73. display: inline-block;
  74. font-size: 24rpx;
  75. line-height: 20rpx;
  76. margin-left: 40rpx;
  77. text-align: center;
  78. }
  79. .scoreImg {
  80. width: 100%;
  81. text-align: justify;
  82. /* margin-bottom: 90rpx; */
  83. /* padding-bottom: 280rpx; */
  84. }
  85. /* 多选框按钮 */
  86. .scoreImg .icon {
  87. position: absolute;
  88. top: -8rpx;
  89. right: -8rpx;
  90. z-index: 555;
  91. background: #fff;
  92. border-radius: 50%;
  93. font-size: 36rpx;
  94. color: #EE3A43;
  95. z-index: 2;
  96. }
  97. .btn-bottom {
  98. width: calc(100% - 40rpx);
  99. position: fixed;
  100. bottom: 0;
  101. display: flex;
  102. justify-content: space-around;
  103. background: #fff;
  104. padding: 20rpx;
  105. font-size: 36rpx;
  106. z-index: 999;
  107. }
  108. .btn-bottom view:first-child {
  109. border: 1rpx solid #EE3A43;
  110. color: #EE3A43;
  111. line-height: 2;
  112. padding: 0 20rpx;
  113. border-radius: 10rpx;
  114. }
  115. .btn-bottom view:last-child {
  116. color: #fff;
  117. line-height: 2;
  118. padding: 0 40rpx;
  119. background: #EE3A43;
  120. border-radius: 10rpx;
  121. flex: 1;
  122. margin-left: 40rpx;
  123. text-align: center;
  124. }
  125. .save-photo {
  126. position: fixed;
  127. right: 20rpx;
  128. bottom: 200rpx;
  129. color: #EE3A43;
  130. background: #fff;
  131. border: 1rpx solid #EE3A43;
  132. border-radius: 50%;
  133. font-size: 28rpx;
  134. width: 80rpx;
  135. height: 80rpx;
  136. text-align: center;
  137. padding: 10rpx;
  138. z-index: 99;
  139. }
  140. /* 瀑布流布局 */
  141. .content {
  142. text-align: justify;
  143. }
  144. .item {
  145. display: inline-block;
  146. width: 98%;
  147. border-radius: 20rpx;
  148. overflow: hidden;
  149. position: relative;
  150. }
  151. .item image {
  152. width: 100%;
  153. }
  154. #left,
  155. #right {
  156. display: inline-block;
  157. vertical-align: top;
  158. width: 50%;
  159. }