@charset "utf-8"; 

/* ====================公共样式========================= */
/* 头部 */
.Header {
    width: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background: #fff;
    user-select: none;
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
    transition: all .4s ease;
}

.Header > div > a {
    float: left;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
}

.Header > div > a img {
    max-width: 100%;
}

.Header > div > a img.s {
    display: none;
}

.Header-lang {
    float: right;
    position: relative;
    z-index: 999;
    margin-left: 30px;
}

.Header-lang-menu {
    display: flex;
    align-items: center;
    height: 80px;
    color: #666;
    transition: color .4s ease;
}

.Header-lang-menu span {
    font-size: 16px;
    font-family: Arial;
}

.Header-lang-menu i {
    font-size: 18px;
}

.Header-lang.active .Header-lang-menu {
    color: var(--ty-primary);
}

.Header-lang-more {
    display: none;
    z-index: 9;
    width: 70px;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    margin-left: -35px;
    border-top: 4px solid var(--ty-primary);
    transition: top .4s ease;
}

.Header-lang-more:before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 8px 8px;
    border-color: transparent transparent var(--ty-primary) transparent;
    position: absolute;
    top: -8px;
    left: 50%;
    margin: 0 0 0 -8px;
}

.Header-lang-more a {
    display: flex;
    font-size: 16px;
    color: #666;
    justify-content: center;
    padding: 10px 0;
    transition: all .4s ease;
}

.Header-lang-more.hasIcon a span {
    background-repeat: no-repeat;
    background-position: left center;
    min-width: 60px;
    text-align: center;
}

.Header-lang-more a:hover {
    color: #fff;
    background: var(--ty-primary);
}

.Header-lang.active .Header-lang-more {
    display: block;
    animation: langInUp .4s ease-out;
}

