grxxxg.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /* pages/minePages/grxxxg/grxxxg.wxss */
  2. page {
  3. background: linear-gradient(179deg, #cce1ff 0%, #ffffff 53%, #f9fbff 78%, #f8fbff 100%);
  4. }
  5. .page {
  6. padding: 40rpx 0;
  7. width: 100%;
  8. height: 100vh;
  9. box-sizing: border-box;
  10. }
  11. .containers {
  12. padding: 20rpx 30rpx;
  13. margin: 0 40rpx;
  14. width: calc(100% - 80rpx);
  15. background: #ffffff;
  16. border-radius: 10rpx;
  17. box-shadow: 0px 4rpx 16rpx 0px rgba(92, 92, 92, 0.12);
  18. box-sizing: border-box;
  19. }
  20. .item {
  21. width: 100%;
  22. height: 110rpx;
  23. display: flex;
  24. align-items: center;
  25. justify-content: space-between;
  26. border-bottom: 0.5px solid #eeeeee;
  27. }
  28. .item>.label {
  29. min-width: 150rpx;
  30. font-family: "苹方R";
  31. font-size: 26rpx;
  32. color: #333333;
  33. }
  34. .item>.value {
  35. width: 0;
  36. flex: 1;
  37. min-height: 110rpx;
  38. font-family: "苹方M";
  39. font-size: 26rpx;
  40. color: #333333;
  41. }
  42. .item>.value>input {
  43. width: 100%;
  44. min-height: 110rpx;
  45. text-align: right;
  46. font-family: "苹方R";
  47. font-size: 26rpx;
  48. color: #333333;
  49. }
  50. .item-select>.value {
  51. padding-right: 50rpx;
  52. position: relative;
  53. display: flex;
  54. align-items: center;
  55. justify-content: flex-end;
  56. box-sizing: border-box;
  57. }
  58. .item-select>.select {
  59. color: #837F7C;
  60. }
  61. .item-select>.value::after {
  62. position: absolute;
  63. top: calc(50% - 7.5rpx);
  64. right: 0;
  65. content: "";
  66. width: 0;
  67. height: 0;
  68. border: 15rpx solid transparent;
  69. border-top-color: #A7A7A7;
  70. }
  71. .item-code {
  72. width: 100%;
  73. min-height: 110rpx;
  74. display: flex;
  75. align-items: center;
  76. justify-content: space-between;
  77. border-bottom: 0.5px solid #eeeeee;
  78. }
  79. .item-code>.label {
  80. min-width: 150rpx;
  81. font-family: "苹方R";
  82. font-size: 26rpx;
  83. color: #333333;
  84. }
  85. .item-code>.value {
  86. width: 0;
  87. flex: 1;
  88. min-height: 110rpx;
  89. text-align: right;
  90. font-family: "苹方M";
  91. font-size: 26rpx;
  92. color: #333333;
  93. }
  94. .item-code>.value>input {
  95. width: 100%;
  96. min-height: 110rpx;
  97. text-align: right;
  98. font-family: "苹方M";
  99. font-size: 26rpx;
  100. color: #333333;
  101. }
  102. .item-code>.btn {
  103. width: 80rpx;
  104. min-height: 110rpx;
  105. font-family: "苹方R";
  106. font-size: 26rpx;
  107. color: #4686F6;
  108. display: flex;
  109. align-items: center;
  110. justify-content: flex-end;
  111. }
  112. .item-code>.btn>button {
  113. padding: 0;
  114. margin: 0;
  115. width: 100%;
  116. font-family: "苹方R";
  117. font-size: 26rpx;
  118. color: #4686F6;
  119. line-height: 80rpx;
  120. background: transparent;
  121. }
  122. .button {
  123. margin-top: 50rpx;
  124. width: 100%;
  125. height: 80rpx;
  126. background: linear-gradient(90deg, #81afff, #4686f6);
  127. border-radius: 40rpx;
  128. font-family: "苹方R";
  129. font-size: 30rpx;
  130. color: #ffffff;
  131. display: flex;
  132. align-items: center;
  133. justify-content: center;
  134. }
  135. .popContain {
  136. position: relative;
  137. width: 100%;
  138. height: calc(100% - 80rpx);
  139. }
  140. .title {
  141. position: sticky;
  142. top: 0;
  143. z-index: 9;
  144. width: 100%;
  145. height: 80rpx;
  146. text-align: center;
  147. line-height: 60rpx;
  148. font-family: "苹方M";
  149. font-size: 32rpx;
  150. color: #313131;
  151. background: #ffffff;
  152. }
  153. .popContain .list {
  154. width: 100%;
  155. height: 100rpx;
  156. line-height: 100rpx;
  157. font-family: "苹方R";
  158. font-size: 28rpx;
  159. color: #313131;
  160. border-bottom: 1px solid #eeeeee;
  161. }
  162. .active {
  163. opacity: 0.6;
  164. }