1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .detail-desc {
- margin-top: 14rpx;
- background: #fff;
- }
- .detail-desc ._img {
- display: inline!important;
- }
- .detail-desc ._div,.detail-desc ._img {
- max-width: 100%!important;
- }
- .detail-desc .d-header {
- display: flex;
- -webkit-box-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- align-items: center;
- height: 80rpx;
- font-size: 30rpx;
- color: #303133;
- position: relative;
- }
- .detail-desc .d-header text {
- padding: 0 20rpx;
- background: #fff;
- position: relative;
- z-index: 1;
- }
- .detail-desc .d-header:after {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translateX(-50%);
- width: 300rpx;
- height: 0;
- content: "";
- border-bottom: 1px solid #ccc;
- }
- .rich-img {
- width: 100%!important;
- height: auto;
- }
|