@charset "utf-8";
/* ====================公共样式========================= */
/* 头部 */
.Header{width: 100%;position: fixed;z-index: 99999;top: 0;left: 0;background: transparent;user-select: none;box-shadow: none;transition: all .4s ease;}
.Header::after{content: "";width: 100%;height: 1px;position: absolute;background: rgba(255, 255, 255, 0.2);left: 0;bottom: 0;transition: all .4s ease;}
.Header>.contain{width: 100%;padding: 0 60px;}
.Header-logo{float: left;width: 184px;height: 88px;display: flex;align-items: center;position: relative;z-index: 999;}
.Header-logo img{max-width: 100%;position: absolute;transition: opacity .4s ease;}
.Header-rela{position: relative;z-index: 999;float: right;}
.Header-rela a{font-size: 16px;color: #fff;height: 88px;display: flex;align-items: center;transition: all .4s ease;}
.Header-rela a::before{content: "\e627";font-family: "icon";font-size: 18px;margin-right: 10px;}
.Header-rela a:hover{color: #bfbfbf;}
.Header-lang{float: right;position: relative;z-index: 999;margin: 0 30px 0 40px;height: 88px;display: flex;align-items: center;}
.Header-lang a{width: 54px;height: 54px;border-radius: 50%;background: #fff;display: flex;align-items: center;justify-content: center;font-size: 16px;color: #735b3f;transition: all .4s ease;}
.Header-lang a:hover{background: #735b3f;color: #fff;}
.Header-search{float: right;display: flex;align-items: center;height: 88px;}
.Header-search-click{width: 54px;height: 54px;font-size: 18px;color: #735b3f;border-radius: 50%;background: #fff;cursor: pointer;z-index: 999;display: flex;align-items: center;justify-content: center;position: relative;transition: background .4s ease,color .4s ease;}
.Header-search-click::after{content: "\e649";font-family: "icon";}
.Header-search-click.active::after{content: "\e64e";}
.Header-search-click:hover{background: #735b3f;color: #fff;}
.Header-search-item{display: none;position: absolute;width: 100%;height: 88px;line-height: 84px;top: 0;left: 0;z-index: 99;text-align: right;}
.Header-search-item .contain{width: 100%;padding-right: 390px;}
.Header-search-item.active{display: block;}
.Header-search-item input, .Header-search-item button{display: inline-block;vertical-align: middle;}
.Header-search-item input[type="text"]{width: 0px;height: 40px;border-bottom: 1px solid rgba(255, 255, 255, 0.2);font-size: 16px;color: #fff;background: transparent;}
.Header-search-item.active input[type="text"]{animation: HeaderSearch 0.8s ease both;}
@keyframes HeaderSearch{0%{width: 0;}100%{width: 520px;}}
.Header-search-item button{width: 50px;height: 40px;font-size: 18px;color: #fff;background: transparent;cursor: pointer;margin-right: 0;}
.Header-search-item button::after{content: "\e649";font-family: "icon";}
body.onSearch .Header-navbar{visibility: hidden;opacity: 0;}
.Header-navbar{position: absolute;width: 100%;top: 0;left: 0;visibility: visible;opacity: 1;justify-content: center;}
body.PC .Header-navbar{display: flex !important;}
.Header-navbar ul{display: flex;flex-wrap: wrap;}
.Header-navbar li{width: auto;}
.Header-menu{position: relative;height: 88px;padding: 0 34px;display: flex;align-items: center;font-size: 16px;color: #fff;transition: color .4s ease;}
.Header-navbar li:hover .Header-menu,.Header-navbar li.active .Header-menu{color: #bfbfbf;}
.Header-arrow{display: none;}
.Header-drop{display: none;position: absolute;background: rgba(31,26,23,.7);top: 88px;left: 0;width: 100%;}
.Header-drop-list{width: 100%;padding: 50px 60px;display: flex;align-items: flex-start;justify-content: center;}
.Header-drop-link{width: 320px;margin-left: 100px;display: block;}
.Header-drop-link:first-child{margin-left: 0;}
.Header-drop-link .image{width: 100%;overflow: hidden;position: relative;}
.Header-drop-link .image img{width: 100%;height: 200px;transition: all .6s ease;}
.Header-drop-link .image::before{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;z-index: 4;transform: translate3d(0,0,0,10px);background: rgba(255, 255, 255, 0.5);transition: all .4s ease;}
.Header-drop-link .text{color: #fff;font-size: 14px;margin-top: 18px;}
.Header-drop-link:hover .image img{transform: scale(1.1);}
.Header-drop-link:hover .image::before{opacity: 0;}
.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: #fff;display: block;position: relative;transition: all .2s linear;}
.Header-navclick span:before,.Header-navclick span:after{content: "";position: absolute;height: 2px;background: #fff;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);}
}
/* 透明 */
.bodyScroll .Header, .bodyMouse .Header, .bodySearch .Header, .noLucency .Header{background: rgba(31,26,23,.8);}
.bodySearch .Header-navbar{visibility: hidden;opacity: 0;}
/* 不透明 */
.noLucency .Container{margin-top: 88px;}
/* 底部 */
.Footer{width: 100%;background: #f7f7f7;position: relative;z-index: 9;}
.Footer-items{width: 100%;padding: 90px 0;}
.Footer-mix{width: 388px;padding-right: 28px;}
.Footer-info{width: 100%;}
.Footer-info .logo img{max-width: 184px;}
.Footer-info .text{width: 100%;font-size: 14px;color: #1f1a17;line-height: 32px;margin-top: 20px;}
.Footer-info .text a{color: #735b3f;position: relative;font-weight: 700;}
.Footer-navbar{width: calc(100% - 388px);padding-left: 110px;user-select: none;border-left: 1px solid #d7d6d6;}
.Footer-navbar ul{justify-content: space-between;}
.Footer-navbar li{width: auto;position: relative;}
.Footer-menu{font-size: 16px;color: #1f1a17;display: flex;position: relative;line-height: 1;font-weight: 500;}
.Footer-menu a{position: relative;display: block;height: 24px;}
.Footer-arrow{display: none;}
.Footer-drop{width: 100%;margin-top: 38px;}
body.PC .Footer-drop{display: block !important;}
.Footer-drop p{width: 100%;display: flex;}
.Footer-drop p:not(:first-child){margin-top: 16px;}
.Footer-drop a{font-size: 14px;color: #676a6f;line-height: 1;padding-bottom: 10px;transition: all .4s ease;position: relative;}
.Footer-drop a:hover{color: #1f1a17;}
.Footer-menu a::after, .Footer-drop a::after{content: "";position: absolute;width: 0;opacity: 0;height: 1px;background: #1f1a17;left: 0;right: 0;margin: 0 auto;bottom: 0;transition: width .4s ease,opacity .1s ease .4s;}
.Footer-menu a:hover:after, .Footer-drop a:hover:after{width: 100%;opacity: 1;transition: width .4s ease .1s,opacity .1s ease;}
.Footer-code{width: 100%;margin-top: 30px;display: flex;}
.Footer-code a{width: 40px;height: 40px;border-radius: 50%;color: #1f1a17;border: 1px solid #1f1a17;display: flex;align-items: center;justify-content: center;position: relative;margin-right: 20px;transition: all .4s ease;}
.Footer-code a span{font-size: 20px;}
.Footer-code a span.icon-xiaohongshu{position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: url('../images/common/Ficon.png') no-repeat center/36px auto;}
.Footer-code a span.icon-xiaohongshu::after{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: url('../images/common/FiconH.png') no-repeat center/36px auto;transition: all .4s ease;opacity: 0;}
.Footer-code a:last-child{margin-right: 0;}
.Footer-code a:hover{color: #735b3f;border-color: #735b3f;}
.Footer-code a:hover span.icon-xiaohongshu::after{opacity: 1;}
.Footer-code-img{display: none;width: 132px;height: 132px;padding: 4px;position: absolute;bottom: 50px;left: 50%;margin-left: -66px;background: #d7d6d6;}
.Footer-code-img::after{content: "";display: block;width: 0px;height: 0px;border: 8px solid transparent;border-top-color: #d7d6d6;position: absolute;bottom: -16px;left: 50%;margin-left: -8px;}
.Footer-code-img img{width: 100%;height: 100%;object-fit: cover;}
.Footer-code a:hover .Footer-code-img{display: block;animation: FooterCode .6s ease-in-out both;}
@keyframes FooterCode{0%{transform: translateY(-14px);}100%{transform: translateY(0);}}
.Footer-copyright{width: 100%;background: #1f1a17;padding: 38px 0;color: #fff;}
.Footer-copyright .contain{justify-content: space-between;align-items: center;}
.Footer-copyright .info{line-height: 18px;font-size: 14px;}
.Footer-copyright .info p{position: relative;}
.Footer-copyright .info p:not(:first-child){margin-left: 16px;}
.Footer-copyright .info a{transition: all .4s ease;position: relative;}
.Footer-copyright .info.link p:not(:first-child){margin-left: 23px;}
.Footer-copyright .info.link p:not(:first-child)::before{content: "";position: absolute;width: 1px;left: -11px;top: 50%;height: 14px;background: #fff;margin-top: -8px;}
.Footer-copyright .info a:hover{color: #bfbfbf;}
/* 置顶 */
.backTop{display: none;right: 40px;bottom: 60px;width: 44px;height: 44px;line-height: 44px;font-size: 23px;color: #fff;text-align: center;border-radius: 4px;position: fixed;cursor: pointer;z-index: 9999;background: #735b3f;}
.backTop::after{content: "\e684";font-family: "icon";}
@media all and (max-width:1590px) {.backTop {right: 30px;bottom: 40px;}}
@media all and (max-width:640px) {.backTop {right: 8px;bottom: 20px;width: 40px;height: 40px;background-size: 20px auto;}}
/* 视频弹窗 */
.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{width: 1000px;position: relative;opacity: 0;}
.popVideo-video{width: 100%;}
.popVideo-video video{width: 100%;}
.popVideo-video iframe{width: 100%;height: 500px;}
.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{height: 400px;}}
@media all and (max-width:640px) {.popVideo-video iframe{height: 200px;}}
/* 中间+共用部分 */
.Container{width: 100%;}
.section{width: 100%;position: relative;overflow: hidden;}
.contain{width: 1600px;margin: 0 auto;}
.contain-1200{width: 1280px;margin: 0 auto;}
/* 侧边栏 */
.site{position: fixed;right: 0;top: 50%;transform: translateY(-50%);background: rgba(0, 0, 0, .8);z-index: 99999;}
.site-QRcode{text-align: center;padding: 0 15px;}
.site-QRcode img{width: 110px;}
.site-QRcode .text{margin-top: 8px;}
.site-text{margin-top: 15px;border-top: 1px solid #5c5c5c;padding: 20px 8px 0;}
.site-phone{font-family: "Montserrat";}
.site-title::before{content: "";width: 18px;height: 19px;display: inline-block;margin-right: 10px;background: url('../images/common/side-icon.png') no-repeat center/100% auto;}
.site-zixun{transition: all .4s ease; padding: 6px 16px;background: #735b3f;border-radius: 30px;}
.site-zixun:hover{box-shadow: 0 0 10px #735b3f;}
/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900) */
    .contain{width: 1400px;}
    .Header>.contain {padding: 0 50px;}
    .Header-drop-list {padding: 48px 50px;}
    .Header-menu {padding: 0 26px;}
    .Header-lang {margin: 0 20px 0 30px;}
    .Header-drop-link {margin-left: 68px;width: 280px;}
    .Header-drop-link .image img{height: 175px;}
    .Header-search-item .contain {padding-right: 360px;}
    .Footer-items {padding: 80px 0;}
}
@media all and (max-width:1590px) {
    /* 1440 × (700)  */
    .contain{width: 1200px;}
    .contain-1200{width: 960px;}
    .Header-search-click, .Header-lang a{width: 48px;height: 48px;}
    .Header-lang {margin: 0 16px 0 24px;}
    .Header-menu {padding: 0 20px;}
    .Header-search-click, .Header-lang a {width: 44px;height: 44px;}
    .Header>.contain {padding: 0 40px;}
    .Header-drop-list {padding: 36px 40px;}
    .Header-drop-link {margin-left: 40px;width: 260px;}
    .Header-drop-link .image img{height: 162px;}
    .Header-search-item .contain {padding-right: 300px;}
    .Footer-items {padding: 70px 0;}
    .Footer-mix {width: 350px;}
    .Footer-navbar {width: calc(100% - 350px);padding-left: 70px;}
    .Footer-info .text {line-height: 28px;margin-top: 16px;}
    .Footer-code a {margin-right: 16px;}
    .Footer-code {margin-top: 24px;}
    .Footer-menu a {height: 22px;}
    .Footer-drop {margin-top: 28px;}
    .Footer-drop a {padding-bottom: 6px;}
    .Footer-drop p:not(:first-child) {margin-top: 10px;}
    .Footer-copyright {padding: 32px 0;}
    .site-QRcode img{width: 90px;}
    .site-title{font-size: 13px;}
    .site-title::before{width: 15px;height: 16px;margin-right: 5px;}
    .site-QRcode .text{font-size: 13px;}
    .site-zixun{font-size: 12px;padding: 4px 12px;}
    .site-phone{font-size: 16px;margin-top: 3px;}
}
@media all and (max-width:1430px) {
    /* 1360 */
    .Header-menu {padding: 0 18px;}
}
@media all and (max-width:1350px) {
    /* 1280 */
    .Header-menu {padding: 0 14px;}
    .Header-drop-link {margin-left: 30px;width: 220px;}
    .Header-drop-link .image img{height: 138px;}
}
@media all and (max-width:1270px) {
    /* 1152 × (700) */
    .contain{width: 960px;}
    .contain-1200{width: 850px;}
    .Header>.contain {padding: 0 30px;}
    .Header-logo {width: 160px;}
    .Header-menu {padding: 0 10px;}
    .Header-search-item .contain {padding-right: 290px;}
    @keyframes HeaderSearch{0%{width: 0;}100%{width: 420px;}}
    .Footer-mix {width: 250px;}
    .Footer-navbar {width: calc(100% - 250px);padding-left: 30px;}
    .Footer-items {padding: 60px 0;}
    .Footer-info .text {line-height: 24px;}
}
@media all and (max-width:1140px) {
    /* 1024 */
    .Header-search-click, .Header-lang a {width: 36px;height: 36px;}
    .Header-lang {margin: 0 12px 0 18px;}
    .Header-menu {padding: 0 6px;}
    .site{display: none;}
    .Footer-code-img{width: 100px;height: 100px;margin-left: -50px;}
}
/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
    /* 平板设备 720 适配 */
    .Header{background: rgba(31,26,23,1) !important;}
    .bodySearch .Header-navbar{visibility: visible;opacity: 1;}
    .noLucency .Container{margin-top: 60px;}
    .contain,.contain-1200{width: 92%;}
    .Container{margin-top: 60px;}
    .Header>.contain {padding: 0;}
    .Header-search-click, .Header-lang a, .Header-rela a{width: 34px;height: 34px;}
    .Header-rela{align-items: center;height: 60px;display: flex;}
    .Header-rela a span{display: none;}
    .Header-rela a{border-radius: 50%;background: #fff;color: #735b3f !important;justify-content: center;font-size: 22px;}
    .Header-rela a::before{margin: 0;font-size: inherit;}
    .Header-logo{margin-left: 4%;width: 110px;height: 60px;}
    .Header-navclick{display: flex;margin-right: 4%;}
    .Header-lang{margin: 0 10px;height: 60px;}
    .Header-search{height: 60px;margin-right: 10px;}
    .Header-search-click.active::after {font-size: 15px;line-height: 1;}
    .Header-search-item {display: none;width: 100%;line-height: normal;height: 45px;top: 60px;border-bottom: 1px solid rgba(0, 0, 0, 0.1);padding: 0;background: rgba(31,26,23,1);}
    .Header-search-item .contain {padding-right: 0;}
    .Header-search-item input[type="text"]{width: 100%;height: 44px;padding: 0 58px 0 4%;border-bottom: none;}
    .Header-search-item.active input[type="text"] {animation: none;}
    .Header-search-item button{position: absolute;right: 0;top: 0;width: 46px;height: 46px;top: -1px;background: #735b3f;z-index: 2;color: #fff;}
    .Header-navbar{display: none;position: absolute;width: 100%;margin-right: 0;height: calc(100vh - 60px);top: 60px;left: 0;padding: 20px 0;background: rgba(31,26,23,1);}
    .Header-navbar ul{display: block;width: 100%;height: 100%;overflow-x: hidden;overflow-y: auto;-webkit-overflow-scrolling: touch}
    .Header-navbar li{display: block;width: 100%;opacity: 0;transform: translateY(32px);transition: all .4s ease;margin: 0;}
    .Header-navbar.active li{opacity: 1;transform: translateY(0);}
    .Header-menu{height: 44px;padding: 0 4%;}
    .Header-arrow{display: block;width: 44px;height: 44px;line-height: 44px;font-size: 18px;font-style: normal;color: #fff;text-align: center;position: absolute;z-index: 9;right: 0;top: 0;}
    .Header-arrow::after{content: "\e61f";font-family: "icon";}
    .Header-arrow.active::after{content: "\e61e";}
    .Header-navbar li:hover .Header-menu{color: #fff !important;}
    .Header-navbar li.active .Header-menu{color: #fff !important;}
    .Header-drop {position: relative;top: 0;left: 0;width: 100%;margin-left: 0;overflow: hidden;background: #000;}
    .Header-drop-list {padding: 12px 4%;}
    .Header-drop-link {margin-left: 12px;width: auto;float: 1;}
    .Header-drop-link .image img{height: auto;}
    .Header-drop-link .text {margin-top: 8px;font-size: 12px;}
    .Header-drop-link .image::before{display: none;}
    .Footer-items{padding: 32px 0 36px;}
    .Footer-items .contain {width: 100%;}
    .Footer-mix{width: 100%;padding: 0 4%;}
    .Footer-navbar{width: 100%;padding-left: 0;margin-top: 20px;}
    .Footer-info .logo img{width: 150px;}
    .Footer-navbar li{width: 100% !important;}
    .Footer-menu {height: 40px;align-items: center;padding: 0 4%;position: relative;}
    .Footer-arrow{display: block;width: 44px;height: 40px;line-height: 40px;font-size: 18px;font-style: normal;color: #1f1a17;text-align: center;position: absolute;z-index: 9;right: 0;top: 0;}
    .Footer-arrow::after{content: "\e61f";font-family: "icon";}
    .Footer-arrow.active::after{content: "\e61e";}
    .Footer-drop a{padding: 7px 4%;}
    .Footer-drop{display: none;margin-top: 0;}
    .Footer-code {margin-top: 15px;}
    .Footer-code a{width: 34px;height: 34px;}
    .Footer-code a:first-child{order: 1;margin-right: 16px;}
    .Footer-code a:nth-child(2){order: 2;}
    .Footer-code a:nth-child(3){order: 3;}
    .Footer-code a span{font-size: 14px;}
    .Footer-code a span.icon-xiaohongshu{background-size: 25px auto;}
    .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;}
    .site{display: none;}
}
@media all and (max-width:640px) {
    /* 移动终端以上 360 适配 */
}