﻿.home-title {
    width: 100%;
    text-align: center;
    padding: 50px 0;
}

.home-title h1 {
    font-size: 2.2rem;
}

/* ==============================
   Home Hero Products + Banner
================================= */

.jqh-home-hero {
    width: 100%;
    overflow: visible;
}

.jqh-home-hero-inner {
    display: flex;
    align-items: stretch;
    gap: 30px;
    position: relative;
    overflow: visible;
}

/* 左侧分类 */
.jqh-product-nav {
    flex: 0 0 326px;
    background: #fff;
    border: 1px solid rgba(199, 166, 90, .45);
    border-radius: 8px;
    position: relative;
    z-index: 30;
    overflow: visible;
}

.jqh-product-nav h2 {
    height: 83px;
    margin: 0;
    padding: 0 20px;
    border-bottom: 1px solid rgba(199, 166, 90, .35);
    display: flex;
    align-items: center;
    color: #111;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
}

.jqh-product-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.jqh-product-menu > li {
    position: static;
    border-bottom: 1px solid rgba(199, 166, 90, .35);
}

.jqh-product-menu > li:last-child {
    border-bottom: 0;
}

.jqh-product-menu > li > a {
    min-height: 55px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

.jqh-product-menu > li > a span {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.jqh-product-menu > li > a span b {
    display: block;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}

.jqh-product-menu > li > a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-right: 10px;
    flex: 0 0 auto;
    font-size: 0;
    color: transparent;
}

.jqh-product-menu > li > a em {
    flex: 0 0 auto;
    color: #c7a65a;
    font-size: 32px;
    line-height: 1;
    font-style: normal;
    font-weight: 300;
    margin-left: 10px;
}

.jqh-product-menu > li:hover > a {
    background: rgba(199, 166, 90, .08);
    color: #c7a65a;
}

/* 右侧三级弹出层 */
.jqh-product-sub {
    position: absolute;
    left: 326px;
    top: 0;
    width: calc(100vw - 326px - 4vw);
    max-width: 1030px;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid rgba(199, 166, 90, .35);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(16px);
    pointer-events: none;
    transition: all .22s ease;
    z-index: 40;
    overflow-y: auto;
    overflow-x: hidden;
}

.jqh-product-sub::-webkit-scrollbar {
    width: 6px;
}

.jqh-product-sub::-webkit-scrollbar-thumb {
    background: rgba(199, 166, 90, .65);
    border-radius: 10px;
}

.jqh-product-sub::-webkit-scrollbar-track {
    background: rgba(199, 166, 90, .12);
}

.jqh-product-menu > li:hover .jqh-product-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.jqh-product-sub-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 50px;
    padding: 28px 34px;
    box-sizing: border-box;
}

.jqh-product-sub-col h3 {
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    color: #222;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
}

.jqh-product-sub-col a {
    display: block;
    margin-bottom: 8px;
    color: #111;
    font-size: 15px;
    line-height: 1.45;
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}

.jqh-product-sub-col a:hover {
    color: #c7a65a;
    padding-left: 4px;
}

/* 第三级缩进 */
.jqh-product-third {
    margin: -2px 0 8px 12px;
}

.jqh-product-third a {
    position: relative;
    color: #555;
    font-size: 14px;
    margin-bottom: 7px;
}

.jqh-product-third a::before {
    content: "";
    width: 4px;
    height: 4px;
    background: #777;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 9px;
}

/* 右侧 banner */
.jqh-home-banner {
    flex: 1;
    min-width: 0;
}

.jqh-banner-stage {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.jqh-banner-track {
    display: flex;
    transition: transform .45s ease;
}

.jqh-banner-item {
    flex: 0 0 100%;
    min-width: 100%;
}

.jqh-banner-item a {
    display: block;
}

.jqh-banner-item img {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
}

/* banner 小圆点 */
.jqh-banner-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    z-index: 5;
}

.jqh-banner-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .65);
    cursor: pointer;
}

