setting.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. page {
  2. background-color: #f2f6f2;
  3. padding: 0 20rpx;
  4. box-sizing: border-box;
  5. padding-bottom: 50rpx;
  6. }
  7. .page {
  8. background-color: #f2f6f2;
  9. }
  10. .topBody {
  11. width: 100%;
  12. }
  13. .list_info {
  14. display: flex;
  15. flex-direction: column;
  16. width: 100%;
  17. padding: 20rpx 0;
  18. .group-header {
  19. padding: 24rpx;
  20. padding-bottom: 0;
  21. font-size: 26rpx;
  22. color: #000;
  23. font-family: 'PingFang SC-Medium';
  24. background-color: #fff;
  25. overflow: hidden;
  26. border-top-left-radius: 20rpx;
  27. border-top-right-radius: 20rpx;
  28. }
  29. .item {
  30. width: 100%;
  31. height: 124rpx;
  32. padding: 0 30rpx;
  33. display: flex;
  34. flex-direction: row;
  35. justify-content: space-between;
  36. align-items: center;
  37. border-bottom: solid 1px #f0f0f0;
  38. background: #fff;
  39. .item-left {
  40. display: flex;
  41. align-items: center;
  42. .icon {
  43. width: 76rpx;
  44. height: 76rpx;
  45. margin-right: 20rpx;
  46. }
  47. text {
  48. font-size: 28rpx;
  49. color: #333;
  50. }
  51. }
  52. .item-right {
  53. display: flex;
  54. align-items: center;
  55. .arrow {
  56. width: 36rpx;
  57. }
  58. }
  59. }
  60. }
  61. .version-info {
  62. width: 100%;
  63. text-align: center;
  64. font-size: 24rpx;
  65. color: #999;
  66. margin-top: 166rpx;
  67. }
  68. .btn_submit {
  69. width: 660rpx;
  70. height: 96rpx;
  71. border: 2rpx solid #f0f0f0;
  72. border-radius: 28rpx;
  73. font-size: 32rpx;
  74. color: #1F1F1F;
  75. font-family: 'PingFang SC-Bold';
  76. display: flex;
  77. flex-direction: row;
  78. justify-content: center;
  79. align-items: center;
  80. background-color: #fff;
  81. margin: 0 auto;
  82. margin-top: 15rpx;
  83. }
  84. .blankHeight {
  85. height: 300rpx;
  86. }