theme.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. .page-theme-light {
  2. background: #f4f4f4;
  3. color: #000;
  4. .c-g-white {
  5. background: #ffffff !important;
  6. }
  7. .k-pink {
  8. background-color: #FDEAD2 !important;
  9. }
  10. .info-card {
  11. background-color: #ffffff !important;
  12. }
  13. .hub-title {
  14. color: #333;
  15. }
  16. .hub-content-b {
  17. color: #333;
  18. }
  19. .hub-content-g {
  20. color: #999;
  21. }
  22. .u-cell__title-text {
  23. color: #333 !important;
  24. }
  25. .k-cell {
  26. border-top: 1px solid #f4f4f5 !important;
  27. }
  28. .gray-border-nt {
  29. border-top: 1px solid #f0f0f0;
  30. }
  31. .menu-list {
  32. .u-list-item {
  33. background: #fff;
  34. }
  35. }
  36. .tags {
  37. border-top: 1px solid #ddd;
  38. > view {
  39. .u-tag {
  40. background: #e0edf9;
  41. }
  42. }
  43. }
  44. .default-tag {
  45. .u-tag {
  46. background: #fff;
  47. border-color: #ccc;
  48. .u-icon__icon {
  49. color: #666 !important;
  50. }
  51. .u-tag__text {
  52. color: #666 !important;
  53. }
  54. }
  55. }
  56. .recomend-tips, .recommend-border {
  57. .u-tag {
  58. background: transparent;
  59. border-color: #3b9cff;
  60. .u-icon__icon {
  61. color: #3b9cff !important;
  62. font-size: 12px !important;
  63. }
  64. .u-tag__text {
  65. color: #3b9cff !important;
  66. }
  67. }
  68. }
  69. .white-fixed {
  70. border-top: 1px solid #ddd;
  71. .tags {
  72. border-top: 0;
  73. }
  74. background: #fff;
  75. }
  76. .news-tags {
  77. button {
  78. border: 1px solid #ccc;
  79. color: #666;
  80. }
  81. }
  82. .select-popup {
  83. > .main {
  84. background: #fff;
  85. color: #000;
  86. }
  87. }
  88. .share-btn {
  89. background: #eee !important;
  90. }
  91. .u-icon__icon {
  92. color: #666 !important;
  93. }
  94. .searchmark-list {
  95. .title {
  96. color: #999;
  97. }
  98. .item {
  99. background: #fff;
  100. }
  101. }
  102. }
  103. .page-theme-dark {
  104. background: #000000;
  105. color: #fff;
  106. .c-g-white {
  107. background: #191919 !important;
  108. }
  109. .k-pink {
  110. background-color: #FF6600 !important;
  111. }
  112. .info-card {
  113. background-color: #191919 !important;
  114. }
  115. .hub-title {
  116. color: #fff;
  117. }
  118. .hub-content-b {
  119. color: #fff;
  120. }
  121. .hub-content-g {
  122. color: #eee;
  123. }
  124. .u-cell__title-text {
  125. color: #fff !important;
  126. }
  127. .k-cell {
  128. border-top: 1px solid #333 !important;
  129. }
  130. .gray-border-nt {
  131. border-top: 1px solid #333;
  132. }
  133. .menu-list {
  134. .u-list-item {
  135. background: #191919;
  136. }
  137. }
  138. .tags {
  139. border-top: 1px solid #333;
  140. > view {
  141. .u-tag {
  142. background: #132833;
  143. }
  144. }
  145. }
  146. .default-tag {
  147. .u-tag {
  148. background: #000;
  149. border-color: #ccc;
  150. .u-icon__icon {
  151. color: #999 !important;
  152. }
  153. .u-tag__text {
  154. color: #999 !important;
  155. }
  156. }
  157. }
  158. .recomend-tips, .recommend-border {
  159. .u-tag {
  160. background: #000;
  161. border-color: #ccc;
  162. .u-icon__icon {
  163. color: #999 !important;
  164. font-size: 12px !important;
  165. }
  166. .u-tag__text {
  167. color: #999 !important;
  168. }
  169. }
  170. }
  171. .white-fixed {
  172. border-top: 1px solid #333;
  173. .tags {
  174. border-top: 0;
  175. }
  176. background: #191919;
  177. }
  178. .news-tags {
  179. button {
  180. border: 1px solid #ccc;
  181. background: #000;
  182. color: #fff;
  183. }
  184. }
  185. .select-popup {
  186. > .main {
  187. background: #222;
  188. color: #fff;
  189. }
  190. .picker-view {
  191. background: rgba(0,0,0,.01)
  192. }
  193. }
  194. .share-btn {
  195. background: #333 !important;
  196. }
  197. .u-icon__icon {
  198. color: #999 !important;
  199. }
  200. .searchmark-list {
  201. .title {
  202. color: #999;
  203. }
  204. .item {
  205. background: #333;
  206. }
  207. }
  208. }