details.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /* 头部 */
  2. .header {
  3. position: sticky;
  4. width: 750rpx;
  5. padding: 30rpx;
  6. background-color: #ffffff;
  7. box-sizing: border-box;
  8. top: 0;
  9. left: 0;
  10. z-index: 9999;
  11. .title {
  12. font-size: 30rpx;
  13. font-family: PingFang SC-Bold, PingFang SC;
  14. font-weight: bold;
  15. color: #333333;
  16. }
  17. .display-data {
  18. display: flex;
  19. justify-content: space-between;
  20. width: 100%;
  21. height: 28rpx;
  22. line-height: 28rpx;
  23. margin-top: 20rpx;
  24. font-size: 20rpx;
  25. font-family: PingFang SC-Regular, PingFang SC;
  26. color: #999999;
  27. text {
  28. margin-right: 20rpx;
  29. }
  30. text:last-child {
  31. margin-right: 0rpx;
  32. }
  33. }
  34. }
  35. .explain {
  36. font-size: 28rpx;
  37. font-family: PingFang SC-Regular, PingFang SC;
  38. color: #666666;
  39. width: 750rpx;
  40. padding: 30rpx;
  41. box-sizing: border-box;
  42. background-color: #ffffff;
  43. .title {
  44. font-size: 30rpx;
  45. font-family: PingFang SC-Bold, PingFang SC;
  46. font-weight: bold;
  47. color: #333333;
  48. }
  49. .video {
  50. width: 690rpx;
  51. height: 360rpx;
  52. border-radius: 16rpx;
  53. overflow: hidden;
  54. }
  55. }
  56. /* 吸底 */
  57. .footer {
  58. position: fixed;
  59. width: 750rpx;
  60. background-color: #ffffff;
  61. text-align: center;
  62. padding: 20rpx 0;
  63. bottom: 0;
  64. &-button {
  65. width: 500rpx;
  66. height: 90rpx;
  67. border-radius: 45rpx !important;
  68. font-size: 28rpx;
  69. font-family: PingFang SC-Bold, PingFang SC;
  70. font-weight: bold;
  71. color: #FFFFFF;
  72. }
  73. }
  74. /* 弹出层 */
  75. .popup-style {
  76. width: 80vw !important;
  77. height: 300rpx;
  78. .title {
  79. width: 100%;
  80. text-align: center;
  81. font-size: 32rpx;
  82. font-weight: 550;
  83. line-height: 120rpx;
  84. }
  85. .content {
  86. width: 100%;
  87. text-align: center;
  88. }
  89. .button {
  90. position: absolute;
  91. width: 100%;
  92. bottom: 0;
  93. color: var(--assist) !important;
  94. font-weight: 550;
  95. }
  96. }