
        .container {
            width: 80%;
            margin: 0 auto;
        }

        .gydc {
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            background-color: #150E0B;
            padding-top: 12vh;
        }
        .xiaobiaoti img {
            height: 45px;
        }

        .xiaobiaoti {
            display: flex;
            flex-direction: row;
            gap: 10px;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            color: #FEC2FE;
            font-weight: normal;
        }

        .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;
            gap: 30px;
        }

        .text-box {
            flex: 1;
            background-color: #453654;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 400px;
            border-radius: 8px
        }

        .text-box p {
            font-size: 14px;
            color: white;
            line-height: 1.8;
            display: none;
        }

        .text-box p.active {
            display: block; 
        }
        
        .p-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 300px; 
        }

        .carousel-box {
            flex: 1;
            position: relative;
            height: 400px;
            overflow: hidden;
            border-radius: 8px;
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .carousel-dot.active {
            background-color: white;
        }
        .text-box h3 {
            font-size: 18px;
            color: white;
            margin-bottom: 20px;
            text-align: center;
        }

        @media (max-width: 1024px) {
            .content-container {
                flex-direction: column;
            }

            .carousel-box {
                height: 300px;
            }
        }

        @media (max-width: 640px) {
            .xiaobiaoti {
                flex-direction: column;
                text-align: center;
            }

            .xiaobiaoti img {
                height: 30px;
            }

            .tuanxiabiao {
                padding: 0 10%;
                font-size: 14px;
            }

            .text-box {
                padding: 15px;
            }

            .p-container {
                min-height: 200px;
            }

            .text-box p {
                font-size: 14px;
            }
        }