contentText.wxss 820 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .detail-desc {
  2. margin-top: 14rpx;
  3. background: #fff;
  4. }
  5. .detail-desc ._img {
  6. display: inline!important;
  7. }
  8. .detail-desc ._div,.detail-desc ._img {
  9. max-width: 100%!important;
  10. }
  11. .detail-desc .d-header {
  12. display: flex;
  13. -webkit-box-pack: center;
  14. justify-content: center;
  15. -webkit-box-align: center;
  16. align-items: center;
  17. height: 80rpx;
  18. font-size: 30rpx;
  19. color: #303133;
  20. position: relative;
  21. }
  22. .detail-desc .d-header text {
  23. padding: 0 20rpx;
  24. background: #fff;
  25. position: relative;
  26. z-index: 1;
  27. }
  28. .detail-desc .d-header:after {
  29. position: absolute;
  30. left: 50%;
  31. top: 50%;
  32. transform: translateX(-50%);
  33. width: 300rpx;
  34. height: 0;
  35. content: "";
  36. border-bottom: 1px solid #ccc;
  37. }
  38. .rich-img {
  39. width: 100%!important;
  40. height: auto;
  41. }