/* @font-face {
    font-family: "mm";
    src: url("../font/Roboto-Medium.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "bb";
    src: url("../font/Roboto-Bold.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "ll";
    src: url("../font/Roboto-Light.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "rr";
    src: url("../font/Roboto-Regular.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "yy";
    src: local("Sree Krushnadevaraya"),
         local("Arial"),
         local("sans-serif");
    font-weight: normal;
    font-style: normal;
} */

@font-face {
    font-family: "ll";
    src: local("-apple-system"), local("BlinkMacSystemFont"), local("Segoe UI Variable Display"), local("Segoe UI"), local("Helvetica"), local("Apple Color Emoji"), local("Arial"), local("sans-serif"), local("Segoe UI Emoji"), local("Segoe UI Symbol");
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: "rr";
    src: local("-apple-system"), local("BlinkMacSystemFont"), local("Segoe UI Variable Display"), local("Segoe UI"), local("Helvetica"), local("Apple Color Emoji"), local("Arial"), local("sans-serif"), local("Segoe UI Emoji"), local("Segoe UI Symbol");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "bb";
    src: local("-apple-system"), local("BlinkMacSystemFont"), local("Segoe UI Variable Display"), local("Segoe UI"), local("Helvetica"), local("Apple Color Emoji"), local("Arial"), local("sans-serif"), local("Segoe UI Emoji"), local("Segoe UI Symbol");
    font-weight: bolder;
    font-style: normal;
}

@font-face {
    font-family: "mm";
    src: local("-apple-system"), local("BlinkMacSystemFont"), local("Segoe UI Variable Display"), local("Segoe UI"), local("Helvetica"), local("Apple Color Emoji"), local("Arial"), local("sans-serif"), local("Segoe UI Emoji"), local("Segoe UI Symbol");
    font-weight: bolder;
    font-style: normal;
}

/* @font-face {
    font-family: "enrr";
    src: local("Calibri"),
        local("Arial"),
        local("sans-serif");
    font-weight: normal;
    font-style: normal;
} */

@font-face {
    font-family: "enrr";
    src: local("-apple-system"), local("BlinkMacSystemFont"), local("Segoe UI Variable Display"), local("Segoe UI"), local("Helvetica"), local("Apple Color Emoji"), local("Arial"), local("sans-serif"), local("Segoe UI Emoji"), local("Segoe UI Symbol");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "enll";
    src: local("Calibri Light"),
        local("Calibri"),
        local("Arial"),
        local("sans-serif");
    font-weight: lighter;
    font-style: normal;
}


@font-face {
    font-family: "titrr";
    src: local("ui-serif"), local("LibreBaskerville"), local("Georgia"), local("Cambria"), local("Times New Roman"), local("Times"), local("serif");
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-padding-top: .9rem;
}

:root {
    --theme-color: #036FD4;
    --ff: -apple-system, BlinkMacSystemFont, Segoe UI Variable Display, Segoe UI, Helvetica, Apple Color Emoji, Arial, sans-serif, Segoe UI Emoji, Segoe UI Symbol;

    /* 按钮滑动的样式 */
    /* 第一种  宽高 */
    --btn-width: 1.08rem;
    --btn-height: 0.34rem;
    /* 第二种 padding */
    --btn-padding-x: 0.22rem;
    --btn-padding-y: 0.06rem;
    /* 按钮字体颜色 */
    --btn-font-color: #666666;
    /* 按钮触发字体颜色 */
    --btn-font-color-hover: #fff;
    /* 按钮背景颜色 */
    --btn-bg-color: transparent;
    /* 按钮触发背景颜色 */
    --btn-bg-color-hover: var(--theme-color);
    /* 按钮字体大小 */
    --btn-font-size: 0.16rem;
    /* 按钮边框 */
    --btn-border: 1px solid #D7D7D7;
    /* 按钮边框半径 */
    --btn-border-radius: 0.5rem;
}

sup {
    font-size: 0.8em;
    vertical-align: super;
}

.slidemore {
    width: var(--btn-width);
    height: var(--btn-height);
    font-size: var(--btn-font-size);
    color: var(--btn-font-color);
    font-family: var(--ff);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: var(--btn-border-radius);
    border: var(--btn-border);
    overflow: hidden;
}

.slidemore::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--btn-bg-color-hover);
    top: 0;
    left: 0;
    transform: translateX(-104%);
    transition: all 0.5s;
}

.slidemore span {
    position: relative;
    z-index: 2;
}

.slidemore:hover {
    color: var(--btn-font-color-hover);
}

.slidemore:hover::before {
    transform: translateX(0);
}


.eda-more {
    width: 1.8rem;
    height: .48rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: .5rem;

    font-family: var(--ff);
    font-size: .18rem;
    font-weight: 400;
    line-height: .2387rem;
    text-align: left;
    color: #fff;

    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.eda-more::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    top: 0;
    left: 0;
    transform: translateX(0);
    transition: transform .3s ease-in-out;
}

.eda-more span {
    position: relative;
    z-index: 2;
    color: #fff;
}

.eda-more:hover {
    color: var(--theme-color);
    box-shadow: 0rem 0rem .01rem 0rem #ccc;
}

.eda-more:hover span {
    color: var(--theme-color);
}


.eda-more:hover::before {
    transform: translateX(104%);
}

.sp-title {
    font-family: var(--ff);
    font-size: .48rem;
    font-weight: 500;
    line-height: .6365rem;
    text-align: center;
    color: #000000;
    margin-bottom: .28rem;
}

.msban {
    display: none;
}

.screens {
    width: 100vw;
    height: 100vh;
}

.swiper-pagination-zp {
    position: fixed;
    right: .23rem !important;
    top: 50%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swiper-pagination-zp .swiper-pagination-bullet {
    opacity: 1;
    border-radius: 0;
    width: 30px;
    height: 30px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-image: url(../images/mr.png);
    background-size: 10px 10px;
    background-position: center;
    /* background-color: #fff; */
    margin: 10px 0 !important;
}

.swiper-pagination-zp .swiper-pagination-bullet-active,
.swiper-pagination-zp .swiper-pagination-bullet:hover {
    width: 30px;
    height: 30px;
    background-color: transparent;
    background-image: url(../images/zpactive.png);
    background-size: cover;
}

.footslide {
    height: fit-content !important;
    margin-top: -0.01rem;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    background: none !important;
    border: none;
}

.banner .swiper-button-prev img,
.banner .swiper-button-next img {
    width: 13px;
}

.banner .swiper-button-prev:hover img,
.banner .swiper-button-next:hover img {
    filter: invert(50%) sepia(94%) saturate(3277%) hue-rotate(155deg) brightness(96%) contrast(103%);
}

.swiper-pagination-c {
    position: absolute;
    bottom: .37rem !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.swiper-pagination-c .swiper-pagination-bullet {
    width: .08rem;
    height: .08rem;
    opacity: 0.5;
    background-color: #fff;
    margin: 0 .14rem !important;
}

.swiper-pagination-c .swiper-pagination-bullet-active {
    width: .1rem;
    height: .1rem;
    opacity: 1;
}

.swiper-pagination-c .swiper-pagination-bullet:hover {
    opacity: 1;
}


.sbox .banner .item .newtit {
    color: #FFF;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .54rem;
    line-height: .68rem;
    letter-spacing: normal;
    max-width: none;
}

.sbox .banner .item .newdesc {
    color: #fff;
    font-family: var(--ff);
    font-size: .38rem;
    font-weight: 300;
    line-height: .4454rem;
    text-align: left;
    margin-top: .22rem;
    letter-spacing: normal;
    max-width: none;
}

.sbox .banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footItem {
    height: fit-content !important;
}



body {
    padding-top: .9rem;
}

/* å¤´éƒ¨ */
#header11 {
    height: .9rem;
    border: none;
    border-bottom: .01rem solid #F1F1F1;
}

#header11 .logo {
    background-image: url(../images/logo1.png);
    width: 1.61rem;
    height: .46rem;
}

#header11 .headtab {
    justify-content: center;

    /* padding-left: 100px; */
}

#header11 .headtab>li>a {
    font-family: enrr;
    font-weight: 600;
    font-size: .18rem;
    color: #000;
}

#header11 .headtab>li {
    margin-right: 1rem;
}

#header11 .headtab>li:last-of-type {
    margin-right: 0;
}

/* #header11 .headtab>li#menu4,
#header11 .headtab>li#menu285 {
    margin-right: 0;
} */

.gzherm1 {
    display: none !important;
}

.gzherm:hover,
.yuyanqiehuan:hover,
.searchicon:hover {
    filter: none;
}

.yuyanqiehuan1 .p {
    font-family: enrr;
    font-weight: 400;
    font-size: .2rem;
    color: #000;
    margin-left: .06rem;
    cursor: pointer;
    display: none;
}

.yuyanqiehuan1:hover .p {
    color: var(--theme-color);
}

.headright img {
    width: .22rem;
    height: .22rem;
}

.headright .searchicon1 {
    margin-right: .24rem;
}

.head1 {
    padding: 0 .82rem 0 .88rem;
}

/* å¤´éƒ¨end */

/* åº•éƒ¨ */
.edafoot {
    background-image: url(/images/footbg1.png);
    background-repeat: no-repeat;
    background-position: 0 bottom;
    background-size: 6.29rem;
}

.sharefoot {
    display: flex;
    justify-content: center;

}

.footcontainer {
    padding: .3rem 3.11rem 0;
    background-image: url(/images/footbg2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 7.12rem;
}

.sharefoot {
    margin-bottom: .62rem;
}

.sharefoot .qrcode-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: .48rem;
    height: .48rem;
    border-radius: 50%;
    border: .01rem solid #A0A0A080;
    margin: 0 .2rem;
}


.sharefoot .qrcode-container .imgbox {
    width: .24rem;
    height: .24rem;
    overflow: hidden;
}


.sharefoot .qrcode-container .imgbox img {
    width: 100%;
    height: 100%;
}

.sharefoot .qrcode-container:hover {
    background-color: var(--theme-color);
    border-color: transparent;
}

.sharefoot .qrcode-container:nth-of-type(1):hover {
    background-color: #39CC4A;
}

.sharefoot .qrcode-container:nth-of-type(3) {
    cursor: pointer;
}

.sharefoot .qrcode-container:nth-of-type(3):hover {
    background-color: #E4E4E4;
}

.sharefoot .qrcode-container:nth-of-type(3) a:hover {
    color: var(--theme-color);
}

.sharefoot .qrcode-container:nth-of-type(4):hover {
    background-color: #E4E4E4;
}

.sharefoot .qrcode-container:nth-of-type(5):hover {
    background-color: #E4E4E4;
}

.sharefoot .qrcode-container:nth-of-type(6):hover {
    background-color: #E4E4E4;
}

.trigger-btn2 img {
    display: none;
}

.trigger-btn2 img:nth-of-type(1) {
    display: block;
}

.sharefoot .qrcode-container:hover .trigger-btn2 img:nth-of-type(1) {
    display: none;
    transform: none;
}

.sharefoot .qrcode-container:hover .trigger-btn2 img:nth-of-type(2) {
    display: block;
    transform: none;
}


.trigger-btn2 img:nth-of-type(2) {
    display: none;
}

.sharefoot .qrcode-container:hover .imgbox img {
    transform: translateY(-100%);
    filter: drop-shadow(0 .24rem #fff);
}


.qrcode-container {
    position: relative;
    display: inline-block;
    margin: 1rem;
}



.qrcode-popup {
    position: absolute;
    bottom: calc(100% + .15rem);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: .08rem;
    border-radius: .08rem;
    box-shadow: 0 .04rem .12rem rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.qrcode-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: .08rem;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.qrcode-container:hover .qrcode-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-0.1rem);
}

.qrcode-img {
    width: 1.2rem;
    height: 1.2rem;
    display: block;
}

.qrcode-img img {
    width: 100%;
    height: 100%;
}

.edafoot {
    /* border-top: .01rem solid #EAEAEA; */
}

.edafootcd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .25rem 0 .25rem;
    border-top: .01rem solid #E3E3E3;
}

.edafootcd .ul {
    flex: 1;
    padding-left: 2.08rem;
    display: flex;
    align-items: center;
}

.edafootcd .ul .li {
    display: block;
    font-family: var(--ff);
    font-weight: 500;
    font-size: .18rem;
    color: #000;
    margin-right: .8rem;
    position: relative;
}

.edafootcd .ul .li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.05rem;
    width: 0;
    height: 2px;
    background-color: var(--theme-color);
    transition: all 0.5s;
}

.edafootcd .ul .li:hover::after {
    width: 100%;
}

.edafootcd .ul .li:hover {
    color: var(--theme-color);
}

.edafootlogo {
    display: block;
    width: 1.61rem;
    height: .46rem;
    background-image: url(../images/footlogo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


.edatotop {
    cursor: pointer;
    width: .36rem;
    height: .36rem;
    background-image: url(../images/totop.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.edatotop:hover {
    background-image: url(../images/totop2.png);
}


.edacopy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: .79rem;
    border-top: .01rem solid #E3E3E3;
}

.edacopy p,
.edacopy p a {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .16rem;
    color: #999999;
}

.edacopy p a:hover {
    color: var(--theme-color);
}

/* åº•éƒ¨end */


/* é¦–é¡µ */
.banner .swiper-slide .item,
.banner {
    height: 5.12rem;
    overflow: hidden;
}

.pcs {
    width: 12.8rem;
    margin: 0 auto;
    border-radius: .12rem;
}

.banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: none;
}

.banner .item .wrap,
.banner .item .txt {
    width: 100%;
    height: 100%;
}


.banner-iRFS {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-left: .83rem;
}

.banner-iRFS .h1 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .48rem;
    line-height: .68rem;
    color: #fff;
    margin-bottom: .12rem;
}

.banner-iRFS .h2 {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .24rem;
    line-height: 2 !important;
    color: #fff;
}

.banner-chatdv {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.05rem;
}

.sbox .banner-chatdv .bimg1 {
    width: 3.6rem;
    height: auto;
    margin-bottom: .34rem !important;
}

.sbox .banner-chatdv .bimg2 {
    width: 1.92rem;
    height: auto;
    margin-bottom: .48rem !important;
}

.banner-chatdv .h2 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .28rem;
    color: #000;
}

.banner .item .font .tit,
.banner .item .txt .tit {
    font-family: var(--ff);
    letter-spacing: normal;
}

.banner .item .font .desc,
.banner .item .txt .desc {
    margin: 0;
    max-width: none;
    max-height: none;
    line-height: 1.1;
}


.homes1 {
    padding-top: .53rem;
    background: linear-gradient(180deg, #E8F4FF -1.06%, #F5F5F5 100%);
}

.homes2 {
    /* padding: .81rem 0 1.1rem; */
    padding: 1.1rem 0;
    background-color: #F5F5F5;
}

.homes2 .evs {
    width: 12.8rem;
    margin: 0 auto;
}

.homes2 .ul .li {
    display: block;
    width: 4rem;
}

.homes2 .ul .li .imgbox {
    width: 100%;
    height: 2.41rem;
    overflow: hidden;
    border-radius: .2rem;
    position: relative;
}

.homes2 .ul .li .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}


.homes2 .ul .li .imgbox::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: .56rem;
    height: .56rem;
    background-image: url(../images/bf.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s;
}

