12345678910111213141516171819202122232425262728293031323334353637 |
- /* components/list/list.wxss */
- .content {
- width: 100%;
- height: 80%;
- background: #FFFFFF;
- box-shadow: 0rpx 6rpx 12rpx rgba(0, 0, 0, 0.65);
- border-radius: 0 0 10rpx;
- overflow: auto;
- }
- .content .column {
- background: linear-gradient(180deg, #D4D4D4 0%, rgba(212, 212, 212, 0) 40%);
- width: calc(100% - 40rpx);
- padding: 0 20rpx;
- }
- .content .column .title {
- width: 100%;
- font-size: 24rpx;
- color: #38A2D7;
- padding: 30rpx 0;
- display: flex;
- align-items: center;
- }
- .content .column .title .jiantou {
- display: inline-block;
- width: 30rpx;
- height: 24rpx;
- margin-left:12rpx;
- }
- .content .column .con-list {
- border-top: 1rpx solid rgba(112, 112, 112, 0.5);
- }
|