* {
    margin: 0;
    padding: 0;
}

.container {
    /* max-width: 1200px; */
    /* margin: 20px auto; */
    /* padding: 15px; */
    padding: 0 240px;
    margin: 34px 0 107px;
    display: flex;
    gap: 67px;
}

.product-image-section {
    /* flex: 1; */
    width:40%;
}

.product-info-section {
    flex: 1;
    padding: 15px 0;

    h1 {
        font-family: Maven Pro, Maven Pro;
        font-weight: 500;
        font-size: 20px;
        color: #000000;
        line-height: 30px;
        margin-bottom: 30px;
    }

    h2 {
        font-family: Maven Pro, Maven Pro;
        font-weight: 900;
        font-size: 40px;
        color: #000000;
        line-height: 50px;
        margin-bottom: 30px;
    }

    h3 {
        font-family: Maven Pro, Maven Pro;
        font-weight: 900;
        font-size: 28px;
        color: #000000;
        line-height: 40px;
        margin-bottom: 20px;
    }
}

.main-image {
    /*border: 1px dashed #ccc;*/
    /*padding: 48px 0px 65px;*/
    margin-bottom: 20px;
    position: relative;
    /* display: flex
; */
    /* justify-content: center; */
    /* align-items: center; */
    /* box-sizing: border-box; */
    /*width: 619px;*/
    /*height: 455px;*/
    text-align: center;

    .zoom-icon {
        position: absolute;
        bottom: 12px;
        left: 16px;
    }
}

.thumbnail img {
    width: 100%;
    height: 100%;
}

.share-buttons a {
    margin-left: 10px;
}

.main-image>img {
    /*max-width: 579px;*/
    /*height: 415px;*/
    object-fit: contain;
    width:100%;
    height:auto;
}


.thumbnail-container {
    display: flex;
    gap: 10px;
    max-width: 500px;
    max-height: 200px;
    /* 限制最大高度 */
    margin-top: 20px;
    overflow: hidden;
    /* 隐藏超出部分 */
    transition: transform 0.3s ease;
    /* 添加过渡效果 */
}

.thumbnail {
    flex: 0 0 calc(33% - -1px);
    cursor: pointer;
    height: 166px;
}

.thumbnail img {
    width: 100%;
    height: auto;
    /* border: 1px solid #ddd; */
    /* border-radius: 4px; */
}

.thumbnail:hover {
    border-color: #333;
}

.product-header {
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 15px;
    font-family: Maven Pro, Maven Pro;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
}

h1 {
    font-size: 24px;
    /* margin-bottom: 10px; */
}

h2 {
    font-size: 20px;
    color: #666;
    /* margin-bottom: 20px; */
}

.product-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.product-details li {
    /* margin-bottom: 10px; */
    font-family: Maven Pro, Maven Pro;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 28px;
}

.share-section {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-top: 1px solid #eee; */
    /* padding-top: 20px; */
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    .product-image-section,
    .product-info-section {
        max-width: 100%;
    }
}

/* 在现有样式后添加 */
.product-tabs {
    /* max-width: 1200px; */
    padding: 50px 240px;
    border-top: 1px dashed #CECECE;
}

.product-images {
    padding: 0 240px;
    /* margin:0 auto; */
}

.nav-tabs {
    display: flex;
    gap: 30px;
    justify-content: center;
    /* border-bottom: 1px solid #ddd; */
    /* margin-bottom: 30px; */
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
}

.tab.active {
    color: #000;
    border-bottom: 2px solid #000;
}

.tab-content {
    display: none;
    /* padding: 20px 0; */
}

.tab-content.active {
    display: block;
}

.content-section {
    /* max-width: 1000px; */
    margin: 0 auto;
}

.content-section h2 {
    font-family: Maven Pro, Maven Pro;
    font-weight: 500;
    font-size: 24px;
    color: #000000;
    line-height: 36px;
    margin-bottom: 24px;
}

.content-section h2:nth-of-type(1) {
    margin: 70px 0 24px;

}

.content-section p {
    font-family: Maven Pro, Maven Pro;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 28px;
}

.content-section p:nth-of-type(1) {
    margin-bottom: 50px;

}

.map-section {
    margin: 24px 0 66px;
    /* text-align: center; */
}

.map-section img {
    max-width: 100%;
    height: auto;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
    margin-top: 18px;
}

.content-section li {
    /* margin-bottom: 12px; */
    padding-left: 20px;
    position: relative;

    font-family: Maven Pro, Maven Pro;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 28px;
}

.content-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}

/* 在文件末尾添加以下响应式样式 */

/* 1440px 屏幕 */
@media screen and (max-width: 1440px) {
    .product-images {
        padding: 0 120px;
    }

    .product-images img {
        max-width: 1200px;
    }

    .container {
        padding: 0 120px;
        margin: 30px 0 80px;
        gap: 50px;
    }

    .product-tabs {
        padding: 40px 120px;
    }

    .product-info-section {
        h1 {
            font-size: 18px;
            line-height: 28px;
        }

        h2 {
            font-size: 36px;
            line-height: 46px;
        }

        h3 {
            font-size: 24px;
            line-height: 36px;
        }
    }

    .content-section h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .content-section p {
        font-size: 16px;
        line-height: 26px;
    }
}

