/*
 imported styles
*/
@import url("animate.css");
@import url("bootstrap.min.css");
@import url("pagebar.css");
/*
common styles
*/
*{ box-sizing:border-box; padding:0; margin:0;}
body {
    font-family:"Microsoft YaHei", "sans-serif";
    color: #333333;
    font-size: 14px;
}

a:active,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}
ul,li{
    list-style: none;
}
.h-25px{
    height:25px;
}
.h-30px{
    height:30px;
}
.h-35px{
    height:35px;
}
.h-40px{
    height:40px;
}
.h-45px{
    height:45px;
}
.h-50px{
    height:50px;
}
.h-55px{
    height:55px;
}
.h-60px{
    height:60px;
}
.bg-none{
    background:none!important;
}
.hover-show .h-show{
    display: none;
}
.hover-show:hover .h-show{
    display: block;
}
/*bootstrap btn*/
.btn{
    border-radius: 0;
}
.btn-primary{
    background-color:#007bff;
}
.btn-outline-primary{
    border-color:#007bff;
    color:##007bff;
}
.btn-outline-primary:hover{
    background-color:#007bff;
    border-color:#007bff;
}


/*光标效果*/
.cursor{ cursor: pointer;}
.cursor-no{ cursor: default;}

/*加载动画*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-image: -webkit-gradient(linear, left top, right top, from(#f0f1f1), to(white));
    background-image: linear-gradient(90deg, #f0f1f1 0%, white 100%);
}

.preloader span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/resources/preloader.gif);
}
/*返回顶部*/
.scroll-to-top {
    display: inline-block;
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 99;
    width: 45px;
    height:45px;
    background-color: #007bff;
    text-align: center;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 50%;
}

