index.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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_container .btnClose{
  20. border: 2rpx solid #fff;
  21. background-color: rgba(0,0,0, .2);
  22. border-radius: 50%;
  23. position: absolute;
  24. font-size: 25rpx;
  25. height: 30rpx;
  26. width: 30rpx;
  27. right: 10rpx;
  28. top: 10rpx;
  29. z-index: 1;
  30. color: #fff;
  31. text-align: center;
  32. line-height: 30rpx;
  33. }
  34. .icon_container .act{
  35. border-color: #07c160;
  36. color: #07c160;
  37. }
  38. .img {
  39. width: 245rpx;
  40. height: 164rpx;
  41. }
  42. .video{
  43. width: 245rpx;
  44. height: 164rpx;
  45. }
  46. .bottomBtn{
  47. background-color: #eee;
  48. position: absolute;
  49. width: 750rpx;
  50. left: 0;
  51. padding: 20rpx 0;
  52. color: #333;
  53. bottom: 0;
  54. }
  55. .bottomBtn .btn{
  56. width: 370rpx;
  57. text-align: center;
  58. display: inline-block;
  59. }
  60. .bottomBtn .btn:last-child{
  61. border-left: 1rpx solid #eee;
  62. }
  63. .videoM{
  64. top: 0;
  65. left: 0;
  66. right: 0;
  67. bottom: 0;
  68. position: fixed;
  69. background-color: rgba(0, 0, 0, .2);
  70. }
  71. .videoM .close{
  72. position:absolute;
  73. top: 10rpx;
  74. right: 10rpx;
  75. }
  76. .videoM .v{
  77. top: 50%;
  78. width: 750rpx;
  79. height: 422rpx;
  80. position: absolute;
  81. transform: translateY(-50%);
  82. }