index.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. justify-content: space-between;
  38. }
  39. .code_box_record_title {
  40. width: 33%;
  41. font-size: 26rpx;
  42. color: rgba(0, 0, 0, 0.5);
  43. padding: 20rpx 0;
  44. }
  45. .code_box_record_detail {
  46. width: 33%;
  47. font-size: 26rpx;
  48. padding: 20rpx 0;
  49. }
  50. .button {
  51. width: 300rpx;
  52. text-align: center;
  53. margin: 250rpx auto 0 auto;
  54. height: 80rpx;
  55. color: #07c160;
  56. border-radius: 5px;
  57. line-height: 80rpx;
  58. background-color: rgba(0, 0, 0, 0.03);
  59. }
  60. .line {
  61. height: 1rpx;
  62. width: 100%;
  63. background-color: rgba(0, 0, 0, 0.1);
  64. }