/* banner开始 */
.banner {
    width: 100%;
    position: relative;
}

.banner .swiper-slide .slideup {
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0;
    width: 100%;
}

.banner .swiper-slide-active .slideup {
    animation: imgslideup 0.8s 0.3s ease-in-out;
}

@keyframes imgslideup {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    40% {
        opacity: 0;
        transform: translateY(10%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner .swiper-slide .text,
.banner .swiper-slide .text2 {
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1650px;
}

.banner .swiper-slide-active .text {
    animation: textslideup 0.8s 0.3s ease-in-out;
}

.banner .swiper-slide .text>h2 {
    font-size: 48px;

    font-weight: bold;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.banner .swiper-slide .text>p {
    font-size: 20px;

    font-weight: 400;
    color: #FFFFFF;
    line-height: 2;
    width: 30%;
    margin-top: 50px;
}

@keyframes textslideup {
    0% {
        opacity: 0;
        transform: translate(-50%, -30%);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.banner .swiper-slide .text2>.num {
    width: 38%;
}

.banner .swiper-slide .text2>h2 {
    width: 25%;
    font-size: 44px;

    font-weight: bold;
    color: #FBEFCD;
    padding-bottom: 20px;
    border-bottom: 2px solid #FBEFCD;
    margin-top: 20px;
}

.banner .swiper-slide-active .text2>h2 {
    animation: text2slideup 0.8s 0.3s ease-in-out;
}

.banner .swiper-slide .text2>p {
    width: 25%;
    font-size: 14px; line-height:26px;

    font-weight: 400;
    color: #FBEFCD;
    margin-top: 50px;
}

.banner .swiper-slide-active .text2>p {
    animation: text2slideup 0.8s 0.3s ease-in-out;
}

@keyframes text2slideup {
    0% {
        opacity: 0;
        transform: translateY(30%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner .swiper-slide .scale {
    position: absolute;
    z-index: 10;
    right: 2vw;
    top: 50%;
    transform: translateY(-50%);
    width: 64%;
}

.banner .swiper-slide-active .scale {
    animation: scale 0.8s 0.3s ease-in-out;
}

@keyframes scale {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.banner .swiper-tool {
    position: absolute;
    z-index: 30;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner .swiper-tool>.prev,
.banner .swiper-tool>.next {
    width: 46px;
    height: 46px;
    border-radius: 100%;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    transition: 0.3s;
}

.banner .swiper-tool>.prev {
    transform: rotateZ(180deg);
    margin-bottom: 10px;
}

.banner .swiper-tool>.prev:hover,
.banner .swiper-tool>.next:hover {
    cursor: pointer;
    background-color: #f40e33;
    border: 1px solid #f40e33;
}

.banner .swiper-tool>.prev>span,
.banner .swiper-tool>.next>span {
    font-size: 24px;
}

.banner .swiper-tool>.line {
    display: block;
    width: 1px;
    height: 46px;
    background: rgba(255, 255, 255, 0.35);
    margin: 20px 0;
}

.banner .swiper-tool>.current-num {
    color: #ff0029;
    font-size: 24px;
}

.banner .swiper-tool>.last-num {
    color: #afafaf;
    font-size: 12px;
    line-height: 20px;
}

/* banner结束 */


/* 服务之道开始 */
.service {
    width: 100%;
    padding: 125px 0 100px;
    background: url('../images/service_bg.jpg') no-repeat center/cover;
    position: relative;
    z-index: 20;
}

.service .title,
.brand .title,
.advantage .title,
.route-walk .title,
.scheme .title,
.dynamic .title,
.iAbout .title {
    text-align: center;
}

.service .title>h3,
.brand .title>h3,
.advantage .title>h3,
.route-walk .title>h3,
.scheme .title>h3,
.dynamic .title>h3,
.iAbout .title>h3 {
    font-size: 32px;

    font-weight: 500;
    color: #000000;
    line-height: 38px;
}

.service .title>p,
.brand .title>p,
.advantage .title>p,
.route-walk .title>p,
.scheme .title>p,
.dynamic .title>p,
.iAbout .title>p {
    font-size: 16px;

    font-weight: 400;
    color: #3D485D;
    margin-top: 10px;
}

.service .list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.service .list>li {
    width: 23%;
    text-align: center;
    padding: 0 35px 40px;
    border-bottom: 1px solid #E1E1E1;
    transition: 0.3s;
}

.service .list>li:hover {
    border-bottom-color: #0052D9;
}

.service .list>li>.icon {
    transition: 0.3s;
}

.service .list>li:hover>.icon {
    transform: translateY(-10px);
}

.service .list>li>h4 {
    font-size: 20px;

    font-weight: 500;
    color: #333333;
    transition: 0.3s;
}

.service .list>li:hover>h4 {
    color: #0052D9;
}

.service .list>li>.ta {
    font-size: 16px;

    font-weight: 400;
    color: #4B5B76;
    line-height: 1.5;
    margin-top: 20px;
}

.service .list>li>.ta .fg {
    display: inline-block;
    width: 1px;
    height: 16px;
    vertical-align: middle;
    background-color: #4B5B76;
}

.service .list>li>.more {
    display: block;
    width: 180px;
    height: 48px;
    line-height: 48px;
    border: 1px solid #E1E1E1;
    font-size: 16px;

    font-weight: 400;
    color: #949494;
    margin: 40px auto 0;
    transition: 0.3s;
}

.service .list>li>.more:hover {
    background: #0052D9;
    color: #FFFFFF;
    border-color: transparent;
}

.service .merit {
    width: 1650px;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.service .merit>li {
    width: 24%;
    padding: 25px;
    background-image: linear-gradient(0deg, #fff, #f3f5f8), url('../images/service_m_bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 2px solid #fff;
    border-radius: 4px;
    box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1);
}

.service .merit>li:hover {
    background-image: url('../images/service_m_bg.png');
}

.service .merit>li>.t {
    display: flex;
    align-items: center;
}

.service .merit>li>.t>.icon {
    width: 42px;
    margin-right: 10px;
}

.service .merit>li>.t>h4 {
    font-size: 18px;

    font-weight: 500;
    color: #333333;
}

.service .merit>li>p {
    font-size: 16px;

    font-weight: 400;
    color: #97A3B7;
    margin: 10px 0 0 10px;
}

/* 服务之道结束 */


/* 品牌之道开始 */
.brand {
    width: 100%;
    padding: 50px 0 120px;
}

.brand .tab {
    padding: 0 85px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 20px;
}

.brand .tab>a,
.dynamic .tab>a {
    border: 1px solid #E1E1E1;
    padding: 10px 0;
    text-align: center;
    font-size: 16px;

    font-weight: 400;
    color: #3D485D;
    white-space: nowrap;
    transition: 0.3s;
}

.brand .tab>a:hover,
.brand .tab>a.active,
.dynamic .tab>a:hover,
.dynamic .tab>a.active {
    background: #0052D9;
    border-color: transparent;
    color: #FFFFFF;
}

.brand .tab>a.more {
    display: none;
}

.brand .list {
    margin-top: 40px;
}

.brand .list .one {
    display: none;
}

.brand .list .one.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.brand .list .one>li>a {
    display: block;
    position: relative;
}

.brand .list .one>li>a .text {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.brand .list .one>li>a:hover .text {
    background: rgba(0, 0, 0, 0.4);
}

.brand .list .one>li>a .text>h4 {
    font-size: 24px;

    font-weight: 500;
    color: #FFFFFF;
    opacity: 0;
    transition: 0.3s;
}

.brand .list .one>li>a .text>.category {
    font-size: 18px;

    font-weight: 400;
    color: #FFFFFF;
    opacity: 0;
    transition: 0.3s;
    margin-top: 15px;
}

.brand .list .one>li>a:hover .text>h4,
.brand .list .one>li>a:hover .text>.category {
    opacity: 1;
}

/* 品牌之道结束 */


/* 关于我们开始 */
.iAbout {
    width: 100%;
    padding: 60px 0;
    background: url('../images/index_iAbout1.jpg') no-repeat center/cover;
}

.iAbout .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0 45px;
    margin-top: 50px;
}

.iAbout .list>li {
    background-image: linear-gradient(180deg, #FFFFFF, #F7F9FE), url('../images/concentration_one_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 0px 14px 12px 0px #F1F4F9;
    border: 2px solid #FFFFFF;
    padding: 50px;
}

.iAbout .list>li:hover {
    background-image: url('../images/concentration_one_bg.png');
}

.iAbout .list>li .title {
    display: flex;
    align-items: center;
}

.iAbout .list>li .title>.icon {
    width: 30px;
    margin-right: 15px;
}

.iAbout .list>li .title>h4 {
    font-size: 20px;

    font-weight: 500;
    color: #333333;
}

.iAbout .list>li p {
    font-size: 16px;

    font-weight: 400;
    color: #4B5B76;
    margin-top: 15px;
}

/* 关于我们结束 */


/* 优势之道开始 */
.advantage {
    width: 100%;
    padding: 90px 0 110px;
    background: url('../images/advantage_bg.jpg') no-repeat center/cover;
}

.advantage .title>h3,
.advantage .title>p {
    color: #fff;
}

.advantage .num-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 0 40px;
    margin-top: 50px;
}

.advantage .num-list>li {
    text-align: center;
}

.advantage .num-list>li>.num {
    padding: 50px 0;
    background: #fff;
}

.advantage .num-list>li>.num>span {
    font-size: 62px;

    font-weight: 800;
    background: linear-gradient(180deg, #59A3F9 0%, #2552FC 43%, #4452FB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.advantage .num-list>li>.num>span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background-color: #fff;
}

.advantage .num-list>li>.num>sub {
    font-size: 32px;

    font-weight: 800;
    color: #0052D9;
    vertical-align: baseline;
}

.advantage .num-list>li>.desc {
    display: inline-block;
    font-size: 16px;

    font-weight: 400;
    color: #FFFFFF;
    margin-top: 20px;
}

/* 优势之道结束 */


/* 一路同行开始 */
.route-walk {
    width: 100%;
    padding: 80px 0 50px;
}

.route-walk .list-wrapper {
    margin-top: 40px;
}

.route-walk .list-wrapper .swiper-wrapper {
    padding: 30px 0;
}

.route-walk .list-wrapper .swiper-pagination {
    position: static;
    margin-top: 55px;
}

.route-walk .list-wrapper .swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: #97A3B7;
    border: 1px solid transparent;
    transition: 0.3s;
}

.route-walk .list-wrapper .swiper-pagination .swiper-pagination-bullet-active {
    background: transparent;
    border-color: #000000;
}

.route-walk .list-wrapper .swiper-slide>a {
    display: flex;
    padding: 55px 30px 45px;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #F7F9FE 100%), url('../images/route-walk_bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0px 16px 16px 4px rgba(199, 207, 221, 0.2);
    border: 2px solid #FFFFFF;
    min-height: 294px;
}

.route-walk .list-wrapper .swiper-slide>a:hover,
.route-walk .list-wrapper .swiper-slide.swiper-slide-active>a {
    background-image: url('../images/route-walk_bg.png');
}

.route-walk .list-wrapper .swiper-slide>a .icon {
    flex-shrink: 0;
    width: 118px;
    height: 118px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F7F9FE 100%);
    box-shadow: 0px 6px 11px 2px rgba(48, 54, 74, 0.1);
    border: 2px solid #FFFFFF;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.route-walk .list-wrapper .swiper-slide>a .icon>img {
    width:90%;
}

.route-walk .list-wrapper .swiper-slide>a .info {
    padding-top: 35px;
    margin-left: 35px;
    position: relative;
    z-index: 10;
}

.route-walk .list-wrapper .swiper-slide>a .info>p {
    font-size: 16px;

    font-weight: 400;
    color: #4B5B76;
    line-height: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.route-walk .list-wrapper .swiper-slide>a .info>.company {
    text-align: right;
    margin-top: 35px;
}

.route-walk .list-wrapper .swiper-slide>a .info>.company .line {
    display: inline-block;
    width: 54px;
    height: 1px;
    vertical-align: middle;
    background-color: #4B5B76;
    margin-right: 15px;
}

.route-walk .list-wrapper .swiper-slide>a .info>.company>span {
    font-size: 16px;

    font-weight: 400;
    color: #4B5B76;
}

.route-walk .list-wrapper .swiper-slide>a .info>.sl {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 80px;
}

.route-walk .logo-wrapper {
    width: 1710px;
    margin: 20px auto 0;
}

.route-walk .logo-wrapper .swiper {
    height: 280px;
    padding: 15px 30px;
}

.route-walk .logo-wrapper .swiper-slide {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 15px;
}

.route-walk .logo-wrapper .swiper-slide>li {
    box-shadow: 0px 0px 16px 5px rgba(199, 207, 221, 0.15);
    border: 2px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.route-walk .logo-wrapper .swiper-slide>li>img {
    width: 70%;
    transition: 2s;
}

.route-walk .logo-wrapper .swiper-slide>li:hover>img {
    transform: rotateY(360deg);
}

/* 一路同行结束 */


/* 解决方案开始 */
.scheme {
    width: 100%;
    padding: 90px 0 110px;
    background: #F4F7FC;
}

.scheme .list {
    margin-top: 35px;
}

.scheme .list .swiper-slide>a {
    display: block;
    position: relative;
}

.scheme .list .swiper-slide>a::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(24, 31, 41, 0.6) 0%, rgba(217, 217, 217, 0) 100%);
    transition: 0.3s;
}

.scheme .list .swiper-slide>a:hover::after {
    opacity: 0;
}

.scheme .list .swiper-slide>a>h4 {
    position: absolute;
    z-index: 10;
    left: 15px;
    bottom: 15px;
    font-size: 20px;

    font-weight: 500;
    color: #FFFFFF;
    transition: 0.3s;
}

.scheme .list .swiper-slide>a:hover>h4 {
    opacity: 0;
}

.scheme .list .swiper-slide>a>.show {
    position: absolute;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 25px;
    background: rgba(24, 31, 41, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}

.scheme .list .swiper-slide>a>.show>h4 {
    font-size: 20px;

    font-weight: 500;
}

.scheme .list .swiper-slide>a>.show>p {
    font-size: 16px;

    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 2;
    margin-top: 15px;
}

.scheme .list .swiper-slide>a:hover>.show {
    opacity: 1;
}

/* 解决方案结束 */


/* 我们的动态开始 */
.dynamic {
    width: 100%;
    padding: 65px 0; background:#F4F7FC;
}

.dynamic .tab {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.dynamic .tab>a {
    width: 11.5%;
}

.dynamic .tab>a:not(:last-of-type) {
    margin-right: 25px;
}

.dynamic .list {
    margin-top: 40px;
}

.dynamic .list .one {
    display: none;
}

.dynamic .list .one.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 12px 20px;
}

.dynamic .list .one .img-news {
    grid-row-start: 1;
    grid-row-end: 3;
    position: relative;
}

.dynamic .list .one .img-news .time {
    position: absolute;
    left: 20px;
    top: 20px;
    background: #0052D9;
    color: #fff;
    padding: 5px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dynamic .list .one .img-news .time>.date {
    font-size: 32px;

    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
}

.dynamic .list .one .img-news .time>.date::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.dynamic .list .one .img-news .time>.y-m {
    font-size: 14px;

    font-weight: 400;
    margin-top: 5px;
}

.dynamic .list .one .img-news .text {
    width: calc(100% - 40px);
    padding: 15px 20px;
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #FFFFFF;
}


.dynamic .list .one .img-news .text .t {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dynamic .list .one .img-news .text .t>h4 {
    font-size: 18px;

    font-weight: 500;
    color: #333333;
}

.dynamic .list .one .img-news .text .t>span {
    font-size: 28px;
    color: #C1C7D3;
}

.dynamic .list .one .img-news .text>p {
    font-size: 14px;

    font-weight: 400;
    color: #666666;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 10px;
}

.dynamic .list .one .text-news>a {
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(180deg, #FFFFFF 0%, #F7F9FE 100%);
    box-shadow: 0px 5px 16px 4px rgba(199, 207, 221, 0.2);
    border: 2px solid #FFFFFF;
    height: 100%;
}

.dynamic .list .one .text-news>a .info {
    width: 70%;
}

.dynamic .list .one .text-news>a .info>h4 {
    font-size: 16px;

    font-weight: 500;
    color: #333333;
    padding-bottom: 5px;
    position: relative;
}

.dynamic .list .one .text-news>a .info>h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 10%;
    height: 1px;
    background-color: #DFE3EB;
}

.dynamic .list .one .text-news>a .info>p {
    font-size: 14px;

    font-weight: 400;
    color: #666666;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 10px;
}

.dynamic .list .one .text-news>a .info>span {
    display: inline-block;
    font-size: 24px;
    color: #C1C7D3;
    /* margin-top: 10px; */
    transition: 0.3s;
}

.dynamic .list .one .text-news>a:hover .info>span {
    color: #0052D9;
}

.dynamic .list .one .text-news>a .time {
    flex-shrink: 0;
    height: 65px;
    background: #ABABAB;
    color: #fff;
    padding: 0 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}

.dynamic .list .one .text-news>a:hover .time {
    background: #0052D9;
}

.dynamic .list .one .text-news>a .time>.date {
    font-size: 24px;

    font-weight: 500;
    padding-bottom: 2px;
    position: relative;
}

.dynamic .list .one .text-news>a .time>.date::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.dynamic .list .one .text-news>a .time>.y-m {
    font-size: 14px;

    font-weight: 400;
    margin-top: 5px;
}

/* 我们的动态结束 */


@media (max-width:1750px) {

    .route-walk .logo-wrapper {
        width: 100%;
    }
}


@media (max-width:1680px) {
    .iAbout .list>li {
        padding: 35px;
    }

    .banner .swiper-slide .text,
    .banner .swiper-slide .text2 {
        width: 85%;
    }

    .banner .swiper-slide .text2>.num {
        width: 32%;
    }

    .banner .swiper-slide .text2>h2 {
        font-size: 40px;
    }

    .banner .swiper-slide .text2>p {
        margin-top: 30px;
    }

    .banner .swiper-slide .text>h2 {
        font-size: 44px;
    }

    .banner .swiper-slide .text>p {
        margin-top: 40px;
        line-height: 1.5;
    }

    .service .merit {
        width: 85%;
    }

    .route-walk .logo-wrapper {
        width: calc(85% + 60px);
    }

    .banner .swiper-tool>.prev,
    .banner .swiper-tool>.next {
        width: 42px;
        height: 42px;
    }

    .service .merit>li {
        padding: 18px;
    }

    .service .list>li {
        padding: 0 8px 30px;
    }

    .brand .tab {
        padding: 0 60px;
    }

    .route-walk .list-wrapper .swiper-slide>a .icon {
        width: 100px;
        height: 100px;
    }

    .route-walk .list-wrapper .swiper-slide>a .info>.company {
        margin-top: 25px;
    }

    .route-walk .list-wrapper .swiper-slide>a {
        padding: 40px 30px;
    }

    .route-walk .list-wrapper .swiper-pagination {
        margin-top: 40px;
    }

    .scheme .list .swiper-slide>a>.show>p {
        line-height: 1.5;
    }

    .dynamic .list .one .text-news>a .info>h4 {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .dynamic .list .one.active {
        grid-template-columns: repeat(6, 1fr);
    }

    .dynamic .list .one .img-news {
        grid-column-end: span 3;
    }

    .dynamic .list .one .text-news {
        grid-column-end: span 3;
    }

    .dynamic .list .one .text-news>a .info>h4 {
        padding-bottom: 3px;
    }

    .dynamic .list .one .text-news:last-of-type {
        display: none;
    }
}


@media (max-width:1440px) {
    .iAbout .list {
        margin-top: 40px;
    }

    .iAbout .list>li {
        padding: 30px 25px;
    }

    .banner .swiper-slide .text>h2 {
        font-size: 40px;
    }

    .banner .swiper-slide .text>p {
        width: 41%;
        margin-top: 30px;
        font-size: 18px;
    }

    .banner .swiper-slide .text2>h2 {
        width: 30%;
        font-size: 36px;
    }

    .banner .swiper-slide .text2>p {
        width: 30%;
    }

    .banner .swiper-slide .scale {
        width: 60%;
    }

    .service {
        padding: 110px 0 80px;
    }

    .service .title>h3,
    .brand .title>h3,
    .advantage .title>h3,
    .route-walk .title>h3,
    .scheme .title>h3,
    .dynamic .title>h3,
    .iAbout .title>h3 {
        font-size: 28px;
    }

    .service .list>li>.ta>p {
        display: flex;
        flex-direction: column;
    }

    .service .list>li>.ta>p .fg {
        display: none;
    }

    .service .list>li>.more {
        width: 80%;
        height: 40px;
        line-height: 40px;
    }

    .brand {
        padding: 50px 0 80px;
    }

    .brand .tab {
        padding: 0 40px;
        grid-template-columns: repeat(4, 1fr);
    }

    .brand .list .one>li>a .text>h4 {
        font-size: 20px;
    }

    .brand .list .one>li>a .text>.category {
        font-size: 16px;
    }

    .advantage .num-list>li>.num {
        padding: 35px 0;
    }

    .advantage,
    .scheme {
        padding: 80px 0;
    }

    .route-walk .list-wrapper .swiper-slide>a {
        min-height: 220px;
    }

    .route-walk .list-wrapper .swiper-slide>a .info>p,
    .scheme .list .swiper-slide>a>.show>p {
        -webkit-line-clamp: 2;
    }

    .route-walk .list-wrapper .swiper-pagination {
        margin-top: 30px;
    }

    .dynamic .list .one.active {
        grid-template-columns: repeat(3, 1fr);
    }

    .dynamic .list .one .img-news {
        grid-column-end: span 2;
        grid-row-end: span 3;
    }

    .dynamic .list .one .text-news {
        grid-column-end: span 1;
    }

    .dynamic .list .one .text-news>a .info>p {
        margin-top: 6px;
    }

    .iAbout .list>li p {
        font-size: 14px;
    }
}


@media (max-width:1280px) {
    .iAbout .list {
        grid-gap: 0 30px;
    }

    .iAbout .list>li {
        padding: 25px 20px;
    }

    .banner .swiper-slide .text,
    .banner .swiper-slide .text2 {
        width: 92%;
    }

    .banner .swiper-slide .text>h2 {
        font-size: 36px;
    }

    .banner .swiper-slide .text>p {
        width: 42%;
        font-size: 16px;
    }

    .banner .swiper-slide .text2>.num {
        width: 25%;
    }

    .banner .swiper-slide .text2>h2 {
        font-size: 32px;
        margin-top: 10px;
        padding-bottom: 10px;
    }

    .banner .swiper-slide .text2>p {
        margin-top: 20px;
    }

    .banner .swiper-tool>.prev,
    .banner .swiper-tool>.next {
        width: 38px;
        height: 38px;
    }

    .banner .swiper-tool>.line {
        margin: 10px 0;
    }

    .service .merit {
        width: 92%;
    }

    .service .title>h3,
    .brand .title>h3,
    .advantage .title>h3,
    .route-walk .title>h3,
    .scheme .title>h3,
    .dynamic .title>h3,
    .iAbout .title>h3 {
        font-size: 26px;
    }

    .service .list,
    .brand .list,
    .route-walk .list-wrapper,
    .scheme .list,
    .dynamic .list {
        margin-top: 30px;
    }

    .service {
        padding: 110px 0 60px;
    }

    .brand {
        padding: 50px 0 60px;
    }

    .brand .list .one.active {
        grid-gap: 20px;
    }

    .brand .tab {
        padding: 0 30px;
    }

    .advantage,
    .scheme {
        padding: 60px 0;
    }

    .advantage .num-list>li>.num {
        padding: 20px 0;
    }

    .advantage .num-list {
        margin-top: 30px;
        grid-gap: 0 20px;
    }

    .advantage .num-list>li>.num>span {
        font-size: 50px;
    }

    .route-walk {
        padding: 60px 0 50px;
    }

    .route-walk .list-wrapper .swiper-slide>a {
        padding: 20px;
    }

    .route-walk .list-wrapper .swiper-slide>a .info {
        margin-top: 25px;
        margin-left: 25px;
    }

    .dynamic {
        padding: 60px 0;
    }

    .dynamic .list .one.active {
        grid-template-columns: repeat(2, 1fr);
    }

    .dynamic .list .one .img-news {
        grid-column-end: span 2;
    }
}


@media (max-width:1024px) {

    .service .title>h3,
    .brand .title>h3,
    .advantage .title>h3,
    .route-walk .title>h3,
    .scheme .title>h3,
    .dynamic .title>h3,
    .iAbout .title>h3 {
        font-size: 24px;
    }

    .service,
    .brand,
    .advantage,
    .scheme,
    .route-walk,
    .dynamic,
    .iAbout {
        padding: 40px 0;
    }

    .banner .swiper-slide .text2>h2 {
        font-size: 24px;
    }

    .service>.container {
        display: flex;
        flex-direction: column;
    }

    .service .merit {
        position: static;
        transform: translate(0);
        width: 100%;
        order: -1;
    }

    .service .title {
        margin-top: 20px;
    }

    .service .merit>li>.t>h4 {
        font-size: 16px;
    }

    .service .merit>li>p {
        font-size: 14px;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .service .merit>li {
        padding: 10px;
    }

    .service .list>li>.ta>p {
        font-size: 14px;
    }

    .service .list>li>h4 {
        font-size: 18px;
    }

    .service .list>li>.more {
        width: 75%;
        height: 30px;
        line-height: 30px;
        margin: 20px auto 0;
        font-size: 14px;
    }

    .service .list>li {
        padding: 0 8px 20px;
    }

    .service .list>li>.ta {
        margin-top: 15px;
    }

    .brand .tab {
        margin-top: 30px;
    }

    .brand .list .one>li>a .text>h4 {
        font-size: 16px;
    }

    .brand .list .one>li>a .text>.category {
        font-size: 14px;
        margin-top: 5px;
    }

    .advantage .num-list>li>.num {
        padding: 15px 0;
    }

    .advantage .num-list>li>.num>span {
        font-size: 34px;
    }

    .advantage .num-list>li>.desc {
        font-size: 14px;
        margin-top: 15px;
    }

    .advantage .num-list>li>.num>sub {
        font-size: 24px;
    }

    .route-walk .list-wrapper .swiper-slide>a .icon {
        width: 80px;
        height: 80px;
    }

    .route-walk .list-wrapper .swiper-slide>a .icon>img {
        width: 60%;
    }

    .route-walk .list-wrapper .swiper-slide>a .info {
        margin-top: 0;
    }

    .route-walk .list-wrapper .swiper-slide>a .info>.company>span {
        font-size: 14px;
    }

    .route-walk .list-wrapper .swiper-slide>a .info>.company .line {
        width: 35px;
        margin-right: 10px;
    }

    .route-walk .list-wrapper,
    .route-walk .list-wrapper .swiper-pagination {
        margin: 0;
    }

    .route-walk .logo-wrapper .swiper-slide {
        grid-template-columns: repeat(5, 1fr);
    }

    .route-walk .logo-wrapper .swiper-slide>li:nth-child(6) {
        display: none;
    }

    .route-walk .logo-wrapper .swiper {
        height: 180px;
        padding: 6px 20px;
    }

    .route-walk .logo-wrapper .swiper-slide>li {
        box-shadow: 0px 0px 5px 2px rgba(199, 207, 221, 0.15);
    }

    .scheme .list .swiper-slide>a>h4,
    .scheme .list .swiper-slide>a>.show>h4,
    .dynamic .list .one .img-news .text .t>h4 {
        font-size: 16px;
    }

    .scheme .list .swiper-slide>a>.show>p {
        font-size: 14px;
        margin-top: 10px;
    }

    .dynamic .tab>a {
        width: 18%;
    }

    .iAbout .list {
        grid-gap: 0 20px;
    }

    .iAbout .title>p {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .iAbout .list>li .title>.icon {
        margin-right: 10px;
    }

    .iAbout .list>li .title>h4 {
        font-size: 16px;
    }

    .iAbout .list>li {
        padding: 20px 15px;
    }
}


@media (max-width:768px) {
    .banner .swiper-slide .text>h2 {
        font-size: 28px;
    }

    .banner .swiper-slide .text>p {
        width: 50%;
        margin-top: 20px;
    }

    .banner .swiper-slide .text2>h2 {
        font-size: 22px;
    }

    .banner .swiper-slide .text2>p {
        margin-top: 10px;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .banner .swiper-tool>.prev,
    .banner .swiper-tool>.next {
        width: 30px;
        height: 30px;
    }

    .banner .swiper-tool>.prev>span,
    .banner .swiper-tool>.next>span {
        font-size: 18px;
    }

    .banner .swiper-tool>.line {
        height: 30px;
    }

    .service .merit>li>p {
        margin: 10px 0 0 0;
    }

    .service .list {
        flex-wrap: wrap;
    }

    .service .list>li {
        width: 31%;
    }

    .service .list>li>h4 {
        font-size: 16px;
    }

    .brand .list .one.active {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage .num-list>li>.num>span {
        font-size: 30px;
    }

    .advantage .num-list>li>.num>span::after {
        height: 2px;
    }

    .advantage .num-list>li>.num {
        padding: 10px 0;
    }

    .advantage .num-list>li>.num>sub {
        font-size: 20px;
    }

    .route-walk .logo-wrapper .swiper {
        height: 150px;
    }

    .dynamic .list .one .img-news .time>.date {
        font-size: 26px;
    }

    .dynamic .list .one .img-news .time {
        padding: 5px 10px;
    }
}


@media (max-width:600px) {

    .service .title>h3,
    .brand .title>h3,
    .advantage .title>h3,
    .route-walk .title>h3,
    .scheme .title>h3,
    .dynamic .title>h3,
    .iAbout .title>h3 {
        font-size: 22px;
    }

    .service .title>p,
    .brand .title>p,
    .advantage .title>p,
    .route-walk .title>p,
    .scheme .title>p,
    .dynamic .title>p,
    .iAbout .title>p {
        font-size: 14px;
    }

    .banner .swiper-slide .text>h2 {
        font-size: 24px;
    }

    .banner .swiper-slide .text>p {
        margin-top: 10px;
        font-size: 14px;
        width: 52%;
    }

    .banner .swiper-slide .text2>p {
        display: none;
    }

    .banner .swiper-slide .text2>h2 {
        font-size: 18px;
    }

    .service .merit {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .service .merit>li {
        width: 100%;
    }

    .brand .tab>a,
    .dynamic .tab>a {
        font-size: 14px;
    }

    .brand .tab {
        grid-gap: 15px;
    }

    .advantage .num-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .advantage .num-list {
        grid-gap: 20px;
    }

    .route-walk .logo-wrapper .swiper-slide {
        grid-template-columns: repeat(4, 1fr);
    }

    .route-walk .logo-wrapper .swiper-slide>li:nth-child(5) {
        display: none;
    }

    .route-walk .logo-wrapper .swiper {
        height: 140px;
    }

    .route-walk .list-wrapper .swiper-slide>a .info>.sl {
        width: 60px;
    }

    .dynamic .tab>a:not(:last-of-type) {
        margin-right: 15px;
    }

    .dynamic .tab>a {
        width: 20%;
    }

    .dynamic .list .one .img-news .text {
        padding: 10px 15px;
    }

    .dynamic .list .one.active {
        grid-template-columns: repeat(1, 1fr);
    }

    .dynamic .list .one .img-news {
        grid-column-end: span 1;
        grid-row-end: span 1;
    }

    .iAbout .list {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px 0;
    }
}


@media (max-width:480px) {
    .banner {
        height: auto;
    }

    .banner .swiper-slide .text>h2 {
        font-size: 18px;
    }

    .banner .swiper-slide .text>p {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .banner .swiper-slide .text2>h2 {
        font-size: 12px;
    }

    .banner .swiper-tool>.prev,
    .banner .swiper-tool>.next,
    .banner .swiper-tool>.line {
        display: none;
    }

    .banner .swiper-tool {
        flex-direction: row;
        top: 80%;
        right: 5%;
    }

    .banner .swiper-tool>.current-num {
        font-size: 22px;
    }

    .banner .swiper-tool>.current-num::after {
        content: '';
        display: inline-block;
        width: 1px;
        height: 14px;
        background-color: #afafaf;
        transform: rotateZ(30deg);
        margin: 0 6px;
    }

    .service .merit {
        grid-gap: 15px;
    }

    .service .list>li {
        width: 46%;
    }

    .brand .tab {
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }

    .brand .tab>a.more {
        display: block;
    }

    .brand .list .one.active {
        grid-template-columns: repeat(1, 1fr);
    }

    .advantage .num-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .route-walk .list-wrapper .swiper-slide>a {
        flex-direction: column;
    }

    .route-walk .list-wrapper .swiper-slide>a .info {
        margin: 20px 0 0;
        padding: 0;
    }

    .route-walk .list-wrapper .swiper-slide>a .info>.company {
        margin-top: 15px;
    }

    .route-walk .logo-wrapper .swiper {
        height: 110px;
    }

    .route-walk .logo-wrapper .swiper-slide {
        grid-gap: 10px;
    }

    .route-walk .logo-wrapper .swiper-slide>li>img {
        width: 80%;
    }

    .dynamic .tab>a:not(:last-of-type) {
        margin: 0;
    }

    .dynamic .tab {
        justify-content: space-between;
    }

    .dynamic .tab>a {
        width: 48%;
    }

    .dynamic .list .one .img-news .text .t>h4 {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .dynamic .list .one .img-news .text>p {
        -webkit-line-clamp: 1;
    }

    .dynamic .list .one .img-news .time {
        flex-direction: row;
        top: 10px;
    }

    .dynamic .list .one .img-news .time>.date::after {
        display: none;
    }

    .dynamic .list .one .img-news .time>.date {
        padding: 0;
        font-size: 22px;
        margin-right: 5px;
    }

    .route-walk .logo-wrapper {
        width: 100%;
    }
}


@media (max-width:414px) {
    .service .merit>li>p {
        font-size: 12px;
    }
}