setting.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. .setting_container {
  2. display: flex;
  3. flex-direction: column;
  4. }
  5. .setting_segment {
  6. margin-left: 46px;
  7. margin-right: 46px;
  8. margin-bottom: 20px;
  9. }
  10. .setting_section {
  11. height: 88px;
  12. display: flex;
  13. flex-direction: row;
  14. align-items: center;
  15. }
  16. .setting_section_title {
  17. color: #fff;
  18. margin-left: 46px;
  19. font-weight: bold;
  20. font-size: 32px;
  21. opacity: 0.6;
  22. }
  23. .setting_header {
  24. font-size: 28px;
  25. margin-bottom: 20px;
  26. color: #fff;
  27. opacity: 0.4;
  28. margin-left: 86px;
  29. margin-right: 86px;
  30. letter-spacing: 0;
  31. }
  32. .setting_footer {
  33. font-size: 28px;
  34. margin-bottom: 40px;
  35. color: #fff;
  36. opacity: 0.2;
  37. margin-left: 86px;
  38. margin-right: 86px;
  39. letter-spacing: 0;
  40. margin-top: 20px;
  41. }
  42. .setting_cell{
  43. display: flex;
  44. flex-direction: row;
  45. align-items: center;
  46. margin-left: 46px;
  47. margin-right: 46px;
  48. background-color: #1c1c1c;
  49. border-radius: 24px;
  50. height: 96px;
  51. padding-left: 40px;
  52. padding-right: 40px;
  53. }
  54. .setting_cell_group{
  55. display: flex;
  56. flex-direction: column;
  57. margin-left: 46px;
  58. margin-right: 46px;
  59. background-color: #1c1c1c;
  60. border-radius: 24px;
  61. overflow: hidden;
  62. }
  63. .setting_cell_group_item{
  64. display: flex;
  65. flex-direction: row;
  66. align-items: center;
  67. background-color: #1c1c1c;
  68. height: 96px;
  69. padding-left: 40px;
  70. padding-right: 40px;
  71. }
  72. .setting_cell_title{
  73. color: #fff;
  74. font-size: 28px;
  75. }
  76. .setting_cell_value1{
  77. color: #fff;
  78. opacity: 0.8;
  79. font-size: 28px;
  80. }
  81. .setting_tip{
  82. background-color: rgba(255, 123, 0, 0.2);
  83. height: 56px;
  84. display: flex;
  85. flex-direction: row;
  86. align-items: center;
  87. padding-left: 46px;
  88. }
  89. .setting_tip_text{
  90. color: #FF7B00;
  91. font-size: 28px;
  92. letter-spacing: 0;
  93. }
  94. /* #ifdef weapp */
  95. .myswitch{
  96. // width: 100px !important;
  97. // height: 50px !important;
  98. transform: scale(0.85);
  99. transform-origin: right center;
  100. margin-right: -10px;
  101. }
  102. /* #endif */
  103. /* #ifdef rn */
  104. .myswitch{
  105. }
  106. /* #endif */
  107. .new_item_cell_line{
  108. height: 1px;
  109. background-color: #fff;
  110. opacity: 0.2;
  111. margin-left: 40px;
  112. transform: scaleY(0.5);
  113. }