/* ==============================
   JETO Breadcrumb
   Future Power Color
================================= */

.jeto-breadcrumb-wrap {
    padding: 18px 0 0;
    background: #fff;
}

.jeto-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.jeto-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .25s ease;
}

.jeto-breadcrumb a:hover {
    color: #168a3a;
}

.jeto-breadcrumb > i {
    color: #109bd7;
    font-size: 13px;
}

.jeto-breadcrumb span {
    color: #14284b;
    font-weight: 700;
}

.jeto-breadcrumb a i {
    color: #37b34a;
}


/* ==============================
   Product Detail Page
================================= */

.jeto-pd-page {
    padding: 35px 0 60px;
}

.jeto-pd-top {
    display: grid;
    grid-template-columns: 48% 1fr;
    gap: 42px;
    align-items: flex-start;
}


/* ==============================
   Gallery
================================= */

.jeto-pd-gallery {
    min-width: 0;
}

.jeto-pd-main-img-box {
    position: relative;
    background: linear-gradient(135deg, rgba(55,179,74,.08), rgba(16,155,215,.08));
    border: 1px solid #e7f2ee;
    border-radius: 28px;
    padding: 34px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(16,36,58,.06);
}

.jeto-pd-main-img-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #37b34a 0%, #109bd7 72%, #f6bd16 100%);
}

.jeto-pd-main-img {
    position: relative;
    height: 520px;
    background: #fff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    overflow: hidden;
    border: 1px solid #e7f2ee;
}

.jeto-pd-main-img img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all .35s ease;
}

.jeto-pd-main-img:hover img {
    transform: scale(1.03);
}

.jeto-pd-zoom-tip {
    position: absolute;
    right: 18px;
    bottom: 18px;
    height: 34px;
    padding: 0 14px;
    border-radius: 18px;
    background: rgba(20, 40, 75, .88);
    color: #fff;
    font-size: 13px;
    line-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s ease;
}

.jeto-pd-main-img:hover .jeto-pd-zoom-tip {
    opacity: 1;
    transform: translateY(0);
}

.jeto-pd-main-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all .3s ease;
    box-shadow: 0 10px 24px rgba(55,179,74,.22);
}

.jeto-pd-main-arrow:hover {
    background: linear-gradient(135deg, #2aa640 0%, #0a8fc9 82%);
}

.jeto-pd-main-prev {
    left: 16px;
}

.jeto-pd-main-next {
    right: 16px;
}


/* ==============================
   Thumbnails
   一屏显示完整缩略图，避免最后一个露半个
================================= */

.jeto-pd-thumb-wrap {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
    align-items: center;
}

.jeto-pd-thumb-arrow {
    width: 42px;
    height: 82px;
    border: none;
    border-radius: 16px;
    background: #f7fbf8;
    border: 1px solid #e7f2ee;
    color: #14284b;
    font-size: 22px;
    cursor: pointer;
    transition: all .3s ease;
}

.jeto-pd-thumb-arrow:hover {
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    border-color: transparent;
    color: #fff;
}

.jeto-pd-thumb-scroll {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.jeto-pd-thumb-scroll::-webkit-scrollbar {
    display: none;
}

.jeto-pd-thumb-list {
    width: 100%;
    display: flex;
    gap: 12px;
}

/* PC端：一屏显示5个完整缩略图 */
.jeto-pd-thumb {
    flex: 0 0 calc((100% - 48px) / 5);
    height: 82px;
    padding: 8px;
    border: 2px solid transparent;
    border-radius: 16px;
    background: #f7fbf8;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .25s ease;
}

.jeto-pd-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
}

.jeto-pd-thumb:hover,
.jeto-pd-thumb.active {
    border-color: #37b34a;
    background: #fff;
    box-shadow: 0 8px 20px rgba(55,179,74,.12);
}


/* ==============================
   Summary
================================= */

.jeto-pd-summary {
    padding: 36px 38px;
    background: linear-gradient(135deg, rgba(55,179,74,.08), rgba(16,155,215,.08));
    border: 1px solid #e7f2ee;
    border-radius: 28px;
    box-shadow: 0 12px 34px rgba(16,36,58,.06);
}

.jeto-pd-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 34px;
    padding: 0 16px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(55,179,74,.18);
    color: #168a3a;
    font-size: 14px;
    font-weight: 800;
}

