apply.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. .status {
  2. padding: 360rpx 30rpx 0;
  3. text-align: center;
  4. }
  5. .p {
  6. font-size: 32rpx;
  7. margin-bottom: 20rpx;
  8. }
  9. .status-btn {
  10. margin-top: 60rpx;
  11. }
  12. .gcs-box {
  13. padding-bottom: 100rpx;
  14. background: #fff;
  15. }
  16. .gcs-box .card {
  17. position: relative;
  18. }
  19. .card-header {
  20. display: flex;
  21. padding: 30rpx;
  22. box-shadow: 0 0 40rpx rgba(0, 0, 0, 0.1);
  23. }
  24. .card-header .title {
  25. flex: 1;
  26. color: #f75451;
  27. font-size: 30rpx;
  28. font-weight: bold;
  29. }
  30. .bot-line {
  31. width: 100%;
  32. height: 1rpx;
  33. border-bottom: 1rpx solid #f5f5f5;
  34. transition: 200ms all ease-in-out;
  35. }
  36. .bot-line.focus {
  37. border-bottom: 2rpx solid #f75451;
  38. }
  39. .info-item {
  40. display: flex;
  41. align-items: center;
  42. /* justify-content: center;
  43. min-height: 102rpx; */
  44. font-size: 30rpx;
  45. width: 100%;
  46. box-sizing: border-box;
  47. padding: 30rpx 0;
  48. }
  49. .info-item.textarea-item {
  50. align-items: flex-start;
  51. }
  52. .info-item .item-title {
  53. color: #333;
  54. margin-right: 30rpx;
  55. min-width: 60rpx;
  56. }
  57. .info-item .item-content {
  58. color: #000;
  59. flex: 1;
  60. }
  61. .info-item .item-content textarea {
  62. width: 100%;
  63. }
  64. .card-body {
  65. padding: 30rpx 36rpx 0;
  66. }
  67. .edit-btn button {
  68. background-color: #f75451;
  69. text-align: center;
  70. line-height: 90rpx;
  71. margin: 80rpx 36rpx;
  72. color: #fff;
  73. border-radius: 6rpx;
  74. font-size: 38rpx;
  75. font-weight: bold;
  76. }
  77. .edit-btn button::after {
  78. border: 0;
  79. }
  80. textarea {
  81. min-height: 1.1rem;
  82. }
  83. .radio-group .radio {
  84. margin-right: 20rpx;
  85. }
  86. .radio-group .radio text, .checkbox text {
  87. display: inline-block;
  88. vertical-align: middle;
  89. }
  90. .checkbox {
  91. margin-right: 20rpx;
  92. }
  93. radio {
  94. width: 38rpx;
  95. }
  96. radio .wx-radio-input {
  97. border-radius: 50%;
  98. width: 28rpx;
  99. height: 28rpx;
  100. }
  101. radio .wx-radio-input.wx-radio-input-checked::before {
  102. border-radius: 50%;
  103. width: 44rpx;
  104. height: 44rpx;
  105. line-height: 44rpx;
  106. text-align: center;
  107. font-size: 28rpx;
  108. color: #fff;
  109. background: #2facff;
  110. border-color: #2facff;
  111. }
  112. /* 未选中的 背景样式 */
  113. checkbox .wx-checkbox-input {
  114. display: inline-block;
  115. width: 40rpx;
  116. height: 40rpx;
  117. }
  118. checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  119. background: #2facff;
  120. border-color: #2facff;
  121. }
  122. checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  123. border-radius: 50%;
  124. width: 46rpx;
  125. height: 46rpx;
  126. line-height: 46rpx;
  127. text-align: center;
  128. font-size: 28rpx;
  129. color: #fff;
  130. background: transparent;
  131. transform: translate(-50%, -50%) scale(1);
  132. -webkit-transform: translate(-50%, -50%) scale(1);
  133. }
  134. .status-img {
  135. width: 160rpx;
  136. margin-bottom: 20rpx;
  137. }