.jqh-banner-dots button.active {
    background: #c7a65a;
}

/* ==============================
   Home Service Cards
================================= */

.jqh-service-cards {
    width: 100%;
    padding: 30px 0;
}

.jqh-service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.jqh-service-item {
    display: flex;
    min-height: 152px;
    background: #fff;
    border-radius: 9px;
    overflow: hidden;
}

.jqh-service-icon {
    flex: 0 0 72px;
    background: #c7a65a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jqh-service-icon img {
    display: block;
    max-width: 42px;
    max-height: 42px;
    object-fit: contain;
}

.jqh-service-info {
    flex: 1;
    min-width: 0;
    padding: 20px 20px 18px;
    box-sizing: border-box;
}

.jqh-service-info h3 {
    margin: 0 0 8px;
    color: #111;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}

.jqh-service-info p {
    min-height: 42px;
    margin: 0 0 14px;
    color: #666;
    font-size: 15px;
    line-height: 1.35;
}

.jqh-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 32px;
    padding: 0 14px;
    box-sizing: border-box;
    border-radius: 4px;
    background: #111;
    color: #fff;
    font-size: 15px;
    line-height: 32px;
    text-decoration: none;
    transition: all .25s ease;
}

.jqh-service-btn:hover {
    background: #c7a65a;
    color: #fff;
}

/* ==============================
   Smart BOM Tool
================================= */

.jqh-home-bom {
    width: 100%;
}

.jqh-home-bom-box {
    min-height: 172px;
    padding: 38px 66px 36px 60px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #17120e url("../images/homebombg.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.jqh-home-bom-left {
    display: flex;
    align-items: center;
    min-width: 0;
}

.jqh-home-bom-icon {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
    margin-right: 60px;
    border: 2px solid #c7a65a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jqh-home-bom-icon img {
    display: block;
    max-width: 48px;
    max-height: 48px;
    object-fit: contain;
}

.jqh-home-bom-info {
    min-width: 0;
}

.jqh-home-bom-info h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
}

.jqh-home-bom-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.jqh-home-bom-info li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 14px;
    color: #fff;
    font-size: 15px;
    line-height: 1.45;
}

.jqh-home-bom-info li:last-child {
    margin-bottom: 0;
}

.jqh-home-bom-info li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 9px;
    height: 9px;
    background: url("../images/homebomli.png") center center / contain no-repeat;
}

