detail.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. }
  25. .by-time {
  26. height: 28rpx;
  27. display: flex;
  28. align-items: center;
  29. justify-content: space-between;
  30. margin-top: 16rpx;
  31. font-size: 20rpx;
  32. color: #999999;
  33. }
  34. .notes {
  35. margin-top: 10rpx;
  36. font-size: 24rpx;
  37. color: #666;
  38. }
  39. }
  40. .item {
  41. display: flex;
  42. justify-content: space-between;
  43. box-sizing: border-box;
  44. padding: 20rpx 30rpx;
  45. background-color: #fff;
  46. font-size: 24rpx;
  47. border-top: 1rpx solid #ddd;
  48. text {
  49. width: 84%;
  50. }
  51. }
  52. .item:last-child {
  53. border-bottom: 1rpx solid #ddd;
  54. }