index.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* miniprogram/pages/marvellous/index.wxss */
  2. .marvellous {
  3. padding: 10rpx;
  4. height: 100%;
  5. }
  6. .icon_container {
  7. width: 750rpx;
  8. margin-left: -10rpx;
  9. font-size: 12px;
  10. color: #666;
  11. }
  12. .icon_container .icon_item_cell {
  13. position: relative;
  14. box-sizing: border-box;
  15. display: inline-block;
  16. width: 250rpx;
  17. padding: 5rpx;
  18. }
  19. .icon_item_cell .title {
  20. box-sizing: border-box;
  21. position: absolute;
  22. bottom: 0;
  23. background-color: rgba(0, 0, 0, .8);
  24. width: 247rpx;
  25. left: 3rpx;
  26. padding: 5rpx 20rpx 5rpx 10rpx;
  27. color: #fff;
  28. overflow: hidden;
  29. text-overflow: ellipsis;
  30. white-space: nowrap;
  31. }
  32. .icon_container .btnClose {
  33. border: 2rpx solid #fff;
  34. background-color: rgba(0, 0, 0, .2);
  35. border-radius: 50%;
  36. position: absolute;
  37. font-size: 25rpx;
  38. height: 30rpx;
  39. width: 30rpx;
  40. right: 10rpx;
  41. top: 10rpx;
  42. z-index: 1;
  43. color: #fff;
  44. text-align: center;
  45. line-height: 30rpx;
  46. }
  47. .icon_container .act {
  48. border-color: #07c160;
  49. color: #07c160;
  50. }
  51. .img {
  52. width: 245rpx;
  53. height: 164rpx;
  54. }
  55. .video {
  56. width: 245rpx;
  57. height: 164rpx;
  58. }
  59. .bottomBtn {
  60. background-color: #eee;
  61. position: absolute;
  62. width: 750rpx;
  63. left: 0;
  64. padding: 20rpx 0;
  65. color: #333;
  66. bottom: 0;
  67. }
  68. .bottomBtn .btn {
  69. width: 370rpx;
  70. text-align: center;
  71. display: inline-block;
  72. }
  73. .bottomBtn .btn:last-child {
  74. border-left: 1rpx solid #eee;
  75. }
  76. .videoM {
  77. top: 0;
  78. left: 0;
  79. right: 0;
  80. bottom: 0;
  81. position: fixed;
  82. background-color: rgba(0, 0, 0, .8);
  83. }
  84. .videoM .close {
  85. position: absolute;
  86. top: 10rpx;
  87. right: 10rpx;
  88. }
  89. .videoM .v {
  90. top: 50%;
  91. width: 750rpx;
  92. height: 422rpx;
  93. position: absolute;
  94. transform: translateY(-50%);
  95. }