/* 1024px 屏幕 */
@media screen and (max-width: 1024px) {
    .product-image-section{
        width:100%;
    }
    .product-images {
        padding: 0 60px;
    }

    .product-images img {
        max-width: 903px;
    }

    .container {
        padding: 0 60px;
        margin: 25px 0 60px;
        gap: 40px;
    }

    .product-tabs {
        padding: 30px 60px;
    }

    .main-image {
        /*padding: 30px 40px 45px;*/
    }

    .main-image>img {
        max-width: 100%;
        height: auto;
    }

    .thumbnail {
        width: 140px;
        height: 140px;
    }

    .product-info-section {
        h1 {
            font-size: 16px;
            line-height: 24px;
        }

        h2 {
            font-size: 32px;
            line-height: 42px;
        }

        h3 {
            font-size: 22px;
            line-height: 32px;
        }
    }
}

/* 768px 屏幕 */
@media screen and (max-width: 768px) {
    .product-images {
        padding: 0 30px;
    }

    .product-images img {
        max-width: 707px;
    }

    .container {
        padding: 0 30px;
        margin: 20px 0 40px;
        flex-direction: column;
    }

    .product-tabs {
        padding: 25px 30px;
    }

    .nav-tabs {
        gap: 15px;
    }

    .tab {
        padding: 8px 15px;
        font-size: 14px;
    }

    .product-info-section {
        h1 {
            font-size: 15px;
            margin-bottom: 20px;
        }

        h2 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
    }

    .product-details li {
        font-size: 16px;
        line-height: 24px;
    }

    .content-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .content-section p {
        font-size: 15px;
        line-height: 24px;
    }
}

/* 425px 屏幕 */
@media screen and (max-width: 425px) {
    .map-section img {
        width: 394px;
    }

    .product-images {
        padding: 0 15px;
    }

    .product-images img {
        max-width: 394 px;
    }

    .container {
        padding: 0 15px;
        margin: 15px 0 30px;
    }

    .product-tabs {
        padding: 20px 15px;
    }

    .main-image {
        /*padding: 20px;*/
    }

    .thumbnail {
        width: 100px;
        height: 100px;
    }

    .nav-tabs {
        gap: 10px;
    }

    .tab {
        padding: 6px 10px;
        font-size: 12px;
    }

    .product-info-section {
        h1 {
            font-size: 14px;
            line-height: 20px;
        }

        h2 {
            font-size: 24px;
            line-height: 34px;
        }

        h3 {
            font-size: 18px;
            line-height: 28px;
        }
    }

    .product-details li {
        font-size: 14px;
        line-height: 22px;
    }

    .content-section h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .content-section p {
        font-size: 14px;
        line-height: 22px;
    }

    .breadcrumb {
        font-size: 14px;
        line-height: 20px;
    }
}

html,
body {
    overflow-x: hidden;
}

/* 1440px 屏幕 */
@media screen and (max-width: 1440px) {
    .main-image {
        /*padding: 40px 45px 55px;*/
    }

    .main-image>img {
        /*max-width: 480px;*/
        /*height: 350px;*/
    }

    .thumbnail {
        width: 150px;
        height: 150px;
    }
}

/* 1024px 屏幕 */
@media screen and (max-width: 1024px) {
    .main-image {
        /*padding: 35px 29px 45px;*/
    }

    .thumbnail img {
        width: 120px;
    }

    .main-image>img {
        /*max-width: 420px;*/
        /*height: 300px;*/
    }

    .thumbnail {
        width: 120px;
        height: 120px;
    }

    .zoom-icon {
        bottom: 10px;
        left: 12px;
    }
}

/* 768px 屏幕 */
@media screen and (max-width: 768px) {
    .thumbnail img {
        width: 110px;
    }

    .main-image {
        /*padding: 25px 30px 35px;*/
    }

    .main-image>img {
        width: 100%;
        /* height: 230px; */
    }

    .thumbnail {
        width: 100px;
        height: 100px;
    }

    .zoom-icon {
        bottom: 8px;
        left: 10px;
    }
}

/* 425px 屏幕 */
@media screen and (max-width: 425px) {
    .product-images img {
        max-width: 394px;
    }

    .thumbnail img {
        width: 90px;
    }

    .main-image {
        padding: 15px 20px 25px;
    }

    .main-image>img {
        max-width: 250px;
        height: 180px;
    }

    .thumbnail {
        width: 80px;
        height: 80px;
    }

    .zoom-icon {
        bottom: 6px;
        left: 8px;
    }
}

.scenarios-section {
    padding: 0 383px;
    margin-bottom: 168px;
}

