index.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. .back {
  28. height: 40rpx;
  29. width: 40rpx;
  30. margin-left: 15rpx;
  31. }
  32. .antiBg {
  33. width: 100%;
  34. height: 254rpx;
  35. }
  36. .antiBg image {
  37. width: 100%;
  38. height: 100%;
  39. }
  40. .info {
  41. width: 690rpx;
  42. margin: 0 auto;
  43. }
  44. .info .title {
  45. text-align: center;
  46. font-size: 32rpx;
  47. color: #333;
  48. padding: 0 0 25rpx;
  49. font-weight: bold;
  50. }
  51. .info .img image {
  52. width: 100%;
  53. height: 340rpx;
  54. border-radius: 24rpx;
  55. }
  56. .info .intr .intr_title {
  57. font-size: 32rpx;
  58. font-weight: bold;
  59. padding-top: 20rpx;
  60. }
  61. .info .intr .intr_con > view {
  62. display: -webkit-box;
  63. display: -webkit-flex;
  64. display: flex;
  65. -webkit-box-pack: justify;
  66. -webkit-justify-content: space-between;
  67. justify-content: space-between;
  68. -webkit-box-align: center;
  69. -webkit-align-items: center;
  70. align-items: center;
  71. margin-top: 20rpx;
  72. }
  73. .info .intr .intr_con > view view {
  74. font-size: 24rpx;
  75. color: #999;
  76. }
  77. .info .intr .intr_con > view text {
  78. font-size: 28rpx;
  79. color: #333;
  80. }
  81. .info .anti_code {
  82. position: relative;
  83. }
  84. .info .anti_code .intr_title {
  85. padding: 30rpx 0;
  86. }
  87. .info .anti_code .query_num_block {
  88. display: -webkit-flex;
  89. display: -webkit-box;
  90. display: flex;
  91. -webkit-box-pack: justify;
  92. -webkit-justify-content: space-between;
  93. justify-content: space-between;
  94. }
  95. .info .anti_code .num_item_block {
  96. width: 68rpx;
  97. height: 68rpx;
  98. text-align: center;
  99. line-height: 68rpx;
  100. border: 2px solid #999999;
  101. margin-left: 15rpx;
  102. font-size: 30rpx;
  103. color: #25252b;
  104. }
  105. .info .anti_code .hidden_ipt {
  106. border: none;
  107. margin: 0;
  108. }
  109. .info .btn {
  110. width: 530rpx;
  111. height: 88rpx;
  112. margin: 80rpx auto 80rpx;
  113. text-align: center;
  114. line-height: 88rpx;
  115. background: -webkit-linear-gradient(357deg, #a080ff 0%, #5d6bff 100%);
  116. background: linear-gradient(93deg, #a080ff 0%, #5d6bff 100%);
  117. border-radius: 44rpx;
  118. color: #fff;
  119. font-size: 32rpx;
  120. }