/* 公共样式 */

@font-face {
    font-family: "gilroy-bold";
    src: url('../fonts/gilroy-bold-4.otf');
    font-display: swap;
}

#vlove {
    position: absolute;
    top: 24px;
    left: 43%;
}

.jumpme {
    animation: bounceIn 1.2s ease-in-out
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "gilroy-regular";
    src: url('../fonts/gilroy-regular-3.otf');
    font-display: swap;
}

@font-face {
    font-family: "Gilroy-Medium";
    src: url('../fonts/Gilroy-Medium-2.otf');
    font-display: swap;
}


/* @font-face {
    font-family: 'SansCN-Regular';
    src: url('../fonts/SourceHanSansCN-Regular.otf');
    font-display: swap;
}

@font-face {
    font-family: 'sansCN-Bold';
    src: url('../fonts/SourceHanSansCN-Bold.otf');
    font-display: swap;
} */

 ::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 0px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

 ::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #535353;
}

 ::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #EDEDED;
}

.wp {
    padding: 0;
    width: 96%;
    margin: 0 auto;
    max-width: 1530px;
    min-width: 1170px;
}

.wp .titledemo {
    animation-name: fadeInUp;
    visibility: visible;
}

.wp .titledemo .title {
    font-size: 0.5rem;
    color: #e1e1e1;
    line-height: 0.7rem;
    font-family: 'gilroy-regular';
    text-transform: uppercase;
}

.wp .titledemo .desc {
    font-size: 0.48rem;
    font-weight: bold;
    color: #111933;
}

.center {
    text-align: center;
}


/* * {
    transition: all 0.6s;
} */


/* 分页样式 */

.pagination {
    display: flex;
    justify-content: center;
    padding: 0 0 50px 0;
}

.pagination li {
    width: 30px;
    height: 30px;
    margin: 10px 10px;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 30px;
}

.pagination li a {
    width: 100%;
    height: 100%;
    display: block;
}

.pagination .disabled {
    opacity: 0.5;
}

.pagination .active {
    background: #e97a4c;
    color: #fff;
}

.crumb {
    padding: 50px 0;
}

.crumb .wp .wrap {
    display: flex;
    justify-content: space-between;
}

.crumb .wp .wrap .tbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.crumb .wp .wrap .tbox img {}

.crumb .wp .wrap .tbox i {
    margin: 0 15px;
    font-size: 18px;
    color: rgba(33, 33, 33, 0.8);
}

.crumb .wp .wrap .tbox a {
    font-size: 18px;
    color: rgba(33, 33, 33, 0.8);
    font-family: 'SansCN-Regular';
}

.crumb .wp .wrap .tbox a:last-child {
    color: #e97a4c;
}

.crumb .wp .wrap .back {
    width: 178px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    background: #111933;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.crumb .wp .wrap .back:hover {
    background-color: #e97d54;
}


/* 汉堡菜单icon */

.hamburger .line {
    width: 0.56rem;
    height: 3px;
    background-color: #e50012;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-11 {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-11.is-active {
    animation: smallbig 0.6s forwards;
}

@keyframes smallbig {
    0%,
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }
}

#hamburger-11.is-active .line:nth-child(1),
#hamburger-11.is-active .line:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

#hamburger-11.is-active .line:nth-child(1) {
    -webkit-transform: translateY(12px) rotate(45deg);
    -ms-transform: translateY(12px) rotate(45deg);
    -o-transform: translateY(12px) rotate(45deg);
    transform: translateY(12px) rotate(45deg);
}

#hamburger-11.is-active .line:nth-child(2) {
    -webkit-transform: translateY(1px) rotate(-45deg);
    -ms-transform: translateY(1px) rotate(-45deg);
    -o-transform: translateY(1px) rotate(-45deg);
    transform: translateY(1px) rotate(-45deg);
}

#hamburger-11.is-active .line:nth-child(3) {
    width: 0;
}


/* 导航栏 */

header {
    height: 1rem;
    background: #111933;
}

header .logo {
    /* padding: 0.22rem 0 0 0.1rem; */
}

header .logo img {
    max-width: 100%;
}

header .wp .menuicon {
    margin: 0 0.15rem 0 0;
    position: relative;
}

header .wp .menuicon .mopen {
    width: 0.68rem;
    height: 0.6rem;
}

header .wp .menuicon .mclose {
    display: none;
    width: 0.68rem;
    height: 0.6rem;
}

header .wp {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: calc(100% - 200px);
    max-width: inherit;
}

header .wp .menuicon {
    display: none;
}

header .wp nav {
    position: relative;
}

header .wp nav .mainul {
    display: flex;
}

header .wp nav .mainul .item {
    position: relative;
    text-align: center;
    height: 1rem;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

header .wp nav .mainul .item .itemname {
    font-size: 0.18rem;
    color: #fff;
    text-align: center;
    height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'SansCN-Regular';
}

header .wp nav .mainul .item .current {
    color: #e97a4c;
}


/* header .wp nav .mainul .item .itemname:hover {
    font-weight: bold;
    color: #fff;
} */

header .wp nav .mainul .item .secnav {
    display: none;
    position: absolute;
    z-index: 999;
    background: #fff;
    text-align: center;
    left: 0;
    width: 100%;
}

header .wp nav .mainul .item:hover .secnav {
    display: block;
    animation: fadeInDown 0.4s;
    top: 100%;
}

header .wp nav .mainul .item .secnav .subitem {
    padding: 0.1rem 0;
    background: #f7f7f7;
    position: relative;
}

header .wp nav .mainul .item .secnav .subitem a {
    color: #000;
    font-size: 0.16rem;
    font-family: 'SansCN-Regular';
}

header .wp nav .mainul .item .secnav .subitem:hover {
    background: #111933;
}

header .wp nav .mainul .item .secnav .subitem:hover a {
    color: #fff;
}

header .wp nav .mainul .item .secnav .thrnav {
    display: none;
    width: 160px;
    position: absolute;
    right: -160px;
    top: 0;
    background-color: #fff;
}

header .wp nav .mainul .item .secnav .thrnav .thritem {
    padding: 0.1rem 0;
    background: #f7f7f7;
    position: relative;
}

header .wp nav .mainul .item .secnav .thrnav .thritem a {
    color: #000;
    font-size: 0.16rem;
}

header .wp nav .mainul .item .secnav .thrnav .thritem:hover {
    background: #111933;
}

header .wp nav .mainul .item .secnav .thrnav .thritem:hover a {
    color: #fff;
}

header .wp nav .mainul .item .secnav .subitem:hover .thrnav {
    display: block;
    animation: fadeInDown 0.4s;
}

header .wp nav .mainul .searbtn img {
    cursor: pointer;
}

header .wp nav .mainul .navigate img {
    cursor: pointer;
}

header .wp nav .searchbox {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -200vh;
    z-index: 99;
    background: #111933;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    right: 0;
    padding: 15% 0 0 0;
    opacity: 0;
}

header .wp nav .searchbox .navlogo {
    position: absolute;
    left: 5%;
    top: 5%;
    width: max-content;
}

header .wp nav .navwindow {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -200vh;
    z-index: 99;
    background: #111933;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    right: 0;
    padding: 10% 0 0 0;
    opacity: 0;
}

header .wp nav .navwindow #navwinclose {
    position: absolute;
    top: 5%;
    right: 5%;
    cursor: pointer;
}

header .wp nav .navwindow .navlogo {
    position: absolute;
    width: max-content;
    left: 5%;
    top: 5%;
}

header .wp nav .navwindow .navilist {
    display: flex;
    width: 80%;
    margin: 0 auto;
    justify-content: space-between;
}

header .wp nav .navwindow .navilist .item {
    margin: 0 5% 0 0;
    width: max-content;
}

header .wp nav .navwindow .navilist .item a {
    display: block;
    font-size: 16px;
    color: #fff;
    font-family: 'SansCN-Regular';
    margin: 0 0 8px 0;
    transform: translateY(-50px);
    transition: all 1.6s;
}

header .wp nav .navwindow .navilist .item .title {
    font-size: 22px;
    color: rgb(232 118 74);
}

