@charset "UTF-8";

/*******/

html,
body {
    -ms-overflow-style: scrollbar;
}

html {
    font-size: 20px;
    font-weight: 400;
}

/* 声明字体 */

@font-face{
    font-family: SOURCEHANSANSSC-REGULAR;
    src: url("/content/fonts/SOURCEHANSANSSC-REGULAR.OTF")
}

@font-face{
    font-family: HARMONYOS_SANS_LIGHT;
    src: url("/content/fonts/HARMONYOS_SANS_LIGHT.OTF")
}

@font-face{
    font-family: HARMONYOS_SANS_BOLD;
    src: url("/content/fonts/HARMONYOS_SANS_BOLD.ttf")
}

@font-face{
    font-family: HARMONYOS_SANS_REGULAR;
    src: url("/content/fonts/HARMONYOS_SANS_REGULAR.ttf")
}

@media screen and (max-width: 1800px) and (min-width: 1661px) {
    html {
        font-size: 19px;
    }
}

@media screen and (max-width: 1660px) and (min-width: 1441px) {
    html {
        font-size: 18px;
    }
}

@media screen and (max-width: 1440px) and (min-width: 1241px) {
    html {
        font-size: 17px;
    }
}

@media screen and (max-width: 1240px) and (min-width: 992px) {
    html {
        font-size: 16px;
    }
}

@media screen and (min-width: 450.1px) and (max-width: 991.98px) {
    html {
        font-size: 60px;
    }
}

@media screen and (max-width: 450px) {
    html {
        font-size: 13.3333333vw;
    }
}

body {
    width: 100%;
    font-size: 1em;
    line-height: 1;
    background: #fff;
    color: #222;
    font-family: "微软雅黑", "Microsoft YaHei";
    position: relative;
    white-space: normal;
    word-wrap: break-word;
}

@media screen and (max-width: 991.98px) {
    body {
        font-size: 0.25rem;
        font-family: "HARMONYOS_SANS_REGULAR";
    }
}

/* ::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: none;
}

::-webkit-scrollbar-thumb {
    background: rgba(34, 37, 56, 0.5);
} */

div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
select,
textarea,
label,
dl,
dt,
dd,
ul,
li {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    font-size: 1em;
    line-height: inherit;
    resize: none;
}

h1:focus,
h1:active,
h2:focus,
h2:active,
h3:focus,
h3:active,
h4:focus,
h4:active,
h5:focus,
h5:active,
h6:focus,
h6:active,
p:focus,
p:active,
input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
label:focus,
label:active,
dl:focus,
dl:active,
dt:focus,
dt:active,
dd:focus,
dd:active,
ul:focus,
ul:active,
li:focus,
li:active {
    outline: none;
    box-shadow: none;
}

div:focus,
span:focus,
i:focus {
    outline: none;
}

input[type='radio'],
input[type='checkbox'],
textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    box-shadow: none;
}

input[type='radio']:focus,
input[type='radio']:active,
input[type='checkbox']:focus,
input[type='checkbox']:active,
textarea:focus,
textarea:active {
    outline: none;
    box-shadow: none;
}

input[type="text"]:focus,
input[type="text"]:active {
    outline: none;
    box-shadow: none;
}

button {
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
    outline: none;
    border: none;
    background: transparent;
}

button:focus {
    outline: none;
}

a {
    color: inherit;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

a:focus,
a:active {
    color: inherit;
    text-decoration: none;
    outline: none;
}

a.btn-white {
    display: block;
    position: relative;
    color: #222;
    background: transparent;
    overflow: hidden;
    border: solid 1px #222;
    text-align: center;
}

a.btn-white:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -101%;
    background: #222;
    transition: left .4s ease-out;
    z-index: 1;
}

a.btn-white span {
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 992px) {
    a.btn-white:hover {
        color: #fff !important;
        border-color: #222 !important;
    }
    a.btn-white:hover:before {
        left: 0;
    }
}

a.btn-bwhite {
    display: block;
    position: relative;
    background: transparent;
    overflow: hidden;
    border: solid 1px #fff;
    text-align: center;
}

a.btn-bwhite:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -101%;
    background: #fff;
    transition: left .4s ease-out;
    z-index: 1;
}

a.btn-bwhite span {
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 992px) {
    a.btn-bwhite:hover {
        color: #222 !important;
        border-color: #fff !important;
    }
    a.btn-bwhite:hover:before {
        left: 0;
    }
}

a.btn-black {
    display: block;
    position: relative;
    color: #fff;
    background: #222;
    overflow: hidden;
    border: solid 1px #222;
    text-align: center;
}

a.btn-black:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -101%;
    background: #fff;
    transition: left .4s ease-out;
    z-index: 1;
}

a.btn-black span {
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 992px) {
    a.btn-black:hover {
        color: #222 !important;
    }
    a.btn-black:hover:before {
        left: 0;
    }
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    vertical-align: middle;
}

table {
    border: solid 1px #ededed;
    border-collapse: collapse;
}

th,
td {
    font-weight: normal;
    padding: 5px;
    border: solid 1px #ededed;
    word-break: break-all;
}

.wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.row {
    margin: 0 auto;
    position: relative;
}

.row:before,
.row:after {
    display: none;
}

.lg-innerbox {
    width: 85%;
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    display: block;
    z-index: 4;
}

.lg-innerbox:before,
.lg-innerbox:after {
    content: '';
    display: table;
    clear: both;
}

.lg-inner {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: block;
    z-index: 5;
}

.lg-inner:before,
.lg-inner:after {
    content: '';
    display: table;
    clear: both;
}

.lg-inner1 {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    display: block;
    z-index: 5;
}

.lg-inner1:before,
.lg-inner1:after {
    content: '';
    display: table;
    clear: both;
}

