body{
    background-color: #150E0B;;
}
.container {
    width: 100%;
    margin: 0 auto;
}

.gydc2 {
    width: 80%;
    margin: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #150E0B;
    padding: 0px 0 100px; 
}
.xiaobiaoti {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #FEC2FE;
    font-weight: normal;
    padding: 20px 0;
}
.xiaobiaoti img {
    height: 45px;
}

.tuanxiabiao {
    font-size: 14px;
    color: white;
    line-height: 1.6;
    text-align: center;
    margin-top: 10px;
    padding: 0 15%;
}
.content-container {
    display: flex;
    margin-top: 50px;
    justify-content: center; 
}

.text-box {
    flex: 1;
    width: 80%;
    display: flex;
    flex-direction: column;
}

.text-box p {
    font-size: 16px;
    color: white;
    line-height: 1.8; 
    margin-bottom: 20px;
}

.text-box p.active {
    display: block; 
}

.image-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.content-image {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    .content-container {
        flex-direction: column;
    }

    .text-box {
        padding: 30px 20px;
    }

    .image-container {
        flex-direction: column;
        align-items: center;
    }

    .content-image {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 640px) {
    .xiaobiaoti {
        flex-direction: column;
        text-align: center;
    }

    .xiaobiaoti img {
        height: 30px;
    }

    .text-box {
        padding: 20px 15px;
    }

    .text-box p {
        font-size: 14px;
    }
}