apply.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. margin-top: 54rpx;
  41. }
  42. .info-item .item-title {
  43. font-size: 22rpx;
  44. color: #7593b4;
  45. margin-bottom: 15rpx;
  46. }
  47. .info-item .item-content {
  48. font-size: 26rpx;
  49. color: #000;
  50. }
  51. .card-body {
  52. padding: 0 36rpx;
  53. }
  54. .edit-btn button {
  55. background-color: #f75451;
  56. text-align: center;
  57. line-height: 90rpx;
  58. margin: 80rpx 36rpx;
  59. color: #fff;
  60. border-radius: 6rpx;
  61. font-size: 38rpx;
  62. font-weight: bold;
  63. }
  64. .edit-btn button::after {
  65. border: 0;
  66. }
  67. textarea {
  68. min-height: 1.1rem;
  69. }
  70. .radio-group .radio {
  71. margin-right: 20rpx;
  72. }
  73. .radio-group .radio text, .checkbox text {
  74. display: inline-block;
  75. vertical-align: middle;
  76. }
  77. .checkbox {
  78. margin-right: 20rpx;
  79. }
  80. radio {
  81. width: 38rpx;
  82. }
  83. radio .wx-radio-input {
  84. border-radius: 50%;
  85. width: 28rpx;
  86. height: 28rpx;
  87. }
  88. radio .wx-radio-input.wx-radio-input-checked::before {
  89. border-radius: 50%;
  90. width: 44rpx;
  91. height: 44rpx;
  92. line-height: 44rpx;
  93. text-align: center;
  94. font-size: 28rpx;
  95. color: #fff;
  96. background: #2facff;
  97. border-color: #2facff;
  98. }
  99. /* 未选中的 背景样式 */
  100. checkbox .wx-checkbox-input {
  101. display: inline-block;
  102. width: 40rpx;
  103. height: 40rpx;
  104. }
  105. checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  106. background: #2facff;
  107. border-color: #2facff;
  108. }
  109. checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  110. border-radius: 50%;
  111. width: 46rpx;
  112. height: 46rpx;
  113. line-height: 46rpx;
  114. text-align: center;
  115. font-size: 28rpx;
  116. color: #fff;
  117. background: transparent;
  118. transform: translate(-50%, -50%) scale(1);
  119. -webkit-transform: translate(-50%, -50%) scale(1);
  120. }
  121. .status-img {
  122. width: 160rpx;
  123. margin-bottom: 20rpx;
  124. }