index.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. page {
  2. background-color: white;
  3. padding-bottom: 50px;
  4. font-family: PingFang SC;
  5. }
  6. .page-container {
  7. padding: 20rpx 40rpx;
  8. }
  9. .tip {
  10. font-size: 23rpx;
  11. color: rgba(0, 0, 0, 0.5);
  12. width: 90%;
  13. text-align: center;
  14. margin: 30rpx auto 0 auto;
  15. }
  16. .top_tip {
  17. font-size: 28rpx;
  18. color: rgba(0, 0, 0, 0.5);
  19. width: 90%;
  20. text-align: left;
  21. margin-top: 30rpx;
  22. margin-left: 20rpx;
  23. }
  24. .box_text {
  25. background-color: white;
  26. text-align: center;
  27. padding: 300rpx 0;
  28. margin-top: 30rpx;
  29. color: rgba(0, 0, 0, 0.5);
  30. }
  31. .button {
  32. width: 300rpx;
  33. text-align: center;
  34. margin: 250rpx auto 0 auto;
  35. height: 80rpx;
  36. color: white;
  37. border-radius: 5px;
  38. line-height: 80rpx;
  39. background-color: #07c160;
  40. }
  41. .button_clear {
  42. width: 300rpx;
  43. text-align: center;
  44. margin: 250rpx auto 0 auto;
  45. height: 80rpx;
  46. color: #07c160;
  47. border-radius: 5px;
  48. line-height: 80rpx;
  49. background-color: rgba(0, 0, 0, 0.03);
  50. }
  51. .line {
  52. height: 1rpx;
  53. width: 100%;
  54. background-color: rgba(0, 0, 0, 0.1);
  55. }
  56. .code_box {
  57. text-align: center;
  58. background-color: white;
  59. margin-top: 30rpx;
  60. padding: 17rpx;
  61. }
  62. .code_box_title {
  63. color: rgba(0, 0, 0, 0.5);
  64. font-size: 26rpx;
  65. margin-bottom: 20rpx;
  66. text-align: left;
  67. }
  68. .code_box_record {
  69. display: flex;
  70. }
  71. .code_box_record_title {
  72. width: 33%;
  73. font-size: 26rpx;
  74. color: rgba(0, 0, 0, 0.5);
  75. padding: 20rpx 0;
  76. }
  77. .code_box_record_detail {
  78. width: 33%;
  79. font-size: 26rpx;
  80. padding: 20rpx 0;
  81. }
  82. .title {
  83. margin-top: 16px;
  84. font-size: 36rpx;
  85. font-weight: 500;
  86. color: #000;
  87. }
  88. .info {
  89. margin-top: 12px;
  90. font-size: 28rpx;
  91. font-weight: 400;
  92. color: rgba(0, 0, 0, 0.6);
  93. line-height: 52rpx;
  94. }
  95. .img {
  96. margin-top: 16px;
  97. width: 100%;
  98. }
  99. .code_img {
  100. width: 360rpx;
  101. height: 360rpx;
  102. }