@charset "utf-8";


@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

/*
hander
*/
.hander {
    height: 100px;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 1000;
}

.hander .wrap {
    position: relative;
}

.hander .logo {
    position: absolute;
    top: 15px;
    left: 10px;
    width: 250px;
    height: 80px;
}

.hander .logo img {
    max-width: 100%;
    max-height: 100%;
}

.hander_nav {
    float: right;
    text-align: right;
    position: relative;
}

.hander_nav .items {
    display: inline-block;
    position: relative;
    margin-top: 45px;
}

.hander_nav .item {
    float: left;
    position: relative;
    text-align: center;
}

.hander_nav .item .link1 {
    display: block;
    text-align: center;
    width: 90px;
    height: 55px;
    line-height: 40px;
    margin: 0 5px;
    font-size: 15px;
    font-weight: bold;

}

@media (min-width: 1200px) {
    .hander_nav .item .link1 {
        width: 110px;
    }
}

.hander_nav .item .link_span {
    height: 40px;
    line-height: 40px;
    display: inline-block;
    transition: .3s;
}

.hander_nav .item .link1:hover .link_span {
    color: #e48011;
}

.hander_nav .item.selected .link_span {
    color: #e48011;
}

/*
.hander_nav .item .link1:hover .link_span{background-color: #e48011;color: #fff;}
.hander_nav .item.selected .link_span{background-color: #e48011;color: #fff;}
*/

.hander_nav .subitem {
    position: absolute;
    top: 55px;
    left: 50%;
    margin-left: -87px;
    z-index: 2000;

    width: 174px;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(100, 100, 100, 0.4);
    text-align: center;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}


.hander_nav .item:hover .subitem {
    opacity: 1;
    visibility: visible;
}

.hander_nav .subitem .link {
    display: block;
    height: 40px;
    line-height: 40px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    transition: .24s;
}

.hander_nav .subitem .link:hover {
    background-color: #e48011;
    color: #fff;
}

.hander_nav .item_line {
    height: 3px;
    width: 60px;
    position: absolute;
    bottom: 0;
    left: 30px;
    background-color: #e48011;
}

.hander_nav .item_lng {
    position: absolute;
    top: -40px;
    right: 170px;
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #ccc;
}

.hander_nav .item_lng a {
    padding: 0 10px;
}

.hander_nav .item_lng .iconfont {
    color: #58b8e1;
}

.hander_nav .item_lng .subitem {
    width: 100px;
    top: 34px;
    margin-left: -50px;
}

.hander_nav .item_lng .subitem a {
    padding: 0 20px;
}

.hander_nav .item_pics {
    position: absolute;
    top: -40px;
    width: 50px;
    height: 37px;
    line-height: 37px;
    font-size: 22px;
    cursor: pointer;
    text-align: center;
}

.hander_nav .item_wx {
    right: 70px;
}

.hander_nav .item_weibo {
    right: 10px;
}

.hander_nav .item_matrix {
    right: 10px;
    font-size: 14px;
    width: 150px;
}

.hander_nav .item_matrix:hover {
    color: #e48011;
}

.hander_nav .item_pics .pics {
    margin-left: 10px;
}

.hander_nav .item_pics .dl {
    float: left;
    margin: 10px;
}

.hander_nav .item_pics .dt {
    width: 150px;
    height: 150px;
}

.hander_nav .item_pics .dd {
    width: 150px;
    height: 40px;
    line-height: 20px;
    text-align: center;
    font-size: 13px;
}

.hander_nav .item_pics img {
    max-width: 100%;
    max-height: 100%;
}

.hander_nav .item_pics .subitem {
    top: 35px;
    left: auto;
    right: 0;
}

.hander_nav .item_wx .subitem {
    width: 530px;
}

.hander_nav .item_weibo .subitem {
    width: 190px;
}


.wap_menu_cmd {
    position: absolute;
    top: 5px;
    right: 15px;
    line-height: 1;
    padding: 10px;
    font-size: 26px;
    cursor: pointer;

    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: none;
}

.wap_menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    text-align: left;
    width: 100%;
    height: 100%;
    background-color: #fff;
    font-size: 16px;
    transform: translate3d(100%, 0, 0);
    transition: transform .3s ease-in-out;
    overflow: hidden;
    display: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.wap_menu.active {
    transform: translate3d(0, 0, 0);
}


.wap_menu .link {
    height: 50px;
    line-height: 50px;
    display: block;
    margin: 0 10px;
    border-bottom: 1px solid #ddd;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.wap_menu .link:after {
    font-family: "iconfont" !important;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 22px;
    height: 50px;
    line-height: 50px;
    background-color: #fff;
    width: 40px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e6ad";
    color: #999;
}

