details.css 827 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. page {
  2. background-color: #f7f7f7;
  3. }
  4. .ht-box,
  5. page {
  6. width: 100%;
  7. height: 100%;
  8. box-sizing: border-box;
  9. }
  10. .ht-box {
  11. padding: 30rpx;
  12. }
  13. .ht-details {
  14. background-color: #fff;
  15. padding: 20rpx 30rpx;
  16. border-radius: 10rpx;
  17. box-shadow: 0rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.05);
  18. margin-bottom: 30rpx;
  19. }
  20. .d-title {
  21. font-size: 30rpx;
  22. color: #000;
  23. font-weight: 700;
  24. }
  25. .d-content {
  26. font-size: 26rpx;
  27. line-height: 50rpx;
  28. text-align: justify;
  29. text-indent: 50rpx;
  30. }
  31. .d-content,
  32. .d-pic {
  33. margin-top: 20rpx;
  34. }
  35. .pic-list {
  36. width: 100%;
  37. box-sizing: border-box;
  38. margin-bottom: 20rpx;
  39. }
  40. .pic-list .img {
  41. width: 100%;
  42. height: auto;
  43. }
  44. .pic_title {
  45. text-align: center;
  46. font-size: 26rpx;
  47. }