.jeto-pd-summary h1 {
    margin: 0 0 14px;
    color: #14284b;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
}

.jeto-pd-summary h2 {
    margin: 0 0 18px;
    color: #14284b;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;
}

.jeto-pd-summary p {
    margin: 0 0 26px;
    color: #374151;
    font-size: 16px;
    line-height: 1.75;
}

.jeto-pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.jeto-pd-actions a {
    min-width: 150px;
    height: 48px;
    padding: 0 22px;
    border-radius: 26px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 800;
    transition: all .3s ease;
}

.jeto-pd-quote-btn {
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(55,179,74,.22);
}

.jeto-pd-quote-btn:hover {
    background: linear-gradient(135deg, #2aa640 0%, #0a8fc9 82%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(16,155,215,.24);
}

.jeto-pd-pdf-btn {
    background: #fff;
    border: 1px solid #e7f2ee;
    color: #14284b;
}

.jeto-pd-pdf-btn i {
    color: #37b34a;
}

.jeto-pd-pdf-btn:hover {
    background: #14284b;
    border-color: #14284b;
    color: #fff;
    transform: translateY(-2px);
}

.jeto-pd-pdf-btn:hover i {
    color: #fff;
}

.jeto-pd-info-list {
    display: grid;
    gap: 12px;
}

.jeto-pd-info-list div {
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e7f2ee;
    border-radius: 14px;
    color: #14284b;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
}

.jeto-pd-info-list i {
    margin-right: 8px;
    color: #37b34a;
}


/* ==============================
   Tabs
================================= */

.jeto-pd-tabs-section {
    margin-top: 36px;
    background: linear-gradient(135deg, rgba(55,179,74,.08), rgba(16,155,215,.08));
    border: 1px solid #e7f2ee;
    border-radius: 28px;
    padding: 28px;
}

.jeto-pd-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.jeto-pd-tabs button {
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid #e7f2ee;
    border-radius: 24px;
    background: #fff;
    color: #14284b;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s ease;
}

.jeto-pd-tabs button:hover,
.jeto-pd-tabs button.active {
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 24px rgba(55,179,74,.18);
}

.jeto-pd-tab-body {
    background: #fff;
    border: 1px solid #e7f2ee;
    border-radius: 22px;
    padding: 30px;
}

.jeto-pd-tab-panel {
    display: none;
}

.jeto-pd-tab-panel.active {
    display: block;
}


/* ==============================
   WordPress Editor Content Style
================================= */

.jeto-pd-editor-content {
    color: #374151;
    font-size: 16px;
    line-height: 1.85;
}

.jeto-pd-editor-content h2,
.jeto-pd-editor-content h3,
.jeto-pd-editor-content h4,
.jeto-pd-editor-content h5,
.jeto-pd-editor-content h6 {
    margin: 28px 0 15px;
    color: #14284b;
    line-height: 1.35;
    font-weight: 800;
}

.jeto-pd-editor-content h2:first-child,
.jeto-pd-editor-content h3:first-child {
    margin-top: 0;
}

.jeto-pd-editor-content h2 {
    font-size: 30px;
}

.jeto-pd-editor-content h3 {
    font-size: 24px;
}

.jeto-pd-editor-content h4 {
    font-size: 20px;
}

.jeto-pd-editor-content h5 {
    font-size: 18px;
}

.jeto-pd-editor-content h6 {
    font-size: 16px;
}

.jeto-pd-editor-content p {
    margin: 0 0 18px;
    color: #374151;
}

.jeto-pd-editor-content a {
    color: #168a3a;
    text-decoration: underline;
}

.jeto-pd-editor-content a:hover {
    color: #109bd7;
}

.jeto-pd-editor-content img {
    max-width: 100%;
    height: auto;
    margin: 18px 0;
    border-radius: 18px;
}

.jeto-pd-editor-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e7f2ee;
}

