list.wxss 826 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* components/list/list.wxss */
  2. .content {
  3. width: 100%;
  4. height: 962rpx;
  5. background: #FFFFFF;
  6. box-shadow: 0rpx 6rpx 12rpx rgba(0, 0, 0, 0.65);
  7. opacity: 1;
  8. border-radius: 0 0 10rpx;
  9. margin: 0 auto;
  10. overflow: scroll;
  11. }
  12. .content {
  13. box-sizing: border-box;
  14. }
  15. .content .main {
  16. box-sizing: border-box;
  17. width: 100%;
  18. }
  19. .content .column {
  20. width: 100%;
  21. }
  22. .content .column .title {
  23. width: 100%;
  24. height: 100%;
  25. padding: 30rpx 0;
  26. font-size: 13px;
  27. font-family: Microsoft YaHei;
  28. font-weight: 400;
  29. color: #38A2D7;
  30. background: linear-gradient(180deg, #D4D4D4 0%, rgba(212, 212, 212, 0) 100%);
  31. padding: 5% 4%;
  32. box-sizing: border-box;
  33. }
  34. .content .column .title .title-img {
  35. width:5%;
  36. height:2vh;
  37. margin-left:2%;
  38. }
  39. .content .column .con-list {
  40. margin: 0 4%;
  41. border-top: 1px solid #707070;
  42. }