index.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. display: flex;
  40. justify-content:flex-end;
  41. width: 100vw;
  42. margin: 30rpx 0 80rpx 0;
  43. box-sizing: border-box;
  44. }
  45. /* .checkbox_but .radio {
  46. position: absolute;
  47. display: flex;
  48. align-items: center;
  49. width: 380rpx;
  50. height: 64rpx;
  51. left: 60rpx;
  52. } */
  53. .checkbox_but .button {
  54. /* position: absolute; */
  55. width: 188rpx;
  56. height: 64rpx;
  57. background: #4EBFCF;
  58. border-radius: 14rpx;
  59. /* right: 60rpx; */
  60. overflow: hidden;
  61. margin-right: 60rpx;
  62. }
  63. .customClass {
  64. width: 100% !important;
  65. height: 100% !important;
  66. }
  67. /* 通告 */
  68. .ac-checkbox_item {
  69. display: flex;
  70. align-items: center;
  71. justify-content: space-between;
  72. min-width: 262rpx;
  73. height: 62rpx;
  74. background: #F6F7F8;
  75. border-radius: 40rpx;
  76. box-sizing: border-box;
  77. border: 2rpx solid #F6F7F8;
  78. overflow: hidden;
  79. padding-right: 20rpx;
  80. }
  81. .ac-choice {
  82. border: 2rpx solid #4DC2D4;
  83. }
  84. .item-img {
  85. width: 60rpx;
  86. height: 60rpx;
  87. border-radius: 50%;
  88. overflow: hidden;
  89. flex-shrink: 0;
  90. }
  91. .item-img image {
  92. width: 100%;
  93. height: 100%;
  94. }
  95. .partner-name {
  96. margin-left: 12rpx;
  97. max-width: 450rpx;
  98. height: 40rpx;
  99. font-size: 28rpx;
  100. color: rgba(0, 0, 0, .5);
  101. line-height: 40rpx;
  102. }
  103. .checked-icon {
  104. display: flex;
  105. align-items: center;
  106. width: 28rpx;
  107. height: 28rpx;
  108. padding-left: 15rpx;
  109. flex-shrink: 0;
  110. }