﻿:root {
            --primary-color: #1a73e8;
            --secondary-color: #34a853;
            --accent-color: #fbbc05;
            --light-color: #f8f9fa;
            --dark-color: #202124;
            --text-color: #333;
            --text-light: #5f6368;
            --card-bg: #ffffff;
            --gradient-primary: linear-gradient(135deg, #1a73e8 0%, #6c8ef5 100%);
            --gradient-secondary: linear-gradient(135deg, #34a853 0%, #57bb75 100%);
            --gradient-accent: linear-gradient(135deg, #fbbc05 0%, #f9c642 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: var(--light-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--secondary-color);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 */
        header {
          
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 24px;
            margin-left: 10px;
            font-weight: 600;
            color: #202124;
        }
        
        .logo-icon {
            font-size: 28px;
            color: var(--accent-color);
        }
        
        .contact-info {
            display: flex;
            align-items: center;
        }
        
        .phone {
            font-size: 18px;
            font-weight: bold;
            margin-right: 20px;
            color: #202124;
        }
        
        nav {
            background: var(--gradient-primary);
            margin-top: 15px;
            border-radius: 8px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu a {
            display: block;
            padding: 15px 20px;
            color: white;
            font-weight: 500;
        }
        
        .nav-menu a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .nav-menu .active a {
            background-color: var(--accent-color);
            color: var(--dark-color);
        }
        
        /* 主要内容区域 */
        .main-content {
            padding: 30px 0;
            min-height: 500px;
        }
        
        /* 首页案例展示 */
        .home-sections {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 28px;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
            color: var(--dark-color);
        }
        
        .about-section {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .about-content {
            line-height: 1.8;
        }
        
        .about-content p {
            margin-bottom: 15px;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 20px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            padding: 10px;
            background: rgba(26, 115, 232, 0.05);
            border-radius: 8px;
        }
        
        .feature-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-size: 18px;
        }
        
        .case-section {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .case-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .case-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .case-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .case-image {
            height: 140px;
            background-color: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        
        .case-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .case-item:hover .case-image img {
            transform: scale(1.05);
        }
        
        .case-info {
            padding: 15px;
        }
        
        .case-title {
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--dark-color);
            font-weight: 600;
        }
        
        .case-desc {
            color: var(--text-light);
            font-size: 13px;
            margin-bottom: 12px;
            line-height: 1.5;
        }
        
        .case-link {
            display: inline-block;
            color: var(--primary-color);
            font-weight: 500;
            font-size: 13px;
        }
        
        /* 两列布局 */
        .two-column {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }
        
        /* 侧边栏 */
        .sidebar {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .sidebar-title {
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--light-color);
            color: var(--dark-color);
        }
        
        .sidebar-list {
            list-style: none;
        }
        
        .sidebar-list li {
            padding: 10px 0;
            border-bottom: 1px dashed var(--light-color);
        }
        
        .sidebar-list li:last-child {
            border-bottom: none;
        }
        
        /* 文章列表 */
        .article-list {
            list-style: none;
        }
        
        .article-item {
            background: var(--card-bg);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .article-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }
        
        .article-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .article-meta {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 15px;
        }
        
        .article-excerpt {
            color: var(--text-color);
            margin-bottom: 15px;
        }
        
        /* 页脚样式 */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--accent-color);
        }
        
        .footer-section p {
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .home-sections {
                grid-template-columns: 1fr;
            }
            
            .two-column {
                grid-template-columns: 1fr;
            }
            
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .contact-info {
                margin-top: 15px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                flex-direction: column;
            }
            
            .case-grid {
                grid-template-columns: 1fr;
            }
            
            .article-content {
                padding: 20px;
            }
        }
        
        /* 特殊效果 */
        .tech-badge {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        
        .read-more {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            background: var(--gradient-secondary);
            color: white;
            box-shadow: 0 5px 15px rgba(52, 168, 83, 0.3);
        }
        
        .service-btn {
            display: inline-block;
            background: var(--gradient-secondary);
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-top: 15px;
        }
        
        .service-btn:hover {
            background: var(--gradient-primary);
            box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
            color: white;
        }
.search{float:left;margin-left:40px;margin-top:8px}
.search .text{width:120px;height:40px;font-size:16px;border:none;text-indent:35px;color:#000;font-family:"Microsoft Yahei","冬青黑体简体中文 w3";outline:0;border-radius:5;transition:all .6s;background:url(../images/search.png) no-repeat 10px 13px;background-size:18px auto;border-radius:5px}
.search .text:focus{width:153px;color:#000;background:#fff url(../images/search.png) no-repeat 10px 13px;background-size:18px auto}