newsSquare.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .loadingBox.data-v-6ca52d46 {
  28. width: 100%;
  29. height: 100%;
  30. display: flex;
  31. align-items: center;
  32. justify-content: center;
  33. background-color: red;
  34. }
  35. .addNewsBtn.data-v-6ca52d46 {
  36. position: fixed;
  37. width: 56px;
  38. height: 56px;
  39. right: 15px;
  40. border-radius: 50%;
  41. background-color: #3466EB;
  42. color: #FFFFFF;
  43. display: flex;
  44. flex-direction: column;
  45. align-items: center;
  46. bottom: 150px;
  47. z-index: 150;
  48. }
  49. .addNewsBtn .addIcon.data-v-6ca52d46 {
  50. font-size: 30px;
  51. line-height: 30px;
  52. }
  53. .addNewsBtn .addText.data-v-6ca52d46 {
  54. font-size: 12px;
  55. }
  56. .searchModal.data-v-6ca52d46 {
  57. position: absolute;
  58. top: 44px;
  59. right: 0;
  60. bottom: 0;
  61. left: 0;
  62. z-index: 200;
  63. background-color: #fff;
  64. box-sizing: border-box;
  65. padding: 0 15px;
  66. }
  67. .searchModal .textTips.data-v-6ca52d46 {
  68. display: flex;
  69. align-items: center;
  70. justify-content: space-between;
  71. margin-top: 15px;
  72. }
  73. .searchModal .textTips .del.data-v-6ca52d46 {
  74. width: 32rpx;
  75. height: 32rpx;
  76. }
  77. .searchModal .serachBox.data-v-6ca52d46 {
  78. display: flex;
  79. flex-wrap: wrap;
  80. }
  81. .searchModal .serachBox .serachItem.data-v-6ca52d46 {
  82. margin-top: 20px;
  83. padding: 8rpx 16rpx;
  84. max-width: 100%;
  85. overflow: hidden;
  86. text-overflow: ellipsis;
  87. }
  88. .header.data-v-6ca52d46 {
  89. width: 100%;
  90. display: flex;
  91. justify-content: space-between;
  92. align-items: center;
  93. box-sizing: border-box;
  94. padding: 0 15px;
  95. height: 44px;
  96. position: -webkit-sticky;
  97. position: sticky;
  98. z-index: 100;
  99. background-color: #FFFFFF;
  100. top: 0;
  101. }
  102. .header .closeModalBox.data-v-6ca52d46 {
  103. position: absolute;
  104. right: 15px;
  105. width: 150rpx;
  106. background-color: #fff;
  107. height: 44px;
  108. line-height: 44px;
  109. text-align: right;
  110. }
  111. .header .input.data-v-6ca52d46 {
  112. width: 526rpx;
  113. }
  114. .banner-view.data-v-6ca52d46 {
  115. background-color: #007aff;
  116. color: white;
  117. display: flex;
  118. flex-direction: column;
  119. align-items: center;
  120. justify-content: center;
  121. }
  122. .paging-content.data-v-6ca52d46 {
  123. flex: 1;
  124. display: flex;
  125. flex-direction: column;
  126. }
  127. .swiper.data-v-6ca52d46 {
  128. height: 1000px;
  129. }