﻿* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}


/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
}


/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}

/* 禁用历史输入的蓝色边框 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 100px white inset !important;
}

/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}

.w100 {
    width: 100%;
}

.fl {
    float: left;
}

.fr {
    float: right;
}


/*原文件配置*/

body {
    color: #303133;
    background: #F7FAFF;
    font: 16px/30px 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
    padding-top: 54px;
}

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

a:hover {
    color: #FF5000;
}


/*块级转化*/

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/*原文件配置  end*/


/*纵向居中*/

.v_middle {
    vertical-align: middle;
}


/*横向居中*/

.te_c {
    text-align: center;
}


/*相对定位*/

.p_r {
    position: relative;
}


/* 白色背景 */

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: pace-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

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

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

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

.transition {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

img {
    transition: all .8s;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mark {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: -1;
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.mark.on {
    z-index: 99;
    opacity: .8;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 54px;
    background-color: #000;
}

.header .logo {
    height: 54px;
    margin-right: 13px;
}

.header .logo img {
    height: 24px;
}

.header .reg-btn {
    line-height: 54px;
    font-size: 14px;
}

.header .reg-btn a:first-child {
    padding: 0 20px;
    color: #FFF;
}

.header .reg-btn a:last-child {
    background-color: #FF5000;
    color: #000;
    padding: 0 20px;
    z-index: 2;
}

.nav>ul>li>a {
    color: #FFF;
    font-size: 14px;
    line-height: 54px;
    padding: 0 12px;
}

.nav>ul>li .tit {
    margin-right: 15px;
}

.nav>ul>li:nth-child(1)::after,
.nav>ul>li:nth-child(2)::after,
.nav>ul>li:nth-child(4)::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 5px transparent solid;
    border-right: 5px transparent solid;
    border-top: 5px #FFF solid;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.nav .subnav {
    position: absolute;
    left: 0;
    background-color: #000;
    padding: 0px 30px 20px 30px;
    display: none;
}

.nav>ul>li:nth-child(2) .subnav {
    width: 160px;
}

.nav>ul>li:nth-child(4) .subnav {
    width: 120px;
}

.nav .subnav a {
    font-size: 14px;
    color: #FFF;
    line-height: 2;
}

.nav .subnav.sub-pro {
    width: 260px;
}

.nav .subnav.sub-pro a {
    padding-left: 40px;
    margin-top: 20px;
    line-height: 1.4;
}

.nav .subnav.sub-pro img {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
}

.nav .subnav.sub-pro .txt {
    font-size: 12px;
    color: #909399;
    line-height: 1.4;
}

.m-btn {
    position: absolute;
    right: 15px;
    top: 0;
    width: 40px;
    height: 100%;
    background: url(../fonts/m-btn.svg)no-repeat center;
    background-size: 100%;
    display: none;
}

.free {
    display: none;
    background-color: #FF5000;
    color: #000;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    padding: 0 20px;
    line-height: 35px;
}

.copyright {
    width: 100%;
    background-color: #1a1c1f;
    color: rgba(255, 255, 255, .8);
    padding: 10px 20px;
    font-size: 14px;
}

.copyright a {
    color: rgba(255, 255, 255, .8);
    margin-left: 10px;
}

.footer {
    background-color: #212329;
    padding-top: 46px;
    padding-bottom: 15px;
}

.footer .logo img {
    height: 22px;
}

.footer .mail {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 8px;

}

.footer .f-nav li {
    margin-right: 65px;
}

.footer .f-nav li:last-child {
    margin-right: 0;
}

.footer .f-nav h4 {
    font-size: 20px;
    color: #FFF;
    font-weight: normal;
}

.footer .f-nav .sub {
    line-height: 2;
    margin-top: 10px;
}

.footer .f-nav .sub a {
    color: #C0C4CC;
}

.footer .link {
    border-top: 1px #4C4E53 solid;
    padding: 10px 0;
    color: #909399;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 50px;
}

.footer .link .friend {
    flex: 2;
}

.footer .link .lang {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #909399;
    cursor: pointer;
    position: relative;
}

.footer .link .lang .ul {
    position: absolute;
    left: 40px;
    top: 0;
    transform: translateY(-100%);
    width: 80px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.footer .link .lang .ul a {
    text-align: center;
    margin: 0;
}

.footer .link .lang .ul a:hover {
    background-color: #FF5000;
}

.footer .link .lang span {
    color: #fff;
}

.footer .link .lang::after {
    transform: translate(80%, 30%);
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 6px solid #FFFFFF;
    border-bottom: 4px solid transparent;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;


}

.footer .link a {
    color: #909399;
    margin-left: 30px;
}

.footer .link a:last-child {
    margin-right: 0;
}

.footer .info-con {
    color: #FFF;
}

.footer .info-con .text {
    font-size: 20px;
    border-bottom: 1px #4C4E53 solid;
    padding-bottom: 15px;
    margin-top: 5px;
}

.footer .info-con .tel {
    font-size: 14px;
    line-height: 2;
    margin-top: 10px;
}

.footer .info-con .erwma {
    display: flex;
    margin-top: 16px;
}

.footer .info-con .erwma .left {
    width: 96px;

}

.footer .info-con .erwma .right {
    display: flex;
    padding-left: 26px;
}

.footer .info-con .erwma .right a {
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

.footer .info-con .erwma .right a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer .info-con .erwma .pic {
    width: 100%;
    height: 96px;
    overflow: hidden;
    background-color: #FFF;
}

.footer .info-con .erwma .pic img {
    width: 100%;
}

.footer .info-con .erwma .txt {
    font-size: 12px;
}

.footer .m-tit {
    display: none;
    font-size: 24px;
    line-height: 1.8;
}

.footer .m-text {
    display: none;
    line-height: 2;
    color: #C0C4CC;
    width: 100%;
    margin-top: 20px;
}

.footer .m-text a{
    color: #C0C4CC;
}

.pub-text {
    width: 100%;
    height: 400px;
    background: url(../images/bg.png)no-repeat center top;
    color: #FFF;
    background-size: 100% 100%;
}

.pub-text .title {
    font-size: 40px;
    line-height: 1.4;
}

.pub-text a {
    width: 196px;
    height: 54px;
    color: #fff;
    background-color: #FF5000;
    font-size: 18px;
    margin-top: 70px;
    z-index: 2;
    border-radius: 4px;
}

.pub-text a::after,
.header .reg-btn a:last-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 0;
    height: 100%;
    border-radius: 4px;
    background-color: #fc6500;
    transition: all .3s ease;
}

.pub-banner {
    overflow: hidden;
    color: #FFF;
    font-size: 54px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
}

.pub-subnav {
    z-index: 2;
    background-color: #FFF;
    height: 64px;
    box-shadow: 0px 4px 8px 0px rgba(33, 35, 41, 0.08);
    margin-top: -32px;
    z-index: 9;
    margin-left: auto;
    margin-right: auto;
    line-height: 64px;
    font-size: 20px;
}

.pub-subnav .item {
    /* flex: 1; */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pub-subnav a {
    display: inline-block;
    color: #4D4D4D;
}

.pub-subnav a.on {
    color: #000;
}

.pub-subnav a.on::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #FF5000;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width:1025px) {

    .copyright a:hover,
    .footer .link a:hover,
    .footer .f-nav .sub a:hover {
        color: rgba(255, 255, 255, 1);
    }

    .nav>ul>li:hover>a {
        color: #FF5000;
    }

    .nav .subnav.sub-pro a:hover .name,
    .nav>ul>li:nth-child(2) .subnav a:hover,
    .nav>ul>li:nth-child(4) .subnav a:hover {
        color: #FF5000;
        text-decoration: underline;
    }

    .nav>ul>li:hover:nth-child(1)::after,
    .nav>ul>li:hover:nth-child(2)::after,
    .nav>ul>li:hover:nth-child(4)::after {
        border-top: 5px #FF5000 solid;
        transform: translateY(-50%) rotate(180deg);
        -webkit-transform: translateY(-50%) rotate(180deg);
        -moz-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
        -o-transform: translateY(-50%) rotate(180deg);
    }

    .nav>ul>li:hover .subnav {
        display: block;
    }

    .pub-text a:hover::after,
    .header .reg-btn a:hover:last-child:after {
        width: 100%;
    }
}

@media (max-width:1199px) {
    .container {
        padding: 0 20px;
    }

    .footer .f-nav,
    .footer .link,
    .footer .logo,
    .footer .info-con .text,
    .footer .info-con .tel,
    .header .reg-btn {
        display: none;
    }

    .footer .info-con {
        width: 100%;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .footer .m-tit,
    .footer .m-text,
    .free,
    .m-btn {
        display: block;
    }

    .float-wrapper {
        display: none;
    }

    .footer .info-con .erwma {
        margin-top: 20px;
    }

    .nav {
        position: fixed;
        right: -60%;
        top: 54px;
        width: 60%;
        height: calc(100% - 54px);
        z-index: 100;
        background-color: #000;
        padding: 15px;
    }

    .nav>ul {
        flex-flow: column;
    }

    .nav>ul>li>a {
        line-height: 40px;
        display: block;
    }

    .nav>ul>li:nth-child(1)::after,
    .nav>ul>li:nth-child(2)::after,
    .nav>ul>li:nth-child(4)::after {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        top: 20px;
    }

    .nav .subnav {
        width: 100% !important;
        position: inherit;
        left: auto;
        padding-left: 15px;
        padding-right: 15px;
        overflow-y: auto;
    }

    .pub-text {
        height: 320px;
    }

    .pub-text .title {
        font-size: 32px;
    }

    .pub-text a {
        font-size: 16px;
        margin-top: 50px;
    }

    .pub-banner {
        font-size: 36px;
        height: 320px;
    }
}

@media (max-width:767px) {

    body,
    .pub-text a {
        font-size: 14px;
    }

    .footer {
        padding-top: 20px;
    }

    .pub-text .title {
        font-size: 24px;
        padding: 0 20px;
    }

    .pub-text a {
        width: 130px;
        height: 40px;
    }

    .pub-banner {
        font-size: 24px;
        height: 220px;
    }

    .pub-subnav a {
        font-size: 14px;
    }
}

@media (max-width:480px) {
    .pub-subnav {
        height: 48px;
        line-height: 48px;
        margin-top: -24px;
    }

    .footer .info-con .erwma {
        flex-direction: column;
    }

    .footer .info-con .erwma .right {
        padding: 0;
    }
}


/* 新闻 */

.news,
.resource {
    padding-bottom: 100px;
}

.news .pub-subnav {
    width: 800px;
}

.news .pub-subnav a {
    margin: 0 100px;
}

.news .info-con {
    margin-top: 50px;
    padding-bottom: 50px;
}

.news .info-con .swiper-slide {
    background-color: #FFF;
}

.news .info-con .swiper-slide .pic {
    height: 415px;
    width: 61%;
    overflow: hidden;
}

.news .info-con .text-content {
    padding: 50px 50px 0 50px;
}

.news .info-con .text-content span,
.news li span,
.news .details .content .info .text-con span,
.resource .details .content .info .text-con span,
.sidebar .tj span {
    background-color: #FF5000;
    color: #fff;
    font-size: 14px;
    height: 34px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 96px; */
    border-radius: 4px;
}

.news .info-con .text-content .tit {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 600;
    margin-top: 15px;
}

.resource .details .content .tit {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 600;
}

.news .info-con .text-content .text {
    font-size: 14px;
    color: #4D4D4D;
    line-height: 1.8;
    margin-top: 20px;
}

.news .info-con .text-content .date,
.news .details .content .info .text-con .date,
.resource .details .content .info .text-con .date {
    font-size: 14px;
    margin-top: 20px;
    color: #909399;
}

.news .info-con .swiper-pagination {
    bottom: 0;
}

.news .info-con .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: #E5E6E7;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.news .info-con .swiper-pagination-bullet-active {
    background-color: #FF5000;
}

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

.news li {
    background-color: #FFF;
    width: 32%;
    margin-right: 2%;
    margin-top: 30px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.news li:nth-of-type(3n) {
    margin-right: 0;
}

.news li .pic {
    overflow: hidden;
    height: 215px;
}

.news li .text-con {
    padding: 15px;
}

.news li .tit {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

.news li .date {
    font-size: 14px;
    margin-top: 10px;
    color: #4D4D4D;
}

.crumbs {
    background-color: #FFF;
    height: 46px;
    line-height: 46px;
    margin-top: 30px;
    color: #909399;
    font-size: 14px;
    padding-left: 40px;
    border-radius: 8px;
}

.crumbs a {
    color: #606266;
    margin: 0 10px;
}

.crumbs a:first-child {
    margin-left: 0;
}

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

.details {
    margin-top: 30px;
}

.details .content {
    margin-right: 25px;
 
}

.details .content .info {
    background-color: #FFF;
border-radius: 8px 8px 8px 8px;
overflow: hidden;
}

.details .content .info .text-con {
    padding: 30px;
}
.details .content .info .text-con.flex-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.details .content .info .text-con.flex-column .block{
    margin-bottom: 24px;
}

.news .details .content .info .text-con h3 {
    color: #000;
    font-size: 24px;
    margin-top: 20px;
    line-height: 1.5;
}

.news .details .content .info .text-con .date {
    margin-top: 10px;
}

.news .details .content .pic,
.resource .details .content .pic {
    /* width: 61%; */
    overflow: hidden;
    height: 295px;
    /* height: auto; */
}

.news .details .content .pic img,
.resource .details .content .pic img{ 
    object-fit: fill;
}

.details .content .info .text-con .date em {
    font-style: normal;
    margin-right: 20px;
}

.details .content .info .text-con .tags {
    margin-top: 15px;
}

.details .content .info .text-con .tags a {
    margin-top: 10px;
    background-color: #f5f5f5;
    font-size: 14px;
    color: #909399;
    line-height: 34px;
    height: 34px;
    padding: 0 10px;
    margin-right: 10px;
}

.details .content .info .text-con .tags a:hover {
    color: #909399;
}

.details .content .info .text-con .tags a:last-child {
    margin-right: 0;
}

.details .content .body {
    background-color: #FFF;
    margin-top: 25px;
    padding: 30px;
    font-size: 14px;
    line-height: 2;
    border-radius: 8px;
}

.details .content .body p {
    margin: 20px 0;
}

.details .content .body p:first-child {
    margin-top: 0;
}

.details .content .body img {
    max-width: 100%;
    margin-top: 20px;
}

.details .content .body .txt {
    color: #909399;
}

.sidebar {
    width: 315px;
}

.sidebar .erwma-con {
    height: auto;
    width: 100%;
    /* background: url(../images/bg.jpg)no-repeat center; */
    background-size: cover;
    color: #FFF;
    /* padding-bottom: 20px; */
    padding: 16px;
    background-color: #FFF;
}

.sidebar .erwma-con .img {
    width: 100%;
    height: auto;
}

.sidebar .erwma-con .pic {
    border: 3px #FF5000 solid;
    width: 94px;
    height: 94px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}

.sidebar .erwma-con .pic img {
    width: 100%;
    height: 100%;
}

.sidebar .erwma-con .txt {
    font-size: 12px;
    margin-top: 5px;
}

.sidebar .tj {
    background-color: #FFF;
    padding: 15px;
    margin-top: 24px;
    border-radius: 8px;
}

.sidebar .tj h4 {
    font-size: 18px;
}

.sidebar .tj li {
    width: 100%;
    margin-top: 15px;
}

.sidebar .tj li .pic {
    width: 100%;
    overflow: hidden;
    height: 160px;
}

.sidebar .tj li .text-con {
    border: 1px #e1e4eb solid;
    border-top: 0;
    padding: 15px;
}

.sidebar .tj li .title {
    line-height: 1.8;
    margin-top: 8px;
}

.sidebar .tj li .title:hover {
    color: #000;
}

.readall_box {
    position: relative;
    z-index: 10;
    padding: 0 0 25px;
    margin-top: -300px;
    text-align: center;
}

.readall_box .read_more_mask {
    height: 300px;
    background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    background: -webkit-gradient(linear, 0 top, 0 bottom, from(rgba(255, 255, 255, 0)), to(#fff));
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0))
}

.read_more_btn {
    cursor: pointer;
    font-size: 14px;
    line-height: 30px;
    background: url(../images/up.png)right center no-repeat;
    background-size: 16px;
    padding-right: 20px;
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.read_more_btn:hover {
    color: #000;
}

.resource .details .content .info .text-con span {
    margin-right: 10px;
    line-height: 34px;
    transform: translateY(-4px);
    display: inline-block;
}

.resource .details .content h3 {
    color: #000;
    font-size: 24px;
    line-height: 1.5;
}

.resource .details .content h3 span {
    font-weight: normal;
}

.resource .details .content .info .text-con .date {
    margin-top: 10px;
}

.resource .details .content .down {
    background-color: #ff9900;
    font-size: 14px;
    height: 34px;
    line-height: 34px;
    color: #FFF;
    width: 105px;
    margin-top: 28px;
    border-radius: 4px;
}

.resource .details .content .down i {
    width: 12px;
    height: 12px;
    background: url(../images/down.svg)no-repeat center;
    background-size: 100%;
    margin-left: 4px;
}

.float-wrapper {
    background-color: #FFF;
    opacity: 0;
    z-index: -1;
    position: fixed;
    top: 54px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 15px 20px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    width: 860px;
    transition: all .2s;
}

.float-wrapper.show {
    opacity: 1;
    z-index: 1;
}

.float-wrapper .down {
    margin-top: 0 !important;
}

.fixed-top {
    position: fixed;
    z-index: 11;
    opacity: 1;
    top: 54px;
}

.pop-reg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: none;
}

.pop-reg .content {
    background-color: #FFF;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 340px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 20px 20px 30px 20px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    font-size: 12px;
}

.pop-reg .content .tit {
    font-size: 16px;
}

.pop-reg .content .tit a {
    color: #606266;
    background: url(../fonts/arrow-right.svg)no-repeat right center;
    background-size: 14px;
    padding-right: 20px;
    font-size: 12px;
}

.pop-reg .content .group {
    margin-top: 20px;
    height: 34px;
}

.pop-reg .content .tel {
    border: 1px #E1E4EB solid;
}

.pop-reg .content .tel .number {
    border-right: 1px #E1E4EB solid;
    width: 80px;
    padding-left: 15px;
}

.pop-reg .content .tel .number::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 10px;
    width: 7px;
    height: 7px;
    border-bottom: 2px #d0d3d9 solid;
    border-right: 2px #d0d3d9 solid;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.pop-reg .content input[type='text'] {
    width: 100%;
    height: 32px;
    padding: 0 15px;
    font-size: 12px;
}

.pop-reg .content .code input {
    border: 1px #E1E4EB solid;
    border-right: 0;
}

.pop-reg .content .code button {
    background-color: #FF5000;
    padding: 0 10px;
    font-size: 12px;
}

.pop-reg .content .code1 {
    border: 1px #E1E4EB solid;
}

.Checkbox {
    margin-top: 10px;
}

.Checkbox input {
    display: none
}

.Checkbox label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 22px;
    color: #909399;
    font-size: 12px;
    white-space: nowrap;
}

.Checkbox label:before {
    box-sizing: border-box;
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #707070;
    vertical-align: middle;
    display: inline-block;
    transition: 0.1s;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
    position: absolute;
    left: 0;
    top: 7px;
}

.Checkbox input:checked+label:before {
    background-color: #FF5000;
    border-color: #FF5000;
}

.Checkbox input:checked+label::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 5px;
    height: 10px;
    border-bottom: 2px #FFF solid;
    border-right: 2px #FFF solid;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.select-wrapper {
    width: 100%;
    height: 34px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    display: inline;
    background: #fff;
    border: 1px #E1E4EB solid;
}

.select-button {
    width: 100%;
    height: 32px;
    border: 0;
    cursor: pointer;
    padding: 0 15px;
    overflow: hidden;
    text-align: left;
    outline: none;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    background-color: #FFF;
    font-size: 12px;
    color: #666;
}

.select-down {
    position: absolute;
    top: 35%;
    right: 15px;
    border-right: 1px #212121 solid;
    border-bottom: 1px #212121 solid;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.disabled {
    color: #cccccc;
}

.select-list {
    width: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 0 3px #ddd;
    display: none;
    z-index: 2;
    position: absolute;
    left: -1px;
    top: 32px;
    overflow: hidden;
}

.select-list ul {
    overflow-x: hidden;
    overflow-y: auto;
}

.select-list ul li {
    width: auto;
    padding-left: 15px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    font-size: 12px;
    line-height: 30px;
    height: 30px;
}

.select-list ul li.selected,
.select-list ul li:hover {
    color: #fff;
    background: #FF5000;
}

.pop-reg .content input[type='submit'] {
    width: 100%;
    height: 40px;
    font-size: 16px;
    background-color: #FF5000;
    margin-top: 15px;
}

@media (min-width:1025px) {
    .news li:hover {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
    }

    .news li:hover .tit {
        color: #000;
        text-decoration: underline;
    }

    .news .info-con .swiper-slide:hover .pic img,
    .news li:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }

    .crumbs a:hover,
    .pop-reg .content .tit a:hover {
        color: #FF5000;
    }
}

@media (max-width:1199px) {
    .news .pub-subnav {
        width: 100%;
    }

    .news .info-con .text-content {
        padding: 30px;
    }

    .news .info-con .text-content .tit {
        font-size: 20px;
    }

    .news .details .content .info .text-con h3 {
        font-size: 20px;
    }

    .sidebar {
        width: 280px;
    }

    .sidebar .tj li .title,
    .sidebar .erwma-con .text {
        font-size: 14px;
    }
}

@media (max-width:950px) {

    .news .details,
    .resource .details,
    .resource .details .content .info {
        flex-flow: column;
    }

    .details .content {
        margin-right: 0;
    }

    .sidebar {
        width: 100%;
        margin-top: 24px;
    }

    .sidebar .tj li .pic {
        height: 240px;
    }

    .news li {
        width: 49%;
    }

    .news li:nth-of-type(3n) {
        margin-right: 2%;
    }

    .news li:nth-child(even) {
        margin-right: 0;
    }
}

@media (max-width:767px) {
    .news .pub-subnav a {
        margin: 0 50px;
    }

    .news .info-con .swiper-slide>div,
    .news .details .content .info {
        flex-flow: column;
    }

    .news .info-con .swiper-slide .pic {
        order: 1;
        width: 100%;
        height: 260px;
    }

    .news .info-con .text-content {
        order: 2;
        padding: 15px;
    }

    .news .info-con .text-content .tit {
        font-size: 18px;
    }

    .details .content .info .text-con {
        order: 2;
        padding: 20px;
    }

    .container .details .content .pic {
        width: 100%;
        height: auto;
        order: 1;
    }

    .resource .details .content h3 {
        font-size: 20px;
    }
}

@media (max-width:480px) {
    .news .pub-subnav a {
        margin: 0 30px;
    }

    .news .info-con {
        margin-top: 30px;
    }

    .news .info-con .text-content .tit,
    .news li .tit {
        font-size: 16px;
    }

    .news li {
        width: 100%;
        margin-right: 0;
    }

    .news ul {
        margin-top: 0px;
    }

    .sidebar .tj li .pic {
        height: 180px;
    }

    .news .details .content .info .text-con,
    .details .content .body {
        padding: 20px;
    }

    .news .details .content .info .text-con h3 {
        font-size: 18px;
    }

    .resource .details .content h3 {
        font-size: 18px;
    }
}


/* 资源 */
.card {
    border-radius: 10px;
}

li.card {
    display: flex;
    flex-direction: column;
}

li.card>.text-con {
    flex: 1;
}

.resources-center .sort input[type='reset'] {
    color: #FF5000;
    border-color: #FF5000;
}

.resources-center .pub-subnav {
    padding: 0 20px;
    border-radius: 4px;
}

.resources-center .info-con {
    margin-top: 50px;
    padding-bottom: 50px;
}

.resources-center .info-con .swiper-slide {
    background-color: #FFF;
    border-radius: 8px;
    overflow: hidden;
}

.resources-center .info-con .swiper-slide .pic {
    height: 415px;
    /* width: 61%; */
    overflow: hidden;
}

.resources-center .info-con .swiper-slide .pic img{
    width: auto;
}

.resources-con {
    margin-bottom: 50px;
}

.resources-center .info-con .text-content {
    padding: 50px 50px 0 50px;
    border: 1px #E1E4EB solid;    
    border-radius: 10px 0px 0px  10px;
    overflow: hidden;
}

.resources-center .info-con .text-content span,
.resources-center li span {
    background-color: #FF5000;
    color: #fff;
    font-size: 14px;
    height: 34px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 96px; */
    border-radius: 4px;
}

.resources-center .info-con .text-content .tit {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 600;
    margin-top: 15px;
}

.resources-center .info-con .text-content .text {
    font-size: 14px;
    color: #4D4D4D;
    line-height: 1.8;
    margin-top: 20px;
}

.resources-center .info-con .text-content .date {
    font-size: 14px;
    margin-top: 20px;
    color: #909399;
}

.resources-center .date em {
    font-style: normal;
    margin-right: 15px;
}

.resources-center .info-con .text-content .tags {
    margin-top: 15px;
}

.resources-center .tags a {
    margin-top: 10px;
    background-color: #f5f5f5;
    font-size: 14px;
    color: #909399;
    line-height: 34px;
    height: 34px;
    padding: 0 10px;
    margin-right: 10px;
    border-radius: 4px;
}

.resources-center .tags a:last-child {
    margin-right: 0;
}

.resources-center .info-con .swiper-pagination {
    bottom: 0;
}

.resources-center .info-con .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: #E5E6E7;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.resources-center .info-con .swiper-pagination-bullet-active {
    background-color: #FF5000;
}