.jeto-pd-editor-content table th,
.jeto-pd-editor-content table td {
    padding: 15px 18px;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
}

.jeto-pd-editor-content table th {
    width: 28%;
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    color: #fff;
    font-weight: 700;
}

.jeto-pd-editor-content blockquote {
    margin: 24px 0;
    padding: 22px 26px;
    border-left: 4px solid #37b34a;
    background: #f7fbf8;
    border-radius: 14px;
    color: #14284b;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 600;
}


/* ==============================
   Product Detail Editor List Fix
   解决全局 ul/li 去掉圆点的问题
================================= */

.jeto-pd-editor-content ul {
    margin: 0 0 22px 22px;
    padding-left: 20px;
    list-style: disc !important;
}

.jeto-pd-editor-content ol {
    margin: 0 0 22px 22px;
    padding-left: 20px;
    list-style: decimal !important;
}

.jeto-pd-editor-content ul li {
    margin-bottom: 8px;
    color: #374151;
    list-style: disc !important;
    display: list-item !important;
}

.jeto-pd-editor-content ol li {
    margin-bottom: 8px;
    color: #374151;
    list-style: decimal !important;
    display: list-item !important;
}

.jeto-pd-editor-content ul li::marker,
.jeto-pd-editor-content ol li::marker {
    color: #37b34a;
}

/* 嵌套列表 */
.jeto-pd-editor-content ul ul {
    margin-top: 8px;
    margin-bottom: 8px;
    list-style: circle !important;
}

.jeto-pd-editor-content ul ul li {
    list-style: circle !important;
}

.jeto-pd-editor-content ol ol {
    margin-top: 8px;
    margin-bottom: 8px;
    list-style: lower-alpha !important;
}

.jeto-pd-editor-content ol ol li {
    list-style: lower-alpha !important;
}


/* ==============================
   Related Products
================================= */

.jeto-pd-related {
    margin-top: 36px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(55,179,74,.08), rgba(16,155,215,.08));
    border: 1px solid #e7f2ee;
    border-radius: 28px;
}

.jeto-pd-related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.jeto-pd-related-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #168a3a;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
}

.jeto-pd-related-head h2 {
    margin: 0;
    color: #14284b;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 800;
}

.jeto-pd-related-head > a {
    color: #14284b;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.jeto-pd-related-head > a:hover {
    color: #168a3a;
}

.jeto-pd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.jeto-pd-related-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e7f2ee;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    transition: all .35s ease;
    box-shadow: 0 10px 28px rgba(16,36,58,.05);
}

.jeto-pd-related-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16,155,215,.34);
    box-shadow: 0 16px 40px rgba(16,155,215,.14);
}

.jeto-pd-related-img {
    height: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.jeto-pd-related-img::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #37b34a 0%, #109bd7 72%, #f6bd16 100%);
}

.jeto-pd-related-img img {
    display: block;
   width: 100%;
   height:auto;
    transition: all .35s ease;
}

.jeto-pd-related-card:hover .jeto-pd-related-img img {
    transform: scale(1.06);
}

.jeto-pd-related-info {
    padding: 18px 18px 20px;
    background: #fff;
}

