/*服务项目*/
       .main-container {
            width: 100%;
            max-width: 1200px; /* 修改为 1200px */
            margin: 0 auto;
            padding: 20px;
            border-radius: 10px;
            box-sizing: border-box;
        }

       .title-container {
            text-align: center;
            margin-bottom: 20px;
        }

       .title-container h1 {
            font-size: 24px;
            color: #333;
        }

       .title-container p {
            font-size: 16px;
            color: #666;
        }

       .box-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

       .box {
            width: 260px; /* 适当减小盒子宽度以适应新的容器宽度 */
            height: 230px;
            border-radius: 8px;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
            margin-bottom: 25px;
            margin-top: 30px;
        }

       .box:hover {
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

       .image-container {
            width: 100%;
            height: 156px;
            overflow: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

       .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

       .box:hover .image-container {
            opacity: 0;
            visibility: hidden;
        }

       .title {
            font-size: 20px;
            margin: 8px 0 5px 20px;
            color: #333333;
            text-align: left;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

       .box:hover .title {
            opacity: 0;
            visibility: hidden;
        }

       .text-intro {
            font-size: 14px;
            color: #666666;
            font-weight: bold;
            text-align: left;
            margin: 15px 0 5px 20px;
            opacity: 1;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            visibility: visible;
        }

       .box:hover .text-intro {
            opacity: 0;
            visibility: hidden;
        }

       .content-container {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(255, 255, 255, 0.95);
            padding: 15px;
            box-sizing: border-box;
            pointer-events: none;
            transition: transform 0.3s ease;
            transform: translateY(100%);
        }

       .box:hover .content-container {
            transform: translateY(0);
            pointer-events: auto;
        }

       .description {
            margin-bottom: 15px;
            text-align: justify;
            padding: 10px;
            background-color: rgb(86, 105, 210);
            color: white;
            border-radius: 4px;
        }

       .links {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

       .links li {
            margin: 5px 0;
        }

       .links a {
            color: #000000;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
        }

       .links a:hover {
            color: #0056b3;
        }

       .links {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

       .box:hover .links {
            opacity: 1;
            visibility: visible;
        }

       .description {
            font-size: 14px;
        }
        
/*服务项目*/


/*关于我们*/
.gywm {
            width: 1050px;
            height: 390px;
            margin: 10px auto;
            display: flex;
            align-items: center;
            gap: 60px;
            padding: 20px 50px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            position: relative;
        }

        .gywm::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 30px;
            bottom: 30px;
            width: 1px;
            background: linear-gradient(transparent 10%, #e0e6eb 50%, transparent 90%);
        }

        .gywm-wzq {
            flex: 1;
            height: 100%;
            padding: 30px 0;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .gywm-tpq {
            flex: 1;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .gywm-title {
            font-size: 24px;
            color: #2d3e50;
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }

        .gywm-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background: #2b90d9;
            border-radius: 2px;
        }

        .gywm-desc {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin: 12px 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-family: "宋体";
        }

        .gywm-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            list-style: none;
        }

        .gywm-features li {
            font-size: 13px;
            color: #444;
            padding: 6px 0;
            display: flex;
            align-items: center;
        }

        .gywm-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #2b90d9;
            border-radius: 50%;
            margin-right: 10px;
        }

        .gywm-imgbox {
            width: 100%;
            height: 90%;
            border-radius: 6px;
            overflow: hidden;
            position: relative;
            box-shadow: 4px 4px 15px rgba(0,0,0,0.1);
        }

        .gywm-pic {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gywm-pic:hover {
            transform: scale(1.03);
        }

        .gywm-btn {
            align-self: flex-start;
            padding: 8px 30px;
            margin-bottom: 35px;
            background: #2b90d9;
            color: white;
            border-radius: 18px;
            font-size: 13px;
            text-decoration: none;
            transition: box-shadow 0.3s ease;
        }

        .gywm-btn:hover {
            box-shadow: 0 3px 12px rgba(43,144,217,0.4);
        }
/*关于我们*/

