details.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /* 头部 */
  2. .header {
  3. width: 750rpx;
  4. padding: 30rpx;
  5. background-color: #ffffff;
  6. box-sizing: border-box;
  7. .title {
  8. font-size: 30rpx;
  9. font-family: PingFang SC-Bold, PingFang SC;
  10. font-weight: bold;
  11. color: #333333;
  12. }
  13. .display-data {
  14. display: flex;
  15. justify-content: space-between;
  16. width: 100%;
  17. height: 28rpx;
  18. line-height: 28rpx;
  19. margin-top: 20rpx;
  20. font-size: 20rpx;
  21. font-family: PingFang SC-Regular, PingFang SC;
  22. color: #999999;
  23. text {
  24. margin-right: 20rpx;
  25. }
  26. text:last-child {
  27. margin-right: 0rpx;
  28. }
  29. }
  30. }
  31. .explain {
  32. font-size: 28rpx;
  33. font-family: PingFang SC-Regular, PingFang SC;
  34. color: #666666;
  35. margin-top: 20rpx;
  36. width: 750rpx;
  37. padding: 30rpx;
  38. box-sizing: border-box;
  39. background-color: #ffffff;
  40. .title {
  41. font-size: 30rpx;
  42. font-family: PingFang SC-Bold, PingFang SC;
  43. font-weight: bold;
  44. color: #333333;
  45. }
  46. .video {
  47. width: 690rpx;
  48. height: 360rpx;
  49. border-radius: 16rpx;
  50. overflow: hidden;
  51. }
  52. }
  53. /* 吸底 */
  54. .footer {
  55. position: fixed;
  56. width: 750rpx;
  57. background-color: #ffffff;
  58. text-align: center;
  59. padding: 20rpx 0;
  60. bottom: 0;
  61. &-button {
  62. width: 500rpx;
  63. height: 90rpx;
  64. border-radius: 45rpx !important;
  65. font-size: 28rpx;
  66. font-family: PingFang SC-Bold, PingFang SC;
  67. font-weight: bold;
  68. color: #FFFFFF;
  69. }
  70. }