@charset "utf-8";

@font-face {
    font-family: "MicrosoftYahei-Bold";
    src: url("/fonts/Microsoft-YaHei-Bold.ttc") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "MicrosoftYahei-Heavy";
    src: url("/fonts/Microsoft-YaHei-Heavy.ttc") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "MicrosoftYahei-Light";
    src: url("/fonts/Microsoft-YaHei-Light.ttc") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "MicrosoftYahei-Regular";
    src: url("/fonts/Microsoft-YaHei-Regular.ttc") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "MicrosoftYahei-Semibold";
    src: url("/fonts/Microsoft-YaHei-Semibold.ttc") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "MicrosoftYahei-Semilight";
    src: url("/fonts/Microsoft-YaHei-Semilight.ttc") format("truetype");
    font-weight: normal;
    font-style: normal;
}
/*全局样式
---------------------------------------------*/
* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: #383838;
    font: 14px/1.6 "MicrosoftYahei-Regular";
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

input,
button,
select,
textarea,
img,
p,
h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: "MicrosoftYahei-Regular";
}

a {
    color: #383838;
    text-decoration: none;
}

    a:hover {
        color: #409abc;
        text-decoration: none;
        -webkit-transition: all 0.2s linear;
        transition: all 0.2s linear;
    }

ol,
ul,
li,
dl,
dd {
    margin: 0 auto;
    padding: 0;
    list-style-type: none;
}

img {
    border: none;
}

