indent.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .listAll{
  2. background: url(https://www.icelook.cn/exhibition/images/page/bg.jpg) no-repeat;
  3. background-size: cover;
  4. height: 100vh;
  5. }
  6. .title{
  7. width: 100%;
  8. z-index: 10;
  9. background: #F5EAD2;
  10. padding-bottom: 20rpx;
  11. .titles{
  12. text-align: center;
  13. color: #000;
  14. font-size: 36rpx;
  15. font-family: Georgia, 'Times New Roman', Times, serif;
  16. font-weight: bold;
  17. padding-top: 10rpx;
  18. }
  19. .back{
  20. position: absolute;
  21. left: 30rpx;
  22. width: 80rpx;
  23. height: 35rpx;
  24. image{
  25. width: 18rpx;
  26. height: 100%;
  27. }
  28. }
  29. }
  30. .list{
  31. padding:30rpx 30rpx;
  32. height: 84vh;
  33. overflow-y: scroll;
  34. li{
  35. background: #FDFAF3;
  36. box-shadow: 0 0 10px rgba(0,0,0,.1);
  37. border-radius: 16rpx;
  38. margin-bottom: 30rpx;
  39. position: relative;
  40. overflow: hidden;
  41. padding:40rpx;
  42. display: flex;
  43. .left{
  44. flex:1;
  45. .name{
  46. font-size: 30rpx;
  47. }
  48. .time{
  49. font-size: 28rpx;
  50. color: #666666;
  51. }
  52. }
  53. .right{
  54. padding-left: 50rpx;
  55. font-size: 28rpx;
  56. color: #954024;
  57. span{
  58. font-size: 48rpx;
  59. }
  60. }
  61. }
  62. .nodata{
  63. text-align: center;
  64. padding-top: 200rpx;
  65. color: #666;
  66. image{
  67. width: 440rpx;
  68. height: 240rpx;
  69. }
  70. }
  71. }