.homes2 .ul .li .imgbox:hover::after {
    transform: translate(-50%, -50%) scale(1.2);
}

.homes2 .ul .li .txtbox {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .24rem;
    line-height: 1.5;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
    margin-top: .32rem;

}

.homes2 .ul .li .txtbox span {
    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; */
    display: inline-block;
    height: 3em;
}

.homes2 .ul .li .txtbox2 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    line-height: 2;
    margin-top: .09rem;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.homes2 .ul .li:hover .txtbox {
    color: var(--theme-color);
}

.hometit {
    font-family: var(--ff);
    font-weight: 500;
    font-size: .48rem;
    text-align: center;
    color: #000;
    margin-bottom: .4rem;
}

.swiper-pagination-evs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: .36rem;
}

.swiper-pagination-evs .swiper-pagination-bullet {
    width: .08rem;
    height: .08rem;
    border-radius: 50%;
    opacity: 1;
    background-color: #CCCCCC;
    margin: 0 .14rem !important;
}

.swiper-pagination-evs .swiper-pagination-bullet-active {
    width: .1rem;
    height: .1rem;
    opacity: 1;
    background-color: var(--theme-color);
}

.swiper-pagination-evs .swiper-pagination-bullet:hover {
    background-color: var(--theme-color);
}

.homes2 .eda-more {
    margin: 0 auto;
    margin-top: .34rem;
}


/* é¦–é¡µend */


/* chatdv */
.chatdvbn {
    /* background: linear-gradient(180deg, #E8F4FF -1.06%, #F5F5F5 100%); */
    background-color: #fff;
    width: 100%;
    height: calc(100vh - 0.9rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chatdvbn img {
    margin: 0 !important;
}

.chatdvbn .imgbox {
    width: 5.82rem;
    position: relative;
    cursor: pointer;
}

.chatdvbn>.imgbox {
    margin-bottom: .77rem;
}

.chatdvbn .imgbox::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: .72rem;
    height: .72rem;
    background-image: url(../images/bf.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s;

    display: none;
}

.chatdvbn .imgbox:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
}

.chatdvbn .imgbox img {
    width: 100%;
    object-fit: contain;
}

.sybtn {
    height: .48rem;
    padding: 0 .41rem;
    border-radius: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: .01rem solid #036FD4;
    cursor: pointer;
}

.sybtn .imgbox {
    width: .24rem;
    height: .24rem;
    margin-right: .09rem;
    overflow: hidden;
}

.sybtn .imgbox img {
    width: 100%;
    height: 100%;
}

.sybtn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90.79deg, #036FD4 0.37%, #0563BA 99.32%);
    transition: all 0.5s;
}

.sybtn:hover::before {
    transform: translateX(104%);
}

.sybtn span {
    position: relative;
    z-index: 2;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #fff;
}

.sybtn:hover img {
    transform: translateY(-100%);
    filter: drop-shadow(0 .24rem #036FD4);
}

.sybtn:hover span {
    color: #036FD4;
}

.chatdvbn .sybtn {
    margin-top: .5rem;
}

.edatxts {
    margin-top: .77rem;
    height: 1.22rem;
    margin-top: 0;
}

.edatxts .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.edatxts .swiper-slide img {
    height: .42rem;
    width: auto;
}

img.bif {
    height: .42rem;
    width: auto;
}

.edatxts .swiper-slide p {
    font-family: var(--ff);
    font-size: .28rem;
    color: #000;
    text-align: center;
    margin-top: .46rem;
    text-indent: 0;
}

.chatdvcontainer {
    width: 12.8rem;
    margin: 0 auto;
    padding: .72rem 0 1rem;
}

.chatdvcontainer p,
.chatdvcontainer .p {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    line-height: 2;
    color: #000;
    margin: 0 !important;
}

.lct {
    margin: .62rem 0;
}

.imodel .h1 {
    font-family: Roboto;
    font-weight: 400;
    font-size: .24rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: justify;
    text-transform: lowercase;

}

.pop-video {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    pointer-events: none;
    transition: 0.88s;
    transform: translateY(100%);
    overflow: hidden;
}

.pop-video.show {
    transform: translateY(0);
    visibility: visible;
    pointer-events: visible;
}

.pop-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.pop-close {
    display: block;
    position: absolute;
    right: .3rem;
    top: .3rem;
    z-index: 3;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
}

.pop-video-wrap {
    position: absolute;
    left: 50%;
    margin-left: -37%;
    top: 50%;
    transform: translateY(-50%);
    width: 74%;
}

.pop-video-wrap .video {
    display: block;
    width: 100%;
    height: auto;
}

.pop-close p {
    margin-right: .12rem;
    color: #fff;
    font-size: .2rem;
}

.pop-close i {
    display: inline-block;
    font-style: normal;
    text-align: center;
    line-height: 1;
    font-size: .18rem;
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    line-height: .4rem;
    color: #000;
    background: #fff;
    font-weight: bold;
    transition: 0.38s;

    background-image: url(../images/close.png);
    background-repeat: no-repeat;
    background-size: .24rem .24rem;
    background-position: center;
}

.dddl {
    display: flex;
    justify-content: center;
    margin-top: .66rem;
}

.dddl a {
    vertical-align: middle;
    display: flex;
    align-items: center;
    margin: 0 .15rem;
    color: #036FD4;
    font-size: .16rem;
    cursor: pointer;
}

.dddl a img {
    width: .24rem;
    margin-right: .09rem;
}

/* chatdv end */


/* iRFS */
.irfsbn>.imgbox {
    width: 3.06rem;
}

.irfss4 .ul {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
}

.irfss4 .ul .li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .47rem 0.35rem .5rem;
    width: 3.8rem;
    border: .01rem solid #F1F1F1;
    border-radius: .12rem;
    margin: 0 .2rem;
}

.irfss4 .ul .li:last-of-type {
    display: none;
}

.irfss4 .ul .li .imgbox {
    width: .36rem;
    height: .36rem;
    overflow: hidden;
    margin-bottom: .37rem;
}

.irfss4 .ul .li .imgbox img {
    width: 100%;
    height: 100%;
}

.irfss4 .ul .li .h1 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    color: #000;
    margin-bottom: .29rem;
    text-align: center;
}

.irfss4 .ul .li .h2,
.irfss4 .ul .li .h3 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    line-height: .38rem;
    text-align: center;
    color: #000;
}

.irfss4 .ul .li .imgbox2 {
    width: 1.12rem;
    height: 1.12rem;
    margin: 0 auto;
}

.irfss4 .ul .li .imgbox2 img {
    width: 100%;
    height: 100%;
}

.irfss4 {
    padding-bottom: 1rem;
}

/* iRFS end */



.edaisdcontainer {
    width: 12.8rem;
    margin: 0 auto;
}

.chatdvs2 .ul {
    display: flex;
    justify-content: space-between;
}

.chatdvs2 .ul .li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 3.9rem;
    border: .01rem solid #F1F1F1;
    border-radius: .2rem;
    padding: .41rem 0.2rem .36rem;
}

.chatdvs2 .ul .li .imgbox {
    width: .48rem;
    height: .48rem;
    overflow: hidden;
    margin-bottom: .23rem;
}

.chatdvs2 .ul .li .imgbox img {
    width: 100%;
    height: 100%;
    margin: 0;
}


.chatdvs2 .ul .li .h1 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .24rem;
    line-height: 1;
    color: #000;
    text-align: center;
    margin-bottom: .14rem;
}

.chatdvs2 .ul .li .h2 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .19rem;
    line-height: .38rem;
    text-align: center;
    color: #000;
}

.ylzssp {
    width: 100%;
    height: 5.4rem;
    background-color: #F7F8FB;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .2rem;
    overflow: hidden;
}

.chatdvs3 {
    padding: 1rem 0 1.2rem;
}

.edatitle {
    font-family: var(--ff);
    font-weight: 500;
    font-size: .38rem;
    line-height: 100%;
    text-align: center;
    color: #000;
    margin-bottom: .5rem;
}

.edatitle2 {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .18rem;
    color: #000;
    text-align: center;
}


.demoVideo {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.demoVideo img {
    width: .72rem;
    height: .72rem;
    transition: all 0.5s;
}

.demoVideo:hover img {
    transform: scale(1.1);
}

.demoVideo .tx {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .24rem;
    line-height: 100%;
    text-align: center;
    margin-top: .26rem;
    color: #999999;

    display: none;
}

.chatdvs3 .ylzssp {
    position: relative;
}

.chatdvs3 .ylzssp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #F7F8FB;
    z-index: 1;
    background-image: url(/images/chatdvcover.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.chatdvs3 .ylzssp.isplay::before {
    background-color: #000;
    background-image: none;

}

.chatdvs32 .ylzssp::before {
    background-image: url(/images/usage.jpg);
}

.irfss3 .ylzssp::before {
    background-image: url(/images/irfscover.jpg);
}

.xxts3 .ylzssp::before {
    background-image: url(/images/xxtcover.jpg);
}

.iccs3 .ylzssp::before {
    background-image: url(/images/ChipExpertbg.jpg);
}


.iflows3 .ylzssp::before {
    background-image: url(/images/iFlowcover.png);
}

.iflows32 .ylzssp::before {
    background-image: url(/images/iFlowusage.png);
}


.chatdvs3 .ylzssp video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.edaIntro {
    padding: .95rem 0 .97rem;
    border-bottom: .01rem solid #F1F1F1;
}

.edaIntro .edatitle {
    margin-bottom: .28rem;
}

.edaIntro .p {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .21rem;
    line-height: 2.3;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 2em;
    text-indent: 2em;
    text-align: justify;
}

.edaIntro .tp {
    text-align: center;
    text-indent: 0;
}

.edaIntro .tp span {
    color: #005ABB;
}

.edaIntro .p img {
    display: block;
    width: 10rem;
    margin: 0 auto;
}

.edaIntro .pul {
    display: flex;
    justify-content: space-between;
    width: 10rem;
    margin: 0 auto;
}

.edaIntro .pul .li {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .18rem;
    line-height: .38rem;
    color: #000;
}

.edaIntro .pul .li span {
    color: var(--theme-color);
}

.edaIntro .jianj {
    padding-left: .33rem;
}

.edaIntro .jianj .jianjItem {
    display: flex;
    align-items: center;
    line-height: .38rem;
}

.edaIntro .jianj .jianjItem img {
    width: .24rem;
    height: auto;
    margin: 0;
    margin-right: .13rem;
}

.edaIntro .jianj .jianjItem span {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .18rem;
    color: #000;
}

.edajg {
    padding: .87rem 0 1rem;
}

.edajg .edatitle {
    margin-bottom: .41rem;
}

img.jg {
    display: block;
    width: 100%;
    margin: 0 auto;
}


.centerAdva {
    padding: 1rem 0;
}

.edaadvs .ul .li {
    padding: .34rem .2rem .43rem;
    border: .01rem solid #F1F1F1;
    border-radius: .2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.edaadvs .ul .li .h1 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .24rem;
    color: #000;
    margin-bottom: .14rem;
    text-align: center;
}

.edaadvs .ul .li .p {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .19rem;
    line-height: .38rem;
    color: #000;
    text-align: center;
}

.edaadvs .ul .li .imgbox {
    width: .42rem;
    height: .42rem;
    overflow: hidden;
    margin-bottom: .23rem;
    flex-shrink: 0;
}

.edaadvs .ul .li .imgbox img {
    width: 100%;
    height: 100%;
}

.swiper-pagination-eda {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: .51rem;
}

.swiper-pagination-eda .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    background-color: #CCCCCC;
    margin: 0 .14rem !important;
}

.swiper-pagination-eda .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background-color: #036FD4;
}

.swiper-pagination-eda .swiper-pagination-bullet:hover {
    background-color: #036FD4;
}

.edafuli {
    padding-bottom: 1rem;
}

.edafuli .ul {
    display: flex;
    justify-content: space-between;
}

.edafuli .ul .li {
    width: 2.8rem;
}

.edafuli .ul .li .imgbox {
    width: 100%;
    height: 1.69rem;
    overflow: hidden;
}

.edafuli .ul .li .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.edafuli .ul .li .txtbox {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .18rem;
    color: #000;
    margin-top: .28rem;
    text-align: center;
}

.edafuli .edatitle {
    margin-bottom: .3rem;
}

.edafuli .ul {
    margin-top: .48rem;
}

.jobsearch {
    width: 7.2rem;
    height: .58rem;
    margin: 0 auto;
}

.jobsearch .jobinp {
    width: 100%;
    height: 100%;
    position: relative;
}

.jobsearch .jobinp input[type="text"] {
    width: 100%;
    height: 100%;
    border: none;
    /* box-shadow: 0rem 0rem .06rem 0rem #0000001A; */
    padding-left: .33rem;
    /* border-radius: .5rem; */
    font-size: .18rem;
}