.wap_menu .tit {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    background-color: #fefefe;
    text-align: center;
    border-bottom: 1px solid #ddd;
    position: absolute;
    top: 0;
    left: 0;
}

.wap_menu .tit i {
    position: absolute;
    left: 5px;
    top: 5px;
    display: block;
    height: 40px;
    line-height: 40px;
    font-size: 28px;
    color: #58b8e1;
}

.wap_menu .tit img {
    width: auto;
    height: 40px;
    margin-top: 5px;
}

.wap_menu .items {
    width: 100%;
    height: 100%;
    font-size: 16px;
    box-sizing: border-box;
    border-top: 50px solid transparent;

    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-bottom: 40px;
}


@media (max-width: 980px) {
    .hander_sp {
        height: 60px;
    }

    .hander {
        width: 100%;
        height: 50px;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #fff;
    }

    .hander .logo {
        height: 50px;
        width: auto;
        top: 0;
        left: 5px;
    }

    .hander .logo img {
        height: 100%;
    }

    .hander_nav {
        display: none;
    }

    .wap_menu_cmd {
        display: block;
    }

    .wap_menu {
        display: block;
    }
}


/**
footer
 */
.footer {
    background-color: #58b8e1;
    min-height: 200px;
    color: #fff;
    padding-top: 20px;
}

.footer_wrap {
    position: relative;
    text-align: center;
}

.footer_nav {
    margin-top: 30px;
}

.footer_nav .item {
    display: inline-block;
    padding: 5px;
    margin: 0 10px 10px 0;
}

.footer_nav .item a {
    color: #fff;
}

.footer_nav .item a:hover {
    color: #eee;
}

.footer_txt a {
    color: #fff;
}

.footer_txt a:hover {
    color: #eee;
}

.footer_qrcode {
    position: absolute;
    top: -20px;
    right: 5px;
    width: 220px;
    display: none;
}

.footer_qrcode .item {
    float: left;
    width: 100px;
    margin: 5px;
    text-align: center;
    font-size: 12px;
}

.footer_qrcode .radius50 {
    border: 1px solid #ddd;
    border-radius: 50%;
    overflow: hidden;
}


.footer_qrcode .pic {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
}

.footer_qrcode img {
    width: 100%;
    height: 100%;
}

@media (max-width: 640px) {
    .footer_qrcode {
        position: relative;
        top: auto;
        right: auto;
        margin: 10px auto;
    }
}


/*
.animated
*/
.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}


@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}


/*
 * banner
 * */