@keyframes langInUp {
    0% {
        transform: translateY(20px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.Header-navbar {
    margin-right: 0px;
    visibility: visible;
    opacity: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
}

body.PC .Header-navbar {
    display: flex !important;
}

.Header-navbar>ul>li {
    float: left;
    margin: 0 22px;
    position: relative;
    z-index: 9;
}

.Header-navbar>ul>li:last-child {
    margin-right: 0;
}

.Header-navbar>ul>li:first-child {
    margin-left: 0;
}

.navbarScroll > li > a {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666;
    transition: color .4s ease;
}

.navbarScroll > li > a i{
    transform: rotate(180deg);
    margin-left: 4px;
    font-size: 12px;
}

/*.tiyi .Header-navbar>ul>li:hover > a, .tiyi .Header-navbar>ul>li.active > a {
    color: var(--ty-primary);
}*/

.Header-arrow {
    display: none;
}

.Header-drop {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    left: 50%;
    width: 160px;
    margin-left: -80px;
    top: calc(100% - 4px);
    min-width: 100%;
    border-top: 4px solid var(--ty-primary);
    border-radius: 5px 5px 0 0;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
    transition: top .4s ease;
}

.Header-drop::before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 8px 8px;
    border-color: transparent transparent var(--ty-primary) transparent;
    position: absolute;
    top: -8px;
    left: 50%;
    margin: 0 0 0 -8px;
}

.Header-drop-menu {
    display: flex;
    width: 100%;
    position: relative;
}

.Header-drop-menu>a {
    display: flex;
    width: 100%;
    height: auto;
    font-size: 15px;
    line-height: 24px;
    padding: 10px 4px;
    text-align: center;
    color: #666;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}

.Header-drop-menu.active, .Header-drop-menu>a:hover {
    background: var(--ty-primary);
    color: #fff;
}

@media all and (min-width: 1100px) {
    .tiyi .Header > div > a img.s {
        opacity: 1;
    }

    .tiyi .Header > div > a img.h {
        opacity: 0;
    }

    .tiyi .Header {
        background: transparent;
        box-shadow: none;
    }

    .tiyi .Header::after {
        background: rgba(255, 255, 255, 0.2);
        opacity: 1;
    }

    .tiyi .navbarScroll > li > a {
        color: #fff;
    }

    .tiyi .Header-lang-menu {
        color: #fff;
    }

    .tiyi .Header:hover {
        background: #fff;
        box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
    }

    .tiyi .Header:hover .navbarScroll > li > a {
        color: #666;
    }

    .Header:hover .navbarScroll > li:hover > a,
    .Header:hover .navbarScroll > li.active > a{
        color: var(--ty-primary);
    }

    .tiyi .Header:hover::after {
        background: rgba(0, 0, 0, 0.1);
        opacity: 0;
    }

    .tiyi .Header:hover > div > a img.s {
        opacity: 0;
    }

    .tiyi .Header:hover > div > a img.h {
        opacity: 1;
    }

    .tiyi .Header:hover .Header-lang-menu {
        color: #666;
    }

    .noGap .Header > div > a img {
        position: absolute;
        transition: opacity .4s ease;
        top: 0;
        bottom: 0;
        margin: auto 0;
    }

    .noGap .Container {
        margin-top: 0;
    }

    .noGap .Header > div > a img.s {
        display: block;
    }
}

.Header-navclick {
    display: none;
    width: 24px;
    height: 60px;
    cursor: pointer;
    float: right;
    user-select: none;
    align-items: center;
}

.Header-navclick span {
    width: 100%;
    height: 2px;
    background: #666;
    display: block;
    position: relative;
    transition: all .2s linear;
}

.Header-navclick span:before,.Header-navclick span:after {
    content: "";
    position: absolute;
    height: 2px;
    background: #666;
    display: block;
    left: 0;
    width: 100%;
    transition: all .2s linear;
}

.Header-navclick span:before {
    top: -7px;
}

.Header-navclick span:after {
    top: 7px;
}

.Header-navclick.active span {
    -moz-animation: buttonAnimation 0.3s ease forwards;
    -webkit-animation: buttonAnimation 0.3s ease forwards;
    animation: buttonAnimation 0.3s ease forwards;
}

.Header-navclick.active span:before {
    -moz-animation: buttonAnimationBefore 0.3s ease forwards;
    -webkit-animation: buttonAnimationBefore 0.3s ease forwards;
    animation: buttonAnimationBefore 0.3s ease forwards;
}

.Header-navclick.active span:after {
    -moz-animation: buttonAnimationAfter 0.3s ease forwards;
    -webkit-animation: buttonAnimationAfter 0.3s ease forwards;
    animation: buttonAnimationAfter 0.3s ease forwards;
}

@-moz-keyframes buttonAnimationBefore {
    0% {
        -moz-transform: translateY(0px) rotate(0);
        transform: translateY(0px) rotate(0);
    }

    50% {
        -moz-transform: translateY(7px) rotate(0);
        transform: translateY(7px) rotate(0);
    }

    100% {
        -moz-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg);
    }
}

@-webkit-keyframes buttonAnimationBefore {
    0% {
        -webkit-transform: translateY(0px) rotate(0);
        transform: translateY(0px) rotate(0);
    }

    50% {
        -webkit-transform: translateY(7px) rotate(0);
        transform: translateY(7px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg);
    }
}

@keyframes buttonAnimationBefore {
    0% {
        -moz-transform: translateY(0px) rotate(0);
        -ms-transform: translateY(0px) rotate(0);
        -webkit-transform: translateY(0px) rotate(0);
        transform: translateY(0px) rotate(0);
    }

    50% {
        -moz-transform: translateY(7px) rotate(0);
        -ms-transform: translateY(7px) rotate(0);
        -webkit-transform: translateY(7px) rotate(0);
        transform: translateY(7px) rotate(0);
    }

    100% {
        -moz-transform: translateY(7px) rotate(45deg);
        -ms-transform: translateY(7px) rotate(45deg);
        -webkit-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg);
    }
}

@-moz-keyframes buttonAnimationAfter {
    0% {
        -moz-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }

    50% {
        -moz-transform: translateY(-7px) rotate(0);
        transform: translateY(-7px) rotate(0);
    }

    100% {
        -moz-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }
}

@-webkit-keyframes buttonAnimationAfter {
    0% {
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }

    50% {
        -webkit-transform: translateY(-7px) rotate(0);
        transform: translateY(-7px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }
}

@keyframes buttonAnimationAfter {
    0% {
        -moz-transform: translateY(0) rotate(0);
        -ms-transform: translateY(0) rotate(0);
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }

    50% {
        -moz-transform: translateY(-7px) rotate(0);
        -ms-transform: translateY(-7px) rotate(0);
        -webkit-transform: translateY(-7px) rotate(0);
        transform: translateY(-7px) rotate(0);
    }

    100% {
        -moz-transform: translateY(-7px) rotate(-45deg);
        -ms-transform: translateY(-7px) rotate(-45deg);
        -webkit-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }
}

@-moz-keyframes buttonAnimation {
    0% {
        background: transparent;
    }

    50% {
        background: rgba(255, 255, 255, 0);
    }

    100% {
        background: rgba(255, 255, 255, 0);
    }
}

@-webkit-keyframes buttonAnimation {
    0% {
        background: transparent;
    }

    50% {
        background: rgba(255, 255, 255, 0);
    }

    100% {
        background: rgba(255, 255, 255, 0);
    }
}

@keyframes buttonAnimation {
    0% {
        background: transparent;
    }

    50% {
        background: rgba(255, 255, 255, 0);
    }

    100% {
        background: rgba(255, 255, 255, 0);
    }
}

/* 底部 */
.Footer {
    width: 100%;
    background: #161616;
    position: relative;
    z-index: 9;
    border-top: 3px var(--ty-primary) solid;
}

.Footer-items {
    width: 100%;
    padding: 60px 0 50px;
}

.Footer-navbar {
    width: 100%;
    user-select: none;
}

.Footer-navbar>ul {
    justify-content: space-between;
}

.Footer-navbar>ul>li {
    width: auto;
    position: relative;
}

.Footer-navbar ul li > a {
    font-size: 16px;
    color: #fefefe;
    display: flex;
}

.Footer-arrow {
    display: none;
}

.Footer-drop {
    width: 100%;
    margin-top: 7px;
}

body.PC .Footer-drop {
    display: block !important;
}

.Footer-drop-menu {
    display: flex;
    position: relative;
    width: 100%;
}

.Footer-drop-menu>a {
    font-size: 14px;
    padding: 4px 0;
    color: rgba(254,254,254,.5);
    display: flex;
    line-height: 1.24;
    transition: all .4s ease;
}

.Footer-drop-menu>a:hover {
    color: #fff;
}

.Footer-friend {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.Footer-friend-hint, .Footer-friend-link a {
    color: #969da6;
    line-height: 24px;
    font-size: 14px;
}

.Footer-friend-link {
    flex: 1;
}

.Footer-friend-link a {
    transition: all .4s ease;
    margin-right: 14px;
}

.Footer-friend-link a:last-of-type {
    margin-right: 0;
}

.Footer-friend-link a:hover {
    color: #fff;
}

.Footer-copyright {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.Footer-copyright .contain {
    justify-content: space-between;
}

.Footer-copyright .info {
    color: #969da6;
    line-height: 18px;
    font-size: 14px;
}

.Footer-copyright .info a {
    transition: all .4s ease;
}

.Footer-copyright .info a:hover {
    color: #fff;
}

/* 视频弹窗 */
.popVideo {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 999999;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    top: 0;
    left: 0;
}

.popVideo-items {
    max-width: 1000px;
    position: relative;
    opacity: 0;
}

.popVideo-video {
    width: 100%;
    display: flex;
    justify-content: center;
}

.popVideo-video video {
    max-height: 82vh;
}

.popVideo-video iframe {
    width: 1000px;
    height: 600px;
}

.popVideo-close {
    width: 40px;
    height: 40px;
    right: -40px;
    top: -40px;
    line-height: 40px;
    opacity: 0.7;
    text-align: center;
    position: absolute;
    z-index: 3;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    transition: all .6s ease;
}

.popVideo-close:hover {
    opacity: 1;
}

.popVideo.active {
    display: flex;
}

.popVideo.active .popVideo-items {
    animation: popVideRun 1s ease both .4s;
}

@keyframes popVideRun {
    0% {
        opacity: 0;
        transform: translateY(-200px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media all and (max-width: 1100px) {
    .popVideo-items {
        width: 92%;
    }

    .popVideo-close {
        right: -8px;
    }

    .popVideo-video iframe {
        width: 100%;
        height: 450px;
    }
}

@media all and (max-width: 680px) {
    .popVideo-video iframe {
        height: 220px;
    }
}

/* 中间+共用部分 */
.Container {
    width: 100%;
    margin-top: 80px;
}

.section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contain {
    width: 1600px;
    margin: 0 auto;
}

.PageContain {
    width: 1400px;
    margin: 0 auto;
}

.Header > .contain {
/*    width: 100%;*/
/*    padding: 0px 80px;*/
}

.Footer-navbar {
    width: calc(100% - 500px);
}

.Footer-navbar li:last-child{
    width: 15%;
    max-width: 120px;
}

.Footer-navbar li:last-child img{
    margin-bottom: 8px;
}

.Footer-navbar li:last-child .Footer-drop-menu{
    justify-content: center;
}

.Footer-content {
    width: 500px;
    display: flex;
    justify-content: flex-start;
}

.Footer-content .cont img{
    width: 180px;
}

.Footer-content li {
    width: 80%;
    margin-bottom: 5px;
}

.Footer-content li:last-child {
    margin-bottom: 0px;
}

.Footer-cont {
    width: 100%;
    display: flex;
    align-items: center;
}

.Footer-logo {
    display: flex;
    align-items: flex-end;
    width: 50%;
}

.Footer-logo a {
    color: rgba(254, 254, 254, .7);
    line-height: 1;
    margin-right: 50px;
    transition: all .4s ease;
}

.Footer-logo a:last-child {
    margin-right: 0px;
}

.Footer-logo a:hover {
    color: #fff;
}

.Footer-copyright .info {
    display: flex;
}

.Footer-copyright .info p {
    width: 100%;
    font-size: 14px;
    color: rgba(254, 254, 254, .5);
    margin-bottom: 6px;
}

.Footer-copyright .info p:last-child {
    margin-bottom: 0px;
}

.qrcode{

}

/* 简历弹窗 */
.onResume {
    display: none;
    z-index: 999999;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    user-select: none;
    padding: 0 4%;
}

.onResume-contain {
    background-color: #fff;
    border-radius: 5px;
    padding: 45px;
    width: 530px;
    position: relative;
    opacity: 0;
}

.onResume.active {
    display: flex;
}

.onResume.active .onResume-contain {
    animation: onResumeRun .6s ease both;
}

@keyframes onResumeRun {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.onResume-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 18px;
    transition: all .4s ease;
    color: var(--ty-primary);
}

.onResume-close i {
    font-size: inherit;
}

.onResume-close:hover {
    color: #f00;
}

.onResume-title {
    font-size: 20px;
    color: #333;
}

.onResume-form {
    width: 100%;
    margin-top: 12px;
}

.onResume-name {
    width: 100%;
    height: 45px;
}

.onResume-name input, .onResume-wrap .onResume-hint {
    height: 100%;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.08) inset;
    border: 1px solid #e6e6f1;
    padding: 0 16px;
}

.onResume-name input {
    width: 100%;
    border-radius: 5px;
}

.onResume-wrap {
    position: relative;
    width: 100%;
    height: 45px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 8px;
}

.onResume-wrap .onResume-hint {
    width: 66%;
    border-radius: 5px 0 0 5px;
}

.onResume-wrap .btn {
    width: 34%;
    height: 100%;
    background-color: var(--ty-primary);
    position: relative;
}

.onResume-wrap .btn .onResume-upload {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.onResume-button {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.onResume-button button {
    width: 100%;
    height: 45px;
    background-color: var(--ty-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

@media all and (max-width: 680px) {
    .onResume-contain {
        padding:24px 16px;
        width: 100%;
    }

    .onResume-title {
        font-size: 18px;
    }

    .onResume-name, .onResume-wrap {
        height: 40px;
    }

    .onResume-button {
        margin-top: 12px;
    }

    .onResume-button button {
        height: 40px;
        font-size: 14px;
    }

    .onResume-close {
        top: 10px;
        right: 10px;
        font-size: 16px;
    }

    .onResume-wrap .btn .onResume-upload {
        font-size: 14px;
    }

    .onResume-name input, .onResume-wrap .onResume-hint {
        padding: 0 14px;
    }
}

.Header-drop-cont {
    position: fixed;
    top: 80px;
    left: 0px;
    margin-left: 0px;
    width: 100vw;
    background-color: #fff;
    border-radius: 0px;
    border: 0px;
}

.Header-drop-cont::before {
    display: none;
}

.Header-dropA-btn {
    width: 100%;
    border-top: 1px solid #f0f0f0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Header-dropA-btn .btn {
    display: flex;
    align-items: center;
    transition: all .4s ease;
}

.Header-dropA-btn .btn i {
    font-size: 12px;
    color: #161616;
    transform: rotate(180deg);
    display: block;
    margin-top: -2px;
    margin-left: 5px;
    transition: all .4s ease;
}

.Header-dropA-btn .btn:hover {
    color: var(--ty-primary);
}

.Header-dropA-btn .btn:hover i {
    color: var(--ty-primary);
}

.Header-dropA-list {
    justify-content: center;
}

.Header-dropA-list > a {
    margin: 0px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0px 45px 0px;
}

.Header-dropA-list > a .title {
    color: #161616;
    transition: all .4s ease;
}

.Header-dropA-list > a:hover .title {
    color: var(--ty-primary);
}

.Header-dropA-list > a .img {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
}

.Header-dropA-list > a .img img {
    max-height: 100%;
    transition: all .4s ease;
}

.Header-dropA-list > a:hover .img img {
    transform: scale(1.04);
}

.Header-dropB-list {
    width: 1200px;
    margin-right: -30px;
    padding: 35px 0px 60px 0px;
}

.Header-dropB-list .list {
    width: calc(100%/3 - 30px);
    margin-right: 30px;
}

.Header-dropB-title {
    align-items: flex-end;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 15px;
}

.Header-dropB-title .img {
    width: 22px;
}

.Header-dropB-title .title {
    width: calc(100% - 22px);
    padding-left: 10px;
    color: #161616;
    transition: all .4s ease;
}

/* .Header-dropB-title:hover .title{color: var(--ty-primary);} */
.Header-dropB-list .list li {
    padding: 7px 0px;
}

.Header-dropB-list .list li a {
    transition: all .4s ease;
}

.Header-dropB-list .list li a:hover {
    color: var(--ty-primary);
}

.Header-dropB-cont {
    display: flex;
    justify-content: center;
}

.Header-dropC-list {
    width: 1200px;
    margin-right: -30px;
    margin-bottom: -25px;
    padding: 40px 0px 60px 0px;
}

.Header-dropC-list > a {
    width: calc(100%/3 - 30px);
    margin-right: 30px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e6e6e6;
}

@media screen and (min-width: 1201px){
    .Header-dropC-list.list4 > a {
        width: calc(100%/4 - 30px);
    }
}

.Header-dropC-list > a .img {
    width: 25px;
}

.Header-dropC-list > a .cont {
    width: calc(100% - 25px);
    padding-left: 10px;
    padding-top: 7px;
}

.Header-dropC-list > a .cont .title {
    transition: all .4s ease;
    color: #161616;
}

.Header-dropC-list > a:hover .cont .title {
    color: var(--ty-primary);
}

/* 侧边栏 */
.SideBar-wrapper {
    position: fixed;
    top: 80%;
    right: 36px;
    transform: translateY(-50%);
    z-index: 6666;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.SideBar-wrapper a {
    display: flex;
    position: relative;
    margin-top: 4px;
    flex-direction: column;
    align-items: center;
}

.SideBar-wrapper a .icon {
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 100%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 0 12px 2px rgba(5, 9, 18, 0.05);
    transition: background .4s ease;
}

.SideBar-wrapper a .icon img {
    position: absolute;
    transition: all .4s ease;
}

.SideBar-wrapper a .icon img.s {
    opacity: 1;
}

.SideBar-wrapper a .icon img.h {
    opacity: 0;
}

.SideBar-wrapper a:hover .icon{
    color: #fff;
}
.SideBar-wrapper a:hover .icon img.s {
    opacity: 0;
}

.SideBar-wrapper a:hover .icon img.h {
    opacity: 1;
}

.SideBar-wrapper a:hover .icon {
    background: var(--ty-primary);
}

.SideBar-wrapper a .info {
    display: none;
    position: absolute;
    right: 0;
    padding-right: 74px;
    top: 0;
}

.SideBar-wrapper a .info span {
    display: flex;
    align-items: center;
    width: 100px;
    font-size: 16px;
    height: 50px;
    background: var(--ty-primary);
    justify-content: center;
    border-radius: 5px;
    box-shadow: 0 0 12px 2px rgba(108, 89, 189, .2);
    position: relative;
    color: #fff;
}

.SideBar-wrapper a .info span::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    margin-top: -8px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--ty-primary);
    width: 0;
    height: 0;
}

.SideBar-wrapper a:hover .info {
    display: block;
}

.SideBar-wrapper a.code .icon {
    margin-top: -10px;
}

.SideBar-wrapper a.code .head {
    position: relative;
    width: 70px;
    border-radius: 50%;
    border: 3px solid #cfd2ff;
}

.SideBar-wrapper a.code .head img {
    width: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.SideBar-wrapper a.code .head::before, .SideBar-wrapper a.code .head::after {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    background: #d8dbfd;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -35px 0 0 -35px;
    animation: sideCodeRing 1.5s linear infinite;
    opacity: 0;
}

.SideBar-wrapper a.code .head::before {
    animation-delay: .6s;
}

.SideBar-wrapper a.code .head::after {
    animation-delay: 0s;
}

@keyframes sideCodeRing {
    0% {
        opacity: 0;
        transform: scale(.8)
    }

    5% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: scale(1.6)
    }
}

.SideBar-wrapper a.code .head i {
    position: absolute;
    animation: sideDotRing 2s linear infinite;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #cfd2ff;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
}

.SideBar-wrapper a.code .head i::before, .SideBar-wrapper a.code .head i::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.SideBar-wrapper a.code .head i::before {
    width: 6px;
    height: 6px;
    background: #5c66ff;
    right: 7px;
    top: 9px;
}

.SideBar-wrapper a.code .head i::after {
    width: 8px;
    height: 8px;
    background: linear-gradient(to right,#e7e8fa,#d3d5fd);
    top: 30px;
    left: -12px;
}

@keyframes sideDotRing {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(-8deg);
    }
}

.SideBar-wrapper a:hover .wechat {
    display: block;
}

.SideBar-wrapper a.menu {
    display: none;
}

body.PC .SideBar-box {
    display: block !important;
}

.SideBar-wrapper.active a.code .wechat {
    display: block;
}

.SideBar-wrapper.active a.code .icon {
    background: var(--ty-primary);
}

.SideBar-wrapper.active a.code .icon img.s {
    opacity: 0;
}

.SideBar-wrapper.active a.code .icon img.h {
    opacity: 1;
}

/* -------------------------PC端--------------------------- */
@media all and (max-width: 1700px) {
    /* 1600 × (900) */ .contain {
        width: 1400px;
    }

    .PageContain {
        width: 1300px;
    }
}

@media all and (max-width: 1590px) {
    /* 1440 × (700)  */ .contain {
        width: 1200px;
    }

    .Header-navbar>ul>li {
        margin: 0 16px;
    }

    .PageContain {
        width: 1270px;
    }

    .Header-navbar {
/*        padding-right: 170px;*/
    }

    .SideBar-wrapper {
        right: 24px;
    }
    .Footer-content{
        width: 450px;
    }
}

@media all and (max-width: 1430px) {
    /* 1360 */
    .contain{
        width: 1100px;
    }
}

@media all and (max-width: 1350px) {
    /* 1280 */ 
    .PageContain {
        width: 1000px;
    }

    .Header-navbar>ul>li {
        margin: 0 12px;
    }
    .Footer-content{
        width: 420px;
    }
    .Footer-navbar{
        width: calc(100% - 450px);
    }
}

@media all and (max-width: 1270px) {
    /* 1152 × (700) */ 
    .contain {
        width: 960px;
    }

    .Header > .contain {
        padding: 0px 40px;
    }

    .Header-navbar {
        padding-right: 95px;
    }

    .Header-navbar>ul>li {
        margin: 0px 5px;
    }

    .Header-dropB-list {
        width: 100%;
        padding: 30px 4% 30px 4%;
    }

    .Header-dropC-list {
        width: 100%;
        padding: 30px 4% 30px 4%;
    }

    .SideBar-wrapper {
        right: 16px;
    }
    .Footer-content{
        width: 400px;
    }
    .Footer-navbar{
        width: calc(100% - 400px);
    }
}

/* ------------------------平板端（开始改变头部底部）-------------------------- */
@media all and (max-width: 1100px) {
    /* 1024 横屏 */ 
    .contain {
        width: 92%;
    }

    .Container {
        margin-top: 60px;
    }

    .PageContain {
        width: 92%;
    }

    .Header .contain {
        width: 100%;
    }

    .Header::after {
        opacity: 1;
    }

    .Header > div > a, .Header-lang-menu {
        height: 60px;
    }

    .Header > div > a {
        margin-left: 4%;
        width: 110px;
    }

    .Header-navclick {
        display: flex;
        margin-right: 4%;
    }

    .navbarScroll > li > a i{
        display: none;
    }

    .Header-lang {
        margin: 0 12px 0 4px;
    }

    .Header-lang.active .Header-lang-menu {
        color: #666;
    }

    .Header-lang-more {
        width: 60px;
        margin-left: -30px;
    }

    .Header-lang-more a {
        padding: 6px 0;
    }

    .Header-navbar {
        display: none;
        position: absolute;
        width: 100%;
        margin-right: 0;
        height: calc(100vh - 60px);
        top: 60px;
        left: 0;
        padding: 20px 0;
        background: #fff;
    }

    .Header-navbar>ul {
        display: block;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch
    }

    .Header-navbar>ul>li {
        display: block;
        width: 100%;
        opacity: 0;
        transform: translateY(32px);
        transition: all .4s ease;
        margin: 0;
    }

    .Header-navbar.active>ul>li {
        opacity: 1;
        transform: translateY(0);
    }

    .navbarScroll > li > a {
        height: 44px;
        padding: 0 4%;
    }

    .Header-arrow {
        display: block;
        width: 44px;
        height: 44px;
        line-height: 44px;
        transform: rotate(180deg);
        font-size: 18px;
        font-style: normal;
        color: #666;
        text-align: center;
        position: absolute;
        z-index: 9;
        right: 0;
        top: 0;
    }

    .Header-arrow::after {
        content: "\e727";
        font-family: "icon";
    }

    .Header-arrow.active {
        transform: rotate(0);
    }

    .Header-navbar>ul>li:hover .navbarScroll > li > a {
        color: #666;
    }

    .Header-navbar>ul>li.active .navbarScroll > li > a {
        color: var(--ty-primary);
    }

    .Header-drop {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        margin-left: 0;
        overflow: hidden;
        padding: 8px 0;
        border-radius: 0;
        border: none;
        background: #f9f9f9;
        backdrop-filter: inherit;
        box-shadow: none;
    }

    .Header-drop::before {
        display: none;
    }

    .Header-drop-menu>a {
        justify-content: flex-start;
        padding: 6px 4%;
        font-size: 15px;
    }

    .Footer-items {
        padding: 32px 0 36px;
    }

    .Footer-items .contain {
        width: 100%;
    }

    .Footer-navbar {
        width: 100%;
    }

    .Footer-navbar>ul>li {
        width: 100% !important;
    }

    .Footer-navbar ul li > a {
        height: 40px;
        align-items: center;
        padding: 0 4%;
        position: relative;
    }

    .Footer-arrow {
        display: block;
        width: 44px;
        height: 40px;
        line-height: 40px;
        transform: rotate(180deg);
        font-size: 18px;
        font-style: normal;
        color: #fff;
        text-align: center;
        position: absolute;
        z-index: 9;
        right: 0;
        top: 0;
    }

    .Footer-arrow::after {
        content: "\e727";
        font-family: "icon";
    }

    .Footer-arrow.active {
        transform: rotate(0);
    }

    .Footer-drop {
        display: none;
        margin-top: 0;
    }

    .Footer-drop-menu>a {
        padding: 7px 4%;
        width: 100%;
    }

    .Footer-friend {
        display: none;
    }

    .Footer-copyright {
        padding: 20px 0;
    }

    .Footer-copyright .info.text {
        display: block;
    }

    .Footer-copyright .info.text p {
        display: inline;
    }

    .Footer-copyright .info.link {
        width: 100%;
        margin-top: 8px;
    }

    .Footer-copyright .info p:not(:first-child) {
        margin-left: 12px;
    }

    .Header > .contain {
        padding: 0px;
    }

    .Header-lang {
        margin: 0px;
        margin-right: 15px;
    }

    .Header-lang-menu i {
        font-size: 16px;
    }

    .Footer-items {
        padding: 32px 0 20px;
    }

    .Footer-content {
        width: 100%;
        padding: 0px 4%;
        justify-content: flex-start;
        margin-top: 15px;
    }

    .Footer-cont {
        flex-wrap: wrap;
        padding: 0px 4%;
    }

    .Footer-logo {
        width: 100%;
    }

    .Footer-logo a {
        margin-right: 15px;
    }

    .Footer-arrow {
        font-size: 14px;
    }

    .Footer-drop-menu>a {
        padding: 4px 4%;
    }

    .Header-btn {
        height: 60px;
        width: 30px;
        margin-left: 0px;
        margin-right: 15px;
    }

    .Header-btn a span {
        display: none;
    }

    .Header-btn a img {
        margin-right: 0px;
    }

    .Header-btn a {
        height: 30px;
    }

    .Header-dropA-list  > a .img {
        display: none;
    }

    .Header-dropA-list  > a {
        width: 100%;
        margin: 0px;
        padding: 4px 4%;
    }

    .Header-dropA-list  > a .title {
        margin-top: 0px;
        font-size: 12px;
        text-align: left;
        width: 100%;
        padding: 0px;
        line-height: 24px;
    }

    .Header-dropA-list  > a .text {
        display: none;
    }

    .Header-dropA-btn {
        display: none;
    }

    .Header-dropB-list {
        margin-right: 0px;
        padding: 0px;
        margin-bottom: -10px;
    }

    .Header-dropB-list .list {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 10px;
    }

    .Header-dropB-title .img {
        display: none;
    }

    .Header-dropB-title .title {
        width: 100%;
        padding-left: 0px;
        padding: 4px 4%;
        font-size: 12px;
    }

    .Header-dropB-title {
        padding-bottom: 5px;
    }

    .Header-dropB-list .list li {
        padding: 4px 4%;
        font-size: 12px;
    }

    .Header-dropC-list {
        padding: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
    }

    .Header-dropC-list > a {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 0px;
        border: 0px;
        padding: 4px 4%;
    }

    .Header-dropC-list > a .img {
        display: none;
    }

    .Header-dropC-list > a .cont {
        width: 100%;
        padding: 0px;
    }

    .Header-dropC-list > a .cont .text {
        display: none;
    }

    .Header-dropC-list > a .cont .title {
        font-size: 12px;
        line-height: 24px;
    }

    .SideBar-wrapper a.code .icon {
        margin-top: -6px;
    }

    .SideBar-wrapper a .icon {
        width: 42px;
        height: 42px;
        box-shadow: 0 0 8px 2px rgba(108, 89, 189, .1);
    }

    .SideBar-wrapper a .wechat {
        right: 60px;
    }

    .SideBar-wrapper {
        top: auto;
        bottom: 20px;
        right: 12px;
        transform: translateY(0);
    }

    .SideBar-wrapper a.menu {
        display: block;
        font-size: 40px;
    }

    .SideBar-wrapper a.menu .icon {
        background: #fff !important;
    }

    .SideBar-wrapper a.menu img {
        opacity: 1 !important;
        transition: none !important;
    }

    .SideBar-wrapper a.menu img.s {
        opacity: 1 !important;
    }

    .SideBar-wrapper a.menu img.h {
        opacity: 0 !important;
    }

    .SideBar-wrapper a.menu.active img.s {
        opacity: 0 !important;
    }

    .SideBar-wrapper a.menu.active img.h {
        opacity: 1 !important;
    }

    .SideBar-wrapper a.code .head {
        width: 42px;
        border: 2px solid #cfd2ff;
    }

    .SideBar-wrapper a.code .head i {
        width: 50px;
        height: 50px;
        margin: -25px 0 0 -25px;
    }

    .SideBar-wrapper a.code .head::before, .SideBar-wrapper a.code .head::after {
        width: 46px;
        height: 46px;
        margin: -23px 0 0 -23px;
    }

    .SideBar-wrapper a.code .head i::before {
        right: 1px;
        top: 7px;
    }

    .SideBar-wrapper a.code .head i::after {
        top: 20px;
    }

    .SideBar-wrapper a .info {
        display: none !important;
    }
    .Footer-navbar li:last-child{
        display: none;
    }
}

/* ------------------------手机端-------------------------- */
@media all and (max-width: 680px) {
    /* 移动终端 360 适配 */ 
    .Footer-navbar ul li > a {
        font-size: 14px;
    }

    .Footer-content ul {
    }

    .Footer-content li {
        width: 100%;
    }

    .navbarScroll > li > a {
        font-size: 14px;
    }

    .Header-arrow {
        font-size: 14px;
    }

    .Header-drop-menu>a {
        padding: 4px 4%;
        font-size: 12px;
    }

    .Footer-drop-menu>a {
        font-size: 12px;
    }

    .Footer-copyright .info p {
        font-size: 12px;
    }

}
