/* Banner样式 */
.printing-banner {
    height: 400px;
    background: url('/image/Printing/banner.png') no-repeat center;
    background-size: cover;
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.printing-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.banner-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}

.banner-content p {
    font-size: 40px;
    opacity: 0.9;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .printing-banner {
        height: 300px;
        margin-top: 60px;
    }

    .banner-content h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .printing-banner {
        height: 200px;
    }

    .banner-content h1 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 16px;
    }
}

/* 染色类型部分 */
.dyeing-type {
    padding: 80px 200px 0;
    background: #F8F8F8;
}

.type-list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

.type-item {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.type-header {
    padding: 64px 0 48px 48px;
}

.type-icon {
    width: 32px;
    height: 32px;
}

.type-icon img {
    width: 100%;
    height: 100%;
}

.type-item h3 {
    font-size: 40px;
    color: #333333;
    font-weight: 500;
    margin-top: 20px;
}

.type-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.type-item:hover .type-img {
    transform: scale(1.05);
}

/* 响应式适配补充 */
@media (max-width: 1440px) {
    .dyeing-type {
        padding: 80px 100px;
    }
    .type-header {
        padding: 40px 0 30px 30px;
    }
    .type-img {
        width: 400px;
        height: 400px;
    }
    .type-item h3 {
        font-size: 32px;
    }
}

@media (max-width: 1200px) {
    .type-img {
        width: 320px;
        height: 320px;
    }
    .type-item h3 {
        font-size: 28px;
    }
    .type-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 992px) {
    .dyeing-type {
        padding: 60px 40px;
    }
    .type-header {
        padding: 30px 0 25px 20px;
    }
    .type-list {
        flex-direction: column;
        gap: 30px;
    }
    .type-img {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .dyeing-type {
        padding: 40px 20px;
    }
    .type-header {
        padding: 20px 0 20px 15px;
    }
    .type-img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .type-img {
        height: 250px;
    }
    .type-item h3 {
        font-size: 18px;
    }
    .type-icon {
        width: 24px;
        height: 24px;
    }
}

/* 染色设备部分 */
.dyeing-equipment {
    padding: 40px 200px;
    background: #F8F8F8;
}

.equipment-list {
    margin-top: 60px;
}

.equipment-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.equipment-row:last-child {
    margin-bottom: 0;
}

.equipment-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.equipment-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.equipment-item:hover img {
    transform: scale(1.05);
}

.equipment-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.equipment-item:hover .equipment-info {
    opacity: 1;
    transform: translateY(0);
}

.equipment-info h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.equipment-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* 响应式适配补充 */
@media (max-width: 1440px) {
    .dyeing-equipment {
        padding: 80px 100px;
    }
    
    .equipment-item img {
        height: 320px;
    }
}

@media (max-width: 1200px) {
    .equipment-item img {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .dyeing-equipment {
        padding: 60px 40px;
    }

    .equipment-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .equipment-item img {
        height: 240px;
    }

    .equipment-info {
        padding: 20px;
    }

    .equipment-info h3 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .equipment-info p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .dyeing-equipment {
        padding: 40px 20px;
    }

    .equipment-list {
        margin-top: 40px;
    }

    .equipment-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .equipment-item img {
        height: 180px;
    }

    .equipment-info {
        padding: 15px;
    }

    .equipment-info h3 {
        font-size: 18px;
    }
}

/* 设计荣誉部分 */
.design-honors {
    padding: 80px 200px;
    background: #F8F8F8;
}

.honors-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.honor-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.honor-image {
    width: 100%;
    position: relative;
}

.honor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

/* 响应式调整 */
@media (max-width: 1440px) {
    .design-honors {
        padding: 80px 100px;
    }
}

@media (max-width: 992px) {
    .design-honors {
        padding: 60px 40px;
    }
    .honors-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .design-honors {
        padding: 40px 20px;
    }
    .honors-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
} 