
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
    
        
        .hero-section {
            width: 100%;
            height: 880px;
            background-image: url('/images/wulian20.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .content-wrapper {
            width: 80%;
            max-width: 1200px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 40px 0;
        }
        
        .left-content {
            width: 45%;
            color: #fff;
            padding-right: 40px;
        }
        
        .title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .description {
            font-size: 1.2rem;
            line-height: 1.6;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
        }
        
        .right-content {
            width: 45%;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .link-row {
            display: flex;
            width: 100%;
        }
        
        .link-item {
            border: 2px solid #fff;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.4rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .link-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .link-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
            transition: background 0.3s ease;
        }
        
        .link-item:hover::before {
            background: rgba(0, 0, 0, 0.1);
        }
        
        .link-item span {
            position: relative;
            z-index: 2;
            padding: 15px 30px;
            text-align: center;
        }
        
        .single-link {
            width: 100%;
            height: 200px;
        }
        
        .double-links {
            display: flex;
            gap: 25px;
            width: 100%;
        }
        
        .double-link {
            width: 50%;
            height: 200px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
                padding: 30px 0;
            }
            
            .left-content, .right-content {
                width: 100%;
                padding-right: 0;
            }
            
            .left-content {
                margin-bottom: 40px;
                text-align: center;
            }
            
            .title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                height: auto;
                padding: 60px 0;
            }
            
            .content-wrapper {
                width: 90%;
            }
            
            .title {
                font-size: 2.2rem;
            }
            
            .description {
                font-size: 1.1rem;
            }
            
            .double-links {
                flex-direction: column;
                gap: 25px;
            }
            
            .double-link {
                width: 100%;
            }
            
            .link-item {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .title {
                font-size: 1.8rem;
            }
            
            .description {
                font-size: 1rem;
            }
            
            .single-link, .double-link {
                height: 150px;
            }
            
            .link-item span {
                padding: 10px 20px;
            }
        }
  