.resources-center li {
    background-color: #FFF;
    width: 32%;
    margin-right: 2%;
    margin-top: 30px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.resources-center li:nth-of-type(3n) {
    margin-right: 0;
}

.resources-center li .pic {
    overflow: hidden;
    height: 215px;
    border-radius: 10px 10px 0 0;
}

.resources-center li .text-con {
    padding: 16px;
}

.resources-center li .tit {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    height: 60px;
}

.resources-center li .date {
    font-size: 14px;
    margin-top: 8px;
    color: #4D4D4D;
}

.resources-center li .tags {
    margin-left: -15px;
    margin-right: -15px;
    border-top: 1px #E1E4EB solid;
    padding: 6px 15px 0 15px;
    margin-top: 16px;
}

.resources-con .info-con .text-content .market-info,
.resources-con li .market-info {
    font-weight: 400;
    font-size: 14px;
    color: #4D4D4D;
    line-height: 26px;
    margin-top: 10px;
}

.resources-con .info-con .text-content .market-info .txt,
.resources-con li .market-info .txt {
    padding-left: 18px;
    margin-bottom: 8px;
    margin-top: 0 !important;
}

.resources-con .info-con .text-content .market-info .txt:last-of-type,
.resources-con li .market-info .txt:last-of-type{
    margin-bottom: 0;
}

.resources-con .info-con .text-content .market-info .date,
.resources-con li .market-info .date {
    background: url(../fonts/icon_date.svg) no-repeat left center;
    background-size: 14px;
}

.resources-con .info-con .text-content .market-info .addr,
.resources-con li .market-info .addr {
    background: url(../fonts/icon_addr.svg) no-repeat left center;
    background-size: 14px;
}

.resources-con li.market .text-con {
    padding-bottom: 20px;
}
.resources-con li.market .tit {
    height: auto;
    max-height: 60px;
}

.resources-con .info-con .text-content .market-info {
    color: #909399;
    margin-top: 16px;
}
.resources-con .info-con .text-content .market-info .txt {
    padding-left: 24px;
}
.resources-con .info-con .text-content .market-info .date,
.resources-con .info-con .text-content .market-info .addr {
    background-size: 16px;
}

.page {
    margin: 100px 0;
}

.page a {
    padding: 0 13px;
    line-height: 36px;
    height: 36px;
    margin: 0 5px;
    background-color: #f0f4f8;
    border-radius: 5px;
}

.page .prev,
.page .next {
    height: 36px;
    width: 36px;
}

.page .prev::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-bottom: 2px #606266 solid;
    border-left: 2px #606266 solid;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.page .next::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-top: 2px #606266 solid;
    border-right: 2px #606266 solid;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.page a.on {
    background-color: #FF5000;
    color: #FFF;
}

