contentText.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. /* 详情 */
  12. .detail-desc {
  13. margin-top: 14rpx;
  14. background: #fff;
  15. }
  16. .detail-desc ._img {
  17. max-width: 100% !important;
  18. display: inline !important;
  19. }
  20. .detail-desc ._div {
  21. max-width: 100% !important;
  22. }
  23. .detail-desc .d-header {
  24. display: flex;
  25. justify-content: center;
  26. align-items: center;
  27. height: 80rpx;
  28. font-size: 30rpx;
  29. color: #303133;
  30. position: relative;
  31. }
  32. .detail-desc .d-header text {
  33. padding: 0 20rpx;
  34. background: #fff;
  35. position: relative;
  36. z-index: 1;
  37. }
  38. .detail-desc .d-header:after {
  39. position: absolute;
  40. left: 50%;
  41. top: 50%;
  42. -webkit-transform: translateX(-50%);
  43. transform: translateX(-50%);
  44. width: 300rpx;
  45. height: 0;
  46. content: '';
  47. border-bottom: 1px solid #ccc;
  48. }
  49. /* 商品详情中限制图片大小 */
  50. .rich-img {
  51. width: 100% !important;
  52. height: auto;
  53. }