
.bg1{
    background-image: url(../digital_product/bg1.jpg);
}
.bg2{
    background-image: url(../digital_product/bg2.jpg);
}
.bg3{
    background-image: url(../digital_product/bg3.jpg);
}
.bg4{
    background-image: url(../digital_product/bg4.jpg);
}
.layui-carousel{
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

/* 产品内容区域样式 */
.product-content {
    display: flex;
    /* flex-wrap: wrap; */
    overflow: hidden;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: center;
}

/* 产品图片区域样式 */
.product-image {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-image img {
    /* max-width: 70vw;
    height: auto; */
    max-height: 80vh;
    width: auto;
    margin-top: 15vh;
}

/* 产品信息区域样式 */
.product-info {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bg2 .product-info{
    padding: 40px 10px 40px 20px;    
}
.bg4 .product-info{
    padding: 40px 20px 40px 40px;     
}
.bg3 .product-info{
    padding: 40px 40px 40px 20px;   
}
.bg1 .product-info{
    padding: 40px 20px 40px 40px; 
}

.product-info h1 {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-info h2 {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* 功能列表样式 */
.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    color: white;
}


/* 了解更多按钮样式 */
.learn-more-btn {
    background-color: white;
    color: #5b21b6;
    border: none;
    border-radius: 30px;
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: inline-block;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .product-content {
        flex-direction: column;
    }
    
    .product-info {
        padding: 40px;
    }
    
    .product-info h1 {
        font-size: 36px;
    }
    
    .product-info h2 {
        font-size: 20px;
    }
    
    .learn-more-btn {
        align-self: center;
        width: 100%;
    }
}

/* 进入动画 */
/* @keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.swiper-slide-active .bg1 .product-image,
.swiper-slide-active .bg3 .product-image,
.swiper-slide-active .bg2 .product-info,
.swiper-slide-active .bg4 .product-info{
    animation: fadeInLeft .8s ease forwards;
}
.swiper-slide-active .bg2 .product-image,
.swiper-slide-active .bg4 .product-image,
.swiper-slide-active .bg1 .product-info,
.swiper-slide-active .bg3 .product-info{
    animation: fadeInRight .8s ease forwards;
} */