@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);} .Header-logo{float: left;width: 180px;height: 90px;display: flex;align-items: center;position: relative;z-index: 999;} .Header-logo img{max-width: 100%;} .Header-lang{float: right;position: relative;z-index: 999;} .Header-lang-menu{display: flex;align-items: center;height: 90px;color: #777;transition: color .4s ease;} .Header-lang-menu span{font-size: 16px;font-family: Arial;} .Header-lang-menu i{font-size: 22px;margin-right: 4px;} .Header-lang.active .Header-lang-menu{color: #d6000f;} /* 多个语言 */ .Header-lang-more{display: none;z-index: 9;width: 160px;box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);background: #fff;position: absolute;top: 90px;left: 50%;margin-left: -80px;} .Header-lang-more:before{content: "";display: block;width: 0px;height: 0px;border-style: solid;border-width: 0 8px 8px;border-color: transparent transparent #efefef transparent;position: absolute;top: -8px;left: 50%;margin: 0 0 0 -8px;} .Header-lang-more a{display: block;font-size: 16px;color: #666;text-align: center;padding: 10px 0;transition: all .4s ease;} .Header-lang-more a span{display: inline-block;} .Header-lang-more a:hover {color: #fff;background: #d6000f;} .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-search{float: right;} .Header-search-click{font-weight: 700;height: 90px;color: #444;font-size: 20px;cursor: pointer;z-index: 999;display: flex;align-items: center;justify-content: center;position: relative;margin-left: 28px;} .Header-search-click::after{content: "\e649";font-family: "icon";} .Header-search-click.active::after{content: "\e64e";} .Header-search-item{display: none;position: absolute;width: 100%;height: 90px;line-height: 90px;top: 0;left: 0;z-index: 99;text-align: right;} .Header-search-item .contain{padding-right: 148px;} .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(0, 0, 0, 0.1);font-size: 16px;color: #666;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: 20px;color: #666;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{float: right;margin-right: 255px;visibility: visible;opacity: 1;} body.PC .Header-navbar{display: block !important;} .Header-navbar>ul>li{float: left;margin: 0 18px;position: relative;z-index: 9;} .Header-navbar>ul>li:last-child{margin-right: 0;} .Header-navbar>ul>li:first-child{margin-left: 0;} .Header-menu{position: relative;height: 90px;display: flex;align-items: center;font-size: 14px;color: #444444;transition: color .4s ease;} .Header-menu::before{content: "";width: 100%;left: 0;opacity: 0;height: 2px;position: absolute;bottom: 0;background: #d6000f;transition: all .4s ease;} .Header-navbar>ul>li:hover .Header-menu, .Header-navbar>ul>li.active .Header-menu{color: #d6000f;} .Header-navbar>ul>li.active .Header-menu::before{opacity: 1;} .Header-arrow{display: none;} .Header-drop{display: none;position: fixed;background: #fff;top: 90px;left: 0%;width: 100vw;border-top: 1px solid #f1f1f1;box-shadow: 0px 2px 8px 0px rgba(182, 182, 182, 0.15);} .Header-drop-list {display: flex;justify-content: center;} .Header-drop-list > a{display: flex;width: auto;height: 60px;font-size: 14px;color: #555555;align-items: center;transition: all .4s ease;margin: 0px 22px;} .Header-drop-list > a.active, .Header-drop-list > a:hover{color: #d6000f;} .Header_pull{color: #d6000f;margin-left: 10px;font-size: 12px;font-weight: 900;} .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: #777;display: block;position: relative;transition: all .2s linear;} .Header-navclick span:before,.Header-navclick span:after{content: "";position: absolute;height: 2px;background: #777;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: #fff;position: relative;z-index: 9;} .Footer-items{width: 100%;padding: 60px 0 30px;} .Footer-content{width: 500px;} .Footer-content .logo img{width: 180px;} .Footer-content .phone{color: #d6000f;} .Footer-navbar{width: calc(100% - 500px);user-select: none;} .Footer-navbar>ul{justify-content: space-between;} .Footer-navbar>ul>li{width: auto;position: relative;} .Footer-menu{font-size: 15px;color: #333;font-weight: 700;display: flex;} .Footer-arrow{display: none;} .Footer-drop{width: 100%;margin-top: 27px;} body.PC .Footer-drop{display: block !important;} .Footer-drop a{display: block;font-size: 14px;color: #777;line-height: 1;padding: 7px 0;transition: all .4s ease;} .Footer-drop a:hover{color: #d6000f;} .Footer-code{width: 100%;margin-top: 32px;display: flex;} .Footer-code a{display: flex;align-items: center;justify-content: center;position: relative;margin-right: 30px;} .Footer-code a span{font-size: 20px;color: #d6000f;} .Footer-code a:last-child{margin-right: 0;} .Footer-code-img{display: none;width: 152px;height: 152px;padding: 6px;position: absolute;bottom: 40px;left: 50%;margin-left: -76px;background: #d6000f;border-radius: 4px;} .Footer-code-img::after{content: "";display: block;width: 0px;height: 0px;border: 8px solid transparent;border-top-color: #d6000f;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-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 #f0f0f0;padding: 24px 0;} .Footer-copyright .contain{justify-content: space-between;align-items: center;} .Footer-copyright .info{color: #444;line-height: 18px;font-size: 14px;} .Footer-copyright .info p:not(:first-child){margin-left: 16px;} .Footer-copyright .info a{transition: all .4s ease;} .Footer-copyright .info a:hover{color: #d6000f;} /* 置顶 */ .backTop{display: none;right: 40px;bottom: 60px;width: 46px;height: 46px;line-height: 44px;font-size: 23px;color: #333;text-align: center;border-radius: 100px;position: fixed;cursor: pointer;z-index: 9999;background: rgba(0, 0, 0, 0);border: 2px solid rgba(0, 0, 0, .3);} .backTop::after{content: "\e61e";font-family: "icon";position: absolute;top: 0px;left: 0px;width: 100%;display: flex;justify-content: center;align-items: center;font-size: 16px;height: 100%;} .backTop svg{position: absolute;top: -5%;left: -5%;width: 110%;height: 110%;} .backTop::before{content: "Back To Top";position: absolute;font-size: 12px;color: #797979;line-height: 17px;top: 55px;width: 43px;left: 0px;} .backTop svg.progress-circle path {stroke: #c10435;stroke-width: 4;box-sizing: border-box;-webkit-transition: all 200ms linear;transition: all 200ms linear;} @media all and (max-width:1590px) {.backTop {right: 30px;bottom: 60px;}} @media all and (max-width:680px) {.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:680px) {.popVideo-video iframe{height: 200px;}} /* 中间+共用部分 */ .Container{width: 100%;margin-top: 90px;} .section{width: 100%;position: relative;overflow: hidden;} .contain{width: 1400px;margin: 0 auto;} .Footer-bul{height: 5px;width: 100%;position: relative;} .Footer-bul img{height: 100%;position: absolute;top: 0px;left: 0px;} /* 志鑫 */ .Header-down-FanAn1 {height: calc(100vh - 90px);width: 100vw;position: fixed;margin-left: 0px;left: 0px; background: url(../images/common/Header-down-FanAn1_bg.jpg) center no-repeat; background-size: cover;padding: 0px; background-color: rgba(0, 0, 0, 0);} .Header-down-FanAn1 .contain{height: 100%;} .Header-down-FanAn1-cont {height: 100%;} .Header-down-FanAn1-cont > .cont-l{width: 360px;background-color: rgba(255, 255, 255, .4);height: 100%;} .Header-down-FanAn1-cont > .cont-r{width: calc(100% - 360px);height: 100%;} .Header-down-FanAn1-cont-list {height: 100%;display: none;} .Header-down-FanAn1-cont-list.active{display: flex;} .Header-down-FanAn1-cont-list > .cont-l{width: 400px;border-left: 1px solid #e6e6e6;border-right: 1px solid #e6e6e6;} .Header-down-FanAn1-cont-list > .cont-r{width: calc(100% - 400px);padding: 40px 55px;} .Header-down-FanAn1-cont-muen {padding: 35px 10px 35px 10px;overflow-y: auto;height: 760px;} .Header-down-FanAn1-cont-muen::-webkit-scrollbar {width: 1px;} .Header-down-FanAn1-cont-muen::-webkit-scrollbar-thumb {background: #d6000f;} .Header-down-FanAn1-cont-muen::-webkit-scrollbar-track {background: #f1f1f1;} .Header-down-FanAn1-cont-muen a{position: relative;display: flex;align-items: center;margin-bottom: 15px;} .Header-down-FanAn1-cont-muen a:last-child{margin-bottom: 0px;} .Header-down-FanAn1-cont-muen a i{margin-left: 10px;font-size: 12px;color: #d6000f;} .Header-down-FanAn1-cont-muen a span{border-bottom: 1px solid rgba(0, 0, 0, 0);} .Header-down-FanAn1-cont-muen a.active span{border-bottom: 1px solid#d6000f;} .Header-down-FanAn1-cont-list > .cont-l .muen{overflow-y: auto;height: 760px;} .Header-down-FanAn1-cont-list > .cont-l .muen::-webkit-scrollbar {width: 1px;} .Header-down-FanAn1-cont-list > .cont-l .muen::-webkit-scrollbar-thumb {background: #d6000f;} .Header-down-FanAn1-cont-list > .cont-l .muen::-webkit-scrollbar-track {background: #f1f1f1;} .Header-down-FanAn1-cont-list > .cont-l .muen .title{padding: 0px 55px;} .Header-down-FanAn1-cont-list > .cont-l .muen .list a{width: 100%;padding: 10px 55px;align-items: center;transition: all .4s ease;} .Header-down-FanAn1-cont-list > .cont-l .muen .list a.active{background-color: #e0dfe3;} .Header-down-FanAn1-cont-list > .cont-r .muen > .title{border-bottom: 1px solid #e8e8e8;padding-bottom: 10px;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li a{transition: all .4s ease;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li a:hover{color: #d6000f;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li .title {display: flex;align-items: center;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li .title a{padding-left: 20px;position: relative;display: block;margin-right: 10px;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li .title a.on {transition: all .4s ease;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li .title a.on:hover{color: #d6000f;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li .title a::before{content: "";position: absolute;left: 0px;top: 7px;width: 7px;height: 7px; background-color: #d6000f;border-radius: 100px;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li{margin-bottom: 17px;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li:last-child{margin-bottom: 0px;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li .link a{display: block;transition: all .4s ease;width: 100%;margin-bottom: 5px;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li .link a:hover{color: #d6000f;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li .link a.hide{line-height: 1;color: #d6000f;display: none;align-items: center;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li .link a.hide span{line-height: 1;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li .link a.hide i{font-size: 12px;color: #d6000f;margin-left: 10px;margin-top: 2px;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li .link a.hide.on{display: flex;} .Header-down-FanAn1-cont-list > .cont-r .muen{display: none;} .Header-down-FanAn1-cont-list > .cont-r .muen.active{display: block;overflow-y: auto;height: 650px;} .Header-down-FanAn1-cont-list > .cont-r .muen.active::-webkit-scrollbar {width: 1px;} .Header-down-FanAn1-cont-list > .cont-r .muen.active::-webkit-scrollbar-thumb {background: #d6000f;} .Header-down-FanAn1-cont-list > .cont-r .muen.active::-webkit-scrollbar-track {background: #f1f1f1;} .Header-down-FanAn1 .contain{width: 1600px;} .Header-down-FanAn1-cont-list > .cont-r .muen .list .li a {font-weight: 400 !important;} .onResume{display: none;z-index: 999999;justify-content: center;align-items: center;background-color: rgba(0, 0, 0, .3);position: fixed;top: 0px;left: 0px;width: 100vw;height: 100vh;user-select: none;padding: 0 4%;} .onResume.active{display: flex;} .onResume-contain{background-color: #fff;border-radius: 5px;padding: 45px;width: 530px;position: relative;} .onResume-close{position: absolute;top: 12px;right: 12px;font-size: 18px;transition: all .4s ease;color: #d6000f;} .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{width: 100%;height: 100%;box-shadow: inset 0px 6px 4px 0px rgb(148 148 149 / 8%);border: 1px solid #e6e6f1;padding: 0 16px;border-radius: 5px;} .onResume-wrap{position: relative;width: 100%;height: 45px;border-radius: 5px;overflow: hidden;margin-top:6px;} .onResume-wrap .onResume-hint{width: 66%;height: 100%;border-radius: 5px 0 0 5px;box-shadow: inset 0px 6px 4px 0px rgb(148 148 149 / 8%);border: 1px solid #e6e6f1;padding-left: 16px;} .onResume-wrap .btn{width: 34%;height: 100%;background-color: #d6000f;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: #d6000f;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;} } /* -------------------------PC端--------------------------- */ @media all and (max-width:1700px) { /* 1600 × (900) */ .Header-down-FanAn1{height: 590px;} .Header-down-FanAn1 .contain{width: 1200px;} .Header-down-FanAn1-cont-muen{padding: 35px 10px 35px 35px;height: 570px;} .Header-down-FanAn1-cont-list > .cont-r .muen.active {height: 530px;} .Header-down-FanAn1-cont-list > .cont-l .muen{height: 570px;} } @media all and (max-width:1590px) { /* 1440 × (700) */ .Header-down-FanAn1{height: 590px;} .Header-down-FanAn1 .contain{width: 1200px;} .Header-down-FanAn1-cont > .cont-l{width: 250px;} .Header-down-FanAn1-cont > .cont-r{width: calc(100% - 250px);} .contain{width: 1200px;} .Header-navbar {margin-right: 90px;} /* 志鑫 */ /* .Header-down-FanAn1-cont-list > .cont-r .muen.active{height: 550px;} .Header-down-FanAn1-cont-list > .cont-l .muen{height: 550px;} */ /* .Header-down-FanAn1-cont-muen{height: 550px;} */ .Footer-content{width: 350px;} .Footer-navbar{width: calc(100% - 350px);} .Header-down-FanAn1-cont-list > .cont-l .muen .list a{padding: 10px 30px;} .Header-down-FanAn1-cont-muen{padding: 35px 10px 35px 35px;height: 570px;} .Header-down-FanAn1-cont-list > .cont-l .muen{height: 570px;} .Header-down-FanAn1-cont-list > .cont-r .muen.active {height: 530px;} .Header-down-FanAn1-cont-list > .cont-r{padding: 30px;} .Header-down-FanAn1-cont-list > .cont-l .muen .title{padding: 0 30px;} } @media all and (max-width:1430px) { /* 1360 */ } @media all and (max-width:1350px) { /* 1280 */ .Header-down-FanAn1-cont-list > .cont-l .muen {height: 470px;} .Header-down-FanAn1-cont-muen{height: 470px;} .Header-down-FanAn1-cont-list > .cont-r .muen.active {height: 400px;} } @media all and (max-width:1270px) { /* 1152 × (700) */ .Header-down-FanAn1 .contain{width: 960px;} .contain{width: 960px;} .Header-navbar {margin-right: 20px;} .Header-navbar>ul>li {margin: 0 7px;} } /* ------------------------平板端(开始改变头部底部)-------------------------- */ @media all and (max-width:1100px) { /* 1024 横屏 */ .Footer-content .logo img{width: 110px;} body.onSearch .Header-navbar{visibility: visible;opacity: 1;} .contain{width: 92%;} .Container{margin-top: 60px;} .Header .contain{width: 100%;} .Header::after{content: "";width: 100%;height: 1px;position: absolute;background: rgba(0, 0, 0, 0.1);left: 0;bottom: 0;} .Header-logo, .Header-search-click, .Header-lang-menu{height: 60px;} .Header-logo{margin-left: 4%;width: 110px;} .Header-navclick{display: flex;margin-right: 4%;} .Header-lang{margin: 0 12px 0 4px;} .Header-lang-more{width: 120px;margin-left: -60px;top: 60px;} .Header-lang-more a{padding: 6px 0;} .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: #fff;} .Header-search-item .contain {padding-right: 0;} .Header-search-item input[type="text"]{width: 100%;height: 44px;padding: 0 50px 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: 44px;height: 46px;top: -1px;background: #d6000f;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: #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);} .Header-menu{height: 44px;padding: 0 4%;} .Header-menu::before{display: none;} .Header_pull{color: #d6000f;font-size: 12px;font-weight: 700;} .Header-arrow{display: block;width: 44px;height: 44px;line-height: 44px;font-size: 18px;font-style: normal;color: #666;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>ul>li:hover .Header-menu{color: #666;} .Header-navbar>ul>li.active .Header-menu{color: #d6000f;} .Header-drop {position: relative;top: 0;left: 0;width: 100%;margin-left: 0;overflow: hidden;padding: 8px 0;} .Header-drop-list > a {height: 34px;justify-content: flex-start;padding: 0 4%;font-size: 15px;width: 100%;margin: 0px;} .Footer-items{padding: 32px 0 36px;} .Footer-items .contain {width: 100%;} .Footer-navbar{width: 100%;} .Footer-navbar>ul>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: #fff;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 {justify-content: center;margin-top: 28px;padding: 0 4%;} .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-search-click{margin-right: 30px;} .Header_pull{display: none;} .Footer-content{width: 100%;padding: 0px 4%;margin-bottom: 15px;} .Footer-arrow{color: #000;} .Header-lang{margin: 0px;} /* 志鑫 */ .Header-down-FanAn1{height: auto;padding: 0px;} .Header-down-FanMb .list{width: 100%;height: 40px;display: flex;align-items: center;position: relative;padding: 0px 20px;border-bottom: 1px solid #e0dfe3;} .Header-down-FanMb .list:last-child{border-bottom: 1px solid rgba(0, 0, 0, 0);} .Header-down-FanMb .list i{position: absolute;right: 0px;top: 0%;width: 44px;height: 40px;display: flex;justify-content: center;align-items: center;font-size: 12px;color: #d6000f;transition: all .4s ease;} .Header-down-FanMb .list.active i{transform: rotate(180deg);} .Header-down-FanMb .hide {display: none;border-bottom: 1px solid #e0dfe3;} .Header-down-FanMb .hide:last-child{border-bottom: 1px solid rgba(0, 0, 0, 0);} .Header-down-FanMb .hide a{display: flex;height: 30px;align-items: center;width: 100%;padding: 0px 40px;} .Header-drop{box-shadow: none;} } @media all and (max-width:1000px) { /* 720 竖屏 */ .backTop::before{display: none;} } /* ------------------------手机端-------------------------- */ @media all and (max-width:680px) { /* 移动终端 360 适配 */ }