  
        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 头部样式 - 更明亮 */
        header {
            background-color: #2a6ecc;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(42, 110, 204, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .logo span {
            color: #ffcc00;
        }
        
        .logo p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 1.8rem;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            font-size: 1.1rem;
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        nav a:hover {
            color: #ffcc00;
            background-color: rgba(255, 255, 255, 0.1);
        }
    
      
        .hero {
            background:url(../img/banner.jpg) no-repeat center;
             background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            height: 30rem;
            width: 100%;
            /* padding: 6rem 1rem; */
            /* margin-bottom: 3rem; */
        }
        
        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 1.2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 2.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .cta-button {
            display: inline-block;
            background-color: #ffcc00;
            color: #2a6ecc;
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-weight: 700;
            border-radius: 6px;
            transition: background-color 0.3s, transform 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            font-size: 1.1rem;
        }
        
        .cta-button:hover {
            background-color: #ffd633;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* 主要内容区域 */
        section {
            padding: 4rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: #0b418c;
            position: relative;
            font-size: 2.2rem;
        }
        .services .section-title{
            color: #ffb502;

        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: #ffcc00;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .services .section-title:after{
            background-color: #fff;

        }
        
        /* 公司介绍 - 改为单栏设计 */
        .company-intro {
            display: flex;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
            /* min-height: 400px; */
        }
        
        .license-img {
            flex: 0 0 40%;
            background-color: #f8f9fa;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            border-right: 1px solid #eee;
        }
        
        .license-img i {
            font-size: 5rem;
            color: #2a6ecc;
            margin-bottom: 1.5rem;
            opacity: 0.7;
        }
        
        .license-img h3 {
            color: #2a6ecc;
            margin-bottom: 1rem;
        }
        
        .license-img p {
            color: #666;
            text-align: center;
            max-width: 300px;
        }
        
        .company-details {
            flex: 1;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .company-details h2 {
            color: #2a6ecc;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        
        .company-details p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        
        .company-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .highlight-item {
            display: flex;
            align-items: flex-start;
        }
        
        .highlight-item i {
            color: #ffcc00;
            margin-right: 10px;
            font-size: 1.2rem;
            margin-top: 4px;
        }
        
        /* 服务项目 - 更明亮的设计 */
        .services {
            background: url(../img/midBg.jpg) no-repeat center;
    background-size: cover;
            /* background-color: rgb(179 205 247 / 50%); */
        }
        
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }
        
        .service-card {
            background-color: white;
            border-radius: 12px;
            /* padding: 2.5rem 2rem; */
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
			cursor:pointer
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: none;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .service-card p{
            padding :  0 1.5rem 0.5rem;        box-sizing :  border-box;
        }
        
        .service-icon {
            width: 100%;
    overflow: hidden;
    height: 10rem;
    background-color: #e6f0ff;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    transition: all 0.3s;
        }
        
        .service-card:hover .service-icon {
            background-color: #2a6ecc;
            transform: scale(1.1);
        }
        
        .service-icon i {
            font-size: 2.8rem;
            color: #2a6ecc;
            transition: all 0.3s;
        }
        
        .service-card:hover .service-icon i {
            color: white;
        }
        
        .service-card h3 {
            color: #333;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }
        
        /* 联系我们 - 按图片样式设计 */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-info {
            background-color: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .contact-info h3 {
            margin-bottom: 2rem;
            color: #2a6ecc;
            font-size: 1.8rem;
            text-align: center;
        }
        
        .contact-list {
            list-style: none;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .contact-item:last-child {
            border-bottom: none;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: #f5f7fa;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            font-size: 1.8rem;
            color: #2a6ecc;
        }
        
        .contact-text h4 {
            color: #2a6ecc;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .contact-text p {
            color: #333;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* 页脚 */
        footer {
            background-color: #2a6ecc;
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 2rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        
        .footer-logo h3 {
            color: #ffcc00;
            margin-bottom: 1rem;
            font-size: 1.6rem;
        }
        
        .footer-links h4, .footer-contact h4 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #d1e0ff;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
            padding: 3px 0;
        }
        
        .footer-links a:hover {
            color: #ffcc00;
            transform: translateX(5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: #d1e0ff;
            font-size: 0.95rem;
        }
        
       