 /**
  * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
  * http://cssreset.com
  */
 html,
 body,
 div,
 span,
 applet,
 object,
 iframe,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 p,
 blockquote,
 pre,
 a,
 abbr,
 acronym,
 address,
 big,
 cite,
 code,
 del,
 dfn,
 em,
 img,
 ins,
 kbd,
 q,
 s,
 samp,
 small,
 strike,
 strong,
 sub,
 sup,
 tt,
 var,
 b,
 u,
 i,
 center,
 dl,
 dt,
 dd,
 ol,
 ul,
 li,
 fieldset,
 form,
 label,
 legend,
 table,
 caption,
 tbody,
 tfoot,
 thead,
 tr,
 th,
 td,
 article,
 aside,
 canvas,
 details,
 embed,
 figure,
 figcaption,
 footer,
 header,
 menu,
 nav,
 output,
 ruby,
 section,
 summary,
 time,
 mark,
 audio,
 video,
 input {
 	margin: 0;
 	padding: 0;
 	border: 0;
 	font-size: 100%;
 	font-weight: normal;
 	vertical-align: baseline;
 }
 
 /* HTML5 display-role reset for older browsers */
 article,
 aside,
 details,
 figcaption,
 figure,
 footer,
 header,
 menu,
 nav,
 section {
 	display: block;
 }
 
 body {
 	line-height: 1;
 }
 
 blockquote,
 q {
 	quotes: none;
 }
 
 blockquote:before,
 blockquote:after,
 q:before,
 q:after {
 	content: none;
 }
 
 table {
 	border-collapse: collapse;
 	border-spacing: 0;
 }
 
 /* custom */
 a {
 	color: #7e8c8d;
 	text-decoration: none;
 	-webkit-backface-visibility: hidden;
 }
 
 li {
 	list-style: none;
 }
 
 ::-webkit-scrollbar {
 	width: 5px;
 	height: 5px;
 }
 
 ::-webkit-scrollbar-track-piece {
 	background-color: rgba(0, 0, 0, 0.2);
 	-webkit-border-radius: 6px;
 }
 
 ::-webkit-scrollbar-thumb:vertical {
 	height: 5px;
 	background-color: rgba(125, 125, 125, 0.7);
 	-webkit-border-radius: 6px;
 }
 
 ::-webkit-scrollbar-thumb:horizontal {
 	width: 5px;
 	background-color: rgba(125, 125, 125, 0.7);
 	-webkit-border-radius: 6px;
 }
 
 html,
 body {
 	width: 100%;
 	font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
 }
 
 body {
 	-webkit-text-size-adjust: none;
 	-webkit-tap-highlight-color: transparent;
 }
 
 input,
 textarea,
 button {
 	-webkit-appearance: none;
 }
 
 @font-face {
 	font-family: DIN-BlackItalic;
 	src: url("fonts/DIN-BlackItalic.otf");
 }
 
 @font-face {
 	font-family: BN;
 	src: url("fonts/BebasNeue.otf");
 }
 
 .banner {
 	height: 480px;
 	background-size: cover !important;
 	overflow: hidden;
 	min-width: 1200px;
	padding: 0px;
 }
 #footer{
 	min-width: 1200px;
 }
 .banner h1,
 .banner h3 {
 	text-align: center;
 	color: #fff;
 }
 
 .banner h1 {
 	margin-top: 200px;
 	font-size: 36px;
 	font-weight: 600;
 }
 
 .banner h3 {
 	margin-top: 35px;
 	font-size: 16px;
 }
 :root {
            --primary-blue: #1a73e8;
            --dark-blue: #0d47a1;
            --light-blue: #e3f2fd;
            --accent-blue: #42a5f5;
            --neon-blue: #00e5ff;
            --gradient: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            --gradient-neon: linear-gradient(135deg, var(--primary-blue), var(--neon-blue));
            --text-dark: #333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-neon: 0 0 15px rgba(0, 229, 255, 0.5);
        }
        
        
        section {
            padding: 50px 0;
            position: relative;
        }
        
        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }
        
        h1 {
            font-size: 3.5rem;
            font-weight: 700;
        }
        
        h2 {
            font-size: 2.25rem;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
			line-height: 2.5rem;
			font-weight: normal;
        }
        
        h2:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--gradient);
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        p {
            margin-bottom: 1rem;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        /* Banner Section */
        .banner {
            background: url(../images/zt-zhituibanner.jpg) center no-repeat;
            color: white;
            padding: 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .banner-content {
            position: relative;
            z-index: 2;
        }
        
        .banner h1 {
            color: white;
            font-size: 2.25rem;
			font-weight: normal;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .banner p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: #fff;
        }
        
        .ai-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }
        
        .ai-node {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--neon-blue);
            border-radius: 50%;
            box-shadow: var(--shadow-neon);
            animation: float 6s infinite ease-in-out;
        }
        
        .ai-connection {
            position: absolute;
            height: 2px;
            background: rgba(0, 229, 255, 0.3);
            transform-origin: left center;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.2); }
        }
        
        /* Pain Points Section */
        .pain-points {
            background-color: white;
            position: relative;
        }
        
        .pain-points:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e3f2fd" fill-opacity="0.5" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
        }
        
        .pain-points h2 {
            color: var(--dark-blue);
        }
        
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin-top: 40px;
        }
        
        .brand-card {
            background: white;
            border-radius: 10px;
            padding: 35px 15px 0px 15px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            text-align: center;
            border-top: 4px solid var(--accent-blue);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 180px;
        }
        
        .brand-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-neon);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .brand-card:hover:before {
            transform: scaleX(1);
        }
        
        .brand-logo {
            width: 80px;
            height: 80px;
            display: flex;
			border-radius: 10%;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 2.5rem;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
			box-shadow: var(--shadow);
        }
        
       /* .brand-logo.doubao { background: linear-gradient(135deg, #fff, #fff); }
        .brand-logo.wenxiaoyan { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
        .brand-logo.deepseek { background: linear-gradient(135deg, #556270, #4ecdc4); }
        .brand-logo.tencent { background: linear-gradient(135deg, #00c6ff, #0072ff); }
        .brand-logo.kimi { background: linear-gradient(135deg, #f46b45, #eea849); }
        .brand-logo.baidu { background: linear-gradient(135deg, #29323c, #485563); } */
        
        .brand-card:hover .brand-logo {
            transform: rotateY(180deg) scale(1.1);
        }
        
        .brand-card h3 {
            color: var(--dark-blue);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .brand-card p {
            font-size: 0.95rem;
            line-height: 1.5;
			color: #333;
        }
        
        /* GEO Section */
        .geo-section {
            background-color: var(--light-blue);
            position: relative;
        }
        
        .geo-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.5" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
        }
        
        .geo-content {
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .geo-content h3 {
            font-size: 1.6rem;
			font-weight: bold;
            color: var(--primary-blue);
            margin: 30px 0 15px;
            position: relative;
            display: inline-block;
        }
        
        .geo-content h3:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        .geo-content p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        /* Highlights Section */
        .highlights {
            position: relative;
        }
        .highlights img{width: 100%;}
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .highlight-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .highlight-card:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(66,165,245,0.1) 0%, rgba(255,255,255,0) 70%);
            transform: scale(0);
            transition: transform 0.5s ease;
        }
        
        .highlight-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .highlight-card:hover:before {
            transform: scale(1);
        }
        
        .highlight-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .highlight-card h3 {
            color: var(--dark-blue);
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .highlight-card p {
            position: relative;
            z-index: 2;
        }
        
        /* Data Report Section */
        .data-report {
            background-color: white;
            text-align: center;
            position: relative;
        }
        
        .data-report:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e3f2fd" fill-opacity="0.5" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
        }
        
        .report-container {
            position: relative;
            z-index: 2;
        }
        
        .report-image {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .report-placeholder {
            background: var(--light-blue);
            height: 400px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--primary-blue);
            position: relative;
            overflow: hidden;
        }
        
        .report-placeholder:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(90deg, transparent 49%, rgba(66,165,245,0.1) 50%, transparent 51%),
                linear-gradient(transparent 49%, rgba(66,165,245,0.1) 50%, transparent 51%);
            background-size: 30px 30px;
            opacity: 0.5;
        }
        
        .report-placeholder i {
            font-size: 4rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .report-placeholder h3 {
            position: relative;
            z-index: 2;
        }
        
        .report-placeholder p {
            position: relative;
            z-index: 2;
        }
        
        /* Footer */
        footer {
            background: var(--dark-blue);
            color: white;
            padding: 40px 0;
            text-align: center;
            position: relative;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23000" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
        }
        
        footer p {
            color: rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 2;
        }
        
        /* AI Circuit Background */
        .ai-circuit {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.05;
        }
        
        .circuit-path {
            fill: none;
            stroke: var(--primary-blue);
            stroke-width: 2;
            stroke-dasharray: 10,5;
            animation: dash 20s linear infinite;
        }
        
        @keyframes dash {
            to {
                stroke-dashoffset: 1000;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .brands-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .banner {
                padding: 100px 0;
            }
            
            .banner h1 {
                font-size: 2.8rem;
            }
            
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .brands-grid {
                grid-template-columns: 1fr;
            }
            
            .brand-card {
                min-height: 220px;
            }
        }