poster.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* pages/master/poster/poster.wxss */
  2. .container{
  3. width: 100vw;
  4. height: 100vh;
  5. overflow: hidden;
  6. background-color: #f7f7f7;
  7. position: relative;
  8. }
  9. .poster{
  10. margin: 146rpx 0 172rpx;
  11. width: 750rpx;
  12. height: 926rpx;
  13. position: relative;
  14. }
  15. .poster-bgc{
  16. width: 750rpx;
  17. height: 926rpx;
  18. }
  19. .poster-bgc image{
  20. width: 100%;
  21. height: 100%;
  22. }
  23. .bottom{
  24. width: 750rpx;
  25. height: 164rpx;
  26. background-color: #ffffff;
  27. display: flex;
  28. align-items: center;
  29. padding: 20rpx 30rpx;
  30. box-sizing: border-box;
  31. justify-content: space-between;
  32. position: absolute;
  33. bottom: 10px;
  34. left: 0;
  35. }
  36. .bottom .box{
  37. width: 124rpx;
  38. height: 124rpx;
  39. display: flex;
  40. flex-direction: column;
  41. align-items: center;
  42. }
  43. .bottom .box1{
  44. background-color: transparent;
  45. margin: 0;
  46. padding: 0;
  47. outline: none;
  48. box-shadow: none;
  49. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  50. -webkit-appearance: none;
  51. -moz-appearance: none;
  52. appearance: none;
  53. }
  54. .box1::after{
  55. border: none;
  56. }
  57. .bottom .box2{
  58. width: 148rpx;
  59. }
  60. .bottom .box-tip2{
  61. width: 148rpx;
  62. }
  63. .bottom .box .box-img{
  64. width: 90rpx;
  65. height: 90rpx;
  66. }
  67. .bottom .box .box-img image{
  68. width: 100%; height: 100%;
  69. }
  70. .bottom .box .box-tip{
  71. width: 124rpx;
  72. height: 34rpx;
  73. font-size: 24rpx;
  74. color: #333333;
  75. line-height: 34rpx;
  76. text-align: center;
  77. font-style: normal;
  78. }
  79. .bottom .box .box-tip2{
  80. width: 148rpx;
  81. }
  82. .show{
  83. width: 100%;
  84. height: 100%;
  85. }
  86. .show image{
  87. width: 100%;
  88. height: 100%;
  89. position: fixed;
  90. top: 0;
  91. bottom: 0;
  92. }