.jobsearch .jobinp input[type="button"] {
    position: absolute;
    right: .28rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(/images/jobsearch.png);
    width: .24rem;
    height: .24rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* 登录注册 */
.edaLogin {
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: #00000040;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.edaLogin .edalbox {
    width: 4.8rem;
    padding: .1rem;
    background: linear-gradient(219.72deg, #E8F4FF 12.65%, #D7E1F2 91.59%);
    border-radius: .2rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.closelogin {
    position: absolute;
    top: .24rem;
    right: .24rem;
    width: .14rem;
    height: .14rem;
    cursor: pointer;
}

.edaLogin .edaContainer {
    width: 100%;
    padding: .76rem 0.4rem .59rem;
    background-color: #fff;
    border-radius: .2rem;

}

.login-logo {
    width: 1.61rem;
    height: .46rem;
    background-image: url(/images/loginlogo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0 auto;
    margin-bottom: .32rem;
}

.loginContainer {
    display: none;
}

.loginContainer .item {
    width: 100%;
}

.loginContainer .item .txc {
    text-align: right;
    font-family: var(--ff);
    font-weight: 300;
    font-size: .14rem;
    margin-top: -0.12rem;
}

.loginContainer .item .txc span {
    color: #005ABB;
    margin-left: .08rem;
    cursor: pointer;
}

.loginContainer input[type="text"],
.loginContainer input[type="password"] {
    width: 100%;
    height: .54rem;
    border: 1px solid #E1E1E1;
    padding: 0 .18rem;
    margin-bottom: .25rem;
    border-radius: .12rem;
}

.loginContainer input[type="text"]::-webkit-input-placeholder,
.loginContainer input[type="password"]::-webkit-input-placeholder {
    color: #70757C;
    font-size: .16rem;
}

.lbtn {
    width: 100%;
    height: .54rem;
    background-color: #005ABB;
    border-radius: .12rem;
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #fff;
    margin: .21rem 0 0;
    cursor: pointer;
}


.edaagreement {
    display: flex;

    line-height: .28rem;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 8px;
    margin-top: 5px;
    vertical-align: middle;
    transition: all 0.3s;
}

.custom-checkbox:hover input~.checkmark {
    border-color: #D9D9D9;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #005ABB;
    border-color: #005ABB;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox input:disabled~.checkmark {
    background-color: #eee;
    border-color: #ddd;
}

.checktext {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .12rem;
    color: #70757C;

}

.checktext a {
    color: #005ABB;
}

/* 登陆注册 end */


/* 会员信息 */
.hycontainer {
    background-color: #F5F5F5;
    min-height: calc(100vh - 0.9rem);
    padding: .21rem 3.38rem .26rem;
}

.hybread,
.hybread a {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .14rem;
    color: #767676;
}

.hybread a:hover {
    color: #005ABB;
}

.hycontent {
    display: flex;
    margin-top: .15rem;
}

.hyaside {
    background-color: #fff;
    border-radius: .2rem;
    width: 2.38rem;
    padding: .44rem 0 0 .47rem;
}

.hyaside a {
    display: block;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000;
    margin-bottom: .21rem;
}

.hyaside a.active,
.hyaside a:hover {
    color: var(--theme-color);
}



.hymain {
    border-radius: .2rem;
    background-color: #fff;
    margin-left: .18rem;
    flex: 1;
    padding: .37rem .45rem .55rem;
    min-height: 7.44rem;
    display: none;
    flex-shrink: 0;
}

.hymain .hytit {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .2rem;
    color: #000;
    display: flex;
    align-items: center;
    margin-bottom: .17rem;
}

.hymain .hytit::before {
    content: '';
    display: block;
    height: .14rem;
    width: 3px;
    background-color: #005ABB;
    border-radius: .5rem;
    margin-right: .14rem;
}

.hyformItem {
    display: flex;
    align-items: center;
    margin-bottom: .24rem;
    position: relative;
    width: fit-content;
}

.hyformItem .label {
    width: 1.12rem;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #767676;
}

.hyformItem input[type="text"],
.hyformItem input[type="password"],
.custom-select {
    width: 3.34rem;
    height: .48rem;
    border-radius: .12rem;
    border: 1px solid #E1E1E1;
    padding: 0 .17rem;

    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #000;
}

#hy2 .hyformItem input[type="text"],
#hy2 .hyformItem input[type="password"] {
    width: 3.8rem;
}

.hyformItem.hyformItembd .custom-select::after {
    display: none;
}

.savepass {
    width: 3.8rem;
    height: .48rem;
    border: 1px solid #005ABB;
    border-radius: .12rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.savepass span {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.savepass::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #005ABB;
    left: 0;
    top: 0;
    transform: translateX(0%);
    transition: all 0.5s;
}

.savepass:hover::after {
    transform: translateX(104%);
}

.savepass:hover span {
    color: #005ABB;
}

.passeye {
    width: .2rem;
    height: .2rem;
    background-image: url(/images/passeye.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: .17rem;
    cursor: pointer;
}

.passeye.active {
    background-image: url(/images/passeye2.png);
}


.custom-select {
    position: relative;
}

.custom-select::after {
    content: '';
    position: absolute;
    right: .16rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.2rem;
    height: 0.2rem;
    background-image: url(/images/areadown.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.selected-option {
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.custom-select .options {
    position: absolute;
    left: 0;
    width: 100%;
    width: calc(100% + 2px);
    margin-left: -1px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #E1E1E1;
    background: white;
    display: none;
    top: 0.36rem;
    border-top: none;
    padding-top: 14px;
    border-bottom-left-radius: .2rem;
    border-bottom-right-radius: .2rem;
    z-index: 5;
}

.custom-select .option {
    padding: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.custom-select .option:hover {
    background: #f0f0f0;
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 10px;
}

.uploadface {
    position: relative;
    margin-left: .28rem;
}

#imagePreview {
    width: .9rem;
    height: .9rem;
    border-radius: 50%;
    border: 1px solid #F0F0F0;
    padding: .05rem;
    position: relative;
    z-index: 3;
}

#imagePreview img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#previewImage2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.uploadface input {
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin-left: -0.72rem;
}

.uploadface span {
    /* position: absolute; */
    font-family: HarmonyOS Sans SC;
    font-weight: 300;
    font-size: .14rem;
    letter-spacing: 0%;
    color: #005ABB;
    z-index: 1;
    cursor: pointer;
}

.hymsgbtn {
    width: 1.8rem;
    height: .48rem;
    border: 1px solid #E1E1E1;
    border-radius: .12rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 3.68rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hymsgbtn span {
    position: relative;
    z-index: 2;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #70757C;
}

.hymsgbtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #005ABB;
    transform: translateX(-104%);
    transition: all 0.5s;
}

.hymsgbtn:hover::before {
    transform: translateX(0);
}

.hymsgbtn:hover span {
    color: #fff;
}

.hyzs {
    margin-top: .55rem;
    padding-top: .41rem;
    border-top: 1px solid #F0F0F0;
}

.hyapp {
    display: flex;
    justify-content: space-between;
    padding: 0 1.49rem 0 1.07rem;
}

.hyapp a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: .41rem;
}

.hyapp a .imgbox {
    margin-bottom: .21rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hyapp a:nth-of-type(1) .imgbox img {
    width: 1.2rem;
}

.hyapp a:nth-of-type(1) .txtbox img {
    width: 1.02rem;
}

.hyapp a:nth-of-type(2) .imgbox img {
    width: .98rem;
}

.hyapp a:nth-of-type(2) .txtbox img {
    width: .5rem;
}

.hycopy {
    margin-top: .31rem;
}

.hycopy,
.hycopy a {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .16rem;
    color: #999999;
    text-align: center;
}

.hycopy a:hover {
    color: var(--theme-color);
}


.upface {
    width: 3.8rem;
    height: .54rem;

    border-radius: .12rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--theme-color);
}

.upface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 105%;
    height: 105%;
    background-color: var(--theme-color);
    transition: all 0.5s;
}

.upface span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    color: #fff;
    display: block;
    text-align: center;
    width: 100%;
}

.upface .upFile {
    width: 100%;
    height: 100%;
    margin: 0;
}

.upface:hover::before {
    transform: translateX(104%);
}

.upface:hover span {
    color: var(--theme-color);
}

.facet {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .2rem;
    color: #000;
    text-align: center;
    margin-bottom: .38rem;
}

.upface .uploadImg {
    float: none;
    width: 100%;
    height: 100%;
}

.upface .upImg {
    display: none;
}

.uptip {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #000;
    margin-top: .18rem;
}

/* 会员信息 end */
#fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow-x: scroll;
}

#fullscreen img {
    max-width: none;
    max-height: none;
    object-fit: fill;
    width: auto;
    height: 50vh;
    /* position: absolute; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    background-color: #fff;
    margin: 0;
}


.fulimg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: .5rem 0;
    background: #fff;
}

.mmclose {
    width: 0.72rem;
    height: 0.72rem;
    background-image: url(/images/mclose.png);
    background-repeat: no-repeat;
    background-size: 0.72rem 0.72rem;
    position: fixed;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
}

.headface {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-right: .26rem;
}

.facebox {
    width: .26rem;
    height: .26rem;
    border-radius: 50%;
    overflow: hidden;
}

.facebox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.infoDrop {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 20px);
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 0px 8px 0px #0000000D;
    min-width: 1.07rem;
    padding: .25rem .22rem .26rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    transform-origin: top;

    /*  */
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0px 0px 7px 0px #0000001A;

}

.infoDrop::before {

    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: .08rem;
    border-style: solid;
    border-color: transparent transparent white transparent;
    box-shadow: 0px 0px 8px 0px #0000000D;
}

.headface:hover .infoDrop {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 20px);
}

.infoDrop a {
    display: block;
    color: #000;
    text-decoration: none;

    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #000;
    margin-bottom: .18rem;
    white-space: nowrap;

    /*  */
    margin-bottom: 0;
    padding: 0 0.24rem;
    height: 0.42rem;
    display: flex;
    align-items: center;
    font-size: 0.18rem;
    color: #000000;
    justify-content: center;
}

.headright>.yuyanqiehuan1 {
    height: .32rem;
}


.infoDrop a:last-of-type {
    margin-bottom: 0;
}

.infoDrop a:hover {
    color: #005ABB;

    color: #fff;
    background-color: #005ABB;
}

.headface2 {
    margin-right: 0;
}

.fmsgs {
    display: flex;
    align-items: center;
    margin-bottom: .16rem;
}

.fmsgs:last-of-type {
    margin-bottom: 0;
}

.fmsgs img {
    width: .2rem;
    height: .2rem;
    margin-right: .11rem;
}

.fmsgs a {
    font-family: var(--ff)r;
    font-weight: 400;
    font-size: .16rem;
    color: #000;
    margin-right: 0.2rem;
}

.xuanyy {
    right: auto;
    left: 57%;
    transform: translateX(-50%);
}

.tabs-box {
    display: none !important;
}

.zpjtnrl {
    margin-right: .5rem;
}

.yns {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .16rem;
    line-height: .28rem;
    color: #000;
    padding-left: 0.3rem;
}

.banner .swiper-slide img {
    filter: none;
}

.jlcontent {
    padding-top: .95rem;
}

.uploadjl {
    margin-top: 0;
}

.uploadjl ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jltit {
    font-family: var(--ff);
    font-weight: 500;
    font-size: .38rem;
    text-align: center;
    margin-bottom: .52rem;
    color: #000;
}

.uploadjl ul li {
    width: 6rem;
    height: .54rem;
    background-color: transparent;
    border-radius: .12rem;
    border: 1px solid #E1E1E1;
    padding-right: 0;
    margin-bottom: .25rem;
    display: flex;
}

.uploadjl ul li input[type="text"] {
    line-height: normal;
    height: 100%;
    background-color: transparent;

}

.file input[type="file"],
.file {
    line-height: normal;
    height: 100%;
    background-color: transparent;
}

.uploadjl ul li label {
    line-height: normal;
    height: 100%;
    display: flex;
    align-items: center;
}

span#clickup {
    white-space: nowrap;
    font-family: var(--ff);
}

.uploadjl input[type="submit"] {
    opacity: 0;
    margin: 0;
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    visibility: visible;
}

.jlbtn {
    width: 6rem;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.fsbtn1 {
    width: 2.8rem;
    height: .54rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .12rem;
    overflow: hidden;
    position: relative;
    background-color: #F0F0F0;
}

.fsbtn1 span {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #FFFFFF;
    position: absolute;
    z-index: 2;
}

.fsbtn1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #005ABB;
    transition: all 0.3s;
}

.fsbtn2 span {
    color: #70757C;
}

.fsbtn2::before {
    transform: translateX(-104%);
}

.fsbtn1:hover span {
    color: #70757C;
}

.fsbtn2:hover span {
    color: #fff;
}

.fsbtn1:hover::before {
    transform: translateX(104%);
}

.fsbtn2:hover::before {
    transform: translateX(0);
}


.jbFirst li select {
    flex: 1;
}

.fsbtn1 input {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    position: relative;
    z-index: 3;
}

.jobBtn {
    display: flex;
    justify-content: center;
}

.jobBtn .fsbtn1 {
    margin: 0 .12rem;
}

.xuanyy11 {
    background-color: #F2F8FD;
}


.videoList li {
    height: auto;
}

.videoList li .imgss {
    height: 2.41rem;
    border-radius: .2rem;
    overflow: hidden;
}

.zhezhaocen {
    display: none;
}

.videoList li::after {
    display: none;
}

.videoList li p {
    position: static;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .24rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
    padding-left: 0;
    margin-top: .32rem;
}

.videoList li p:nth-of-type(1) {
    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; */
    line-height: 1.5;
    height: 3em;
}

.videoList li p:nth-of-type(2) {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    line-height: 2;
    margin-top: .09rem;
    text-align: justify;
    padding-left: 0;
}

.videoList li .imgss {
    position: relative;
}

.videoList li .imgss::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: .56rem;
    height: .56rem;
    background-image: url(../images/bf.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s;
}

.videoList li .imgss img {
    transform: none !important;
}

.videoList li:hover .imgss::before {
    transform: translate(-50%, -50%) scale(1.2);
}

.edajobcontainer {
    padding-top: .7rem;
}

.jobtype {
    box-shadow: 0px 0px 6px 0px #0000001A;
    width: fit-content;
    min-width: 7.2rem;
    height: .58rem;
    margin: 0 auto;
    border-radius: .5rem;
    display: flex;
    margin-bottom: .53rem;
}

.custom-dropdown {
    position: relative;
    width: fit-content;
    height: .58rem;
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
    border-right: 1px solid #EBEBEB;
}

.dropdown-header {
    padding: 0 .17rem 0 .35rem;
    width: fit-content;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding-left: .35rem;
}

.idoahj {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: .8rem;
    z-index: 100;
}

.dropdown-options {
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
    box-shadow: 0px 0px 7px 0px #0000001A;
    z-index: 100;
    border-radius: 12px;
}


.idoahj::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #fff;

}

.dropdown-options.active {
    max-height: 500px;
    overflow-y: auto;
}

.dropdown-options::-webkit-scrollbar {
    width: 0;
}

.option-item {
    cursor: pointer;
    /* transition: background 0.2s; */
    display: flex;
    align-items: center;
    font-family: var(--ff);
    font-weight: 300;
    font-size: .22rem;
    line-height: 2;
    color: #000000;
    white-space: nowrap;
    vertical-align: middle;
    padding: 0 .21rem 0 .27rem;
    margin-right: .21rem;
}

.option-item:first-of-type {
    margin-top: .36rem;
    color: var(--themeColor);
}

.option-item:last-of-type {
    margin-bottom: .2rem;
}

.option-item img {
    width: .18rem;
    height: .18rem;
    margin-right: .12rem;
    flex-shrink: 0;
}

.option-item:hover {
    color: var(--themeColor);
}

.option-item:hover img {
    filter: invert(36%) sepia(69%) saturate(5705%) hue-rotate(194deg) brightness(91%) contrast(105%);
}


