| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 | /* 标题 */.checkbox_title {    font-size: 32rpx;    font-weight: 600;    color: #000000;    margin: 40rpx 0 30rpx 54rpx;}/* 列表 */.checkbox_list {    display: flex;    flex-wrap: wrap;    justify-content: space-between;    width: 100vw;    min-height: 200rpx;    padding: 0 60rpx;    box-sizing: border-box;}/* 子项 */.checkbox_item {    display: block;    min-width: 180rpx;    height: 64rpx;    line-height: 64rpx;    text-align: center;    background: #F6F7F8;    border-radius: 40rpx;    font-size: 28rpx;    color: rgba(0, 0, 0, .5);    padding: 0 8rpx;    overflow: hidden;}/* 选中后背景颜色 */.choice {    background-color: #4EBFCF;    color: #ffffff;}/* 按钮 */.checkbox_but {    display: flex;    justify-content: flex-end;    width: 100vw;    margin: 30rpx 0 0 0;    box-sizing: border-box;}/* .checkbox_but .radio {    position: absolute;    display: flex;    align-items: center;    width: 380rpx;    height: 64rpx;    left: 60rpx;} */.checkbox_but .button {    /* position: absolute; */    width: 188rpx;    height: 64rpx;    background: #4EBFCF;    border-radius: 14rpx;    /* right: 60rpx; */    overflow: hidden;    margin-right: 60rpx;}.customClass {    width: 100% !important;    height: 100% !important;}/* 通告 */.ac-checkbox_item {    display: flex;    align-items: center;    justify-content: space-between;    min-width: 262rpx;    height: 62rpx;    background: #F6F7F8;    border-radius: 40rpx;    box-sizing: border-box;    border: 2rpx solid #F6F7F8;    overflow: hidden;    padding-right: 20rpx;}.ac-choice {    border: 2rpx solid #4DC2D4;}.item-img {    width: 60rpx;    height: 60rpx;    border-radius: 50%;    overflow: hidden;    flex-shrink: 0;}.item-img image {    width: 100%;    height: 100%;}.partner-name {    margin-left: 12rpx;    max-width: 450rpx;    height: 40rpx;    font-size: 28rpx;    color: rgba(0, 0, 0, .5);    line-height: 40rpx;}.checked-icon {    display: flex;    align-items: center;    width: 28rpx;    height: 28rpx;    padding-left: 15rpx;    flex-shrink: 0;}
 |