::-webkit-scrollbar {
    width: 0;
}
* {
    font-family: 微软雅黑, microsoft yahei, arial, verdana, "sans-serif";
}
ul, li, p{
    margin: 0;
    padding: 0;
    line-height: inherit;
}
li {
    list-style: none;
}
.section {
    position: sticky;
    top: 0;
    z-index: 99;
}
.message {
    width: 100%;
    background-color: #ccc;
}
.message-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1280px;
    margin: 0 auto;
    height: 20px;
    line-height: 20px;
    color: #fff;
    font-size: 12px;
}

.header {
    width: 100%;
    background-color: #FFFFFF;
}
.header-inner {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1280px;
    height: 100px;
    margin: 0 auto;
}
.header-logo {
    display: flex;
    align-items: center;
}

.right-ul {
    display: flex;
    align-items: center;
    height: 100%;
}

.right-ul .right-li {
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #dedede;
    cursor: pointer;
}
.right-ul .right-li:last-child {
    border: none;
}
.right-ul .right-li .icon {
    width: 40px;
    height: 40px;
    
}
.right-ul .right-li:nth-child(1) .icon {
    background: #16b4b9 url(../images/header_phone.png) no-repeat 0 0 / 40px 40px;
}
.right-ul .right-li:nth-child(2) .icon {
    background: #16b4b9 url(../images/header_email.png) no-repeat 0 0 / 40px 40px;
}
.right-ul .right-li:nth-child(3) .icon {
    background: #16b4b9 url(../images/header_qq.png) no-repeat 0 0 / 40px 40px;
}
.right-ul .right-li:hover .icon {
    background-color: #1f71c2;
}
.right-ul .right-li .info {
    margin-left: 10px;
}
.right-ul .right-li .info p {
    color: #999;
    font-size: 14px;
    font-weight: 700;
}
.right-ul .right-li .info span {
    color: #333;
    font-size: 12px;
    display: block;
    padding-top: 5px;
}




.navbar {
    height: 45px;
    padding: 0;
    background-color: #1f71c2;
    color: #FFFFFF;
}
.navbar-brand {
    display: block;
    padding-left: 2%;
}
.navbar-toggler {
    display: block;
    width: 45px;
    height: 45px;
    padding: 0;
}
.navbar-toggler-span {
    display: block;
    position: relative;
    width: 26px;
    height: 1px;
    background-color: #FFFFFF;
}
.navbar-toggler-span::before, .navbar-toggler-span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 26px;
    height: 1px;
    background-color: #FFFFFF;
}
.navbar-toggler-span::before {
    top: -8px;
}
.navbar-toggler-span::after {
    bottom: -8px;
}
.nav-item {
    position: relative;
    flex: 1;
}
.nav-item-search {
    display: flex;
    align-items: center;
    flex: 0;
    flex-shrink: 1;
    display: none;
}
.nav-item a {
    display: block;
    color: #FFFFFF;
    height: 45px;
    line-height: 45px;
    padding: 0;
    text-align: center;
    transition: all 0.25s;
}
.nav-item a:hover {
    background-color: #16b4b9;
    text-decoration: none;
}
.nav-item.active a  {
    background-color: #16b4b9;
}
.nav-item.active .dropdown-item {
    background-color: unset;
}
.nav-item.active .dropdown-item:hover {
    background-color: #16b4b9;
}
/* .dropdown:hover .dropdown-menu {
    visibility:unset;
    opacity: 1;
    transform: translateY(0px);
} */
.dropdown-menu  {
    display: block;
    visibility: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: #1f71c2;
    transform: translateY(15px);
    transition: all 0.3s;
    opacity: 0;
}
.dropdown-menu-show {
    visibility:unset;
    opacity: 1;
    transform: translateY(0px);
}
/* .dropdown-item {
    transition: all 0.25s;
} */

.dropdown-item:hover {
    color: #FFFFFF;
    background-color: #16b4b9;
}
.dropdown-item:focus {
    color: #FFFFFF;
    background-color: unset;
}
.search {
    width: 50px;
    height: 40px;
    margin-left: 20px;
    border-radius: 4px 0 4px 0;
    background: #00abfd url(../images/search_btn.png) no-repeat center;
    cursor: pointer;
}
.search-collapse {
    position: absolute;
    overflow: hidden;
    /* visibility: hidden; */
    top: 45px;
    left: 0;
    width: 100%;
    padding: 0px;
    background: rgba(0, 0, 0, .5);
    transition: all 0.25s;
    height: 0;
    z-index: 99;
}
.search-show {
    height: 90px;
    padding: 20px 0;
}
.search-form {
    display: flex;
    width: 80%;
    max-width: 1280px;
    margin: 0 auto;
}
.search-ipt {
    width: 90%;
    height: 50px;
    background-color: #FFFFFF;
    outline: none;
    border: none;
}
.search-btn {
    width: 10%;
    height: 50px;
    line-height: 50px;
    background-color: #1f71c2;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
}

.carousel-item img{
    height: calc(100vw * (5 / 16));
}


