@charset "utf-8";

/* CSS Document */

body {
    color:#333;
    margin: 0 auto;
    font-size: 16px;
}

*{
    padding: 0;
    margin: 0;
}

ul li{
    list-style: none;
    padding: 0;
    margin: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img{border:none;}

a{
    text-decoration: none;
    color:#333;
}

a:hover{
    text-decoration: none;
    color:#333;
}

/* 去掉 table cell 的边距并让其边重合 */

table { border-collapse:collapse;border-spacing:0;}

/* ie bug：th 不继承 text-align */

th {text-align:inherit;}

/* 去掉 firefox 下此元素的边框 */

abbr,acronym {border:none;font-variant:normal;}

textarea {  -webkit-appearance: none;}

.img-width-50{
    width: 50px;
}

.width-30{
    width: 30%;
}
.width-50{
    width: 50%;
}
.width-60{
    width: 60%;
}
.width-70{
    width: 70%;
}
.width-80{
    width: 80%;
}
.width-100{
    width: 100%;
}
.relative{
    position: relative;
}

.height-10{
    height:10px;
}

.height-20{
    height:20px;
}

.margin-10{
    margin:10px;
}

.margin-left-20{
    margin-left: 20px;
}

.margin-left-10{
    margin-left: 10px;
}

.margin-right-20{
    margin-right:20px;
}

.margin-right-10{
    margin-right:10px;
}

.margin-top-20{
    margin-top: 20px;
}

.margin-top-10{
    margin-top: 10px;
}

.padding-top-10{
    padding-top: 10px;
}

.padding-top-20{
    padding-top: 20px;
}

.padding-left-20{
    padding-left: 20px;
}

.align-center{
    text-align: center;
}

.align-right{
    text-align: right;
}

.ell1{
    display: block;
    white-space: nowrap;
    /*内容超宽后禁止换行显示*/
    overflow: hidden;
    /*超出部分隐藏*/
    text-overflow: ellipsis;
}

.ell2{
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient:vertical;
}

.ell3{
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient:vertical;
}

.font16{
    font-size: 16px;
}

.font14{
    font-size: 14px;
}

.left{
    float: left;
}

.right{
    float: right;
}

.clear{
    clear:both;
}

.white{
    color:#fff;
}

.red_bg{
    background-color: #aa0000;
    color:#fff
}

.yellow{
    color: #f7a001
}

.red{
    color:#aa0000;
}

.blue{
    color:#336699;
}

.gray{
    color:#999
}

.contenter{
    width: 1180px;
    margin: auto;
    padding: 0 15px;
}

.logo{
    width: 320px;
    padding-top: 10px;
}

.logo img{
    width: 80%;
}

.border-top{
    border-top: #eee 1px solid;
}

.border-radius{
    border-radius: 5px;
}

.login_btn{
    text-align: right; border-radius: 10px;
}

.btn-empty{
    border: #ddd 1px solid;
    border-radius: 5px;
}

.btn-right{
    position: absolute;
    right:20px;
    top:2px;
}

.search{
    width: 420px;
    padding-top: 20px;
}

.search input{
    height:35px;
    width: 310px;
    border: #ddd 1px solid;
    border-radius: 5px;
    padding-left: 10px;
}

.search .fa-search{
    color: #aaa;
    top:20px;
    left:360px;
}

.bshare-custom{
    text-align: right; cursor: pointer
}

.site_tel{
    padding-top: 13px;
}

.d-flex{
    display: flex;
}

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

.top_nav{
    height: 96px;
    min-width: 800px;
    padding-top: 20px;
}

.top_nav ul{
    margin: auto;
}


.top_nav ul li{
    cursor: pointer;
    padding-top: 20px;
    text-align: center;
    float: left;
}

.nav_active a{
    color: #fff;
    background-color: #2d5da5;
    border-radius: 5px;
    padding: 5px 20px;
}

.sub_nav{
    position: absolute;
    width: 220px;
    padding: 10px;
    z-index: 999;
    background-color: #fff;
    color: #333;
    right:-30px;
    top:50px;
}

.sub_nav a{
    display: inline-block;
    padding: 5px;
}

.swiper1{
    min-width: 1180px;
}

.slide1 img{
    width: 100%;
    min-width: 1180px;
}

.title_h3{
    text-align: center;
}

.title_h3 h3{
    font-weight: 500;
    font-size: 3rem;
}

.title_h3 p{
    font-size: 1.3rem;
    color: #999;
}

.index_new_tab{
    display: flex;
    justify-content: center;
}

.index_new_tab li{
    margin-top: 20px;
    margin-bottom: 20px;
}

.index_new_tab li a{
    display: block;
    border: #ddd 1px solid;
    padding: 5px 30px;
}

.index_new_tab li.active a{
    border: #1E6AAC 1px solid;
    color:  #1E6AAC;
}

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

.pro_list li{
    width: 31%;
    height: auto;
    margin-top: 20px;
}

.pro_list li .proimg{
    width: 100%;
    height: 30rem;
    border-radius: 5px;
    overflow: hidden;
}

.proimg img{
    border-radius: 5px;
}

.animation img{
    width: 100%;
    height: 100%;
    transition: all .6s;
}
.animation:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    z-index: 555;
}