.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner .items {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner .item {
    float: left;
    width: 100%;
    position: relative;
}

.banner .item .dl {
    width: 100%;
    position: relative;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    padding-bottom: 42%;
}

.banner .item .pic {
    position: absolute;
    width: 100%;
    height: 100%;
}

.banner .item img {
    width: 100%;
    max-height: 100%;
}

.banner .navi {
    position: absolute;
    bottom: 6%;
    left: 0;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.banner .navi a {
    width: 10px;
    height: 10px;
    line-height: 0;
    font-size: 0;
    text-decoration: none;
    border-radius: 50%;
    background-color: #58b8e1;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}

.banner .navi a.selected {
    background-color: #f08200;
}

.banner .prev,
.banner .next {
    position: absolute;
    z-index: 100;
    top: 40%;
    font-size: 36px;
    color: #fff;
    background-color: rgba(0, 0, 0, .6);
    cursor: pointer;
    display: none;
}

.banner .prev {
    left: 0;
}

.banner .next {
    right: 0;
}

@media (max-width: 760px) {
    .banner .prev,
    .banner .next {
        top: 40%;
        font-size: 20px;
    }
}


.sidebar_qrcode {
    position: fixed;
    top: 35%;
    right: 0;
    z-index: 3000;
    width: 120px;
    height: 320px;
}

.sidebar_qrcode .item {
    width: 120px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 12px;
}

.sidebar_qrcode .pic img {
    width: 90%;
    height: auto;
    margin: 0 auto;
}

.sidebar_qrcode .dt {
    line-height: 1.2;
}

.sidebar_qrcode_layer {
    border: 1px solid #ddd;
    background-color: #fff;
    padding-top: 10px;
    color: #999;
    transition: 0.3s;
}

.sidebar_qrcode_layer_show .sidebar_qrcode_layer {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    z-index: 3000;
    margin-left: -203px;
    margin-top: -120px;
    width: 406px;
}

.sidebar_qrcode_layer_show .item {
    float: left;
    width: 200px;
    font-size: 14px;
}


@media (max-width: 1200px) {
    .sidebar_qrcode {
        display: none;
    }
}

/*
 * play_icon
 * */
.play_icon {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    z-index: 100;
    border-radius: 50%;
    line-height: 0;
    background-color: rgba(100, 100, 100, 0.4);
    border: 2px solid #fff;
}

.ie8_fix .play_icon {
    filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr=#66666666, endColorstr=#66666666); /*IE8支持*/
}

.play_icon:before {
    font-family: "iconfont" !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 38px;
    text-align: center;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e61d";
    color: #fff;
}

@media (max-width: 640px) {
    .play_icon {
        width: 50px;
        height: 50px;
        margin: -25px 0 0 -25px;

    }

    .play_icon:before {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 32px;
        left: 0;
    }
}

/*
 * banner_vod
 * */
.banner_vod {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner_vod .item {
    width: 100%;
    position: relative;
}

.banner_vod .pic {
    position: relative;
    cursor: pointer;
}

.banner_vod img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: inline-block;
}

.banner_vod .bg {
    width: 100%;
    display: none;
    background-color: #000;
    text-align: center;
}

.banner_vod .con {
    margin: 0 auto;
    max-width: 100%;
    display: inline-block;
}

.banner_vod .banner_video .pic {
    display: none;
}

.banner_vod .banner_video .dl {
    height: auto;
    padding-bottom: 0;
}

.banner_vod .banner_video .bg {
    display: block;
}


/*
 * pics_con
 * */
.pics_con {
    text-align: center;
}

.pics_con img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: inline-block;
}

img.img_zoom {
    cursor: pointer;
}


/*
 * info_con
 * */
.info_con {
    max-width: 100%;
    margin: 0 auto;
    font-size: 14px;
    word-wrap: break-word;
    overflow: hidden;
    line-height: 1.8;
}

.info_con img {
    max-width: 100%;
    height: auto;
}

.info_con video {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.info_con strong {
    font-weight: bold;
}

.info_con em {
    font-style: italic;
}

.info_con i {
    font-style: italic;
}

.info_con s {
    text-decoration: line-through;
}

.info_con u {
    text-decoration: underline;
}

.info_con ul {
    list-style: disc inside none;
}

.info_con ol {
    list-style: decimal inside none;
}

.info_con table td {
    padding: 5px;
}

/*wap*/
@media (max-width: 640px) {
    .info_con {
        font-size: 15px;
    }
}


/*
* pagination
* */
.pagination {
    text-align: center;
    margin-top: 10px;
    margin-left: 30px;
}

.pagination span,
.pagination a,
.pagination span.page,
.pagination span.page_more,
.pagination a.page {
    margin: 4px;
    height: 30px;
    line-height: 30px;
    min-width: 40px;
    overflow: hidden;
    display: inline-block;
    font-size: 14px;
    color: #6c6c6c;
    text-align: center;
    padding: 0 10px;
}

.pagination span.page,
.pagination span.page_more,
.pagination a.page {
    border: 1px solid #ddd;
    background-color: #fcfcfc;
    border-radius: 2px;
    cursor: pointer;
}

.pagination span.page:hover,
.pagination span.selected,
.pagination a.page:hover,
.pagination a.selected {
    color: #fff;
    background-color: #db7c16;
    border: 1px solid #db7c16;
}

.pagination span.disabled,
.pagination a.disabled {
    color: #aaa;
    background-color: #eee;
}

.pagination span.disabled:hover,
.pagination a.disabled:hover {
    color: #aaa;
    background-color: #eee;
    border: 1px solid #ddd;
    cursor: not-allowed;
}

.pagination span.sp {
    color: #777;
    *display: inline;
    *zoom: 1;
}

.pagination .iconfont {
    font-size: 18px;
}

.pagination span.page_more {
    color: #fff;
    background-color: #db7c16;
    border: 1px solid #db7c16;
    height: auto;
}


/*
page_title
*/
.page_title {
    position: relative;
    margin: 20px 0;
    font-size: 18px;
}

.page_title .dd {
    color: #999;
}

.page_title .dt {
    font-size: 22px;
}

.page_hr {
    height: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.page_more {
    border: 1px solid #999;
    padding: 5px 40px;
    border-radius: 20px;
    display: inline-block;
    margin: 10px auto;
    color: #666;
}

.page_more:hover {
    background-color: #e48011;
    color: #fff;
    border: 1px solid #e48011;
}

/*
menu_info
*/
.menu_info_bg {
    background-color: #f3f3f3;
}

.menu_info_tc {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}


/*wap*/
@media (max-width: 640px) {
    .menu_info_tc {
        width: 90%;
    }
}


.founder_title {
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    padding: 10px;
    font-size: 16px;
    width: 200px;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
}

.founder_bg {
    background-color: #db7c16;
    color: #fff;
}

.founder_bg .page_more {
    color: #fff;
    border: 1px solid #fff;
}

.founder_sp {
    height: 50px;
}

.founder_txt_wrap {
    position: relative;
    padding-bottom: 40%;
}

.founder_txt {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
}

/*wap*/
@media (max-width: 860px) {
    .founder_sp {
        height: 20px;
    }

    .founder_txt_wrap {
        padding-bottom: 42%;
    }

    .founder_txt_wrap h2 {
        font-size: 22px;
    }

    .founder_txt .info_con {
        font-size: 12px;
    }
}


@media (max-width: 630px) {
    .founder_txt_wrap {
        padding-bottom: 0;
    }

    .founder_txt {
        position: relative;
        padding: 30px 0;
    }

    .founder_txt .info_con {
        font-size: 14px;
    }
}

/*page_tabs*/
.page_tabs {
    text-align: center;
}

.page_tabs .items {
    display: inline-block;
}

.page_tabs .item {
    float: left;
    padding: 5px 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    margin: 0 5px 5px 5px;
}

.page_tabs .item:hover,
.page_tabs .item.active {
    background-color: #db7c16;
    border: 1px solid #db7c16;
    color: #fff;
}

@media (max-width: 630px) {
    .page_tabs .item {
        padding: 5px 10px;
        margin: 0 3px 3px 3px;
    }
}

.main_bd2 {
    border: 1px solid #ddd;
    padding: 20px;

}

/**
mapbar
 */
.mapbar {
    width: 100%;
    height: 600px;
    border: 1px solid #ccc;
    margin: 0 auto;
}

@media (max-width: 770px) {
    .mapbar {
        width: 100%;
        height: 300px;
    }
}

.map_info {
    position: relative;
    padding: 5px 5px 5px 60px;
    font-size: 13px;
    text-align: left;
}

.map_info .pic {
    position: absolute;
    top: 5px;
    left: 0;
}

.map_info .dt {
    font-size: 14px;
    font-weight: bold;
}


/**
hander_matrix
 */
.hander_matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6000;
    display: none;
}

.hander_matrix .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
}

.hander_matrix .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 6500;
    font-size: 24px;
    color: #999;
    line-height: 1;
    padding: 10px;
    cursor: pointer;
}

.hander_matrix .close:hover {
    color: #e48011;
}

.hander_matrix .box {
    position: fixed;
    top: 0;
    right: 0;
    width: 540px;
    height: 100%;
    z-index: 6100;
    background-color: #fff;
    overflow: hidden;
    overflow-y: auto;
}

.hander_matrix .box .tit {
    display: block;
    position: relative;
    height: 100px;
    line-height: 60px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #666;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.hander_matrix .box .tit img {
    width: 100%;
}

.hander_matrix .box .dt {
    height: 80px;
    line-height: 80px;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    color: #888;
    padding-left: 40px;
    position: relative;
    cursor: pointer;
    letter-spacing: 3px;
}

.hander_matrix .box .dt .iconfont {
    font-size: 20px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 8px;
    width: 30px;
    text-align: center;
}

.hander_matrix .box .dt .dot {
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 8px;
    width: 30px;
}

.hander_matrix .box .dt .dot img {
    width: 100%;
    height: auto;
}

.hander_matrix .box .dt:after {
    font-family: "iconfont" !important;
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 20px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e617";
    transition: transform .3s ease-in-out;
}

.hander_matrix .box .dd {
    background-color: #ddd;
    overflow: hidden;
    display: none;
    /*transition: all .3s ease-in-out;*/
}

.hander_matrix .box .item {
    height: 180px;
    float: left;
    width: 33%;
    padding: 5px;
    font-size: 13px;
    text-align: center;
}

.hander_matrix .box .item img {
    max-height: 130px;
}

.hander_matrix .box .active .dd {
    display: block;
}

.hander_matrix .box .active .dt:after {
    content: "\e614";
    /*
    transform:rotate(180deg);
    -moz-transform:rotate(180deg);
    -webkit-transform:rotate(180deg);
    -o-transform:rotate(180deg);
    */
}

.hander_matrix .box .more {
    line-height: 80px;
    text-align: center;
    font-size: 18px;
    color: #666;
}

.item_matrix_wap {
    display: none;
}

@media (max-width: 640px) {
    .item_matrix_wap {
        display: block;
    }

    .hander_matrix .box {
        width: 100%;
    }

    .hander_matrix .box .item {
        width: 50%;
    }
}

/*
.page_matrix
*/
.page_matrix .hander_matrix {
    position: relative;
    display: block;
}

.page_matrix .hander_matrix .box {
    position: relative;
    display: block;
    margin: 0 auto;
}

.page_matrix .hander_matrix .bg {
    display: none;
}