.global-inner {
    width: 87.5%;
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    display: block;
    z-index: 5;
}

.global-inner:before,
.global-inner:after {
    content: '';
    display: table;
    clear: both;
}

.sm-inner {
    width: 85%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    display: block;
    z-index: 5;
}

.sm-inner:before,
.sm-inner:after {
    content: '';
    display: table;
    clear: both;
}

@media (max-width: 991.98px) {
    .lg-inner,
    .global-inner,
    .sm-inner {
        width: 100% !important;
        max-width: 100%;
        padding: 0 0.3rem;
        margin: 0 auto;
    }
}

.table-cell {
    display: table-cell;
    vertical-align: top;
}

.en {
    font-family: "Arial";
    font-style: normal;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.swiper-pagination-bullet {
    opacity: 1;
}

.fa {
    display: inline-block;
    line-height: inherit;
    font-size: 1em;
    vertical-align: middle;
    font-style: normal;
}

.inline-block {
    display: inline-block;
    vertical-align: top;
}

.padding-0 {
    padding: 0 !important;
}

.padding-top-0 {
    padding-top: 0 !important;
}

@media (min-width: 1600px) {
    .hidden-xxl-up {
        display: none !important;
    }
    .col-xxl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xxl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-xxl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 1599.98px) {
    .hidden-xxl-down {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hidden-lg-up {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .hidden-lg-down {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .visible-sm-down {
        display: none !important;
    }
    .hidden-sm-up {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .hidden-sm-down {
        display: none !important;
    }
}

@media (min-width: 576px) {
    .hidden-xs-up {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .hidden-xs-down {
        display: none !important;
    }
}


/***** 滚动条 *****/

.mCSB_inside>.mCSB_container {
    margin: 0;
}

.mCSB_scrollTools {
    width: 2px;
    background-color: #E6E6E6;
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 100%;
    border-radius: 0;
    background: transparent;
    transition: all 1.5s easeInOut;
    -webkit-transition: all 1.5s easeInOut;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    border-radius: 4px;
    background: #009372;
}


/**** modal ***/

.modal-backdrop {
    display: none !important;
}

#modalDiv {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: scroll;
    z-index: -1;
}

.modal {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    position: fixed !important;
    background: rgba(0, 0, 0, 0.8);
}

.modal .modal-dialog {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    pointer-events: auto;
}

.modal .modal-content {
    display: block;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border: none;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.modal .modal-header,
.modal .modal-body,
.modal .modal-footer {
    border: none;
    padding: 0;
    display: block;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}

.modal-close {
    width: 1.12rem;
    height: 1rem;
    display: block;
    border-radius: 0;
    position: fixed;
    top: 0;
    right: 0;
    margin: 0;
    cursor: pointer;
    background-size: 0.34rem;
    z-index: 1030;
}


/**** animate ***/

.animated {
    animation-delay: .1s;
}

@keyframes fadeInUp2 {
    0% {
        opacity: 0;
        transform: translate3d(0, 100px, 0);
        -webkit-transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        transform: none;
        -webkit-transform: none;
    }
}

@-webkit-keyframes fadeInUp2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
    }
}

@keyframes fadeInUp3 {
    0% {
        opacity: 0;
        transform: translate3d(0, 300px, 0);
        -webkit-transform: translate3d(0, 300px, 0);
    }
    100% {
        opacity: 1;
        transform: none;
        -webkit-transform: none;
    }
}

@keyframes fadeInUp4 {
    0% {
        opacity: 0;
        transform: translate3d(0, 300px, 0);
        -webkit-transform: translate3d(0, 300px, 0);
    }
    100% {
        opacity: 1;
        transform: none;
        -webkit-transform: none;
    }
}


@-webkit-keyframes fadeInUp3 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 300px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
    }
}

@keyframes fadeInUp5 {
    0% {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
        -webkit-transform: translate3d(0, 50px, 0);
    }
    100% {
        opacity: 1;
        transform: none;
        -webkit-transform: none;
    }
}

@-webkit-keyframes fadeInUp5 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
    }
}

@keyframes fadeInUp6 {
    0% {
        opacity: 1;
        transform: translate3d(0, 200px, 0);
        -webkit-transform: translate3d(0, 200px, 0);
    }
    100% {
        opacity: 1;
        transform: none;
        -webkit-transform: none;
    }
}

@-webkit-keyframes fadeInUp6 {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0, 200px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
    }
}

