@charset "utf-8";
/* CSS Document */

:root {
            --primary: #1a73e8;
            --primary-dark: #0d5cb6;
            --secondary: #0f9d58;
            --dark: #202124;
            --light: #f8f9fa;
            --gray: #5f6368;
            --border: #dadce0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 导航栏样式 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding:5px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo i {
            font-size: 28px;
            color: var(--primary);
            margin-right: 10px;
        }
        
        .logo h1 {
            font-size: 24px;
            font-weight: 700;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin: 0 25px;
        }
        
        nav ul li a {
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .nav-btns {
            display: flex;
            align-items: center;
        }
        
        .btn {
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            display: inline-block;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
            border: 2px solid var(--primary);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        
        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            margin-right: 10px;
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* 英雄区域样式 */
        .hero {
            height:100vh;
            /*background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(13, 92, 182, 0.1) 100%);*/
			background:url(../images/banner.jpg) no-repeat center;
			background-size:cover;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
			
        }
        
        .hero-content {
            max-width: 600px;
            z-index: 2;
        }
        
        .hero h2 {
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 20px;
			color:#FFF;
        }
        
        .hero p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 30px;
			color:#FFF;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
        }
        
        .hero-image {
            position: absolute;
            right: 6%;
            top: 57%;
            transform: translateY(-50%);
            max-width: 50%;
            z-index: 1;
            opacity: 0.9;
        }
		
		
		/* 副页banner区域 */
        .hero2 {
            height:40vh;
			
			background-size:cover;
            display: flex;
            align-items: center;
            padding-top:0px;
            position: relative;
            overflow: hidden;
			text-align:center
			
        }
		.herobg2{background:url(../images/ab02.jpg) no-repeat center;}
		.herobg3{background:url(../images/ab03.jpg) no-repeat center;}
		.herobg4{background:url(../images/ab04.jpg) no-repeat center;}
		.herobg5{background:url(../images/ab05.jpg) no-repeat center;}
		.herobg6{background:url(../images/ab06.jpg) no-repeat center;}
		.herobg7{background:url(../images/ab07.jpg) no-repeat center;}
		.herobg8{background:url(../images/ab08.jpg) no-repeat center;}
        .herobg9{background:url(../images/ab09.jpg) no-repeat center;}
		
        .hero2-content {
            max-width: 1200px;
            z-index: 2;
        }
        
        .hero2 h2 {
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 20px;
			color:#FFF;
        }
        
        .hero2 p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 30px;
			color:#FFF;
        }
        
        .hero2-btns {
            display: flex;
            gap: 15px;
        }
        
        .hero2-image {
            position: absolute;
            right: 6%;
            top: 57%;
            transform: translateY(-50%);
            max-width: 50%;
            z-index: 1;
            opacity: 0.9;
        }
		
        
        /* 服务区域样式 */
        .section {
            padding: 100px 0;
        }
		.sectionbg {
            background-color: var(--light);
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .section-title {
            font-size: 36px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: var(--gray);
            font-size: 18px;
        }
        
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
		.fwlc{}
		.fwlc img{width:100%;}
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px 30px 100px 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
			cursor:pointer;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .service-icon i {
            font-size: 28px;
            color: white;
        }
		.service-card p {
            border-top:1px solid #eee;
			padding-top:25px;
			color:#666
        }
        
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
			color:#1a73e8;
        }
		.service-img {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .service-img img{width:100%;}
		
		
		
		
		/* 品牌区域样式 */

        
        .brand {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .brand-card {
            background-color: white;
            border-radius: 10px;
            padding: 50px 15px 70px 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
			cursor:pointer;
        }
        
        .brand-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .brand-icon i {
            font-size: 28px;
            color: white;
        }
		.brand-card p {
			padding-top:10px;
			color:#666;
			font-size:14px;
			line-height:28px
        }
        
        .brand-card h3 {
            font-size: 18px;
            margin-top: 35px;
			color:#333;
        }
		.brand-img {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .brand-img img{width:100%;}
		
		
        /* 关于我们区域 */
        .about {
            background-color: var(--light);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
		.about-image2 {
            flex: 1;
            overflow: hidden;
        }
		.about-image2 img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
			border:20px solid #FFF
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        /* 团队成员 */
		.teambg {
            background-color: var(--light);
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
			position:relative;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
			cursor:pointer;
        }
        
        .team-img {
            background-color: #e9f0fd;
            display: flex;
            align-items: center;
            justify-content: center;
        }
		.team-img img{
			width:100%;
		}
        
        .team-img i {
            font-size: 100px;
            color: var(--primary);
            opacity: 0.7;
        }
        
        .team-info {
			position:absolute;
            padding: 20px;
            text-align: center;
			bottom:0;
			width:100%;
			background:rgba(0,0,0,0.5)
        }
        
        .team-info h3 {
            font-size: 20px;
            margin-bottom: 5px;
			color:#FFF;
        }
        
        .team-info p {
            color: var(--gray);
            margin-bottom: 15px;
			color:#FFF;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-links a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
		
		.social-links img{
			width:60%;
		}
        
        .social-links a:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* 客户评价 */
        .testimonials {
            background-color: var(--light);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 80px;
            color: var(--primary);
            opacity: 0.1;
            font-family: Georgia, serif;
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #e9f0fd;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .author-img i {
            color: var(--primary);
        }
        
        .author-info h4 {
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 14px;
        }
		
		/* 企业文化 */
		.culturebg {
            background-color: var(--light);
        }
        .culture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .culture-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
			position:relative;
        }
        
        .culture-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
			cursor:pointer;
        }
        
        .culture-img {
            background-color: #e9f0fd;
            display: flex;
            align-items: center;
            justify-content: center;
        }
		.culture-img img{
			width:100%;
		}
        
        .culture-img i {
            font-size: 100px;
            color: var(--primary);
            opacity: 0.7;
        }
        
        .culture-info {
			position:absolute;
            padding: 50px 20px 0 20px;
			height:250px;
            text-align: center;
			bottom:0;
			width:100%;
			background:rgba(0,0,0,0.5)
        }
        
        .culture-info h3 {
            font-size: 24px;
            margin-bottom: 25px;
			color:#FFF;
        }
        
        .culture-info p {
            color: var(--gray);
            margin-bottom: 15px;
			color:#FFF;
        }
        
        
        /* 联系区域 */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 25px;
        }
		.contact-item p{
			color:#666;
		}
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: #e9f0fd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            font-size: 20px;
            color: var(--primary);
        }
		.contact-icon img{
			width:50%;
		}
        
        .contact-form {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* 页脚样式 */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bdc1c6;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #bdc1c6;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bdc1c6;
            font-size: 14px;
        }
        
		
		.tag{height:48px; margin-top:80px; line-height:48px;}
		.tagnav{width:100%; margin:0 auto; font-size:14px;}
		.tagnav span{padding:0 20px;}
		.tagnav a{ color:#666;}
		.tagnav a:hover{text-decoration:underline;}
		.tline{border-top-color:#1a73e8;border-top-width:8px;border-top-style:solid;border-right:6px solid transparent;width:52px;height:0; margin-bottom:20px;}
		.pt30{ padding-top:30px}
		.news{}
		.newslist{display: flex;align-items: center;gap: 0px; margin-bottom:30px;}
		.newslist .newspic{width:40%;height:200px; overflow:hidden;}
		.newslist .newspic img{width:100%; height:auto;}
		.newslist .newscont{width:60%;height:200px; background:var(--light); padding:20px}
		.newscont h3{font-size:22px;}
		.newscont p{ color:#666; padding:10px 0 20px 0; font-size:14px;}
		.newscont em{ font-style:normal; font-size:12px; color:#999;}
		
		.newsc{width:100%;display: flex;align-items: center;gap: 0px; box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 12px 0px;}
		.newscpic{width:100%;height:300px; overflow:hidden; margin-bottom:70px}
		.newscpic img{width: 100%;}
		.newsc .newscont2{padding:20px;width:100%}
		.newscont2 h3{font-size:26px; color:#111; text-align:center;border-bottom:1px solid #eaecef; padding:10px 0 30px 0; margin-bottom:20px;}
		.newscont2 p{ color:#333; padding:10px 0 10px 0; font-size:16px;text-indent:2em; line-height:24px;}
		.newscont2 em{ font-style:normal; font-size:12px; color:#999; text-align:center; display:block; padding:20px 0 20px 0; border-bottom:1px solid #eaecef}
		.news-meta{color: #999; font-size:14px;}
		
        /* 响应式设计 */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 40px;
            }
            .logo img{ width:80%; padding-left:20px}
            .hero-image {
                max-width: 45%;
            }
            
            .about-content {
                flex-direction: column;
            }
			
			.newslist {
                flex-direction: column;
            }
		.newslist .newspic{width:100%;height:200px; overflow:hidden;}
		.newslist .newspic img{width:100%;}
		.newslist .newscont{width:100%;height:auto; background:var(--light); padding:20px}

        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
				position:absolute;
				right:15px;
            }
            
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: all 0.4s ease;
            }
            
            nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .hero {
                text-align: center;
            }
            
            .hero-btns {
                justify-content: center;
            }
            
            .hero-image {
                display: none;
            }
            
            .stats {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero h2 {
                font-size: 32px;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .section-subtitle {
                font-size: 16px;
            }
        }