i,
em {
    font-style: normal;
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.pd0 {
    padding: 0;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.bg-white {
    background-color: #ffffff;
}

.bg-lightBlue {
    background-color: #1e73b4;
}

.f16 {
    font-size: 16px;
}

.blue {
    color: #074ba0;
}

.white {
    color: #ffffff;
}

.bg-gray {
    background: #f4f4f4;
}

.iconBig {
    font-size: 40px;
}

.font_30px {
    font-size: 30px;
}

.font_20px {
    font-size: 20px;
}

.font_16px {
    font-size: 16px;
}

.hg35 {
    line-height: 35px;
}

.font_ls_b {
    color: #b1071a;
    font-weight: bold;
}

.mrt30b0 {
    margin: 30px 0;
}

.center {
    margin: 0 auto;
    text-align: center;
}

/* .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}

.clearfix {
    display: block;
} */

.cleara:after {
    content: "";
    display: block;
    clear: both;
}

.clear {
    clear: both;
    overflow: hidden;
}

.line5 {
    clear: both;
    font-size: 0px;
    height: 5px;
    overflow: hidden;
}

.line10 {
    clear: both;
    font-size: 0px;
    height: 10px;
    overflow: hidden;
}

.line15 {
    clear: both;
    font-size: 0px;
    height: 15px;
    overflow: hidden;
}

.input {
    display: inline;
    margin-right: 5px;
    padding: 7px;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    background: #fff;
    color: #999;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
}

.btnan {
    display: inline-block;
    margin: 0;
    padding: 0 25px;
    color: #fff;
    font-size: 12px;
    height: 38px;
    line-height: 38px;
    text-align: center;
}

.btnan {
    background: #1e7bb3;
    border: 1px solid #02598e;
    border-radius: 2px;
    vertical-align: middle;
}

    .btnan:hover {
        color: #fff;
        opacity: 0.9;
    }

.btn-success {
    background: #52a152;
    border: 1px solid #417f41;
    text-shadow: 0 -1px 0 #52a152;
}

.sub-mouse {
    width: 70%;
    height: 43px;
    position: absolute;
    bottom: 30px;
    left: 15%;
    cursor: pointer;
    z-index: 1;
    zoom: 0.7;
}

    .sub-mouse:after {
        display: none;
        z-index: -1;
        position: absolute;
        content: "";
        top: -30px;
        left: 50%;
        height: 53px;
        border-right: 1px solid #333;
        margin-left: -1px;
    }

    .sub-mouse span {
        text-align: center;
        display: block;
        position: relative;
        width: 50%;
        height: 100%;
        animation: ani-svg 0.85s linear 0s alternate infinite;
        margin: 0 auto;
    }

@keyframes ani-svg {
    0% {
        opacity: 0.4;
        transform: translateY(-20px);
    }

    15% {
        opacity: 0.65;
        transform: translateY(-15px);
    }

    25% {
        opacity: 0.8;
        transform: translateY(-10px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

    65% {
        opacity: 0.8;
        transform: translateY(5px);
    }

    75% {
        opacity: 0.65;
        transform: translateY(10px);
    }

    100% {
        opacity: 0.4;
        transform: translateY(15px);
    }
}

.logo {
    width: auto;
    height: 98px;
    margin-top: 22px;
    position: absolute;
    top: 0;
    overflow: hidden;
    /* transition-duration: 5s;*/
}

/*.logo:before {
        content: "";
        position: absolute;
        width: 1000px;
        height: 50px;*/ /**光标的宽度，，，，，可凭证现实调解**/
/*background-image: linear-gradient( to bottom, transparent, rgba(255, 255, 255, 0.5), transparent );
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-animation: searchLights 2s ease-in 1s infinite;
        -o-animation: searchLights 2s ease-in 1s infinite;
        animation: searchLights 2s ease-in 1s infinite;*/ /**第一个数字参数控制扫光速率，，，，，数字越大越慢**/
/*}*/

/*@keyframes searchLights {
    0% {
        left: -200px;
        top: -300px;
    }

    100% {
        left: -160px;
        top: 800px;
    }
}*/

.navBar {
    height: 50px;
    line-height: 50px;
    background: #0a297b;
    color: #333;
}

.nav {
    position: relative;
    font-family: "MicrosoftYahei-Regular", SimSun, SimHei;
    font-size: 14px;
}

    .nav a {
        color: #fff;
    }

    .nav h3 {
        font-size: 100%;
        line-height: 50px;
        font-weight: normal;
    }

    .nav .m {
        float: left;
        position: relative;
        z-index: 1;
    }

    .nav .s {
        float: left;
        width: 3px;
        text-align: center;
        color: #d4d4d4;
        font-size: 14px;
    }

    .nav h3 a {
        display: block;
        width: 102px;
        text-align: center;
        font-weight: bold;
    }

    .nav .sub {
        display: none;
        position: absolute;
        left: -3px;
        top: 50px;
        z-index: 999;
        width: 102px;
        border: 1px solid #e6e4e3;
        border-top: 0;
        background: #fff;
    }

        .nav .sub li {
            text-align: center;
            margin-bottom: -1px;
        }

            .nav .sub li a {
                display: block;
                border-bottom: 1px solid #e6e4e3;
                height: 35px;
                line-height: 35px;
                color: #000;
                font-size: 12px;
            }

                .nav .sub li a:hover {
                    background-color: #0a297b;
                    color: #ffffff;
                }

    .nav .block {
        height: 3px;
        width: 102px;
        background: #fe7700;
        position: absolute;
        left: 0;
        top: 47px;
        overflow: hidden;
    }

.innerbantext {
    position: absolute;
    top: 100px;
}

.footer {
    background-color: #052f50;
}

    .footer [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

.boxIcon {
    color: #5eaec5;
    margin: 33px 0;
    text-align: center;
    display: block;
    box-shadow: 1px 0 0 0 #5b7586;
}

.col-lg-3:last-child .boxIcon {
    box-shadow: none;
}

.boxIcon i {
    margin: 0 auto 22px auto;
    display: block;
    color: #5eaec5;
}

.boxIcon h2 {
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 18px;
}

.boxIcon p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    font-family: "MicrosoftYahei-Bold";
}

/* section_heading */
.section_tit {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}

    .section_tit:before {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 25%;
        width: 50%;
        height: 2px;
        background: #355197;
    }

    .section_tit h2 {
        margin: 0px 0 20px;
    }

.text_heading p {
    margin: 10px 0px 0px 0px;
    color: #686868;
}

@media (max-width: 767px) {
    .three_line {
        width: 30px;
    }

        .three_line:before,
        .three_line:after {
            width: 60px;
        }
}

.title-bg {
    background: url("/images/titlebg.jpg") repeat;
}

    .title-bg h2 {
        color: #ffffff;
    }

    .title-bg small {
        color: #906182;
    }

.setTab {
    background: #f5f5f4;
}

.menuBox ul {
    margin: 0px;
    padding: 0px;
}

.menuBox li {
    float: left;
    display: block;
    cursor: pointer;
    font-size: 16px;
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid #a3a3a3;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .menuBox li.hover {
        border-bottom: 2px solid #f00;
        padding: 10px;
    }

.newlist1 li {
    clear: both;
    line-height: 35px;
    font-size: 14px;
    border-bottom: 1px dotted #cccccc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .newlist1 li span {
        text-align: right;
    }

.newMenuBox {
    text-align: center;
    margin: 20px auto;
}

    .newMenuBox:before {
        content: "";
        display: block;
        height: 1px;
        width: 100%;
        background-color: #dadada;
        position: relative;
        top: 18px;
        left: 0;
    }

    .newMenuBox li {
        display: inline-block;
        background: #0f6fc3;
        border-radius: 20px;
        color: #fff;
        padding: 4px 20px;
        position: relative;
        font-size: 16px;
        margin: 0 10px;
    }

        .newMenuBox li:first-child {
            margin-left: 20%;
        }

        .newMenuBox li:last-child {
            margin-right: 20%;
        }

.item-blog .thumbnail {
    border: 0;
    padding: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    margin: 0;
    overflow: hidden;
    background: #efefef;
}

    .item-blog .thumbnail .img-blog-contain {
        max-height: 175px;
        display: block;
        overflow: hidden;
        margin-bottom: 20px;
    }

.item-blog img {
    width: 100%;
    max-width: 100%;
    -webkit-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}

    .item-blog img:hover {
        -webkit-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }

.item-blog .caption {
    margin: 0;
    padding: 0 10px;
    color: #666;
}

    .item-blog .caption a h4 {
        font-weight: bold;
        -webkit-transition: all 0.6s ease 0s;
        transition: all 0.6s ease 0s;
        display: block;
        float: left;
    }

        .item-blog .caption a h4:hover {
            color: #008096;
        }

    .item-blog .caption p {
        clear: both;
    }

    .item-blog .caption .learn-more {
        color: #ffffff;
        margin-top: 16px;
        display: block;
        -webkit-transition: all 0.6s ease 0s;
        transition: all 0.6s ease 0s;
        float: left;
        clear: both;
        background: #df9609;
        padding: 1px 4px;
    }

        .item-blog .caption .learn-more i {
            margin-left: 7px;
        }

.item-blog .learn-more:hover {
    color: #ffffff;
    padding-left: 15px;
}

.services-home-1 .col-md-4:nth-child(1) .item-blog .thumbnail {
    margin-right: 10px;
}

.services-home-1 .col-md-4:nth-child(2) .item-blog .thumbnail {
    margin-right: 5px;
    margin-left: 5px;
}

.services-home-1 .col-md-4:nth-child(3) .item-blog .thumbnail {
    margin-left: 10px;
}

.services-home-1 h4 {
    margin-bottom: 12px;
}

@media only screen and (max-width: 1199px) {
    .services-home-1 .item-blog {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 991px) {
    .services-home-1 .col-md-4:nth-child(1) .item-blog .thumbnail,
    .services-home-1 .col-md-4:nth-child(2) .item-blog .thumbnail,
    .services-home-1 .col-md-4:nth-child(3) .item-blog .thumbnail {
        margin: 0;
        padding: 0;
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 479px) {
    .newMenuBox li:first-child {
        margin-left: 10%;
    }

    .newMenuBox li:last-child {
        margin-right: 10%;
    }
}

.hotel-service {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

    .hotel-service .single-service {
        width: 25%;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
    }

        .hotel-service .single-service:nth-child(even) {
            flex-flow: column-reverse;
        }

    .hotel-service .service-content {
        background: #f9f9f9;
        padding: 65px 20px 73px;
        width: 100%;
    }

        .hotel-service .service-content:before {
            content: "";
            width: 16px;
            height: 16px;
            position: absolute;
            left: 50%;
            top: -7px;
            background: #f9f9f9;
            -webkit-transform-origin: center;
            -moz-transform-origin: center;
            -ms-transform-origin: center;
            -o-transform-origin: center;
            transform-origin: center;
            -webkit-transform: translateX(-50%) rotate(45deg);
            -ms-transform: translateX(-50%) rotate(45deg);
            -o-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
        }

    .hotel-service .single-service:nth-child(even) .service-content:before {
        top: inherit;
        bottom: -7px;
    }

    .hotel-service .service-content h4:before {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 25%;
        width: 50%;
        height: 2px;
        background: #355197;
    }

    .hotel-service .service-content p {
        margin: 15px 0 31px 0;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        -webkit-line-clamp: 3;
    }

    .hotel-service .service-content a {
        padding: 0 25px;
    }

        .hotel-service .service-content a i {
            font-size: 22px;
            vertical-align: middle;
            margin-left: 10px;
        }

.single-service .img-single-service-contain {
    max-height: 175px;
    display: block;
    overflow: hidden;
}

.single-service img {
    width: 100%;
    max-width: 100%;
    -webkit-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}

    .single-service img:hover {
        -webkit-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }

.img-fluid {
    max-width: 100%;
    height: auto;
}

.pos-relative {
    position: relative;
}

@media (max-width: 1599px) {
    .hotel-service .service-content {
        padding: 28px 15px 36px;
    }
}

@media (max-width: 1399px) {
    .hotel-service .service-content h4 {
        font-size: 26px;
        line-height: 38px;
    }
}

@media (max-width: 1199px) {
    .hotel-service .service-content h4 {
        font-size: 23px;
        line-height: 32px;
    }
}

@media (max-width: 991px) {
    .hotel-service .single-service {
        width: 50%;
    }

    .hotel-service .service-content {
        padding: 35px 15px 45px;
    }
}

@media (max-width: 767px) {
    .hotel-service .single-service:nth-child(even) {
        flex-flow: column;
    }

    .hotel-service .single-service {
        width: 50%;
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .hotel-service .service-content h4 {
        font-size: 22px;
        line-height: 34px;
    }

    .hotel-service .single-service:nth-child(even) .service-content:before {
        top: -7px;
        bottom: inherit;
    }
}

@media (max-width: 575px) {
    .hotel-service {
        display: block;
    }

        .hotel-service .single-service {
            width: 100%;
            display: block;
        }
}

.section-title {
    margin-bottom: 15px;
}

    .section-title h2 {
        font-size: 36px;
        font-size: 2.25rem;
        margin: 0;
        color: #f00;
    }

.about-text p {
    text-indent: 2em;
    /*line-height: 25px;*/
}

@media (min-width: 1200px) {
    .about-section .section-title {
        padding-top: 75px;
    }
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 25px;
    }

        .section-title h2 {
            font-size: 28px;
            font-size: 1.75rem;
        }

    .section-padding {
        padding: 80px 0;
    }
}

.jixie {
    margin: 0;
    border-radius: 10px;
    text-align: center;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    padding-top: 5px;
    padding-bottom: 5px;
}

    .jixie:hover {
        padding-top: 0px;
        padding-bottom: 5px;
    }

.jixieinfo {
    color: #fff;
    line-height: 26px;
    font-size: 14px;
}

.video-one {
    position: relative;
}

.video-one__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-one .video-one__btn i {
    font-size: 137px;
}

    .video-one .video-one__btn i:hover {
        color: #b70c15;
    }

@media screen and (min-width: 960px) and (max-width: 1199px) {
    .video-one .video-one__btn i {
        font-size: 100px;
    }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
    .video-one .video-one__btn i {
        font-size: 137px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .video-one .video-one__btn i {
        font-size: 100px;
    }
}

@media only screen and (max-width: 479px) {
    .video-one .video-one__btn i {
        font-size: 80px;
    }
}

.headline {
    height: 80px;
    line-height: 80px;
    text-align: center;
}

    .headline span.arrow {
        z-index: 99;
        position: absolute;
        right: -10px;
        top: 38%;
        width: 23px;
        height: 23px;
        background: url(/images/icon-arrow.png) no-repeat right center;
    }

.crumb-list {
    height: 80px;
    overflow: hidden;
}

.crumb-list-out li {
    float: left;
    font-size: 16px;
    padding: 0 5px;
    margin: 25px 10px 25px 0;
    color: #4a4a4a;
    text-align: center;
    vertical-align: middle;
    height: 35px;
    line-height: 35px;
}

    .crumb-list-out li a {
        color: #444;
    }

    .crumb-list-out li.linked,
    .crumb-list-out li:hover {
        border-bottom: 3px solid #1e73b4;
    }

.breadcrumb {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: #ffffff;
    border-radius: 4px;
}

    .breadcrumb:before {
        content: "";
        width: 1px;
        height: 60px;
        position: absolute;
        top: 10px;
        left: 0;
        background: #dddddd;
    }

    .breadcrumb > li {
        display: inline-block;
    }

        .breadcrumb > li + li:before {
            padding: 0 3px;
            color: #ccc;
            content: ">\00a0";
        }

    .breadcrumb > .active {
        color: #777;
    }

.con {
    margin: 35px auto;
    line-height: 33px;
    font-size: 16px;
    color: #444444;
}

.category-title {
    border-bottom: 1px solid #cccccc;
    font-weight: normal;
    padding-bottom: 10px;
}

    .category-title:after {
        border: 1px solid #2073B5;
        top: 42px;
        content: "";
        left: 0;
        position: absolute;
        width: 150px;
    }

@media (max-width: 767px) {
    .category-title:after {
        top: 51px;
    }
}

@media (max-width: 479px) {
    .category-title:after {
        top: 33px;
    }
}

.entry img {
    max-width: 100% !important;
    height: auto !important;
}

.imglist {
    margin-bottom: 30px;
}

    .imglist ul li {
        overflow: hidden;
        display: block;
        position: relative;
        width: calc(25% - 20px);
        width: -webkit-calc(25% - 20px);
        width: -moz-calc(25% - 20px);
        float: left;
        margin: 10px;
    }

        .imglist ul li .tit {
            transition: all .5s;
            height: 45px;
            line-height: 45px;
            z-index: 999;
            background: rgba(0,0,0,.7);
            text-align: center;
            color: #fff;
            font-size: 16px;
            position: absolute;
            width: 100%;
            padding: 0 10px;
            box-sizing: border-box;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            left: 0;
            bottom: 0;
        }

        .imglist ul li .pic {
            overflow: hidden;
        }

            .imglist ul li .pic img {
                width: 100%;
                height: 232px;
                transition: all .5s;
            }

        .imglist ul li:hover .pic img {
            transform: scale(1.1,1.1);
        }

@media only screen and (max-width : 850px) {
    .imglist ul li {
        width: calc(50% - 10px);
        width: -webkit-calc(50% - 10px);
        width: -moz-calc(50% - 10px);
        margin: 5px;
    }

    .imglist {
        margin-bottom: 20px;
    }
}

div.page {
    height: 35px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

    div.page a {
        text-decoration: none;
        color: #666;
        background: #fff;
        padding: 0 6px;
        margin-right: 5px;
        line-height: 21px;
    }

        div.page a:hover {
            text-decoration: none;
            color: #f8921d;
        }

        div.page a:active {
            color: #f8921d;
        }

    div.page span.current {
        padding: 0 6px;
        color: #f8921d;
        margin-right: 3px;
    }

    div.page span.disabled {
        padding: 0 6px 0;
        color: #adaaad;
        margin-right: 3px;
        margin-top: 10px;
    }

        div.page span.disabled img {
            /* margin-top: 5px;*/
        }

.hr-concept {
    margin: 0;
}

    .hr-concept .row {
        margin: 0;
    }

    .hr-concept .title,
    .hr-concept .text {
        color: white;
    }

    .hr-concept .title {
        margin-top: 20px;
        border-bottom: 2px solid #aac9c9;
    }

.message-wrapper {
    margin: 40px auto;
    /*width: 1200px;*/
    height: 552px;
    background: url(/images/messagebg.jpg) no-repeat left center;
}

.form_box {
    text-align: left;
    margin: 40px;
    float: right;
}

    .form_box dl {
        padding: 8px 0;
        font-size: 14px;
        line-height: 28px;
    }
        /*clear:both;*/
        .form_box dl dt {
            display: block;
            float: left;
            width: 150px;
            text-align: right;
            font-weight: normal;
        }

            .form_box dl dt em {
                padding-right: 5px;
                color: #ff0000;
                font-style: normal;
            }

        .form_box dl dd {
            margin-left: 150px;
            padding-left: 10px;
        }

            .form_box dl dd i {
                display: block;
                line-height: 28px;
                color: #999;
                font-size: 14px;
                font-style: normal;
            }

            .form_box dl dd em {
                line-height: 28px;
                color: #999;
                font-size: 14px;
                font-style: normal;
            }

.input {
    border: 1px solid #dfdfdf;
}

.scroll {
    width: 1080px;
    margin: 0 auto;
    padding-top: 30px;
    font-family: "Microsoft Yahei";
}

    .scroll .owl-wrapper-outer {
        margin: 0 auto;
    }

    .scroll .item {
        position: relative;
        width: 250px;
        height: 240px;
        margin: 0 auto;
        overflow: hidden;
    }

        .scroll .item img {
            width: 250px;
            height: 200px;
        }

    .scroll .shd {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

        .scroll .shd a {
            display: block;
            width: 250px;
            height: 200px;
        }

    .scroll .txt {
        width: 226px;
        height: 40px;
        padding: 0 12px;
    }

    .scroll h4 {
        width: 226px;
        height: 28px;
        margin-bottom: 6px;
        padding-top: 6px;
        text-align: center;
    }

        .scroll h4 a {
            color: #333;
            text-decoration: none;
        }

            .scroll h4 a:hover {
                color: #338de6;
            }

    .scroll p {
        width: 226px;
        height: 54px;
        line-height: 18px;
        font-size: 12px;
    }

.owl-theme .owl-controls .owl-buttons div {
    position: absolute;
    top: 100px;
    width: 30px;
    height: 60px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    font: 60px/60px "宋体";
    background-color: transparent;
    overflow: hidden;
    _display: none;
}

.owl-theme .owl-controls .owl-buttons .owl-prev {
    left: -40px;
}

.owl-theme .owl-controls .owl-buttons .owl-next {
    right: -40px;
}

.owl-theme .owl-controls .owl-buttons .owl-prev:before {
    content: "<";
    color: #000000;
}

.owl-theme .owl-controls .owl-buttons .owl-next:before {
    content: ">";
    color: #000000;
}

.tt .anim-cc {
    animation: mymove8 0.5s;
    -webkit-animation: mymove8 0.5s linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-delay: 0.3s;
}
/*media*/
@media screen and (max-width: 767px) {
    .hr-concept .title {
        font-size: 18px;
        line-height: 28px;
    }

    .hr-concept .text {
        line-height: 28px;
        font-size: 14px;
    }

    .hr-concept .text-box {
        padding-left: 10px;
        padding-right: 20px;
    }
}

@media screen and (min-width: 768px) {
    .hr-concept .title {
        font-size: 18px;
        line-height: 28px;
    }

    .hr-concept .text {
        line-height: 28px;
        font-size: 14px;
    }

    .hr-concept .text-box {
        padding-left: 20px;
        padding-right: 30px;
    }
}

@media screen and (min-width: 992px) {
    .hr-concept .title {
        font-size: 24px;
        line-height: 34px;
    }

    .hr-concept .text {
        line-height: 30px;
        font-size: 15px;
    }

    .hr-concept .text-box {
        padding-left: 30px;
        padding-right: 40px;
    }
}

@media screen and (min-width: 1199px) {
    .hr-concept .title {
        margin: 40px 0 15px 0;
        font-size: 30px;
        line-height: 45px;
    }

    .hr-concept .text {
        line-height: 33px;
        font-size: 16px;
    }
}

@media screen and (min-width: 1200px) {
    .hr-concept .text {
        line-height: 40px;
        font-size: 18px;
    }
}

@media screen and (min-width: 960px) and (max-width: 1199px) {
    .imgLogo {
        height: 70px;
    }

    .logo {
        height: 70px;
        margin-top: 15px;
    }

    .nav h3 a,
    .nav .sub {
        width: 83px;
    }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
    .imgLogo {
        height: 55px;
    }

    .logo {
        height: 55px;
        margin-top: 10px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .imgLogo {
        height: 45px;
    }

    .logo {
        height: 45px;
        margin-top: 5px;
    }
}

@media only screen and (max-width: 479px) {
    .imgLogo {
        height: 25px;
    }

    .logo {
        height: 25px;
        margin-top: 10px;
    }

    .iconBig {
        font-size: 20px;
    }
}<!--耗时1776545378.8347秒-->