.fadeInUp2 {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
    -webkit-transform: translate3d(0, 100px, 0);
    animation: fadeInUp2 1s cubic-bezier(0.4, 0, 0.2, 1) both;
    -webkit-animation: fadeInUp2 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.fadeInUp3 {
    opacity: 0;
    animation: fadeInUp3 1s cubic-bezier(0.4, 0, 0.2, 1) both;
    -webkit-animation: fadeInUp3 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.fadeInUp4 {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
    -webkit-transform: translate3d(0, 100px, 0);
    animation: fadeInUp4 1s cubic-bezier(0.4, 0, 0.2, 1) both;
    -webkit-animation: fadeInUp4 .6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.fadeInUp5 {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
    -webkit-transform: translate3d(0, 100px, 0);
    animation: fadeInUp5 1s cubic-bezier(0.4, 0, 0.2, 1) both;
    -webkit-animation: fadeInUp5 .6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.fadeInUp6 {
    opacity: 1;
    transform: translate3d(0, 100px, 0);
    -webkit-transform: translate3d(0, 100px, 0);
    animation: fadeInUp6 1s cubic-bezier(0.4, 0, 0.2, 1) both;
    -webkit-animation: fadeInUp6 .6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@-webkit-keyframes delChange1 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
    }
}

.delChange1 {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
    -webkit-transform: translate3d(0, 100px, 0);
    animation: delChange1 1s cubic-bezier(0.4, 0, 0.2, 1) both;
    -webkit-animation: delChange1 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}



/**** video ***/

.video-box {
    position: relative;
}

.video-box .adjust {
    width: 100%;
    max-width: 100%;
    display: block;
}

.video-js {
    width: 100% !important;
    height: 100% !important;
    display: block;
    overflow: hidden;
    background-color: #000;
    position: absolute !important;
    left: 0;
    top: 0;
    z-index: 20;
}

.video-js:hover .vjs-big-play-button {
    background-color: transparent;
    opacity: 1;
}

.video-js .vjs-big-play-button {
    width: 60px;
    height: 60px;
    background: transparent;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border: none;
    border-radius: 100%;
    z-index: 50;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    background: url("/Img/images/video_play.png") no-repeat center center transparent;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border: none;
    z-index: 50;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
    display: none;
}

.video-js .vjs-poster {
    background-size: cover;
    transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.video-js .vjs-subs-caps-button {
    display: none !important;
}

@media (max-width: 1199.98px) {
    .video-js .vjs-big-play-button {
        width: 0.6rem;
        height: 0.6rem;
    }
}

.video-play {
    width: 3.7em;
    height: 4.3em;
    display: block;
    background: url("/Img/images/video_play.png") no-repeat center center;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -2.15em 0 0 -1.85em;
    z-index: 50;
}

.modal-video video {
    object-fit: fill;
}

@media screen and (max-width: 991.98px) {
    .modal-video video {
        object-fit: contain;
    }
}

.main-box {
    min-height: 600px;
    
}

.noData{
    width: 100%;
    font-size: 16px;
    line-height: 100px;
    color: #999;
    text-align: center;
    min-height: 300px;
}




/* 导航 */

.header {
    width: 100%;
    /* width: 96em; */
    height: 4.5em;
    position: absolute;
    z-index: 300;
    background-color: #fff;
  /*  position: fixed;  */
    border-bottom: 1px solid #E5E5E5;
    top: 0;
    left: 0;
}
.wap-head{
    height: 1.1rem;
}

.headbox {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    -ms-display: flex;
    -webkit-display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

@media (min-width: 992px) {
    /* .main-box {
        width: 96em;
    } */
    .header {
        width: 100%;
        /* width: 96em; */
    }
}

.modal {
    z-index: 99999999999999
}

.navbox .navul {
    display: flex;
    -ms-display: flex;
    -webkit-display: flex;
    align-items: center;
    font-weight: normal;
    font-stretch: normal;
}

.navbox .navul li:last-child {
    margin-right: 0;
}

.navbox .navul .nav-li a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #009372;
    transition: all .3s;
    z-index: 9999;
}

.navbox .navul .nav-li .nav-2tabbox {
    background-color: #fff;
    background-size: 100% 0;
    background-position: left top;
}

.nav-2tabbox-con a::after {
    display: none!important;
}

.navbox .navul .li-on>a::after {
    width: 100%;
}

.navbox .navul .active>a::after {
    width: 100%;
}

.navbox .navul .active>a {
    color: #009372!important;
    font-weight: bold;
}

.nav-2tabbox-con li:hover a {
    color: #0157ac!important;
}


/* 二级导航 */

.navbox .navul li .nav-2tabbox {
    position: absolute;
    display: none;
    left: 50%;
    transform: translateX(-50%);
    top: 2.5em;
    width: 100%;
    padding: 10px 10px;
    height: auto;
    text-align: center;
    height: auto!important;
    width: 160px;
}

.nav-2tabbox .nav-2tabbox-con {
    width: 100%;
    height: 100%;
}

.nav-2tabbox .nav-2tabbox-con ul li {
    display: block;
    font-size: 14px;
    color: #333;
    padding: 15px 0;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
}

.nav-2tabbox .nav-2tabbox-con ul li:last-child {
    border-bottom: 0px;
}

.nav-2tabbox .nav-2tabbox-con ul li a {
    display: inline-block;
    line-height: 1em;
    background-repeat: no-repeat;
    background-position: 0px 100%;
    background-size: 100% .0rem;
    transition: all .3s;
}

.nav-2tabbox .nav-2tabbox-con ul li:hover a {
    background-size: 100% 4px;
}

@keyframes nav-2tab-kf {
    0% {
        opacity: 0;
        top: 30px;
    }
    100% {
        opacity: 1;
        top: 90px;
    }
}

@-webkit-keyframes nav-2tab-kf {
    0% {
        opacity: 0;
        top: 30px;
    }
    100% {
        opacity: 1;
        top: 90px;
    }
}

#head {
    height: 100px;
}


/* 导航 end */


/* 黑色背景 */

.blackbg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.blackbgShow {
    display: block;
}

.header-right {
    width: 1755px;
    display: flex;
    justify-content: space-between;
}


/* 搜索框 */

.search-box {
    position: fixed;
    top: 4em;
    left: 0;
    width: 100vw;
    background: #fff;
    z-index: 100;
    border-top: 1px solid #e0e0e0;
    padding: 80px 0 45px;
    display: none;
}

.search-box .formbox {
    width: 800px;
    margin: 0 auto;
    padding: 0 0 17px;
    position: relative;
    border-bottom: 2px solid #000;
    display: flex;
}

.search-box .formbox .inputbox {
    width: calc(100% - 60px);
    height: 20px;
    padding-left: 0;
    border: none;
    font-size: 18px;
}

.search-box .formbox .inputbox input {
    width: 100%;
    height: 100%;
    padding-left: 0;
    border: none;
    font-size: 18px;
}

.search-box .formbox a {
    position: absolute;
    bottom: 17px;
    right: 20px;
}

.search-box .recobox {
    text-align: center;
    margin-top: 20px;
}

.search-box .recobox .txt {
    display: inline-block;
    border-radius: 12px;
    padding: 3px 12px 7px;
    background: #8cc63e;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

.search-box .recobox .txtbox {
    display: inline-block;
    margin-left: 17px;
}

.search-box .recobox .txtbox a {
    display: inline-block;
    color: #777;
    font-size: 16px;
    position: relative;
}

.search-box .recobox .txtbox a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 15px;
    background: #dfdfdf;
    margin: 0 10px;
}


/* 搜索框 end */


/* 导航背景 */


/* 导航背景 end */


/* 总体 正式开始 */


/* nav左边开始 */

.nav-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbox {
    margin-left: 3.45em;
    margin-top: 6px;
}

.nav-li {
    position: relative;
    height: auto;
    margin-right: 2.95em;
}

.nacv-1tab {
    display: block;
    text-align: center;
    font-size: .8em;
    color: #111111;
    position: relative;
    padding-bottom: 8px;
}

.logo{
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img{
    height: 2.3rem;
}


/* nav右边 */

.nav-right {
    /* width: 11.5em; */
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-right-left {
    margin-right: .9em;
}

.nav-right-left-all {
    width: 100%;
    display: flex;
    align-items: center;
}

.nav-icon-del {
    width: 17px;
    height: 17px;
    color: #009372;
    /* margin-top: 8px; */
    margin-right: 0.5em;
}

.nav-del-num {
    /* width: 6.883em; */
    /* height: 0.55em; */
    height: 100%;
    font-size: 0.7em;
    /* line-height: 28px; */
    color: #111111;
}

.nav-right-right-all {
    width: 4.5em;
    height: 1.8em;
    display: flex;
    align-items: center;
    border-radius: .9em;
    border: solid 1px #dcdcdc;
}

.nav-rightbox {
    margin-left: 16px;
    margin-right: 10px;
}

.search {
    width: 0.9em;
    height: 0.9em;
    color: #999999;
}

.nav-right-text {
    width: 2em;
    height: 0.8571428571428571em;
    font-size: .7em;
    color: #111111;
}


/* 新增右边 */

.nav-right-right-border{
    width: 4.5em;
    height: 1.8em;
    border-radius: .9em;
    display: flex;
    position: relative;
    border: 1px solid #dcdcdc;
}

.add-nav-right-all {
    /* width: 4.5rem;
    height: 50%; */
    position: relative;
    display: -webkit-flex;
    align-items: center;
}

.add-nav-right-all input::-webkit-input-placeholder {
    font-size: 14px;
}

.add-nav-right-all .search-btn {
    width: .8em;
    height: .8em;
    position: absolute;
    /* top: 50%; */
    /* left: 18%; */
    /* padding-left: 18%; */
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/content/Img/images/icon-sch3.png);
    transform: translateX(100%);
}

.add-nav-right-all input {
    /* position: relative; */
    /* position: absolute; */
    width: 4.5rem;
    height: 1.75rem;
    border-radius: .9rem;
    border: 1px solid #dcdcdc;
    padding-left: 2.1rem;
    color: #000;
    /* font-size: 12px; */
    /* background-color: #009372; */
    /* width: 100% */
    font-size: .7em;
    /* top: 4.5px;
    left: 0; */
    transition: all .5s;
    -webkit-transition: all .5s;
}

.add-nav-right-all input {
    /* margin-bottom: 20px;
    padding-bottom: 4px;
    padding-right: 17px; */
 }

.add-nav-right-all button {
    position: absolute;
    top: .8em;
    right: 1.5em;
    font-size: .7em;
    color: #111111;
}


/* placeholder颜色 */

input::-webkit-input-placeholder {
    color: #111111;
    /* text-align: right; */
    font-size: 14px;
    /* padding: 0 10px; */
    line-height: 20px;
    /* padding-left: -20px; */
}



.inputChange{
    /* padding-right: 6rem; */
    width: 20rem;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.inputChange .add-nav-right-all input{
    width: 10.5rem;
    transition: all .5s;
    -webkit-transition: all .5s;
}

/* .nav-seach-btn {
    display: block;
} */


/*  */

@media (max-width: 991.98px) {
    .ph-nav-btn {
        float: right;
        margin-left: 0.48rem;
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        transition: all 0.3s linear;
        margin-top: 0.15rem;
    }
    .header .global-inner {
        display: table;
        /* padding-top: 0.22rem; */
        overflow: hidden;
        position: relative;
    }
    .header .logo {
        float: left;
    }
    .header .logo a {
        display: block;
        height: 0.66rem;
    }
    .header .logo img {
        display: block;
        height: .66rem;
        width: auto;
        /* margin-top: .1rem; */
        display: -webkit-flex;
        align-items: center;
        justify-content: center;
    }
    /* 新增 */
    .mob-search{
        display: -webkit-flex;
        justify-content: space-between;
        /* align-items: center; */
        height: 100%;
        position: absolute;
        right: .3rem;
    }
    .ph-nav-btn{
        margin-top: 0;
    }
    .wap-search{
        margin-top: 0;
    }


    /* 结束 */
    .hd-sch {
        float: right;
        width: 0.39rem;
        padding-top: 0.12rem;
    }
    .hd-sch a {
        display: block;
    }
    .hd-sch img {
        width: 100%;
        display: block;
    }
    .ph-nav-btn {
        float: right;
        margin-left: 0.48rem;
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        transition: all 0.3s linear;
        margin-top: 0rem;
    }
    .ph-nav-pop svg {
        width: .25rem;
        height: .14rem;
        margin-top: .4rem;
        float: right;
        color: #000;
        transition: all .5s;
    }
    .header .nav_btn {
        cursor: pointer;
        height: 0.32rem;
        width: 0.51rem;
        position: relative;
        z-index: 2;
    }
    .header .nav_btn span {
        display: inline-block;
        width: 0.51rem;
        height: 0.04rem;
        background-color: #009372;
        position: absolute;
        top: 0.14rem;
        left: 0px;
        -webkit-transition: background-color 0.1s ease-out 0s;
        -moz-transition: background-color 0.1s ease-out 0s;
        -o-transition: background-color 0.1s ease-out 0s;
        -ms-transition: background-color 0.1s ease-out 0s;
        transition: background-color 0.1s ease-out 0s;
    }
    .waplau {
        color: #fff;
        text-align: center;
        font-size: .32rem;
        margin-top: 1rem;
    }
    .daili-wap {
        width: 100%;
        line-height: .95rem;
        color: #ffffff;
        text-align: center;
        background-color: #fe2c55;
        border-radius: 35px;
        font-size: .32rem;
    }
    .header .nav_btn.open span {
        background-color: transparent;
        z-index: 9;
    }
    .paddingwap {
        padding: 0 .36rem;
        margin-top: .6rem;
    }
    .header .nav_btn span:before {
        content: '';
        display: inline-block;
        width: 0.51rem;
        height: 0.04rem;
        background-color: #009372;
        position: absolute;
        top: -0.14rem;
        right: 0px;
        -webkit-transition: transform 0.1s ease-out, top 0.3s ease 0.2s;
        -moz-transition: transform 0.1s ease-out, top 0.3s ease 0.1s;
        -o-transition: transform 0.1s ease-out, top 0.3s ease 0.2s;
        -ms-transition: transform 0.3s ease-out, top 0.3s ease 0.2s;
        transition: transform 0.3s ease-out, top 0.3s ease 0.2s;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .header .nav_btn.open span:before {
        -webkit-transition: top 0.3s ease, transform 0.1s ease-out 0.2s;
        -moz-transition: top 0.3s ease, transform 0.1s ease-out 0.2s;
        -o-transition: top 0.3s ease, transform 0.1s ease-out 0.2s;
        -ms-transition: top 0.3s ease, transform 0.1s ease-out 0.2s;
        transition: top 0.3s ease, transform 0.1s ease-out 0.2s;
        -webkit-transform: rotate(45deg);
        top: 0px;
        -moz-transform: rotate(45deg);
        top: 0px;
        -o-transform: rotate(45deg);
        top: 0px;
        -ms-transform: rotate(45deg);
        top: 0px;
        transform: rotate(45deg);
        top: 0px;
    }
    .header .nav_btn span:after {
        content: '';
        display: inline-block;
        width: 0.51rem;
        height: 0.04rem;
        background-color: #005185;
        position: absolute;
        top: 0.14rem;
        right: 0px;
        -webkit-transition: transform 0.1s ease-out, top 0.3s ease 0.2s;
        -moz-transition: transform 0.1s ease-out, top 0.3s ease 0.2s;
        -o-transition: transform 0.1s ease-out, top 0.3s ease 0.2s;
        -ms-transition: transform 0.1s ease-out, top 0.3s ease 0.2s;
        transition: transform 0.1s ease-out, top 0.3s ease 0.2s;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .header .nav_btn.open span:after {
        -webkit-transition: top 0.3s ease, transform 0.1s ease-out 0.2s;
        -moz-transition: top 0.3s ease, transform 0.1s ease-out 0.2s;
        -o-transition: top 0.3s ease, transform 0.1s ease-out 0.2s;
        -ms-transition: top 0.3s ease, transform 0.1s ease-out 0.2s;
        transition: top 0.3s ease, transform 0.1s ease-out 0.2s;
        -webkit-transform: rotate(-45deg);
        top: 0px;
        -moz-transform: rotate(-45deg);
        top: 0px;
        -o-transform: rotate(-45deg);
        top: 0px;
        -ms-transform: rotate(-45deg);
        top: 0px;
        transform: rotate(-45deg);
        top: 0px;
    }
    .ph-nav-box {
        position: fixed;
        z-index: 1000;
        width: 100%;
        height: 100%;
        left: 0;
        top: 1.1rem;
        /*background: rgba(0,0,0,.3);*/
        opacity: 0;
        transform: scaleX(0);
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -o-transform: scaleX(0);
        transition: all 0.3s ease-in-out;
        z-index: 99999999;
    }
    .ph-nav-box.on {
        opacity: 1;
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -o-transform: scaleX(1);
    }
    .ph-nav-box .ph-nav-pop {
        border-top: 1px solid rgba(255, 255, 255, .3);
        width: 100%;
        height: 100%;
        margin: 0 auto;
        background: #f5f5f5;
        z-index: 10;
        -webkit-transition: all 0.5s linear;
        -o-transition: all 0.5s linear;
        -ms-transition: all 0.5s linear;
        -moz-transition: all 0.5s linear;
        transition: all 0.5s linear;
        padding-bottom: 1.1rem;
    }
    .nav-main {
        height: 100%;
        overflow: hidden;
    }
    .nav-main ul {
        padding: 0rem 0.3rem 0;
    }
    .nav-main em {
        float: right;
        width: 30%;
        margin-top: 0.06rem;
        position: relative;
    }
    .nav-main em:before {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -1px;
        width: 22px;
        height: 2px;
        background-color: #ccc;
        transition: all .3s;
        z-index: 10;
        display: none;
    }
    .bgCode {
        padding: .14rem;
        background-color: #fff;
        display: inline-block;
    }
    .ph-nav-pop li {
        margin-top: .3rem;
    }
    .wapfooter {
        background-color: #061630;
        color: #fff;
        padding: .8rem 0;
    }
    .waptab {
        flex-wrap: wrap;
        margin: 0 -.4rem;
    }
    #akmssageId img {
        width: .8rem;
    }
    .msg {
        right: 11px;
    }
    .waptab .item {
        padding: 0 .4rem;
        border-right: 1px solid #fff;
        font-weight: bold;
        margin-bottom: .45rem;
    }
    .waptab .item:nth-child(2) {
        border-right: 0px solid #fff;
    }
    .waptab .item:last-child {
        border-right: 0px solid #fff;
    }
    .wapfooter .icbox {
        width: .7rem;
        height: .7rem;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(255, 255, 255, .1);
        border-radius: 50%;
    }
    .wapfooter .icbox img {
        width: .24rem;
    }
    .wapfooter .icbox+.icbox {
        margin-left: .4rem;
    }
    .waoline {
        width: 100%;
        height: 1px;
        background-color: #384559;
        margin-top: .8rem;
    }
    .waptel .flex {
        justify-content: space-between;
        margin-top: .38rem;
    }
    .waptel .item+.item {
        margin-left: .4rem;
    }
    .waptel .item {
        width: 50%;
        background-color: #0057b8;
        line-height: .8rem;
        text-align: center;
        color: #fff;
        border-radius: 35px;
    }
    .waptel h1 {
        margin-top: .4rem;
    }
    .waptel {
        margin-top: .4rem;
    }
    .width100 {
        width: 100%!important;
    }
    .wapbeian {
        padding: .85rem .3rem 0;
        border-top: 1px solid #384559;
        margin-top: .8rem;
        font-size: .26rem;
        line-height: .36rem;
        opacity: .5;
    }
    /* 新增 */
}

@media screen and (max-width: 450px) {
    .nav-main em:before {
        width: 14px;
    }
    .nav-main em:after {
        right: 6px;
        margin-top: -7px;
        height: 14px;
        display: none;
    }
}

.nav-main .on em:before {
    background-color: #014da1;
}

.nav-main .on em:after {
    display: none;
}

.nav-main .lv4pop .lv1 em,
.nav-main .lv4pop .lv2 em,
.nav-main .lv4pop .lv3 em,
.nav-main .lv3pop .lv1 em,
.nav-main .lv3pop .lv2 em,
.nav-main .lv2pop .lv1 em {
    display: block;
}

.nav-main .lv2box,
.nav-main .lv3box,
.nav-main .lv4box {
    display: none;
}

.nav-main .lv1,
.nav-main .lv2,
.nav-main .lv3,
.nav-main .lv4 {
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.nav-main .lv2,
.nav-main .lv3,
.nav-main .lv4 {
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.lv1.on svg {
    transform: rotate(180deg);
}

.nav-main .lv1 a {
    float: left;
    display: block;
    font-size: 0.32rem;
    line-height: 0.42rem;
    color: #000000;
    min-width: 50%;
    padding: 0.3rem 0 0.3rem;
    transition: all .3s;
}

.lv2box {
    margin-left: .3rem;
}

.nav-main .lv2 a {
    float: left;
    display: block;
    font-size: 0.28rem;
    line-height: 0.42rem;
    color: #000000;
    min-width: 50%;
    padding: 0.2rem 0 0.2rem 0;
    transition: all .3s;
}

.lv2.on svg {
    transform: rotate(180deg);
}

.nav-main .lv3 a {
    float: left;
    display: block;
    font-size: 0.28rem;
    line-height: 0.42rem;
    color: #000000;
    min-width: 50%;
    padding: 0.15rem 0 0.15rem 0rem;
    transition: all .3s;
}

.lv3box {
    margin-left: .3rem;
}

.nav-main .lv4 a {
    float: left;
    display: block;
    font-size: 0.28rem;
    line-height: 0.42rem;
    color: #666;
    min-width: 50%;
    padding: 0.22rem 0 0.22rem 0rem;
}

.wap-language {
    margin-top: .14rem;
}

.wap-language svg {
    width: .4rem;
    height: .4rem;
    color: #222;
}

.wap-search svg {
    width: .37rem;
    height: .37rem;
    color: #222;
}

.wap-search {
    margin-left: .2rem;
    padding-left: .2rem;
    /* padding-top: .1rem; */
    padding-bottom: .1rem;
    margin-top: .06rem;
}

.video-js .vjs-tech {
    object-fit: cover!important;
}


/* 页脚 */

footer {
    background-color: #F6F7F5;
    position: relative;
    z-index: 9;
}

.fooer {
    height: 100%;
    color: #F6F7F5;
}

.footer-all {
    padding: 2em 0 2em 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5em;
}

.footer-top-left{
    cursor: pointer;
}


/* .footer-top-left form {
    width: 9.9em;
    height: 2em;
    border-radius: 1em;
    padding: 5px 5px 0 15px;
    border: solid 1px #999999;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-top-left p {
    font-size: .7em;
}

.footer-top-left select option:hover {
    color: #009372 !important;
} */

.btn-secondary {
    background-color: rgba(0, 0, 0, 0);
    color: #333333;
}


/* .btn-secondary.dropdown-toggle {
    background-color: #f6f7f5;
} */

.btn-secondary {
    width: 9.9em;
    height: 2em;
    border-radius: 100px;
}

.dropdown-menu {
    width: 9.9em;
    border-radius: 10%;
}

.dropdown-item:hover {
    color: #009372;
}

.dropup .dropdown-toggle::after {
    margin-left: 2em;
}

.btn-secondary:hover {
    color: #000;
    background-color: rgba(0, 0, 0, 0);
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color: #000;
    background-color: #f6f7f5;
}


/* 下拉框 */

.footer-top-right {
    position: relative;
    display: flex;
}

.footer-top-right img:hover {
    opacity: .5;
}

.footer-weibo{
    margin: 0 .5em;
    cursor: pointer;
}

.footer-weibo:last-child{
    margin-right: 0;
}

/* .footer-wx {
    
} */

/* .wx-img {
    position: absolute;
    top: -6em;
    left: -1.5em;
    width: 100%;
    display: none;
} */

.footer-end {
    display: flex;
    justify-content: space-between;
    font-size: .7em;
    color: #666666;
}

.footer-end-left {
    width: 34em;
    display: flex;
    justify-content: start;
}

.footer-end-left p:nth-child(1){
    margin-right: 5px;
}

.footer-end-right span:hover {
    opacity: .5;
    cursor: pointer;
}

.footer-youq {
    width: 14.28em;
    height: 2.85em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    border: solid 1px #999999;
    padding: 0 1.17em;
    font-size: .7em;
    position: relative;
    z-index: 9;
    background-color: #F6F7F5;
}

.footer-youq svg {
    width: .7em;
    height: 8px;
}

.footer-youq-link {
    position: absolute;
    bottom: 6.5em;
    left: 0;
    width: 10em;
    max-height: 7.3em;
    background-color: #ffffff;
    box-shadow: 0px -6px 18px 0px rgba(37, 35, 32, 0.1);
    border-radius: 20px;
    z-index: 0;
    display: none;
}

.footer-youq-link-all {
    padding: 1.35em 1em 2.5em 1em;
}

.footer-youq-link-all p {
    font-size: .7em;
    /* text-align: center; */
    margin-bottom: 1em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.footer-youq-link-all a:hover {
    color: #009372;
}

.isacta {
    display: block;
}

.isdog {
    transform: rotate(180deg);
}


/* 手机底部 */

.mob-footer {
    /* margin-top: .4rem; */
}

.mob-footer-all {
    padding: 0 .3rem;
}

.mob-footer-top-all {
    display: flex;
    justify-content: space-between;
}

.mob-footer-icon {
    display: flex;
    position: relative;
}

.mob-footer-icon::before {
    content: "";
    width: 1px;
    height: 25px;
    position: absolute;
    top: .15rem;
    right: -.5rem;
    background: #999;
    z-index: 1;
}


/* .mob-footer-wb:first-child {
    margin-right: .2rem;
} */

.mob-footer-wb {
    margin: 0 .1rem;
}

.mob-footer-wb:last-child {
    margin-right: 0rem;
}

.mob-footer-link {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

/* .mob-footer-link-all {
    padding-right: .65rem;
} */

@media (max-width: 991.98px) {
    
.mob-footer-link {
    position: relative;
}
    .btn-secondary {
        font-size: .3rem;
        padding: 0;
    }
    .dropdown-menu {
        min-width: 3rem !important;
        width: 3rem;
        transform: translate3d(0px, -102px, 0px);
        padding: 0.15rem 0;
    }
    .dropdown-item {
        font-size: .3rem;
        padding: .05rem .5rem;
        text-align: center;
    }
    .footer-youq {
        width: 3.4rem;
        height: .8rem;
        font-size: .3rem;
    }
    .mob-footer-link{
        position: relative;
        margin-left: 0;
    }
    .footer-youq-link {
        width: 3.4rem;
        max-height: 5rem;
        bottom: 3rem;
        left: 3.05rem;
        z-index: 8;
        bottom: 0;
        left: 0;
        /* padding-bottom: 2.7rem; */
    }
    .footer-youq-link-all{
        padding: 1.35em 1em 3.5em 1em;
    }
    /* .footer-youq-link {
        width: 3.4rem;
    } */
    .footer-youq-link-all p {
        font-size: .3rem;
    }
    .mob-footer-top-all {
        display: flex;
        justify-content: left;
    }
}

.mob-footer {
    background-color: #f6f7f5;
    padding: .8rem 0;
}

.mob-footer-end-all {
    font-size: .3rem;
    line-height: .4rem;
    color: #666666;
    margin-bottom: .78rem;
    text-align: center;
}

.mob-footer-copyright {
    margin-top: .8rem;
    margin-bottom: .3rem;
}

.mob-footer-support {
    /* padding-bottom: .8rem; */
}


/* 回到顶部 */

.backtop {
    position: fixed;
    right: 3em;
    bottom: 5.1em;
    z-index: 9;
}

.backtop:hover {
    cursor: pointer;
}


/* 搜索框 2022.05.05 */

.search-box {
    position: fixed;
    position: relative;
    top: 1.1rem;
    left: 0;
    width: 100vw;
    background: #009372;
    z-index: 9999999;
    border-top: 1px solid #e0e0e0;
    padding: 35px 0 35px;
    display: none;
    z-index: 9;
}

.search-box .formbox {
    width: 340px;
    margin: 0 auto;
    padding: 0 0 17px;
    position: relative;
    border-bottom: 2px solid #fff;
    display: flex;
}

.search-box .formbox .inputbox {
    width: calc(100% - 60px);
    height: 20px;
    padding-left: 0;
    border: none;
    font-size: 18px;
}

.search-box .formbox .inputbox input {
    width: 100%;
    height: 100%;
    padding-left: 0;
    border: none;
    font-size: 18px;
}

.search-box .formbox a {
    position: absolute;
    bottom: 17px;
    right: 20px;
}

.search-box .recobox {
    text-align: center;
    margin-top: 20px;
}

.search-box .recobox .txt {
    display: inline-block;
    border-radius: 12px;
    padding: 3px 12px 7px;
    background: #8cc63e;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

.search-box .recobox .txtbox {
    display: inline-block;
    margin-left: 17px;
}

.search-box .recobox .txtbox a {
    display: inline-block;
    color: #777;
    font-size: 16px;
    position: relative;
}

.search-box .recobox .txtbox a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 15px;
    background: #dfdfdf;
    margin: 0 10px;
}

.add-search img {
    width: 20px;
}

.add-mob-x {
    position: absolute;
    top: .2rem;
    right: .2rem;
    width: 20px;
    height: 20px;
    color: #fff;
}

.search-box-show {
    display: block;
}

.wx-img-x {
    display: block;
    transition: all 0;
}

@media (max-width: 991.98px) {
    /* .wx-img {
        position: absolute;
        top: -2rem;
        left: 0;
        width: 100%;
        display: none;
    } */
    .mob-footer {
        background-color: #f6f7f5;
        padding: 0;
        display: -webkit-flex;
        justify-content: center;
    }
    .wap-search svg{
        color: #005185;
    }
}


/* 搜索框 end */


@keyframes is-banner-active {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0) scale(.9);
    }
}
@-webkit-keyframes is-banner-active {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0) scale(.9);
    }
}


/* 新增手机框 开始 */
.foot-jszc_swip {
    max-width: 13em;
    height: 1.5em;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.foot-jszc_swip .foot-jszc{
    display: block !important;
}

.foot-jszc_swip a {
    display: inline;
}

.foot-jszc_swip .swiper-slide{
    background-color: #F6F7F5;
    font-size: 1em;
}
@media (max-width: 991.98px) {
    .modal-schbox {
        width: 100%;
        top: 1.1rem;
        /* top: 0; */
        padding: .3rem 0 ;
        background-color: #f8f8fa;
        position: fixed;
        left: 0;
        z-index: 100;
        display: none;
        z-index: 302;
    }
    .modal-schbox .box {
        width: 100%;
        padding: 0 1rem 0 0;
    }
    .modal-schbox .btn-close {
        width: .4rem;
    }
    .modal-schbox .btn-close .bi {
        width: .4rem;
        height: .4rem;
        color: #009372;
        position: absolute;
        top: 28%;
        right: 4.5%
    }
    .modal-schbox .inpt {
        height: .8rem;
        padding: .1rem 1rem .1rem .3rem;
        font-size: .3rem;
        line-height: .6rem;
        width: 100%;
    }
    .modal-schbox .btn-sch {
        
        width: 1rem;
        position: absolute;
    }
    .modal-schbox .btn-sch .bi {
        width: .4rem;
        height: .4rem;
        color: #005185;
        -webkit-transform:translate(-150%, 50%);
        top: 50%;
        left: 50%;
    }
    .foot-jszc_swip .swiper-slide{
        /* background-color: #fff; */
        font-size: .3rem;
    }
}

/* body.head-isred .header {
    background: #e60012;
} */

/* 新增手机框 结束 */

.footer-end-right{
    display: -webkit-flex;
    display: flex;
    /* align-items: center; */
    white-space: nowrap;
    word-wrap: normal;
    /* text-align: center; */
    /* justify-content: center; */
}

@media (max-width: 991.98px) {
    .footer-end-right{
        text-align: center;
        justify-content: center;
    }
}

.footer-name-num a:hover,
.foot-jszc_swip a:hover
{
color: #009372;
}


@media (max-width: 991.98px) {
    .wap-search{
        position: relative;
    }

    .wap-search::after{
        content: '';
        display: block;
        position: absolute;
        left: .7rem;
        /* bottom: 0rem; */
        width: 1px;
        height: .6rem;
        background: #EAEAEA;
    }
    .wap-search{
        margin-left: 0;
        padding-left: 0;
        height: 100%;
        display: flex;
        align-items: center;
        margin-left: -1.5rem;
    }
    .ph-nav-btn{
        margin-left: 1rem;
        height: 100%;
        display: flex;
        align-items: center;
    }
    .nav-menu{
        height: 100%;
        display: -webkit-flex;
        align-items: center;
    }

    .nav-menu img{
        width: .44rem;
        height: .38rem;
    }
}

.footer-top-right .footer-weibo:nth-child(1):hover .wx-img-bor{
    display: block;
}

.wx-img{
    width: 5.5em;
    height: 5.5em;
}

.wx-img-all::before{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 0.5em solid transparent;
    border-top-color: #fff;
    position: absolute;
    left: 36%;
    bottom: -1em;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: 5;
}

.wx-img-all::after{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 0.5em solid transparent;
    border-top-color: #000;
    position: absolute;
    left: 36%;
    bottom: calc(-1em - 1px);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: 1;
    opacity: .05;
}


@media (max-width: 991.98px) {
    .mob-footer-icon .mob-footer-wb:nth-child(1):hover .wx-img-bor{
        display: block;
        top: -1.9rem;
        left: 0rem;
    }
    .wx-img{
        width: 1.75rem;
        height: 1.75rem;
    }
    .wx-img-all::before{
        content: '';
        display: block;
        width: 0;
        height: 0;
        border: 0.5em solid transparent;
        border-top-color: #fff;
        position: absolute;
        left: 21%;
        bottom: -.25rem;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        z-index: 5;
    }
    .wx-img-all::after{
        content: '';
        display: block;
        width: 0;
        height: 0;
        border: 0.5em solid transparent;
        border-top-color: #000;
        position: absolute;
        left: 21%;
        bottom: calc(-.25rem - 1px);
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        z-index: 1;
        opacity: .05;
    }
    .mob-footer-wb:first-child{
        margin-left: 0;
        position: relative;
    }
}


.wx-img-bor{
    position: absolute;
    top: -6em;
    left: -1.05em;
    /* width: 2em;
    height: 2em; */
    display: none;
    padding: 0 0 1em;
}

.wx-img-all{
    width: 5.5em;
    width: 7em;
    height: 100%;
    position: relative;
}




.footer-top-right .wx-img:hover{
    opacity: 1;
}
