agreement.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .agreement-container {
  2. /* display: flex;
  3. flex-direction: column; */
  4. height: 100vh;
  5. background-color: #fff;
  6. }
  7. .agreement-header {
  8. display: flex;
  9. align-items: center;
  10. justify-content: space-between;
  11. height: 90rpx;
  12. background-color: #fff;
  13. padding: 0 30rpx;
  14. position: relative;
  15. border-bottom: 1rpx solid #eee;
  16. }
  17. .back-btn {
  18. width: 60rpx;
  19. height: 60rpx;
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. }
  24. .icon-back {
  25. font-size: 40rpx;
  26. color: #333;
  27. }
  28. .title {
  29. font-size: 34rpx;
  30. font-weight: 500;
  31. color: #333;
  32. }
  33. .placeholder {
  34. width: 60rpx;
  35. }
  36. .agreement-content {
  37. width: 100%;
  38. padding: 20rpx 30rpx;
  39. box-sizing: border-box;
  40. background-color: #fff;
  41. }
  42. .agreement-title {
  43. font-size: 36rpx;
  44. font-weight: bold;
  45. text-align: center;
  46. margin-bottom: 40rpx;
  47. color: #333;
  48. }
  49. .section {
  50. margin-bottom: 30rpx;
  51. }
  52. .section-title {
  53. font-size: 32rpx;
  54. font-weight: 500;
  55. color: #333;
  56. margin-bottom: 20rpx;
  57. }
  58. .section-content {
  59. font-size: 28rpx;
  60. color: #666;
  61. line-height: 1.6;
  62. }
  63. .paragraph {
  64. display: block;
  65. margin-bottom: 20rpx;
  66. text-align: justify;
  67. }
  68. .loading, .error {
  69. display: flex;
  70. flex-direction: column;
  71. align-items: center;
  72. justify-content: center;
  73. padding: 40rpx;
  74. color: #666;
  75. font-size: 28rpx;
  76. }
  77. .error {
  78. color: #ff4d4f;
  79. }
  80. .retry-btn {
  81. margin-top: 20rpx;
  82. padding: 10rpx 30rpx;
  83. background-color: #1890ff;
  84. color: #fff;
  85. border-radius: 8rpx;
  86. font-size: 28rpx;
  87. }