@charset "utf-8";
/*
全局css变量定义
--mainColor    // 主色调
--textColor    // 文字深色调
--textColor1   // 文字浅色调
--bgColor      // 辅助背景色
*/

:root {
    --mainColor: #ea590e;
    --textColor: #333;
    --textColor1: #999;
    --bgColor: #fff;
    --bgColor1: #f5f5f5;
    --lineColor: #e0e0e0;
}

.main {
    width: 100%;
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;
}

.header-main {
    width: 100%;
    max-width: 1840px;
    padding: 0 20px;
    margin: 0 auto;
}

@media(max-width: 1080px) {
    .main {
        padding: 0 4%;
    }
    .header-main {
        padding: 0 4%;
    }
}

.section-top {
    padding-top: 60px;
}

.section-top1 {
    padding-top: 80px;
}

.section-bottom {
    padding-bottom: 120px;
}

.section-bottom1 {
    padding-bottom: 40px;
}

.section-bottom2 {
    padding-bottom: 80px;
}

@media(max-width: 1440px) {
    .section-top {
        padding-top: 48px;
    }
    .section-top1 {
        padding-top: 68px;
    }
    .section-bottom {
        padding-bottom: 100px;
    }
    .section-bottom1 {
        padding-bottom: 32px;
    }
    .section-bottom2 {
        padding-bottom: 72px;
    }
}

@media(max-width: 1280px) {
    .section-top {
        padding-top: 40px;
    }
    .section-top1 {
        padding-top: 60px;
    }
    .section-bottom {
        padding-bottom: 100px;
    }
    .section-bottom1 {
        padding-bottom: 28px;
    }
    .section-bottom2 {
        padding-bottom: 64px;
    }
}

@media(max-width: 1080px) {
    .section-top {
        padding-top: 32px;
    }
    .section-top1 {
        padding-top: 48px;
    }
    .section-bottom {
        padding-bottom: 60px;
    }
    .section-bottom1 {
        padding-bottom: 20px;
    }
    .section-bottom2 {
        padding-bottom: 40px;
    }
}

@media(max-width: 769px) {
    .section-top {
        padding-top: 28px;
    }
    .section-top1 {
        padding-top: 32px;
    }
    .section-bottom {
        padding-bottom: 40px;
    }
    .section-bottom1 {
        padding-bottom: 16px;
    }
    .section-bottom2 {
        padding-bottom: 32px;
    }
}

/*头部*/

.top {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 13;
}

.header {
    width: 100%;
    height: 88px;
    background: var(--bgColor);
    position: relative;
    z-index: 3;
}

