result.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. .result {
  28. width: 100%;
  29. min-height: 100%;
  30. position: relative;
  31. }
  32. .result .result_bg {
  33. width: 100%;
  34. height: 100%;
  35. position: fixed;
  36. top: 0;
  37. left: 0;
  38. }
  39. .result .result_con {
  40. width: 100%;
  41. position: absolute;
  42. top: 5vh;
  43. left: 0;
  44. display: -webkit-box;
  45. display: -webkit-flex;
  46. display: flex;
  47. -webkit-box-orient: vertical;
  48. -webkit-box-direction: normal;
  49. -webkit-flex-direction: column;
  50. flex-direction: column;
  51. -webkit-box-pack: center;
  52. -webkit-justify-content: center;
  53. justify-content: center;
  54. -webkit-box-align: center;
  55. -webkit-align-items: center;
  56. align-items: center;
  57. margin-bottom: 50rpx;
  58. }
  59. .result .result_con .info {
  60. margin: 0 auto 50rpx;
  61. font-size: 48rpx;
  62. font-weight: bold;
  63. color: #fff;
  64. text-align: center;
  65. }
  66. .result .result_con .intr {
  67. width: 690rpx;
  68. background: #fff;
  69. padding: 0 30rpx;
  70. box-sizing: border-box;
  71. border-radius: 24rpx;
  72. }
  73. .result .result_con .intr .title {
  74. font-size: 40rpx;
  75. color: #333;
  76. font-weight: bold;
  77. text-align: center;
  78. padding: 42rpx 0 60rpx;
  79. }
  80. .result .result_con .intr .intr_con {
  81. font-size: 28rpx;
  82. color: #333;
  83. }
  84. .result .result_con .intr .icon {
  85. text-align: center;
  86. padding-top: 90rpx;
  87. }
  88. .result .result_con .intr .icon image {
  89. width: 140rpx;
  90. height: 140rpx;
  91. }
  92. .result .result_con .intr .btn {
  93. width: 530rpx;
  94. height: 88rpx;
  95. text-align: center;
  96. line-height: 88rpx;
  97. background: -webkit-linear-gradient(357deg, #a080ff 0%, #5d6bff 100%);
  98. background: linear-gradient(93deg, #a080ff 0%, #5d6bff 100%);
  99. border-radius: 44rpx;
  100. margin: 180rpx auto 158rpx;
  101. color: #fff;
  102. font-size: 32rpx;
  103. }