12345678910111213141516171819202122 |
- .hospital-new-component .hospital-select-relationship {
- display: flex;
- flex-wrap: wrap;
- padding: 6rpx 24rpx 24rpx 24rpx;
- }
- .hospital-new-component .hospital-select-relationship .item-box {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 205rpx;
- font-size: 36rpx;
- color: #1677FF;
- font-weight: bold;
- margin-right: 30rpx;
- margin-bottom: 30rpx;
- border-radius: 16rpx;
- width: calc(33.3% - 20rpx);
- background-color: rgba(22, 119, 255, 0.1);
- }
- .hospital-new-component .hospital-select-relationship .item-box:nth-child(3n) {
- margin-right: 0;
- }
|