.arrowjob {
    transition: transform 0.3s;
    width: .16rem;
    height: .16rem;
    background-image: url(/images/jobarrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-left: .11rem;
}

.arrowjob.active {
    transform: rotate(180deg);
}

.selected-text {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .22rem;
    color: var(--themeColor);
}

.jobSearch {
    /* flex: 1; */
    width: 6.18rem;
    position: relative;
}

.jobSearch input[type="text"] {
    width: 100%;
    height: 100%;
    font-family: var(--ff);
    font-weight: 300;
    font-size: .22rem;
    color: #000000;
    padding-left: .25rem;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.jobSearch input[type="text"]::-webkit-input-placeholder {
    color: #000000;
    opacity: 1;
}

.jobsearchbtn {
    position: absolute;
    right: .28rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(/images/jobsearch.png);
    width: .24rem;
    height: .24rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.jobsearchbtn:hover {
    filter: invert(36%) sepia(69%) saturate(5705%) hue-rotate(194deg) brightness(91%) contrast(105%);
}


.jobtit {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .42rem;
    text-align: center;
    color: #000000;
    margin-bottom: .5rem;
}

.edajoblist .ul {
    width: 12.8rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.edajoblist .ul .li {
    display: block;
    width: 31.875%;
    /* height: 1.48rem; */
    box-shadow: 0px 0px 12px 6px #8888880F;
}

.edajoblist .ul .li:nth-of-type(3n-1) {
    margin-left: 2.18%;
    margin-right: 2.18%;
}

.edajoblist .ul .li {
    margin-top: .34rem;
    padding: .29rem .18rem 0.37rem;
    transition: all 0.4s;
}

.edajoblist .ul .li:nth-of-type(-n+3) {
    margin-top: 0;
}

.edajoblist .ul .li .h1 {
    display: flex;
    align-items: center;
}

.edajoblist .ul .li .h1 span {
    padding: 4px;
    border-radius: 4px;
    background-color: #E72A32;
    font-family: var(--ff);
    font-weight: 300;
    font-size: .2rem;
    color: #fff;
    line-height: 1;
    margin-right: .09rem;
}

.edajoblist .ul .li .h1 .h11 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .24rem;
    color: #000;
}

.edajoblist .ul .li:hover .h1 .h11 {
    color: var(--themeColor);
}

.edajoblist .ul .li:hover {
    transform: translate(0, -5px);
}

.edajoblist .ul .li .h2 {
    margin-top: .31rem;
    font-family: var(--ff);
    font-weight: 300;
    font-size: .22rem;
    color: #333;
}

.edajoblist .eda-more {
    margin: 0 auto;
    margin-top: .6rem;
}


.category {
    margin-bottom: 10px;
}

.category-header {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.subcategory-list {
    display: none;
    list-style: none;
    padding-left: 0;
    margin-top: .1rem;
}

.subcategory-list li {
    margin-left: .22rem;
}

.subcategory-list li .checkbox-container {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .22rem;
    line-height: .38rem;
    padding-left: .27rem;
}


/* 自定义复选框样式 */
.checkbox-container {
    position: relative;
    padding-left: .1rem;
    cursor: pointer;
    display: inline-block;
    display: flex;
    align-items: center;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .24rem;
    color: #000;
    padding-left: .1rem;
}

.checkbox-container input {
    display: none;
}

.checkmark2 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: .18rem;
    width: .18rem;
    border: 1px solid #C9C9C9;
    background: white;
    border-radius: 2px;
}

.category-item {
    margin-bottom: .2rem;
}

/* 选中状态 */
.checkbox-container input:checked~.checkmark2 {
    background-color: var(--themeColor);
    background-image: url(/images/checktick.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}


.checkbox-container input[c="1"]~.checkmark2 {
    background-color: var(--themeColor);
    background-image: url(/images/checktick.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}




/* 部分选中状态 */
.checkbox-container .checkmark2.indeterminate {
    background-color: var(--themeColor);
    background-image: url(/images/checktick2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}


.arrowcategory {
    display: inline-block;
    margin-right: .05rem;
    transition: transform 0.3s;
    color: #666;
    font-size: .16rem;
}

.arrowcategory.open {
    transform: rotate(90deg);
}


.jjoobb {
    width: 12.8rem;
    margin: 0 auto;
    position: relative;
}

.jjoobb .lef {
    width: 3.8rem;
    position: fixed;
}

.jjoobb .lef .h1 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .32rem;
    margin-bottom: .16rem;
    color: #000;
}

.jjoobb .rig {
    margin-left: 3.8rem;
    padding-left: .47rem;
    border-left: 1px solid #EBEBEB;
    min-height: 5rem;
}

.jobname {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .32rem;
    color: #000;
    margin-bottom: .05rem;
    display: flex;
    align-items: center;
}

.jobname span {
    display: inline-block;
    padding: 4px;
    border-radius: 4px;
    background-color: #E72A32;
    font-family: var(--ff);
    font-weight: 300;
    font-size: .2rem;
    color: #fff;
    line-height: 1;
    margin-right: .19rem;
}

.jobrequire {
    display: flex;
    margin-bottom: .11rem;
}

.jobrequire .h {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .2rem;
    line-height: .32rem;
    padding-right: .15rem;
    margin-right: .1rem;
    position: relative;
    color: #000;
}

.jobrequire .h::after {
    content: '';
    position: absolute;
    right: 0;
    width: 1px;
    height: .14rem;
    background-color: #DBDBDB;
    top: 50%;
    transform: translateY(-50%);
}

.jobrequire .h:last-of-type::after {
    display: none;
}

.jobdesc {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .2rem;
    line-height: .3rem;
    text-align: justify;
    color: #000000;
}

.jobcontent {
    margin-top: .15rem;
    display: none;
}

.jobcontent .h1 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .24rem;
    color: #000;
    margin-bottom: .1rem;
}

.jobcontent p {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .2rem;
    line-height: .32rem;
    text-align: justify;
    color: #000;
    margin-bottom: 0.5em;
}

.requirement {
    margin-top: .36rem;
}

.jobresume {
    display: flex;
    margin-top: .3rem;
}

.jobresume a {
    width: fit-content;
    height: .42rem;
    background-color: transparent;
    border: 1px solid #005ABB;
    margin-right: .3rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: .5rem;
    padding: .1rem .27rem;
    min-width: 1.68rem;
}

.jobresume a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #005ABB;
    transform: translateX(-104%);
    transition: all 0.5s;
}

.jobresume a:hover::before {
    transform: translateX(0);
}

.jobresume a span {
    position: relative;
    z-index: 2;
    color: #005ABB;

    font-family: var(--ff);
    font-weight: 300;
    font-size: .16rem;
    text-align: center;
}

.jobresume a:hover span {
    color: #fff;
}

.moredesc {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .2rem;
    margin-top: .15rem;
    color: #000000;
    cursor: pointer;
}

.moredesc:hover {
    color: var(--themeColor);
}

.edaalljobs .item {
    margin-bottom: .48rem;
}

.edaalljobs .item:last-of-type {
    margin-bottom: 0;
}

.edaalljobs .item.active .jobname {
    color: var(--themeColor);
}

.edaalljobs .item.active .jobdesc {
    display: none;
}

.xxtbn .imgbox {
    width: 3rem;
}


.yytitle {
    font-weight: 400;
    font-size: .42rem;
    text-align: center;
    margin-bottom: .82rem;
    display: flex;
    justify-content: center;
    color: var(--theme-color);
}

.yytitle img {
    height: .68rem;
    width: auto;
    margin: 0;
}

span#clickup font {
    color: var(--theme-color) !important;
}

.newrj {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newrj .h1 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    color: #000;
    margin-bottom: .29rem;
}

.newrj .txtb {
    display: flex;
}

.newrj .txtb .item {
    display: flex;
    align-items: center;
    margin: 0 .18rem;
}

.newrj .txtb .item .imgbox {
    width: .28rem;
    height: .28rem;
    margin-right: .05rem;
}

.newrj .txtb .item .imgbox img {
    width: 100%;
    height: 100%;
}

.newrj .txtb .item .txtbox {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    color: #000;
}

.irfss4 .ul {
    display: none;
}


.subcategory-list li a.jcurrent {
    color: var(--theme-color);
}


.videoList li {
    display: flex;
    width: 100%;
    margin-bottom: 0 !important;
    margin-top: .93rem !important;
}

.videoList li:first-of-type {
    margin-top: 0 !important;
}

.videoList li .imgss {
    width: 5.3rem;
    height: 3.18rem;
    flex-shrink: 0;
    margin-right: .42rem;
}

.videoList li p {
    margin-top: 0;
}

.videoList li p:nth-of-type(1) {
    height: auto;
    margin-bottom: .34rem;
    text-align: left;
    font-family: ui-serif, LibreBaskerville, Georgia, Cambria, Times New Roman, Times, serif !important;
    font-weight: 900;
}



.videoList li:nth-of-type(3n-1) {
    margin-left: 0;
    margin-right: 0;
}

.videoList li p:nth-of-type(2) {
    font-size: .2rem;
    line-height: 1.7;
    text-align: justify;
}

.homes2 .ul .li .txtbox2 {
    display: none;
}

#div_num {
    width: 2.36rem;
    height: 2.36rem;
    border: 1px solid #E8E8E8;
    border-radius: .12rem;
    padding: .1rem;
    margin: 0 auto;
}

#div_num .qr {
    width: 100%;
    height: 100%;
}

#div_num .qr img {
    width: 100%;
    height: 100%;
}


.scanconbox {
    width: 7rem;
    margin: 0 auto;
    background: linear-gradient(219.72deg, #E8F4FF 12.65%, #D7E1F2 91.59%);
    padding: .1rem;
    border-radius: .2rem;
}

.scancon {
    width: 100%;
    background-color: #fff;
    padding: .7rem 0 1.18rem;
    display: flex;
    flex-direction: column;
    align-content: center;
    border-radius: .2rem;
}

.scancon p {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    line-height: 1;
    color: #000000;
    margin-bottom: .32rem;
    text-align: center;
}

.hycontainer2 {
    padding-top: 1.18rem;
    height: calc(100vh - 0.9rem);
}

.hycontainer2 .hycopy {
    position: absolute;
    bottom: .43rem;
    left: 50%;
    transform: translateX(-50%);
}


.wxlogcon {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3.03rem;
}

.wxloglogo {
    width: 5.94rem;
    height: 2.31rem;
}

.wxloglogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wxlogcon::before {
    width: 6.29rem;
    height: 2.73rem;
    background-image: url(/images/wxlogbg1.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
}

.wxlogcon::after {
    width: 7.12rem;
    height: 2.41rem;
    background-image: url(/images/wxlogbg2.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
}

.wxlogcon .h1 {
    font-family: MiSans;
    font-weight: 300;
    font-size: .3rem;
    line-height: .42rem;
    text-align: center;
    color: #000000;
    margin-top: .49rem;
}

.handt {
    width: .48rem;
    height: .48rem;
    position: absolute;
    right: .68rem;
    bottom: .09rem;
    animation: arrowdown 1s ease infinite;
}

.homes2 .hometit {
    display: none;
}

.sbox[mid="5"][strid="59"] .baseTitle,
.sbox[mid="286"][strid="289"] .baseTitle {
    display: none;
}

/* 培训 */
.pwidth {
    display: block;
    width: 12.8rem;
    margin: 0 auto;
}

.df {
    display: flex;
}

.dfsb {
    display: flex;
    justify-content: space-between;
}

.trainnav {
    width: 2.43rem;
    padding-right: .33rem;
    min-height: 4.2rem;
    border-right: 1px solid #E8E8E8;
    padding-bottom: .61rem;
    margin-right: .35rem;
}

.trainnav .h1 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .2rem;
    color: #27221C;
    margin-bottom: 0.19rem;
    padding-left: .22rem;
}

.trainnav .ul .li {
    margin-bottom: .2rem;
}

.trainnav .ul .li .titm {
    width: 2.1rem;
    height: .44rem;
    border-left: 3px solid transparent;
    /* background-color: #F5F8FA; */
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding-left: .22rem;

    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    line-height: 100%;
    color: #333333;
    cursor: pointer;
}

.trainnav .ul .li.active .titm,
.trainnav .ul .li:hover .titm {
    border-left: 3px solid var(--theme-color);
    background-color: #F5F8FA;
    color: var(--theme-color);
}

.trainnav .ul .li .ol {
    display: none;
}

.trainnav .ul .li.active .ol {
    display: block;
}

.trainnav .ul .li .ol .oli {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    line-height: .24rem;
    margin-bottom: .16rem;
    color: #666666;
    display: block;
}

.trainnav .ul .li .ol .oli:last-of-type {
    margin-bottom: 0;
}


.trainnav .ul .li .ol .oli:hover {
    color: var(--theme-color);
}

.trainnav .ul .li .ol {
    padding: .23rem 0 .23rem .22rem;
    border-bottom: 1px solid #E3E3E3;
}

.trainnav .ul .li .ol .oli.current {
    color: var(--theme-color);
}

.curtit {
    font-family: var(--ff);
    font-weight: 500;
    font-size: .24rem;
    margin-bottom: .32rem;
}

.trainerlist {
    flex: 1;
}

.trainerlist .ul {
    display: flex;
    flex-wrap: wrap;
}

.trainerlist .ul .li {
    display: block;
    width: 3.2rem;
    margin-right: calc((100% - 3 * 3.2rem) / 2);
}

.trainerlist .ul .li:nth-child(3n) {
    margin-right: 0;
}

.trainerlist .ul .li .imgbox {
    width: 100%;
    height: 1.8rem;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
}

.trainerlist .ul .li .imgbox::after {
    content: "";
    position: absolute;
    right: 0.17rem;
    bottom: 0.15rem;
    width: .32rem;
    height: .32rem;
    background-color: rgba(0, 0, 0, .1);
    background-image: url(/images/edatbtn.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
}

.trainerlist .ul .li .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}

.trainerlist .ul .li:hover .imgbox img {
    transform: scale(1.1);
}

.trainerlist .ul .li .txtbox {
    padding-top: 0.15rem;
    padding: .15rem 0 .22rem;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    color: #000000;

    /* 超出一行隐藏加省略号 */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.trainerlist .ul .li:hover .txtbox {
    color: var(--theme-color);
}

.trbread {
    display: flex;
    align-items: center;
    padding: .31rem 0 .48rem;
}

.trbread .imgbox {
    width: 0.18rem;
    height: .18rem;
    margin-right: 0.08rem;
}

.trbread .imgbox img {
    width: 100%;
    height: 100%;
}

.breadlink a,
.breadlink span {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #666666;
}

.breadlink a:hover {
    color: var(--theme-color);
}

.trainban {
    width: 100%;
    height: 4.79rem;
    background-color: #F5F8FA;
    padding: 0 0 .55rem;
}

.trainban .trbread {
    padding-bottom: .32rem;
}

.trainban .fian {
    display: flex;
}

.trainban .fian .lef {
    margin-right: .66rem;
}

.trainban .fian .imgbox2 {
    width: 6rem;
    height: 3.37rem;
    border-radius: 8px;
    overflow: hidden;
    padding: 0.08rem;
}

.trainban .fian .imgbox2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trainban .fian .rig {
    flex: 1;
}

.trainban .fian .rig .h1 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .38rem;
    margin-bottom: .33rem;
    color: #000000;
}


.trainban .fian .rig .h2 {
    margin: .33rem 0 .27rem;
    display: flex;
    align-items: center;
}

.trainban .fian .rig .h2 .k1 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #666666;
    margin-right: .78rem;
}

.trainban .fian .rig .h2 .k1 span {
    color: var(--theme-color);
}

.trainban .fian .rig .h2 .k2 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #666666;
    display: flex;
    align-items: center;
}

.trainban .fian .rig .h2 .k2 #bdshare {
    flex-direction: row;
    margin-top: 0;
    margin-left: .09rem;
}

.trainban .fian .rig .h2 .k2 #bdshare a {
    margin-bottom: 0;
    margin-right: .24rem;
    background-color: transparent;
    width: 0.24rem;
    height: 0.24rem;
    cursor: pointer;
    border-radius: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.kctnr1 a {
    background-image: url(/images/kctnr1.png);
}

.kctnr2 a {
    background-image: url(/images/kctnr2.png);
}

.kctnr3 a {
    background-image: url(/images/kctnr3.png);
}

.kctnr a:hover {
    filter: invert(16%) sepia(77%) saturate(7239%) hue-rotate(202deg) brightness(93%) contrast(101%);
}

.trainban .fian .rig .p {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    line-height: .34rem;
    color: #666666;
}

.fianbtns {
    display: flex;
    margin-top: .53rem;
}

.fianbtns .fianbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.1rem;
    height: .48rem;
    border: 1px solid var(--theme-color);
    border-radius: .5rem;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    /* margin-right: .29rem; */
    font-size: .16rem;
}

.fianbtns .fianbtn span {
    position: relative;
    z-index: 3;
}

.fianbtns .fianbtn2 {
    color: var(--theme-color);
}

.fianbtns .fianbtn .imgbox3 {
    width: .2rem;
    height: .2rem;
    overflow: hidden;
    margin-right: .14rem;
    position: relative;
    z-index: 3;
}

.fianbtns .fianbtn .imgbox3 img {
    width: 100%;
    height: 100%;
}