.pro_list li p{
    text-align: center;
    padding: 10px;
}

.pro_advan{
    width: 100%;
    min-width: 1180px;
    height: 70rem;
    background-image: url('../images/advan.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.case_list{
    width: 1180px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}

.case_list li{
    width: 20%;
    text-align: center;
    padding: 10px 0px;
}

.case_list li img{
    width: 90%;
    border: #eee 1px solid;
}

.page_banner{
    padding-bottom: 20px;
}

.page_banner img{
    width: 100%;
}

.links{
    font-size: 1.3rem;
}

.page_list li{
    float: left;
    width: 32%;
    margin-top: 10px;
    margin-bottom: 15px;
}

.page_list2 li{
    float: left;
    width: 23%;
    margin-top: 10px;
    margin-bottom: 15px;
}

.mr30{
    margin-right: 2%;
}

.pro_image{
    width: 100%;
    height: 25rem;
    overflow: hidden;
    border: #eee 1px solid;
}

.pro_image img{
    width: 100%;
    height: 100%;
}

.pro_image2{
    width: 100%;
    height: 12rem;
    overflow: hidden;
    border: #eee 1px solid;
}

.pro_image2 img{
    width: 100%;
    height: 100%;
}

.pro_name{
    text-align: center;
    padding: 10px 0px;
    background-image: linear-gradient(to right, #2B9AFA, #1E6AAC);
}

.pro_name a{
    color: #fff;
}

.pro_box{
    padding: 20px 0px;
}

.pro_left{
    width: 40%;
    overflow: hidden;
}

.pro_left img{
    width: 100%;
}

.pro_right{
    width: 58%;
}

.pro_right span{
    padding: 10px 50px;
}

.pro_right p{
    color: #aaa;
}

.pro_btn_box{
    padding-top: 60px;
}

.pro_btn_box a{
    color: #fff;
}

.pro_btn_box span{
    color: #fff;
}

.online_btn{
    background-image: linear-gradient(to right, #2B9AFA, #1E6AAC);
}

.online_tel{
    background-color: #fc9d05;
}

.pro_tab_ul li{
    width: 25%;
    padding: 10px 0px;
    position: relative;
}

.pro_tab_ul li a{
    display: block;
    text-align: center;
    border-top: #ddd 1px solid;
    border-right: #ddd 1px solid;
    border-bottom: #ddd 1px solid;
    padding: 10px 0px;
}

.pro_tab_ul li:first-child a{
    border-left: #ddd 1px solid;
}

.pro_tab_ul li.active a{
    background-color: #2D5EA5;
    color: #fff;
}

.triangle{
    display: block;
    width: 0px;
    height: 0px;
    border-top: 10px solid #2D5EA5;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid transparent;
    text-align: center;
    position: absolute;
    color: #2D5EA5;
    left: 45%;
    bottom: -5px;
}

.pro_content{
    padding-top: 20px;
}

.pro_content table{
    margin-bottom: 10px;
}

.message_box{
    background-color: #eee;
    padding-top: 10px;
    padding-bottom: 30px;
}

.pro_form_box{
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
}

.pro_form_box .u-name, .pro_form_box .u-email{
    width: 50%;
    float: left;
}

.pro_form_box .list{
    padding: 10px 15px;
}

.pro_form_box .u-btn{
    width: 100%;
}
.pro_form_box .u-btn input{
    width: 15%;
    float: left;
    margin-right: 20px;
}

.btn-submit{
    background-color: #2D5EA5!important;
    color: #fff;
}

.new_hot{
    display: flex;
    justify-content: space-between;
}

.hot_img{
    width: 32%;
}

.hot_img img{
    width: 100%;
}

.hot_excerpt{
    width: 63%;
}

.hot_excerpt h3{

}

.hot_excerpt p a{
    color: #aaa;
    text-indent: 3rem;
}

.article_list{
    border-top: #ddd 1px solid;
    padding-top: 20px;
    margin-top: 20px;
}

.article_list li{
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}

.article_list li span{
    color: #aaa;
    font-size: 1.5rem;
}

.article_list li a i{
    color: #1f6aad;
    margin-right: 10px;
}

.h1_title{
    font-size: 3rem;
    text-align: center;
    padding: 20px 0;
}

.publish_time{
    text-align: center;
    padding-bottom: 20px;
    color: #aaa;
    font-size: 1.3rem;
}

.article_content{
    padding-bottom: 30px;
}

.next_box{
    padding-top: 15px;
    border-top: #eee 1px solid;
    border-bottom: #eee 1px solid;
    margin-bottom: 30px;
}

.next_article{
    padding-bottom: 15px;
}

.footer{
    background-color: #1f6aad;
    min-height:120px;
    min-width: 1180px;
    color: #B2C7E6;
    padding: 20px 0px;
}

.footer h3{
    color: #fff;
}

.foot_box{
    width: 1120px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.f-left{
    width: 500px;
    font-size: 1.3rem;
}

.f-left h3{
    padding-top: 0px;
    margin-top: 10px;
}

.f-left ul{
    padding-top: 10px;
}

.f-left ul li {
    padding: 6px 0;
    font-size: 1.3rem;
}

.f-middle{
    border-left: #67b0f4 1px solid ;
    border-right: #67b0f4 1px solid ;
    padding: 5px 60px 10px 60px;
    text-align: center;
}

.f-middle h3{
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2px;
    margin-bottom: 1px;
}

.f-middle p{
    font-size: 1.3rem;
}

.f-right{
    width: 500px;
    padding-top: 10px;
    padding-left: 50px;
    padding-bottom: 20px;
}

.kefu_box{
    padding-left: 2px;
    padding-top: 20px;
}

.kefu_box span{
    background-color: #ADBDD5;
    padding: 5px 50px;
    color: #1B3863;
    border-radius: 5px;
    font-size: 1.3rem;
}

.footer_txt{
    text-align: center;
    padding: 10px 0 20px 0;
    min-width: 1160px;
}

.copyright{
    background-color: #073b6a;
    text-align: center;
    color: #fff;
    padding: 15px;
    font-size: 1.3rem;
}

.copyright a{
    color: #fff;
}

.total{
    padding-left: 10px; padding-right: 20px; padding-top: 5px; float: left
}

.curr_position{
    padding-bottom: 10px;
    border-bottom: #ddd 1px solid;
    font-size: 1.3rem;
}

.pageinte{
    padding: 10px;
}

/**分页样式**/
.pagination {
    display: inline-block;
    padding-left: 0;
    margin-bottom: 30px;
    border-radius: 4px;
    text-align: center;
}
.pagination>li {
    display: inline;
}

.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #333333;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
}

.pagination>li.active>span {
    color: #fff;
    background-color: #006fc4;;
}

.course_box{
    width: 275px;
    height:155px;
    overflow: hidden;
}

.notice_ul{
    color: rgb(129, 129, 129);
    line-height: 36px;
    padding: 10px 20px;
}
.notice_ul li{
    border-bottom: 1px dashed #E3E3E3;
}
.notice_ul li h5{
    color: #333;
    font-weight: bold;
}

.file_ul{
    padding: 10px 20px;
    list-style: circle;
}

.file_ul li{
    display: flex;
    border-bottom: #ddd 1px dashed;
    padding-top: 10px;
    color: #006699;
}


.payment_box{
    width: 360px; margin: 0 auto; padding: 20px;
}


.sign_time{
    width: 70px;
    height:70px;
    line-height: 68px;;
    margin: auto;
    border: 1px solid #ddd;
    border-radius: 50%;
}