.footer-contact {
    background: #1f71c2;
    padding: 20px 0;
    color: #aaa;
}
.footer-contact-inner {
    display: flex;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    line-height: 40px;
}
.footer-contact-inner p {
    display: inline-block;
    /* white-space: nowrap; */
    color: #fff;
    font-size: 24px;
    vertical-align: top;
}
.footer-contact-inner .footer-btn {
    flex-shrink: 1;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 146px;
    height: 40px;
    background: #16b4b9;
    border-radius: 2px;
    padding: 10px 20px;
    color: #cecece;
    vertical-align: top;
    margin-left: 20px;
    transition: all .25s;
    cursor: pointer;

}
.footer-contact-inner .footer-btn:hover {
    background-color: #1b4e80;
}
.footer-contact-inner .footer-btn p {
    color: #fff;
    font-size: 14px;
    height: 20px;
    line-height: 20px;
    padding-right: 15px;
    border-right: 1px solid #138488;
}
.footer-contact-inner .footer-btn span {
    display: block;
    height: 20px;
    line-height: 20px;
    padding-left: 15px;
    border-left: 1px solid #fff;
 }
.footer-contact-inner .footer-btn span::before {
    content: "";
    display: block;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    background: url(../images/right.png) center center no-repeat;
    background-size: cover;
    margin-top: 1px;
}
.footer-main {
    background: #1c222a;
    padding: 20px 0;
    color: #aaa;
    font-size: 12px;
}
.footer-main-inner {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    line-height: 24px;
}
.footer-main-inner span {
    cursor: pointer;
}
.footer-main-inner span:hover {
    color: #14a2a7;
}
.footer-main-inner a {
    color: #cecece;
    cursor: pointer;
}
.footer-main-inner a:hover {
    color: #14a2a7;
    text-decoration: none;
}


.content {
    background: #fff;
    width: 100%;
}
.content-inner {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px
}
.bread-nav {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    height: 40px;
    line-height: 40px;
    margin-bottom: 10px;
    border-bottom: 1px dotted #dedede;
    padding-bottom: 5px;
}
.bread-nav h2 {
    font-size: 20px;
    color: #333;
    font-weight: 700
}
.bread-nav .breadcrumb {
    margin: 0;
    padding: 0;
    background-color: unset;
    font-size: 12px;
}
.bread-nav .breadcrumb li {
    color: #999;
}
.bread-nav .breadcrumb a {
    color: #555;
}
.bread-nav .breadcrumb-item+.breadcrumb-item::before {
    content: '>';
}
.bread-body {
    color: #555;
    font-size: 14px;
    line-height: 28px;
    padding-top: 10px;
}

