<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">h2 {
    margin-bottom: 40px;
}

/* è½®æ’­ */
.carousel-box {
    margin: 0 auto;
    position: relative;
}

.carousel {
    overflow: hidden;
    position: relative;
}

.carousel ul {
    margin: 0;
    display: flex;
    transition: transform 0.5s;
}

.carousel-img li {
    flex: 0 0 100%;
    height: 100%;
}

.carousel img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    /* ç¡®ä¿å›¾ç‰‡ä¸ä¼šå˜å½¢ */
}

.carousel-btn {
    width: 100%;
    display: flex;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    position: absolute;
    top: 40%;
}

.carousel-btn button {
    padding: 8px 16px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.card-v .industry {
    position: relative;
}

.card-v .industry .image-container {
    padding-top: 100%;
}

.card-v .industry .card-info {
    position: absolute;
    width: 100%;
    top: 85%;
    transform: translateY(-50%);
    margin: 0;
}

.card-v .industry .card-info .title {
    margin: 0;
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
}

/* æ–°é—»æ¿å— */
.news-box {
    display: flex;
    flex-direction: row;
}

.news-box span {
    flex: 1;
    font-size: 13px;
    margin-top: 8px;
    color: #787878;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-box span.time {
    display: flex;
    flex: 1;
    font-size: 12px;
    color: #A7A7A7;
    margin-top: 8px;
}

.news-left {
    width: 500px;
    margin-right: 32px;
}

.news-box .news-left .image-container {
    overflow: hidden;
    margin-bottom: 16px;

}

.news-box .news-left .image-container .large-img {
    width: 100%;
    transition: transform 0.5s ease;
    /* å®šä¹‰å˜æ¢åŠ¨ç”» */
    transform: scale(1);
}

.news-box .news-left .image-container:hover img {
    transform: scale(1.05);
}

.news-box .news-left a {
    font-size: 24px;
    color: #262626;
}

.news-right {
    flex: 1;
}

.news-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

/* 1.ç›’å­çš„å¤§å°ï¼ŒèƒŒæ™¯è‰²ï¼Œå±…ä¸­å’Œè¶…å‡ºéšè— */
.news-card div {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.news-card div img {
    width: 120px;
}

.news-card div a {
    display: flex;
    flex: 1;
    font-size: 18px;
    font-family: "Microsoft YaHei", "å¾®è½¯é›…é»‘";
    color: #262626;
}

.news-box a:hover {
    color: #4d7fd0;
}

.banner {
    flex: 1;
    display: flex;
    position: relative;
    background: url('../images/banner2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 56px 0;
}

.banner::after {
    content: '';
    /* ä¼ªå…ƒç´&nbsp;å†…å®¹ä¸ºç©º */
    position: absolute;
    /* ç»å¯¹å®šä½ */
    top: 0;
    /* é¡¶éƒ¨å¯¹é½ */
    left: 0;
    /* å·¦ä¾§å¯¹é½ */
    width: 100%;
    /* è¦†ç›–æ•´ä¸ªå®¹å™¨å®½åº¦ */
    height: 100%;
    /* è¦†ç›–æ•´ä¸ªå®¹å™¨é«˜åº¦ */
    background-color: rgba(0, 0, 0, 0.5);
    /* åŠé€æ˜Žé»‘è‰²å&nbsp;åŠ&nbsp;å±‚ï¼Œè°ƒæ•´æœ€åŽä¸€ä¸ªå€¼æ¥æŽ§åˆ¶é€æ˜Žåº¦ */
    z-index: 1;
    /* ç¡®ä¿ä¼ªå…ƒç´&nbsp;å&nbsp;åŠ&nbsp;åœ¨èƒŒæ™¯å›¾ä¹‹ä¸Š */
}

.banner-title {
    color: #fff;
    font-size: 42px;
    text-align: center;
    position: relative;
    z-index: 999;
}

.banner-title::after {
    content: '';
    border-bottom: 1px #fff solid;
    width: 20%;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 999;
}

.banner-sub {
    color: #fff;
    font-size: 1.2em;
    line-height: 1.8em;
    text-align: left;
    margin: 4em 0 3em 0;
    z-index: 999;
}

.banner-info {
    color: #fff;
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-size: 2em;
    font-weight: bold;
    z-index: 999;
}

.banner-info .column {
    text-align: center;
    z-index: 999;
}

.banner-info .column p {
    color: #fff;
    font-size: 0.7em;
    font-weight: 500;
    margin-top: 0.3em;
}

.banner-info .column .number {
    color: #fff;
    font-size: 2.5em;
    font-weight: bold;
    overflow: hidden;
}

.card-h img {
    width: 400px;
}

.service-list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.service-list .item {
    text-align: center;
}

.service-list .title {
    font-size: 24px;
    line-height: 36px;
    color: rgba(0, 0, 0, .85);
    margin: 16px 0;
    font-weight: 500;
}

.service-list a {
    font-size: 16px;
    color: rgba(0, 0, 0, .85);
}

.service-list a:hover {
    text-decoration: underline;
}

.service-list .text::after {
    content: " &gt;";
}

/* è§£å†³æ–¹æ¡ˆ */
.solution-box {
    width: 1230px;
    margin: 40px auto 0;

}

.solution-card&gt;li {
    position: relative;
    margin: 10px 0 20px 70px;
}

.solution-card&gt;li img {
    width: 300px;
}

.solution-card&gt;li span {
    position: absolute;
    width: 700px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    top: 40px;
    right: 80px;
}

.services_details {
    border-radius: 3px;
    color: #787878;
    width: 100px;
    height: 30px;
    position: absolute;
    bottom: 10px;
    background-color: #fff;
    border: 1px solid #dddddd;
}

/* ä¸“ä¸šçŸ¥è¯† */
.expertise-mask {
    width: 100%;
    background-color: #f7f7f7;
    padding: 40px 0;
}

.expertise-box {
    width: 1230px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.expertise-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;

}

.expertise-card&gt;li {
    padding: 20px 0;
    text-align: center;
    width: 360px;
    border: .5px solid gainsboro;
    margin-bottom: 40px;
}

.expertise-card&gt;li&gt;img {
    width: 300px;

}

.expertise-card&gt;li&gt;p {
    margin: 10px auto 0;
    width: 300px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.customer-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 24px;
    align-content: start;

}

.customer-list li {}

.customer-list li img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 12px #d6d6d6;
}

.home_about_left {
    float: left;
    text-align: left;
    width: 600px;
}

.home_about_more {
    width: 150px;
    height: 50px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
}

.home_about_more:hover {
    color: #a17412;
    border-color: #a17412;
    cursor: pointer;
}

.home_about_line {
    border: none;
    width: 300px;
    border-bottom: 2px solid #a17412;
    margin: 5px 0px;
}

.home_about_right {
    float: right;
    width: 640px;
    position: absolute;
}

.home_about_right&gt;img:nth-of-type(1) {
    width: 600px;
    margin-top: 100px;
    z-index: 1;
    position: absolute;
    margin-left: 360px;
}

.home_about_right&gt;img:nth-of-type(2) {
    width: 280px;
    z-index: 2;
    position: absolute;
    float: left;
    border: 4px solid white;
    margin-top: 200px;
    margin-left: 280px;
}

.home_about_right&gt;img:nth-of-type(3) {
    width: 200px;
    margin-top: 100px;
    z-index: 3;
    position: absolute;
    float: left;
    border: 4px solid white;
    margin-top: 280px;
    margin-left: 450px;
}

/* å“åº”å¼å¸ƒå±€ */
@media (max-width: 768px) {
    h2 {
        font-size: 7vw;
    }

    .container {
        padding: 0 24px;
    }

    .news-left {
        display: none;
    }

    .banner {}

    .banner::after {
        content: '';
        /* ä¼ªå…ƒç´&nbsp;å†…å®¹ä¸ºç©º */
        position: absolute;
        /* ç»å¯¹å®šä½ */
        top: 0;
        /* é¡¶éƒ¨å¯¹é½ */
        left: 0;
        /* å·¦ä¾§å¯¹é½ */
        width: 100%;
        /* è¦†ç›–æ•´ä¸ªå®¹å™¨å®½åº¦ */
        height: 100%;
        /* è¦†ç›–æ•´ä¸ªå®¹å™¨é«˜åº¦ */
        background-color: rgba(0, 0, 0, 0.5);
        /* åŠé€æ˜Žé»‘è‰²å&nbsp;åŠ&nbsp;å±‚ï¼Œè°ƒæ•´æœ€åŽä¸€ä¸ªå€¼æ¥æŽ§åˆ¶é€æ˜Žåº¦ */
        z-index: 1;
        /* ç¡®ä¿ä¼ªå…ƒç´&nbsp;å&nbsp;åŠ&nbsp;åœ¨èƒŒæ™¯å›¾ä¹‹ä¸Š */
    }

    .banner-title {
        font-size: 8vw;
        white-space: nowrap;
    }

    .banner-info {
        flex-direction: row;
        justify-content: space-around;
    }


    .banner-info .column .number {
        font-size: 10vw;
    }

    .banner-sub {
        text-indent: 2em;
    }

    .carousel img {
        height: 40vh;
    }

    .card-v-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        align-content: start;
    }

    .card-h {
        width: 100%;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        border: 1px solid #e4e4e4;
        /*margin-bottom: 24px;*/
        background-color: #fff;
        border-radius: 5px;
        overflow: hidden;
    }

    .card-h .image-container {
        width: 100%;
        height: 0;
        padding-top: 62.5%;
        overflow: hidden;
    }

    .card-h img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .card-h .card-info {
        display: flex;
        flex: 1;
        flex-direction: column;
        margin: 26px 10px 26px 10px;
    }

    .card-h .card-info .title {
        color: #4e4e4e;
        font-size: 18px;
        margin-bottom: 16px;
    }

    .card-h .card-info .sub {
        color: #787777;
        font-size: 14px;
        margin-bottom: 16px;
        word-wrap: break-word;
    }

    .card-h .card-info .other {
        margin-top: auto;
        color: #787777;
        font-size: 14px;
    }
}</pre></body></html>