        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 0;
        }
        
        .container {
            max-width: 1310px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* 头部样式 */
        .page-title {
            font-size: 3.5rem;
            margin: 15px 0;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .page-subtitle {
            font-size: 1.8rem;
            font-weight: 300;
            opacity: 0.9;
            margin-bottom: 20px;
            letter-spacing: 3px;
        }
        
        /* 内容区域 */
        .content-section {
            display: flex;
            gap: 40px;
            margin-bottom: 50px;
            padding-top: 70px;
        }
        
        .contact-info1 {
            flex: 1;
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 2;
        }
        
        .contact-info1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #1e5799, #2b6cb0);
            border-radius: 15px 15px 0 0;
        }
        
        .section-title {
            font-size: 2.2rem;
            color: #1a365d;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: #2b6cb0;
            border-radius: 2px;
        }
        
        .info-item {
            margin-bottom: 25px;
            padding-left: 40px;
            position: relative;
        }
        
        .info-item i {
            position: absolute;
            left: 0;
            top: 5px;
            width: 30px;
            height: 30px;
            background: #e6f0fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2b6cb0;
        }
        
        .info-title {
            font-size: 1.2rem;
            color: #2b6cb0;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .info-content {
            font-size: 1.1rem;
            color: #4a5568;
        }
        
        .map-container {
            flex: 1;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 500px;
            position: relative;
            margin-top: 70px;
        }
        
        .map-overlay {
            /*position: absolute;*/
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.zzgydz.cn/static/index/picture/lxwmpbt.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .map-label {
            background: rgba(27, 58, 93, 0.85);
            color: white;
            padding: 20px 30px;
            border-radius: 10px;
            text-align: center;
            max-width: 80%;
        }
        
        .map-label h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .map-label p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* 联系表单 */
        .contact-form {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 50px;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1a365d;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #2b6cb0;
            box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.2);
            outline: none;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .full-width {
            grid-column: span 2;
        }
        
        .submit-btn {
            background: linear-gradient(to right, #1e5799, #2b6cb0);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            margin: 0 auto;
            box-shadow: 0 5px 15px rgba(43, 108, 176, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(43, 108, 176, 0.4);
        }
        
        /* 页脚 */
        
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: #ffcc00;
            transform: translateY(-3px);
        }
        
        .copyright {
            padding-top: 30px;
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
            opacity: 0.8;
        }
        
        /* 响应式设计 */
        @media (max-width: 900px) {
            .content-section {
                flex-direction: column;
            }
            
            .map-container {
                height: 400px;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .full-width {
                grid-column: span 1;
            }
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .page-subtitle {
                font-size: 1.4rem;
            }
            
            .contact-info1, .contact-form {
                padding: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .page-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .info-item {
                padding-left: 30px;
            }
            
            .map-label h3 {
                font-size: 1.4rem;
            }
            
            .map-label p {
                font-size: 1rem;
            }
            
            .contact-info1, .contact-form {
                padding: 20px;
            }
        }