header .wp nav .navwindow .navilist .item .items {
    overflow: hidden;
    margin: 0 0 20px 0;
}

header .wp nav .searchbox #keywordput {
    width: 65%;
    border: 0;
    height: 60px;
    margin: 0px 1% 0 0;
    padding: 0 0 0 0.5%;
    background: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 24px;
    font-family: 'SansCN-Regular';
}

header .wp nav .searchbox #pbtn {
    width: 100px;
    height: 60px;
    font-size: 20px;
    background: none;
    border: 0;
    outline: 0;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #efefef;
    font-family: 'SansCN-Regular';
}

header .wp nav .searchbox .closeicon {
    position: absolute;
    right: 5%;
    top: 5%;
    cursor: pointer;
}


/* Underline From Center */

.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}

.hvr-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: #2098d1;
    height: 4px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
    left: 0;
    right: 0;
}


/* Push */

@-webkit-keyframes hvr-push {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes hvr-push {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.hvr-push {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}

.hvr-push:hover,
.hvr-push:focus,
.hvr-push:active {
    -webkit-animation-name: hvr-push;
    animation-name: hvr-push;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}


/* Box Shadow Outset */

.hvr-box-shadow-outset {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

.hvr-box-shadow-outset:hover,
.hvr-box-shadow-outset:focus,
.hvr-box-shadow-outset:active {
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
    transition: 0.2s;
}


/* PC-banner */

.banner .banpic {
    max-width: 100%;
}


/* banner */

.banner {
    line-height: 0.6
}

.banner .swiper-pagination-bullet {
    background: #fff;
}

.banner .swiper-pagination-bullet-active {
    background: #fff;
}

.indexpro {
    padding: 90px 0 100px 0;
    background: #eeeeee;
    /* margin: 20px 0; */
}

.indexpro .wp .titledemo {
    width: max-content;
    margin: 0 auto 40px;
}

.indexpro .wp .titledemo .title {
    text-align: center;
}

.indexpro .wp .titledemo .desc {
    text-align: center;
}

.indexpro .wp .wrap {
    display: flex;
    justify-content: flex-start;
}

.indexpro .wp .wrap .catelist {
    width: 13.72%;
    max-width: 210px;
    display: flex;
    flex-direction: column;
    height: 600px;
    justify-content: flex-start;
}

.indexpro .wp .wrap .catelist .item {
    flex-grow: 1;
    background: #111933;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 2px solid rgba(132, 77, 64, 0.2);
}

.indexpro .wp .wrap .catelist .item .name {
    padding: 0 0 0 40px;
    font-size: 20px;
    color: #e97a4c;
    font-weight: bold;
}

.indexpro .wp .wrap .catelist .item .enname {
    padding: 0 0 0 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'gilroy-regular';
}

.indexpro .wp .wrap .swiper {
    width: 86.27%;
    max-width: 1320px;
}

.indexpro .wp .wrap .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.indexpro .wp .wrap .catelist .active {
    background: #e97a4c;
}

.indexpro .wp .wrap .catelist .active .name {
    color: #fff;
}

.indexpro .wp .wrap .catelist .active .enname {
    color: rgba(255, 255, 255, 0.8);
}

.indexcases {
    background: #f7f9fc;
}

.indexcases .wp {
    width: 100%;
    padding: 0;
    max-width: inherit;
}

.indexcases .wp .titledemo {
    padding: 70px 0 30px 0;
}

.indexcases .wp .titledemo .titlepic {
    display: block;
    margin: 0 auto;
}

.indexcases .wp .titledemo .desc {
    text-align: center;
}

.indexcases .wp .swiper .swiper-wrapper .swiper-slide {
    overflow: hidden;
}

.indexcases .wp .swiper .swiper-wrapper .swiper-slide img {
    animation: scaleit 10s infinite ease-in-out alternate;
}

.indexcases .wp .swiper-button-prev {
    left: 50px;
    background-image: none;
}

.indexcases .wp .swiper-button-next {
    right: 50px;
    background-image: none;
}

.indexcases .wp .swiper-button-prev::after {
    color: #fff;
}

.indexcases .wp .swiper-button-next::after {
    color: #fff;
}

@keyframes scaleit {
    form {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.indexabout {
    padding: 100px 0 90px 0;
    background: #f2f2f4;
    margin: 20px 0;
}

.indexabout .wp .wrap {
    display: flex;
    justify-content: space-between;
}

.indexabout .wp .wrap .tbox {
    width: 32.68%;
    max-width: 500px;
    min-width: 400px;
}

.indexabout .wp .wrap .tbox .titledemo {
    text-align: left;
    padding: 60px 0 70px 0;
}

.indexabout .wp .wrap .tbox .name {
    font-size: 36px;
    color: #111933;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.indexabout .wp .wrap .tbox .name i {
    color: #e97a4c;
}

.indexabout .wp .wrap .tbox .cont {
    font-size: 16px;
    color: #212121;
    line-height: 32px;
    margin: 0 0 60px 0;
}

.wp .more {
    width: 180px;
    height: 50px;
    background: #111933;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.wp .more:hover {
    background: #e97d54;
}

.indexabout .wp .wrap .picbox {
    width: 63.4%;
    max-width: 970px;
    overflow: hidden;
}

.indexabout .wp .wrap .picbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.indexabout .wp .wrap .picbox:hover img {
    transition: all .6s;
    transform: scale(1.05);
}

.indexvideo .wp {
    width: calc(100% - 50px);
    max-width: inherit;
    padding: 0 25px;
}

.indexvideo .wp .vbox .bbg {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSJ0cmFuc3BhcmVudCI+PC9yZWN0Pgo8cGF0aCBkPSJNMCA1TDUgMFpNNiA0TDQgNlpNLTEgMUwxIC0xWiIgc3Ryb2tlPSIjMjkyNzI3IiBzdHJva2Utd2lkdGg9IjMuMjUiIG9wYWNpdHk9Ii4yNSI+PC9wYXRoPgo8L3N2Zz4=);
    opacity: 0.9;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: none;
}

.indexvideo .wp .vbox {
    /* background: url(../video/poster.jpg) no-repeat center;
    min-height: 500px; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    position: relative;
    min-height: 520px;
    overflow: hidden;
    height: 37.45vw;
}

.indexvideo .wp .vbox .poster {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
    min-height: 520px;
    height: 37.45vw;
}

.indexvideo .wp .vbox .vlogo {
    padding: 130px 0 120px 0;
    display: block;
}

.indexvideo .wp .vbox .vplay {
    margin: 0 0 30px 0;
    cursor: pointer;
    filter: grayscale(1) brightness(2);
    transition: all 1.2s;
}

.indexvideo .wp .vbox .vplay:hover {
    filter: grayscale(0) brightness(1);
    transition: all 1.2s;
    transform: scale(1.03);
}

.indexvideo .wp .vbox .name {
    font-size: 16px;
    color: #fff;
}

.indexnews {
    margin: 20px 0;
    background-color: #f2f2f4;
}

#mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 9;
    transition: all 0.4s;
    top: 0
}

.videobox {
    position: fixed;
    top: 9%;
    width: 1280px;
    height: 720px;
    background: #010101;
    left: 50%;
    margin-left: -680px;
    display: none;
    z-index: 9;
    border-radius: 10px;
    overflow: hidden;
}

.videobox .closevideo {
    position: absolute;
    right: 26px;
    top: 26px;
    cursor: pointer;
    z-index: 20;
    width: 26px;
}

.videobox .videologo {
    position: absolute;
    left: 30px;
    top: 30px;
    max-width: 180px;
}

.xl-chrome-ext-bar {
    display: none;
}

.indexnews {
    padding: 0 0 50px 0;
}

.indexnews .wp .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0 20px 0;
}

.indexnews .wp .swiper .swiper-scrollbar {
    background: #d7d7d7;
}

.indexnews .wp .swiper .swiper-scrollbar-drag {
    background: #e97a4c;
}

.indexnews .wp .swiper .swiper-wrapper {
    padding: 0 0 60px 0;
}

.indexnews .wp .swiper .swiper-slide .item {
    width: 100%;
}

.indexnews .wp .swiper .swiper-slide .item .pbox {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.indexnews .wp .swiper .swiper-slide .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.indexnews .wp .swiper .swiper-slide .item .pbox:hover img {
    transition: all 0.6s;
    transform: scale(1.05);
}

.indexnews .wp .swiper .swiper-slide .item .tbox {
    background: #111933;
    padding: 50px 25px 40px 25px;
    /* width: calc(100% - 50px); */
}

.indexnews .wp .swiper .swiper-slide .item .tbox .name {
    font-size: 24px;
    color: #e97a4c;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.indexnews .wp .swiper .swiper-slide .item .tbox .cont {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    margin: 16px 0 56px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.joinvv {
    position: relative;
    background: url(../images/join/bg.jpg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    height: 42.7vw;
    min-height: 700px;
    min-width: 1200px;
}

.joinvv .titledemo {
    padding: 180px 0 80px 0;
}

.joinvv .name {
    font-size: 24px;
    color: #000;
}

.joinvv .cont {
    font-size: 30px;
    color: #e97a4c;
    margin: 0 0 80px 0;
}

.joinvv .shoppic {
    width: 71%;
    /* max-width: 1390px; */
    right: 0;
    position: absolute;
    bottom: 100px;
}

.wp .cateslist {
    /* padding: 100px 0 60px 0; */
    display: flex;
    justify-content: flex-end;
}

.wp .cateslist .item {
    width: max-content;
    width: 80px;
    height: 48px;
    font-size: 18px;
    color: #111933;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #111933; */
    margin: 0 28px 0 0;
    font-family: 'SansCN-Regular';
}

.wp .cateslist .item:last-child {
    margin: 0;
}

.wp .cateslist .item:hover {
    color: #e97a4c;
}

.wp .cateslist .active {
    color: #e97a4c;
    position: relative;
}

.wp .cateslist .active:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #e97a4c;
    height: 2px;
    width: 100%;
}


/* Underline From Left */

.hvr-underline-from-left {
    display: block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}

.hvr-underline-from-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #e97a4c;
    height: 2px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-underline-from-left:hover:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
    right: 0;
}

.procatem {
    position: relative;
    margin: 0 0 100px 0;
    overflow: hidden;
}

.procatem img {
    width: 100%;
    max-height: 650px;
}

.procatem .tbox {
    position: absolute;
    width: max-content;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    /* display: none; */
}

.procatem .tbox .name {
    font-size: 42px;
    color: #fff;
    font-weight: bold;
    display: none;
    margin: 0 auto;
    width: max-content;
}

.procatem .tbox .func {
    padding: 60px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.procatem .tbox .func .btn {
    width: 200px;
    height: 48px;
    background: #111933;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    display: flex;
    border-radius: 24px;
    margin: 0 24px 0 0;
    display: none;
    transition: all 0.3s;
}

.procatem:hover .tbox .name {
    display: flex;
    animation: bounceInRight 1.2s;
}

.procatem:hover .tbox .func .btn {
    transition: all 0.3s;
    display: flex;
    animation: bounceInRight 1.2s;
}


/* .procatem .tbox .func .active {
    background: #e97a4c;
} */

.procatem .tbox .func .btn:hover {
    background: #e97a4c;
}

.procenter .wp .prolist {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.procenter .wp .prolist .item {
    width: calc(100% / 4 - 30px);
    max-width: 350px;
    margin: 0 40px 50px 0;
}

.procenter .wp .prolist .item:nth-child(4n) {
    margin: 0 0 50px 0;
}

.procenter .wp .prolist .item .pbox {
    height: 29vw;
    max-height: 560px;
    min-height: 480px;
    width: 100%;
    overflow: hidden;
    margin: 0 0 17px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #efefef;
}

.procenter .wp .prolist .item .pbox img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.procenter .wp .prolist .item .tbox {
    border: 1px solid #111933;
}

.procenter .wp .prolist .item .tbox .name {
    color: #111933;
    font-size: 18px;
    padding: 25px 5%;
    width: 90%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-family: 'SansCN-Regular';
}

.procenter .wp .prolist .item:hover .tbox {
    background: #e97a4c;
    border: none;
}

.procenter .wp .prolist .item:hover .tbox .name {
    color: #fff;
}

.prodetail {
    position: relative;
    padding: 50px 0 0 0;
}

.prodetail .bg {
    height: 26%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: rgba(242, 242, 242, .8);
}

.prodetail .wp .wrap {
    display: flex;
    justify-content: space-between;
    max-width: 1322px;
    margin: 0 auto;
    width: 86.4%;
}

.prodetail .wp .wrap .pbox {
    max-width: 360px;
    min-width: 300px;
    width: 27.2vw;
    height: max-content;
}

.prodetail .wp .wrap .pbox img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.prodetail .wp .wrap .tbox {
    width: 59.7%;
    max-width: 790px;
    padding: 30px 0 0 0;
}

.prodetail .wp .wrap .tbox .name {
    font-size: 38px;
    color: #111933;
    font-weight: bold;
}

.prodetail .wp .wrap .tbox .cont {
    font-size: 18px;
    color: rgba(33, 33, 33, 0.8);
    margin: 30px 0 40px 0;
    font-family: 'SansCN-Regular';
}

.prodetail .wp .wrap .tbox .icon {
    display: block;
    margin: 0 0 70px 0;
}

.prodetail .wp .wrap .tbox .askmore {
    width: 177px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    background: #111933;
}

.prodetail .wp .wrap .tbox .askmore:hover {
    background: #e97d54;
}

.effectpic {
    padding: 0 0 50px 0;
}

.effectpic .wp .titledemo {
    margin: 0 auto;
    padding: 70px 0 40px 0;
    text-align: center
}

.effectpic .wp .titledemo .titlepic {
    margin: 0 0 20px 0;
}

.effectpic .wp .titledemo .name {
    font-size: 48px;
    color: #111933;
    font-weight: bold;
}

.proadv {
    background: #f5f5f6;
    padding: 50px 0 90px 0;
}

.proadv .wp .list {
    display: flex;
    justify-content: space-evenly;
    padding: 30px 0 0 0;
}

.proadv .wp .list .item {
    width: calc(100% / 5);
    text-align: center;
}

.proadv .wp .list .item .tbox p {
    font-size: 24px;
    color: #212121;
}

.proadv .wp .list .item .tbox span {
    font-size: 18px;
    color: #212121;
}

.prochara {
    padding: 50px 0 120px 0;
    background: #fff;
}

.prochara .wp .box {
    padding: 40px 0 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    position: relative;
    /* max-width: 1322px; */
    margin: 0 auto;
}

.prochara .wp .box .protect {
    position: absolute;
    top: 0%;
    left: 0;
}

.prochara .wp .box .charapic {
    width: 96%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 0 4%;
}

.prochara .wp .box .charapic .t1 {
    z-index: 9;
}

.prochara .wp .box .charapic .t2 {
    z-index: 8;
    margin: 2px 0 0 0;
}

.prochara .wp .box .charapic .t3 {
    z-index: 7;
    margin: -9px 0 0 0;
}

.prochara .wp .box .charapic .t4 {
    z-index: 6;
    margin: -15px 0 0 0;
}

.prochara .wp .box .charapic .t5 {
    z-index: 5;
    margin: -15px 0 0 0;
}

.prochara .wp .box .charapic .t6 {
    z-index: 4;
    margin: -39px 0 0 0;
}

.prochara .wp .box .charapic .tbox {
    position: absolute;
    right: 0;
}

.prochara .wp .box .charapic img {
    display: block;
    margin: auto;
}

.prochara .wp .box .charapic .tbox .name {
    font-size: 24px;
    color: #e97d54;
    font-family: 'SansCN-Bold';
    text-align: right;
}

.prochara .wp .box .charapic .tbox .circle {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #e97a4c;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: -8px;
    bottom: -5px;
}

.prochara .wp .box .charapic .tbox .point {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #e97a4c;
}

.prochara .wp .box .charapic .tbox .line {
    width: 100%;
    position: absolute;
    height: 1px;
    background: #e97a4c;
}

.prochara .wp .box .charapic .t1 .tbox {
    width: 44%;
    top: 3%;
}

.prochara .wp .box .charapic .t2 .tbox {
    top: 16%;
    width: 40%;
}

.prochara .wp .box .charapic .t3 .tbox {
    top: 32%;
    width: 33%;
}

.prochara .wp .box .charapic .t6 .tbox {
    bottom: 8%;
    width: 17%;
}

.prochara .wp .box .charapic .t2 .tbox .point {
    background: #fff;
}

.prochara .wp .box .charapic .t2 .tbox .circle {
    border: 1px solid #fff;
}

.proshow .wp .bmpic {
    /* width: 86.4%; */
    /* max-width: 1322px; */
    display: block;
    /* margin: 50px auto 0; */
}

.proshow {
    padding: 90px 0;
    margin: 0 0 30px 0;
}

.proshow:nth-child(1) {
    background: #f7f7f8;
}

.proshow:nth-child(2) {
    background: #f2f2f4;
}

.proshow:nth-child(3) {
    background: #f8fbfd;
}

.proshow .wp .anibox {
    display: flex;
    justify-content: flex-end;
    padding: 30px 0;
    position: relative;
}

.proshow .wp .anibox .tbox {
    position: absolute;
    left: 0;
    padding: 0 0 25px 0;
    z-index: 9;
    transition: all 0.6s;
}

.proshow .wp .anibox .tbox:nth-child(1) {
    top: 4%;
    width: 57%;
}

.proshow .wp .anibox .tbox:nth-child(2) {
    top: 38%;
    width: 60%;
}

.proshow .wp .anibox .tbox:nth-child(3) {
    top: 62%;
    width: 67%;
}

.proshow .wp .anibox .tbox .name {
    font-size: 24px;
    color: #e97d54;
    font-family: 'SansCN-Bold';
    margin: 0 0 6px 0;
}

.proshow .wp .anibox .tbox .desc {
    font-size: 16px;
    line-height: 26px;
    color: #212121;
}

.proshow .wp .anibox .tbox .circle {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #e97a4c;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -8px;
    bottom: -5px;
}

.proshow .wp .anibox .tbox .circle .point {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #e97a4c;
}

.proshow .wp .anibox .tbox .line {
    width: 100%;
    position: absolute;
    height: 1px;
    background: #e97a4c;
    bottom: 0;
}

.proshow .wp .box {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.proshow .wp .box .tbox {
    position: absolute;
    z-index: 99;
}

.proshow .wp .box .tbox .name {
    font-size: 24px;
    color: #e97d54;
    font-family: 'SansCN-Bold';
    margin: 0 0 6px 0;
}

.proshow .wp .box .tbox .desc {
    font-size: 16px;
    line-height: 26px;
    color: #212121;
}

.proshow .wp .box .tbox .circle {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #e97a4c;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -8px;
    bottom: -5px;
}

.proshow .wp .box .tbox .circle .point {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #e97a4c;
}

.proshow .wp .box .tbox .line {
    width: 100%;
    position: absolute;
    height: 1px;
    background: #e97a4c;
    bottom: 0;
    left: 0;
}

.proshow .wp .box .tbox:nth-child(1) {
    left: 0;
    top: 23%;
    width: 30%;
}

.proshow .wp .box .tbox:nth-child(2) {
    top: 23%;
    right: 0;
    width: 45%;
    text-align: right;
}

.proshow .wp .box .tbox:nth-child(3) {
    left: 0;
    bottom: 22%;
    width: 39%;
}

.proshow .wp .box .tbox:nth-child(4) {
    bottom: 17%;
    right: 0;
    width: 54%;
    text-align: right;
}

.proshow .wp .box .tbox:nth-child(even) .circle {
    right: auto;
    left: -8px;
}

.proshow .wp .wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 40px 0;
}

.proshow .wp .wrap .tbox {
    position: absolute;
    z-index: 99;
    left: 0;
}

.proshow .wp .wrap .tbox:nth-child(1) {
    width: 58%;
}

.proshow .wp .wrap .tbox:nth-child(2) {
    width: 59%;
    top: 41%;
}

.proshow .wp .wrap .tbox:nth-child(3) {
    bottom: 16%;
    width: 66%;
}

.proshow .wp .wrap .tbox .name {
    font-size: 24px;
    color: #e97d54;
    font-family: 'SansCN-Bold';
    margin: 0 0 6px 0;
}

.proshow .wp .wrap .tbox .desc {
    font-size: 16px;
    line-height: 26px;
    color: #212121;
}

.proshow .wp .wrap .tbox .circle {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #e97a4c;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -8px;
    bottom: -5px;
}

.proshow .wp .wrap .tbox .circle .point {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #e97a4c;
}

.proshow .wp .wrap .tbox .line {
    width: 100%;
    position: absolute;
    height: 1px;
    background: #e97a4c;
    bottom: 0;
    left: 0;
}

.albumcenter .wp .list {
    display: flex;
    justify-content: flex-start;
}

.albumcenter .wp .list .album {
    width: calc(100% / 2 - 10px);
    margin: 0 20px 20px 0;
}

.albumcenter .wp .list.album:nth-child(2n) {
    margin: 0 0 20px 0;
}

.albumcenter .wp .list .album .pbox {
    max-height: 600px;
    height: 31.25vw;
    min-height: 440px;
}

.albumcenter .wp .list .album .pbox img {
    max-width: 100%;
}

.albumcenter .wp .list .album .name {
    font-size: 18px;
    text-align: center;
    padding: 50px 0;
    color: rgba(33, 33, 33, 0.8);
}

.videocenter {
    padding: 0 0 60px 0;
}

.videocenter .wp .list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0 0 30px 0;
}

.videocenter .wp .list .item {
    width: calc(100% / 3 - 10px);
    margin: 0 15px 15px 0;
    overflow: hidden;
    position: relative;
}

.videocenter .wp .list .item:nth-child(3n) {
    margin: 0 0 15px 0;
}

.videocenter .wp .list .item .bpic {
    width: 100%;
    height: 100%;
}

.videocenter .wp .list .item .playi {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
}

.customm {
    background: #f2f2f4;
    margin: 0 0 20px 0;
}

.customm .wp .wrap {
    display: flex;
    justify-content: space-between;
    padding: 60px 0 40px 0;
}

.customm .wp .wrap .lside .titledemo {
    margin: 0 0 50px 0;
}

.customm .wp .wrap .lside img {
    max-width: 95%;
}

.customm .wp .wrap .rside img {
    max-width: 95%;
}

.casescenter {
    padding: 20px 0 60px 0;
}

.casescenter .wp .list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.casescenter .wp .list .item {
    width: calc(100% / 2 - 10px);
    margin: 0 20px 20px 0;
}

.casescenter .wp .list .item:nth-child(2n) {
    margin: 0 0 20px 0;
}

.casescenter .wp .list .item .pbox {
    height: 21.875vw;
    max-height: 420px;
    min-height: 340px;
    overflow: hidden;
}

.casescenter .wp .list .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.casescenter .wp .list .item .pbox:hover img {
    transition: all 0.6s;
    transform: scale(1.05);
}

.casescenter .wp .list .item .tbox .name {
    font-size: 18px;
    color: #111933;
    padding: 30px 0 15px 0;
    text-align: center;
    font-family: 'SansCN-Regular';
}

.casescenter .wp .list .item .tbox .line {
    width: 60px;
    height: 3px;
    background-color: #e97a4c;
    display: block;
    margin: 0 auto 50px;
}

.caseshow {
    background-color: #f2f2f4;
    padding: 0 0 110px 0;
}

.caseshow .wp .maintitle {
    font-size: 38px;
    color: #111933;
    font-weight: bold;
    font-family: 'SansCN-Regular';
    padding: 50px 0 40px 0;
    text-align: center;
}

.caseshow .wp .showdetail P {
    font-size: 16px;
    color: #000;
    line-height: 32px;
    text-indent: 32px;
    margin: 0 0 8px 0;
}

.caseshow .wp .showdetail ul {
    position: relative;
    width: 100%;
    max-height: 640px;
    min-height: 630px;
}

.caseshow .wp .showdetail ul img {
    position: absolute;
    max-width: 100%;
    display: block;
    left: 0;
    top: 0;
    cursor: pointer;
}

.hotcases {
    padding: 50px 0 100px 0;
}

.casescenter .wp .titledemo {
    margin: 0 0 30px 0;
}

.casescenter .wp .item {
    width: 100%;
}

.casescenter .wp .item .pbox {
    height: 21.875vw;
    max-height: 420px;
    min-height: 340px;
    overflow: hidden;
}

.casescenter .wp .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.casescenter .wp .item .pbox:hover img {
    transition: all 0.6s;
    transform: scale(1.05);
}

.casescenter .wp .item .tbox .name {
    font-size: 18px;
    color: #111933;
    padding: 30px 0 15px 0;
    text-align: center;
    font-family: 'SansCN-Regular';
}

.casescenter .wp .item .tbox .line {
    width: 60px;
    height: 3px;
    background-color: #e97a4c;
    display: block;
    margin: 0 auto 50px;
}

.casescenter .wp .swiper-scrollbar-drag {
    background-color: #e97a4c;
}

.casescenter .wp .swiper-scrollbar {
    background: #d7d7d7;
}

.newscenter .wp .newslist {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 30px 0;
}

.newscenter .wp .newslist .item {
    width: calc(100% / 3 - 10px);
    margin: 0 15px 30px 0;
}

.newscenter .wp .newslist .item:nth-child(3n) {
    margin: 0 0 30px 0;
}

.newscenter .wp .newslist .item .pbox {
    width: 100%;
    height: 20.125vw;
    min-height: 320px;
    max-height: 390px;
    overflow: hidden;
}

.newscenter .wp .newslist .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s;
}

.newscenter .wp .newslist .item:hover .pbox img {
    transition: all 0.6s;
    transform: scale(1.05);
}

.newscenter .wp .newslist .item .tbox {
    background: #111933;
    padding: 30px 0 19px 30px;
    width: 100%
}

.newscenter .wp .newslist .item .tbox .title {
    font-size: 24px;
    color: #e97a4c;
    font-family: 'SansCN-Regular';
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    max-width: 80%;
    overflow: hidden;
}

.newscenter .wp .newslist .item .tbox .desc {
    font-size: 16px;
    color: #fff;
    margin: 0 0 50px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-width: 80%;
    overflow: hidden;
    height: 48px;
}

.newsdetail {
    background: #f2f2f4;
    padding: 0 0 80px 0;
}

.newsdetail .wp .newscontent {
    background: #fff;
    padding: 80px 50px;
}

.newsdetail .wp .newscontent .titlebox {
    text-align: center;
    margin: 0 0 50px 0;
}

.newsdetail .wp .newscontent .titlebox .title {
    font-size: 38px;
    font-family: 'SansCN-Regular';
    font-weight: bold;
    color: #111933;
}

.newsdetail .wp .newscontent .titlebox .time {
    font-size: 16px;
    color: #212121;
}

.newsdetail .wp .newscontent .content p {
    font-size: 18px;
    color: #212121;
    line-height: 32px;
    margin: 10px 0;
    font-family: 'SansCN-Regular';
}

.newsdetail .wp .newscontent .content img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.newsdetail .wp .newscontent .content .titlepic {
    margin: 40px 0 20px 0;
    display: inline-block;
}

.hotnews {
    padding: 80px 0;
}

.hotnews .wp .titledemo {
    padding: 0 0 50px 0;
}

.hotnews .swiper .swiper-wrapper {
    padding: 0 0 60px 0;
}

.hotnews .swiper .swiper-wrapper .swiper-slide .item {
    width: 100%;
    margin: 0 15px 30px 0;
}

.hotnews .swiper .swiper-wrapper .swiper-slide .item .pbox {
    width: 100%;
    height: 20.125vw;
    min-height: 320px;
    max-height: 390px;
    overflow: hidden;
}

.hotnews .swiper .swiper-wrapper .swiper-slide .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s;
}

.hotnews .swiper .swiper-wrapper .swiper-slide .item:hover .pbox img {
    transition: all 0.6s;
    transform: scale(1.05);
}

.hotnews .swiper .swiper-wrapper .swiper-slide .item .tbox {
    background: #111933;
    padding: 50px 0 40px 30px;
    width: 100%
}

.hotnews .swiper .swiper-wrapper .swiper-slide .item .tbox .title {
    font-size: 24px;
    color: #e97a4c;
    font-family: 'SansCN-Regular';
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    max-width: 80%;
    overflow: hidden;
}

.hotnews .swiper .swiper-wrapper .swiper-slide .item .tbox .desc {
    font-size: 16px;
    color: #fff;
    margin: 0 0 50px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-width: 80%;
    overflow: hidden;
    height: 48px;
}

.hotnews .swiper .swiper-scrollbar-drag {
    background-color: #e97a4c;
}

.hotnews .swiper .swiper-scrollbar {
    background: #d7d7d7;
}

.companyactive {
    padding: 20px 0 90px 0;
}

.companyactive .wp .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.companyactive .wp .list .item {
    width: 49%;
}

.companyactive .wp .list .item .pbox {
    width: 100%;
    height: 23.43vw;
    min-height: 400px;
    max-height: 450px;
    overflow: hidden;
}

.companyactive .wp .list .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.companyactive .wp .list .item .pbox:hover img {
    transition: all 0.6s;
    transform: scale(1.05);
}

.companyactive .wp .list .item .tbox {
    background: #111933;
    padding: 20px 0;
}

.companyactive .wp .list .item .tbox p {
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-family: 'SansCN-Regular';
}

.brandimage {
    background: #f2f2f4;
    padding: 20px 0 140px 0;
}

.brandimage .wp .imlist {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.brandimage .wp .imlist .item {
    width: calc(100% / 4 - 15px);
    margin: 0 20px 20px 0;
    background: #fff;
}

.brandimage .wp .imlist .item:nth-child(4n) {
    margin: 0 0 20px 0;
}

.brandimage .wp .imlist .item .pbox {
    max-height: 290px;
    min-height: 230px;
    height: 15.1vw;
    width: 100%;
    overflow: hidden;
}

.brandimage .wp .imlist .item .pbox img {
    transition: all 0.4s;
    width: 80%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.brandimage .wp .imlist .item .pbox:hover img {
    transition: all 0.4s;
    transform: scale(1.05);
}

.brandimage .wp .imlist .item p {
    font-size: 18px;
    color: #111933;
    text-align: center;
    padding: 20px 0;
}

.vvier {
    padding: 20px 0 140px 0;
}

.vvier .wp .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.vvier .wp .list .item {
    width: calc(100% / - 20px);
    margin: 0 30px 30px 0;
}

.vvier .wp .list .item:nth-child(3n) {
    margin: 0 0 30px 0;
}

.vvier .wp .list .item .pbox {
    width: 100%;
    height: 17.4vw;
    max-height: 335px;
    min-height: 300px;
    overflow: hidden;
}

.vvier .wp .list .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.vvier .wp .list .item .pbox:hover img {
    transition: all 0.6s;
    transform: scale(1.05);
}

.vvier .wp .list .item .tbox {
    background: #111933;
    padding: 20px 0;
}

.vvier .wp .list .item .tbox p {
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-family: 'SansCN-Regular';
}

.contact {
    background-color: #f1f1f3;
    padding: 0 0 130px 0
}

.contact .wp .top {
    display: flex;
    justify-content: space-between;
    padding: 100px 0 50px 0;
    border-bottom: 1px solid #efd9d2;
}

.contact .wp .top .lside .title {
    font-size: 38px;
    color: #111933;
    font-weight: bold;
    font-family: 'SansCN-Regular';
}

.contact .wp .top .lside .desc {
    font-size: 34px;
    color: #e97a4c;
    font-family: 'SansCN-Regular';
}

.contact .wp .top .rside {
    display: flex;
}

.contact .wp .top .rside img {
    margin: 0 10px 0 0;
}

.contact .wp .btm .list {
    display: flex;
    justify-content: space-between;
    padding: 50px 0 70px 0;
    align-items: center;
}

.contact .wp .btm .list .line {
    width: 1px;
    height: 76px;
    display: block;
    background: #efd9d2;
}

.contact .wp .btm .list .item {
    text-align: center;
}

.contact .wp .btm .list .item .name {
    font-size: 18px;
    color: #111933;
    font-family: 'SansCN-Regular';
    font-weight: bold;
    margin: 10px 0;
}

.contact .wp .btm .list .item .desc {
    font-size: 16px;
    color: #212121;
    max-width: 230px
}

.contact .wp #map {
    width: 100%;
    height: 700px;
}

.vvlove {
    background: #f2f2f4;
    padding: 0 0 70px 0;
}

.vvlove .wp .wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 90px 0;
}

.vvlove .wp .wrap .lside {
    width: 20.3125vw;
    max-width: 390px;
    min-width: 360px;
}

.vvlove .wp .wrap .lside .title {
    font-size: 32px;
    color: #111933;
    font-weight: bold;
    font-family: 'SansCN-Regular';
    margin: 20px 0;
}

.vvlove .wp .wrap .lside span {
    font-size: 16px;
    color: #111933;
    line-height: 32px;
    font-family: 'SansCN-Regular';
}

.vvlove .wp .wrap .line {
    width: 1px;
    height: 255px;
    display: block;
    background: #f5ae8f;
    margin: 0 140px 0 120px;
}

.vvlove .wp .wrap .rside {
    max-width: 850px;
    width: 44.27vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vvlove .wp .wrap .rside span {
    font-size: 16px;
    color: #111933;
    margin: 24px 0 36px 0;
    font-family: 'SansCN-Regular';
}

.vvlove .vvvideo {
    width: calc(100% - 80px);
    margin: 0 auto;
    position: relative;
}

.vvlove .vvvideo .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.translove {
    padding: 80px 0 70px 0;
}

.translove .wp .title {
    font-size: 42px;
    color: #111933;
    font-weight: bold;
    font-family: 'SansCN-Regular';
    text-align: center;
}

.translove .wp .list {
    display: flex;
    padding: 30px 0;
}

.translove .wp .list .item {
    width: calc(100% / 3 - 10px);
    margin: 0 15px 0 0
}

.translove .wp .list .item:last-child {
    margin: 0;
}

.translove .wp .list .item .pbox {
    width: 100%;
    overflow: hidden;
}

.translove .wp .list .item .pbox img {
    transition: all 0.4s;
}

.translove .wp .list .item .pbox:hover img {
    transition: all .4s;
    transform: scale(1.02);
}

.translove .wp .list .item span {
    font-size: 18px;
    color: #03091c;
    text-align: center;
    display: block;
    padding: 15px 0;
}

.showname {
    background: #f2f2f4;
    padding: 70px 0 140px 0;
}

.showname .wp .title {
    font-size: 42px;
    color: #111933;
    font-weight: bold;
    font-family: 'SansCN-Regular';
    text-align: center;
}

.showname .wp .titlebox {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #111933;
    margin: 30px 0 10px 0;
    padding: 0 20px;
}

.showname .wp .titlebox span {
    font-size: 18px;
    color: #fff;
    text-align: center;
    min-width: 100px;
    flex-grow: 1;
    text-align: center;
    width: 25%;
    user-select: none;
    -webkit-user-select: none;
}

.showname .wp .namelist {
    height: 500px;
    overflow: hidden;
    background: #fff;
}

.showname .wp .namelist ul {
    background: #fff;
}

.showname .wp .namelist ul li {
    background: #fff;
    padding: 20px 20px;
    display: flex;
    justify-content: space-around;
}

.showname .wp .namelist ul li span {
    font-size: 20px;
    color: #000;
    text-align: center;
    width: 25%;
    user-select: none;
    -webkit-user-select: none;
}

.aboutus {
    background-color: #f2f2f4;
    padding: 80px 0;
}

.aboutus .wp .wrap {
    display: flex;
    justify-content: space-between;
}

.aboutus .wp .wrap .lside {
    max-width: 860px;
    width: 56.2vw;
    /* min-width: 800px; */
}

.aboutus .wp .wrap .lside .subtitle {
    font-size: 36px;
    color: #111933;
    font-family: 'SansCN-Regular';
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.aboutus .wp .wrap .lside .subtitle i {
    color: #e97a4c;
}

.aboutus .wp .wrap .lside .cont {
    font-size: 18px;
    color: rgba(33, 33, 33, 0.8);
    margin: 0 0 30px 0;
    font-family: 'SansCN-Regular';
    max-width: 90%;
    text-align: justify;
}

.aboutus .wp .wrap {
    display: flex;
    justify-content: space-between;
}

.aboutus .wp .wrap .right {
    max-width: 570px;
    width: 37.25vw;
    min-width: 400px;
}

.aboutus .wp .wrap .right img {
    max-width: 100%;
    transition: all 0.6s;
}

.aboutus .wp .wrap .right:hover img {
    transition: all 0.6s;
    transform: scale(1.02);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.companyview {
    padding: 100px 0 60px 0;
}

.companyview .swiper .swiper-slide {
    overflow: hidden;
}

.companyview .swiper .swiper-slide img {
    transition: all 1.6s;
}

.companyview .swiper .swiper-slide:hover img {
    transition: all 1.6s;
    transform: scale(1.05);
}

.companyview .wp .titlebox {
    display: flex;
    justify-content: center;
    margin: 0 auto 30px;
    align-items: center;
}

.companyview .wp .titlebox p {
    font-size: 48px;
    color: #111933;
    font-weight: bold;
    margin: 0 0 0 20px;
}

.develop {
    padding: 70px 0 40px 0;
    background: #f2f2f4;
}


/* .develop .swiper1 {
    margin: 0 0 40px 0;
} */

.develop .swiper1 .swiper-wrapper {
    padding: 30px 0;
}

.develop .swiper1 .item {
    width: 100%;
    padding: 40px 30px 80px;
    background-color: #fff;
    box-shadow: 1px 0 15px rgba(17, 25, 51, 0.1);
    height: 430px;
}

.develop .swiper1 .item p {
    text-align: center;
    font-size: 30px;
    color: rgba(17, 25, 51, 0.5);
    font-weight: bold;
    font-family: 'SansCN-Regular';
}

.develop .swiper1 .item i {
    width: 100%;
    height: 1px;
    display: block;
    background: #fbece6;
    margin: 35px 0 20px 0;
}

.develop .swiper1 .item span {
    font-size: 16px;
    color: rgba(17, 25, 51, 0.5);
}

.develop .swiper1 .swiper-slide-active p {
    color: #e97a4c;
}

.develop .swiper1 .swiper-slide-active span {
    color: #111933;
}

.develop .swiper2 p {
    font-size: 20px;
    color: #111933;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.develop .swiper2 .swiper-wrapper {
    padding: 60px 0;
}

.develop .swiper2 .swiper-button-prev {
    content: '';
    background: url(../images/left.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 38px;
    height: 38px;
    background-size: contain;
}

.develop .swiper2 .swiper-button-prev::after {
    content: '';
}

.develop .swiper2 .swiper-button-next {
    content: '';
    background: url(../images/right.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 38px;
    height: 38px;
    background-size: contain;
}

.develop .swiper2 .swiper-button-next::after {
    content: '';
}

.develop .swiper2 .active p {
    color: #e97a4c;
}

.develop .swiper2 .swiper-slide::after {
    content: '';
    background: url(../images/swipericon.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 30px;
    position: absolute;
    left: 43%;
    bottom: -150%;
    /* transform: translateX(-16px); */
    transition: all 0.8s;
    display: none;
}

.develop .swiper2 .active::after {
    /* bottom: -150%; */
    left: 43%;
    display: block;
    /* transform: translateX(-16px); */
    animation: fadeInUp 0.8s;
    /* transition: all 0.2s; */
}

.vvpower {
    padding: 100px 0 00px 0;
}

.vvpower .wp .titlebox {
    display: flex;
    justify-content: center;
    margin: 0 auto 30px;
    align-items: center;
}

.vvpower .wp .titlebox p {
    font-size: 48px;
    color: #111933;
    font-weight: bold;
    margin: 0 0 0 20px;
}

.vvpower .wp .powerpic {
    max-width: 100%;
    transition: all 1.2s;
}

.vvpower .wp .powerpic:hover {
    transition: all 1.2s;
    transform: scale(1.02);
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.6);
}

.vvpower .wp .numlist {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 60px 0;
}

.vvpower .wp .numlist .item {
    width: calc(100% / 4 - 15px);
    margin: 0 20px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    padding: 0 0 0 5%;
}

.vvpower .wp .numlist .item:nth-child(4n) {
    margin: 0 0 60px 0;
}

.vvpower .wp .numlist .item p {
    display: flex;
    align-items: flex-end;
}

.vvpower .wp .numlist .item p span {
    font-size: 45px;
    color: #e97d54;
    font-weight: bold;
    font-family: 'SansCN-Regular';
}

.vvpower .wp .numlist .item p i {
    font-size: 18px;
    color: #212121;
    font-family: 'SansCN-Regular';
}

.vvpower .wp .numlist .item .name {
    font-size: 18px;
    color: rgba(33, 33, 33, 0.8);
    font-family: 'SansCN-Regular';
}

.facpower {
    background: #f2f2f4;
    padding: 70px 0 80px 0;
}

.facpower .wp .list {
    padding: 30px 0 0 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.facpower .wp .list .item {
    width: calc(100% / 3 - 20px);
    margin: 0 30px 30px 0;
}

.facpower .wp .list .item:nth-child(3n) {
    margin: 0 0 30px 0;
}

.facpower .wp .list .item .pbox {
    width: 100%;
    height: 17.5vw;
    min-height: 280px;
    max-height: 340px;
    overflow: hidden;
}

.facpower .wp .list .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s;
}

.facpower .wp .list .item .pbox:hover img {
    transition: all 0.6s;
    transform: scale(1.04);
}

.facpower .wp .list .item .tbox {
    padding: 25px 0;
    background: #111933;
}

.facpower .wp .list .item .tbox .name {
    font-size: 18px;
    color: #fff;
    text-align: center;
    font-family: 'SansCN-Regular';
}

.facpower .wp .list .item .tbox .name i {
    font-size: 28px;
    color: #e97a4c;
    font-weight: bold;
    font-family: 'SansCN-Regular';
}

.honor {
    padding: 70px 0 130px 0;
}

.honor .swiper {
    margin: 30px 0 0 0;
}

.honor .swiper .swiper-wrapper {
    padding: 30px 0 90px 0;
}

.honor .swiper .swiper-slide {
    background: #f6f6f6;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0 30px 0;
    transition: all 0.6s;
}

.honor .swiper .swiper-slide .pbox {
    height: 315px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.honor .swiper .swiper-slide .line {
    width: 90%;
    display: block;
    height: 1px;
    background: #e3e3e3;
    margin: 60px 0 25px 0;
}

.honor .swiper .swiper-slide .name {
    font-size: 18px;
    color: #212121;
    font-family: 'SansCN-Regular';
}

.honor .swiper .swiper-slide:hover {
    background: #fff;
    margin-top: -15px;
    box-shadow: 3px 0 15px rgba(17, 25, 51, 0.15);
    transition: all 0.6s;
    border-bottom: 6px solid #e97a4c;
}

.honor .swiper .swiper-slide:hover {
    background: #fff;
}

.honor .swiper-scrollbar {
    background-color: #d7d7d7;
}

.honor .swiper-scrollbar-drag {
    background-color: #e97a4c;
}

.vvimage {
    padding: 100px 0 90px 0;
    background: #eff0f0;
}

.vvimage .wp {
    width: calc(100% - 180px);
    padding: 0 90px;
    max-width: max-content;
}

.vvimage .wp .wrap {
    display: flex;
    justify-content: space-between;
}

.vvimage .wp .wrap .lside {
    margin: 0 100px 0 0;
    padding: 60px 0 0 0;
}

.vvimage .wp .wrap .lside .name {
    font-size: 68px;
    color: #111933;
    font-weight: bold;
    font-family: 'SansCN-Regular';
    margin: 20px 0 40px 0;
}

.vvimage .wp .wrap .lside .phone {
    width: 440px;
    height: 72px;
    background: #0c132d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vvimage .wp .wrap .lside .phone span {
    font-size: 16px;
    color: #fff;
    font-family: 'SansCN-Regular';
}

.vvimage .wp .wrap .lside .phone b {
    font-size: 36px;
    color: #e97a4c;
    font-weight: bold;
    font-family: 'SansCN-Regular';
    margin: 0 0 0 10px;
}

.vvimage .wp .wrap .rside {
    margin: 0 -110px 0 0;
}

.vvimage .wp .wrap .rside img {
    max-width: 100%;
}

.shopimage {
    padding: 80px 0 100px 0;
}

.shopimage .title {
    font-size: 60px;
    color: #111933;
    font-weight: bold;
    font-family: 'SansCN-Regular';
    text-align: center;
}

.shopimage .wp .shoppic {
    display: block;
    margin: 30px auto 0;
    max-width: 100%
}

.storeimage {
    padding: 0 0 80px 0;
}

.storeimage .wp .wrap {
    display: flex;
    justify-content: flex-start;
}

.storeimage .wp .wrap .lside {
    margin: 0 100px 0 0;
    padding: 150px 0 0 0;
    width: 50%;
}

.storeimage .wp .wrap .lside .name {
    font-size: 68px;
    color: #111933;
    font-weight: bold;
    font-family: 'SansCN-Regular';
    margin: 20px 0 40px 0;
}

.storeimage .wp .wrap .lside .phone {
    width: 440px;
    height: 72px;
    background: #0c132d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.storeimage .wp .wrap .lside .phone span {
    font-size: 16px;
    color: #fff;
    font-family: 'SansCN-Regular';
}

.storeimage .wp .wrap .lside .phone b {
    font-size: 36px;
    color: #e97a4c;
    font-weight: bold;
    font-family: 'SansCN-Regular';
    margin: 0 0 0 10px;
}

.storeimage .wp .wrap .rside {
    width: 50%;
}

.storeimage .wp .wrap .rside img {
    max-width: 100%;
}

.cooperate {
    background: #f3f3f3;
    padding: 150px 0 170px 0;
}

.cooperate .wp .wrap {
    display: flex;
}

.cooperate .wp .wrap .lside {
    width: 45%;
    margin: 0 3% 0 0;
}

.cooperate .wp .wrap .lside .title {
    font-size: 60px;
    color: #111933;
    font-weight: bold;
    font-family: 'SansCN-Regular';
}

.cooperate .wp .wrap .lside .desc {
    font-size: 35px;
    color: #e97a4c;
    font-weight: bold;
}

.cooperate .wp .wrap .lside .cont {
    max-width: 520px;
    font-size: 18px;
    color: #000;
    font-family: 'SansCN-Regular';
    line-height: 34px;
    margin: 40px 0 50px 0;
}

.cooperate .wp .wrap .lside .phone {
    width: 440px;
    height: 72px;
    background: #0c132d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cooperate .wp .wrap .lside .phone span {
    font-size: 16px;
    color: #fff;
    font-family: 'SansCN-Regular';
}

.cooperate .wp .wrap .lside .phone b {
    font-size: 36px;
    color: #e97a4c;
    font-weight: bold;
    font-family: 'SansCN-Regular';
    margin: 0 0 0 10px;
}

.cooperate .wp .wrap .rside {
    max-width: 50%;
}

.cooperate .wp .wrap .rside img {
    max-width: 100%;
}

.advbigpic {
    max-width: 100%;
    margin: 30px auto;
}

.appform {
    padding: 70px 0 130px 0;
    background-color: #f1f2f4;
}

.appform .wp .title {
    font-size: 48px;
    color: #111933;
    font-weight: bold;
    text-align: center;
    margin: 0 0 10px 0;
}

.appform .wp .desc {
    font-size: 30px;
    color: #e97a4c;
    text-align: center;
    margin: 0 0 20px 0;
}

.appform .wp .module {
    display: flex;
    margin: 0 0 20px 0;
}

.appform .wp .module input {
    flex-grow: 1;
    margin: 0 20px 0 0;
    outline: none;
    border: none;
    background: #fff;
    padding: 0 0 0 20px;
    height: 70px;
    color: rgba(183, 183, 183, 1);
    font-size: 18px;
    font-family: 'SansCN-Regular';
}

.appform .wp .module input::placeholder {
    color: rgba(183, 183, 183, 1);
    font-size: 18px;
}

.appform .wp .module textarea {
    width: 100%;
    margin: 0 20px 0 0;
    outline: none;
    border: none;
    background: #fff;
    padding: 20px;
    color: rgba(183, 183, 183, 1);
    font-size: 18px;
}

.appform .wp .module textarea::placeholder {
    color: rgba(183, 183, 183, 1);
    font-size: 18px;
}

.appform .wp .module .sub {
    width: 100%;
    margin: 0 20px 0 0;
    background: #111933;
    text-align: center;
    font-size: 26px;
    color: #e97d54;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

footer {
    background: #111933;
}

footer .wp .wrap {
    padding: 50px 0 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .wp .wrap .comphone {
    font-size: 36px;
    color: #e97a4c;
    font-family: 'gilroy-bold';
}

footer .wp .wrap .comphone span {
    font-size: 16px;
    color: #fff;
    margin: 0 16px 0 0;
}

footer .wp .btmnav {
    display: flex;
    width: 52.9%;
    max-width: 810px;
    justify-content: flex-start;
    position: relative;
}

footer .wp .btmnav::after {
    content: '';
    width: 1px;
    height: 120px;
    background-color: rgba(255, 2552, 55, 0.2);
    right: 0;
    top: 0;
    position: absolute;
}

footer .wp .btmnav .item {
    width: calc(100% / 4);
}

footer .wp .btmnav .item a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 16px 0;
    display: block;
}

footer .wp .btmnav .item .title {
    font-size: 18px;
    color: #e97a4c;
}

footer .wp .qrbox {
    display: flex;
    width: 41.2%;
    max-width: 630px;
}

footer .wp .wrap2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .wp .qrbox img {
    margin: 0 22px 0 0;
    width: calc(100% / 4 - 15px);
}

footer .wp .btminfo {
    margin: 110px 0 0 0;
    height: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer .wp .btminfo p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'gilroy-regular';
}

footer .wp .btminfo p a {
    color: rgba(255, 255, 255, .2);
    margin: 0 0 0 10px;
}


/* 媒介查询 */


/* 大屏幕（老款笔记本1366） */

@media (min-width:1921px) and (max-width:2560px) {
    .banner .banpic {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }
    .wp {
        max-width: 1920px;
    }
}

@media (max-width:1650px) {
    header .wp nav .mainul .item {
        padding: 0 25px;
        transition: all 0.4s;
    }
}

@media (max-width:1550px) {
    .proshow .wp .anibox .tbox:nth-child(3) {
        width: 64%;
    }
    .proshow .wp .wrap .tbox:nth-child(3) {
        bottom: 16%;
        width: 64%;
        transition: all 0.6s;
    }
}

@media (max-width:1440px) {
    .proshow .wp .wrap .tbox:nth-child(2) {
        width: 49%;
        transition: all 0.6s;
    }
    .proshow .wp .wrap .tbox:nth-child(3) {
        width: 58%;
        transition: all 0.6s;
    }
    .proshow .wp .box .tbox:nth-child(3) {
        left: 0;
        bottom: 22%;
        width: 36%;
    }
    .proshow .wp .anibox .tbox:nth-child(2) {
        width: 52%;
    }
    .wp {
        padding: 0 2%;
        max-width: inherit;
    }
    .indexvideo .wp .vbox .vlogo {
        padding: 90px 0 80px 0;
    }
    .proshow .wp .anibox .tbox:nth-child(3) {
        width: 60%;
    }
}

@media (max-width: 1366px) {
    .proshow .wp .wrap .tbox:nth-child(1) {
        width: 45%;
        transition: all 0.6s;
    }
    .proshow .wp .box .tbox:nth-child(1) {
        left: 0;
        top: 23%;
        width: 25%;
    }
    .proshow .wp .anibox .tbox:nth-child(1) {
        top: 4%;
        width: 47%;
    }
    .prochara .wp .box .charapic .t6 .tbox {
        bottom: 8%;
        width: 21%;
    }
    .procenter .wp .prolist .item .tbox .name {
        padding: 25px 2%;
        font-size: 16px;
    }
    .prochara .wp .box .charapic .tbox .name {
        font-size: 20px;
    }
    .prochara .wp .box .charapic .t3 .tbox {
        top: 32%;
        width: 35%;
    }
    .prochara .wp .box .charapic .t6 {
        margin: -28px 0 0 0;
    }
    .prochara .wp .box .charapic img {
        display: block;
        margin: auto;
        max-width: 70%;
    }
    .cooperate .wp .wrap .lside .phone b {
        font-size: 28px;
    }
    .cooperate .wp .wrap .lside .phone {
        width: 380px;
    }
    .cooperate .wp .wrap .lside .title {
        font-size: 48px;
    }
    .storeimage .wp .wrap .lside .phone b {
        font-size: 28px;
    }
    .storeimage .wp .wrap .lside .phone {
        width: 380px;
    }
    .storeimage .wp .wrap .lside .name {
        font-size: 48px;
    }
    .vvimage .wp .wrap .lside .phone {
        width: 380px;
    }
    .vvimage .wp .wrap .lside .phone b {
        font-size: 28px;
    }
    .vvimage .wp .wrap .lside .name {
        font-size: 48px;
    }
    .aboutus .wp .wrap .lside .cont {
        font-size: 16px;
    }
    .newscenter .wp .newslist .item .tbox .title {
        font-size: 20px;
    }
    .newscenter .wp .newslist .item .tbox .desc {
        font-size: 14px;
    }
    .videobox .videologo {
        position: absolute;
        left: 10px;
        top: 22px;
        width: 180px;
    }
    .videobox {
        position: fixed;
        top: 9%;
        width: 800px;
        height: 570px;
        left: 50%;
        margin-left: -400px;
    }
    header .wp {
        /* padding: 0 50px; */
        width: calc(100% - 100px);
    }
}

@media (max-width: 1280px) {
    .proshow .wp .wrap .tbox:nth-child(3) {
        width: 56%;
        transition: all 0.6s;
    }
    .proshow:nth-child(0) .anibox img {
        width: 80%;
    }
    .proshow .wp .anibox .tbox:nth-child(1) {
        top: 4%;
        width: 43%;
    }
    .proshow .wp .anibox .tbox:nth-child(2) {
        width: 47%;
    }
    .proshow .wp .anibox .tbox:nth-child(3) {
        width: 56%;
    }
    .vvimage .wp .wrap .lside {
        margin: 0 40px 0 0;
    }
    .aboutus .wp .wrap .lside .cont {
        margin: 0 0 20px 0;
        font-size: 14px;
    }
    header .wp {
        /* padding: 0 26px; */
        width: calc(100% - 50px);
    }
    .joinvv .cont {
        font-size: 26px;
    }
    .indexnews .wp .swiper .swiper-slide .item .pbox {
        width: 100%;
        height: 280px;
    }
    .videobox .videologo {
        top: 14px;
    }
    .indexnews .wp .swiper .swiper-slide .item .tbox .name {
        font-size: 20px;
    }
    .indexnews .wp .swiper .swiper-slide .item .tbox .cont {
        font-size: 14px;
    }
}

@media (max-width: 1170px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 640px) {}

@media (max-width: 414px) {
    header .logo {
        padding: 0;
        max-width: 30%;
    }
    header .logo img {
        max-width: 100%;
        width: auto;
        height: auto;
    }
}

@media (max-width: 393px) {}

@media (max-width: 375px) {}