/*首页*/
        :root {
            --primary-color: #003366;
            --secondary-color: #0066cc;
            --accent-color: #0099ff;
            --light-color: #f0f8ff;
            --dark-color: #001a33;
            --gray-color: #e6f2ff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部导航样式 */
        .header {
            background-color: rgb(242 244 247 / 98%);
            position: fixed;padding: 0;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
		.logo img{float: left;}
        .logo a{text-decoration: none;color: #000;}
        .logo h1 {color: #000;
    font-size: 36px;
    margin-left: 10px;
    float: left;
    line-height: 58px;
    letter-spacing: 6px;
        }
        
        .logo-icon {
            color: var(--accent-color);
            font-size: 2.2rem;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin: 0 12px;
        }
        
        .nav-links a {
            color:rgb(69 80 93);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover, 
        .nav-links a.active {
            color: white;
            background: rgba(0, 102, 204, 0.3);
        }
        
       /* 视频播放器样式 */
              .contain {
            max-width: 1200px;
            width: 100%;    margin: 99px auto 0 auto;
        }
        
        .player-container {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
            animation: slideInUp 0.8s ease;
        }
        
        #video-player {
            width: 100%;
            display: block;
            height: 500px;
            background: #000;
            object-fit: cover;
        }
        
        #youku-frame {
            width: 100%;
            height: 500px;
            border: none;
            display: none;
        }
        
        .controls {
            background: rgba(0, 0, 0, 0.8);
            padding: 15px 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 15px;
        }
        
        .btn {
            background: #ff4e50;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn:hover {
            background: #ff6b6b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .btn i {
            font-size: 1.2rem;
        }
        
        .info-box {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            animation: fadeIn 1.2s ease;
        }
        
        .info-box h2 {
            margin-bottom: 15px;
            color: #ffd166;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .browser-info {
            padding: 15px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            margin: 10px 0;
            font-family: monospace;
        }
        
        .mode-indicator {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: bold;
            margin-top: 10px;
        }
        
        .html5-mode {
            background: linear-gradient(45deg, #4a00e0, #8e2de2);
        }
        
        .youku-mode {
            background: linear-gradient(45deg, #ff416c, #ff4b2b);
        }
        
        .auto-play-indicator {
            background: rgba(76, 175, 80, 0.3);
            border: 1px solid #4CAF50;
            padding: 10px;
            border-radius: 5px;
            margin-top: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .status-icon {
            font-size: 1.5rem;
            animation: pulse 1.5s infinite;
        }
        
        .play-icon {
            color: #4CAF50;
        }
        
        .pause-icon {
            color: #ff9800;
        }
        
        /* 动画 */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        @media (max-width: 768px) {
            #video-player, #youku-frame {
                height: 300px;
            }
            
            .controls {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        /* 关于我们 */
        .section {
            padding: 0px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #080808;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #080808;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        
        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 25px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-item .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 5px;
        }
        
        .stat-item .label {
            font-size: 1.1rem;
            color: #555;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* 服务部分 */
        .services {
            background-color: var(--light-color);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
        }
        
        .service-icon {
            background: var(--primary-color);
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-content h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .service-content p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .read-more {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;    position: static;
        }
        
        .read-more i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* 案例部分 */
        .cases {
            background-color: white;
        }
        
        .cases-filter {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 10px 20px;
            background: #f0f0f0;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--accent-color);
            color: white;
        }
        
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .case-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .case-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
        }
        
        .case-image {
            height: 240px;
            background-size: cover;
            background-position: center;
        }
        
        .case-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 51, 102, 0.8), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .case-item:hover .case-overlay {
            opacity: 1;
        }
        
        .case-overlay h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;color: #fff;
        }
        .case-overlay a {text-decoration: none;}
        .case-overlay p {
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        /* 优势部分 */
        .advantages {
           /* background: linear-gradient(to right, var(--primary-color), var(--dark-color));*/
            color: white;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background: #adaab7a3;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .advantage-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .advantage-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        /* 底部区域 */
        footer {
            background: var(--dark-color);
            color: rgba(255, 255, 255, 0.8);
            padding: 70px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
		

        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .social-icon {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .social-icon a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #003366;
            color: white;
            font-size: 2.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .social-icon a:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
        }
        
        .social-icon a.wechat:hover {
            background: #2aae67;
        }
        
        .social-icon a.weibo:hover {
            background: #e6162d;
        }
        
        .social-icon a.linkedin:hover {
            background: #0077b5;
        }
        
        .social-icon span {
            margin-top: 15px;
            font-weight: 600;
            color: #003366;
        }
        
		
                /* 微信二维码弹出层样式 */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
        }
        
        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            width: 90%;
            max-width: 400px;
        }
        
        .modal-content h3 {
            color: #003366;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .qrcode {
            margin: 20px 0;
            padding: 15px;
            background: white;
            border-radius: 10px;
            display: inline-block;
        }
        
        .qrcode img {
            max-width: 200px;
            height: auto;
            border: 1px solid #eee;
        }
        
        .modal-content p {
            margin-top: 20px;
            color: #666;
            font-size: 1.1rem;
        }
        
        .close {
            position: absolute;
            top: 15px;
            right: 20px;
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .close:hover {
            color: #003366;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .contact-info {
            margin-bottom: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 15px;
            color: var(--accent-color);
            min-width: 20px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .slide-content h2 {
                font-size: 2.8rem;
            }
            
            .slide-content p {
                font-size: 1.2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
			 .social-icons {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
            
            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .footer-column {
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                padding: 15px 0;
            }
            
            .nav-links {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-links li {
                margin: 5px;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .slide-content h2 {
                font-size: 2.3rem;
            }
            
            .section {
                padding: 70px 0;
            }
        }
		
/*关于我们*/

        
 
        /* 关于我们页面头部 */
        .about-header {
            background: linear-gradient(rgba(0, 20, 40, 0.8), rgba(0, 20, 40, 0.8)), 
                        url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 87px;
            color: white;
            padding: 0 20px;
        }
        
        .about-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            font-weight: 700;
        }
        
        .about-header p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 0;
        }
        
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: white;
        }
        
        .breadcrumb span {
            color: var(--accent-color);
        }
        
        /* 关于我们内容 */
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #080808;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
       
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;text-indent: 2em;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 25px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .stats {
            display: flex;
            margin-top: 80px;
            gap: 123px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            background: var(--light-color);
            padding: 25px;
            border-radius: 10px;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .stat-item .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 5px;
        }
        
        .stat-item .label {
            font-size: 1.1rem;
            color: #555;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* 公司优势 */
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
            gap: 30px;    color: #000;
        }
        .advantagrid{display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 30px;    color: #000;}
        .advantage-card {
            background: #adaab7a3;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .advantage-icon {
            font-size: 3rem;    color: #000;
            margin-bottom: 20px;
        }
        .advantage-icon img{width: 100%;}
        .advantage-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .advantage-card p {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* 团队介绍 */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
        }
        
        .member-image {
            height: 300px;
            background-size: cover;
            background-position: center;
        }
        
        .member-info {
            padding: 25px;
            text-align: center;
        }
        
        .member-info h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .member-info .position {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }
        
        .member-info p {
            color: #666;
            margin-bottom: 20px;
        }
        
        /* 资质认证 */
        .certificates {
            background: var(--light-color);
        }
        
        .cert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .cert-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .cert-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
        }
        
        .cert-image {
            height: 200px;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }
        
        .cert-content {
            padding: 25px;
        }
        
        .cert-content h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .cert-content p {
            color: #666;
            margin-bottom: 15px;
        }
        

        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-header h1 {
                font-size: 2.8rem;
            }
            
            .about-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                padding: 15px 0;
            }
            
            .nav-links {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-links li {
                margin: 5px;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .about-header {
                height: 300px;
            }
            
            .about-header h1 {
                font-size: 2.3rem;
            }
            
            .about-header p {
                font-size: 1.1rem;
            }
        }
		
/*案例列表页*/
 /* 页面头部 */
        .page-header {
            background: linear-gradient(rgba(0, 20, 40, 0.8), rgba(0, 20, 40, 0.8)), 
                        url('https://images.unsplash.com/photo-1547658719-da2b51169166?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 87px;
            color: white;
            padding: 0 20px;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            font-weight: 700;
			color: #fff;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 0;
            border-radius: 30px;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: var(--accent-color);
        }
        
        .breadcrumb span {
            color: var(--accent-color);
        }
        
        /* 内容区域 */
        .content-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #080808;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        

        
        /* 案例筛选 */
        .cases-filter {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 10px 20px;
            background: #f0f0f0;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--accent-color);
            color: white;
        }
        
        /* 案例列表 */
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .case-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            background: white;
        }
        
        .case-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
        }
        
        .case-image {
            height: 240px;
            background-size: cover;
            background-position: center;
        }
        
        .case-content {
            padding: 25px;
        }
        
        .case-category {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .case-content h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.4rem;
            min-height: 60px;
        }
        
        .case-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        .case-content a{text-decoration: none;
    color: #000;
    letter-spacing: 3px;
    font-family: monospace;}
	.casemore{float: inline-end;}
        .case-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.9rem;
            border-top: 1px solid #eee;
            padding-top: 15px;
            margin-top: 15px;
        }
        

        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }
        
        .page-item {
            margin: 0 5px;
        }
        
        .page-link {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            background: #f0f0f0;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .page-link:hover, .page-link.active {
            background: var(--accent-color);
            color: white;
        }
        
/*案例列表下方只调用标题*/
 /* 简洁列表样式 */
        .simple-list-section {
            margin-top: 40px;
        }
        
        .section-title {
            font-size: 1.8rem;
            color: #2c3e50;
            padding-bottom: 15px;
            margin-bottom: 25px;
            border-bottom: 2px solid #eaecef;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 80px;
            height: 2px;
            background: #3498db;
        }
        
        .simple-list {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .list-header {
            display: grid;
            grid-template-columns: 13fr 1fr;
            padding: 15px 20px;
            background: #3498db;
            color: white;
            font-weight: 500;
        }
        
        .simple-item {
            display: grid;
            grid-template-columns: 3fr 1fr;
            padding: 15px 20px;
            border-bottom: 1px solid #eaecef;
            transition: background-color 0.2s ease;
        }
        
        .simple-item:last-child {
            border-bottom: none;
        }
        
        /* 隔行变色效果 */
        .simple-item:nth-child(odd) {
            background-color: #a5c0e0;
        }
        
        .simple-item:nth-child(even) {
            background-color: #fff;
        }
        
        .simple-item:hover {
            background-color: #d6e4f0 !important;
        }
        
        .item-title {
            font-weight: 500;
            color: #2c3e50;
        }
        
        .item-date {
            color: #7f8c8d;
            text-align: right;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .cases-grid {
                grid-template-columns: 1fr;
            }
            
            .list-header, .simple-item {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .item-date {
                text-align: left;
            }
        }
        
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                padding: 15px 0;
            }
            
            .nav-links {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-links li {
                margin: 5px;
            }
            
            .page-header {
                height: 250px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .cases-grid {
                grid-template-columns: 1fr;
            }
        }		

/*案例详情页*/
        
     
        
        /* 内容区域 */
        .content-section {
            padding: 80px 0;
        }
        
        /* 案例详情 */
        .case-detail {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-bottom: 60px;
        }
        
        .detail-header {
            padding: 40px 40px 20px;
            border-bottom: 1px solid #eee;
        }
        
        .detail-category {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .detail-title {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .detail-meta {
            display: flex;
            color: #888;
            font-size: 0.95rem;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        
        .detail-meta div {
            margin-right: 25px;
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .detail-meta i {
            margin-right: 8px;
            color: var(--accent-color);
        }
        
        .detail-content {
            padding: 40px;
            line-height: 1.8;
        }
        
        .detail-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: block;
        }
        
        .detail-content h3 {
            color: var(--primary-color);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
            font-size: 1.6rem;
        }
        
        .detail-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .detail-content ul {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .detail-content li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            font-size: 1.1rem;
        }
        
        .detail-content li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-color);
        }
        
        .project-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        
        .stat-card {
            background: var(--light-color);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            border: 1px solid var(--accent-color);
        }
        
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 10px;
        }
        
        .stat-card .label {
            font-size: 1.1rem;
            color: var(--primary-color);
        }
        
        .quote-section {
            background: var(--light-color);
            border-left: 4px solid var(--accent-color);
            padding: 30px;
            margin: 40px 0;
            border-radius: 0 10px 10px 0;
        }
        
        .quote-section p {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .quote-author {
            font-weight: 600;
            text-align: right;
            color: var(--primary-color);
        }
        

        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                padding: 15px 0;
            }
            
            .nav-links {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-links li {
                margin: 5px;
            }
            
            .page-header {
                height: 300px;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .detail-header,
            .detail-content {
                padding: 25px;
            }
            
            .detail-title {
                font-size: 1.8rem;
            }
            
            .project-stats {
                grid-template-columns: 1fr;
            }
        }
		
/*业务范围*/
.con {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 服务导航样式 */
        .services-nav {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .services-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .cyber-tab {
            padding: 15px 25px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }
        
        .cyber-tab:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .cyber-tab.active {
            background-color: var(--secondary-color);
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
        }
        
        /* 服务内容样式 */
        .services-section {
            padding: 60px 0;
        }
        
        .services-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        
        @media (max-width: 992px) {
            .services-container {
                grid-template-columns: 1fr;
            }
        }
        
        .service-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--card-shadow);
            display: none;
        }
        
        .service-card.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .service-content h2 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 2rem;
        }
        
        .service-content > p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #555;
        }
        
        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: var(--transition);
        }
        
        .feature-item:hover {
            background-color: #e9ecef;
            transform: translateX(5px);
        }
        
        .feature-icon {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        
        /* 阶段卡片样式 */
        .phase-cards {
            margin-top: 40px;
        }
        
        .phase-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .phase-header h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .phase-header p {
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .phases-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;    max-width: 1200px;
    margin: 0 auto;
        }
.phases-contai {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
            gap: 25px;    max-width: 1200px;
    margin: 0 auto;
        }
        .phase-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
        }
        
        .phase-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .phase-card-header {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #2c73d2 100%);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .phase-card-header h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
        }
        
        .phase-card-body {
            padding: 20px;
        }
        
        .phase-card-body p {
            margin-bottom: 15px;
            color: #444;
        }
        
        .phase-features {
            margin-top: 15px;
        }
        
        .phase-feature {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .phase-feature i {
            color: var(--secondary-color);
            margin-top: 4px;
        }
        
        /* 信息卡片样式 */
        .services-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .info-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--card-shadow);
        }
        
        .info-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .info-card > p {
            margin-bottom: 20px;
            color: #555;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 20px;
        }
        
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        
        .stat-value {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary-color);
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #666;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .services-tabs {
                flex-direction: column;
            }
            
            .service-features {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .phases-container {
                grid-template-columns: 1fr;
            }
        }
	/*监理工作*/

        .coner {
            max-width: 1200px;
            margin: 0 auto;
        }
        
.head {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
        }
.head h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .subtitle {
            color: #7f8c8d;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .phases-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .phase-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .phase-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .card-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .phase-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .phase-number {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #3498db;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.5);
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card-content h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .card-content p {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .features {
            margin-top: 20px;
        }
        
        .feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }
        
        .feature i {
            color: #3498db;
            margin-right: 10px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        .purpose {
            background: #e3f2fd;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #3498db;
        }
        
        .purpose strong {
            color: #2c3e50;
        }

        
        @media (max-width: 768px) {
            .phases-container {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
	
   /* 新闻列表页头部 */
        .news-header {
            background: linear-gradient(rgba(0, 20, 40, 0.8), rgba(0, 20, 40, 0.8)), 
                        url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 266px;
            display: flex;
            align-items:end;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px;
            margin-bottom: 50px;
        }
        
        .news-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            font-weight: 700;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 0;
            border-radius: 30px;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: var(--accent-color);
        }
        
        .breadcrumb span {
            color: var(--accent-color);
        }
        
        /* 内容区域 */
        .news-section {
            padding: 0 0 80px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: #080808;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        

        
        /* 新闻分类导航 */
        .news-categories {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .category-btn {
            padding: 12px 25px;
            background: #f0f0f0;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .category-btn.active, .category-btn:hover {
            background: var(--accent-color);
            color: white;
            box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
        }
        
        /* 新闻列表 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .news-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            background: white;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .news-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
        }
        
        .news-image {
            height: 220px;
            background-size: cover;
            background-position: center;
        }
        
        .news-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news-category {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
            align-self: flex-start;
        }
        
        .news-content h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.4rem;
            flex: 1;
        }
        
        .news-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.9rem;
            border-top: 1px solid #eee;
            padding-top: 15px;
            margin-top: auto;
        }
        
 
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .page-item {
            margin: 0 5px;
        }
.page-num{    display: inline-block;
    width: 88px;
    height: 88px;
    line-height: 88px;
    text-align: center;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;}
        .page-num-current{    display: inline-block;
    width: 88px;
    height: 88px;
    line-height: 88px;
    text-align: center;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;}
        .page-link {
            display: inline-block;
                width: 88px;
    height: 88px;
    line-height: 88px;
            text-align: center;
            border-radius: 50%;
            background: #f0f0f0;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .page-link:hover, .page-link.active {
            background: var(--accent-color);
            color: white;
        }
        
        /* 特色新闻 */
        .featured-news {
            background: var(--light-color);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 50px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .featured-content {
            display: flex;
            gap: 30px;
            margin-top: 20px;
        }
        
        .featured-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            min-height: 300px;
            background-size: cover;
            background-position: center;
        }
        
        .featured-text {
            flex: 1;
        }
        
        .featured-text h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .featured-text p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: #555;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .news-header h1 {
                font-size: 2.5rem;
            }
            
            .featured-content {
                flex-direction: column;
            }
            
            .featured-image {
                min-height: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .news-header {
                height: 250px;
            }
            
            .news-header h1 {
                font-size: 2rem;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
        }
		
/*新闻详情页*/
        /* 面包屑导航 */
        .breadcrumb {
            background-color: var(--light-color);
            padding: 15px 0;
            margin: 20px 0;
            border-radius: 8px;
        }

        .breadcrumb ul {
            display: flex;
            list-style: none;
        }

        .breadcrumb ul li {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .breadcrumb ul li:after {
            content: ">";
            margin-left: 10px;
            color: var(--secondary-color);
        }

        .breadcrumb ul li:last-child:after {
            content: "";
        }

        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        /* 主要内容区域 */
        .main-content {
            display: flex;
            gap: 30px;
            margin: 30px 0;
        }

        .article-container {
            flex: 3;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .article-header {
            padding: 30px;
            background: linear-gradient(to right, var(--primary-color), var(--dark-color));
            color: white;
        }

        .article-title {
            font-size: 2.2rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .article-meta {
            display: flex;
            gap: 20px;
            font-size: 0.9rem;
            color: var(--light-color);
            margin-top: 20px;
            opacity: 0.9;
        }

        .article-meta span i {
            margin-right: 5px;
        }

        .article-body {
            padding: 30px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .article-footer {
            padding: 20px 30px;
            border-top: 1px solid var(--gray-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tags {
            display: flex;
            gap: 10px;
        }

        .tag {
            background: var(--gray-color);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--secondary-color);
        }

        .social-share {
            display: flex;
            gap: 12px;
        }

        .share-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            transition: transform 0.3s;
        }

        .share-btn:hover {
            transform: translateY(-3px);
        }

        .share-btn.weibo {
            background: #e6162d;
        }

        .share-btn.wechat {
            background: #2aae67;
        }

        .share-btn.qq {
            background: #12b7f5;
        }

        /* 侧边栏 */
        .sidebar {
            flex: 1;
        }

        .sidebar-widget {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            overflow: hidden;
        }

        .widget-title {
            background: var(--primary-color);
            color: white;
            padding: 15px 20px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
        }

        .widget-title i {
            margin-right: 10px;
        }

        .widget-content {
            padding: 20px;
        }

        .related-articles {
            list-style: none;
        }

        .related-articles li {
            padding: 12px 0;
            border-bottom: 1px dashed var(--gray-color);
        }

        .related-articles li:last-child {
            border-bottom: none;
        }

        .related-articles a {
            color: var(--dark-color);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }

        .related-articles a:hover {
            color: var(--accent-color);
        }

        .related-articles a i {
            margin-right: 8px;
            color: var(--secondary-color);
            font-size: 0.9rem;
        }

        .category-list {
            list-style: none;
        }

        .category-list li {
            padding: 10px 0;
        }

        .category-list a {
            display: block;
            padding: 8px 15px;
            background: var(--light-color);
            border-radius: 5px;
            color: var(--dark-color);
            text-decoration: none;
            transition: all 0.3s;
            margin-bottom: 8px;
        }

        .category-list a:hover {
            background: var(--accent-color);
            color: white;
            transform: translateX(5px);
        }

        /* 底部区域 */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .footer-section {
            flex: 1;
            padding: 0 20px;
        }

        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #b3c6e0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            margin-right: 10px;
            color: var(--accent-color);
            margin-top: 4px;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b3c6e0;
            font-size: 0.9rem;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .main-content {
                flex-direction: column;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .article-title {
                font-size: 1.8rem;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .article-footer {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
        }
		
/*联系我们*/
        /* 面包屑导航 */
        .breadcrumb {
            background-color: var(--light-color);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }

        .breadcrumb ul li {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .breadcrumb ul li:after {
            content: ">";
            margin-left: 10px;
            color: var(--secondary-color);
        }

        .breadcrumb ul li:last-child:after {
            content: "";
        }

        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }


        /* 联系内容 */
        .contact-content {
            display: flex;
            gap: 40px;
            margin: 50px 0;
        }

        /* 联系表单 */
        .contact-form {
            flex: 1;
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        }

        .contact-form h2 {
            color: var(--primary-color);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--gray-color);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-color);
        }

        .form-control {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.2);
            outline: none;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .btn {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 14px 35px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }

        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
        }

        .btn i {
            margin-right: 8px;
        }

        /* 联系信息 */
         /* 页面标题 */
        
        
        /* 企业宗旨 */
        .mission-section {
            background: #0c2340;
            color: white;
            padding: 50px 0;
            text-align: center;
            margin: 40px 0;
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        
        .mission-section h2 {
            font-size: 32px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .mission-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #4dabf7;
        }
        
        .mission-statement {
            font-size: 24px;
            font-weight: 300;
            font-style: italic;
            max-width: 800px;
            margin: 30px auto 0;
            padding: 0 20px;
            color: #a3d4ff;
        }
        
        /* 联系信息 */
        .contact-section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #080808;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #4dabf7;
            border-radius: 2px;
        }
        

        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .contact-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 35px;
            width: 350px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #0c2340, #4dabf7);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0c2340 0%, #4dabf7 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 30px;
            color: white;
        }
        
        .contact-card h3 {
            font-size: 24px;
            color: #0c2340;
            margin-bottom: 20px;
        }
        
        .contact-info {
            font-size: 18px;
            margin-bottom: 10px;
            color: #fff;
        }
        .confo{font-size: 18px;
            margin-bottom: 10px;
            color: #223751;}
		 .confo a {
            color: #1c3f6e;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .confo a:hover {
            color: #4dabf7;
            text-decoration: underline;
        }
        .contact-info a {
            color: #1c3f6e;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-info a:hover {
            color: #4dabf7;
            text-decoration: underline;
        }
        
        .contact-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #ddd, transparent);
            margin: 25px 0;
        }
        
        /* 地图部分 */
        .map-section {
            padding: 0 0 80px;
        }
        
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            height: 678px;
            background: #eee;
            position: relative;
        }
        
        .map-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(12, 35, 64, 0.9);
            color: white;
            padding: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .address-info h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }
        
        .address-info p {
            font-size: 18px;
            line-height: 1.8;
            opacity: 0.9;
        }
        
        .map-btn {
            background: #4dabf7;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .map-btn:hover {
            background: #3a8bc8;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        

        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                justify-content: center;
            }
            
            nav li {
                margin: 0 10px;
            }
            
            .contact-card {
                width: 100%;
                max-width: 400px;
            }
            
            .map-overlay {
                flex-direction: column;
                text-align: center;
            }
            
            .map-btn {
                margin-top: 20px;
            }
            
            .footer-column {
                flex: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 32px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .contact-card {
                padding: 25px;
            }
        }
		
/*人才招聘*/
.conta {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 500;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .section {
            padding: 40px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #080808;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-title p {    max-width: 1200px;
    margin: 20px auto 0;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 800;
        }
        
        
        /* Job Categories */
        .categories {
            background-color: white;
        }
        
        .category-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .category-btn {
            padding: 12px 30px;
            margin: 5px;
            background-color: var(--light-gray);
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .category-btn.active,
        .category-btn:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Job Listings */
        .job-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .job-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .job-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .job-header {
            padding: 25px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .job-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }
        

        .job-body {
            padding: 25px;
        }
        
        .job-description {
            margin-bottom: 25px;
            color: var(--gray);
        }
        
        .job-footer {
            padding: 0 25px 25px;
        }
        
        /* Company Advantages */
        .advantages {
            background-color: var(--light);
        }
        
        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background-color:#adaab7a3;
            border-radius: 22px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease;    color: #0e0e0e;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
        }
        
        .advantage-icon {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .advantage-icon i {
            font-size: 30px;
            color: #080808;
        }
        
        .advantage-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        /* Application Process */
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            width: 80%;
            height: 3px;
            background-color: var(--light-gray);
            z-index: 1;
        }
        
        .step {
            width: 20%;
            text-align: center;
            position: relative;
            z-index: 2;padding: 12px;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background-color: white;
            border: 3px solid var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        
        .step:hover .step-icon {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
        .step:hover .step-icon i {
            color: white;
        }
        
        .step-icon i {
            font-size: 30px;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .step h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .step p {
            font-size: 14px;
            color: var(--gray);
        }
        
        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #1a3a5f 0%, #0066cc 100%);
            color: white;
            text-align: center;
        }
        
        .contact h2 {
            color: white;
        }
        
        .contact h2:after {
            background: white;
        }
        
        .contact-info {
            max-width: 600px;
            margin: 0 auto;
            font-size: 18px;
            line-height: 1.8;
        }
        
        .contact-info p {
            margin-bottom: 10px;
        }
        

        
        /* Responsive */
        @media (max-width: 992px) {
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .step {
                width: 100%;
                margin-bottom: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .job-list {
                grid-template-columns: 1fr;
            }
        }
		
/*人才招聘详情页*/
.conta {
            max-width: 1200px;
            margin: 0 auto;    margin-top: 110px;
        }
        
        /* 头部样式 */
        .job-header {
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            color: white;
            padding: 40px 20px;
            border-radius: 12px 12px 0 0;
            margin-bottom: 20px;
        }
        
        .job-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        .job-title a{    color: #fff;
    text-decoration: none;}
        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .job-meta-item {
            display: flex;
            align-items: center;
            font-size: 1rem;
        }
        
        .job-meta-item i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .job-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        /* 主体内容样式 */
        .job-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }
        
        .job-details {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .job-section {
            margin-bottom: 30px;
        }
        
        .job-section h3 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaecef;
        }
        
        .job-section p {
            color: #7f8c8d;
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        .job-section ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .job-section li {
            margin-bottom: 10px;
            color: #7f8c8d;
        }
        
        /* 侧边栏样式 */
        .job-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .company-info {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
        }
        
        .company-logo {
            width: 100px;
            height: 100px;
            margin: 0 auto 15px;
            border-radius: 50%;
            background-color: #e8f4fc;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #3498db;
        }
        
        .company-name {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .company-description {
            color: #7f8c8d;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .view-jobs {
            display: inline-block;
            padding: 10px 20px;
            background: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            transition: background 0.3s ease;
        }
        
        .view-jobs:hover {
            background: #2980b9;
        }
        
        .apply-form {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .apply-form h3 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #2c3e50;
        }
        
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-button {
            width: 100%;
            padding: 15px;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .submit-button:hover {
            background: #2980b9;
        }
        
        /* 相关职位样式 */
        .related-jobs {
            margin-top: 50px;
        }
        
        .related-title {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .job-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        
        .job-card-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .job-card-title {
            color: #2c3e50;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        .job-card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .job-card-meta-item {
            display: flex;
            align-items: center;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        .job-card-meta-item i {
            margin-right: 5px;
            color: #3498db;
        }
        
        .job-card-body {
            padding: 20px;
        }
        
        .job-card-description {
            color: #7f8c8d;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .apply-now {
            display: block;
            text-align: center;
            padding: 10px;
            background: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            transition: background 0.3s ease;
        }
        
        .apply-now:hover {
            background: #2980b9;
        }
        
        /* 响应式设计 */
        @media (max-width: 968px) {
            .job-content {
                grid-template-columns: 1fr;
            }
            
            .jobs-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .job-header {
                padding: 25px 15px;
            }
            
            .job-title {
                font-size: 1.8rem;
            }
            
            .job-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .jobs-grid {
                grid-template-columns: 1fr;
            }
        }
		
/*资质荣誉*/
.contai {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 20px;
        }
        
        .subtitle {
            font-size: 1.2rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            aspect-ratio: 3/2;display: flex;justify-content: center;align-items: center;flex-direction: column;background-color: #ede7e7;
        }
        
        /* 横图样式 */
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-img {width: auto;
    height: 222px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.5);
        }
        
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        .view-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 2rem;
            opacity: 0;
            z-index: 2;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .view-icon {
            opacity: 1;
        }
        
        /* 模态框样式 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .modal-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }
        
        .modal-img {
            max-width: 100%;
            max-height: 90vh;
            display: block;
            margin: 0 auto;
            border-radius: 5px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 1001;
        }
        
        .close-modal:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: rotate(90deg);
        }
        
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 1001;
        }
        
        .nav-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        
        .prev-btn {
            left: 20px;
        }
        
        .next-btn {
            right: 20px;
        }
        
        .image-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            background: rgba(0, 0, 0, 0.5);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .gallery-container {
                grid-template-columns: 1fr;
            }
            
            .landscape {
                grid-column: span 1;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 24px;
            }
            
            .close-modal {
                width: 40px;
                height: 40px;
                font-size: 24px;
            }
        }
        
        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .gallery-item {
            animation: fadeIn 0.5s ease forwards;
        }
        
        .gallery-item:nth-child(1) { animation-delay: 0.1s; }
        .gallery-item:nth-child(2) { animation-delay: 0.2s; }
        .gallery-item:nth-child(3) { animation-delay: 0.3s; }
        .gallery-item:nth-child(4) { animation-delay: 0.4s; }
        .gallery-item:nth-child(5) { animation-delay: 0.5s; }
        .gallery-item:nth-child(6) { animation-delay: 0.6s; }
        .gallery-item:nth-child(7) { animation-delay: 0.7s; }
        .gallery-item:nth-child(8) { animation-delay: 0.8s; }