@media (min-width:1025px) {
    .page a:hover {
        color: #000;
    }

    .resources-center li:hover {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
    }

    .resources-center li:hover .tit {
        color: #000;
        text-decoration: underline;
    }
}

.search-con {
    background-color: #FFF;
    height: 52px;
    width: 670px;
    margin-top: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.search-con input[type='text'] {
    padding: 0 15px;
}

.search-con input[type='submit'] {
    background: url(../fonts/search.svg)no-repeat center #FF5000;
    width: 52px;
    background-size: 20px;
    border-radius: 0px;
}

/* .search-con input[type='submit']:hover {
    background-color: #4216fb;
    background-image: url(../fonts/search1.svg);
} */

.clear-btn a {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 20px;
    height: 20px;
    background: url(../fonts/close1.svg)no-repeat center;
    background-size: 100%;
    display: block;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 50%;
    background-color: #D0D3D9;
}

.clear-btn a:hover {
    background-color: #000000;
}

.sort {
    padding: 20px 15px 0px 30px;
    margin-top: 30px;
}

.sort a {
    margin-right: 15px;
    height: 44px;
    background-color: #F0F4F8;
    padding: 0 15px;
    margin-top: 10px;
    color: #4D4D4D;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.sort a:last-child {
    margin-right: 0;
}

.sort a.on {
    background-color: #FF5000;
    color: #fff;
    padding-right: 35px;
}

.sort .close {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 16px;
    height: 16px;
    background: url(../fonts/close.svg)no-repeat center;
    background-size: cover;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.sort input[type='reset'] {
    height: 44px;
    margin-top: 10px;
    padding: 0 15px;
    background: none;
    border: 1px #000000 solid;
    font-size: 16px;
    color: #000000;
    border-radius: 4px 4px 4px 4px;
}

.sort dl {
    margin-right: 60px;
}

.sort dl:nth-child(2) {
    margin-right: 40px;
}

.sort dl:last-child {
    margin-right: 0;
}

.sort dt {
    color: #000;
    margin-right: 10px;
}

.sort .current {
    background-color: #FF5000;
    color: #fff;
}

.sort dd a,
.sort dd input[type='reset'] {
    margin-top: 0;
}

.state1 {
    color: #48BD00 !important;
    background: rgba(136,204,0,0.15) !important;
    margin-left: 10px;
}

.state2 {
    color: #FF4488 !important;
    background-color: rgba(255, 68, 136, 0.08) !important;
    margin-left: 10px;
}

.state3 {
    color: #007CF8 !important;
    background: rgba(13, 127, 242, 0.12) !important;
    margin-left: 10px;
}

.state4 {
    color: #000 !important;
    background: #F1F1F1 !important;
    margin-left: 10px;
}
.state5{
    color: #4216FB !important;
    background: #EAE5FF !important;
    margin-left: 10px;
}
.state6{
    color: #FF5000 !important;
    background: #FFE9DF !important;
    margin-left: 10px;
}
.search-res{
    padding-bottom: 80px;
}

@media (min-width:1025px) {

    .resources-center .info-con .swiper-slide:hover .pic img,
    .resources-center li:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }

    .resources-center .info-con .swiper-slide:hover .tit {
        text-decoration: underline;
        color: #000;
    }

    .sort a:hover {
        background-color: #FF5000;
        color: #000;
    }

    .sort input[type='reset']:hover {
        background-color: #FF5000;
        border-color: #FF5000;
        color: #fff;
    }
}

@media (max-width:1199px) {
    .resources-center .info-con .text-content {
        padding: 30px 30px 0 30px;
    }

    .resources-center .info-con .text-content .tit {
        font-size: 20px;
    }

    .resources-center li .tit {
        font-size: 16px;
    }

    .sort {
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }

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

@media (max-width:950px) {
    .resources-center .pub-subnav {
        /* padding: 0 50px; */
    }

    .resources-center li {
        width: 49%;
    }

    .resources-center li:nth-of-type(3n) {
        margin-right: 2%;
    }

    .resources-center li:nth-child(even) {
        margin-right: 0;
    }

    .search-con {
        width: 80%;
        margin-top: 40px;
        /* border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px; */
        overflow: hidden;
    }

    .sort a.on {
        padding-right: 20px;
    }

    .sort .close {
        right: 5px;
    }
}

@media (max-width:767px) {
    .resources-center .info-con .swiper-slide>div {
        flex-flow: column;
    }

    .resources-center .info-con .swiper-slide .pic {
        width: 100%;
        order: 1;
        height: auto;
    }

    .resources-center .info-con .text-content {
        padding: 15px;
        order: 2;
    }

    .resources-center .info-con .text-content .tit {
        font-size: 18px;
    }

    .sort {
        padding-left: 0;
        padding-right: 0;
        margin-top: 0;
    }

    .sort dl {
        margin-right: 0;
        width: 100%;
        margin-bottom: 10px;
    }

    .sort dl:nth-child(2) {
        margin-right: 0;
    }
}

@media (max-width:480px) {
    .search-con {
        width: 90%;
        margin-top: 20px;
    }

    .resources-center .pub-subnav {
        padding: 0 20px;
    }

    .resources-center .info-con .text-content .tit {
        font-size: 16px;
    }

    .resources-center li {
        width: 100%;
        margin-right: 0;
    }

    .resources-center li .pic {
        height: auto;
    }

    .resources-center .tags a,
    .resources-center li .date,
    .resources-center li span,
    .resources-center .info-con .text-content .date {
        font-size: 12px;
    }

    .page {
        margin: 50px 0;
    }

    .sort dd a {
        margin-right: 5px;
        padding: 0 10px;
        height: 36px;
        line-height: 36px;
    }

    .sort input[type='reset'] {
        height: 36px;
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 0px;
    }
}


/*  */

.ke-details .video-play {
    margin-top: 25px;
    background-color: #fff;
}

.ke-details .vjs-poster {
    background-size: cover;
}

.ke-details .video-play .video,
.ke-details .video-play iframe,
.ke-details .video-play video {
    width: 100%;
    height: 675px;
}

.ke-details .video-js .vjs-big-play-button {
    background: url(../fonts/play.svg) no-repeat center;
    background-size: contain;
    width: 120px;
    height: 120px;
    border: none;
    top: 50%;
    left: 50%;
    border: 0;
    overflow: hidden;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.ke-details .video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.ke-details .vjs-icon-play:before {
    display: none;
}

.ke-details .video-js .vjs-big-play-button:focus {
    background: none;
}

.ke-details .video-js:hover .vjs-big-play-button {
    background: url(../fonts/play.svg) no-repeat center;
}

.ke-details .title-info {
    background-color: #FFF;
    padding: 32px;
    border-radius:0 0 8px 8px;
}

.ke-details .title-info span {
    background-color: #FF5000;
    font-size: 14px;
    height: 34px;
    padding: 0 20px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
}

.ke-details .title-info h1 {
    font-size: 24px;
}

.ke-details .title-info .info {
    font-size: 14px;
    color: #606266;
    margin-top: 20px;
}

.ke-details .title-info .info em {
    font-style: normal;
    margin-right: 20px;
}

.ke-details .title-info .tags a {
    background-color: #F5F5F5;
    height: 26px;
    line-height: 26px;
    color: #909399;
    padding: 0 10px;
    margin-right: 10px;
}

.ke-details .title-info .tags a:last-child {
    margin-right: 0;
}

.ke-details .body {
    margin-top: 25px;
    padding: 35px;
    line-height: 2;
    font-size: 14px;
    background-color: #FFF;
    border-radius: 8px;
}

.ke-details .body img {
    max-width: 100%;
    margin-top: 30px;
}

.ke-details .body p {
    margin-top: 30px;
}

.ke-details .body p:first-child {
    margin-top: 0;
}

.ke-details .tj {
    padding: 25px;
    background-color: #FFF;
    margin-top: 25px;
    margin-bottom: 50px;
    border-radius: 8px;
}

.ke-details .tj h4 {
    font-size: 20px;
}

.ke-details .tj li {
    width: 32%;
    margin-right: 2%;
    overflow: hidden;
    margin-top: 25px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.ke-details .tj li:last-child {
    margin-right: 0;
}

.ke-details .tj li .pic {
    height: 210px;
    overflow: hidden;
}

.ke-details .tj li .text-con {
    padding: 15px;
    border: 1px #e1e4eb solid;
    border-radius: 0 0 8px 8px;
}
.ke-details .tj li .text-con.flex-column{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ke-details .tj li span {
    font-size: 14px;
    background-color: #FF5000;
    height: 34px;
    line-height: 34px;
    padding: 0 15px;
    color: #fff;
    border-radius: 4px;
}

.ke-details .tj li .tit {
    margin-top: 10px;
}

@media (min-width:1025px) {
    .ke-details .tj li:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }

    .ke-details .tj li:hover {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
    }

    .ke-details .tj li:hover .tit {
        /* color: #FF5000; */
        text-decoration: underline;
    }
}

@media (max-width:1199px) {
    .ke-details .video-play .video,
    .ke-details .video-play iframe,
    .ke-details .video-play video {
        height: 500px;
    }
}

@media (max-width:950px) {
    .ke-details .video-play .video,
    .ke-details .video-play iframe,
    .ke-details .video-play video {
        height: 450px;
    }

    .ke-details .title-info h1 {
        font-size: 20px;
        margin-top: 20px;
    }

    .ke-details .title-info>div {
        flex-flow: column;
    }

    .ke-details .title-info>div:first-child {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .ke-details .title-info .tags {
        margin-top: 20px;
    }
}

@media (max-width:767px) {
    .ke-details .video-play .video,
    .ke-details .video-play iframe,
    .ke-details .video-play video {
        height: 400px;
    }

    .ke-details .title-info {
        font-size: 20px;
    }

    .ke-details .tj li {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width:480px) {
    .ke-details .video-play .video,
    .ke-details .video-play iframe,
    .ke-details .video-play video {
        height: 320px;
    }

    .ke-details .title-info,
    .ke-details .body,
    .ke-details .tj {
        padding: 15px;
    }

    .ke-details .title-info h1 {
        font-size: 18px;
    }
}

.result-tips {
    margin-top: 40px;
    color: #606266;
}

.result-tips span {
    color: #000;
    margin: 0 5px;
}

.null {
    min-height: 500px;
    font-size: 14px;
    color: #909399;
}

.background {
    background: rgba(255, 80, 0, 0.06);
    overflow: hidden;
    padding-bottom: 70px;
    padding-top: 70px;
    margin-top: 60px;
}

.re-title {
    font-size: 36px;
    margin-bottom: 50px;
}

.re-title span {
    padding-left: 72px;
}

.re-title span::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    z-index: 2;
    width: 32px;
    height: 32px;
    background-color: #FF5000;
}

.re-title span::after {
    content: '';
    position: absolute;
    left: 16px;
    top: -10px;
    z-index: 1;
    width: 32px;
    height: 32px;
    background-color: #000;
}

.pu-more {
    margin-top: 40px;
}

.pu-more a {
    background-color: #FF5000;
    height: 54px;
    line-height: 54px;
    width: 200px;
    font-size: 18px;
    border-radius: 4px;
    color: #fff;
}

/* .pu-more a:hover {
    color: #000;
} */

.blog {
    margin-top: 70px;
}
.blog.marbot{
    margin-bottom: 70px;
}

@media (max-width:767px) {
    .re-title {
        font-size: 24px;
        margin-bottom: 0;
    }

    .re-title span {
        padding-left: 52px;
    }

    .re-title span::before {
        bottom: -5px;
        width: 24px;
        height: 24px;
    }

    .re-title span::after {
        left: 12px;
        top: -5px;
        width: 24px;
        height: 24px;
    }

    .background {
        padding-top: 40px;
        padding-bottom: 40px;
        margin-top: 30px;
    }

    .pu-more a {
        height: 36px;
        line-height: 36px;
        width: 140px;
        font-size: 14px;
    }
}

@media (max-width: 540px) {
    .container {
        padding: 0 10px;
    }

    .sort a {
        font-size: 12px;
        line-height: 24px;
        height: 24px;
        padding: 0 8px;
    }

    .sort input[type='reset'] {
        font-size: 14px;
    }

    .search-con {
        height: 34px;
    }

    .search-con input[type='text'] {
        font-size: 12px;
    }

    .search-con input[type='submit'] {
        width: 34px;
        background-size: 16px;
    }

    .crumbs {
        font-size: 12px;
        padding-left: 20px;
        margin-top: 10px;
        height: 28px;
        line-height: 28px;
    }

    .footer .m-text {
        font-size: 12px;
    }

    .copyright,
    .copyright a {
        font-size: 12px;
        color: #909399;
        line-height: 1.8;
    }

    .result-tips,
    .resources-center li {
        margin-top: 20px;
    }

    .ke-details .tj li .pic,
    .news .info-con .swiper-slide .pic,
    .resources-center .info-con .swiper-slide .pic {
        height: auto;
    }

    .resources-center .info-con .text-content .text {
        display: none;
    }

    .resources-center .info-con {
        margin-top: 30px;
    }

    .ke-details .video-play .video,
    .ke-details .video-play iframe,
    .ke-details .video-play video {
        height: 200px;
    }

    .ke-details .title-info {
        margin-top: 0;
    }

    .ke-details .title-info span {
        font-size: 12px;
        line-height: 24px;
        height: 24px;
        padding: 0 8px;
    }

    .ke-details .title-info h1,
    .ke-details .title-info .info,
    .ke-details .title-info .tags,
    .ke-details .video-play {
        margin-top: 10px;
    }

    .ke-details .title-info .info {
        font-size: 12px;
    }

    .reset-box {
        width: 100%;
        text-align: center;
    }

    .details {
        margin-top: 10px;
    }

    .pub-text {
        height: 200px;
    }

    .pub-text .title {
        font-size: 20px;
    }

    .pub-text a {
        margin-top: 20px;
    }
}

.resources-center {
    background-color: #FFF;
    overflow: hidden;
}

.resources-center .header {
    background-color: #FFF;
}

.resources-center .header .logo {
    font-size: 14px;
}

.resources-center .header img {
    margin-right: 20px;
}

.resources-center .header .reg-btn a:first-child {
    color: #303133;
}

.resources-center .header .reg-btn a:last-child {
    background-color: #FF5000;
    color: #FFF;
    margin-left: 20px;
}

.resources-center .header .lang-con {
    margin-right: 20px;
    font-size: 14px;
}

.resources-center .header .lang-con span {
    padding-right: 15px;
    cursor: pointer;
    height: 54px;
    line-height: 54px;
}

.resources-center .header .lang-con span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 4px transparent solid;
    border-right: 4px transparent solid;
    border-top: 4px #d0d3d9 solid;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.resources-center .header .lang-con .sub-lang {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 5px 10px;
    line-height: 40px;
    background-color: #FFF;
    display: none;
}

.resources-center .header .lang-con .sub-lang a {
    text-align: center;
}

.resources-center .header .reg-btn a:last-child::after {
    display: none;
}

.resources-center .pub-banner {
    color: #303133;
}

.resources-center .search-con input[type='submit'] {
    background-color: #FF5000;
    background-image: url(../fonts/search1.svg);
}

.resources-center .search-con input[type='submit']:hover{
    background-color: #FF7333;
}

.resources-center .pub-subnav a.on {
    font-weight: bold;
}

.resources-center .pub-subnav a.on::after,
.resources-center .sort a.on {
    background-color: #FF5000;
}

.resources-center .sort a.on {
    color: #FFF;
}

.resources-center .sort .close {
    background-image: url(../fonts/close1.svg);
}

.resources-center .info-con {
    margin-right: 25px;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.resources-center .resources-center .info-con .swiper-slide .pic {
    width: 100%;
    height: 480px;
}

.resources-center .resources-center .info-con .text-content {
    padding: 20px;
    border: 1px #E1E4EB solid;
    border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
}

.resources-center .resources-center .info-con .text-content .tit {
    margin-top: 0;
}

.resources-center .resources-center .info-con .text-content span,
.resources-center .resources-center li span {
    background-color: #FF5000;
    color: #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-right: 10px;
}

.resources-center .resources-center .info-con .text-content .tags {
    margin-top: 5px;
}

.resources-center .resources-center .info-con .swiper-pagination {
    width: 100%;
}

.resources-center .resources-center .info-con .swiper-pagination-bullet {
    margin: 0 5px;
}

.resources-center .resources-center .info-con .swiper-pagination-bullet-active {
    background-color: #FF5000;
}

.resources-center .resources-center li {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}


.resources-center .resources-con li .text-con {
    border: 1px #E1E4EB solid;
    border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
}
.resources-center .resources-con li .text-con.flex-column{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.resources-center .resources-con li .marks {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: #FFF;
    display: none;
}

.resources-center .resources-con li .marks::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 3;
}

.resources-center .resources-con li .text-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 10;
    width: 80%;
}

.resources-center .resources-con li h4 {
    font-size: 18px;
}

.resources-center .resources-con li .txt {
    font-size: 14px;
    margin-top: 10px;
}

.resources-center .resources-con li .input {
    margin-top: 10px;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.resources-center .resources-con li .input input[type='text'] {
    height: 32px;
    width: 100%;
    padding-left: 20px;
}

.resources-center .resources-con li .input input[type='submit'] {
    background-color: #FF5000;
    color: #FFF;
    font-size: 14px;
    padding: 0 10px;
}

.sidebar-reg {
    width: 314px;
    padding-bottom: 20px;
}

.sidebar-reg .reg-con {
    overflow: hidden;
    border: 1px #E1E4EB solid;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-top: 50px;
    padding: 20px;
    background-color: #FFF;
}

.sidebar-reg.detailRight .reg-con {
    margin-top: 0px;
    border: none;
    padding-top: 0;
}

.sidebar-reg .reg-con .tabs span {
    font-size: 18px;
    margin-right: 10px;
}

.sidebar-reg .reg-con .tabs span.on {
    font-weight: bold;
}

.sidebar-reg .reg-con .tabs span.on::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    height: 4px;
    width: 50%;
    background-color: #FF5000;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.sidebar-reg .reg-con .tabs a {
    color: #FF5000;
    font-size: 12px;
    padding-right: 20px;
    background: url(../fonts/arrow-right2.svg)no-repeat right center;
    background-size: 14px;
}

.sidebar-reg .reg-con .pop-reg,
.sidebar-reg .pop-reg .content {
    position: inherit;
    display: block;
}


.sidebar-reg .dyBox {
    margin-top: 50px;
    padding: 0 16px;
    box-sizing: border-box;
}

.sidebar-reg .dyBox h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 8px 0;

}

.sidebar-reg .dyBox p {
    font-size: 14px;
    font-weight: 400;
    color: #909399;

}

.sidebar-reg .dyBox .inputBox {
    display: flex;
    width: 100%;
    margin-top: 16px;
}

.sidebar-reg .dyBox .inputBox input {
    flex: 2;
    background: #FFFFFF;
    border-radius: 4px 0px 0px 4px;
    border-right: none;
    border: 1px solid #E1E4EB;
    height: 32px;
    padding-left: 8px;
    box-sizing: border-box;
}

.sidebar-reg .dyBox .inputBox .btn {
    display: block;
    width: 91px;
    height: 32px;
    background: #FF5000;
    border-radius: 0px 4px 4px 0px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 32px;
    text-align: center;
    cursor: pointer;

}
.sidebar-reg .gzBox{
    margin-top: 50px;
    padding: 0 16px;
    box-sizing: border-box;
    padding-bottom: 40px;
}

.sidebar-reg .gzBox h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 8px 0;

}

.sidebar-reg .gzBox .wblist{
    display: flex;
    
    margin-top: 16px;
}
.sidebar-reg .gzBox .wblist a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 24px;
}
.sidebar-reg .gzBox .wblist a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.sidebar-reg .pop-reg .content {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    padding: 0;
    margin-top: 30px;
    height: auto;
    width: 100%;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.sidebar-reg .pop-reg .content .code button,
.sidebar-reg .pop-reg .content input[type='submit'] {
    background-color: #FF5000;
    color: #FFF;
}

.sidebar-reg .pop-reg .content input[type='submit'] {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
}

.sidebar-reg .Checkbox input:checked+label:before {
    background-color: #FF5000;
    border-color: #FF5000;
}

.sidebar-reg .reg-con .qita .txt {
    margin-top: 15px;
    color: #909399;
    font-size: 12px;
}

.sidebar-reg .reg-con .qita .txt::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    width: 100%;
    background-color: #E1E4EB;
}

.sidebar-reg .reg-con .qita .txt span {
    background-color: #FFF;
    z-index: 2;
}

.sidebar-reg .reg-con .qita a {
    margin: 10px 5px;
}

.sidebar-reg .reg-con .qita img {
    width: 36px;
}

.sidebar-reg .erwma-con {
    /* border: 1px #E1E4EB solid; */
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 10px;
    background-color: #FFF;

}

.sidebar-reg .erwma-con .erwma {
    z-index: 2;
    width: 49%;
}

.sidebar-reg .erwma-con .erwma .txt {
    font-size: 14px;
}

.sidebar-reg .erwma-con .erwma .pic {
    width: 80px;
    height: 80px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.sidebar-reg .erwma-con .erwma .pic img {
    width: 100%;
}

.sidebar-reg .erwma-con .text {
    font-size: 12px;
    line-height: 1.4;
}

.sidebar-reg .pub-text a {
    background-color: #FF5000;
    color: #FFF;
}

.sidebar-reg .pub-text a::after {
    display: none;
}

.resources-details.news li span {
    background-color: #FF5000;
    color: #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.resources-details .text-ding {
    background-color: #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 20px;
    margin-top: 25px;
}

.resources-details .text-ding .tit {
    font-size: 18px;
    font-weight: bold;
}

.resources-details .text-ding .txt {
    color: #909399;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 10px;
}

.resources-details .text-ding .input {
    margin-top: 10px;
}

.resources-details .text-ding .input input[type='text'] {
    border: 1px #E1E4EB solid;
    height: 34px;
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    width: 100%;
    padding-left: 15px;
}

.resources-details .text-ding .input input[type='submit'] {
    background-color: #FF5000;
    color: #FFF;
    font-size: 14px;
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
    padding: 0 10px;
}

.resources-details .sns {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-top: 25px;
    padding: 20px;
    background-color: #FFF;
}

.resources-details .sns .tit {
    font-size: 18px;
    font-weight: bold;
}

.resources-details .sns>div:last-child {
    margin-top: 10px;
}

.resources-details .sns img {
    width: 40px;
}

.resources-details .sns a {
    margin-right: 15px;
}

.resources-details .sns a:last-child {
    margin-right: 0;
}

.resources-details.news .details .content .info .text-con span {
    color: #FFF;
    background-color: #FF5000;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.resources-details.news .sidebar-reg {
    width: 100%;
}

.resources-details.news .sidebar-reg .reg-con {
    margin-top: 0;
    border-width: 0
}

@media (min-width:1025px) {

    .resources-center .header .lang-con:hover .sub-lang,
    .resources-center .resources-con li:hover .marks {
        display: block;
    }

    /* .resources-center .resources-con li:hover .tit {
        color: #007CF8;
    } */

    .resources-center .sort a:hover {
        background-color: #FF5000;
        color: #FFF;
    }
}

@media (max-width:950px) {
    .resources-center .content {
        flex-flow: column;
    }

    .resources-center .info-con {
        margin-right: 0;
        order: 2;
    }

    .sidebar-reg {
        width: 100%;
        order: 1;
    }

    .sidebar-reg .erwma-con {
        display: none;
    }
}

.search-con form {
    width: 100%;
}

.pop-reg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: none;
}

.pop-reg .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
}

