index.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .tip {
  2. font-size: 23rpx;
  3. color: rgba(0, 0, 0, 0.5);
  4. width: 90%;
  5. text-align: center;
  6. margin: 30rpx auto 0 auto;
  7. }
  8. .top_tip {
  9. font-size: 28rpx;
  10. color: rgba(0, 0, 0, 0.5);
  11. width: 90%;
  12. text-align: left;
  13. margin-top: 30rpx;
  14. margin-left: 20rpx;
  15. }
  16. .box_text {
  17. background-color: white;
  18. text-align: center;
  19. padding: 300rpx 0;
  20. margin-top: 30rpx;
  21. color: rgba(0, 0, 0, 0.5);
  22. }
  23. .code_box {
  24. text-align: center;
  25. background-color: white;
  26. margin-top: 30rpx;
  27. padding: 17rpx;
  28. }
  29. .code_box_title {
  30. color: rgba(0, 0, 0, 0.5);
  31. font-size: 26rpx;
  32. margin-bottom: 20rpx;
  33. text-align: left;
  34. }
  35. .code_box_record {
  36. display: flex;
  37. }
  38. .code_box_record_title {
  39. width: 33%;
  40. font-size: 26rpx;
  41. color: rgba(0, 0, 0, 0.5);
  42. padding: 20rpx 0;
  43. }
  44. .code_box_record_detail {
  45. width: 33%;
  46. font-size: 26rpx;
  47. padding: 20rpx 0;
  48. }
  49. .button {
  50. width: 300rpx;
  51. text-align: center;
  52. margin: 250rpx auto 0 auto;
  53. height: 80rpx;
  54. color: white;
  55. border-radius: 5px;
  56. line-height: 80rpx;
  57. background-color: #07c160;
  58. }
  59. .button_clear {
  60. width: 300rpx;
  61. text-align: center;
  62. margin: 250rpx auto 0 auto;
  63. height: 80rpx;
  64. color: #07c160;
  65. border-radius: 5px;
  66. line-height: 80rpx;
  67. background-color: rgba(0, 0, 0, 0.03);
  68. }
  69. .line {
  70. height: 1rpx;
  71. width: 100%;
  72. background-color: rgba(0, 0, 0, 0.1);
  73. }