.photo-detail {
    padding: 20px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 产品信息样式 */
.detail-info {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.detail-info h1 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.info-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
}

.info-item label {
    color: var(--gray);
    font-size: 14px;
}

.info-item span {
    color: var(--dark);
    font-size: 14px;
}

.info-item .price {
    color: var(--primary-red);
    font-size: 20px;
    font-weight: bold;
}

.action-buttons {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.quote-btn {
    display: inline-block;
    padding: 10px 30px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.quote-btn:hover {
    background: var(--dark-blue);
}

/* 图片样式 */
.detail-gallery {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}

.swiper {
    position: relative;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.swiper-slide img {
    width: 80%;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.8);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

.swiper-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    justify-content: center;
}

.swiper-thumbs::-webkit-scrollbar {
    display: none;
}

.thumb-item {
    flex: 0 0 100px;
    height: 100px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.6;
    margin: 0 5px;
}

.thumb-item.active {
    border-color: var(--primary-blue);
    opacity: 1;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .detail-gallery {
        width: 100%;
        padding: 10px 0;
    }

    .swiper-slide img {
        width: 100%;
    }

    .thumb-item {
        flex: 0 0 80px;
        height: 80px;
    }
}