.scroll-to-top i {
    font-size: 18px;
    line-height: 45px;
    color: #fff;
    position: relative;
    z-index: 10;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.scroll-to-top:hover {
    background: #222222;
}

.scroll-to-top:hover i {
    color: #fff;
}

.scrollup {
    background-color: #007bff;
    border-radius: 100%;
    bottom: 20px;
    color: #ffffff;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 40px;
    z-index: 99;
}
.scrollup:hover {
    background-color: #047cc4;
    color:#fff;
}
.scrollup:focus {
    color:#fff;
}

.scrollup.scrollup_style1:hover {
    background-color: #333;
}
/*ellipsis*/
.ellipsis-1row{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.ellipsis-2row{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.ellipsis-3row{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}



.bg-repeat-no {
    background-repeat: no-repeat;
}

.bg-coveer-sz {
    background-size: cover;
}
.bg-pos-top-center {
    background-position: top center;
}
.bg-pos-center-center {
    background-position: center center;
}

.bg-pos-left-center {
    background-position: left center;
}

.bg-pos-right-center {
    background-position: right center;
}

.bg-att-fixed {
    background-attachment: fixed;
}

.thm-gray-bg {
    background-color: #f2f4f7;
}

.large-title {
    font-size: 30px;
    font-weight: 600;
    color: #222222;
}

.normal-text {
    font-size: 14px;
    line-height: 26px;
    color: rgba(34, 34, 34, 0.5);
}

.img-fluid img{
    max-width: 100%;
    height: auto;
}
/*bootstrap thumbnail特效1207*/
.thumbnail{
    overflow: hidden;
    padding: 0;
    position: relative;
    border: 1px solid transparent;
    cursor: pointer;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.2);
}
.thumbnail:hover{
    text-decoration: none;
    border: 1px solid transparent !important;
}
.thumbnail img{
    cursor: pointer;
    transition: all 0.6s;
}
.thumbnail:hover img{
    transform: scale(1.05);
}
.thumbnail .badge,
.thumbnail:hover .badge{
    position: absolute;
    top:0;
    right:0;
    z-index: 10;
    font-weight: 100;
    border-radius: 0 0 0 10px;
}
.thumbnail.hover:hover{
    box-shadow: 0px 2px 10px rgba(58,166,255,0.5);
    border: 1px solid #d11515 !important;
    color:#d11515;
}
.thumbnail .caption{
    color:#333333;
}
.thumbnail .intro-2{
    color:#666666;
    height:50px;
}

/*设置box宽高为指定比例*/
.aspect-box {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.aspect-box > * /* This targets .aspect-box__content */ {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
}
.aspect-box:before /* This pseudo element uses the padding trick to set the height. */ {
    position: relative;
    display: block;
    content: "";

    box-sizing: border-box;
}
.square {
    aspect-ratio: '1:1';
}
.square:before {
    aspect-ratio: '1:1';
    padding-top: 100%;
}
.rectangle16-9{
    aspect-ratio: '16:9';
}
.rectangle16-9:before {
    padding-top: 56.25%;
}
.rectangle16-10{
    aspect-ratio: '16:10';
}
.rectangle16-10:before {
    padding-top: 62.5%;
}
.rectangle3-4{
    aspect-ratio: '3:4';
}
.rectangle3-4:before {
    padding-top: 120%;
}
.min-vh-50{min-height:50vh!important}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    padding:0!important;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1300px;
    }
}


/*
header styles
*/

.header-navigation {
    transition: all 0.5s ease 0s;
    background:#005bac;
    background-image:url("../images/top-bg.jpg");
    background-position:center top ;
    background-repeat: no-repeat;
    background-size:auto;
    height:340px;
    text-align: center;
    position: relative;

}

.header-navigation .container {
    background: transparent;
    position: relative;
    display: block;
}


.header-navigation .container .navbar-brand {
    height: auto;
    margin: 75px 0 125px 0;
}
.header-navigation .container .navbar-brand img{
    height:85px;
}

.header-navigation .container .menu-toggler {
    display: none;
    border:none;
    padding:5px 0 5px;
    background:none;
    float:right;
    margin-top:15px;
    color:#ffffff;
}
@media screen and (max-width: 1080px) {
    .header-navigation {
        background-size:cover;
        background-position: center;
        height:130px;
    }
    .header-navigation .container .navbar-brand {
        height: auto;
        margin: 30px 0;
    }
    .header-navigation .container .navbar-brand img{
        height:60px;
    }
    .header-navigation .container .menu-toggler {
        display: block;
    }
    .header-navigation ul.navigation-box {
        display: block;
        margin: 0 !important;
        width: 100%;
    }

    .header-navigation ul.navigation-box>li {
        padding: 0 !important;
        display: block;
        width:100%;
    }

    .header-navigation ul.navigation-box>li>a {
        width:100%;
        display: block;
        padding: 10px 20px!important;
    }

    .header-navigation ul.navigation-box>li>a:after {
        display: none;
    }

    .header-navigation ul.navigation-box>li+li {
        margin: 0;
    }

    .header-navigation .main-navigation {
        float: none;
        width: 100%;
        display: none;
        text-align: left;
        background: #181818;
        max-height: 70vh;
        overflow-y: scroll;
        z-index: 9999;
    }
    .header-navigation ul.navigation-box>li>.submenu {
        width: 100%;
    }

}
@media screen and (max-width: 767.98px) {
    .header-navigation {
        background-size: cover;
        background-position: center;
        height:80px;
    }
    .header-navigation .container .navbar-brand {
        height: auto;
        margin: 20px 0;
    }
    .header-navigation .container .navbar-brand img{
        height:40px;
    }
    .header-navigation .container .menu-toggler {
        display: block;
    }

    .header-navigation ul.navigation-box {
        display: block;
        margin: 0 !important;
        width: 100%;
    }

    .header-navigation ul.navigation-box>li {
        padding: 0 !important;
        display: block;
        width:100%;
    }

    .header-navigation ul.navigation-box>li>a {
        width:100%;
        display: block;
        padding: 10px 20px!important;
    }

    .header-navigation ul.navigation-box>li>a:after {
        display: none;
    }

    .header-navigation ul.navigation-box>li+li {
        margin: 0;
    }

    .header-navigation .main-navigation {
        float: none;
        width: 100%;
        display: none;
        text-align: left;
        background: #181818;
        max-height: 70vh;
        overflow-y: scroll;
        z-index: 9999;
    }
    .header-navigation ul.navigation-box>li>.submenu {
        width: 100%;
    }

}
@media screen and (max-width: 480px) {
    .header-navigation .container .navbar-brand img{
        height:30px;
    }
}
@media screen and (max-width: 320px) {
    .header-navigation .container .navbar-brand img{
        height:28px;
    }
}

.header-navigation .main-navigation {
    background: #0160b0;
    width:100%;
    box-shadow:  0 5px 0 rgba(0,91,172,0.2 );

}

.header-navigation ul.navigation-box {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-navigation ul.navigation-box li a .sub-nav-toggler {
    display: none;
}

.header-navigation ul.navigation-box>li{
    position: relative;
    padding: 15px ;
    display: inline-block;
    vertical-align: middle;
    /* Second Level Menu */
    /* Thrid Level Menu */
}
.header-navigation ul.navigation-box>li:hover,
.header-navigation ul.navigation-box>li.current{
    background:#014f95;
}
.header-navigation ul.navigation-box>li+li {
    padding-left: 30px;
    padding-right: 30px;
}

.header-navigation ul.navigation-box>li:first-child {
    padding-left: 28px;
    padding-right: 28px;
}


.header-navigation ul.navigation-box>li>a {
    display: block;
    font-weight: normal;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    padding: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    position: relative;
}

.header-navigation ul.navigation-box>li>a:after {
    content: "\f107";
    font-family: FontAwesome;
    margin-left: 10px;
}

.header-navigation ul.navigation-box>li>a:only-child:after {
    content: '';
    display: none;
}

.header-navigation ul.navigation-box>li.current>a,
.header-navigation ul.navigation-box>li:hover>a {
    color: #ffffff;

}

.header-navigation ul.navigation-box>li>.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    min-width: 165px;
    padding: 0px 0px;
    text-align: left;
    list-style: none;
    background-color: rgba(0, 79, 149, 0.8);
    background-clip: padding-box;
    opacity: 0;
    border-radius: 0px;
    visibility: hidden;
    -webkit-transition: opacity .4s ease, visibility .4s ease;
    transition: opacity .4s ease, visibility .4s ease;
    -webkit-box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1311px) {
    .header-navigation ul.navigation-box>li>.submenu {
        display: block !important;
    }
}

.header-navigation ul.navigation-box>li>.submenu.right-align {
    left: auto;
    right: 0;
}

.header-navigation ul.navigation-box>li>.submenu.center-align {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.header-navigation ul.navigation-box>li>.submenu>li {
    display: block;
    position: relative;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.header-navigation ul.navigation-box>li>.submenu>li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-navigation ul.navigation-box>li>.submenu>li>a {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    padding: 12px 30px;
    display: block;
    line-height: 26px;
    white-space: nowrap;
    position: relative;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.header-navigation ul.navigation-box>li>.submenu>li:hover>a {
    color: #fff;
    background:rgba(0,90,176,0.9);
}

.header-navigation ul.navigation-box>li:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
}

.header-navigation ul.navigation-box>li:hover>.submenu {
    opacity: 1;
    visibility: visible;
}

.header-navigation ul.navigation-box>li>ul>li {
    /* no more nested showen */
}

.header-navigation ul.navigation-box>li>ul>li>.submenu {
    position: absolute;
    top: 0%;
    left: 100%;
    z-index: 1000;
    float: left;
    min-width: 200px;
    padding: 0px 0px;
    text-align: left;
    list-style: none;
    background-color: #222222;
    background-clip: padding-box;
    opacity: 0;
    border-radius: 0px;
    visibility: hidden;
    -webkit-transition: opacity .4s ease, visibility .4s ease;
    transition: opacity .4s ease, visibility .4s ease;
    -webkit-box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1310px) {
    .header-navigation .navigation-box>li>.submenu,
    .header-navigation .navigation-box>li>.submenu>li>.submenu {
        position: relative !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transition: none !important;
        display: none;
        float: none !important;
        margin: 0;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    .header-navigation .navigation-box>li>.submenu>li>a::after {
        display: none;
    }


    .header-navigation ul.navigation-box li a .sub-nav-toggler {
        background-color: transparent;
        background-image: none;
        border: none!important;
        color:#ffffff;
        border-radius: 4px;
        padding: 1px 5px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 15px;
        /*margin-top: 8px;*/
        margin-right: 0px;
        display: block;
        cursor: pointer;
    }
}

.stricked-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    -webkit-box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
    opacity: 0;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.stricked-menu.stricky-fixed {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}
/*
carousel styles
*/
.carousel-control-prev,
.carousel-control-next{
    font-size: 40px;
}
@media screen and (max-width: 767.98px) {
    .carousel-control-prev,
    .carousel-control-next{
        font-size: 28px;
    }
    .carousel-indicators{
        bottom:-20px;

    }
    .carousel-indicators li{
        width:20px;
        height:2px;
    }
}

/*
footer styles
*/
.site-footer{
    background: #2e67bf;
    margin:0!important;
    padding:0!important;
}
.site-footer-upper {
    background: #2e67bf url(../images/bg-bottom.jpg);
    border-top:1px solid #dfdfdf;
    color:#ffffff;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-text {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
}

.footer-text a {
    color: inherit;
    transition: all .4s ease;
}

.footer-text a:hover {
    color: #229aff;
}
.site-footer-upper .form-control{
    background: transparent;
    border:1px solid #ffffff;
    border-radius: 0;
    color:#ffffff;
}
.site-footer-upper .form-control option{
   color:#333333
}
.site-footer-bottom{
    height:40px;
    line-height: 40px;
    background:#2455a2;
    color:rgba(255,255,255,0.6);
    text-align: center;
}

/*
block-title styles
*/

.block-title {
    padding:0;
    margin:0;
    position: relative;
}

.block-title-title {
    color: #222222;
    font-size: 24px;
    line-height: 24px;
    margin: 0;
    padding-bottom:5px;
    background: url("../images/title-line.png") left bottom no-repeat ;
}
.block-title-title.small{
    font-size: 24px!important;
    line-height: 24px!important;
}

@media screen and (max-width: 767px) {
    .block-title-title.small{
        font-size: 20px!important;
        line-height: 20px!important;
    }
}
.block-title-title+.block-title-line {

}

.hover-show:hover .block-title-title+.block-title-line.h-show{
    display: inline-block;
}
.block-title-line {
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
    height: 4px;
    background-color: #0087ff;
    position: absolute;
    left:0;
    bottom:-10px;
}

.block-title a.more {
    position: absolute;
    right:0;
    top:20%;
    color:#888888;
}
.block-title a.more:hover{
    color:#005bac;
}
.block-title .more-link{
    position: absolute;
    right:0;
    top:0px;
    color:#888888;
}
.block-title .more-link a{
    color:#888888;
}
.block-title .more-link a:hover{
    color:#005bac;
}
/*
news style
*/

.news-slide{
    -webkit-box-shadow: 0px 30px 50px 0px rgba(8, 13, 62, 0.15);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.news-slide .carousel-inner{
    padding-bottom:125px;
}
.news-slide .carousel-indicators{
    margin-bottom:125px;
}
.news-slide .carousel-indicators li{
    background-color:rgba(255,255,255,0.9);
    width:20px;
}
.news-slide .carousel-indicators .active{
    background-color:#0087ff;
}
.news-slide .carousel-caption{
    background-color:#005bac;
    height:125px;
    right:0;
    bottom:-125px;
    left:0;
    padding:20px;
    color:#ffffff;
    text-align:left;
    z-index: 100;
}
.news-slide .carousel-caption h5{
    font-size:18px;
    color:#ffffff;
}
.news-slide .carousel-caption p{
    padding-top:5px;
    font-size: 13px;
    color:#ffffff;
    font-weight: 100;
}



.list-text li{
    line-height: 40px;
    padding-left:10px;

}
.list-text li:hover{
    background:rgba(0,135,225,0.05);
}

.list-text li a{
    color:#333333;
}
.list-text li a:hover{
    color:#0072ff;
}
.list-text li .text{
    font-size: 17px;
    width:calc( 100% - 80px );
}
.list-text li .time{
    display: block;
    font-size:12px;
    font-weight: 200;
    height:18px;
    line-height:18px;
    text-align: center;
    width:76px;
    color:#0087ff;
    background:rgba(0,135,225,0.1);
    border-radius: 3px;
}
.media.list{
    padding:15px 0;
    border-bottom: 1px dashed #ebebeb;
    cursor:pointer;
}
.media.list:hover{
    background:rgba(0,135,225,0.05);
}
.media.list .time{
    display: block;
    font-size:12px;
    font-weight: 200;
    height:18px;
    line-height:18px;
    text-align: center;
    width:76px;
    color:#0087ff;
    background:rgba(0,135,225,0.1);
    border-radius: 3px;
}
.media.list h6{
    font-size: 16px;
    padding:0!important;
    margin:0!important;
    line-height: 24px;
}
.media.list h6:hover{
    color:#005bac;
}

.media-list .media-img{
    width:240px;
}
.media-list .media{
    padding-top:20px;
    padding-bottom:20px;
    border-bottom: 1px dashed #ebebeb;
}
.media-list .media:hover{
    background:rgba(0,135,225,0.05);
    cursor:pointer;
}
.media-list .time{
    display: block;
    font-size:12px;
    font-weight: 200;
    height:18px;
    line-height:18px;
    text-align: center;
    width:76px;
    color:#0087ff;
    background:rgba(0,135,225,0.1);
    border-radius: 3px;
}
.media-list .media-heading{
    font-size: 18px;
    font-weight: bold;
}

.media-list .time-box{
    padding-top:10px;
    margin-right:15px;
    width:80px;
    height:80px;
    background:#cce8ff;
    text-align: center;
    color:#0160b0;
}
.media-list .time-box .day{
    font-size: 28px;
    display: block;
}
/*timeline*/
.timeline-track {
    margin-left: 18px;
    border-left: 1px solid #e5e5e5;
    padding-top:20px;
}
.timeline-track ul{
    padding:0;
}
.timeline-track ul>li {
    list-style: none;
    margin-left: -6px;
}
.timeline-track .levellist li {
    padding-top:10px;
    padding-bottom:10px;
    line-height: 20px;
    padding-left: 20px;
    background: url(../images/time-line-dot2.png) 0 top no-repeat;
    color: grey;
}
.timeline-track .levellist li div{
    margin-top:-15px;
}
.timeline-track .time{
    display: block;
    width:80px;
    height:20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color:#0087ff;
    background:rgba(0,135,255,0.1);
    border-radius: 3px;
}
.timeline-track p{
    color:#333333;
    font-size: 14px;
    line-height: 20px;
}



/*my-article*/
.my-article{
    min-height: 500px;
}

.my-article .title{
    padding:20px 0;
    text-align: center;
}
.my-article .title h3{
    font-size:30px;
}

.my-article .title .time-info{
    margin:30px 0;
    color:#666666;
    font-weight: 100;
}
.my-article .title .time-info span{
    padding:0 10px;
}
.my-article .title .time-info span:first-child{
    padding-left:0;
}
.my-article .content{

    font-size: 16px;
    line-height: 30px;
}

.my-article .more{
    margin:30px 0;
    padding:10px 0;
    font-size: 16px;
    border-top:1px solid #ebebeb;
    border-bottom:1px solid #ebebeb;
}
.my-article .more .item{
    padding:10px 0;
}
@media screen and (max-width: 767px) {
    .my-article .title{
        text-align: left;
    }
    .my-article .title h3{
        font-size:24px;
        line-height: 30px;
    }
    .my-article .more{
        margin:20px 0;
        font-size: 14px;
    }
    .my-article .title .time-info{
        margin:10px 0;
    }
}




/*
 inner-banner styles
*/
.inner-banner {
    position: relative;
    text-align: left;
    padding-top: 220px;
    padding-bottom: 80px;

}
@media screen and (max-width: 767.98px) {
    .inner-banner {
        padding-top: 60px;
        height:160px;

    }
}
.inner-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0F192C;
    opacity: .0;
}

.inner-banner .container {
    position: relative;
}

.inner-banner__title {
    margin: 0;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0rem 1rem rgba(0,0,0,.15);
}
.breadcrumb{
    background: transparent;
}




/*
* search-popup styles
*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transition: -webkit-transform .7s ease;
    transition: -webkit-transform .7s ease;
    transition: transform .7s ease;
    transition: transform .7s ease, -webkit-transform .7s ease;
}

.search-popup.active {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.search-popup__overlay {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    opacity: .7;
}

.search-popup__inner {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.search-popup__form {
    position: relative;
    z-index: 9991;
    width: 100%;
    padding: 15px;
    max-width: 600px;
    position: relative;
}

.search-popup__form input {
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
    height: 60px;
    color: #222222;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 1);
    padding-left: 30px;
}

.search-popup__form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #222222;
}

.search-popup__form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #222222;
}

.search-popup__form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #222222;
}

.search-popup__form input:-moz-placeholder {
    /* Firefox 18- */
    color: #222222;
}

.search-popup__form button[type=submit] {
    border: none;
    outline: none;
    width: 60px;
    height: 60px;
    color: #fff;
    background-color: #0160b0;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.search-popup__form button[type=submit]:hover {
    background-color: #222222;
    color: #0160b0;
}
/* Cursor Style */
.cursor {
    position: absolute;
    background-color: #fff;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    -webkit-transform: scale(1);
    transform: scale(1);
    visibility: hidden;
}
.keyanxiangmu{
    background-image:url("../images/bg-01.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment:fixed;
    height:664px;
    color:#ffffff;
    padding:5px 0 0 0;
}
@media screen and (max-width: 767px) {
    .keyanxiangmu{
        height:1350px;
        margin-bottom:0px;
    }
}
.keyanxiangmu .btn-outline-primary{
    border-color:#ffffff!important;
    color:#ffffff;
}
.keyanxiangmu .btn-outline-primary:hover{
    border-color:#007bff!important;
    color:#ffffff;
}
.keyanxiangmu .block-title-title{
    color:#ffffff;
}
.keyanxiangmu .block-title-line{
    background-color:#ffffff;
}


.testi-area {
    padding: 80px 0 80px
}

.testi-carousel {
    left: calc((100% - 1200px) / 2);
}
.testi-single {
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    margin: 20px;
    border-radius: 10px;

}

.testi-carousel.owl-carousel .owl-nav > div {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    border-radius: 4px;
    margin-left: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid rgba(229, 240, 255, 0.5);
    background-color: #fff;
    color: #005bac;
}

.testi-carousel.owl-carousel .owl-nav .owl-next {
    left: 60px;
}

.testi-carousel.owl-carousel .owl-nav > div:hover {
    background-color: #005bac;
    color: #fff
}

.testi-carousel-two .owl-dots {
    position: absolute;
    left: 0;
    bottom: -70px;
    text-align: center;
    right: 0
}

.testi-carousel-two .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 4px;
    display: inline-block;
    text-align: center;
    border: 2px solid #005bac;
}

.testi-carousel-two .owl-dots .owl-dot.active {
    background-color: #005bac
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .testi-carousel {
        left: calc((100% - 900px) / 2);
    }
    .testi-single {
        margin: 20px;
        padding: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testi-area {
        padding: 90px 0 140px;
    }
    .testi-carousel {
        left: calc((100% - 680px) / 2);
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .testi-carousel {
        left: 0;
    }
    .testi-area {
        padding: 80px 0 130px;
    }
}

@media only screen and (min-width: 360px) and (max-width: 479px) {

    .testi-carousel {
        left: 0;
    }
    .testi-area {
        padding: 80px 0 130px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 359px) {
    .testi-carousel {
        left: 0;
    }
    .testi-area {
        padding: 80px 0 130px;
    }
}

.my-article .content video{
    margin:0 auto;
    max-width:960px;
    width:100%
}
.news{
    background:#ffffff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.news .list-text li{
    line-height: 60px;
    padding-left:0px;
    height:60px;
    border-bottom:1px dashed #dddddd;
    position: relative;

}
.news .list-text li:hover{
    background:rgba(0,135,225,0.05);
}
.news .list-text li a:hover{
    color:#333333;


}
.news .list-text li .time{
    display: block;
    position: absolute;
    right:0;
    top:20px;
}

.list2.list-text li{
    padding:11px 0 0 0;
    position: relative;
    border-bottom: 1px dashed #ebebeb;
}
.list2.list-text li:last-child{
    border-bottom:none;
}
.list2.list-text li:hover{
    background:rgba(0,135,225,0.05);
}
.list2.list-text li a:hover{
    color:#333333;
}
.list2.list-text li .text{
    padding:0!important;
    margin:0 !important;
    width:100%;
}

.card{
    border-radius: 0;
    border: none;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    border-bottom: 4px solid #005bac;
}
.main-bg{
    background: #f2f7fd url(../images/bg1.jpg) bottom no-repeat;
    padding-bottom:200px;
}
.link-a a .title{
    margin-top:10px;
    font-size: 18px;
    color:#666666;
}
.link-a a .img{
    margin:0 auto;
    border-radius: 60px;
    width: 105px;
    height:105px;
    background-color:#def0ff;
    background-position: center;
    background-repeat: no-repeat;
}
.link-a a .img:hover{
    color:#ffffff;
    background-color:#005bac;
}
.link-a .img.icon1{
      background-image:url(../images/icon1.png);
  }
.link-a .img.icon1:hover{
    background-image:url(../images/icon1-hover.png);
}
.link-a .img.icon2{
    background-image:url(../images/icon2.png);
}
.link-a .img.icon2:hover{
    background-image:url(../images/icon2-hover.png);
}
.link-a .img.icon3{
     background-image:url(../images/icon3.png);
 }
.link-a .img.icon3:hover{
    background-image:url(../images/icon3-hover.png);
}
.link-a .img.icon4{
    background-image:url(../images/icon4.png);
}
.link-a .img.icon4:hover{
    background-image:url(../images/icon4-hover.png);
}
.link-a .img.icon5{
    background-image:url(../images/icon5.png);
}
.link-a .img.icon5:hover{
    background-image:url(../images/icon5-hover.png);
}
.link-a .img.icon6{
     background-image:url(../images/icon6.png);
 }
.link-a .img.icon6:hover{
    background-image:url(../images/icon6-hover.png);
}