.jqh-home-bom-right {
    flex: 0 0 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jqh-home-bom-right p {
    margin: 0 0 24px;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
}

.jqh-home-bom-upload {
    margin: 0;
    padding: 0;
}

.jqh-home-bom-upload a {
    width: 142px;
    height: 40px;
    border-radius: 999px;
    background: #c7a65a;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-size: 15px;
    line-height: 40px;
    text-decoration: none;
    transition: all .25s ease;
}

.jqh-home-bom-upload a:hover {
    background: #b89443;
    color: #111;
    transform: translateY(-2px);
}

.jqh-home-bom-upload a img {
    display: block;
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.home-title1 {
    line-height: 39px;
    padding: 60px 0 30px 0;
}

.home-title1 h2 {
    font-size: 2rem;
}

.home-title1 a {
    display: inline-block;
    height: 39px;
    line-height: 39px;
    background: #c7a65a;
    color: #fff;
    border-radius: 30px;
    font-size: 0.95rem;
    padding: 0 20px;
}

.home-title1 a:hover {
    background: #1a1712;
}

/* ==============================
   Brand Carousel
================================= */

.jqh-brand-section {
    width: 100%;
    padding-bottom: 40px;
}

.jqh-brand-slider {
    position: relative;
    padding: 0 0 30px;
    box-sizing: border-box;
    overflow: visible;
}

.jqh-brand-viewport {
    width: 100%;
    overflow: hidden;
}

.jqh-brand-track {
    display: flex;
    gap: 12px;
    transition: transform .42s ease;
    will-change: transform;
}

.jqh-brand-item {
    flex: 0 0 calc((100% - 72px) / 7);
    min-width: calc((100% - 72px) / 7);
}

.jqh-brand-item a {
    height: 98px;
    padding: 12px 18px;
    box-sizing: border-box;
    border: 1px solid rgba(199, 166, 90, .45);
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .25s ease;
}

.jqh-brand-item a:hover {
    border-color: #c7a65a;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.jqh-brand-item img {
    display: block;
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

/* arrows */
.jqh-brand-arrow {
    position: absolute;
    top: 37px;
    width: 32px;
    height: 38px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    z-index: 5;
}

.jqh-brand-arrow::before {
    content: "";
    position: absolute;
    top: 8px;
    width: 20px;
    height: 20px;
    border-top: 4px solid #c7a65a;
    border-left: 4px solid #c7a65a;
    box-sizing: border-box;
}

.jqh-brand-prev {
    left: -48px;
}

.jqh-brand-prev::before {
    left: 6px;
    transform: rotate(-45deg);
}

.jqh-brand-next {
    right: -48px;
}

.jqh-brand-next::before {
    right: 6px;
    transform: rotate(135deg);
}

.jqh-brand-arrow:hover::before {
    border-color: #111;
}

/* dots */
.jqh-brand-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.jqh-brand-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid #c7a65a;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.jqh-brand-dots button.active {
    background: #c7a65a;
}

/* ==============================
   Reliable Source
================================= */

.jqh-source-section {
    width: 100%;
    padding: 62px 0 60px;
    background: #111 url("../images/homsoubg.jpg") center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.jqh-source-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .58);
    pointer-events: none;
}

.jqh-source-section .container {
    position: relative;
    z-index: 2;
}

.jqh-source-section h2 {
    margin: 0 0 30px;
    color: #fff;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
    text-align: center;
}

.jqh-source-box {
    background: #fff;
    border-radius: 9px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.jqh-source-item {
    min-height: 152px;
    padding: 32px 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(199, 166, 90, .35);
    border-bottom: 1px solid rgba(199, 166, 90, .35);
}

.jqh-source-item:nth-child(3n) {
    border-right: 0;
}

.jqh-source-item:nth-child(n+4) {
    border-bottom: 0;
}

.jqh-source-icon {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    margin-right: 22px;
}

.jqh-source-icon img {
    display: block;
    max-width: 72px;
    max-height: 72px;
    object-fit: contain;
}

.jqh-source-item p {
    margin: 0;
    color: #333;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 500;
}

/* ==============================
   Supply Chain Coordination
================================= */

.jqh-supply-section {
    width: 100%;
    padding: 68px 0 62px;
    overflow: hidden;
}

.jqh-supply-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}

.jqh-supply-left {
    flex: 0 0 42%;
    min-width: 0;
}

.jqh-supply-label {
    display: flex;
    align-items: center;
    margin-bottom: 34px;
}

.jqh-supply-label img {
    display: block;
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-right: 12px;
    border-radius: 10px;
}

.jqh-supply-label span {
    color: #333;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 700;
}

.jqh-supply-left h2 {
    margin: 0 0 32px;
    color: #333;
    font-size: 2rem;
    line-height: 1.18;
}

.jqh-supply-left p {
    max-width: 570px;
    margin: 0 0 34px;
    color: #444;
    font-size: 14px;
    line-height: 1.45;
}

.jqh-supply-btn {
    width: 162px;
    height: 49px;
    border-radius: 4px;
    background: #c7a65a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all .25s ease;
}

.jqh-supply-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}

.jqh-supply-right {
    flex: 1;
    min-width: 0;
}

.jqh-supply-right img {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
}

/* ==============================
   Home Blog
================================= */

.home-blog {
    width: 100%;
    padding-bottom: 60px;
    background: #fff;
}

.home-blog-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 30px;
    margin-top: 28px;
}

