body {
    background-color: #ffffff;
}

.new-container-1 {
    margin: 0 10%;
    padding: 30px 0px 30px 0px;
}

.new-container-1 .new-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}


/* 新增卡片样式-1 - 修改为多行布局 */
.card-slider-1 {
    width: 100%;
    margin: 20px 0;
}

.card-wrapper-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.card-item-1 {
    width: calc(33.333% - 14px); /* 3个卡片每行，考虑间隙 */
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #cccccc;
    position: relative;
    flex-shrink: 0; /* 防止卡片缩小 */
}

.card-icon-1 {
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.card-text-1 {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    background-color: #d0daeb;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
}

.card-title-1 {
    font-size: 18px;
    color: #2A83FC;
    margin-top: 10px;
}

.card-image-1 {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f0f0f0;
}

.card-desc-1 {
    margin: 15px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.consult-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #2A83FC;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.consult-btn:hover {
    background-color: #1a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-boxes {
    margin: 15px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.feature-box {
    border: 1px solid #d0daeb;
    border-radius: 6px;
    padding: 2px 2px;
    font-size: 13px;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;

    position: relative;
    overflow: hidden;
    width:32.33%;
    margin-right: 1.5%;
}

.feature-box:hover {
    border-color: #2A83FC;
    background-color: #f5f9ff;
}

@media (max-width: 768px) {
    .card-wrapper-1 {
        gap: 15px;
    }
    
    .card-item-1 {
        width: 100%; /* 移动端每行1个卡片 */
    }
}

/* 页码样式 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.page-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: #2A83FC;
    color: white;
}

.page-link.active {
    background-color: #2A83FC;
    color: white;
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        margin: -30px 5% 20px;
    }
    
    .card {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .new-container-1 {
        margin: 0 5%;
        padding: 30px 0px 40px 0px;
    }
}

.new-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.card-item-2:last-child {
    margin-right: 0;
}

/* 新增容器样式-5 */
.container-5 {
    background-color: #f8f9fa;
    padding: 30px 10%;
    /*margin-bottom: 50px;*/
}

.inner-container-5 {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.title-row-5 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* 移动端适配-5 */
@media (max-width: 768px) {
    .title-row-5 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .title-5 {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .city-5 {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .exchange-5 {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .logo-5 {
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
    }
}

.title-5 {
    font-size: 30px;
    margin-right: 20px;
    margin-bottom: 10px;
}

.city-5 {
    font-size: 15px;
    background-color: #e0edff;
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.exchange-5 {
    font-size: 15px;
    background-color: #e0edff;
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 20px;
    margin-bottom: 10px;
}


.divider-5 {
    border: none;
    height: 1px;
    background-color: #eee;
    margin: 20px 0;
}

.description-5 {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.btn-5 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2a83fc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-5:hover {
    background-color: #1a6fd8;
}

@media (min-width: 768px) {
    .logo-5 {
    height: 80px;
    margin-left: auto;
    margin-bottom: 10px;
}

}

@media (max-width: 768px) {
    .logo-5 {
    /*height: 40px;*/
    margin-bottom: 10px;
}

}

/* 面包屑导航样式-7 */
.breadcrumb-container-7 {
    background-color: #2A83FC;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 10%;
	margin: 70px 0px 0px 0px;
}

.breadcrumb-inner-7 {
    display: flex;
    align-items: center;
}

.breadcrumb-inner-7 a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin: 0 5px;
}

.breadcrumb-inner-7 a.active {
    font-weight: bold;
}

.breadcrumb-inner-7 span {
    color: white;
    margin: 0 5px;
}


@media (max-width: 768px) {
    .container-5 {
    background-color: #f8f9fa;
    padding: 30px 5%;
    /*margin-bottom: 50px;*/
}

}

/* 数据来源信息样式-11 */
.data-source-11 {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 10px 15px;
    /*background-color: #f8f9fa;*/
    border-radius: 6px;
}

.source-icon-11 {
    color: #2A83FC;
    margin-right: 10px;
    font-size: 18px;
}

.verified-icon-11 {
    color: #4CAF50;
    margin-left: 10px;
    font-size: 18px;
}

.data-source-11 span {
    font-size: 14px;
    color: #333;
}

/* 商品信息样式-14 */
.product-info-container-14 {
    margin: 30px 0;
}

.product-info-columns-14 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-info-column-14 {
    flex: 0 0 32%;
    display: flex;
    flex-direction: column;
}

.product-info-item-14 {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.product-info-label-14 {
    font-weight: bold;
    color: #000000;
    margin-right: 5px;
    white-space: nowrap;
}

.product-info-value-14 {
    color: #333;
    flex: 1;
}

.product-info-row-14 {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

/* 移动端适配-14 */
@media (max-width: 768px) {
    .product-info-columns-14 {
        flex-direction: column;
    }
    
    .product-info-column-14 {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
    
    .product-info-item-14 {
        flex-direction: column;
    }
    
    .product-info-label-14 {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .product-info-value-14 {
        margin-right: 0;
    }
    
    .product-info-row-14 {
        flex-direction: column;
    }
}

/* 证书图片样式-15 */
.certificate-container-15 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.certificate-item-15 {
    flex: 0 0 calc(25% - 15px);
    box-sizing: border-box;
}

.certificate-img-15 {
    width: 100%;
    height: 500px;
    object-fit: scale-down;
    /* background-color: #f8f9fa; */
    /* padding: 10px; */
    /* border: 1px solid #eee; */
    /* border-radius: 4px; */
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificate-img-15 img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.certificate-img-15:hover {
    transform: scale(1.03);
}

.certificate-modal-15 {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
}

.modal-content-15 {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-modal-15 {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {
    .certificate-item-15 {
        flex: 0 0 calc(50% - 10px);
    }
    
    .certificate-img-15 {
        height: 200px;
        padding: 0px;
    }
}

/* 参考价格文字样式-13 */
.price-text-13 {
    font-size: 16px;
    color: #666;
    margin-right: 10px;
    vertical-align: middle;
}

/* 三组文字样式-12 */
.text-group-container-12 {
    margin: 40px 0;
}

.group-title-12 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
}

.text-groups-12 {
    display: flex;
    gap: 20px;
}

.text-group-12 {
    /*flex: 1;*/
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
}

.text-group-12 h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.text-group-12 p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}
/* 微信图标悬停效果 */
.wx-hover-container {
    position: relative;
    display: inline-block;
}

.wx-qrcode {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.wx-hover-container:hover .wx-qrcode {
    opacity: 1;
    visibility: visible;
}

.wx-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* 移动端适配-12 */
@media (max-width: 768px) {
    .text-groups-12 {
        flex-direction: column;
    }
}