index.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. .line {
  60. height: 1rpx;
  61. width: 100%;
  62. background-color: rgba(0, 0, 0, 0.1);
  63. }