
body{
    padding: 0;
    margin: 0;
    font-size: 14px;
    background-color: #F7F8F9;
}
a{
    transition: color .2s;
}
a:hover{
    text-decoration: none;
    color: #36639e;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.nowrap {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.ellipsis{
    max-width: 100%;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* 首页背景图 */
.background-cover{
    background-position: top center;
    background-size: cover;
}

/* 首页联系我们*/
.index-contact{
    padding: 56px 0;
    background: white;
}
.index-contact-title{
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 32px;
}

.index-contact-from{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.index-contact-inputs{
    width: 100%;
    padding: 15px 0;
    box-sizing: border-box;
}

.index-contact-inputs label{
    display: block;
    font-size: 16px;
    font-weight: normal;
    color: #555;
}

.index-contact-inputs label> span{
    color: #ce000b;
}

.index-contact-inputs input{
    background: #f8f8f8;
    border: none;
    outline:none;
    transition: all .2s;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
    line-height: 50px;
}

.index-contact-inputs textarea{
    background: #f8f8f8;
    border: none;
    outline:none;
    transition: all .2s;
    width: 100%;
    margin: 0;
    padding: 15px 20px;
    resize:none;
    height: 150px;
}

.index-contact-inputs input,
.index-contact-inputs textarea{
    font-size: 16px;
}

.index-contact-inputs textarea:hover,
.index-contact-inputs textarea:focus,
.index-contact-inputs input:hover,
.index-contact-inputs input:focus{
    background: #f1f1f1;
}

.index-contact-btn{
    text-align: center;
    width: 100%;
    padding: 15px 0;
}

.index-contact-btn button{
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0;
    margin: 0;
    border: none;
    background: #36639e;
    color: white;
    font-size: 16px;
    font-weight: 400;
    transition: all .2s;
}

.index-contact-btn button:hover{
    background: #265694;
}

/* header */
.header{
    width: 100%;
    background: white;
    box-shadow: 0 0 10px 10px rgba(37, 43, 58, .05);
    position: relative;
    z-index: 20;
    padding: 20px 0;
}

.details-header{
    box-shadow: none;
    border-bottom: solid 1px #ddd;
}

.header-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img{
    width: 148px;
}

.phoen-nav{
    width: 42px;
    height: 32px;
    line-height: 32px;
    border-radius: 5px;
    border: solid 1px #ddd;
    text-align: center;
    font-size: 16px;
    color: #555;
}

.nav{
    display: none;
}

/* 移动端导航 */
.phone-menu{
    z-index: 19;
    position: absolute;
    top: 95px;
    left: 0;
    right: 0;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    height: 0px;
    overflow: hidden;
    transition: all .2s;
}

.phone-menu{
    text-align: center;
    line-height: 40px;
}

.phone-menu.show-menu{
    position: fixed;
    height: calc(100vh - 95px);
}

.phone-menu-nav{
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.phone-menu-nav a{
    border-bottom: solid 1px #ddd;
    font-weight: bold;
    color: #333;
    font-size: 18px;
    line-height: 60px;
}

.phone-menu-nav a:last-child{
    border: none;
}

.phone-menu-nav a.active{
    color: #265694;
}

.phone-menu-code{
    text-align: center;
    padding-bottom: 42px;
}

.phone-menu-code p{
    margin: 0;
}

.phone-menu-code span{
    background: white;
    display: inline-block;
    width: 100px;
    font-weight: bold;
    color: #265694;
    font-size: 14px;
}

.phone-menu-code img{
    width: 100px;
    height: 100px;
    vertical-align: top;
}

/* banner */
.banner{
    background-color: white;
    padding-top: 100%;
    position: relative;
}

.banner-swiper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-swiper-pagination{
    z-index: 2;
}

.banner-swiper-pagination > .swiper-pagination-bullet-active{
    background: #265694;
}

.banner-src{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
}

.banner-content{
    width: 90%;
    margin-left: 5%;
    color: white;
}

.banner-content-title{
    font-weight: 400;
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 15px;
    text-align: center;
}

.banner-content-submit{
    line-height: 38px;
    font-weight: 300;
    text-align: center;
}

.banner-content-more{
    padding-top: 32px;
    text-align: center;
}

.banner-content-more > a{
    display: inline-block;
    background: rgba(255, 255, 255, .9);
    color: #265694;
    width: 150px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
}

/* 首页关于我们 */
.index-about{
    padding: 56px 0;
}

.index-about-title{
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 32px;
}

.index-about-survey{
    padding-bottom: 32px;
    text-align: center;
}

.index-about-number{
    color: #265694;
    font-size: 42px;
    line-height: 50px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
}

.index-about-text{
    color: #333;
    padding-top: 15px;
    font-size:16px;
}

.index-about-content{
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
}
/* 首页分公司 */
.index-child{
    padding: 50px 0;
    background: white;
}
.index-child-flex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.index-child-content{
    width: 100%;
    box-sizing: border-box;
}
.index-child-content h4{
    font-size: 28px;
    line-height: 50px;
    font-weight: normal;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}
.index-child-span{
    text-align: center;
}
.index-child-span span{
    color: gray;
    margin-right: 10px;
    display: inline-block;
    line-height: 30px;
    font-size: 16px;
    width: calc((100% - 20px)/2);
    float: left;
}
.index-child-cover{
    width: 100%;
    padding-top: 100%;
    background-position: center;
    background-size: cover;
}

/* 首页五项服务 */
.index-service{
    background-image: url(../img/index_back.jpg);
    background-size: cover;
    padding: 56px 0;
    color: white;
}

.index-service-title{
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 32px;
}

.index-service-flex{
    display: flex;
    flex-direction: column;
}

.index-service-item{
    /* width: 20%; */
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.index-service-item:last-child{
    margin-bottom: 0;
}

.index-service-icon{
    width: 88px;
    margin-bottom: 15px;
}

/* 业务介绍 */
.index-business{
    padding: 56px 0 100px;
}

.index-business-title{
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 32px;
}

.index-business-swiper{
    position: relative;
}

.index-business-swiper > .swiper{
    overflow: hidden;
}

.index-business-item{
    background: rgba(38, 86, 148, .04);
    padding: 30px;
    box-sizing: border-box;
    transition: all .6s;
}

.index-business-no{
    color: #265694;
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 15px;
}

.index-business-name{
    font-size: 20px;
    padding-bottom: 15px;
}

.index-business-text{
    font-size: 14px;
    color: gray;
    line-height: 25px;
    height: 150px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.index-business-more{
    line-height: 40px;
    padding-top: 32px;
}

.index-business-more a{
    color: #265694;
    font-weight: bold;
}

.index-business-more a > span{
    margin-left:4px;
    margin-top: -3px;
    vertical-align: middle;
    transition: all .2s;
}

.index-business-more a:hover > span{
    margin-left: 8px;
}

.index-business-item:hover{
    background: #265694;
}

.index-business-item:hover > .index-business-no,
.index-business-item:hover > .index-business-name,
.index-business-item:hover > .index-business-more a{
    color: white;
}

.index-business-item:hover > .index-business-text {
    color: rgba(255, 255, 255, .7);
}

.index-business-swiper-prev{
    top: 100%;
    margin-top: 20px;
    background-color: rgba(38, 86, 148, .04);
    width: 44px;
    background-size: 16px;
    left: -0px;
    background-image: url(../img/swiper_prev.svg);
}

.index-business-swiper-next{
    top: 100%;
    margin-top: 20px;
    background-color: rgba(38, 86, 148, .04);
    width: 44px;
    background-size: 16px;
    right: -0px;
    background-image: url(../img/swiper_next.svg);
}

/* 业务案例 */
.index-case{
    background: white;
    padding: 56px 0;
}

.index-case-title{
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 32px;
}

.index-case-item{
    background: #F7F8F9;
    margin-bottom: 25px;
    box-sizing: border-box;
}

.index-case-item a{
    display: block;
    padding: 30px;
    border:solid 1px #F7F8F9;
    transition: all .3s;
    box-sizing: border-box;
}

.index-case-item a .index-case-item-title{
    color: #333;
}

.index-case-item a:hover{
    border-color: #265694;
}

.index-case-item a:hover .index-case-item-title{
    color: #265694;
}

.index-case-item-logo{
    height: 60px;
    text-align: center;
}

.index-case-item-logo > img{
    width: auto;
    height: 60px;
    vertical-align: top;
}

.index-case-item-title{
    text-align: center;
    font-size: 20px;
    line-height: 40px;
    height: 40px;
    margin: 15px 0 0;
    font-weight: 400;
}

.index-case-item-submit{
    line-height: 24px;
    height: 48px;
    text-align: justify;
    color: gray;
    font-size: 14px;
}

/* 最新资讯 */
.index-news{
    padding: 56px 0;
}

.index-news-title{
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 32px;
}

.index-news-block{
    background-color: white;
    padding: 32px;
    margin: 15px 0;
}

.index-news-date{
    padding-bottom: 32px;
}

.index-news-date-day{
    font-size: 32px;
    line-height: 40px;
}

.index-news-date-year{
    font-size: 16px;
    color: gray;
    font-weight: 300;
}

.index-news-submit{
    font-size: 20px;
    padding-bottom: 15px;
}

.index-news-content{
    font-size: 14px;
    line-height: 24px;
    min-height: 72px;
    text-align: justify;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.index-news-more{
    line-height: 40px;
    padding-top: 32px;
}

.index-news-more a{
    color: #265694;
    font-weight: bold;
}

.index-news-more a > span{
    margin-left:4px;
    margin-top: -3px;
    vertical-align: middle;
    transition: all .2s;
}

.index-news-more a:hover > span{
    margin-left: 8px;
}

/* 世拓荣誉 */
.index-honor{
    padding: 56px 0;
    background: white;
}

.index-honor-title{
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 32px;
}

.index-honor-block{
    background: #F7F8F9;
    display: flex;
    flex-direction: column;
    border-top: solid 4px #265694;
}

.index-honor-cover{
    background-color: white;
    padding-top: 80%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* border-bottom: solid 1px #265694; */
}

.index-honor-content{
    padding: 32px;
}

.index-honor-content-title{
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    margin-bottom: 15px;
}

.index-honor-content-title a{
    color: #333;
}

.index-honor-content-title a:hover{
    color: #265694;
}

.index-honor-content-text{
    font-size: 14px;
    line-height: 25px;
    color: gray;
    height: 75px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.index-honor-row > .index-honor-item{
    margin-bottom: 20px;
}

.index-honor-row > .index-honor-item:last-child{
    margin-bottom: 0;
}

/* 二级页面公用 */
.banner-mini{
    background: white;
    /* padding-top: 15%; */
    padding-top: 40%;
    background-position: center;
    background-size: cover;
}

.vice-nav{
    background-color: white;
}

.vice-nav-flex{
    line-height: 70px;
    text-align: center;
}

.vice-nav-flex a{
    color: #333;
    font-size: 16px;
    margin: 0 8px;
    box-sizing: border-box;
    height: 70px;
}

.vice-nav-flex a.active,
.vice-nav-flex a:hover{
    color: #265694;
    border-bottom: solid 2px #265694;
    display: inline-block;
}

.vice-block{
    padding: 56px 0;
}

.vice-title{
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 32px;
}

/* 关于我们 - 发展历程 */

.about-idea-item{
    padding-bottom: 20px;
}

.about-idea-item h4{
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #265694;
}

.about-idea-item p{
    margin: 0;
    line-height: 25px;
    color: #333;
}

.about-axis{
    position: relative;
    padding-top: 32px;
    padding-bottom: 32px;
}

.about-axis::after,
.about-axis::before{
    content: " ";
    position: absolute;
    top: 0;
}

.about-axis::before{
    background: #ddd;
    height: 100%;
    /* left: 50%; */
    left: 0%;
    width: 1px;
}

.about-axis::after{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ddd;
    /* left: 50%; */
    left: 0%;
    margin-left: -7px;
}

.about-axis-item{
    display: flex;
    position: relative;
    /* margin-top: -100px; */
    margin-top: 20px;
    flex-direction: row-reverse;
}

.about-axis-item:first-child{
    margin-top: 0;
}

.about-axis-item::before{
    content: " ";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ddd;
    top: 50%;
    /* left: 50%; */
    left: 0;
    margin-top: -4px;
    margin-left: -4px;
}

/* .about-axis-item:nth-child(even){
    flex-direction: row-reverse;
} */

.about-axis-block{
    /* width: calc(50% - 32px); */
    width: calc(100% - 32px);
    background: white;
    padding: 32px;
}

.about-axis-time{
    border-bottom: solid 1px #265694;
    line-height: 40px;
    color: gray;
    height: 50px;
}

.about-axis-time b{
    font-size: 24px;
    color: #265694;
    font-family: Arial, Helvetica, sans-serif;
    padding-right: 5px;
}

.about-axis-title{
    font-size: 20px;
    margin-top: 15px;
    line-height: 40px;
    height: 40px;
}

.about-axis-text{
    color: #333;
    line-height: 25px;
    min-height: 50px;
}

/* 关于我们 */
.about-content-title{
    font-weight: bold;
    padding-bottom: 32px;
    font-size: 20px;
}
.about-content-text{
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 20px;
}
.about-content-cover{
    background-color: #e2e2e2;
    background-position: center;
    background-size: cover;
    padding-top: 70%;
    width: 100%;
    margin-bottom: 20px;
}

/* 合作院校 */
.partner-blcok{
    background: white;
    padding: 32px;
    border-bottom: solid 2px #265694;
    margin: 15px 0;
    text-align: center;
}

.partner-blcok-logo{
    margin-bottom: 15px;
}

.partner-blcok-logo img{
    height: 60px;
    vertical-align: top;
}

.partner-blcok-title{
    font-size: 20px;
    color: #265694;
    /* margin-bottom: 15px; */
}

.partner-blcok-text{
    line-height: 25px;
    height: 100px;
    color: gray;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

/* 经典案例 */
.case-tab{
    padding-bottom: 32px;
    text-align: center;
}

.case-tab a{
    display: inline-block;
    margin: 10px 15px;
    /* margin: 0 15px; */
    background-color: white;
    line-height: 45px;
    padding: 0 32px;
    border-radius: 25px;
    border:solid 1px #ddd;
    color: gray;
    transition: all .3s;
}

.case-tab a:hover,
.case-tab a.active{
    color: white;
    background-color: #265694;
    border-color: #265694;
}

.vice-case{
    background-color: white;
}

/* 新闻资讯 */
.news-block{
    margin-bottom: 30px;
}

/* 团队 */
.team-block{
    padding: 15px 0;
}

.team-block a{
    color: #333;
    display: block;
    background: white;
    border-bottom: solid 2px #ddd;
    transition: all .3s;
}

.team-block a:hover{
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, .05);
    border-color: #265694;
}

.team-phone{
    width: 100%;
    padding-top: 70%;
    background-color: #F7F8F9;
    background-position: center;
    background-size: cover;
}

.team-info{
    padding: 32px;
}

.team-info-nick{
    font-size: 20px;
    line-height: 40px;
    height: 40px;
    color: #265694;
}

.team-info-job{
    line-height: 40px;
    height: 40px;
    margin-bottom: 15px;
    color: gray;
}

.team-info-text{
    line-height: 25px;
    /*min-height: 100px;*/
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

/* 业务领域 */
.business-block{
    padding: 15px 0;
}

.business-block a{
    background: white;
    color: #333;
    display: block;
    background: white;
    border-bottom: solid 2px #ddd;
    transition: all .3s;
}

.business-block a:hover{
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, .05);
    border-color: #265694;
}

.business-phone{
    width: 100%;
    padding-top: 50%;
    background-color: #F7F8F9;
    background-position: center;
    background-size: cover;
}

.business-info{
    padding: 32px;
}

.business-left{
    /* border-right: solid 2px #ddd; */
    /* padding-right: 32px; */
    border-bottom: solid 1px #ddd;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.business-left-number{
    font-weight: bold;
    font-size: 30px;
    line-height: 40px;
    color: #265694;
    margin: 0 0 5px 0;
    font-family: Arial, Helvetica, sans-serif;
}

.business-left-title{
    font-size: 20px;
}

.business-text{
    line-height: 25px;
    height: 150px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

/* 联系我们 */
.contact-info{
    background-color: white;
    padding: 32px 0;
    margin: 0;
}

.border-right{
    border-bottom: solid 1px #ddd;
}

.contact-info-block{
    padding: 32px;
    box-sizing: border-box;
    text-align: center;
    background-color: white;
}

.contact-info-title{
    font-size: 20px;
    margin-bottom: 15px;
    color: gray;
}

.contact-info-value{
    min-height: 75px;
    line-height: 25px;
    font-size: 16px;
    font-weight: bold;
    color: #265694;
    word-break: break-all;
}

.contact-info-icons{
    text-align: center;
}

.contact-info-icons img{
    width: 58px;
    vertical-align: top;
    margin-bottom: 15px;
}

.contact-submit{
    padding-top: 56px;
}

.contact-submit-block{
    background-color: white;
    padding: 32px;
    border-bottom: solid 2px #265694;
    margin-bottom: 30px;
}

.contact-submit-title{
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-submit-content{
    color: gray;
}

.contact-submit-content p{
    margin: 0 0 10px;
    line-height: 20px;
}

.contact-map{
    margin: 32px 15px 0;
    height: 300px;
    background-size: cover;
    background-position: center;
}

/* 新闻详情 */
.news-titles{
    padding: 56px 0;
    text-align: center;
    border-bottom: solid 1px #ddd;
}

.news-titles h4{
    font-weight: bold;
    font-size: 34px;
    line-height: 50px;
    margin: 0 0 32px;
}

.news-titles p{
    font-size: 16px;
    color: gray;
    margin: 0;
}

.news-richtext{
    margin: 56px 0;
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
}

/* 公司团队详情 */
.team-content{
    padding-top: 56px;
    padding-bottom: 56px;
}

.team-cover{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.team-cover img{
    /* width: 100%; */
    width: 50%;
}

.team-text h4{
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 20px;
    /* text-align: left; */
    text-align: center;
}

.team-text h5{
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 32px;
    /* text-align: left; */
    text-align: center;
}

.team-text-info{
    font-size: 16px;
    color: #555;
    line-height: 30px;
    text-align: justify;
}

/* 业务领域详情 */
.business-titles{
    padding: 56px 0;
    text-align: center;
}

.business-titles h4{
    font-weight: bold;
    font-size: 34px;
    line-height: 50px;
    margin: 0;
}

/* footer */
.footer{
    background: #f3f3f3;
    color: rgba(37, 43, 58, 0.7);
}
.footer-tool{
    padding: 20px 0 0;
}
.footer-copyright{
    padding: 20px 0;
    border-top: solid 1px #e2e2e2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.footer-copyright span{
    text-align: center;
    margin-bottom: 20px;
}
.footer-copyright a{
    color: rgba(37, 43, 58, 0.7);
}
.footer-copyright a:hover{
    color: #36639e;
}

/* 底部关注 */
.footer-focus-title{
    text-align: center;
    padding-bottom: 20px;
}

.footer-focus-title span{
    background: white;
    font-weight: bold;
    line-height: 40px;
    display: inline-block;
    width: 120px;
    border-radius: 10px;
    color: #265694;
}

.footer-focus-qrcode {
    text-align: center;
    padding-bottom: 20px;
}

.footer-focus-qrcode img{
    width: 120px;
    vertical-align: top;
}

/* 底部导航 */
.footer-nav{
    display: none;
    flex-wrap: wrap;
}

.footer-nav-ul{
    width: 20%;
}

.footer-nav-ul li{
    text-align: center;
    box-sizing: border-box;
}

.footer-nav-ul a{
    display: inline-block;
    color: rgba(37, 43, 58, 0.7);
    line-height: 40px;
}

.footer-nav-ul a:hover{
    color: #265694;
}

.footer-nav-title{
    font-weight: bold;
    color: #333;
    font-size: 14px;
    line-height: 40px;
}

/* 768 */
@media (min-width: 768px) {
    /* header */
    .logo img{
        width: 160px;
    }
    
    .phoen-nav{
        display: none;
    }

    .nav{
        line-height: 60px;
        display: block;
    }
    
    .nav > a{
        margin-left: 25px;
        font-size: 16px;
        color: #333;
        position: relative;
        display: inline-block;
    }
    
    .nav > a::after{
        height: 2px;
        background: #265694;
        content: " ";
        width: 0%;
        position: absolute;
        bottom: 0;
        left: 50%;
        transition: all .3s;
    }
    
    .nav > a.active,
    .nav > a:hover{
        color: #265694;
    }
    
    .nav > a:hover::after{
        width: 100%;
        left: 0;
    }
    /* 首页分公司 */
    .index-child-flex{
        flex-direction: row;
    }
    .index-child-content{
        width: 60%;
        padding-right: 50px;
    }
    .index-child-content h4{
        font-size: 32px;
        text-align: left;
    }
    .index-child-span{
        text-align: left;
    }
    .index-child-cover{
        width: 40%;
        padding-top: 40%;
    }


    /* 首页五项服务 */
    .index-service-flex{
        flex-direction: row;
    }
    
    .index-service-item{
        width: 20%;
        margin: 0;
    }

    /* 首页世拓荣誉 */
    .index-honor-cover{
        border-bottom: solid 1px #265694;
    }

    .index-honor-row > .index-honor-item{
        margin: 0;
    }

    /*.index-honor-row > .index-honor-item:nth-child(2) > .index-honor-block{
        flex-direction: column-reverse;
        border-top: none;
    }

    .index-honor-row > .index-honor-item:nth-child(2) .index-honor-content{
        border-bottom: solid 4px #265694;
    }*/
    /* 首页联系我们 */
    .index-contact-btn button{
        width: 400px;
    }
    /* footer */
    .footer-tool{
        padding: 20px 0;
    }
    /* 底部关注 */
    .footer-focus-title{
        margin: 0;
        border-bottom: 0;
    }
    /* 底部导航 */
    .footer-nav{
        display: flex;
        flex-wrap: wrap;
        border-left: solid 1px #ddd;
    }
    /* banner */
    .banner{
        background-color: white;
        padding-top: 38%;
        position: relative;
    }
    /* 二级页面公用 */
    .banner-mini{
        padding-top: 30%;
    }
    /* 二级导航 */
    .vice-nav-flex{
        text-align: left;
    }
    .vice-nav-flex a{
        margin: 0 0 0 32px;
    }
    /* 关于我们 */
    .about-content-text{
        margin-bottom: 0;
    }
    .about-content-cover{
        margin-bottom: 0;
    }
    /* 成功案例 */
    .case-tab a{
        margin: 0 15px;
        /* padding: 0 32px; */
        padding: 0 20px;
    }
    /* 联系我们 */
    .contact-add{
        min-height: 40px;
    }
    /* 新闻资讯 */
    .none-768{
        display: none;
    }
    /* 公司团队详情 */
    .team-cover img{
        width: 100%;
    }
    
    .team-text h4{
        text-align: left;
    }
    
    .team-text h5{
        text-align: left;
    }
}

/* 992 */
@media (min-width: 992px){
    /* header */
    .logo img{
        width: 210px;
    }

    .nav{
        line-height: 80px;
    }
    
    .nav > a{
        margin-left: 30px;
    }

    /* 首页世拓服务 */
    .index-business-swiper-prev{
        top: 50%;
        margin-top: -22px;
        background-color: transparent;
        width: 44px;
        background-size: 26px;
        left: -50px;
    }
    
    .index-business-swiper-next{
        top: 50%;
        margin-top: -22px;
        background-color: transparent;
        width: 44px;
        background-size: 26px;
        right: -50px;
    }
    /* 首页联系我们 */
    .index-contact-inputs{
        width: 50%;
        padding: 15px 20px;
    }
    .index-contact-textarea{
        width: 100%;
    }
    /* footer */
    .footer-tool{
        padding: 20px 0;
    }
    .footer-copyright{
        display: flex;
        flex-direction: row;
    }
    .footer-copyright span{
        text-align: left;
        margin-bottom: 0;
    }
    /* 底部导航 */
    .footer-nav{
        padding-left: 32px;
    }
    .footer-nav-ul li{
        padding-left: 32px;
    }
    /* banner */
    .banner-content{
        width: 50%;
        margin-left: 15%;
    }
    
    .banner-content-title{
        font-size: 38px;
        line-height: 50px;
        text-align: left;
    }
    
    .banner-content-submit{
        text-align: left;
        font-size: 18px;
    }
    
    .banner-content-more{
        padding-top: 32px;
        text-align: left;
    }
    
    .banner-content-more > a{
        width: 200px;
        line-height: 50px;
    }
    /* 关于我们 - 发展历程 */
    .about-axis::before{
        left: 50%;
    }
    
    .about-axis::after{
        left: 50%;
    }
    
    .about-axis-item{
        margin-top: -100px;
        flex-direction: row;
    }
    
    .about-axis-item::before{
        left: 50%;
    }
    
    .about-axis-item:nth-child(even){
        flex-direction: row-reverse;
    }
    
    .about-axis-block{
        width: calc(50% - 32px);
    }
    /* 业务领域 */
    .business-left{
        border-right: solid 2px #ddd;
        padding-right: 20px;
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    /* 成功案例 */
    .case-tab a{
        padding: 0 32px;
    }
    /* 联系我们 */
    .border-right{
        border-right: solid 1px #ddd;
        border-bottom: none;
    }
    /* 新闻资讯 */
    .none-768{
        display: block;
    }
    /* 二级页面banner图 */
    .banner-mini{
        padding-top: 20%;
    }
}

/* 1200 */
@media (min-width: 1200px){
    /* header */
    .nav > a{
        margin-left: 40px;
    }
    /* 首页新闻资讯 */
    .index-news-block-item:last-child{
        /*display: none;*/
    }
    /* banner */
    .banner-content{
        width: 40%;
    }
    /* 业务领域 */
    .business-left{
        padding-right: 32px;
    }
    /* 二级页面banner图 */
    .banner-mini{
        padding-top: 15%;
    }
}

.form-group{margin-bottom: auto;}
.msg-box .n-msg{color: #c33; font-size: 12px;}