.art-list {
    overflow: hidden;
    min-height: 300px;
    margin-bottom: 30px;
}
.art-list .art-item {
    display: flex;
    flex-wrap: nowrap;
    padding: 36px 0 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.art-list .art-item:hover .art-item-left {
    width: 16%;
}
.art-list .art-item:hover .art-item-right {
    width: 84%;
}
.art-list .art-item:hover .item-date {
    color: #333;
}
.art-list .art-item:hover .item-icon {
    border: 1px solid #16b4b9;
    background: url(../images/icon_hover.png) no-repeat 9px 14px #16b4b9;
}
.art-list .art-item:hover .item-title {
    color: #333;
}
.art-list .art-item:hover .item-content {
    color: #999;
}
.art-list .art-item:hover .item-date::after {
    width: 60px;
    background: #16b4b9;
}
.art-list .art-item-left {
    width: 14%;
    display: flex;
    flex-flow: column;
}
.art-list .art-item-right {
    width: 86%;
    transition: all 0.3s ease-out 0s;
    font-size: 14px;
}
.art-list .item-date {
    display: flex;
    align-items: center;
    line-height: 36px;
    height: 36px;
    margin-bottom: 20px;
    font-size: 24px;
    font-family: '微软雅黑';
    color: #999;
    transition: all .3s ease-out 0s;
}
.art-list .item-date::after {
    content: '';
    display: inline-block;
    width: 35px;
    height: 1px;
    margin-left: 20px;
    background: #bfbfbf;
    /* position: absolute;
    top: 48px;
    left: 90px; */
    transition: all .3s ease-out 0s;

}
.art-list .item-icon {
    width: 35px;
    height: 35px;
    text-align: center;
    border: 1px solid #fff;
    transition: all .6s cubic-bezier(.215,.61,.355,1) 0s;
    background: url(../images/icon.png) no-repeat 9px 14px;
    cursor: pointer;
}
.art-list .item-title {
    font-size: 16px;
    color: #717171;
    display: block;
    height: 24px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all .3s ease-out 0s;
    cursor: pointer;
}
.art-list .item-content {
    color: #7d7d7d;
    font-style: normal;
    line-height: 24px;
    height: 73px;
    display: block;
    overflow: hidden;
}

.body-details .details-title {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    color: #0256ac;
}
.body-details .details-date {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}

.suspend {
    position: fixed;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    z-index: 9;
}
.s-menu {
    position: relative;
    
}
.s-menu:hover .menu-box{
    display: block;
}
.menu-btn {
    width: 48px;
    height: 48px;
    color: #848484;
    border: 1px solid #ddd;
    text-align: center;
    display: block;
    margin-bottom: 6px;
    position: relative;
    background-color: #fff;
    cursor: pointer;
}

.menu-btn .menu-icon {
    display: block;
    width: 100%;
    height: 30px;
}
.s-menu:hover .menu-btn p {
    color: #ff6800;
}
.s-menu:nth-child(1) .menu-icon {
    background: url(../images/kf_qq.png) no-repeat center / 20px 20px;
}
.s-menu:nth-child(1):hover .menu-icon {
    background: url(../images/kf_qq_select.png) no-repeat center / 20px 20px;
}
.s-menu:nth-child(2) .menu-icon {
    background: url(../images/kf_phone.png) no-repeat center / 20px 20px;
}
.s-menu:nth-child(2):hover .menu-icon {
    background: url(../images/kf_phone_select.png) no-repeat center / 20px 20px;
}
.s-menu:nth-child(3) .menu-icon {
    background: url(../images/kf_order.png) no-repeat center / 20px 20px;
}
.s-menu:nth-child(3):hover .menu-icon {
    background: url(../images/kf_order_select.png) no-repeat center / 20px 20px;
}
.s-menu:nth-child(4) .menu-icon {
    background: url(../images/kf_agency.png) no-repeat center / 20px 20px;
}
.s-menu:nth-child(4):hover .menu-icon {
    background: url(../images/kf_agency_select.png) no-repeat center / 20px 20px;
}
.s-menu:nth-child(5) .menu-icon {
    background: url(../images/top.png) no-repeat center / 20px 20px;
}
.s-menu:nth-child(5):hover .menu-icon {
    background: url(../images/top_select.png) no-repeat center / 20px 20px;
}
.menu-btn p {
    font-size: 12px;
    line-height: 10px;
    color: #999;
}
.menu-box {
    position: absolute;
    top: 0;
    right: 48px;
    z-index: 1;
    padding-right: 10px;
    display: none;
}

.menu-box-inner {
    position: relative;
    width: 260px;
    border: 1px solid #ccc;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
}
.menu-box-head h4 {
    margin: 0;
    padding-bottom: 15px;
    color: #666;
    font-size: 14px;
    font-weight: normal;
}
.menu-box-head ul {
    display: flex;
}
.menu-box-head li {
    width: 50%;
}
.menu-box-head li:hover a{
    color: #ff6800;
    text-decoration: none;
}
.menu-box-head li a{
    display: inline-block;
    color: #999;
    font-size: 13px;
    padding-left: 43px;
    background: url(../images/q1.gif) no-repeat left 3px;
    line-height: 36px;
}
.menu-box-code {
    margin-top: 10px;
    text-align: center;
}
.menu-box-code img {
    width: 100px;
    display: inline-block;
}
.menu-box-code i {
    color: #ff6800;
    display: block;
    margin-top: 5px;
    font-size: 14px;
}
.menu-box-title {
    display: flex;
}
.menu-box-title span{
    display: inline-block;
    width: 42px;
    height: 56px;
    margin-right: 20px;
    background: url(../images/kf_phone_select.png) no-repeat center/ 42px 42px;
}
.menu-box-title p {
    color: #ff6800;
    font-size: 24px;
    line-height: 28px;
}
.menu-box-title p i {
    display: block;
    font-size: 14px;
    color: #aaa;
}

@media (max-width: 1199px) {
    .right-ul .right-li .info {
        display: none;
    }
}
@media (min-width: 992px) {
    .navbar-nav {
        width: 90%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0;
    }
    .navbar-brand {
        display: none;
    }
}
@media (max-width: 992px) {
    .message {
        display: none;
    }
    .header-inner {
        justify-content: center;
    }
    .header-right {
        display: none;
    }
    .nav-item {
        border-bottom: 1px solid #fff;
    }
    .nav-item a {
        position: relative;
        color: #555;
        background-color: #f1f1f1;
    }
    .nav-item a:hover {
        color: #fff;
    }
    .nav-item.active a {
        color: #fff;
    }
    .nav-item .dropdown-right {
        position: absolute;
        top: 50%;
        right: 10px;
        width: 40px;
        height: 40px;
        transform: translateY(-50%);
        background: url(../images/arrow-right.png) no-repeat center / 20px 15px;
    }
    .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .dropdown-menu .dropdown-item {
        color: #FFF;
        background-color: #1f71c2;
    }
    .nav-item-search {
        display: none;
    }
    .search-collapse {
        /* visibility:visible; */
        /* height: auto;
        background-color: transparent;
        top: 50%;
        left: 50%;
        width: 70%;
        transform: translate(-50%, -50%);
        visibility:hidden; */
    }

    .search-ipt {
        height: 40px;
    }
    .search-btn {
        width: 30%;
        height: 40px;
        line-height: 40px;
        background: #16b4b9;
    }
}
@media (min-width: 540px) {
    .dropdown:hover .dropdown-menu {
        visibility: unset;
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 540px) {
    .footer-contact-inner {
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }
    .footer-contact-inner p {
        font-size: 20px;
    }
    .footer-contact-inner .footer-btn {
        margin-top: 10px;
    }
}