.home-blog-item {
    display: flex;
    min-height: 277px;
    background: #fff;
    border: 1px solid rgba(199, 166, 90, .45);
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
    transition: all .25s ease;
}

.home-blog-item:hover {
    border-color: #c7a65a;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.home-blog-img {
    flex: 0 0 180px;
    display: block;
    overflow: hidden;
}

.home-blog-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-blog-item:hover .home-blog-img img {
    transform: scale(1.05);
}

.home-blog-info {
    flex: 1;
    min-width: 0;
    padding: 70px 22px 28px;
    box-sizing: border-box;
}

.home-blog-info h3 {
    margin: 0 0 18px;
    color: #222;
    font-size: 18px;
    line-height: 1.25;
}

.home-blog-info h3 a {
    color: #222;
    text-decoration: none;
    transition: color .25s ease;
}

.home-blog-info h3 a:hover {
    color: #c7a65a;
}

.home-blog-info p {
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-blog-more {
    color: #c7a65a;
    font-size: 14px;
    text-decoration: none;
    transition: color .25s ease;
}

.home-blog-more:hover {
    color: #111;
}

.home-blog-date {
    flex: 0 0 80px;
    background: #c7a65a;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-blog-date strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
}

.home-blog-date span {
    color: #fff;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
}

/* ==============================
   Mobile 768
================================= */

@media (max-width: 768px) {

    .home-title {
        padding: 20px 0;
    }

    .home-title h1 {
        font-size: 1.2rem;
    }

    .jqh-home-hero .container.mar0 {
        width: 92%;
        max-width: 92%;
    }

    .jqh-home-hero-inner {
        display: block;
    }

    .jqh-product-nav {
        width: 100%;
        margin-bottom: 16px;
        border-radius: 8px;
        overflow: hidden;
    }

    .jqh-product-nav h2 {
        height: 58px;
        font-size: 24px;
    }

    .jqh-product-menu > li {
        position: relative;
    }

    .jqh-product-menu > li > a {
        min-height: 48px;
        font-size: 14px;
    }

    .jqh-product-sub {
        position: static;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
        min-height: auto;
        border: 0;
        border-top: 1px solid rgba(199, 166, 90, .25);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
        overflow: visible;
    }

    .jqh-product-menu > li:hover .jqh-product-sub,
    .jqh-product-menu > li.current .jqh-product-sub {
        display: block;
    }

    .jqh-product-sub-box {
        display: block;
        padding: 16px 20px 18px;
        background: #fafafa;
    }

    .jqh-product-sub-col {
        margin-bottom: 18px;
    }

    .jqh-product-sub-col:last-child {
        margin-bottom: 0;
    }

    .jqh-product-sub-col h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .jqh-product-sub-col a {
        font-size: 14px;
    }

    .jqh-banner-stage {
        border-radius: 8px;
    }

    .jqh-banner-dots {
        bottom: 10px;
    }

    .jqh-banner-dots button {
        width: 8px;
        height: 8px;
    }

    .jqh-service-cards {
        padding: 18px 0 22px;
    }

    .jqh-service-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .jqh-service-item {
        min-height: 126px;
        border-radius: 8px;
    }

    .jqh-service-icon {
        flex: 0 0 68px;
    }

    .jqh-service-icon img {
        max-width: 38px;
        max-height: 38px;
    }

    .jqh-service-info {
        padding: 17px 16px 15px;
    }

    .jqh-service-info h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .jqh-service-info p {
        min-height: auto;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .jqh-service-btn {
        height: 31px;
        line-height: 31px;
        font-size: 14px;
    }

    .jqh-home-bom {
        padding: 16px 0 22px;
    }

    .jqh-home-bom-box {
        min-height: auto;
        padding: 28px 20px 26px;
        display: block;
        border-radius: 8px;
    }

    .jqh-home-bom-left {
        display: block;
        text-align: center;
    }

    .jqh-home-bom-icon {
        width: 78px;
        height: 78px;
        margin: 0 auto 18px;
        flex: none;
    }

    .jqh-home-bom-icon img {
        max-width: 42px;
        max-height: 42px;
    }

    .jqh-home-bom-info h2 {
        font-size: 27px;
        margin-bottom: 14px;
    }

    .jqh-home-bom-info ul {
        text-align: left;
    }

    .jqh-home-bom-info li {
        font-size: 14px;
        line-height: 1.55;
    }

    .jqh-home-bom-right {
        width: 100%;
        flex: none;
        margin-top: 24px;
    }

    .jqh-home-bom-right p {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .jqh-home-bom-upload a {
        width: 150px;
        height: 40px;
    }

    .home-title1 {
        line-height: 39px;
        padding: 20px 0;
    }

    .home-title1 h2 {
        font-size: 0.9rem;
    }

    .home-title1 a {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    .jqh-brand-section {
        padding-bottom: 30px;
    }

    .jqh-brand-slider {
        padding: 0 34px 28px;
    }

    .jqh-brand-item {
        flex-basis: calc((100% - 24px) / 3);
        min-width: calc((100% - 24px) / 3);
    }

    .jqh-brand-item a {
        height: 82px;
        padding: 10px 12px;
    }

    .jqh-brand-item img {
        max-height: 52px;
    }

    .jqh-brand-prev {
        left: 0;
    }

    .jqh-brand-next {
        right: 0;
    }

    .jqh-brand-arrow {
        top: 25px;
    }

    .jqh-brand-arrow::before {
        width: 17px;
        height: 17px;
        border-width: 3px;
    }

    .jqh-source-section {
        padding: 38px 0 40px;
        background-position: center center;
    }

    .jqh-source-section h2 {
        margin-bottom: 22px;
        font-size: 26px;
        line-height: 1.35;
    }

    .jqh-source-box {
        grid-template-columns: 1fr;
        border-radius: 8px;
    }

    .jqh-source-item {
        min-height: auto;
        padding: 22px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(199, 166, 90, .35);
    }

    .jqh-source-item:nth-child(n+4) {
        border-bottom: 1px solid rgba(199, 166, 90, .35);
    }

    .jqh-source-item:last-child {
        border-bottom: 0;
    }

    .jqh-source-icon {
        flex: 0 0 58px;
        width: 58px;
        height: 58px;
        margin-right: 16px;
    }

    .jqh-source-icon img {
        max-width: 58px;
        max-height: 58px;
    }

    .jqh-source-item p {
        font-size: 15px;
    }

    .jqh-supply-section {
        padding: 38px 0 36px;
    }

    .jqh-supply-inner {
        display: block;
    }

    .jqh-supply-left {
        width: 100%;
        margin-bottom: 26px;
    }

    .jqh-supply-label {
        margin-bottom: 20px;
    }

    .jqh-supply-label img {
        width: 44px;
        height: 44px;
        margin-right: 10px;
    }

    .jqh-supply-label span {
        font-size: 20px;
    }

    .jqh-supply-left h2 {
        margin-bottom: 18px;
        font-size: 27px;
        line-height: 1.28;
    }

    .jqh-supply-left h2 br {
        display: none;
    }

    .jqh-supply-left p {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.6;
    }

    .jqh-supply-btn {
        width: 150px;
        height: 44px;
    }

    .jqh-supply-right {
        width: 100%;
    }

    .home-blog {
        padding: 38px 0 44px;
    }

    .home-blog-list {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 22px;
    }

    .home-blog-item {
        min-height: auto;
    }

    .home-blog-img {
        flex: 0 0 34%;
    }

    .home-blog-info {
        padding: 24px 14px 20px;
    }

    .home-blog-info h3 {
        margin-bottom: 12px;
        font-size: 16px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home-blog-info p {
        margin-bottom: 12px;
        font-size: 13px;
        line-height: 1.45;
    }

    .home-blog-date {
        flex: 0 0 58px;
    }

    .home-blog-date strong,
    .home-blog-date span {
        font-size: 15px;
    }
}