.header .top-fixed {
    width: 100%;
    padding-top: 2px;
    height: 88px;
    background: var(--bgColor);
    z-index: 1003;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header .top-fixed .main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header .top-logo {
    width: 21.34%;
    max-width: 384px;
}

.header .top-logo a {
    display: block;
}

.header .top-logo a img {
    width: 100%;
    display: block;
}

.nav-top-icon {
    display: none;
}

.nav-icon {
    display: none;
    width: 36px;
    height: 36px;
    position: relative;
    cursor: pointer;
}

.nav-icon span {
    position: absolute;
    top: 10px;
    left: 6px;
    width: 24px;
    height: 2px;
    background: var(--textColor);
    border-radius: 2px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transform: scale(0.8);
}

.nav-icon span.line02 {
    top: 17px;
    opacity: 1;
}

.nav-icon span.line03 {
    top: 24px;
}

.nav-icon.open span.line01 {
    transform: rotate(45deg) scale(0.8);
    top: 17px;
}

.nav-icon.open span.line02 {
    opacity: 0;
}

.nav-icon.open span.line03 {
    transform: rotate(-45deg) scale(0.8);
    top: 17px;
}

.top-right {
    display: flex;
    align-items: center;
}

.top-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 3;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.top-icon i {
    font-size: 20px;
    text-align: center;
    line-height: 20px;
}

.top-icon:hover i {
    color: var(--mainColor);
}

.top-search-icon {
    margin-top: 8px;
}

.top-search-icon .search-icon01 {
    display: block;
}

.top-search-icon .search-icon02 {
    display: none;
    position: absolute;
    top: -1px;
    font-size: 8px;
    left: 5px;
}

.top-search-box.open .top-search-icon {
    display: none;
}

.top-search-box {
    width: 36px;
    height: 36px;
    padding-right: 16px;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.top-search {
    width: 0;
    height: 36px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: var(--bgColor1);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    cursor: pointer;
}

.top-search .inp_srh {
    float: left;
    outline: medium none;
    width: 0;
    height: 36px;
    padding: 8px 0;
    font-size: 14px;
    line-height: 20px;
    color: #333;
    background: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.top-search .btn_srh {
    float: right;
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    outline: none;
    font-size: 20px;
    color: #999;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.top-search-box.open {
    width: 216px;
}

.top-search-box.open .top-search {
    width: 200px;
}

.top-search-box.open .top-search .inp_srh {
    width: 160px;
    padding: 8px 16px;
}

.top-search:hover {
    background: #fef1ea;
    border: var(--mainColor) solid 1px;
}

.top-search .search-history {
    position: absolute;
    left: 79px;
    top: 39px;
    width: 259px;
    background: var(--bgColor1);
    border: var(--lineColor) solid 1px;
    display: none;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.top-search .search-history a {
    float: left;
    width: 100%;
    font-size: 12px;
    color: #666;
    line-height: 32px;
    padding: 0 20px;
}

.top-search .search-history a:hover {
    background: #fee6d9;
}

.language a {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--mainColor);
    line-height: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: var(--mainColor) solid 1px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    padding-top: 2px;
    justify-content: center;
}

.language a i {
    display: none;
    font-size: 20px;
    text-align: center;
    line-height: 20px;
    margin-right: 8px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.language a:hover {
    background-color: var(--mainColor);
    color: #fff;
}

.top-mem-icon {
    margin-right: 16px;
}

.nav-list {
    width: 63%;
}

.nav-list ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-list li .first-nav {
    width: 100%;
    border-bottom: transparent solid 2px;
}

.nav-list li .first-nav a {
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.nav-list li .first-nav a span {
    font-size: 16px;
    color: var(--textColor);
    line-height: 84px;
    font-family: "MontL";
}

.nav-list li .first-nav .nav-arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    display: none;
}

.nav-list li .first-nav .nav-arrow i {
    font-size: 16px;
    color: #333;
    line-height: 44px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.nav-list li:hover .first-nav a span {
    color: var(--mainColor);
}

.nav-list li.cur .first-nav a span {
    color: var(--mainColor);
}

.nav-list li.cur .first-nav {
    border-bottom: var(--mainColor) solid 2px;
}

.top-icon-line {
    width: 1px;
    height: 20px;
    background-color: #888;
    margin-right: 16px;
}

.wap-nav-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    background: #000;
    opacity: 0.7;
    z-index: 12;
    display: none;
}

.position {
    position: relative;
}

@media(max-width: 1560px) {
    .top-search-box.open {
        width: 36px;
    }
    .top-search-box.open .top-search {
        position: absolute;
        top: 62px;
        right: 0;
    }
    .top-search-box.open .top-search-icon {
        display: block;
    }
    .top-search-box.open .top-search-icon .search-icon02 {
        display: block;
    }
    .header {
        height: 84px;
    }
    .header .top-fixed {
        padding-top: 2px;
        height: 84px;
    }
    .nav-list li .first-nav a span {
        line-height: 80px;
    }
}

@media(max-width: 1440px) {
    .header {
        height: 76px;
    }
    .header .top-fixed {
        height: 76px;
    }
    .nav-list {
        width: 68%;
    }
    .nav-list li .first-nav a span {
        font-size: 14px;
        line-height: 72px;
    }
}

@media(max-width: 1080px) {
    .header {
        height: 48px;
    }
    .header .top-fixed {
        height: 48px;
        padding-top: 0;
    }
    .header .header-main {
        height: 100%;
    }
    .header .top-logo {
        min-width: 200px;
    }
    .nav-top-icon {
        display: block;
    }
    .top-icon-line {
        display: none;
    }
    .language a {
        font-size: 12px;
        width: 24px;
        height: 24px;
    }
    .top-search-box.open .top-search {
        position: fixed;
        top: 48px;
        right: 0;
        width: 100%;
        height: auto;
        padding: 10px 4%;
        border: none;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 0;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        display: flex;
        justify-content: flex-end;
    }
    .top-search-box.open .top-search #search_box {
        width: 100%;
        max-width: 480px;
        border-radius: 20px;
        border: #e0e0e0 solid 1px;
        background-color: #fff;
    }
    .nav-icon {
        display: block;
    }
    .top-mem-icon {
        margin-right: 10px;
    }
    .nav-list {
        width: 100%;
        position: fixed;
        z-index: 9;
        background: #fff;
        top: -100%;
        left: 0;
        border-top: #e0e0e0 solid 1px;
        height: calc(100vh - 48px);
        padding: 10px 4%;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }
    .nav-list.open {
        top: 48px;
    }
    .nav-list ul {
        display: block;
    }
    .nav-list li .first-nav {
        width: 100%;
        position: relative;
    }
    .nav-list li .first-nav a {
        display: block;
        width: 100%;
        text-align: left;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }
    .nav-list li .first-nav a span {
        font-size: 16px;
        color: #333;
        line-height: 44px;
    }
    .nav-list li .first-nav .nav-arrow {
        display: flex;
    }
    .nav-list li.open .first-nav i {
        transform: rotate(-180deg);
    }
}

/*二级下拉*/

.second-nav-box {
    width: 100%;
    position: absolute;
    top: 52px;
    padding-top: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.second-nav {
    background: #fff;
    width: 100%;
    height: 520px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.second-left {
    float: left;
    width: 20%;
    height: 100%;
    border-right: #e0e0e0 solid 1px;
    padding-top: 20px;
}

.second-left dl {
    width: 100%;
    padding-left: 10px;
    height: calc(100% - 60px);
    overflow-y: auto;
}

.second-left dl dd a {
    padding: 15px 20px;
    position: relative;
    display: block;
    width: 100%;
    padding-right: 48px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.second-left dl dd a span {
    font-size: 18px;
    color: #333;
    line-height: 20px;
    font-family: "MontL";
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.second-left dl dd a i {
    position: absolute;
    right: 0;
    top: 50%;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    font-size: 16px;
    color: #006ced;
    line-height: 48px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.second-left dl dd.active a {
    background: #eaf1ff;
}

.second-left dl dd.active a span {
    color: #006ced;
}

.second-left dl dd.active a i {
    opacity: 1;
}

.second-left .nav-more {
    width: 100%;
    border-top: #e0e0e0 solid 1px;
}

.second-left .nav-more a {
    display: block;
    font-size: 18px;
    color: #006cee;
    line-height: 58px;
    text-align: center;
    font-family: "MontL";
}

.second-left .nav-more a i {
    font-size: 16px;
    margin-left: 8px;
}

.second-right {
    float: right;
    width: 80%;
    padding: 40px 5%;
    height: 95%;
    overflow-y: auto;
}

.second-warp {
    display: none;
}

.second-right .nav-title {
    width: 100%;
    border-bottom: #e0e0e0 solid 1px;
    padding-bottom: 30px;
}

.second-right .nav-title h5 {
    font-size: 24px;
    color: #333;
    line-height: 24px;
    font-family: "MontR";
}

.second-right .nav-title p {
    height: 20px;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    white-space: nowrap;
}

.second-right p {
    width: 100%;
    font-size: 16px;
    color: #888;
    line-height: 20px;
    font-family: "MontL";
}

.second-right dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 30px;
}

.second-right dd {
    margin-bottom: 30px;
    width: 32%;
    margin-left: 2%;
}

.second-right dd:nth-child(3n+1) {
    margin-left: 0;
}

.second-right dd a h6 {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    color: #333;
    max-height: 48px;
    font-family: "MontL";
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.second-right dd a p {
    height: 40px;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.second-right dd a:hover h6 {
    color: #006ced;
}

.top-fixed.scroll .second-nav-box {
    top: 44px;
}

@media(max-width: 1280px) {
    .second-nav {
        height: 480px;
    }
    .second-left dl {
        height: calc(100% - 60px);
    }
    .second-left dl dd a {
        padding: 10px 20px;
        padding-right: 48px;
    }
    .second-left dl dd a span {
        font-size: 16px;
        line-height: 20px;
    }
    .second-left dl dd a i {
        width: 48px;
        height: 40px;
        margin-top: -20px;
        font-size: 16px;
        line-height: 48px;
    }
    .second-left .nav-more a {
        font-size: 16px;
        line-height: 58px;
    }
    .second-left .nav-more a i {
        font-size: 16px;
        margin-left: 8px;
    }
    .second-right {
        padding: 30px 5%;
    }
    .second-right .nav-title h5 {
        font-size: 18px;
        line-height: 18px;
    }
    .second-right p {
        font-size: 14px;
        line-height: 16px;
    }
    .second-right dl {
        margin-top: 40px;
    }
    .second-right dd {
        margin-bottom: 20px;
    }
    .second-right dd a h6 {
        font-size: 16px;
        line-height: 20px;
        max-height: 40px;
    }
    .second-right dd a p {
        height: 32px;
        margin-top: 10px;
    }
}

@media(max-width: 1080px) {
    .second-nav-box {
        width: 100%;
        position: relative;
        top: 0;
        padding-top: 0;
        left: 0;
        transform: translateX(0);
    }
    .header .top-fixed .second-nav-box .main {
        float: none;
    }
    .second-nav {
        width: 100%;
        height: auto;
        box-shadow: none;
    }
    .second-left {
        float: none;
        width: 100%;
        height: auto;
        border-right: none;
        padding-top: 0;
    }
    .second-left dl {
        padding-left: 0;
        height: auto;
        overflow-y: visible;
    }
    .second-left dl dd a {
        padding: 8px 0;
        padding-right: 48px;
    }
    .second-left dl dd a span {
        font-size: 14px;
        line-height: 20px;
    }
    .second-left dl dd a i {
        width: 40px;
        color: #888;
        font-size: 14px;
        line-height: 40px;
        text-align: right;
        display: none;
    }
    .second-left dl dd.active a {
        background: none;
    }
    .second-left .nav-more {
        display: none;
    }
    .second-right {
        display: none;
    }
    .top-fixed.scroll .second-nav-box {
        top: 0;
    }
}

.common-nav-box {
    width: 160px;
    position: absolute;
    top: 72px;
    padding-top: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.common-nav {
    width: 100%;
    background: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.common-nav .arrow {
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: -8px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    transform: rotate(45deg);
}

.common-nav dd {
    display: flex;
    justify-content: center;
}

.common-nav dd a {
    display: block;
    font-size: 15px;
    padding: 10px 0;
    color: #333;
    line-height: 20px;
    text-align: center;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    border-bottom: rgba(234, 89, 14, 0.2) solid 1px;
}

.common-nav dd:last-child a {
    border-bottom: none;
}

.common-nav dd a:hover {
    color: var(--mainColor);
}

#in3 .common-nav-box,
#in4 .common-nav-box {
    width: 200px;
}

@media(max-width: 1440px) {
    .common-nav-box {
        width: 140px;
        top: 62px;
    }
    .common-nav dd a {
        font-size: 13px;
    }
    #in3 .common-nav-box,
    #in4 .common-nav-box {
        width: 180px;
    }
}

@media(max-width: 1080px) {
    .common-nav-box {
        width: 100%;
        top: 0;
        padding-top: 0;
        left: 0;
        transform: translateX(0);
        position: relative;
    }
    .common-nav {
        padding: 8px 0;
        background-color: #f5f5f5;
        box-shadow: none;
    }
    .common-nav .arrow {
        display: none;
    }
    .common-nav dd {
        border: none;
        display: block;
        padding: 0 5%;
    }
    .common-nav dd a {
        padding: 10px 0;
        font-size: 14px;
        text-align: left;
    }
    #in3 .common-nav-box,
    #in4 .common-nav-box {
        width: 100%;
    }
}

/*footer*/

.footer {
    width: 100%;
    background: #363636;
    border-top: var(--mainColor) solid 6px;
    overflow: hidden;
}

.footer-top {
    width: 100%;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: #454545 solid 1px;
}

.footer-logo {
    width: 50%;
    max-width: 338px;
}

.footer-logo a {
    display: block;
    width: 100%;
}

.footer-logo a img {
    display: block;
    width: 100%;
}

.footer-slogan {
    padding-left: 40px;
    margin-left: 40px;
    border-left: #454545 solid 1px;
    font-size: 24px;
    color: var(--mainColor);
    line-height: 40px;
}

.footer-bottom {
    width: 100%;
    border-bottom: #454545 solid 1px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
}

.footer-nav {
    width: 70%;
    padding: 60px 0;
    padding-right: 4%;
    border-right: #454545 solid 1px;
}

.footer-nav dl dt {
    margin-bottom: 30px;
}

.footer-nav dl dt a {
    display: block;
    font-size: 14px;
    color: #fff;
    line-height: 16px;
    font-weight: bold;
}

.footer-nav dl dt a p {
    line-height: inherit;
}

.footer-nav dl dt a .icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 40px;
    z-index: 2;
    cursor: pointer;
    display: none;
}

.footer-nav dl dt a .icon .iconfont {
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    font-weight: normal;
}

.footer-nav dl dd {
    margin-bottom: 10px;
}

.footer-nav dl dd a {
    display: block;
    font-size: 14px;
    color: #888;
    line-height: 20px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.footer-nav dl dd a:hover {
    color: var(--mainColor);
}

.footer-contact {
    width: 30%;
    position: relative;
    padding: 60px 0;
    padding-left: 4%;
}

.footer-contact li {
    width: 100%;
    display: flex;
    font-size: 16px;
    color: #888;
    line-height: 24px;
    margin-bottom: 16px;
}

.footer-contact li .icon {
    width: 24px;
    height: 24px;
    display: block;
    margin-right: 16px;
}

.footer-contact .wx-code {
    position: absolute;
    top: 60px;
    right: 0;
    width: 48px;
}

.footer-contact .wx-code .icon {
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.footer-contact .wx-code .icon img {
    width: 28px;
    display: block;
    margin: 0 auto;
}

.footer-contact .wx-code .icon p {
    margin: 0;
    width: 100%;
    font-size: 16px;
    color: #666;
    line-height: 20px;
    margin-top: 12px;
}

.footer-contact .wx-code .code-img {
    width: 100px;
    background-color: #fff;
    padding: 8px;
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 48px;
    display: none;
}

.footer-contact .wx-code .code-img img {
    display: block;
    width: 100%;
}

.footer-contact .wx-code .code-img .arrow {
    position: absolute;
    right: -6px;
    top: 10px;
    width: 12px;
    height: 12px;
    background-color: #fff;
    transform: rotate(-45deg);
}

.footer-contact .wx-code:hover .code-img {
    display: block;
}

.footer-link {
    width: 100%;
    border-bottom: #454545 solid 1px;
    padding: 16px 0;
}

.footer-link .link-left {
    width: 72%;
}

.footer-link .link-title {
    width: 80px;
    font-size: 14px;
    color: #666;
    line-height: 20px;
}

.footer-link .link-item {
    width: calc(100% - 80px);
    display: flex;
}

.footer-link .link-item a {
    display: block;
    margin-right: 20px;
    font-size: 14px;
    color: #666;
    line-height: 20px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.footer-link .link-item a:hover {
    color: var(--mainColor);
}

.feedback-email {
    font-size: 14px;
    color: #666;
    line-height: 20px;
}

.feedback-email a {
    font-size: 14px;
    color: #666;
    line-height: 20px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.feedback-email a:hover {
    color: var(--mainColor);
}

.copyright {
    width: 100%;
    font-size: 14px;
    color: #666;
    line-height: 20px;
    padding: 20px 0;
    background: #3d3d3d;
}

.copyright p {
    line-height: inherit;
}

.copyright a {
    font-size: 14px;
    color: #666;
    line-height: 20px;
    float: left;
    margin-left: 30px;
    position: relative;
}

.copyright a:hover {
    color: #fff;
}

.copyright .cp-left {
    float: left;
}

.copyright .cp-right {
    float: right;
}

@media(max-width:1440px) {
    .footer {
        border-top: var(--mainColor) solid 4px;
    }
    .footer-top {
        padding: 20px 0;
    }
    .footer-logo {
        width: 50%;
        max-width: 338px;
    }
    .footer-slogan {
        padding-left: 36px;
        margin-left: 36px;
        font-size: 18px;
        line-height: 36px;
    }
    .footer-nav {
        padding: 48px 0;
        padding-right: 3%;
    }
    .footer-nav dl dt {
        margin-bottom: 24px;
    }
    .footer-nav dl dt a {
        font-size: 14px;
        line-height: 16px;
    }
    .footer-nav dl dd {
        margin-bottom: 8px;
    }
    .footer-contact {
        padding: 48px 0;
        padding-left: 3%;
    }
    .footer-contact li {
        font-size: 14px;
    }
    .footer-contact .wx-code {
        top: 48px;
        width: 40px;
    }
    .footer-contact .wx-code .icon img {
        width: 24px;
    }
    .footer-contact .wx-code .icon p {
        font-size: 12px;
        margin-top: 8px;
    }
    .footer-contact .wx-code .code-img {
        width: 100px;
        padding: 4px;
        right: 40px;
    }
}

@media(max-width:1080px) {
    .footer {
        border-top: var(--mainColor) solid 3px;
    }
    .footer-top {
        padding: 12px 0;
    }
    .footer-logo {
        width: 40%;
    }
    .footer-slogan {
        padding-left: 24px;
        margin-left: 24px;
        font-size: 14px;
        line-height: 24px;
    }
    .footer-bottom .footer-flex {
        display: block;
    }
    .footer-nav {
        width: 100%;
        padding: 0;
        border: none;
    }
    .footer-nav dl dt {
        width: 100%;
        position: relative;
        margin-bottom: 0;
        border-bottom: #454545 solid 1px;
    }
    .footer-nav dl dt a {
        width: 100%;
        line-height: 40px;
    }
    .footer-nav dl dt a .icon {
        display: block;
    }
    .footer-nav dl dd {
        margin-bottom: 0;
        width: 100%;
        display: none;
    }
    .footer-nav dl dd a {
        line-height: 32px;
        width: 100%;
        padding-left: 20px;
    }
    .footer-contact {
        width: 100%;
        padding: 0;
        padding-left: 0;
        margin-top: 16px;
    }
    .footer-contact li {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px;
    }
    .footer-contact li .icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    .footer-contact .wx-code {
        top: 0;
    }
    .footer-link {
        padding: 10px 0;
    }
    .footer-link .link-title {
        width: 68px;
        font-size: 12px;
    }
    .footer-link .link-item {
        width: calc(100% - 68px);
        flex-wrap: wrap;
    }
    .footer-link .link-item a {
        margin-right: 12px;
        font-size: 12px;
        line-height: 20px;
    }
    .feedback-email {
        font-size: 12px;
    }
    .feedback-email a {
        font-size: 12px;
        ;
    }
    .copyright {
        font-size: 12px;
        padding: 12px 0;
        text-align: center;
    }
    .copyright a {
        font-size: 12px;
        margin-left: 6px;
        margin-top: 6px;
        float: none;
    }
    .copyright .cp-left {
        float: none;
        width: 100%;
    }
    .copyright .cp-right {
        float: none;
        width: 100%;
    }
}

@media(max-width:769px) {
    .footer-slogan {
        padding-left: 16px;
        margin-left: 16px;
        font-size: 12px;
        line-height: 20px;
    }
    .footer-link .header-main {
        display: block;
    }
    .feedback-email {
        width: 100%;
        margin-top: 8px;
    }
}

/* 内页banner */

.inside-banner {
    width: 100%;
    position: relative;
}

.inside-banner .banner-img {
    width: 100%;
    min-height: 100px;
}

.inside-banner .banner-img img {
    display: block;
    width: 100%;
}

.inside-banner-cont {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.inside-banner-txt {
    width: 100%;
    color: #fff;
    font-weight: bold;
}

.inside-banner-txt .banner-title {
    font-size: 56px;
    line-height: 60px;
}

.inside-banner-txt .banner-sub-title {
    font-size: 28px;
    line-height: 32px;
    margin-top: 12px;
}

@media(max-width:1440px) {
    .inside-banner-txt .banner-title {
        font-size: 48px;
        line-height: 56px;
    }
    .inside-banner-txt .banner-sub-title {
        font-size: 24px;
        line-height: 28px;
    }
}

@media(max-width:1080px) {
    .inside-banner-txt .banner-title {
        font-size: 40px;
        line-height: 48px;
    }
    .inside-banner-txt .banner-sub-title {
        font-size: 18px;
        line-height: 20px;
    }
}

@media(max-width:769px) {
    .inside-banner-txt .banner-title {
        font-size: 28px;
        line-height: 32px;
    }
    .inside-banner-txt .banner-sub-title {
        font-size: 14px;
        line-height: 20px;
        margin-top: 4px;
    }
}

/*面包屑导航*/

.location {
    width: 100%;
    position: absolute;
    bottom: 12px;
    left: 0;
    z-index: 5;
}

.crumbs-nav {
    display: flex;
    align-items: center;
    color: #fff;
}

.crumbs-nav i {
    font-size: 16px;
    margin-left: 12px;
    margin-right: 12px;
}

.crumbs-nav a {
    line-height: 40px;
    font-size: 16px;
    color: #fff;
}

.crumbs-nav a:hover {
    font-weight: bold;
}

.crumbs-nav strong {
    line-height: 40px;
    font-size: 16px;
}

.location.nobanner {
    position: relative;
    bottom: 0;
    background-color: var(--bgColor1);
    height: 60px;
    padding: 10px 0;
}

.location.nobanner .crumbs-nav {
    color: #999;
}

.location.nobanner .crumbs-nav a {
    color: #666;
}

@media (max-width:1080px) {
    .location {
        display: none;
    }
}

/*内页导航*/

.inside-nav-box {
    width: 100%;
    background: var(--bgColor1);
    position: relative;
}

.inside-nav-height {
    width: 100%;
    background: var(--bgColor1);
    position: relative;
}

.inside-nav {
    width: 100%;
    position: relative;
}

.inside-nav li {
    width: auto;
    position: relative;
    padding: 0 40px;
}

.inside-nav a {
    display: block;
    font-size: 16px;
    color: #333;
    line-height: 68px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    position: relative;
}

.inside-nav li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--mainColor);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.inside-nav li.active a {
    color: var(--mainColor);
}

.inside-nav li.active a:after {
    width: 100%;
    left: 0;
}

.inside-nav li:hover a {
    color: var(--mainColor);
}

.inside-nav li:hover a:after {
    width: 100%;
    left: 0;
}

.inside-nav .swiper-button-next,
.inside-nav .swiper-button-prev {
    width: 32px;
    height: 100%;
    margin-top: 0;
    z-index: 9;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    opacity: 1;
    left: 0;
    top: 0;
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgb(245, 245, 245), rgba(245, 245, 245, .5));
    justify-content: flex-start;
}

.inside-nav .swiper-button-next {
    left: auto;
    right: 0;
    background: linear-gradient(to left, rgb(245, 245, 245), rgba(245, 245, 245, 5));
    justify-content: flex-end;
}

.inside-nav .swiper-button-next:hover,
.inside-nav .swiper-button-prev:hover {
    color: var(--mainColor);
}

.inside-nav .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.inside-nav .swiper-button-next.swiper-button-disabled {
    opacity: 0;
}

.inside-nav-height.scroll {
    position: fixed;
    top: 0px;
    z-index: 20;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

@media(max-width:1440px) {
    .inside-nav li {
        padding: 0 32px;
    }
    .inside-nav a {
        font-size: 14px;
        line-height: 60px;
    }
}

@media(max-width:1080px) {
    .inside-nav {
        max-width: 100%;
    }
    .inside-nav li {
        padding: 0 24px;
    }
}

@media(max-width:768px) {
    .inside-nav li {
        padding: 0 16px;
    }
    .inside-nav a {
        line-height: 48px;
    }
}

.page-title {
    margin-top: 80px;
    margin-bottom: 56px;
    width: 100%;
    padding-top: 40px;
    text-align: center;
    position: relative;
}

.page-title .en-title {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 67px;
}

.page-title .en-title img {
    display: block;
    width: auto;
    height: 100%;
    margin: 0 auto;
}

.page-title h1 {
    font-size: 36px;
    color: var(--textColor);
    line-height: 40px;
    position: relative;
    z-index: 3;
    font-weight: bold;
}

.page-title h2 {
    font-size: 36px;
    color: var(--textColor);
    line-height: 40px;
    position: relative;
    z-index: 3;
    font-weight: bold;
}

@media (max-width:1440px) {
    .page-title {
        margin-top: 60px;
        margin-bottom: 40px;
        padding-top: 32px;
    }
    .page-title .en-title {
        height: 60px;
    }
    .page-title h1 {
        font-size: 32px;
        line-height: 36px;
    }
    .page-title h2 {
        font-size: 32px;
        line-height: 36px;
    }
}

@media (max-width:1080px) {
    .page-title {
        margin-top: 40px;
        margin-bottom: 28px;
        padding-top: 24px;
    }
    .page-title .en-title {
        height: 48px;
    }
    .page-title h1 {
        font-size: 24px;
        line-height: 28px;
    }
    .page-title h2 {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width:480px) {
    .page-title {
        padding-top: 20px;
    }
    .page-title .en-title {
        height: 36px;
    }
}

/*编辑器*/

.editor {
    font-size: 16px;
    color: #666;
    line-height: 32px;
    font-family: '微软雅黑';
}

.editor a {
    font-size: 16px;
    color: #666;
    line-height: 32px;
    font-family: '微软雅黑';
}

.editor h5 {
    margin-top: 40px;
    font-size: 24px;
    color: #333;
    line-height: 32px;
    font-family: '微软雅黑';
    font-weight: bold;
}

.editor h6 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--mainColor);
    line-height: 32px;
    font-family: '微软雅黑';
}

.editor p {
    line-height: inherit;
    margin-bottom: 20px;
}

.editor img {
    max-width: 100%;
}

.editor strong {
    font-weight: bold;
}

.editor em {
    font-style: italic;
}

.editor ul,
.editor li {
    list-style: unset;
    font-size: 16px;
    color: #666;
    line-height: 32px;
    font-family: '微软雅黑';
}

.editor ul {
    padding-left: 32px;
}

.editor li::marker {
    text-indent: 32px !important;
}

@media(max-width:1440px) {
    .editor {
        font-size: 14px;
        line-height: 28px;
    }
    .editor a {
        font-size: 14px;
        line-height: 28px;
    }
    .editor h5 {
        margin-top: 32px;
        font-size: 20px;
        line-height: 28px;
    }
    .editor h6 {
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 28px;
    }
    .editor p {
        margin-bottom: 16px;
    }
    .editor ul,
    .editor li {
        font-size: 14px;
        line-height: 28px;
    }
    .editor ul {
        padding-left: 28px;
    }
    .editor li::marker {
        text-indent: 28px !important;
    }
}

@media(max-width:1080px) {
    .editor p {
        margin-bottom: 12px;
    }
    .editor h6 {
        margin-top: 20px;
        font-size: 18px;
    }
    .editor h6 {
        margin-bottom: 12px;
        font-size: 16px;
    }
}

.form-list {
    width: 100%;
}

.form-list li {
    float: left;
    width: 47.7%;
    margin-bottom: 52px;
    position: relative;
}

.form-list li.short-input {
    margin-left: 4.6%;
}

.form-list li.short-input:nth-child(odd) {
    margin-left: 0;
}

.form-list li.long-input {
    width: 100%;
}

.form-list li.form-btn {
    margin-bottom: 0;
    margin-top: 40px;
    margin-left: 4.6%;
}

.form-list li h6 {
    width: 100%;
    font-size: 16px;
    color: #666;
    line-height: 32px;
    margin-bottom: 8px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.form-list li h6 em {
    color: var(--mainColor);
}

.form-list li input.form-input {
    width: 100%;
    height: 56px;
    background: none;
    background-color: var(--bgColor1);
    padding: 18px 20px 18px 48px;
    font-size: 16px;
    line-height: 20px;
    color: #333;
    outline: none;
    border: none;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.form-list li.form-textarea {
    width: 100%;
}

.form-list li textarea {
    width: 100%;
    height: 160px;
    padding: 16px 20px 16px 48px;
    font-size: 16px;
    color: #333;
    line-height: 28px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    background-color: var(--bgColor1);
    outline: none;
    border: none;
    position: relative;
    font-family: "微软雅黑";
}

.form-list li .icon {
    width: 48px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #999;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5;
}

.form-list li.form-textarea .icon {
    bottom: auto;
    top: 40px;
}

.form-list li.form-code {
    width: 36%;
}

.form-list li.form-code input.form-input {
    width: calc(100% - 160px);
}

.form-list li .yzm-img {
    width: 160px;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 56px;
    overflow: hidden;
    background-color: var(--bgColor1);
    padding: 9px 20px;
    border-left: #e0e0e0 solid 1px;
}

.form-list li .yzm-img img {
    display: block;
    width: 100%;
    height: 100%;
}

.form-list li .submit-btn {
    width: 220px;
    height: 56px;
    background: var(--mainColor);
    border: none;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    cursor: pointer;
}

.form-list li .submit-btn:hover {
    box-shadow: 0 2px 12px rgba(234, 89, 14, 0.6);
}

.form-list li:hover input.form-input {
    background-color: rgba(234, 89, 14, 0.1);
}

.form-list li:hover textarea {
    background-color: rgba(234, 89, 14, 0.1);
}

.form-list li:hover .select {
    background-color: rgba(234, 89, 14, 0.1);
}

.form-list li:hover h6 {
    color: var(--mainColor);
}

.form-list li:hover .icon {
    color: var(--mainColor);
}

.form-list li.cur input.form-input {
    background-color: rgba(234, 89, 14, 0.1);
}

.form-list li.cur textarea {
    background-color: rgba(234, 89, 14, 0.1);
}

.form-list li.cur .select {
    background-color: var(--mainColor);
}

.form-list li.cur h6 {
    color: var(--mainColor);
}

.form-list li.cur .icon {
    color: var(--mainColor);
}

@media(max-width:1440px) {
    .form-list li {
        margin-bottom: 24px;
    }
    .form-list li.form-btn {
        margin-top: 28px;
    }
    .form-list li h6 {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 8px;
    }
    .form-list li input.form-input {
        height: 48px;
        padding: 14px 20px 14px 40px;
        font-size: 14px;
    }
    .form-list li textarea {
        height: 120px;
        padding: 14px 20px 14px 40px;
        font-size: 14px;
        line-height: 24px;
    }
    .form-list li .icon {
        width: 40px;
        height: 48px;
        font-size: 20px;
    }
    .form-list li.form-textarea .icon {
        bottom: auto;
        top: 28px;
    }
    .form-list li.form-code {
        width: 40%;
    }
    .form-list li.form-code input.form-input {
        width: calc(100% - 120px);
    }
    .form-list li .yzm-img {
        width: 120px;
        height: 48px;
        padding: 8px 16px;
    }
    .form-list li .submit-btn {
        width: 180px;
        height: 48px;
        font-size: 16px;
    }
}

@media(max-width:769px) {
    .form-list {
        margin-bottom: 20px;
    }
    .form-list li {
        width: 100%;
        margin-bottom: 16px;
    }
    .form-list li.short-input {
        margin-left: 0;
    }
    .form-list li.form-btn {
        margin-top: 20px;
        margin-left: 0;
    }
    .form-list li.form-code {
        width: 100%;
    }
    .form-list li h6 {
        margin-bottom: 4px;
    }
}

.inside-content {
    padding: 100px 0;
}

@media (max-width:1440px) {
    .inside-content {
        padding: 80px 0;
    }
}

@media (max-width:1200px) {
    .inside-content {
        padding: 60px 0;
    }
}

@media (max-width:769px) {
    .inside-content {
        padding: 40px 0;
    }
}

.side-bar {
    position: fixed;
    z-index: 12;
    right: 2%;
    bottom: 12%;
    display: none;
}

.side-bar li {
    margin-bottom: 10px;
    position: relative;
    width: 60px;
    height: 60px;
}

.side-bar li .icon {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: #dedede;
    padding: 15px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
}

.side-bar li .icon img {
    display: block;
    width: 30px;
    float: left;
}

.side-bar li .icon span {
    float: left;
    font-size: 18px;
    color: #fff;
    line-height: 30px;
    height: 30px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    position: absolute;
    right: -400px;
    top: 15px;
}

.side-bar li.gotop .icon {
    background: #006cee;
}

.side-bar li.mes-btn .icon:hover {
    width: 220px;
    background: #006cee;
}

.side-bar li.mes-btn .icon:hover span {
    right: 15px;
}

.side-bar li.mes-btn .icon.active {
    width: 220px;
    background: #006cee;
}

.side-bar li.mes-btn .icon.active span {
    right: 15px;
}

.side-bar-layer {
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 480px;
    padding: 40px;
    z-index: 15;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    width: 0;
    height: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    opacity: 1;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.side-bar-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    font-size: 16px;
    color: #888;
    line-height: 32px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.side-bar-close:hover {
    background: #006cee;
    color: #fff;
}

.side-bar-layer .form-list {
    margin-top: 20px;
}

.side-bar-layer .form-list li {
    height: auto;
    width: 100%;
}

.side-bar-layer .form-list li textarea {
    height: 120px;
}

.side-bar-txt {
    font-size: 16px;
    color: #888;
    line-height: 28px;
    font-family: 'MontL';
}

.side-bar-layer.open {
    width: 480px;
    height: auto;
    bottom: 68px;
    opacity: 1;
}

@media (max-width:769px) {
    .side-bar {
        right: 4%;
        bottom: 8%;
    }
    .side-bar li {
        width: 40px;
        height: 40px;
    }
    .side-bar li .icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    .side-bar li .icon img {
        width: 20px;
    }
    .side-bar li .icon span {
        font-size: 14px;
        line-height: 20px;
        height: 20px;
        right: -400px;
        top: 10px;
    }
    .side-bar li.mes-btn .icon:hover {
        width: 172px;
        background: #006cee;
    }
    .side-bar li.mes-btn .icon:hover span {
        right: 15px;
    }
    .side-bar li.mes-btn .icon.active {
        width: 172px;
        background: #006cee;
    }
    .side-bar li.mes-btn .icon.active span {
        right: 15px;
    }
}

@media (max-width:560px) {
    .side-bar-layer {
        bottom: 48px;
        width: 320px;
        padding: 20px;
    }
    .side-bar-layer .form-list li textarea {
        height: 100px;
    }
    .side-bar-txt {
        font-size: 14px;
        line-height: 20px;
    }
    .side-bar-layer.open {
        width: 320px;
        height: auto;
        bottom: 48px;
    }
}

@media (max-width:340px) {
    .side-bar-layer {
        bottom: 48px;
        width: 294px;
        padding: 20px;
    }
    .side-bar-layer.open {
        width: 294px;
        height: auto;
        bottom: 48px;
    }
}

/*分页*/

.list-more {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    display: none;
}

.list-more a {
    display: block;
    width: 120px;
    height: 36px;
    margin: 0 auto;
    background: #f2f2f2;
    border-radius: 8px;
    font-size: 12px;
    color: #888;
    text-align: center;
    line-height: 36px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.list-more a:hover {
    background: var(--mainColor);
    color: #fff;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

/*
.page01 { text-align:center; width:100%;margin-top:20px;margin-bottom:40px;}
.page01 a{display:inline-block;zoom:1;*display:inline;padding:0 16px;height:46px;line-height:46px;color:#999;font-size: 18px;cursor: pointer; text-align:center;font-family:"Arial";}
.page01 .current{ color:var(--mainColor);}
.page01 a:hover{color:var(--mainColor);}
.page01 input{display:inline-block;zoom:1;*display:inline;width:60px;padding:0 8px;height:40px;border:none;background:#fff;}
.page01 input.go{border:var(--mainColor) solid 2px;color:var(--mainColor);}
.page02 { float:left;width:100%; height:45px; line-height:45px; text-align:center;color:#333; font-size:16px; background:#fff; margin-top:20px; display:none;}
.page01 button.btn{width:46px;height:46px;border:none;background-color:var(--mainColor);border-radius:50%;outline:none;font-size:20px;color:#fff;cursor:pointer;}
.page01 button.btn.disabled{background-color:#ccc;}
*/

.page01 {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page01 a {
    display: inline-block;
    zoom: 1;
    *display: inline;
    padding: 0 16px;
    height: 46px;
    line-height: 46px;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    font-family: "Arial";
}

.page01 .current {
    color: var(--mainColor);
}

.page01 a:hover {
    color: var(--mainColor);
}

.page01 input {
    display: inline-block;
    zoom: 1;
    *display: inline;
    width: 60px;
    padding: 0 8px;
    height: 40px;
    border: none;
    background: #fff;
}

.page01 .turn-box {
    display: inline-block;
    zoom: 1;
    *display: inline;
    margin-left: 20px;
    width: 120px;
    height: 46px;
    border: var(--mainColor) solid 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 40px;
    padding: 3px;
}

.page01 input.turn {
    border: none;
    background: none;
    outline: none;
    color: var(--mainColor);
    width: 68px;
    padding: 0 8px;
    height: 40px;
    font-size: 16px;
    border-radius: 40px;
}

.page01 input.go {
    border: none;
    background: none;
    outline: none;
    background-color: var(--mainColor);
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 50%;
    cursor: pointer;
}

.page02 {
    float: left;
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #333;
    font-size: 16px;
    background: #fff;
    margin-top: 20px;
    display: none;
}

.page01 button.btn {
    width: 46px;
    height: 46px;
    border: none;
    background-color: var(--mainColor);
    border-radius: 50%;
    outline: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page01 button.btn a {
    width: 100%;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page01 button.btn.disabled {
    background-color: #ccc;
}

.page01 ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    border: none !important;
}

.page01 ul li {
    border: none !important;
}

.page01 ul .liActive,
.page01 ul .liActive a {
    color: var(--mainColor);
}

@media (max-width:991px) {
    .list-more {
        display: block;
    }
    .page01 {
        display: none;
    }
}

.empty {
    width: 100%;
    padding: 80px 0;
    display: none;
}

.empty img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.empty p {
    font-size: 12px;
    color: #999;
    line-height: 40px;
    text-align: center;
}

.gray {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    opacity: 0.8;
}

.gray:hover {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
    filter: none;
    opacity: 1;
}

/*视频弹框*/

.popup-video-bg {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    display: none;
}

.videobox-popup {
    position: fixed;
    z-index: 1001;
    width: 60%;
    top: 14%;
    left: 20%;
    display: none;
}

.videobox-popup .popup-video-close {
    position: absolute;
    right: -24px;
    top: -24px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6) url(../images/icon-nav-close01.png) no-repeat center;
    background-size: 28px;
    border: #fff solid 2px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.8;
}

@media(max-width:1280px) {
    .videobox-popup {
        width: 80%;
        left: 10%;
    }
}

@media(max-width:769px) {
    .videobox-popup {
        width: 95%;
        left: 2.5%;
        top: 30%;
    }
    .videobox-popup .popup-video-close {
        right: auto;
        top: auto;
        bottom: -48px;
        left: 50%;
        margin-left: -14px;
        width: 28px;
        height: 28px;
        border: #fff solid 1px;
        background: rgba(0, 0, 0, 0.6) url(../images/icon-nav-close01.png) no-repeat center;
        background-size: 16px;
    }
}

.pc-cont {
    display: block !important;
}

.wap-cont {
    display: none !important;
}

@media(max-width:769px) {
    .pc-cont {
        display: none !important;
    }
    .wap-cont {
        display: block !important;
    }
}