integral-rules.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /* pages/modify-mine/modify-mine.wxss */
  2. @import '../../wxParse/wxParse.wxss';
  3. page {
  4. background-color: #F5F6FA;
  5. }
  6. .head-bg {
  7. width: 100%;
  8. overflow: hidden;
  9. position: fixed;
  10. top: 0;
  11. left: 0;
  12. z-index: 1;
  13. }
  14. .wrap {
  15. width: 100%;
  16. position: fixed;
  17. left: 0;
  18. top: 0;
  19. background-color: rgba(0, 0, 0, 0);
  20. z-index: 999999999;
  21. display: flex;
  22. align-items: center;
  23. }
  24. .title {
  25. width: 100%;
  26. height: 30px;
  27. line-height: 30px;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. font-size: 16px;
  32. color: #fff;
  33. position: absolute;
  34. bottom: 12px;
  35. left: 0;
  36. }
  37. .return {
  38. height: 30px;
  39. position: absolute;
  40. bottom: 12px;
  41. left: 0;
  42. display: flex;
  43. justify-content: space-between;
  44. align-items: center;
  45. padding: 0 12px;
  46. box-sizing: border-box;
  47. z-index: 9999999999;
  48. }
  49. .back-icon {
  50. width: 10px;
  51. }
  52. .container-wrap {
  53. width: 100%;
  54. display: flex;
  55. flex-direction: column;
  56. }
  57. .module {
  58. width: 100%;
  59. padding: 0 30rpx;
  60. box-sizing: border-box;
  61. display: flex;
  62. flex-direction: column;
  63. background-color: #fff;
  64. margin: 20rpx 0;
  65. padding: 22rpx 30rpx;
  66. box-sizing: border-box;
  67. }
  68. .item {
  69. width: 100%;
  70. display: flex;
  71. flex-direction: column;
  72. margin-bottom: 20rpx;
  73. }
  74. .item:last-child {
  75. margin-bottom: 0;
  76. }
  77. .item-title {
  78. color: #333333;
  79. font-size: 30rpx;
  80. margin-bottom: 10rpx;
  81. }
  82. .item-msg {
  83. width: 100%;
  84. color: #999999;
  85. font-size: 26rpx;
  86. }
  87. .normal-box {
  88. width: 100%;
  89. display: flex;
  90. flex-direction: column;
  91. align-items: center;
  92. font-size: 30rpx;
  93. color: #999999;
  94. padding: 280rpx 0;
  95. }
  96. .normal-box>image {
  97. width: 420rpx;
  98. }
  99. .normal-box>text {
  100. margin-top: -56rpx;
  101. }