index.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* 标题 */
  2. .checkbox_title {
  3. font-size: 32rpx;
  4. font-weight: 600;
  5. color: #000000;
  6. margin: 40rpx 0 30rpx 54rpx;
  7. }
  8. /* 列表 */
  9. .checkbox_list {
  10. display: flex;
  11. flex-wrap: wrap;
  12. justify-content: space-between;
  13. width: 100vw;
  14. min-height: 200rpx;
  15. padding: 0 60rpx;
  16. box-sizing: border-box;
  17. }
  18. /* 子项 */
  19. .checkbox_item {
  20. display: block;
  21. min-width: 180rpx;
  22. height: 64rpx;
  23. line-height: 64rpx;
  24. text-align: center;
  25. background: #F6F7F8;
  26. border-radius: 40rpx;
  27. font-size: 28rpx;
  28. color: rgba(0, 0, 0, .5);
  29. padding: 0 8rpx;
  30. overflow: hidden;
  31. }
  32. /* 选中后背景颜色 */
  33. .choice {
  34. background-color: #4EBFCF;
  35. color: #ffffff;
  36. }
  37. /* 按钮 */
  38. .checkbox_but {
  39. position: relative;
  40. width: 100vw;
  41. margin: 30rpx 0 80rpx 0;
  42. box-sizing: border-box;
  43. }
  44. .checkbox_but .radio {
  45. position: absolute;
  46. display: flex;
  47. align-items: center;
  48. width: 380rpx;
  49. height: 64rpx;
  50. left: 60rpx;
  51. }
  52. .checkbox_but .button {
  53. position: absolute;
  54. width: 188rpx;
  55. height: 64rpx;
  56. background: #4EBFCF;
  57. border-radius: 14rpx;
  58. right: 60rpx;
  59. overflow: hidden;
  60. }
  61. .customClass {
  62. width: 100% !important;
  63. height: 100% !important;
  64. }
  65. /* 通告 */
  66. .ac-checkbox_item {
  67. display: flex;
  68. align-items: center;
  69. justify-content: space-between;
  70. min-width: 262rpx;
  71. height: 62rpx;
  72. background: #F6F7F8;
  73. border-radius: 40rpx;
  74. box-sizing: border-box;
  75. border: 2rpx solid #F6F7F8;
  76. overflow: hidden;
  77. padding-right: 20rpx;
  78. }
  79. .ac-choice {
  80. border: 2rpx solid #4DC2D4;
  81. }
  82. .item-img {
  83. width: 60rpx;
  84. height: 60rpx;
  85. border-radius: 50%;
  86. overflow: hidden;
  87. flex-shrink: 0;
  88. }
  89. .item-img image {
  90. width: 100%;
  91. height: 100%;
  92. }
  93. .partner-name {
  94. margin-left: 12rpx;
  95. max-width: 450rpx;
  96. height: 40rpx;
  97. font-size: 28rpx;
  98. color: rgba(0, 0, 0, .5);
  99. line-height: 40rpx;
  100. }
  101. .checked-icon {
  102. display: flex;
  103. align-items: center;
  104. width: 28rpx;
  105. height: 28rpx;
  106. padding-left: 15rpx;
  107. flex-shrink: 0;
  108. }