123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- .content {
- width: 100%;
- height: 962rpx;
- background: #FFFFFF;
- box-shadow: 0rpx 6rpx 12rpx rgba(0, 0, 0, 0.65);
- opacity: 1;
- border-radius: 0 0 10rpx;
- margin: 0 auto;
- overflow: scroll;
- }
- .content {
- box-sizing: border-box;
- }
- .content .main {
- box-sizing: border-box;
- width: 100%;
- }
- .content .column {
- width: 100%;
- }
- .content .column .title {
- width: 100%;
- height: 100%;
- font-size: 26rpx;
- color: #38A2D7;
- background: linear-gradient(180deg, #D4D4D4 0%, rgba(212, 212, 212, 0) 100%);
- padding: 5% 4%;
- box-sizing: border-box;
- }
- .content .column .title .title-img {
- width:24rpx;
- height: 24rpx;
- margin-left: 16rpx;
- }
- .content .column .title .imgactive {
- transform: rotate(180deg) translate(6rpx,-6rpx);
- }
- .content .column .con-list {
- margin: 0 4%;
- border-top: 1px solid rgba(112, 112, 112, 0.25);
- display: flex;
- justify-content: space-between;
- width: 92%;
- padding: 32rpx 32rpx 0 32rpx;
- box-sizing: border-box;
- flex-wrap: wrap;
- overflow: hidden;
- }
- .content .hide_col .con-list{
- height: 0;
- padding: 0;
- border-top: 0;
- }
- .con-list .citem{
- width: 100%;
- font-size: 0;
- }
|