channelDetail.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .headInfo{
  2. width: 100vw;
  3. height: 260rpx;
  4. background: rgba(0, 1, 3, 0.8);
  5. filter: blur(0px);
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. position: relative;
  10. }
  11. .headInfo .channelInfo{
  12. width: calc(100vw - 64rpx);
  13. height: 160rpx;
  14. display: flex;
  15. align-items: center;
  16. }
  17. .headInfo .channelInfo .pic{
  18. width: 160rpx;
  19. height: 160rpx;
  20. margin-right: 20rpx;
  21. }
  22. .headInfo .channelInfo .pic image{
  23. width: 160rpx;
  24. height: 160rpx;
  25. border-radius: 18rpx;
  26. }
  27. .headInfo .channelInfo .textInfo{
  28. height: 160rpx;
  29. display: flex;
  30. justify-content: center;
  31. flex-direction: column;
  32. }
  33. .headInfo .channelInfo .textInfo text:first-child{
  34. font-size: 48rpx;
  35. font-weight: 600;
  36. color: #FFFFFF;
  37. line-height: 66rrpx;
  38. }
  39. .headInfo .channelInfo .textInfo text:last-child{
  40. font-size: 30rpx;
  41. font-weight: 500;
  42. color: #FFFFFF;
  43. line-height: 38rpx;
  44. text-shadow: 0px 4rpx 8rpx rgba(0,0,0,0.5);
  45. opacity: 0.8;
  46. }
  47. .headInfo>image{
  48. position: absolute;
  49. }
  50. .headInfo .bgPic_1{
  51. height: 48rpx;
  52. top: 30rpx;
  53. right: 30rpx;
  54. }
  55. .headInfo .bgPic_2{
  56. height: 172rpx;
  57. bottom: -6rpx;
  58. left: 94rpx;
  59. }
  60. .headInfo .bgPic_3{
  61. width: 100vw;
  62. bottom: 0rpx;
  63. left:0rpx;
  64. }
  65. .list{
  66. padding: 0 6rpx;
  67. overflow: auto;
  68. }
  69. .list .info{
  70. margin: 40rpx 26rpx 0;
  71. width: 192rpx;
  72. float: left;
  73. }
  74. .list .info image{
  75. height: 192rpx;
  76. width: 192rpx;
  77. border-radius: 18rpx;
  78. }
  79. .list .info text{
  80. width: 192rpx;
  81. height: 76rpx;
  82. font-size: 30rpx;
  83. font-weight: 400;
  84. color: #353535;
  85. line-height: 38rpx;
  86. display:-webkit-box;
  87. -webkit-box-orient: vertical;
  88. -webkit-line-clamp:2;
  89. overflow:hidden;
  90. }