.fianbtns .fianbtn1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    transition: all .3s ease;
}

.fianbtns .fianbtn2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    transition: all .3s ease;
    transform: translateX(-104%);
}

.fianbtns .fianbtn1:hover::before {
    transform: translateX(104%);
}

.fianbtns .fianbtn1:hover {
    color: var(--theme-color);
}

.fianbtns .fianbtn2:hover::before {
    transform: translateX(0);
}

.fianbtns .fianbtn2:hover {
    color: #fff;
}

.fianbtns .fianbtn1:hover .imgbox3 img {
    transform: translateY(-100%);
    filter: drop-shadow(0 .2rem var(--theme-color));
}

.fianbtns .fianbtn2:hover .imgbox3 img {
    transform: translateY(-100%);
    filter: drop-shadow(0 .2rem #fff);
}

.kcnr {
    border-bottom: 1px solid #EAEDED;
}

.kcnr p {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    line-height: .34rem;
    color: #666666;
    margin-bottom: .09rem;
}

.kcbt {
    width: 100%;
    height: .64rem;
    /* background-color: #F5F8FA; */
    font-family: var(--ff);
    font-weight: 500;
    font-size: .2rem;
    color: #000000;
    display: flex;
    align-items: center;
    padding-left: .24rem;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #EAEDED;

}

.kccon .ul .li:first-child .kcbt {
    border-top: 1px solid #EAEDED;
}

.kcbt::after {
    content: '';
    top: 0;
    right: 0;
    width: 0.12rem;
    height: 0.12rem;
    border-top: 2px solid #B4B4B4;
    border-right: 2px solid #B4B4B4;
    transform: rotate(45deg);
    position: absolute;
    right: .24rem;
    top: 50%;
    margin-top: -0.05rem;
}

.kcnr {
    padding: .2rem .24rem;
    display: none;
}

.kccon .ul .li.active .kcbt {
    background-color: #F5F8FA;
    color: var(--theme-color);
}

.kccon .ul .li.active .kcbt::after {
    border-color: var(--theme-color);
    transform: rotate(135deg);
}

.kccon .ul .li:hover .kcbt {
    background-color: #F5F8FA;
    color: var(--theme-color);
}

.kccon .ul .li:hover .kcbt::after {
    border-color: var(--theme-color);
}

.trpdtnav {
    display: flex;
    height: .76rem;
    border-bottom: 1px solid #EAEDED;
    margin-bottom: .52rem;
}

.trpdtnav a,
.trainly {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .2rem;
    color: #000000;
    display: flex;
    align-items: center;
    margin-right: 1.66rem;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.trpdtnav a.active,
.trainly.active {
    color: var(--theme-color);
    border-bottom: 2px solid var(--theme-color);
}

.trpdtnav a:hover,
.trainly:hover {
    color: var(--theme-color);
    border-bottom: 2px solid var(--theme-color);
}

.kctit {
    font-family: var(--ff);
    font-weight: 500;
    font-size: .24rem;
    color: #000000;
    margin-bottom: .39rem;
    text-align: center;
}

.kcvid .ul {
    display: flex;
    flex-wrap: wrap;
}

.kcvid .ul .li {
    display: block;
    width: 4rem;
    margin-right: calc((100% - 3 * 4rem) / 2);
}

.kcvid .ul .li:nth-child(3n) {
    margin-right: 0;
}

.kcvid .ul .li .imgbox {
    width: 100%;
    height: 2.25rem;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
}

.kcvid .ul .li .imgbox::after {
    content: "";
    position: absolute;
    right: 0.17rem;
    bottom: 0.15rem;
    width: .32rem;
    height: .32rem;
    background-color: rgba(0, 0, 0, .1);
    background-image: url(/images/edatbtn.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
}

.kcvid .ul .li .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}

.kcvid .ul .li:hover .imgbox img {
    transform: scale(1.1);
}

.kcvid .ul .li .txtbox {
    padding-top: 0.15rem;
    padding: .15rem 0 .22rem;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    color: #000000;

    /* 超出一行隐藏加省略号 */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.kcvid .ul .li:hover .txtbox {
    color: var(--theme-color);
}

.kcvid {
    padding-top: .45rem;
}

.kcvid .fianbtn {
    margin: 0 auto;
}

.kcvid .fianbtns {
    margin-top: .3rem;
}

.kcvitm {
    margin-bottom: .68rem;
}

.kcvitm:last-child {
    margin-bottom: 0;
}

.lyffn {
    background-color: #F5F8FA;
    display: flex;
    align-items: center;
    padding: .2rem .32rem;
    margin-bottom: .02rem;
}

.lyffn .h1 {
    font-family: var(--ff);
    font-weight: 500;
    font-size: .2rem;
    color: #005ABB;
    cursor: pointer;
}

.lyffn .imgbox {
    width: .24rem;
    height: .24rem;
    margin-left: .18rem;
    cursor: pointer;
}

.lyffn .imgbox img {
    width: 100%;
    height: 100%;
}

.lylist .ul .li {
    display: flex;
    padding: .57rem 0 .35rem;
    border-bottom: 1px solid #EAEDED;
}

.lylist .ul .li .imgbox {
    width: .72rem;
    height: .72rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: .28rem;
}

.lylist .ul .li .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kcnickname {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    margin-bottom: .07rem;
    color: var(--theme-color);
}

.kcdate {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .14rem;
    color: #999999;
    margin-bottom: .11rem;
}

.kccon {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .18rem;
    line-height: .34rem;
    color: #000000;
}

.adminreplytit {
    display: flex;
    align-items: center;
    margin-top: .43rem;
    margin-bottom: .13rem;
}

.adminreplytit .imgbox2 {
    width: .28rem;
    height: .28rem;
    margin-right: 0.09rem;
}

.adminreplytit .imgbox2 img {
    width: 100%;
    height: 100%;
}

.adminreplytit .txtbox2 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #000000;
}

.adminreplycon {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    line-height: .32rem;
    color: #666666;
}

.lybox {
    display: none;
}

.lyDialog {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lyDialog .mengban {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
}

.lykuang {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 4.52rem;
    padding: .1rem;
    background: linear-gradient(219.72deg, #E8F4FF 12.65%, #D7E1F2 91.59%);
    border-radius: .2rem;
}

.lykuang .lycard {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: .2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .6rem .4rem 0;
    position: relative;
}

.lykuang .lycard .h1 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .24rem;
    color: #000000;
    margin-bottom: .22rem;
}

.lykuang .lycard textarea {
    resize: none;
    border: 1px solid #E1E1E1;
    width: 100%;
    height: 1.8rem;
    border-radius: .12rem;
    padding: .15rem .19rem;
    font-size: .16rem;
    outline: none;
}

.lytijiao {
    width: 100%;
    height: .54rem;
    border-radius: .12rem;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid var(--theme-color);
    margin-top: .19rem;
}

.lytijiao::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s;
}

.lytijiao input[type="button"] {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: relative;
    cursor: pointer;
}

.lytijiao span {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #fff;
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.lytijiao:hover::before {
    transform: translateX(104%);
}

.lytijiao:hover span {
    color: var(--theme-color);
}

.closely {
    position: absolute;
    right: .13rem;
    top: .13rem;
    width: 0.14rem;
    height: 0.14rem;
    cursor: pointer;
    overflow: hidden;
}

.closely img {
    width: 100%;
    height: 100%;
}

.closely img:hover {
    transform: translateY(-100%);
    filter: drop-shadow(0 .14rem var(--theme-color));
}

.pxhometit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .22rem;
}

.pxhometit .pxhometit1 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .32rem;
    color: #000000;
}

.pxhomes1 {
    padding: .61rem 0 .84rem;
    background-color: #F5F8FA;
}

.pxnews {
    display: flex;
    justify-content: space-between;
}

.pxnews .rig {
    width: 5.77rem;
}

.pxnewstab {
    margin-bottom: .15rem;
    border-bottom: 1px solid #E2E2E2;
    padding-bottom: .17rem;
}

.pxnewstab a {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .2rem;
    color: #000000;
    display: inline-block;
    padding-right: .25rem;
    margin-right: .19rem;
    position: relative;
}

.pxnewstab a.active,
.pxnewstab a:hover {
    color: var(--theme-color);
}

.pxnewstab a.active::before,
.pxnewstab a:hover::before {
    /* background-color: var(--theme-color); */
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.17rem;
    width: 4em;
    height: 2px;
    background-color: var(--theme-color);
}

.pxnewstab a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: .14rem;
    background-color: #000;
}

.pxnewstab a:last-of-type {
    margin: 0;
    padding: 0;
}

.pxnewstab a:last-of-type::after {
    display: none;
}

.pxnewsli .ul .li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pxnewsli .ul .li .p {
    font-family: var(--ff);
    font-weight: 500;
    font-size: .18rem;
    line-height: .46rem;
    color: #000000;
    width: 4.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pxnewsli .ul .li .p2 {
    font-size: .16rem;
    color: #999999;
}

.pxnewsli .ul .li:hover .p {
    color: var(--theme-color);
}

.pxnewsli .ul .li .p:before {
    content: '·';
    margin-right: 0.07rem;
}

.pxnewss {
    width: 6.6rem;
    margin: 0;
}

.pxnewss .swiper-slide {
    height: 3.71rem;
    position: relative;
}

.pxnewss .swiper-slide .imgbox {
    width: 100%;
    height: 100%;
}

.pxnewss .swiper-slide .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pxnewss .swiper-slide .txtbox {
    position: absolute;
    z-index: 3;
    height: .48rem;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    padding: 0 .15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    color: #FFFFFF;

}

.swiper-pagination-pxnewss {
    position: absolute;
    z-index: 3;
    margin-bottom: 0.2rem;
    padding-right: .14rem;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
    background-color: var(--theme-color);
}

.pxckssslist .ul {
    display: flex;
}

.pxckssslist .ul .li {
    margin-right: .4rem;
}

.pxckssslist .ul .li:last-of-type {
    margin: 0;
}

.pxckssslist .ul .li .imgbox {
    width: 4rem;
    height: 2.25rem;
    border-radius: .08rem;
    overflow: hidden;
    margin-bottom: .19rem;
    position: relative;
}

.pxckssslist .ul .li .imgbox::after {
    content: '';
    position: absolute;
    width: 0.36rem;
    height: 0.36rem;
    background: url(/images/pxckssslist.png) no-repeat;
    background-size: 100% 100%;
    right: .16rem;
    bottom: 0.13rem;
    z-index: 2;
}

.pxckssslist .ul .li .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.pxckssslist .ul .li:hover .imgbox img {
    transform: scale(1.05);
}

.pxckssslist .ul .li .txtbox {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    color: #000000;
}

.pxckssslist .ul .li:hover .txtbox {
    color: var(--theme-color);
}

.pxhomes2 {
    padding: .7rem 0 .8rem;
}

.pxckssslist .slidemore {
    margin: 0 auto;
    margin-top: 0.36rem;
}

.pxkctab a {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #666666;
    margin-left: .24rem;
}

.pxkctab a:hover,
.pxkctab a.active {
    color: var(--theme-color);
}


.hykclist .ul {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #EAEDED;
}

.hykclist .ul .li {
    width: 2.8rem;
    margin-right: .2rem;
}

.hykclist .ul .li:nth-child(3n) {
    margin: 0;
}

.hykclist .ul .li .imgbox {
    width: 100%;
    height: 1.57rem;
    overflow: hidden;
    position: relative;
    display: block;
}

.hykclist .ul .li .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.hykclist .ul .li .imgbox::after {
    content: "";
    position: absolute;
    right: 0.17rem;
    bottom: 0.15rem;
    width: .32rem;
    height: .32rem;
    background-color: rgba(0, 0, 0, .1);
    background-image: url(/images/edatbtn.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
}

.hykclist .ul .li .txtbox {
    height: .84rem;
}

.hykclist .ul .li .txtbox .h1 {
    display: block;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #000000;
    margin: .16rem 0 .06rem;
}

.hykclist .ul .li .txtbox .h2 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .14rem;
    line-height: 100%;
    color: #666666;
    display: flex;
    justify-content: space-between;
}

.hykclist .ul .li:hover .txtbox .h1,
.hykclist .ul .li:hover .txtbox .h2 {
    color: var(--theme-color);
}

.hykclist .ul .li:hover .imgbox img {
    transform: scale(1.05);
}

.hykclist .ul .li .shz {
    position: absolute;
    top: .09rem;
    right: .09rem;
    padding: .03rem .04rem;
    z-index: 3;
    background-color: #FF8C3A;
    border-radius: 4px;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .14rem;
    color: #fff;
}

.hykclist .ul .li .sc {
    width: .2rem;
    height: .2rem;
    background-image: url(/images/sc1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.hykclist .ul .li .sc.active {
    background-image: url(/images/sc2.png);
}

.msglist .ul .li {
    padding: .25rem .27rem;
    border: 1px solid #DDDDDD;
    border-radius: .04rem;
    margin-bottom: 0.2rem;
}

.msgplace {
    width: 100%;
    padding: .17rem .23rem;
    background-color: #F8F8F8;
    border-radius: 0.04rem;
}

.msgplace {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #000000;
}

.msgplace a {
    color: var(--theme-color);
}

.msglist .ol .oli .h1 {
    font-family: var(--ff);
    font-weight: 500;
    font-size: .14rem;
    color: #333333;
    margin: .18rem 0 .1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.msglist .ol .oli .h1 a {
    display: block;
    padding: .04rem .1rem;
    border: 1px solid #C5C5C5;
    border-radius: 0.05rem;

    font-family: var(--ff);
    font-weight: 400;
    font-size: .14rem;
    color: #666666;
}

.msglist .ol .oli .h1 a:hover {
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
}

.msglist .ol .oli .h2 {
    font-family: var(--ff);
    font-weight: 300;
    font-size: .16rem;
    line-height: 2;
    text-align: justify;
    color: #000000;
}

.adminmsg {
    margin-top: .18rem;
}

.adminmsg .h3 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    color: #000000;
    display: flex;
    align-items: center;
    margin-bottom: .12rem;
}

.adminmsg .h3 img {
    width: .28rem;
    height: .28rem;
    margin-right: .09rem;
}

.adminmsg .h4 {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .16rem;
    line-height: 2;
    color: #666666;
}

.hyaside a {
    line-height: normal;
}



/* 新视频列表 */
.vditmtit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--ff);
    font-weight: 400;
    font-size: .2rem;
    color: #000000;
    margin-bottom: 0.16rem;
}

.vditmtit .fianbtns {
    margin-top: 0;
}

.vditmtit .fianbtns .fianbtn {
    width: 1.35rem;
    height: .36rem;
}

.spkcntitm {
    width: 100vw;
    margin-left: calc((100vw - 12.8rem) / -2);
}

.vdbox .vditm {
    padding: .55rem 0 .7rem;
    background-color: #F5F8FA;
}

.vdbox .vditm:nth-child(2n) {
    background-color: #fff;
}

.vdbox .vditm .ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.vdbox .vditm .ul .li {
    display: flex;
    width: 6.22rem;
    cursor: pointer;
    margin-bottom: .3rem;
}

.vdbox .vditm .ul .li .imgbox {
    width: 2rem;
    /* height: 1.12rem; */
    height: 0.98rem;
    overflow: hidden;
    margin-right: .15rem;
    flex-shrink: 0;
    position: relative;
}

.vdbox .vditm .ul .li .imgbox::after {
    content: "";
    position: absolute;
    right: 0.07rem;
    bottom: 0.07rem;
    width: .24rem;
    height: .24rem;
    background-color: rgba(0, 0, 0, .1);
    background-image: url(/images/edatbtn.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
}

.vdbox .vditm .ul .li .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.vdbox .vditm .ul .li:hover .imgbox img {
    transform: scale(1.05);
}

.vdbox .vditm .ul .li .txtbox {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .18rem;
    line-height: .32rem;
    color: #000000;
}


/* 培训头部 */
.newlr {
    display: flex;
    align-items: center;

}

.newlr1 {
    display: flex;
    align-items: center;
    margin-right: .2rem;
    cursor: pointer;
}

.newlr1 .imgbox {
    width: .22rem;
    height: .22rem;
    overflow: hidden;
    margin-right: 0.1rem;
}

.newlr1 .txtbox {
    font-size: .18rem;
    color: #666666;
}

.newlr1 .imgbox img {
    width: 100%;
    height: 100%;
}

.newlr1:hover .txtbox {
    color: var(--theme-color);
}

.newlr1:hover .imgbox img {
    transform: translateY(-100%);
    filter: drop-shadow(0 .22rem var(--theme-color));
}

.newlr2 {
    margin-right: .29rem;
    width: .72rem;
    height: .3rem;
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: .18rem;
    color: #fff;
    border: 1px solid var(--theme-color);
    cursor: pointer;
}

.newlr2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    z-index: 3;
    transition: all 0.5s;
}

.newlr2:hover {
    color: var(--theme-color);
}

.newlr2:hover::before {
    transform: translateX(104%);
}

.newlr2 span {
    position: relative;
    z-index: 3;
}

.edahome {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--theme-color);
}

