/* productdetails-fullwidth.html 页面样式 */

/* 缩略图列表布局 - 替代carousel */
.details-thumd .thumbnails-list {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.details-thumd .thumbnails-list a {
    display: block;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    cursor: pointer;
}

.details-thumd .thumbnails-list a.active {
    border-color: #dd3232;
}

.details-thumd .thumbnails-list a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 主图自适应 - 保持比例不变形 */
.details-thumd .image-preview-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background-color: #f9f9f9;
}

.details-thumd .image-preview-container img#img_zoom {
    max-width: 100%;
    max-height: 600px;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

/* 缩略图自适应 */
.details-thumd .thumbnails_carousel .owl-item img {
    object-fit: contain;
    width: 100%;
    height: 80px;
}

/* 导航菜单hover效果 */
.dungar-menu-item-title:hover,
.dungar-item-title:hover {
    color: #dd3232 !important;
    transition: all 0.3s ease;
}

/* 联系方式hover效果 */
.contact-item:hover {
    color: #dd3232 !important;
}

.contact-item:hover span {
    color: #dd3232 !important;
}
