.container {
    width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 面包屑导航 */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 16px;
}

.breadcrumb a {
    color: #162f65;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: #666666;
}

.breadcrumb span {
    color: #666666;
    margin: 0 5px;
}

/* 产品展示区 */
.product-display {
    width:1200px;
    display: flex;
    gap: 30px;
    margin:0 auto;
    margin-bottom: 40px;
}

/* 缩略图列表 */
.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 120px;
}

.thumbnail-item {
    width: 120px;
    height: 120px;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid #F7F7F7; 
}

.thumbnail-item.active {
    border-color: #BDCCCF;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 大图展示 */
.big-image {
    flex-grow: 1;
    max-width: 800px;
    height: 754px;
    border-radius: 20px;
    overflow: hidden;
}

.big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 产品名称 */
.product-name {
    font-size: 56.4px;
    font-weight: 400;
    margin-bottom: 30px;
}

/* 产品规格表 */
.specs-table {
   width:1000px;
   margin:0 auto;
    margin-bottom: 30px;
    overflow-x: auto;
}

/* 产品说明 */
.product-note {
    width:1200px;
    max-width:1200px;
    color: #898989;
    font-size: 16.7px;
    line-height: 1.2;
    margin-bottom: 40px;
}
.product-note table {
    width: 100%;
    border-collapse: collapse;
}

.product-note th {
    background-color: #052354;
    color: #ffffff;
    font-size: 15.1px;
    font-weight: 700;
    padding: 15px;
    text-align: center;
}

.product-note td {
    border: 1px solid #BDCCCF;
    padding: 15px;
    font-size: 17.3px;
    text-align: center;
}

.product-note img {
  max-width: 1200px;  /* 最大宽度限制 */
  height: auto;
}

/* 更多产品和兼容产品共用样式 */
.more-products,
.compatible-products {
    margin-bottom: 20px;
}

.more-products h2,
.compatible-products h2 {
    width:150px;
    color: #052354;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.products-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.products-container {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

/* 更多产品卡片样式 */
.more-products .product-card {
    float: right;
    flex: 0 0 240px;
}

.more-products .product-card img {
    width: 240px;
    height: 240px;
    border-radius: 40px;
    object-fit: cover;
    margin-bottom: 10px;
    border: 5px solid #F7F7F7;    
}

.more-products .product-card p {
    font-size: 12px;
    text-align: center;
    line-height: 1.3;
}

/* 兼容产品卡片样式 */
.compatible-products .product-card {

    flex: 0 0 154px;

}

.compatible-products .product-card img {   
    width: 154px;
    height: 154px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 10px;
}

.compatible-products .product-card p {
    font-size: 16.7px;
    text-align: center;
}

/* 滑动按钮样式 */
.slider-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: #ffffff;
    color: #BDCCCF;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #BDCCCF;
}

.slider-btn:hover {
    color: #052354;
    border-color: #052354;
}

/* 兼容产品垂直滑动按钮 */
.compatible-products .products-slider {
    flex-direction: column;
}

.compatible-products .products-container {
    flex-direction: column;
    height: 640px;
} 
.compatible-products .products-container  p {
    width:170px;
    font-size: 14px;
    color: #666666;
    text-align: left;
}