index.wxss 1.9 KB

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