.pop-reg .content {
    background-color: #FFF;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 340px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 20px 20px 30px 20px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    font-size: 12px;
}

.pop-reg .iframe-box {
    width: 340px;
    height: 340px;
    padding: 0;
}

.pop-reg .iframe-box iframe {
    width: 100%;
    height: 100%;
}

.pop-reg .content .tit {
    font-size: 16px;
}

.pop-reg .content .tit a {
    color: #606266;
    background: url(../fonts/arrow-right.svg)no-repeat right center;
    background-size: 14px;
    padding-right: 20px;
    font-size: 12px;
}

.pop-reg .content .group {
    margin-top: 20px;
    height: 34px;
}

.pop-reg .content .tel {
    border: 1px #E1E4EB solid;
}

.pop-reg .content .tel .number {
    border-right: 1px #E1E4EB solid;
    width: 80px;
    padding-left: 15px;
}

.pop-reg .content .tel .number::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 10px;
    width: 7px;
    height: 7px;
    border-bottom: 2px #d0d3d9 solid;
    border-right: 2px #d0d3d9 solid;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.pop-reg .content input[type='text'] {
    width: 100%;
    height: 32px;
    padding: 0 15px;
    font-size: 12px;
}

.pop-reg .content .code input {
    border: 1px #E1E4EB solid;
    border-right: 0;
}

