channelDetails.wxss 1.6 KB

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