        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            margin: 0;
            padding: 0;
            background:  linear-gradient(135deg,#f5f7fa 0%, #ffffff 100%);
        }
        .two_content {
            max-width: 1100px;
            margin: 60px auto;
            padding: 40px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        .two_image-box {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .two_image-box img {
            width: 50%;
            height: auto;
            border-radius: 6px;
            object-fit: cover;
            transform: translateX(-100%);
            opacity: 0;
            transition: transform 1s ease-out, opacity 1s ease;
        }
        .two_text-box {
            flex: 1;
            padding: 0;
            transform: translateX(100%);
            opacity: 0;
            transition: transform 1s ease-out, opacity 1s ease;
        }
        .animate .two_text-box {
            transform: translateX(0);
            opacity: 1;
        }
        .animate .two_image-box img {
            transform: translateX(0);
            opacity: 1;
            transition-delay: 0.5s;
        }
        .two_text-box h2 {
            color: #2a5c40;
            font-size: 1.8rem;
            margin: 0 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #8ab73d;
            display: inline-block;
        }
         .two_text-box p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        @media (max-width: 768px) {
            .two_content {
                margin: 30px auto;
                padding: 25px;
            }
            .two_image-box {
                flex-direction: column;
                gap: 20px;
            }
            .two_image-box img {
                width: 100%;
            }
            .two_text-box h2 {
                font-size: 1.5rem;
            }
        }