index.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. .loading {
  28. position: absolute;
  29. top: 0;
  30. left: 0;
  31. z-index: 100;
  32. width: 100%;
  33. height: 100vh;
  34. background-color: rgba(0, 0, 0, 0.5);
  35. display: -webkit-box;
  36. display: -webkit-flex;
  37. display: flex;
  38. -webkit-box-pack: center;
  39. -webkit-justify-content: center;
  40. justify-content: center;
  41. -webkit-box-align: center;
  42. -webkit-align-items: center;
  43. align-items: center;
  44. }
  45. .image_box {
  46. position: absolute;
  47. top: 44px;
  48. width: 100%;
  49. height: 400rpx;
  50. }
  51. .image_box .image {
  52. width: 100%;
  53. height: 400rpx;
  54. }
  55. .recognition {
  56. position: absolute;
  57. top: 254px;
  58. width: 100%;
  59. height: 800rpx;
  60. }
  61. .recognition .recognition_title {
  62. width: 100%;
  63. text-align: center;
  64. font-size: 36rpx;
  65. font-weight: 700;
  66. margin: 60rpx 0;
  67. }
  68. .recognition .recognition_img {
  69. border: 2rpx dashed #06B535;
  70. width: 450rpx;
  71. height: 450rpx;
  72. border-radius: 50%;
  73. margin: 0 auto;
  74. text-align: center;
  75. line-height: 450rpx;
  76. }
  77. .recognition .recognition_img image {
  78. margin-top: 50rpx;
  79. width: 340rpx;
  80. height: 340rpx;
  81. }
  82. .recognition .recognition_img_two {
  83. width: 450rpx;
  84. height: 450rpx;
  85. border-radius: 50%;
  86. margin: 0 auto;
  87. text-align: center;
  88. line-height: 450rpx;
  89. }
  90. .recognition .recognition_img_two image {
  91. margin-top: 10rpx;
  92. width: 340rpx;
  93. height: 340rpx;
  94. }
  95. .recognition .recognition_details {
  96. width: 400rpx;
  97. height: 80rpx;
  98. border-radius: 40rpx;
  99. margin: 30rpx auto;
  100. font-size: 30rpx;
  101. background-color: #67B25F;
  102. color: #FFFFFF;
  103. }
  104. .datas {
  105. position: absolute;
  106. top: 284px;
  107. width: 95%;
  108. left: 2.5%;
  109. }
  110. .datas .datas_title {
  111. font-size: 32rpx;
  112. font-weight: 700;
  113. margin-left: 30rpx;
  114. }
  115. .datas .recognition_details {
  116. width: 400rpx;
  117. height: 80rpx;
  118. border-radius: 40rpx;
  119. margin: 30rpx auto;
  120. font-size: 30rpx;
  121. background-color: #67B25F;
  122. color: #FFFFFF;
  123. }
  124. .prevention {
  125. font-size: 28rpx;
  126. color: #919191;
  127. width: 95%;
  128. margin: 20rpx auto;
  129. }
  130. .prevention .prevention_title {
  131. display: -webkit-box;
  132. display: -webkit-flex;
  133. display: flex;
  134. }
  135. .prevention .prevention_title ._p {
  136. margin-left: 20rpx;
  137. color: #000000;
  138. font-size: 28rpx;
  139. font-weight: 700;
  140. }
  141. .prevention .prevention_con {
  142. padding-left: 6%;
  143. }