.pop-reg .content .code button {
    background-color: #00e6a0;
    padding: 0 10px;
    font-size: 12px;
}

.pop-reg .content .code1 {
    border: 1px #E1E4EB solid;
}

.suggest-form {
    position: relative;
}
.suggest-form .fluentform form{
    padding: 16px;
    background: #ffffff;
    border-radius: 8px;
}
.suggest-form .fluentform .hide-item {
    display: none;
}
.suggest-form .fluentform .ff-el-input--content{
    line-height: 1.4;
}
.suggest-form .fluentform .ff-el-input--label label {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 26px;
}
.suggest-form .fluentform .ff-el-group,
.suggest-form .fluentform .ff-el-input--label {
    margin-bottom: 16px;
}
.suggest-form .fluentform .ff-el-group.ff_list_inline .ff-el-form-check {
    margin-bottom: 0;
}
.suggest-form .fluentform .ff_submit_btn_wrapper{
    margin-bottom: 0;
}
.suggest-form .fluentform .ff_submit_btn_wrapper button{
    width: 100%;
    background-color: #FF5000 !important;
    border-radius: 4px 4px 4px 4px;
}
.suggest-form .fluentform input[type="radio"] {
    display: none ;
}
.suggest-form .fluentform label.ff-el-form-check-label {
    position: relative;
    font-size: 14px;
}
.suggest-form .fluentform label.ff-el-form-check-label::before {
    position: relative;
    display: inline-block;
    top: 3px;
    content:  "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #D0D3D9;
    box-sizing: border-box;
    margin-right: 4px;
}
.suggest-form .fluentform label.ff-el-form-check-label::after {
    position: absolute;
    content: "";
    left: 4px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.suggest-form .fluentform .ff_item_selected label.ff-el-form-check-label::before {
    border-color: #FF5000;
}
.suggest-form .fluentform .ff_item_selected label.ff-el-form-check-label::after {
    background: #FF5000;
}
.suggest-form .ff-message-success{
    display: none;
}
.suggest-form .success-tip{
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 50%;
    font-size: 14px;
    font-weight: 400;
    color: #606266;
    line-height: 22px;
    background: #FFFFFF;
    padding: 12px 12px 12px 38px;
    box-shadow: 0px 6px 18px 0px rgba(33,35,41,0.2);
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #EBEEF5;
}
.suggest-form .success-tip::before {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: url(../images/icon_right.png) no-repeat;
    background-size: contain;
    background-color: #FF5000;
}
.sidebar .register-box {
    width: 100%;
    height: 320px;
}
.sidebar .register-box iframe {
    width: 100%;
    height: 100%;
}