common-setting.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /* pages/common-setting/common-setting.wxss */
  2. page {
  3. background: #f0f1f2;
  4. }
  5. .logo {
  6. width: 750rpx;
  7. height: 368rpx;
  8. background: #ffffff;
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. justify-content: center;
  13. margin-bottom: 1rpx;
  14. margin-top: 20rpx;
  15. }
  16. .logo-image {
  17. width: 168rpx;
  18. height: 168rpx;
  19. border-radius: 28rpx;
  20. }
  21. .version {
  22. font-size: 28rpx;
  23. font-family: PingFangSC-Regular, PingFang SC;
  24. font-weight: 400;
  25. color: rgba(0, 0, 0, 0.65);
  26. margin-top: 24rpx;
  27. }
  28. .cell-group {
  29. margin-top: 20rpx;
  30. }
  31. .cell {
  32. width: 750rpx;
  33. height: 112rpx;
  34. font-size: 34rpx;
  35. font-family: PingFangSC-Regular, PingFang SC;
  36. font-weight: 400;
  37. color: rgba(0, 0, 0, 0.85);
  38. padding: 32rpx 40rpx;
  39. background: #ffffff;
  40. box-sizing: border-box;
  41. display: flex;
  42. align-items: center;
  43. justify-content: space-between;
  44. margin-bottom: 1rpx;
  45. }
  46. .cell .content {
  47. display: flex;
  48. align-items: center;
  49. justify-content: space-between;
  50. }
  51. .cell-pic {
  52. width: 68rpx;
  53. height: 68rpx;
  54. margin-right: 30rpx;
  55. }
  56. .right {
  57. width: 14rpx;
  58. height: 26rpx;
  59. }
  60. .cancellation,
  61. .logout {
  62. width: 750rpx;
  63. height: 112rpx;
  64. line-height: 112rpx;
  65. background: #ffffff;
  66. font-size: 28rpx;
  67. font-family: PingFangSC-Regular, PingFang SC;
  68. font-weight: 400;
  69. color: rgba(0, 0, 0, 0.45);
  70. text-align: center;
  71. margin-top: 20rpx;
  72. }
  73. .cover {
  74. position: fixed;
  75. left: 0;
  76. top: 0;
  77. height: 100%;
  78. width: 100%;
  79. background: rgba(0, 0, 0, 0.4);
  80. display: flex;
  81. align-items: center;
  82. justify-content: center;
  83. }
  84. .cover-content {
  85. width: 670rpx;
  86. height: 384rpx;
  87. background: #fff;
  88. border-radius: 10rpx;
  89. display: flex;
  90. flex-direction: column;
  91. justify-content: space-between;
  92. }
  93. .body {
  94. color: #31364c;
  95. font-size: 38rpx;
  96. padding: 0 76rpx;
  97. box-sizing: border-box;
  98. margin-top: 62rpx;
  99. }
  100. .action {
  101. height: 110rpx;
  102. display: flex;
  103. align-items: center;
  104. border-top: 1rpx solid #cdcfd3;
  105. }
  106. .action view {
  107. flex: 1;
  108. line-height: 110rpx;
  109. text-align: center;
  110. }
  111. .cancel {
  112. color: #888a8e;
  113. border-right: 1rpx solid #cdcfd3;
  114. }
  115. .quit {
  116. width: 100%;
  117. position: fixed;
  118. bottom: 15rpx;
  119. left: 0;
  120. display: flex;
  121. align-items: center;
  122. justify-content: center;
  123. }
  124. .quit view {
  125. width: 710rpx;
  126. height: 102rpx;
  127. line-height: 102rpx;
  128. text-align: center;
  129. font-size: 38rpx;
  130. font-family: PingFangSC-Medium, PingFang SC;
  131. font-weight: 500;
  132. color: #ffffff;
  133. background: #1890ff;
  134. border-radius: 18rpx;
  135. }