details.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. .explain {
  31. font-size: 28rpx;
  32. font-family: PingFang SC-Regular, PingFang SC;
  33. font-weight: 400;
  34. color: #666666;
  35. margin-top: 30rpx;
  36. }
  37. }
  38. /* 吸底 */
  39. .footer {
  40. position: fixed;
  41. width: 750rpx;
  42. background-color: #ffffff;
  43. text-align: center;
  44. padding: 20rpx 0;
  45. bottom: 0;
  46. &-button {
  47. width: 500rpx;
  48. height: 90rpx;
  49. border-radius: 45rpx !important;
  50. font-size: 28rpx;
  51. font-family: PingFang SC-Bold, PingFang SC;
  52. font-weight: bold;
  53. color: #FFFFFF;
  54. }
  55. }