list.wxss 688 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* components/list/list.wxss */
  2. .content {
  3. width: 100%;
  4. height: 80%;
  5. background: #FFFFFF;
  6. box-shadow: 0rpx 6rpx 12rpx rgba(0, 0, 0, 0.65);
  7. border-radius: 0 0 10rpx;
  8. overflow: auto;
  9. }
  10. .content .column {
  11. background: linear-gradient(180deg, #D4D4D4 0%, rgba(212, 212, 212, 0) 40%);
  12. width: calc(100% - 40rpx);
  13. padding: 0 20rpx;
  14. }
  15. .content .column .title {
  16. width: 100%;
  17. font-size: 24rpx;
  18. color: #38A2D7;
  19. padding: 30rpx 0;
  20. display: flex;
  21. align-items: center;
  22. }
  23. .content .column .title .jiantou {
  24. display: inline-block;
  25. width: 30rpx;
  26. height: 24rpx;
  27. margin-left:12rpx;
  28. }
  29. .content .column .con-list {
  30. border-top: 1rpx solid rgba(112, 112, 112, 0.5);
  31. }