.scenarios-section h2 {
    text-align: center;
    margin-bottom: 19px;
    margin-top: 100px;
    font-family: Maven Pro, Maven Pro;
    font-weight: 900;
    font-size: 58px;
    color: #000000;
    line-height: 60px;
}

.scenarios-section p {
    margin-bottom: 76px;
    font-family: Maven Pro, Maven Pro;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 28px;
    text-align: center;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.scenario-item {
    /* text-align: center; */
}

.scenario-item img {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.scenario-item span {
    font-family: Maven Pro, Maven Pro;
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    line-height: 32px;
}

.related-products {
    padding: 0 240px;
    margin-bottom: 80px;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 76px;
    font-family: Maven Pro, Maven Pro;
    font-weight: 900;
    font-size: 58px;
    color: #000000;
    line-height: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.content-section img{
	margin-bottom:10px;
}
.product-card-dese{
	    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 120px;
}
.product-card {
    /* text-align: center; */
}

.product-card img {
/*     max-width: 366px; */
/*     height: 254px; */
    margin-bottom: 28px;
	width: 100%;
    margin: 0 auto 28px;
    display: block;
}

.product-card h3 {
    margin-bottom: 20px;
    font-family: Maven Pro, Maven Pro;
    font-weight: 900;
    font-size: 24px;
    color: #333333;
    line-height: 32px;
}

.product-card p {
    font-family: Maven Pro, Maven Pro;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    line-height: 28px;
}

/* 响应式布局 */
@media screen and (max-width: 1440px) {

    .scenarios-section,
    .related-products {
        padding: 0 120px;
    }

    .scenario-item img {
        height: 180px;
    }

    .product-card img {
        height: 220px;
    }
}

@media screen and (max-width: 1024px) {

    .scenarios-section,
    .related-products {
        padding: 0 60px;
    }

    .scenarios-grid {
        gap: 15px;
    }

    .scenario-item img {
        height: 150px;
    }

    .products-grid {
        gap: 20px;
    }

    .product-card img {
        height: 200px;
    }

    .product-card h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {

    .scenarios-section,
    .related-products {
        padding: 0 30px;
        margin-bottom: 60px;
    }

    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .scenario-item img {
        /* height: 140px; */
        height: auto;
    }

    .product-card img {
        height: 180px;
    }
}

@media screen and (max-width: 425px) {

    .scenarios-section,
    .related-products {
        padding: 0 15px;
        margin-bottom: 40px;
    }

    .scenarios-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .scenario-item img {
        height: 200px;
    }

    .product-card {
        margin-bottom: 30px;
    }

    .product-card img {
        height: 200px;
    }

    .scenarios-section h2,
    .related-products h2 {
        font-size: 24px;
    }
}

.question,
.answer {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.qa-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    margin-top: 3px;
}

.question-content,
.answer-content {
    flex: 1;
}

.answer-actions {
    margin-left: 39px;
    /* 24px (icon width) + 15px (gap) */
}

/* Q&A 部分样式 */
.qa-section {
    /* padding: 20px; */
}

.qa-search {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.search-input {
    flex: 1;
    padding: 10px;
    border: 1px dashed #ccc;
    border-radius: 4px;
}

.ask-question {
    background-color: #00b67a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.qa-item {
    /* border-bottom: 1px solid #eee; */
    /* padding: 20px 0; */
    margin-bottom: 51px;
}

.question h3 {
    font-family: Maven Pro, Maven Pro;
    font-weight: bold;
    font-size: 22px;
    color: #243A44;
    line-height: 28px;
}

.question-meta {
    margin-top: 8px;

    font-family: Maven Pro, Maven Pro;
    font-weight: 600;
    font-size: 18px;
    color: #9A9FA1;
    line-height: 28px;
}

.answer {
    margin-top: 24px;
    /* padding-left: 20px; */
}

.answer-content p {
    font-family: Maven Pro, Maven Pro;
    font-weight: 500;
    font-size: 18px;
    color: #8C8C8C;
    line-height: 28px;
}

.answerer-info {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.store-manager {
    background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 10px;
}

.answer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.answer-btn {
    background-color: #f5f5f5;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.vote-actions {
    display: flex;
    gap: 10px;
    color: #666;
}

.show-more {
    display: block;
    padding: 13px 23px 13px 25px;
    background-color: #18B394;
    border: none;
    color: #ffffff;
    border-radius: 22px;
    margin-top: 20px;
    cursor: pointer;
    margin: 0 auto;
}

.qa-section .p {
    font-family: Maven Pro, Maven Pro;
    font-weight: 500;
    font-size: 24px;
    color: #000000;
    line-height: 36px;
    margin-top: 70px;
    margin-bottom: 55px;
}

.answer-p {
    margin-bottom: 30px !important;
    border-left: 1px dashed #C7C7C7;
    padding-left: 19px;
}

.answer-content {
    border-bottom: 1px dashed #C7C7C7;

}