.edahome span {
    font-size: .18rem;
    color: var(--theme-color);
}

.edahome img {
    width: .2rem;
    height: .2rem;
    margin-left: .1rem;
    transition: all 0.5s;
}

.edahome:hover img {
    transform: translate(3px, -3px);
}

.pxlogo {
    display: flex;
    align-items: center;
}

.pxlogo a {
    display: block;
    width: 1.61rem;
    height: .46rem;
    background-image: url(/images/pxlogo.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: .16rem;
}

.pxlogo span {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .2rem;
    color: #666666;
}

.edaLogin {
    z-index: 1000;
}

.edaLogin .edaContainer .h10 {
    font-size: .2rem;
    font-family: var(--ff);
    text-align: center;
    margin-bottom: 0.18rem;
}

.edaregiflow .edalbox .rig {
    padding: .47rem .65rem .49rem;
}

.sybtn .imgbox {
    width: .24rem !important;
    height: .24rem !important;
}

.iflowaccount {
    margin-top: .29rem;
}

.iflowaccount .goag {
    font-family: var(--ff);
    font-weight: 500;
    font-size: .2rem;
    text-align: center;
}

.iflowaccount .goag span {
    color: var(--theme-color);
}

.iflowaccount a {
    font-family: var(--ff);
    font-weight: 400;
    font-size: .2rem;
    text-align: center;
    display: block;
    margin: 0 auto;
    width: fit-content;
    padding-bottom: .07rem;
    border-bottom: 1px solid var(--theme-color);
    margin-top: 0.17rem;
    color: var(--theme-color);
}

.edanewlist .pwidth {
            background-color: #fff;
            border-radius: 0.2rem;
            padding: 0.2rem 0.5rem 0.72rem;
        }

        .fy {
            margin-top: 0.26rem;
        }

        .edanewlist .ul .li {
            display: flex;
            padding: .23rem 0 .26rem;
            border-bottom: 1px solid #EAEDED;
        }

        .edanewlist .ul .li .imgbox {
            width: 1.88rem;
            height: 1.24rem;
            overflow: hidden;
            margin-right: 0.26rem;
        }

        .edanewlist .ul .li .imgbox img {
            width: 100%;
            height: 100%;
            transition: all 0.5s;
            object-fit: cover;
        }

        .edanewlist .ul .li:hover .imgbox img {
            transform: scale(1.05);
        }

        .edanewlist .ul .li .txtbox {
            flex: 1;
        }

        .edanewlist .ul .li .txtbox .h1 {
            font-family: var(--ff);
            font-weight: 400;
            font-size: .18rem;
            color: #000000;
            margin-bottom: .16rem;
            display: flex;
            justify-content: space-between;
        }

        .edanewlist .ul .li .txtbox .h1 span {
            display: inline-block;
            max-width: 85%;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }

        .edanewlist .ul .li .txtbox .h4 {
        font-size: .16rem;
        color: #666666;

        }
        
        .edanewlist .ul .li .txtbox .h2 {
            font-family: var(--ff);
            font-weight: 400;
            font-size: .16rem;
            color: #666666;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }

        .edanewlist .ul .li:hover .txtbox .h1,
        .edanewlist .ul .li:hover .txtbox .h2 {
            color: var(--theme-color);
        }

        .edanewlist .ul .li .txtbox .h3 {
            display: flex;
            align-items: center;
            font-family: var(--ff);
            font-weight: 300;
            font-size: .14rem;
            color: #999999;
            margin-top: 0.4rem;
            justify-content: flex-end;
        }

        .edanewlist .ul .li .txtbox .h3 svg {
            fill: #999999;
            margin-left: 0.08rem;
            width: 0.18rem;
        }

        .edanewlist .ul .li:hover .txtbox .h3 {
            color: var(--theme-color);
        }

        .edanewlist .ul .li:hover .txtbox .h3 svg {
            fill: var(--theme-color);
        }

        .edanewlist .ul .li.noimg .h3 {
            justify-content: flex-start;
        }

        .edanewlist .fy a,
        .edanewlist .fy span {
            background-color: transparent !important;
            width: .46rem;
            height: .46rem;
            color: #232323;
            font-size: .2rem;
            line-height: 1;
            padding-top: 0.08rem;
        }

        .edanewlist .fy a:hover {
            color: var(--theme-color);
        }

        .edanewlist .fy span.cpb {
            color: var(--theme-color);
            background-image: url(/images/fycpb.png);
            background-size: contain;
        }

        .edanewlist .fy-con .pre {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 0;
            cursor: pointer;
            margin: 0 .16rem !important;
        }

        .edanewlist .fy-con .pre:first-child::before {
            content: "";
            display: block;
            width: 0.1rem;
            height: 0.1rem;
            border-top: 1px solid #232323;
            border-left: 1px solid #232323;
            transform: rotate(-45deg);
            padding-top: 0;
            margin-top: -0.08rem;
        }

        .edanewlist .fy-con .pre:last-child::before {
            content: "";
            display: block;
            width: 0.1rem;
            height: 0.1rem;
            border-top: 1px solid #232323;
            border-right: 1px solid #232323;
            transform: rotate(45deg);
            padding-top: 0;
            margin-top: -0.08rem;
        }

        .edanewlist .fy-con .pre[disabled] {
            cursor: not-allowed;
        }

        .edanewlist .fy-con .pre:hover::before {
            border-color: var(--theme-color) !important;
        }

/* 培训end */




@media screen and (min-width:751px) {

    .pxckssslist .ul .li {
        display: none;
    }
     .pxckssslist .ul .li:nth-of-type(-n+3) {
        display: block;
     }

    .hyformItem.hyformItembd .custom-select {
        font-size: .14rem;
    }


    .hometit,
    .edatitle,
    .jobtit,
    .yytitle,
    .baseTitle {
        font-family: ui-serif, LibreBaskerville, Georgia, Cambria, Times New Roman, Times, serif !important;
        font-weight: 900 !important;
    }

    .baseTitle {
        font-size: .44rem;
        margin-bottom: .4rem;
    }

    #ContentPlaceHolder1_baseTitle .baseTitle {
        /* margin-bottom: .72rem; */
        margin-bottom: .36rem;
    }

    .irfss4 .edatitle {
        margin: 0.2rem 0 .7rem;
    }

    .lifejob,
    .dfjja,
    .zptitle1,
    .zptitle11 {
        background-color: #fff !important;
    }

    .zpcz {
        position: absolute;
        width: .2rem;
        height: .2rem;
    }

    .zpcz a {
        width: 100%;
        height: 100%;
        display: block;
    }

    .zpcz a img {
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .zpjtnr h5 {
        margin-left: 0;
    }

    .gwxq {
        padding-bottom: 1.21rem;
    }

    .sqzw {
        right: auto;
        bottom: .52rem;
    }

    .sqzw a {
        width: auto;
        height: .42rem;
        background-color: transparent;
        border: 1px solid #005ABB;
        margin-right: .3rem;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        border-radius: .5rem;
    }

    .sqzw a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #005ABB;
        transform: translateX(-104%);
        transition: all 0.5s;
    }

    .sqzw a:hover::before {
        transform: translateX(0);
    }

    .sqzw a span {
        position: relative;
        z-index: 2;
        color: #005ABB;

        font-family: var(--ff);
        font-weight: 300;
        font-size: 16px;
        text-align: center;
    }

    .sqzw a:hover span {
        color: #fff;
    }

    .dfjja {
        padding: .3rem 3.11rem .17rem;
    }

    .lifejob h3 {
        margin-bottom: .5rem;
    }

    .lifejob {
        padding-top: .95rem;
    }

    .uuo .zptitle11 p.zplb,
    .uuo .zptitle11 p.gzdd,
    .uuo .zptitle11 p.zprs {
        display: none;
    }

    .mbshow {
        display: none !important;
    }

    .mbshowflex {
        display: none !important;
    }

    .pcshow {
        display: block !important;
    }

    .pcshowflex {
        display: flex !important;
    }



    .edaLogin .edalbox {
        width: auto;
        display: flex;
    }

    .edalbox .lef {
        width: 3.28rem;
        background-color: #fff;
        border-radius: .16rem;
        overflow: hidden;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        padding: .7rem 0 1.02rem;
        margin-right: -1px;
    }

    .edalbox .lef::after {
        content: '';
        position: absolute;
        right: 0;
        width: 1px;
        height: 3.2rem;
        background-color: #EEEEEE;
    }

    .edalbox .lef .sch1 {
        font-family: var(--ff);
        font-weight: 400;
        font-size: .18rem;
        line-height: 1;
        color: #000000;
        margin-bottom: .31rem;
    }


    .edalbox .lef .sch2 {
        font-family: var(--ff);
        font-weight: 400;
        font-size: .14rem;
        line-height: 1;
        color: #70757C;
        margin-top: .26rem;
    }

    .edalbox .lef .imgbox {
        width: 1.88rem;
        height: 1.88rem;
        border: 1px solid #E8E8E8;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .edalbox .lef .imgbox img {
        width: 1.68rem;
        height: 1.68rem;
    }


    .edalbox .rig {
        background-color: #fff;
        width: 5.12rem;
        border-radius: .16rem;
        overflow: hidden;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        padding: .7rem .65rem .96rem;
    }

    .edalbox .rig.zcbox {
        border-radius: .16rem;
        padding-top: .47rem;
        padding-bottom: .49rem;
    }

    .edaLogin .edaContainer {
        border-radius: 0;
        padding: 0;
    }

    .edaLogin2 .edaContainer {
        border-radius: .12rem;
        padding: .5rem 0.4rem .59rem;
    }

    .edaLogin .edaContainer .h1 {
        font-family: var(--ff);
        font-weight: 400;
        font-size: .18rem;
        line-height: 1;
        color: #000000;
        margin-bottom: .31rem;
        text-align: center;
    }
}



@media screen and (max-width:750px) {

    .edalbox .lef {
        display: none;
    }

    .edaLogin .edaContainer .h1 {
        display: none;
    }


    .baseTitle {
        font-size: .48rem;
    }


    .newrj {
        display: none;
    }

    .rexx input[type="text"] {
        padding-left: 1.5rem;
    }


    html {
        scroll-padding-top: 0;
    }

    .edatxts {
        height: 1.3rem;
    }

    .checkmark {
        margin-top: 0;
    }

    body {
        padding-top: 1rem;
    }

    .mbshow {
        display: block !important;
    }

    .mbshowflex {
        display: flex !important;
    }

    .pcshow {
        display: none !important;
    }

    .pcshowflex {
        display: none !important;
    }

    .sbox .mbanner .newtit {
        font-weight: 600;
        font-size: .64rem;
        line-height: .9rem;
        color: #fff;
    }

    .sbox .mbanner .newtitdesc {
        font-weight: 400;
        font-size: .48rem;
        line-height: .9rem;
        color: #fff;
        margin-top: 0;
        width: 6.5rem;
    }


    .mbanner .swiper-slide .item>div,
    .mbanner .swiper-slide .item .txt {
        /* top: 4.71rem; */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .mbanner .banner-iRFS .h2 {
        font-size: .26rem;
        line-height: .48rem;
    }

    .sbox .banner-chatdv img {
        position: static;
    }

    .sbox .banner-chatdv .bimg1 {
        width: 2.7rem;
    }

    .sbox .banner-chatdv .bimg2 {
        width: 1.66rem;
        margin-bottom: .25rem !important;
    }

    .mbanner .txt .desc {
        margin-top: 0;
    }

    .mbanner .banner-chatdv .h2 {
        font-weight: 300;
        font-size: .27rem;
        line-height: .38rem;
        text-align: center;
        width: 4.2rem;
    }

    .banner-chatdv {
        padding-top: 0.8rem;
    }

    .mheader .inputs {
        border: none;
        left: 2.5rem;
    }



    .mbanner {
        width: 6.8rem;
        height: 4.5rem;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        border-radius: .2rem;
    }


    .mbanner .mbs {
        width: 100%;
        height: 100%;
    }

    .mbanner .swiper-pagination {
        bottom: .25rem !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mbanner .swiper-pagination .swiper-pagination-bullet {
        width: .12rem;
        height: .12rem;
        opacity: 0.5;
        background-color: #fff;
        border-radius: 50%;
        margin: 0 .15rem !important;
    }

    .mbanner .swiper-pagination .swiper-pagination-bullet-active {
        width: .16rem;
        height: .16rem;
        opacity: 1;
        background-color: #036FD4;
    }

    .mbanner .swiper-slide img {
        object-fit: cover;
    }

    .homes1 {
        background: none;
    }

    .s1s2 {
        background: linear-gradient(180deg, #E8F4FF -1.06%, #F5F5F5 100%);
    }

    .homes2 .evs {
        width: 6.8rem;
        margin: 0 auto;
    }

    .homes2 .ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100% !important;
    }

    .homes2 .ul .li {
        width: 3.28rem !important;
        margin-right: 0 !important;
        display: none;
        margin-top: .39rem !important;
    }

    .homes2 .ul .li .imgbox {
        height: 1.97rem;
    }

    .homes2 .ul .li .txtbox {
        font-weight: 400;
        font-size: .24rem;
        margin-top: .25rem;
        text-align: center;
    }

    .homes2 .ul .li:nth-of-type(-n+2) {
        margin-top: 0 !important;
    }

    .homes2 .ul .li:nth-of-type(-n+4) {
        display: block;
    }

    /* .homes2 .eda-more {
        display: none;
    } */

    .homes2 {
        padding: .71rem 0 .81rem;
    }

    .swiper-pagination-evs {
        display: none;
    }


    .footcontainer {
        padding: .51rem .35rem 0;
    }

    .sharefoot {
        margin-bottom: .38rem;
    }

    .sharefoot .qrcode-container {
        width: .72rem;
        height: .72rem;
    }

    .sharefoot .qrcode-container .imgbox {
        width: .42rem;
        height: .42rem;
    }

    .sharefoot .qrcode-container:hover .imgbox img {
        filter: drop-shadow(0 .42rem #fff);
    }

    .edafootlogo {
        display: none;
    }

    .edafootcd .ul {
        padding: 0;
        justify-content: space-between;
    }

    .edafootcd .ul .li {
        margin-right: 0;
        font-size: .22rem;
    }

    .edatotop {
        display: none;
    }

    .edacopy {
        height: auto;
        padding: .27rem 0 .24rem;
    }

    .edacopy p,
    .edacopy p a {
        font-family: var(--ff);
        font-weight: 300;
        font-size: .2rem;
        line-height: 1.8;
        text-align: center;
    }


    .chatdvbn {
        height: auto;
        padding: 1.1rem 0 .93rem;
    }

    .sybtn {
        height: .68rem;
        padding: 0 .38rem;
        min-width: 2.55rem;
    }

    .sybtn .imgbox {
        width: .36rem !important;
        height: .36rem !important;
    }

    .sybtn:hover .imgbox img {
        filter: drop-shadow(0 .36rem var(--theme-color));
    }

    .sybtn span {
        font-size: .24rem;
    }

    .edaisdcontainer {
        width: 6.8rem;
    }

    .chatdvs2 .ul {
        display: block;
    }

    .chatdvs2 .ul .li {
        width: 100%;
        padding: .6rem 0.35rem .65rem;
        margin-bottom: .3rem;
    }

    .chatdvs2 .ul .li:last-of-type {
        margin-bottom: 0;
    }

    .chatdvs2 .ul .li .imgbox {
        width: .72rem;
        height: .72rem;
        margin-bottom: .27rem;
    }

    .chatdvs2 .ul .li .h1 {
        font-size: .28rem;
        margin-bottom: .27rem;
    }

    .chatdvs2 .ul .li .h2 {
        font-size: .24rem;
        line-height: 2;
    }

    .ylzssp {
        height: 3.82rem;
        border-radius: .2rem;
        overflow: hidden;
    }

    .chatdvs3 .ylzssp video {
        width: 100%;
        border-radius: .2rem;
    }


    .irfss4 .ul {
        display: block;
    }

    .irfss4 .ul .li {
        width: 100%;
        height: auto;
        margin-bottom: .25rem;
        padding: .47rem 0.35rem .81rem;
        margin: 0;
    }

    .irfss4 .ul .li .imgbox {
        width: .48rem;
        height: .48rem;
        margin-bottom: .25rem;
    }

    .irfss4 .ul .li .h1 {
        font-size: .24rem;
        margin-bottom: .21rem;
    }

    .irfss4 .ul .li .h2,
    .irfss4 .ul .li .h3 {
        font-size: .24rem;
        line-height: .38rem;
        text-align: center;
    }

    .edaIntro {
        padding: .85rem 0 .65rem;
    }

    .edaIntro .p img {
        width: 100%;
    }

    .edaIntro .p {
        font-size: .24rem;
        line-height: 2;

    }

    .edaIntro .pul {
        width: 100%;
        display: block;
    }

    .edaIntro .jianj {
        padding-left: 0;
    }

    .edaIntro .pul .li,
    .edaIntro .jianj .jianjItem span {
        font-size: .24rem;
        line-height: 2;
    }

    .edaIntro .pul .ul {
        margin-bottom: .28rem;
    }

    .edaadvs .ul .li {
        padding: .57rem 0.18rem .47rem;
    }

    .edaadvs .ul .li .imgbox {
        width: .72rem;
        height: .72rem;
    }

    .edaadvs .ul .li .h1 {
        font-size: .28rem;
        margin-bottom: .22rem;
    }

    .edaadvs .ul .li .p {
        font-size: .23rem;
        line-height: 2;
        text-align: center;
    }


    .edatitle2 {
        font-size: .22rem;
        line-height: .38rem;
        text-align: center;
        width: 5.5rem;
        margin: 0 auto;
    }

    .edafuli .ul {
        margin-top: .41rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .edafuli .ul .li {
        width: 3.1rem;
        margin-top: .42rem;
    }

    .edafuli .ul .li.li:nth-of-type(-n+2) {
        margin-top: 0;
    }

    .edafuli .ul .li .imgbox {
        height: 1.86rem;
    }

    .edafuli .ul .li .txtbox {
        font-size: .24rem;
        margin-top: .29rem;
    }

    .edaLogin.loginmob {
        width: 100vw;
        min-height: calc(100vh - 1rem);
        height: fit-content;
        left: 0;
        top: 1rem;
        background: #fff;
    }

    .edaLogin.loginmob .edalbox {
        width: 100%;
        height: 100%;
        min-height: calc(100vh - 1rem);
        padding: 0;
        border-radius: 0;
        background: #fff;
    }

    .edaLogin.loginmob .edalbox::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .edaLogin.loginmob .closelogin {
        display: none;
    }

    .edafoot.footerfix {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 1000;
    }

    .login-logo {
        display: none;
    }

    .edaLogin.loginmob .edaContainer {
        padding: .85rem .55rem 0;
    }

    .edaLogin.loginmob .edaContainer .mbshow {
        font-weight: 500;
        font-size: .38rem;
        margin-bottom: .62rem;
        text-align: center;
    }

    .loginContainer input[type="text"],
    .loginContainer input[type="password"] {
        width: 100%;
        height: .88rem;
        font-size: .24rem;
        padding-left: .32rem;
    }


    .loginContainer input[type="text"]::-webkit-input-placeholder,
    .loginContainer input[type="password"]::-webkit-input-placeholder {
        color: #70757C;
        font-size: .24rem;
    }

    .loginContainer .item .txc {
        font-size: .22rem;
    }

    .checktext {
        font-size: .22rem;
        line-height: .42rem;
    }

    .lbtn {
        height: .88rem;
        font-size: .24rem;
    }

    .footclone {
        margin-top: 1.63rem;
    }

    .hycontainer {
        padding: .7rem .35rem .45rem;
    }

    .mheader {
        position: fixed;
        height: 1rem;
        top: 0;
        left: 0;
        z-index: 100;
        box-shadow: none !important;
        border-color: #F1F1F1;
    }

    .mheader .skt img {
        width: 1.61rem;
        height: .46rem;
    }

    .gja {
        display: none !important;
    }

    .mnav1 {
        display: none !important;
    }

    .lifejob h3 {
        margin-bottom: 0;
        padding-bottom: .36rem;
    }

    .lifejob,
    .dfjja {
        background-color: #fff;
    }

    .zpcz {
        position: absolute;
        left: .2rem;
    }

    .zpmc {
        margin-left: .67rem;
    }

    .mfooter {
        display: none;
    }

    .hycontent {
        display: block;
    }

    .hybread {
        display: none;
    }

    .hyaside {
        display: none;
    }

    .hymain {
        margin-left: 0;
        padding: .47rem .4rem .7rem;
    }

    .hymain .hytit {
        font-size: .24rem;
    }

    .hymain .hytit::before {
        height: .2rem;
        margin-right: .14rem;
    }

    .hyformItem .label {
        width: 1.2rem;
        font-size: .24rem;
    }

    .hyformItem input[type="text"],
    .hyformItem input[type="password"],
    .custom-select {
        width: 4.6rem;
        height: .78rem;
        font-size: .24rem;
    }


    .hyformItem.hyformItembd .custom-select {
        font-size: .2rem;
    }

    .hyformItem.hyformItembd .custom-select a {
        white-space: nowrap;
    }

    .uploadface span {
        font-size: .2rem;
    }

    .hymsgbtn {
        margin-left: 0;
        margin: 0 .14rem;
        width: 2.18rem;
        height: .68rem;
    }

    .hymsgbtn span {
        font-size: .24rem;
    }

    .hymsgbtnbox {
        display: flex;
        justify-content: center;
    }

    .hyapp {
        padding: 0 .79rem 0 .63rem;
    }

    .hymain {
        min-height: 10.38rem;
    }

    .hymain#hy2 {
        padding: .74rem .45rem 0;
    }

    #hy2 .hyformItem {
        width: 100%;
    }

    #hy2 .hyformItem input[type="text"],
    #hy2 .hyformItem input[type="password"] {
        width: 100%;
    }

    .passeye {
        width: .4rem;
        height: .4rem;
    }

    .savepass {
        width: 100%;
        height: .78rem;
    }

    .savepass span {
        font-size: .24rem;
    }

    .savepass2 {
        border-color: #E1E1E1;
    }

    .savepass2::after {
        transform: translateX(-104%);
    }

    .savepass2:hover::after {
        transform: translateX(0);
    }

    .savepass2 span {
        color: #70757C;
    }

    .savepass2:hover span {
        color: #fff;
    }

    .hyhead {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        width: 100%;
        height: 1rem;
        left: 0;
        top: 0;
        padding: 0 .35rem 0 .25rem;
        background-color: #fff;
        z-index: 10;
    }

    .hyfh {
        width: .34rem;
        height: .34rem;
        background-image: url(/images/hyfh.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: none;
    }

    .hymid {
        font-weight: 400;
        font-size: .32rem;
        text-align: center;
        color: #000;
    }

    .hy-logout {
        display: block;
        width: .44rem;
        height: .44rem;
        background-image: url(/images/logoutico.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .hycopy,
    .hycopy a {
        font-weight: 300;
        font-size: .2rem;
        line-height: .38rem;
        text-align: center;
        margin-top: .97rem;
    }

    .facet {
        font-size: .24rem;
    }

    .uptip {
        font-size: .22rem;
        text-align: center;
    }

    .edaLogin2 .edalbox {
        width: 5.5rem;
    }

    .upface {
        width: 100%;
        height: .72rem;
    }

    .upface span {
        font-size: .22rem;
    }

    .mheader .pinfo {
        background-image: url(/images/moblogico.png);
        background-size: contain;
        margin-right: 0;
    }

    .pinfo:hover {
        background-image: url(/images/moblogico.png) !important;
    }

    .mleimd .logout {
        display: none;
    }

    .jobsearch {
        width: 6rem;
        height: .78rem;
    }

    .jobsearch .jobinp input[type="text"] {
        font-size: .24rem;
    }

    .edalang {
        width: .44rem;
        height: .44rem;
        border-radius: 100%;
        border: 1px solid #B8B8B8;
        display: flex;
        justify-content: center;
        align-items: center;

        font-weight: 300;
        font-size: .2rem;
        margin: 0 .27rem 0 .2rem;
    }

    .mbanner .swiper-slide-active img {
        animation: none;
    }

    .droplist {
        top: 1rem;
    }

    .dy img,
    .dy2 img {
        margin: 0;
    }

    .dy p img,
    .dy2 p img {
        margin: 0.12rem auto 0;
    }

    .custom-checkbox {
        padding-top: 0.1rem;
    }

    .qrcode-container:hover .qrcode-popup {
        opacity: 0;
    }

    .fmsgs a {
        font-size: .22rem;

        margin-right: 2em;
    }

    .fmsgs img {
        width: .3rem;
        height: .3rem;
    }


    .chatdvs2 .ul .li,
    .edaadvs .ul .li {
        border-color: #ccc;
    }


    .mbjj {
        padding: 0;
    }

    .uploadjl ul li {
        width: 6.8rem;
        height: 0.8rem;
    }

    .file,
    .uploadjl ul li input[type="text"] {
        width: auto;
        flex: 1;
    }

    .uploadjl ul .spans {
        padding-left: 0;
    }

    .jlbtn {
        width: 6.8rem;
        margin-top: .25rem;
    }

    .fsbtn1 {
        width: 3.2rem;
        height: .8rem;
    }

    .fsbtn1 span {
        font-size: .24rem;
    }

    .uploadjl input[type="submit"] {
        line-height: normal;
    }

    .jlcontent .mbback {
        display: none;
    }

    .jlcontent {
        padding: .7rem 0 1rem;
    }



    .videoList {
        display: flex;
        justify-content: space-between
    }

    .videoList li {
        width: 3.28rem;
    }

    .videoList li .imgss {
        height: 1.97rem;
    }

    .videoList::before,
    .videoList::after {
        display: none;
    }

    .videoList li p {
        padding: 0;
        font-weight: 400;
        font-size: .24rem;
        margin-top: .25rem;
        text-align: center;
    }


    .jbFirst li label {
        width: auto !important;
    }

    .jbFirst li input[type="text"] {
        padding-left: 1em;
    }

    .edatxts .swiper-slide p {
        padding: 0 .3rem;
    }

    .arrow {
        display: none !important;
    }

    .moblogico img {
        border-radius: 50%;
    }

    .edajobcontainer {
        padding-top: .85rem;
    }

    .jobtype {
        min-width: auto;
        width: 6rem;
        height: .78rem;
    }

    .custom-dropdown {
        height: .78rem;
    }

    .selected-text {
        white-space: nowrap;
    }

    .jobSearch input[type="text"]::-webkit-input-placeholder {
        width: 73%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .edajoblist .ul {
        width: 6.8rem;
    }

    .edajoblist .ul .li {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: .34rem;
        width: 100%;
    }

    .edajoblist .ul .li:last-of-type {
        margin-bottom: 0;
    }

    .edajoblist .ul .li .h1 .h11 {
        font-size: .36rem;

    }

    .edajoblist .ul .li .h2 {
        font-size: 0.28rem;
    }

    .eda-more {
        height: .68rem;
        width: fit-content;
        padding: 0 .46rem;
        font-size: .24rem;
    }

    .dropdown-header {
        min-width: 8em;
        justify-content: center;
    }

    .jjoobb .lef {
        position: static;
    }

    .jjoobb .rig {
        margin-left: 0;
        padding-left: 0;
        border: none;
    }

    .jjoobb {
        width: 6.8rem;
    }

    .jobrequire {
        flex-wrap: wrap;
    }

    .jobname {
        font-size: .36rem;
    }

    .category-name {
        font-weight: 400;
        font-size: .24rem;
        color: #000;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    .category-name::after {
        content: '';
        display: block;
        width: .2rem;
        height: .2rem;
        margin-left: .11rem;
        background-image: url(/images/mbcxl.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin-top: 0.04rem;
    }

    .arrowcategory.open~.checkbox-container~.category-name {
        color: var(--theme-color);
    }

    .arrowcategory.open~.checkbox-container~.category-name::after {
        background-image: url(/images/mbcxl2.png);
    }

    .arrowcategory {
        display: none;
    }

    .category-header .checkbox-container {
        display: none;
    }

    .jjoobb .lef {
        width: 100%;
        padding-bottom: .33rem;
        border-bottom: 1px solid #D3D3D3;
        margin-bottom: .42rem;
    }

    .jjoobb .lef .h1 {
        font-size: .36rem;
        margin-bottom: .24rem;
    }

    .jobcategory-list {
        display: flex;
        justify-content: space-between;
    }

    .subcategory-list {
        padding-left: 0;
        width: 100vw;
        padding: .28rem .35rem .34rem;
        margin-left: -0.35rem;
        background-color: #fff;
        box-shadow: 0px 0px 12px 6px #8888880F;
        position: absolute;
        left: 0;
        z-index: 10;
    }

    .subcategory-list li {
        margin-left: 0;
        width: fit-content;
    }

    .category-item:nth-of-type(2) .subcategory-list {
        padding-left: 46%;
    }

    .subcategory-list li .checkbox-container {
        font-size: .24rem;
        line-height: .56rem;
        padding-left: .4rem;
        white-space: nowrap;
    }

    .checkmark2 {
        width: .28rem;
        height: .28rem;
    }

    .checkbox-container {
        padding-left: 0;
    }

    .jobrequire .h {
        font-weight: 300;
        font-size: .24rem;
        line-height: .38rem;

    }

    .jobrequire .h:nth-of-type(3) {
        margin: 0;
        padding: 0;
        border: none;
    }

    .jobdesc {
        display: none;
    }

    .jobcontent .h1 {
        font-weight: 400;
        font-size: .28rem;
    }

    .jobcontent p {
        font-weight: 300;
        font-size: .24rem;
        line-height: .36rem;
    }

    .jobresume a {
        height: 0.64rem;
    }

    .jobresume a span {
        font-size: .24rem;
    }

    .moredesc {
        font-weight: 300;
        font-size: .24rem;
    }


    .videoList li {
        display: block;
        width: 100%;
    }

    .videoList li .imgss {
        margin-right: 0;
        width: 100%;
        height: 4.08rem;
        margin-bottom: .3rem;
    }

    .videoList li p:nth-of-type(1) {
        font-size: .28rem;
        margin-bottom: .2rem;
    }

    .videoList li p:nth-of-type(2) {
        font-size: .22rem;
    }

    .videoList li {
        margin-bottom: 0 !important;
        margin-top: .8rem !important;
    }

    .videoList li:first-of-type {
        margin-top: 0 !important;
    }

    .pwidth {
        width: 6.8rem;
    }

    .trainerbox .trbread {
        display: none;
    }

    .trainerbox .df {
        display: block;
    }

    .trainerlist .ul {
        justify-content: space-between;
    }

    .trainerlist .ul .li {
        margin-right: 0;
    }


    .trainerlist .ul .li .txtbox {
        font-size: .24rem;
        overflow: visible;
        white-space: wrap;
    }

    .trainerlist .ul .li .imgbox::after {
        width: .36rem;
        height: .36rem;
    }

    .trainnav .ul .li {
        margin-bottom: 0;
    }

    .trainnav .ul .li.active .ol {
        position: absolute;
        display: flex;
        border: none;
        overflow-x: auto;
        width: 6.8rem;
        padding-top: .38rem;
        padding-left: 0;
        left: 0.35rem;
    }

    .trainnav .ul .li.active .ol::-webkit-scrollbar {
        display: none;
    }

    .trainnav .ul .li.active .ol .oli {
        font-size: 0.22rem;
        margin-right: .44rem;
        white-space: nowrap;
    }

    .trainnav {
        width: auto;
        padding: 0;
        margin: 0;
        border: none;
        min-height: auto;
        margin-bottom: 1.23rem;
    }

    .trainnav .ul {
        display: flex;
        justify-content: space-between;
    }


    .trainnav .ul .li .titm {
        width: 1.56rem;
        height: .56rem;
        padding: 0;
        border: 1px solid #D7D7D7 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.24rem;
        border-radius: .5rem;

        min-width: 1.56rem;
        width: auto;
        padding: 0 0.1rem;
    }

    .trainnav .ul .li.active .titm,
    .trainnav .ul .li:hover .titm {
        background-color: var(--theme-color);
        color: #fff;
    }

    .trainnav .h1 {
        font-size: .42rem;
        text-align: center;
        margin-bottom: 0.3rem;
    }

    .trainerlist .curtit {
        display: none;
    }

    .trainnav .ul .li.active .ol::after {
        content: '';
        position: fixed;
        width: .64rem;
        height: .42rem;
        right: 0.35rem;
        margin-top: .3rem;
        background-image: url(/images/fing.png);
        background-size: contain;
        background-repeat: no-repeat;
    }

    .trainnav .ul .li.active .ol .oli.current {
        position: relative;
    }

    .trainnav .ul .li.active .ol .oli.current::after {
        content: '';
        width: 100%;
        height: 0.1rem;
        background-image: url(/images/trainnavline.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        left: 0;
        bottom: -0.18rem;
    }

    .trainban .fian {
        display: block;
    }

    .trainban {
        height: auto;
    }

    .trainban .fian .imgbox2 {
        width: 6.8rem;
        height: 3.82rem;
    }

    .trainban .fian .rig .h1 {
        font-size: .42rem;
        margin: 0.44rem 0 0.27rem;
    }

    .trainban .fian .rig .h2 .k1 {
        font-size: .2rem;
        margin-right: .6rem;
    }

    .trainban .fian .rig .h2 .k2 {
        font-size: .2rem;
    }

    .trainban .fian .rig .h2 .k2 #bdshare a {
        width: .32rem;
        height: .32rem;
        background-size: contain !important;
        margin-right: .38rem;
    }

    .trainban .fian .rig .h2 {
        margin: .27rem 0 .21rem;
    }

    .trainban .fian .rig .p {
        font-size: .24rem;
        line-height: .42rem;
    }

    .fianbtns .fianbtn {
        width: 2.98rem;
        height: .72rem;
        font-size: .24rem;
        margin-top: 0;
    }

    .fianbtns .fianbtn .imgbox3 {
        width: .32rem;
        height: .32rem
    }

    .fianbtns .fianbtn1:hover .imgbox3 img {
        transform: translateY(-100%);
        filter: drop-shadow(0 .32rem var(--theme-color));
    }

    .fianbtns .fianbtn2:hover .imgbox3 img {
        transform: translateY(-100%);
        filter: drop-shadow(0 .32rem #fff);
    }

    .trpdtnav a,
    .trainly {
        margin-right: .79rem;
        font-size: .24rem;
    }

    .kcbt {
        height: 0.8rem;
        font-size: .24rem;
    }

    .kcnr p {
        font-size: .24rem;
        line-height: .42rem;
    }

    .kcvid .ul {
        justify-content: space-between;
    }

    .kcvid .ul .li {
        width: 3.24rem;
        margin: 0;
    }

    .kcvid .ul .li .imgbox {
        height: 1.82rem;
    }

    .kcvid .ul .li .imgbox::after {
        width: .36rem;
        height: .36rem;
    }

    .kcvid .ul .li .txtbox {
        font-size: .24rem;
        padding: .15rem 0 .28rem;

    }

    .trbread .imgbox {
        width: 0.24rem;
        height: 0.24rem;
        margin-right: 0.1rem;
    }

    .breadlink a,
    .breadlink span {
        font-size: .2rem;
    }

    .kctit {
        font-size: .32rem;
        margin-bottom: .41rem;
    }

    .lyffn {
        padding: .24rem .31rem;
    }

    .lyffn .h1 {
        font-size: .24rem;
    }

    .lyffn .imgbox {
        width: .28rem;
        height: .28rem;
        margin-left: .22rem;
    }

    .lylist .ul .li .imgbox {
        width: .96rem;
        height: .96rem;
    }

    .kcnickname {
        font-size: .24rem;
    }

    .kcdate {
        font-size: .18rem;
    }

    .kccon {
        font-size: .24rem;
        line-height: .42rem;
    }

    .adminreplytit .imgbox2 {
        width: .32rem;
        height: .32rem;
    }

    .adminreplytit .txtbox2 {
        font-size: .22rem;
    }

    .adminreplycon {
        font-size: .22rem;
        line-height: .42rem;
    }

    .lykuang {
        width: 6.8rem;
        height: auto;
    }

    .lykuang .lycard {
        padding: 1rem 0.35rem;
    }

    .lytijiao {
        height: .88rem;
        margin-top: .45rem;
    }

    .lytijiao span {
        font-size: .24rem;
    }

    .lykuang .lycard textarea {
        height: 2.4rem;
        font-size: 0.22rem;
    }

    .lykuang .lycard .h1 {
        font-size: .38rem;
        margin-bottom: .53rem;
    }

    .closely {
        width: 0.22rem;
        height: 0.22rem;
    }

    .closely:hover img {
        filter: drop-shadow(0 .22rem var(--theme-color));
    }

    .pxhometit {
        display: block;
        margin-bottom: .27rem;
    }

    .pxhometit .pxhometit1 {
        font-size: .38rem;
        text-align: center;
    }

    .pxnews {
        display: block;
    }

    .pxnewss {
        width: 6.8rem;
    }

    .pxnewss .swiper-slide {
        height: 3.82rem;
    }

    .pxnewss .swiper-slide .txtbox {
        height: .64rem;
        font-size: .24rem;

    }

    .swiper-pagination-pxnewss {
        margin-bottom: 0.12rem;
    }

    .pxnews .rig {
        width: 100%;
        margin-top: .39rem;
    }

    .pxnewstab a {
        font-size: 0.28rem;
    }

    .pxnewsli .ul .li .p {
        font-size: .24rem;
        line-height: .54rem;
        width: auto;
    }

    .pxnewsli .ul .li .p2 {
        display: none;
    }

    .pxhomes1 {
        padding-bottom: 2.21rem;
        position: relative;
    }

    .slidemore {
        width: 2.29rem;
        height: .72rem;
        font-size: .24rem;
    }

    .pxhometit .slidemore {
        position: absolute;
        bottom: 1.06rem;
        left: 50%;
        transform: translateX(-50%);

    }

    .pxkctab a {
        margin: 0;
        font-size: .24rem;
    }

    .pxkctab {
        display: flex;
        justify-content: space-between;
        margin: .3rem 0 .31rem;
    }

    .pxckssslist .ul {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .pxckssslist .ul .li {
        width: 3.24rem;
        margin: 0;
    }

    .pxckssslist .ul .li .imgbox {
        width: 100%;
        height: 1.82rem;

    }

    .pxckssslist .ul .li .txtbox {
        font-size: .24rem;
        line-height: .4rem;
        padding: .15rem 0 .2rem;
    }

    .hykclist .ul {
        justify-content: space-between;
    }

    .hykclist .ul .li {
        margin: 0;
        width: 2.96rem;
    }

    .hykclist .ul .li .imgbox {
        height: 1.66rem;
    }

    .hymain {
        padding-left: 0.34rem;
        padding-right: 0.34rem;
    }

    .hykclist .ul .li .txtbox .h1 {
        font-size: 0.24rem;
    }

    .hykclist .ul .li .txtbox {
        height: auto;
    }

    .hykclist .ul .li .txtbox .h2 {
        font-size: .2rem;
        margin: .08rem 0 .24rem;
    }

    .hykclist .ul .li .shz {
        font-size: .2rem;
    }

    .hykclist .ul .li .imgbox::after {
        width: .36rem;
        height: .36rem;
    }

    .hykclist .ul .li .sc {
        width: .32rem;
        height: .32rem;
    }

    .msgplace {
        font-size: .24rem;
    }

    .msgplace a {
        display: block;
        margin-top: .12rem;
        margin-left: -0.5em;
    }

    .msglist .ol .oli .h1 {
        font-size: .2rem;
    }

    .msglist .ol .oli .h1 a {
        font-size: .2rem;
    }

    .msglist .ol .oli .h2 {
        font-size: .24rem;
        line-height: .42rem;
    }

    .adminmsg .h3 {
        font-size: .24rem;
    }

    .adminmsg .h3 img {
        width: .32rem;
        ;
        height: .32rem;
    }

    .adminmsg .h4 {
        font-size: .24rem;
        line-height: .42rem;
    }

    .adminmsg {
        margin-top: .28rem;
    }

    .msglist .ol .oli .h1 {
        margin: .32rem 0 .17rem;
    }

    .msglist .ul .li {
        padding: .3rem .35rem;
        border: none;
        background-color: #fff;
        border-radius: 0.08rem;
    }

    .msglist .ol .oli {
        padding-bottom: .2rem;
        border-bottom: 1px solid #EAEDED;
    }

    .msglist .ol .oli:last-of-type {
        border-bottom: none;
    }

    .hymain>.hytit {
        /* display: none; */
    }

    .hylymain {
        padding: 0;
        background-color: #F5F8FA;
        border-radius: 0;
    }

    .hycontainer {
        padding-top: .46rem;
    }

    .hyaside {
        width: 100%;
        padding: .36rem .4rem .46rem;
        margin-bottom: .24rem;
    }

    .hyaside a {
        margin-bottom: 0;
        height: .8rem;
        border-bottom: 1px solid #EFEFEF;
        display: flex;
        align-items: center;
        font-size: .24rem;
    }

    .hyaside a:first-of-type {
        border-top: 1px solid #EFEFEF;
    }

    .hyaside .hytit {
        font-family: var(--ff);
        font-weight: 400;
        font-size: .24rem;
        color: #000;
        display: flex;
        align-items: center;
        margin-bottom: .17rem;
    }

    .hyaside .hytit::before {
        content: '';
        display: block;
        height: .14rem;
        width: 3px;
        background-color: #005ABB;
        border-radius: .5rem;
        margin-right: .14rem;
    }

    .hyaside .hytit::before {
        height: .2rem;
        margin-right: .14rem;
    }

    .trainerbox {
        padding-top: .8rem;
    }

    .qrcode-popup {
        z-index: 10;
    }


    .pxmheader .skt {
        display: flex;
        align-items: center;
    }

    .pxmheader .skt img {
        margin-right: .17rem;
    }

    .pxmheader .skt span {
        font-family: var(--ff);
        font-weight: 400;
        font-size: .2rem;
        color: #666666;
    }

    .pxmheader .moblogico {
        margin-right: .2rem;
    }

    .spkcntitm {
        width: 100%;
        margin-left: 0;
    }

    .vdbox .vditm {
        padding: 0;
    }

    .vdbox .vditm .ul {
        display: flex;
        justify-content: space-between;
    }

    .vdbox .vditm .ul .li {
        display: block;
        width: 3.24rem;
    }

    .vdbox .vditm .ul .li .imgbox {
        width: 100%;
        height: 1.82rem;
    }

    .vdbox .vditm .ul .li .txtbox {
        font-size: .24rem;
        line-height: .4rem;
        padding: .15rem 0 .2rem;
    }

    .vditmtit {
        font-size: .26rem;
        display: block;
    }

    .vditmtit .fianbtns .fianbtn {
        width: 2.1rem;
        height: .58rem;
    }

    .vditmtit .fianbtns {
        margin: 0.2rem 0 0.1rem;
    }

    .vdbox .vditm .ul .li .imgbox::after {
        width: .36rem;
        height: .36rem;
        right: 0.17rem;
    bottom: 0.15rem;
    }
    .edanewlist .ul .li .txtbox .h1 span {
        width: 100%;
        max-width: none;
        -webkit-line-clamp: 3;
    }

    .edanewlist .ul .li .imgbox {
        width: 2.28rem;
        height: 1.51rem;
    }

    .edanewlist .ul .li .txtbox .h1 {
        font-size: 0.24rem;
        line-height: .38rem;
    }

    .edanewlist .ul .li .txtbox .h3 {
        font-size: .2rem;
        margin: 0;
    }
    .edanewlist .ul .li .txtbox .h2 {
        display: none;
    }

    .sTh ul li a.current::after {
        height: 1px;
    }

    .sTh ul li a {
        padding-bottom: 0.2rem;
    }

    .pxnewstab a::after {
        height: 1em;
    }
}