testDetails.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. body {
  27. height: 100%;
  28. }
  29. .content {
  30. position: relative;
  31. height: 100%;
  32. display: flex;
  33. flex-direction: column;
  34. }
  35. .content .bg-box {
  36. position: absolute;
  37. width: 100%;
  38. height: 18.75rem;
  39. }
  40. .content .bg-box .title-box {
  41. top: 1.5625rem;
  42. left: 1.5625rem;
  43. position: absolute;
  44. }
  45. .content .bg-box .title-box .title {
  46. border-radius: 0.15625rem;
  47. border: 0.03125rem solid #fff;
  48. padding: 0.625rem 0.9375rem;
  49. font-size: 1.125rem;
  50. font-family: Source Han Sans CN;
  51. font-weight: bold;
  52. color: #fff;
  53. }
  54. .content .bg-box uni-image {
  55. position: absolute;
  56. width: 100%;
  57. height: 100%;
  58. }
  59. .content .cont {
  60. position: relative;
  61. margin-top: 17.1875rem;
  62. z-index: 9999;
  63. padding: 0.9375rem;
  64. height: 100%;
  65. display: flex;
  66. flex-direction: column;
  67. padding: 0.9375rem;
  68. background-color: #fff;
  69. border-radius: 0.9375rem 0.9375rem 0 0;
  70. }
  71. .content .cont .msg-box .msg {
  72. font-size: 1.125rem;
  73. font-family: Source Han Sans CN;
  74. font-weight: bold;
  75. color: #111;
  76. }
  77. .content .cont .line {
  78. margin: 0.46875rem 0;
  79. background-color: #F6F6F6;
  80. height: 0.15625rem;
  81. width: 100%;
  82. }
  83. .content .cont .desc-box {
  84. margin-top: 0.625rem;
  85. background: #FFFFFF;
  86. }
  87. .content .cont .desc-box .desc {
  88. color: #814E1B;
  89. }
  90. .content .cont .logo {
  91. display: flex;
  92. align-items: center;
  93. justify-content: center;
  94. margin: 1.875rem 0;
  95. width: 100%;
  96. }
  97. .content .cont .logo uni-image {
  98. width: 6.25rem;
  99. height: 3.125rem;
  100. }
  101. .content .cont .btn-box {
  102. margin-top: 1.875rem;
  103. height: 4.375rem;
  104. width: 100%;
  105. box-sizing: border-box;
  106. display: flex;
  107. align-items: center;
  108. justify-content: center;
  109. }
  110. .content .cont .btn-box .btn {
  111. width: 100%;
  112. height: 2.75rem;
  113. line-height: 2.75rem;
  114. text-align: center;
  115. font-size: 1.0625rem;
  116. font-family: PingFang SC;
  117. font-weight: bold;
  118. color: #FFFFFF;
  119. background: #C39A58;
  120. border-radius: 1.5625rem;
  121. }