.jeto-pd-related-info h3 {
    margin: 0 0 10px;
    color: #14284b;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jeto-pd-related-info p {
    margin: 0;
    color: #5b6472;
    font-size: 14px;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ==============================
   Lightbox
================================= */

.jeto-pd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(16, 36, 58, .88);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.jeto-pd-lightbox.show {
    display: flex;
}

.jeto-pd-lightbox img {
    max-width: 92vw;
    max-height: 86vh;
    background: #fff;
    border-radius: 18px;
    object-fit: contain;
}

.jeto-pd-lightbox-close {
    position: absolute;
    right: 28px;
    top: 28px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #14284b;
    font-size: 18px;
    cursor: pointer;
}

.jeto-pd-lightbox-arrow {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #14284b;
    font-size: 28px;
    cursor: pointer;
    transform: translateY(-50%);
}

.jeto-pd-lightbox-prev {
    left: 28px;
}

.jeto-pd-lightbox-next {
    right: 28px;
}

.jeto-pd-lightbox-close:hover,
.jeto-pd-lightbox-arrow:hover {
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    color: #fff;
}


/* ==============================
   Responsive
================================= */

@media (max-width: 1200px) {
    .jeto-pd-top {
        grid-template-columns: 46% 1fr;
        gap: 30px;
    }

    .jeto-pd-main-img {
        height: 450px;
    }

    .jeto-pd-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .jeto-pd-top {
        grid-template-columns: 1fr;
    }

    .jeto-pd-main-img {
        height: 430px;
    }

    .jeto-pd-thumb {
        flex-basis: calc((100% - 36px) / 4);
    }

    .jeto-pd-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .jeto-breadcrumb-wrap {
        padding: 14px 0 0;
    }

    .jeto-breadcrumb {
        font-size: 13px;
        gap: 7px;
    }

    .jeto-pd-page {
        padding: 28px 0 42px;
    }

    .jeto-pd-main-img-box {
        padding: 18px;
        border-radius: 22px;
    }

    .jeto-pd-main-img {
        height: 300px;
        border-radius: 18px;
    }

    .jeto-pd-main-arrow {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .jeto-pd-main-prev {
        left: 8px;
    }

    .jeto-pd-main-next {
        right: 8px;
    }

    .jeto-pd-thumb-wrap {
        grid-template-columns: 34px minmax(0, 1fr) 34px;
    }

    .jeto-pd-thumb-arrow {
        width: 34px;
        height: 70px;
        border-radius: 12px;
    }

    .jeto-pd-thumb {
        flex-basis: calc((100% - 24px) / 3);
        height: 70px;
        border-radius: 12px;
    }

    .jeto-pd-summary {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .jeto-pd-summary h1 {
        font-size: 28px;
    }

    .jeto-pd-summary h2 {
        font-size: 19px;
    }

    .jeto-pd-summary p {
        font-size: 15px;
        line-height: 1.7;
    }

    .jeto-pd-actions a {
        width: 100%;
    }

    .jeto-pd-tabs-section {
        margin-top: 28px;
        padding: 18px;
        border-radius: 22px;
    }

    .jeto-pd-tabs {
        gap: 8px;
    }

    .jeto-pd-tabs button {
        width: 100%;
        justify-content: center;
    }

    .jeto-pd-tab-body {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .jeto-pd-editor-content {
        font-size: 15px;
        line-height: 1.75;
    }

    .jeto-pd-editor-content h2 {
        font-size: 24px;
    }

    .jeto-pd-editor-content h3 {
        font-size: 21px;
    }

    .jeto-pd-editor-content h4 {
        font-size: 18px;
    }

    .jeto-pd-editor-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .jeto-pd-related {
        margin-top: 28px;
        padding: 20px 16px;
        border-radius: 22px;
    }

    .jeto-pd-related-head {
        display: block;
    }

    .jeto-pd-related-head h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .jeto-pd-related-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .jeto-pd-related-img {
        height: 210px;
    }

    .jeto-pd-lightbox {
        padding: 20px;
    }

    .jeto-pd-lightbox-close {
        right: 14px;
        top: 14px;
    }

    .jeto-pd-lightbox-arrow {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .jeto-pd-lightbox-prev {
        left: 12px;
    }

    .jeto-pd-lightbox-next {
        right: 12px;
    }
}


/* ==============================
   Product Detail Summary Content
   右侧技术参数 / 简介内容样式
================================= */

.jeto-pd-summary-content {
    padding: 15px 0;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.75;
}

.jeto-pd-summary-content p {
    margin: 0 0 14px;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.75;
}

.jeto-pd-summary-content h2,
.jeto-pd-summary-content h3,
.jeto-pd-summary-content h4 {
    margin: 22px 0 12px;
    color: #14284b;
    font-weight: 800;
    line-height: 1.35;
}

.jeto-pd-summary-content h2 {
    font-size: 24px;
}

.jeto-pd-summary-content h3 {
    font-size: 20px;
}

.jeto-pd-summary-content h4 {
    font-size: 18px;
}

.jeto-pd-summary-content strong,
.jeto-pd-summary-content b {
    color: #14284b;
    font-weight: 800;
}

/* ul / ol 列表 */
.jeto-pd-summary-content ul,
.jeto-pd-summary-content ol {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.jeto-pd-summary-content ul li,
.jeto-pd-summary-content ol li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
    color: #5b6472;
    font-size: 15px;
    line-height: 1.65;
}

.jeto-pd-summary-content ul li:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 10px;
    width: 7px;
    height: 7px;
    background: #37b34a;
    border-radius: 50%;
}

.jeto-pd-summary-content ol {
    counter-reset: pd-summary-counter;
}

.jeto-pd-summary-content ol li {
    counter-increment: pd-summary-counter;
}

.jeto-pd-summary-content ol li:before {
    content: counter(pd-summary-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #37b34a;
    font-weight: 800;
}

/* 链接 */
.jeto-pd-summary-content a {
    color: #168a3a;
    text-decoration: underline;
}

.jeto-pd-summary-content a:hover {
    color: #109bd7;
}

/* 图片 */
.jeto-pd-summary-content img {
    max-width: 100%;
    height: auto;
    margin: 16px 0;
    border-radius: 14px;
    display: block;
}

/* 表格外层自适应 */
.jeto-pd-summary-content table {
    width: 100%;
    margin: 18px 0;
    border-collapse: collapse;
    border-spacing: 0;
    background: #fff;
    overflow: hidden;
    border: 1px solid #e7f2ee;
    border-radius: 12px;
}

.jeto-pd-summary-content table th,
.jeto-pd-summary-content table td {
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    color: #5b6472;
    font-size: 14px;
    line-height: 1.55;
    text-align: left;
    vertical-align: top;
}

.jeto-pd-summary-content table th {
    background: linear-gradient(135deg, rgba(55,179,74,.12), rgba(16,155,215,.12));
    color: #14284b;
    font-weight: 800;
}

.jeto-pd-summary-content table tr:nth-child(even) td {
    background: #f7fbf8;
}

/* blockquote */
.jeto-pd-summary-content blockquote {
    margin: 18px 0;
    padding: 16px 18px;
    border-left: 4px solid #37b34a;
    background: #f7fbf8;
    color: #5b6472;
    border-radius: 0 12px 12px 0;
}

/* 兼容连续纯文本 */
.jeto-pd-summary-content > *:first-child {
    margin-top: 0;
}

.jeto-pd-summary-content > *:last-child {
    margin-bottom: 0;
}

/* 移动端表格横向滚动保护 */
@media (max-width: 768px) {
    .jeto-pd-summary-content {
        font-size: 15px;
        line-height: 1.7;
        overflow-x: auto;
    }

    .jeto-pd-summary-content p {
        font-size: 15px;
    }

    .jeto-pd-summary-content table {
        min-width: 620px;
    }

    .jeto-pd-summary-content h2 {
        font-size: 22px;
    }

    .jeto-pd-summary-content h3 {
        font-size: 19px;
    }

    .jeto-pd-summary-content h4 {
        font-size: 17px;
    }
}