detail.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .header {
  2. width: 750rpx;
  3. height: 392rpx;
  4. }
  5. /* 基础盒子 */
  6. .bsae-box {
  7. width: 750rpx;
  8. padding: 20rpx 30rpx;
  9. box-sizing: border-box;
  10. background: #ffffff;
  11. font-family: PingFang SC-Regular, PingFang SC;
  12. }
  13. /* 简介 */
  14. .brief {
  15. .first-line {
  16. display: flex;
  17. align-items: center;
  18. justify-content: space-between;
  19. width: 100%;
  20. font-size: 30rpx;
  21. font-family: PingFang SC-Bold, PingFang SC;
  22. font-weight: bold;
  23. color: #333333;
  24. .multi-line {
  25. width: 500rpx;
  26. }
  27. text {
  28. font-size: 24rpx;
  29. color: #666666;
  30. }
  31. }
  32. .by-time {
  33. height: 28rpx;
  34. display: flex;
  35. align-items: center;
  36. justify-content: space-between;
  37. margin-top: 10rpx;
  38. font-size: 20rpx;
  39. color: #999999;
  40. .line-1 {
  41. width: 480rpx;
  42. }
  43. }
  44. }
  45. /* 描述 */
  46. .describe {
  47. margin-top: 20rpx;
  48. .title {
  49. font-size: 28rpx;
  50. color: #333333;
  51. }
  52. .multi-line {
  53. font-size: 28rpx;
  54. color: #666666;
  55. margin-top: 20rpx;
  56. }
  57. }