detail.scss 1.2 KB

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