/* 公共样式 */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 62.5%
}

* {
    transition: all 0.6s;
}

body {
    overflow-x: hidden;
}

.tabbar {
    height: 100px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    z-index: 99;
    display: none;
}

.tabbar .wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.tabbar .wrapper .tabitem {
    flex-grow: 1;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
    opacity: 0.8;
}

.tabbar .wrapper .active {
    opacity: 1;
    background: #921616;
}

.tabbar .wrapper .tabitem img {
    display: block;
    margin: 10px 0 10px 0;
}

.tabbar .wrapper .tabitem span {
    color: #fff;
    font-size: 14px;
}

#mask {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    transition: all 0.8s;
}

.wp .titledemo {
    text-align: center;
    padding: 30px 0;
}

.wp .titledemo .title {
    font-size: 5rem;
    color: #921616;
    font-weight: bold;
}

.wp .titledemo .desc {
    font-size: 2.5rem;
    color: #272727;
}


/* 分页样式 */

.pagination {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.pagination li {
    width: 30px;
    height: 30px;
    margin: 10px 10px;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 30px;
}

.pagination .disabled {
    opacity: 0.5;
}

.pagination .active {
    background: #921616;
    color: #fff;
}

.clear {
    clear: both;
}

 ::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 1px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

 ::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px #2b634f;
    background: #2b634f;
}

 ::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px #2b634f;
    border-radius: 10px;
    background: rgb(247, 248, 247);
}

.mobilenav::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 1px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

.mobilenav::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px #2b634f;
    background: #2b634f;
}

.mobilenav::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px #2b634f;
    border-radius: 10px;
    background: rgb(247, 248, 247);
}


/* 移动端导航 */

.mobilenav {
    position: fixed;
    z-index: 10;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    height: 100vh;
    left: -100%;
    transition: all 0.4s;
    top: 10%;
    overflow-y: scroll;
}

.mobilenav ul li {
    text-align: center;
    position: relative;
}

.mobilenav ul li .navitem {
    font-size: 16px;
    padding: 10px 20px;
    display: block;
    color: #fff;
    position: relative;
}


/* .mobilenav ul li .subnav ul{
    max-height: 360px;overflow-y: scroll;
} */

.mobilenav ul li .subnav ul li {
    /* border-bottom: 1px solid #efefef; */
    padding: 10px 0 10px 5%;
}

.mobilenav ul li .subnav .subitem {
    font-size: 14px;
    padding: 0;
    position: relative;
    border: 0;
    text-align: left;
    color: #fff;
}

.mobilenav ul li .subnav .subitem::before {
    content: '';
    background: #a1a1a1;
    width: 10px;
    height: 1px;
    position: absolute;
    left: -15px;
    top: 10px;
}

.mobilenav ul li .subnav {
    height: 0px;
    overflow: hidden;
}

footer {
    padding: 60px 0;
    background: #ececec;
}

footer .backtotop {
    position: fixed;
    right: 5%;
    bottom: 10%;
    cursor: pointer;
}

footer .wp .btminfo {
    padding: 20px 0 0 0;
    text-align: left;
    color: #666;
}

footer .wp .btminfo a {
    color: #666666;
}

footer .wp .func {
    display: flex;
    padding: 20px 0;
    justify-content: space-between;
    border-bottom: 1px solid #c2c2c2;
}

footer .wp .func .item {
    flex-grow: 1;
    width: calc(100% / 3);
}

footer .wp .func .item:nth-child(1) .name::before {
    content: '';
    width: 28px;
    height: 28px;
    background: url(../images/phone.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
}

footer .wp .func .item:nth-child(2) .name::before {
    content: '';
    width: 28px;
    height: 28px;
    background: url(../images/mailbox.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
}

footer .wp .func .item:nth-child(3) .name::before {
    content: '';
    width: 28px;
    height: 28px;
    background: url(../images/position.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
}

footer .wp .func .item .name {
    font-size: 16px;
    font-weight: bold;
    color: #2e2e2e;
    padding: 0 0 0 34px;
    position: relative;
    margin: 0 0 6px 0;
}

footer .wp .func .item span {
    font-size: 14px;
    color: #2e2e2e;
}

.wp {
    width: 96%;
    max-width: 1460px;
    margin: 0 auto;
}

header {
    width: 100%;
    z-index: 5;
    position: absolute;
    height: 9rem;
}

header .wp {
    display: flex;
    justify-content: space-between;
    height: 9rem;
    align-items: center;
    width: 96%;
    padding: 0 2%;
    max-width: 1800px;
}

header .logobox {
    position: relative;
    height: 9rem;
}

header .logobox img {
    position: absolute;
    top: 1.6rem;
    width: 11.198vw;
    min-width: 150px;
}

header .logobox .logo2 {
    /* display: none; */
    opacity: 0;
    transition: all 0.4s;
}

header .logobox .logo {
    /* display: block; */
    opacity: 1;
    transition: all 0.4s;
}

header .wapmenu {
    display: none;
    z-index: 11;
    position: absolute;
    right: 5%;
    top: 9%;
    animation: fadeInUp 1.2s;
}

header .nav ul {
    height: 90px;
}

header .nav ul li {
    display: inline-block;
    margin: 0 5rem 0 0;
    position: relative;
    height: 90px;
    /* position: absolute; */
}

header .nav ul .navitem {
    line-height: 90px;
}

header .nav ul li .subnav {
    position: absolute;
    width: 240px;
    left: 50%;
    transform: translateX(-120px);
    top: 75px;
    padding: 10px 6px;
    background: #fff;
    border-radius: 6px;
    z-index: 6;
    display: none;
    animation: fadeOut 0.6s;
    line-height: initial;
    flex-wrap: wrap;
}

header .nav ul li .subnav .coner {
    width: 10px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    top: -4px;
    z-index: 0;
    filter: 0;
}

header .nav ul li .subnav a {
    color: #000;
    font-size: 16px;
    position: relative;
    padding: 10px 0;
    text-align: center;
    width: calc(100% / 2 - 10px);
    margin: 0 15px 0 0;
}

header .nav ul li .subnav a:hover {
    color: #921616;
}

header .nav ul li .subnav a:nth-child(2n + 1) {
    margin: 0;
}

.mobilenav ul li .adt {
    position: absolute;
    top: 0;
    right: 37px;
    color: #fff;
    z-index: 999;
    display: none;
    height: 44px;
    width: 15px;
    font-size: 26px;
    justify-content: center;
    align-items: center;
}


/* header .nav ul .navitem:hover .subnav {
    display: block;
    animation: fadeIn 0.2s
} */


/* header .nav ul .active::before {
content: '';
width: 5px;
height: 5px;
border-radius: 50%;
border: 1px solid #e2d0b3;
left: 50%;
transform: translateX(-50%);
top: -14px;
position: absolute;
} */

header .nav ul li a {
    color: #a09494;
    font-size: 1.6rem;
    display: block;
    outline: none;
    font-weight: bold;
}

.hamburger .line {
    width: 40px;
    height: 3px;
    background-color: #921616;
    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;
}


/* ONE */

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}

.banner .banpic {
    max-width: 100%;
}

.banner .swiper-pagination-bullet {
    width: 40px;
    height: 3px;
    background: #fff;
    border-radius: 0;
    opacity: 1;
}

.banner .swiper-pagination-bullet-active {
    background: #921616;
}

.banner .swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.banner .swiper .swiper-slide .tbox {
    position: absolute;
    bottom: 20%;
    left: 5%;
    z-index: 101;
}

.banner .swiper .swiper-slide .tbox .year {
    font-size: 4rem;
    color: #fff;
    padding: 0 0 0 8rem;
}

.banner .swiper .swiper-slide .tbox .title {
    font-size: 5.6rem;
    color: #fff;
    font-weight: bold;
}

.banner .swiper .swiper-slide .tbox .desc {
    font-size: 2.6rem;
    color: #fff;
    padding: 0 0 0 8rem;
    position: relative;
}

.banner .swiper .swiper-slide .tbox .desc::before {
    content: '';
    width: 7rem;
    background: #fff;
    height: 1px;
    position: absolute;
    top: 4px;
    left: 0;
}

.banner .swiper-slide img {
    animation: mymove 18s infinite;
    -webkit-animation: mymove 18s infinite;
    animation-direction: alternate;
    animation-timing-function: ease;
    -webkit-animation: mymove 18s infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: ease;
}

.mbanner {
    display: none;
}

.mbanner .swiper .swiper-slide img {
    max-width: 100%;
}

@keyframes mymove {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.numbox {
    height: 21rem;
    background-color: #e8e8e8;
}

.numbox .wp {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.numbox .wp .item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: calc(100% / 5);
    position: relative;
}

.numbox .wp .item::after {
    content: '';
    height: 12.5rem;
    width: 1px;
    background: #bcbcbc;
    position: absolute;
    right: 0;
    top: 1.5rem;
}

.numbox .wp .item:last-child::after {
    background: none;
}

.numbox .wp .item p {
    font-size: 1.6rem;
    color: #454545;
    font-weight: bold;
}

.numbox .wp .item p span {
    font-weight: bold;
    font-size: 7rem;
    color: #921616
}

.numbox .wp .item .desc {
    font-size: 2rem;
    color: #666666;
}

.videomodule {
    height: 49.97vw;
    min-height: 31.25vw;
    background: url(../video/bg.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}

.videomodule .wp .tbox {
    width: 45.91vw;
    max-width: 50%;
    padding: 12.5vw 0 0 0;
}

.videomodule .wp .tbox .enname {
    font-size: 7rem;
    color: #fff;
    line-height: 1;
    font-weight: bold;
}

.videomodule .wp .tbox .name {
    margin: 1.5rem 0 2rem 0;
    font-size: 5.3rem;
    color: #fff;
}

.videomodule .wp .tbox .name span {
    font-size: 2.5rem;
    color: #fff;
}

.videomodule .wp .tbox .desc {
    font-size: 1.4rem;
    color: #fff;
    line-height: 3.2rem;
}

.videomodule .wp .playbtn {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 12rem;
    height: 12rem;
    display: flex;
    align-items: center;
    position: absolute;
    right: 27%;
    top: 32%;
    cursor: pointer;
}

.videomodule .wp .playbtn span {
    display: block;
    margin: 0 0 0 5rem;
    width: 0px;
    height: 0;
    border: 3rem solid #fff;
    border-top: 2rem solid transparent;
    border-right: 2rem solid transparent;
    border-bottom: 2rem solid transparent;
}

.videobox {
    position: fixed;
    top: 18%;
    width: 800px;
    height: 600px;
    background: #010101;
    left: 50%;
    transform: translateX(-50%);
    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: 10px;
    top: 1.5rem;
}


/* 关闭谷歌浏览器的视频下载按钮提示 */

.xl-chrome-ext-bar {
    display: none;
}

.module .wp {
    max-width: 1810px;
}

.module .wp .wrapper {
    display: flex;
    margin: -20rem 0 0 0;
}

.module .wp .wrapper .item {
    width: calc(100% / 3);
    flex-grow: 1;
    position: relative;
    left: auto;
    transform: translateX(0) scale(1);
}

.module .wp .wrapper .item .title {
    font-size: 2.2rem;
    color: #fff;
    position: absolute;
    top: 5%;
    left: 10%;
}

.module .wp .wrapper .item img {
    height: 100%;
    width: 100.2%;
    object-fit: cover;
}

.module .wp .wrapper .item .tbox {
    width: 80%;
    position: absolute;
    left: 10%;
    bottom: 0;
    z-index: 9;
    min-height: 5vw;
}

.module .wp .wrapper .item .tbox .name {
    font-size: 2.8rem;
    font-weight: bold;
    color: #fff;
    margin: 0 0 1rem 0;
    user-select: none;
}

.module .wp .wrapper .item .tbox .desc {
    font-size: 1.4rem;
    color: #fff;
    opacity: 0;
    user-select: none;
    display: block;
    opacity: 0;
    text-align: justify;
}

.module .wp .wrapper .item:hover {
    transform: scale(1.1);
    z-index: 9;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.8s;
}

.module .wp .wrapper .item:hover .tbox {
    height: fit-content;
    padding: 5rem 0;
}

.module .wp .wrapper .item:hover .tbox .desc {
    opacity: 1;
    transition: all 0.8s;
}

.series {
    padding: 5em 0 3rem 0;
    background: url(../images/picture/series/bg.jpg)no-repeat center;
    background-size: cover;
    margin: 10rem 0 0 0;
}

.series .wp {
    max-width: 1810px;
    position: relative;
}

.series .wp .bgpic {
    max-width: 100%;
    position: absolute;
    z-index: -1;
}

.series .wp .cont {
    width: 76vw;
    margin: 0 auto;
    position: relative;
}

.series .wp .cont .type {
    font-size: 1.6rem;
    color: #fff;
    padding: 10rem 0 0 10rem;
    position: relative;
}

.series .wp .cont .type i {
    display: block;
    width: 8rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 13px;
    bottom: 11px;
}

.series .wp .cont .type::before {
    content: '2';
    position: absolute;
    left: 0;
    bottom: 0;
}

.series .wp .cont .enname {
    font-size: 7rem;
    font-weight: bold;
    color: #fff;
    line-height: 0.9;
    margin: 10rem 0 0 0;
}

.series .wp .cont .cnname {
    font-size: 4rem;
    color: #fff;
    margin: 1rem 0 11rem 0;
}

.series .wp .cont button {
    position: relative;
    width: 20rem;
    height: 7rem;
    font-size: 1.6rem;
    color: #fff;
    overflow: hidden;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.series .wp .cont button span {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all 1.2s;
}

.series .wp .cont button img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: none;
    transition: all 4.2s;
}

.series .wp .cont button:hover img {
    top: -6rem;
    transition: all 4.2s;
}

.series .wp .cont button:hover span {
    transform: translateX(-40%) translateY(-40%);
    transition: all 1.2s;
}

.series .wp .list {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    right: 0;
    top: 11%;
}

.series .wp .list .item {
    margin: 0 0 2rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.series .wp .list .item a {
    font-size: 2.2rem;
    color: #fff;
}

.series .wp .list .item i {
    display: block;
    width: 3rem;
    height: 1px;
    background: #fff;
    width: 0;
    margin: 0 0 0 0.5rem;
}

.series .wp .list .item:hover a {
    font-weight: bold;
}

.series .wp .list .item:hover i {
    width: 3rem;
}

.series .wp .list2 {
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 0 0 0;
    display: none;
    flex-direction: row;
}

.series .wp .list2 .item {
    width: calc(100% / 3 - 10px);
    margin: 0 10px 10px 0;
    flex-grow: 1;
    background: #921616;
    padding: 2rem 0;
    text-align: center;
}

.series .wp .list2 .item:nth-child(3n) {
    margin: 0 0 10px 0;
}

.series .wp .list2 .item a {
    color: #fff;
    font-size: 1rem;
}

.design {
    padding: 10rem 0;
    /* margin: 20rem 0 0 0; */
}

.design .wp {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.design .wp button {
    position: relative;
    width: 24rem;
    height: 7rem;
    font-size: 1.6rem;
    color: #fff;
    overflow: hidden;
    border: 0;
    outline: 0;
    cursor: pointer;
    background: #fff;
}

.design .wp button span {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all 1.2s;
    width: 90%;
}

.design .wp button img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: none;
    transition: all 4.2s;
}

.design .wp button:hover img {
    top: -6rem;
    transition: all 4.2s;
}

.design .wp .tbox {}

.design .wp .tbox .line {
    display: block;
    width: 8rem;
    height: 2px;
    background: #921616;
    margin: 0 0 2rem 0;
}

.design .wp .tbox .name {
    font-size: 4rem;
    color: #000;
    font-weight: bold;
    margin: 0 0 2rem 0;
}

.design .wp .tbox .desc {
    font-size: 1.4rem;
    color: #000;
    max-width: 60rem;
    text-align: justify;
}

.cases .swiper .swiper-slide {
    height: 48.95vw;
}

.cases .swiper .swiper-slide .type {
    font-size: 1.6rem;
    color: #fff;
    padding: 10rem 0 0 10rem;
    position: relative;
    float: right;
}

.cases .swiper .swiper-slide .type i {
    display: block;
    width: 8rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 13px;
    bottom: 11px;
}

.cases .swiper .type::before {
    content: '3';
    position: absolute;
    left: 0;
    bottom: 0;
}

.cases .swiper .swiper-slide .enname {
    font-size: 7rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    padding: 26rem 0 6rem 0;
    text-align: center;
    max-width: 33rem;
    margin: 0 0 0 -4rem;
}

.cases .swiper .swiper-slide .title {
    font-size: 2.4rem;
    color: #fff;
    font-weight: bold;
    margin: 0 0 1rem 0;
    text-align: center;
    max-width: 24rem;
}

.cases .swiper .swiper-slide .desc {
    font-size: 1.6rem;
    margin: 0 0 4rem 0;
    color: #fff;
    max-width: 24rem;
    text-align: center;
}

.cases .swiper .swiper-slide button {
    position: relative;
    width: 20rem;
    height: 7rem;
    font-size: 1.6rem;
    color: #fff;
    overflow: hidden;
    border: 0;
    outline: 0;
    cursor: pointer;
    margin: 0 0 0 2rem;
}

.cases .swiper .swiper-slide button span {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all 1.2s;
}

.cases .swiper .swiper-slide button img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: none;
    transition: all 4.2s;
}

.cases .swiper .swiper-slide button:hover img {
    top: -6rem;
    transition: all 4.2s;
}

.cases .swiper .swiper-button-next:after {
    content: '';
    background: url(../images/arrow.png) no-repeat center;
    background-size: contain;
    width: 26px;
    height: 26px;
}

.cases .swiper .swiper-button-prev:after {
    content: '';
    background: url(../images/arrow.png) no-repeat center;
    background-size: contain;
    width: 26px;
    height: 26px;
    transform: rotate(180deg);
}

.cases .swiper .swiper-button-next {
    width: 120px;
    height: 120px;
    border: 1px solid #fff;
    border-radius: 50%;
    right: 10%;
    transition: all 0.8s;
}

.cases .swiper .swiper-button-prev {
    width: 120px;
    height: 120px;
    border: 1px solid #fff;
    border-radius: 50%;
    left: auto;
    right: 20%;
    transition: all 0.8s;
}

.cases .swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.8s;
}

.cases .swiper .swiper-button-prev:hover::after {
    filter: invert(0.8);
}

.cases .swiper .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.8s;
}

.cases .swiper .swiper-button-next:hover::after {
    filter: invert(0.8);
}

.brand {
    margin: 5rem 0;
}

.brand .swiper {
    height: 40.1vw;
    overflow: inherit;
}

.brand .swiper .swiper-slide .dec {
    text-transform: uppercase;
    writing-mode: vertical-lr;
    font-size: 1.6rem;
    color: #fff;
    padding: 3rem 0 15rem 0;
    position: relative;
}

.brand .swiper .swiper-slide .dec::before {
    content: '';
    height: 9rem;
    width: 2px;
    background: #bababa;
    position: absolute;
    top: -7rem;
    right: 7px;
}

.brand .swiper .swiper-slide .wrap {
    display: flex;
    justify-content: space-between;
}

.brand .swiper .swiper-slide .brandlist {
    display: flex;
    flex-wrap: wrap;
    max-width: 63rem;
}

.brand .swiper .swiper-slide .brandlist .item {
    width: calc(100% / 5 - 5px);
    margin: 0 5px 5px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    height: 7rem;
}

.brand .swiper .swiper-slide .brandlist .item:nth-child(5n) {
    margin: 0 0 5px 0;
}

.brand .swiper .swiper-slide .brandlist .item img {
    transition: all 1.2s;
    max-width: 100%;
}

.brand .swiper .swiper-slide .brandlist .item:hover img {
    transition: all 1.2s;
    transform: scale(1.18);
}

.brand .swiper .swiper-slide .tbox {
    text-align: right;
}

.brand .swiper .swiper-slide .tbox .name {
    font-size: 4.6rem;
    color: #fff;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.brand .swiper .swiper-slide .tbox .desc {
    font-size: 1.6rem;
    color: #fff;
}

.brand .swiper-pagination {
    bottom: 17%;
    left: 9%;
    width: 10%;
}

.brand .swiper-pagination-bullet {
    width: 2px;
    border-radius: 0;
    height: 13px;
    background: #c4c4c4;
    opacity: 1;
}

.brand .swiper-pagination-bullet-active {
    background: #c70000;
    height: 24px;
}

.indexnews .swiper {
    background: url(../images/picture/news/bg.jpg) no-repeat center;
    min-height: 33.854vw;
}

.indexnews .swiper .wp .type {
    font-size: 1.6rem;
    color: #fff;
    padding: 10rem 0 0 10rem;
    position: relative;
}

.indexnews .swiper .wp .type i {
    display: block;
    width: 8rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 13px;
    bottom: 11px;
}

.indexnews .swiper .wp .type::before {
    content: '5';
    position: absolute;
    left: 0;
    bottom: 0;
}

.indexnews .swiper .wp .tbox {
    width: 85%;
    margin: 0 auto;
    text-align: center;
    padding: 10% 0;
}

.indexnews .swiper .wp .tbox .title {
    font-size: 5rem;
    font-weight: bold;
    color: #fff;
}

.indexnews .swiper .wp .tbox .desc {
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    max-width: 50%;
    margin: 20px auto 0;
}

.indexnews .swiper .swiper-button-prev {
    width: 120px;
    height: 120px;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.8s;
}

.indexnews .swiper .swiper-button-next {
    width: 120px;
    height: 120px;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.8s;
}

.indexnews .swiper .swiper-button-prev::after {
    content: '';
    background: url(../images/arrow.png) no-repeat center;
    background-size: contain;
    width: 26px;
    height: 26px;
    transform: rotate(180deg);
}

.indexnews .swiper .swiper-button-next::after {
    content: '';
    background: url(../images/arrow.png) no-repeat center;
    background-size: contain;
    width: 26px;
    height: 26px;
}

#diffbg {
    background: #ececec;
    padding: 70px 0 30px;
}

.diff {
    width: 90%;
    margin: 0 3% 0;
    height: 36rem;
    background: #921616;
    padding: 9rem 2% 0;
    position: relative;
}

.diff .line {
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 4px;
    position: absolute;
    left: 50%;
    top: -50px;
    transform: scaleX(-50%);
    background: #fff;
}

.diff .line .t,
.b {
    height: 50px;
}

.diff .line .t {
    background: #921616;
}

.diff .line .b {
    background: #fff;
}

.diff .box1 {
    float: left;
    width: 20rem;
    height: 20rem;
    background: #000;
    color: #fff;
    font-size: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1%;
    margin: 0 9rem 0 0;
}

.diff .tbox {
    float: left;
    max-width: 35.5vw;
}

.diff .tbox .name {
    font-size: 5.6rem;
    color: #fff;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.diff .tbox .desc {
    font-size: 1.6rem;
    color: #fff;
    line-height: 32px;
}

.diff .imgpic {
    float: right;
}

.sub-banner .banpic {
    max-width: 100%;
}

.sub-banner .swiper {
    z-index: -1;
}

.sub-banner .swiper {
    position: relative;
}

.sub-banner .swiper .tbox {
    width: max-content;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sub-banner .swiper .tbox .title {
    font-size: 3rem;
    color: #fff;
}

.sub-banner .swiper .tbox .desc {
    font-size: 6rem;
    font-weight: bold;
    color: #fff;
}

.pro-center .wp {
    max-width: 1810px;
    overflow: hidden;
}

.pro-center {
    margin: -20% 0 0 0;
    padding: 0px 0 4rem 0;
}

.pro-center .wp .pro-wrapper .crumb {
    position: relative;
    padding: 2rem 0 2rem 30px;
    color: rgba(248, 247, 245, 0.5);
}

.pro-center .wp .pro-wrapper .crumb::before {
    content: '';
    width: 26px;
    height: 26px;
    top: 1.5rem;
    background: url(../images/home.png) no-repeat center;
    position: absolute;
    left: 0;
}

.pro-center .wp .pro-wrapper .crumb a {
    font-size: 1.4rem;
    color: rgba(248, 247, 245, 0.5);
}

.pro-center .wp .pro-wrapper .probox {
    background: #e8e8e8;
    padding: 4rem 0 4rem 0;
    margin: 0 0 4rem 0;
}

.pro-center .wp .pro-wrapper .probox .list {
    padding: 0 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.pro-center .wp .pro-wrapper .probox .list .item {
    width: calc(100% / 3 - 10px);
    margin: 0 10px 10px 0;
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.pro-center .wp .pro-wrapper .probox .list .item:nth-child(3n) {
    margin: 0 0 10px 0;
}

.pro-center .wp .pro-wrapper .probox .list .item img {
    width: 100%;
    height: 100%;
    transition: all 0.8s;
}

.pro-center .wp .pro-wrapper .probox .list .item:hover img {
    transition: all 0.8s;
    transform: scale(1.09);
}

.pro-center .wp .pro-wrapper .probox .list .item .name {
    position: absolute;
    width: max-content;
    left: 5%;
    bottom: 5%;
    color: #fff;
    font-size: 2.2rem;
}

.pro-center .wp .pro-wrapper .probox .list .item:hover img {
    opacity: 0.5;
}

.pro-center .wp .pro-wrapper .probox .list .item:hover .name {
    bottom: 40%;
    left: 40%;
    transform: translateY(-50%);
}

.pro-center .wp .pro-wrapper .prolist {
    width: 100%;
    background: #e8e8e8;
}

.pro-center .wp .pro-wrapper .prolist .top {
    padding: 3rem 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem 0 3rem 50px;
    align-items: center;
    flex-wrap: wrap;
}

.pro-center .wp .pro-wrapper .prolist .top .lside {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 22%;
}

.pro-center .wp .pro-wrapper .prolist .top .rside {
    width: max-content;
    /* overflow-x: scroll; */
    /* overflow-y: hidden; */
}

.pro-center .wp .pro-wrapper .prolist .top .rside .catelist {
    padding: 0 10px;
    display: flex;
    justify-content: flex-start;
    height: 50px;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.pro-center .wp .pro-wrapper .prolist .top .rside .catelist .item {
    font-size: 18px;
    color: #000;
    height: 100%;
    display: block;
    margin: 0 15px 0 0;
    line-height: 50px;
}

.pro-center .wp .pro-wrapper .prolist .top .rside .catelist .active {
    border-bottom: 2px solid #921616;
}

.pro-center .wp .pro-wrapper .prolist .top .rside .menuicon {
    display: none;
    cursor: pointer
}

.pro-center .wp .pro-wrapper .prolist .top .title {
    font-size: 3.4rem;
    font-weight: bold;
    margin: 0 20px 0 0;
    position: relative;
    padding: 0 20px 0 0;
}

.pro-center .wp .pro-wrapper .prolist .top .title::after {
    content: '';
    height: 3rem;
    width: 1px;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    right: 0px;
    top: 10px;
}

.pro-center .wp .pro-wrapper .prolist .list {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 3rem;
}

.pro-center .wp .pro-wrapper .prolist .list .wrap {
    position: relative;
}

.pro-center .wp .pro-wrapper .prolist .list .produc {
    width: calc(100% / 4 - 12px);
    margin: 0 10px 10px 0;
    overflow: hidden;
    border: 1px solid #cdcdcd;
}

.pro-center .wp .pro-wrapper .prolist .list .produc:nth-child(4n) {
    margin: 0 0 10px 0;
}

.pro-center .wp .pro-wrapper .prolist .list .produc img {
    width: 100%;
    object-fit: contain;
    transition: all 1.2s;
    height: 85%;
}

.pro-center .wp .pro-wrapper .prolist .list .produc:hover img {
    transition: all 1.2s;
    transform: scale(1.05);
}

.pro-center .wp .pro-wrapper .prolist .list .produc .name {
    font-size: 2rem;
    /* padding: 8px 0; */
    text-align: center;
    height: 10%;
}

.pro-center .wp .pro-wrapper .prolist::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 60px;
    /*高宽分别对应横竖滚动条的尺寸*/
    /* height: 20px; */
}

.pro-center .wp .pro-wrapper .prolist::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    background: #921616;
    border: 0;
    border-radius: 0;
}

.pro-center .wp .pro-wrapper .prolist::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    background: #666666;
    border-radius: 0;
}

.prodetail {
    margin: -8rem 0 5rem 0;
}

.prodetail .wp {
    max-width: 1810px;
    overflow: hidden;
}

.prodetail .wp .detailbox {
    background: #dbdbdb;
}

.prodetail .wp .crumb {
    position: relative;
    padding: 2rem 0 2rem 30px;
    color: rgba(248, 247, 245, 0.5);
}

.prodetail .wp .crumb::before {
    content: '';
    width: 26px;
    height: 26px;
    top: 1.5rem;
    background: url(../images/home.png) no-repeat center;
    position: absolute;
    left: 0;
}

.prodetail .wp .crumb a {
    font-size: 1.4rem;
    color: rgba(248, 247, 245, 0.5);
}

.prodetail .wp .detailbox .top {
    background: #fff;
    padding: 40px;
}

.prodetail .wp .detailbox .top .wrap {
    display: flex;
    justify-content: space-between;
}

.prodetail .wp .detailbox .top .wrap .imgbox {
    width: 65.3%;
}

.prodetail .wp .detailbox .top .wrap .imgbox img {
    max-width: 100%;
}

.prodetail .wp .detailbox .top .wrap .detailinfo {
    width: 32%;
}

.prodetail .wp .detailbox .top .wrap .detailinfo .title {
    font-size: 1.6rem;
    padding: 30px 0 0 0;
    color: #000;
}

.prodetail .wp .detailbox .top .wrap .detailinfo .name {
    font-size: 3.6rem;
    font-weight: bold;
    margin: 0 0 3rem 0;
}

.prodetail .wp .detailbox .top .wrap .detailinfo .line {
    display: block;
    margin: 2rem 0;
    width: 100%;
    height: 1px;
    background: #d6d6d6;
}

.prodetail .wp .detailbox .top .wrap .detailinfo .info {
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0 0 2rem 0;
    align-items: center;
    border: 1px solid #7d7d7d;
    border-right: 0;
}

.prodetail .wp .detailbox .top .wrap .detailinfo .info span {
    flex-grow: 1;
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-right: 1px solid #7d7d7d;
}

.prodetail .wp .detailbox .top .wrap .detailinfo .info span:first-child {
    background: #7d7d7d;
    color: #fff;
}

.prodetail .wp .detailbox .top .wrap .detailinfo .detailpic {
    max-width: 100%;
}

.prodetail .wp .detailbox .top .wrap .detailinfo .btm {
    padding: 1rem 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prodetail .wp .detailbox .top .wrap .detailinfo .btm .phonebox span {
    font-size: 2.2rem;
    color: #292929;
    position: relative;
    padding: 0 0 0 30px;
}

.prodetail .wp .detailbox .top .wrap .detailinfo .btm .phonebox span::before {
    content: '';
    width: 21px;
    height: 21px;
    background: url(../images/phoneicon.png) no-repeat center;
    position: absolute;
    left: 0;
    top: 2px;
}

.prodetail .wp .detailbox .top .wrap .detailinfo .btm .phonebox p {
    font-size: 4.2rem;
    font-weight: bold;
    color: #921616;
}

.prodetail .wp .detailbox .top .wrap .detailinfo .btm .phonebox .qrcode {
    width: 110px;
    height: 110px;
    overflow: hidden;
    ;
}

.prodetail .wp .detailbox .top .wrap .detailinfo .btm .phonebox .qrcode img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prodetail .swiper-pagination-bullet {
    opacity: 1;
    background: #fff;
}

.prodetail .swiper-pagination-bullet-active {
    background-color: #921616
}

.prodetail .swiper {
    position: relative;
}

.prodetail .btm {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    padding: 30px 0 0 0;
}

.prodetail .swiper2 {
    overflow: initial;
    padding: 0 0 30px 0;
}

.prodetail .imgbox .swiper {
    height: 100%;
}

.prodetail .imgbox .swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.prodetail .swiper2 .swiper-slide img {
    max-width: 100%;
}

.prodetail .swiper2 .swiper-slide p {
    font-size: 16px;
    color: #000;
    text-align: center;
}

.aboutban {
    position: relative;
}

.aboutban .crumb {
    position: absolute;
    bottom: 3%;
    z-index: 99;
    color: rgba(248, 247, 245, 0.5);
    left: 4%;
}

.aboutban .crumb::before {
    content: '';
    width: 26px;
    height: 26px;
    top: -5px;
    background: url(../images/home.png) no-repeat center;
    position: absolute;
    left: -30px;
}

.aboutban .crumb a {
    font-size: 1.4rem;
    color: rgba(248, 247, 245, 0.5);
}

.spirit {
    padding: 3rem 0;
}

.spirit .wp {
    position: relative;
    background: url(../images/picture/about/04.jpg) no-repeat right;
    padding: 15rem 0;
}

.spirit .wp .dec {
    font-size: 2.4rem;
    position: absolute;
    right: 0;
    top: 3rem;
}

.spirit .wp .tbox {
    width: 45.91vw;
    max-width: 50%;
    padding: 2.5vw 0 0 0;
}

.spirit .wp .tbox .enname {
    font-size: 7rem;
    color: #000;
    line-height: 1;
    font-weight: bold;
}

.spirit .wp .tbox .name {
    margin: 1.5rem 0 2rem 0;
    font-size: 5.3rem;
    color: #000;
}

.spirit .wp .tbox .name span {
    font-size: 2.5rem;
    color: #000;
}

.spirit .wp .tbox .desc {
    font-size: 1.4rem;
    color: #000;
    line-height: 32px;
}

.videoshow {
    height: 41.8vw;
    background: url(../images/picture/about/bg.jpg) no-repeat center;
    position: relative;
}

.videoshow .wp {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.videoshow .wp .videowp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
}

.videoshow .wp .playbtn {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 12rem;
    height: 12rem;
    display: flex;
    align-items: center;
    /* position: absolute;
left: 27%;
top: 45%; */
    cursor: pointer;
}

.videoshow .wp .playbtn span {
    display: block;
    margin: 0 0 0 5rem;
    width: 0px;
    height: 0;
    border: 3rem solid #fff;
    border-top: 2rem solid transparent;
    border-right: 2rem solid transparent;
    border-bottom: 2rem solid transparent;
}

.videoshow .wp .tbox {
    width: 33.5vw;
}

.videoshow .wp .tbox .name {
    font-size: 7rem;
    color: #fff;
}

.videoshow .wp .tbox .cont {
    font-size: 14px;
    color: #fff;
    line-height: 26px;
}

.showit .demo1 {
    display: flex;
    justify-content: flex-start;
    height: 48.69vw;
}

.showit .demo1 .imgbox {
    width: 50%;
    background: url(../images/picture/about/demo1.jpg) no-repeat left;
    background-size: inherit;
    background-attachment: fixed;
}

.showit .demo1 .tbox {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10% 0 5%;
}

.showit .demo1 .tbox .dec {
    font-size: 2.2rem;
    color: #000;
}

.showit .demo1 .tbox .name {
    font-size: 7rem;
    color: #000;
    font-weight: bold;
}

.showit .demo1 .tbox .desc {
    font-size: 14px;
    color: #000;
    line-height: 26px;
    text-align: justify;
}

.showit .demo1 .tbox .brandlist {
    display: flex;
    flex-wrap: wrap;
}

.showit .demo1 .tbox .brandlist .item {
    width: calc(100% / 5 - 5px);
    margin: 0 5px 5px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    height: 7rem;
}

.showit .demo1 .tbox .brandlist .item img {
    transition: all 1.2s;
    max-width: 100%;
}

.showit .demo2 {
    display: flex;
    justify-content: flex-start;
    height: 48.69vw;
}

.showit .demo2 .imgbox {
    width: 50%;
    background: url(../images/picture/about/demo2.jpg) no-repeat right;
    background-size: inherit;
    background-attachment: fixed;
}

.showit .demo2 .tbox .dec {
    font-size: 22px;
    color: #000;
}

.showit .demo2 .tbox {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10% 0 5%;
}

.showit .demo2 .tbox .name {
    font-size: 7rem;
    color: #000;
    font-weight: bold;
}

.showit .demo2 .tbox .desc {
    font-size: 14px;
    color: #000;
    line-height: 26px;
    text-align: justify;
}

.showit .demo3 {
    display: flex;
    justify-content: flex-start;
    height: 48.69vw;
}

.showit .demo3 .tbox .dec {
    font-size: 5rem;
    color: #000;
    font-weight: bold;
}

.showit .demo3 .tbox .dec span {
    color: #921616;
}

.showit .demo3 .imgbox {
    width: 50%;
    background: url(../images/picture/about/demo3.jpg) no-repeat left;
    background-size: inherit;
    background-attachment: fixed;
}

.showit .demo3 .tbox {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10% 0 5%;
}

.showit .demo3 .tbox .name {
    font-size: 2.2rem;
    color: #000;
    margin: 20px 0;
}

.showit .demo3 .tbox .desc {
    font-size: 14px;
    color: #000;
    line-height: 26px;
    text-align: justify;
}

.develop .swiper {
    position: relative;
}

.develop .swiper .swiper-slide {
    height: 42.03vw;
    position: relative;
}

.develop .swiper .swiper-slide .wp {
    position: relative;
    height: 100%;
}


/* .develop .swiper .swiper-pagination-bullet-active {
    background-color: #921616;
} */

.develop .swiper .swiper-slide .tbox {
    position: absolute;
    top: 40%;
    left: 0;
    text-shadow: 1px 1px 2px #000;
}

.develop .swiper .swiper-slide .tbox .name {
    font-size: 70px;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    ;
}

.develop .swiper .swiper-slide .tbox .desc {
    font-size: 18px;
    color: #fff;
    max-width: 480px;
    text-align: justify;
}

.develop .swiper .ylist {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    right: 11%;
    top: 11%;
    z-index: 101;
}

.develop .swiper .ylist span {
    font-size: 16px;
    color: #fff;
    margin: 0 0 10px 0;
    position: relative;
    user-select: none;
}

.develop .swiper .ylist span::after {
    content: '';
    width: 0;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 14px;
    right: 0;
    transition: all 0.8s;
}

.develop .swiper .ylist .active {
    margin: 0 0 20px -30px;
}

.develop .swiper .ylist .active::after {
    content: '';
    width: 25px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 14px;
    right: 0;
    transition: all 0.8s;
}

.videocenter {
    margin: -32rem 0 0 0;
}

.videocenter .wp {
    max-width: 1810px;
    overflow: hidden;
}

.videocenter .wp .videowrap {
    background: #fff;
}

.videocenter .wp .crumb {
    position: relative;
    padding: 2rem 0 2rem 30px;
    color: rgba(248, 247, 245, 0.5);
}

.videocenter .wp .crumb::before {
    content: '';
    width: 26px;
    height: 26px;
    top: 1.5rem;
    background: url(../images/home.png) no-repeat center;
    position: absolute;
    left: 0;
}

.videocenter .wp .crumb a {
    font-size: 1.4rem;
    color: rgba(248, 247, 245, 0.5);
}

.videocenter .wp .videowrap {
    padding: 50px 0 5% 50px;
    margin: 0 0 5rem 0;
}

.videocenter .wp .videowrap video {
    background: #000;
    margin: 0 auto;
    display: block;
    width: 80%;
    height: 600px;
}

.videocenter .wp .videowrap .name {
    padding: 20px 0 50px 0;
    font-size: 26px;
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
}

.newscenter {
    margin: -30rem 0 5rem 0;
}

.newscenter .wp {
    max-width: 1810px;
}

.newscenter .wp .crumb {
    position: relative;
    padding: 2rem 0 2rem 30px;
    color: rgba(248, 247, 245, 0.5);
}

.newscenter .wp .crumb::before {
    content: '';
    width: 26px;
    height: 26px;
    top: 1.5rem;
    background: url(../images/home.png) no-repeat center;
    position: absolute;
    left: 0;
}

.newscenter .wp .crumb a {
    font-size: 1.4rem;
    color: rgba(248, 247, 245, 0.5);
}

.newscenter .wp .newswrap {
    background: #e8e8e8;
    padding: 5rem 5rem;
    margin: 0 0 5rem 0;
}

.newscenter .wp .newswrap .hotnews {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.newscenter .wp .newswrap .hotnews .imgbox {
    width: 50%;
    overflow: hidden;
    height: 30.78vw;
}

.newscenter .wp .newswrap .hotnews .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
}

.newscenter .wp .newswrap .hotnews .imgbox:hover img {
    transition: all 0.8s;
    transform: scale(1.09);
}

.newscenter .wp .newswrap .hotnews .tbox {
    width: 45%;
    padding: 0 2% 0 3%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.newscenter .wp .newswrap .hotnews .tbox .name {
    font-size: 3rem;
    color: #000;
    font-weight: bold;
}

.newscenter .wp .newswrap .hotnews .tbox .desc {
    font-size: 14px;
    color: #000;
    width: 80%;
    text-align: justify;
    margin: 1rem 0 0 0;
}

.newscenter .wp .newswrap .newslist {
    padding: 3rem 0;
}

.newscenter .wp .newswrap .newslist .item {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    height: 33rem;
    align-items: center;
    background: #fff;
    padding: 0 2rem 0 0;
    margin: 0 0 14px 0;
}

.newscenter .wp .newswrap .newslist .item:hover {
    box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.5);
}

.newscenter .wp .newswrap .newslist .item .date {
    width: 15%;
    display: flex;
    margin: 0 5% 0 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.newscenter .wp .newswrap .newslist .item .date::after {
    content: '';
    height: 100px;
    width: 1px;
    position: absolute;
    background: #e5e5e5;
    top: 0;
    right: 0;
}

.newscenter .wp .newswrap .newslist .item .date .d {
    font-size: 4.2rem;
    color: #000;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.newscenter .wp .newswrap .newslist .item .date .ym {
    font-size: 14px;
    color: #000;
}

.newscenter .wp .newswrap .newslist .item .cont {
    width: 40%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.newscenter .wp .newswrap .newslist .item .cont .name {
    font-size: 3rem;
    color: #000;
    font-weight: bold;
    margin: 0 0 10px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    width: 80%;
}

.newscenter .wp .newswrap .newslist .item .cont .desc {
    font-size: 14px;
    color: #000;
    line-height: 26px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    width: 80%;
    text-align: justify;
}

.newscenter .wp .newswrap .newslist .item .imgbox {
    width: 30%;
    overflow: hidden;
    height: 90%;
}

.newscenter .wp .newswrap .newslist .item .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
}

.newscenter .wp .newswrap .newslist .item .imgbox:hover img {
    transition: all .8s;
    transform: scale(1.05);
}


/* 新闻详情 */

.newsdetail-show {
    padding: 50px 0;
    background: #f8f8f8;
}

.newsdetail-show .detailtitle {
    font-size: 29px;
    color: #333;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    font-weight: bold;
}

.newsdetail-show .desc {
    max-width: 90%;
    display: block;
    margin: 0 auto;
    border-bottom: 1px solid #cdcdcd;
    text-align: center;
}

.newsdetail-show .desc .time {
    font-size: 16px;
    font-weight: 400px;
    color: #999999;
    display: inline-block;
    text-align: center;
    margin: 20px 30px 20px 0;
}

.newsdetail-show .desc .read {
    font-size: 16px;
    font-weight: 400px;
    color: #999999;
    display: inline-block;
    text-align: left;
    ;
}

.newsdetail-show .detailcontent {
    padding: 0 30px 50px;
    max-width: 90%;
    margin: 0 auto;
}

.newsdetail-show .detailcontent img {
    max-width: 100%;
    display: block;
    margin: 10px auto;
}

.newsdetail-show .detailcontent p {
    font-size: 16px;
    color: #333;
    font-weight: 300;
    line-height: 36px;
    text-indent: 32px;
    margin: 30px 0;
}

.wp .prevnext {
    max-width: 90%;
    display: flex;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-top: 1px solid #cdcdcd;
    padding: 10px 0 0 0;
}

.wp .prevnext .prev,
.next {
    font-size: 16px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wp .prevnext .next {
    text-align: right;
}

.contactus {
    margin: -22rem 0 5rem 0;
}

.contact {
    background: #fff;
    padding: 0 0 3rem 0;
}

.contactus .wp .crumb {
    position: relative;
    padding: 2rem 0 2rem 30px;
    color: rgba(248, 247, 245, 0.5);
}

.contactus .wp .crumb::before {
    content: '';
    width: 26px;
    height: 26px;
    top: 1.5rem;
    background: url(../images/home.png) no-repeat center;
    position: absolute;
    left: 0;
}

.contactus .wp {
    max-width: 1810px;
    overflow: hidden;
}

.contactus .wp .crumb a {
    font-size: 1.4rem;
    color: rgba(248, 247, 245, 0.5);
}

.contact .wrapper {
    display: flex;
    flex-direction: row;
    padding: 5%;
}

.contact .wrapper .titlebox {
    width: 424px;
    height: fit-content;
    border-right: 1px solid #efefef;
    padding: 84px 0 0 0;
    width: 30%;
    flex-grow: 1;
}

.contact .wrapper .titlebox .entitle {
    font-size: 54px;
    font-weight: 600;
    color: #921616;
    margin: 10px 0;
}

.contact .wrapper .titlebox .cntitle {
    font-size: 26px;
    color: #000;
}

.contact .wrapper .infobox {
    padding: 0 0 0 112px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 70%;
    flex-grow: 1;
}

.contact .wrapper .infobox .com {
    padding: 80px 0 80px 0;
    border-bottom: 1px dotted #efefef;
}

.contact .wrapper .infobox .com:last-child {
    border: 0;
}

.contact .wrapper .infobox .com .name {
    font-size: 27.5px;
    color: #760606;
    margin: 0 0 15px 0;
}

.contact .wrapper .infobox .com .cont {
    font-size: 18px;
    color: #000;
    line-height: 32px;
}

.contact .map {
    width: 90%;
    margin: 0 auto;
    height: 400px;
}

.adv .wp .wrap {
    display: flex;
    justify-content: flex-start;
    padding: 50px 0;
}

.adv .wp .wrap .imgbox {
    width: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.adv .wp .wrap .tbox {
    width: 50%;
}

.adv .wp .wrap .tbox .item {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin: 0 0 5px 0;
}

.adv .wp .wrap .tbox .item .left {
    width: 20%;
    background: #921616;
    height: 10.34rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.adv .wp .wrap .tbox .item .left p {
    font-size: 4rem;
    color: #fff;
    font-weight: bold;
}

.adv .wp .wrap .tbox .item .right {
    display: flex;
    height: 10.34rem;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    width: 64%;
    padding: 10px 3% 10px 3%;
    background-color: #e4e4e4;
}

.adv .wp .wrap .tbox .item .right .title {
    font-size: 2.6rem;
    color: #921616;
    font-weight: bold;
}

.adv .wp .wrap .tbox .item .right .desc {
    font-size: 2rem;
    color: #272727;
}

.adv .wp .swiper .swiper-wrapper {
    padding: 0 0 30px 0;
}

.adv .wp .swiper .swiper-scrollbar-drag {
    background: #921616;
}

.partner .wp .title {
    font-size: 3.4rem;
    color: #921616;
    padding: 40px 0 20px 0;
    text-align: center;
    font-weight: bold;
}

.partner .wp .list {
    display: flex;
    margin: 0 0 6rem 0;
}

.partner .wp .list .item {
    flex-grow: 1;
    overflow: hidden;
    border: 1px solid #e9e9e9;
    text-align: center;
    margin: 0 5px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mode {
    height: 39vw;
    background: url(../images/picture/markting/bg.jpg) no-repeat center;
}

.mode .wp .bg2 {
    max-width: 100%;
}

.concerns {
    padding: 30px 0 80px 0;
}

.concerns img {
    max-width: 100%;
}

.advantage img {
    max-width: 100%;
}

.view {
    height: 48.125vw;
    background: url(../images/picture/markting/03.jpg) no-repeat center;
}

.view .wp .wrap {
    display: flex;
    justify-content: space-between;
    padding: 8rem 0 0 0;
}

.view .wp .wrap .tbox {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 21rem 0 0 0;
}

.view .wp .wrap .tbox .title {
    font-size: 5.4rem;
    color: #fff;
    margin: 0 0 1rem 0;
}

.view .wp .wrap .tbox .desc {
    font-size: 3rem;
    color: #fff;
    margin: 0 0 3rem 0;
}

.view .wp .wrap .tbox .cont {
    font-size: 1.8rem;
    color: #fff;
    line-height: 32px;
}

.view .wp .wrap .imgbox {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.view .wp .wrap .imgbox img {
    width: 50rem;
}

.wall {
    height: 47.8125vw;
    background: url(../images/picture/markting/05.jpg) no-repeat center;
}

.wall .wp .title {
    font-size: 54px;
    color: #fff;
    text-align: center;
    padding: 8rem 0 1rem 0;
}

.wall .wp .desc {
    font-size: 25px;
    color: #fff;
    text-align: center;
}

.wall .wp .itemlist {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 100px 0;
}

.wall .wp .itemlist .item {
    width: 250px;
    height: 250px;
    background: #fff;
    border-radius: 50%;
    margin: 0 30px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #000;
    font-weight: bold;
    text-align: center;
}

.wall .wp .itemlist .item:last-child {
    margin: 0;
}

.wall .wp .itemlist .active {
    background: #921616;
    color: #fff;
    border: 1px solid #921616;
    position: relative;
}

.wall .wp .itemlist .active::after {
    content: '';
    width: 280px;
    height: 280px;
    position: absolute;
    background: url(../images/picture/markting/06.png) no-repeat center;
    background-size: contain;
}

.wall .wp .phonebox {
    width: fit-content;
    padding: 20px 40px;
    background: #921616;
    margin: 0 auto;
    border-radius: 50px;
}

.wall .wp .phonebox p {
    position: relative;
    font-size: 34px;
    color: #fff;
    padding: 0 0 0 60px;
}

.wall .wp .phonebox p::before {
    content: '';
    width: 36px;
    height: 36px;
    background: url(../images/picture/markting/07.png) no-repeat center;
    position: absolute;
    left: 12px;
    top: 8px;
}

.healp {
    height: 49.53vw;
    background: url(../images/picture/markting/bg3.jpg) no-repeat bottom;
}

.healp .wp {
    padding: 5rem 0 0 0;
}

.healp .wp .titledemo .title span {
    color: #000;
}

.healp .wp .list {
    display: flex;
    flex-wrap: wrap;
    padding: 90px 0 0 0;
}

.healp .wp .list .item {
    width: calc(100% / 4 - 10px);
    margin: 0 10px 120px 0;
    position: relative;
    background: #000;
}

.healp .wp .list .item:nth-child(4n) {
    margin: 0 0 120px 0;
}

.healp .wp .list .item .iconpic {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.healp .wp .list .item .bgpic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.healp .wp .list .item .title {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 26px;
    color: #fff;
    transform: translate(-50%, -50%);
}

.shop .wp {
    padding: 5rem 0 0 0;
}

.shop .wp .list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 5rem 0;
}

.shop .wp .list .item {
    width: calc(100% / 3 - 10px);
    margin: 0 10px 10px 0;
    overflow: hidden;
}

.shop .wp .list .item:nth-child(3n) {
    margin: 0 0 10px 0;
}

.shop .wp .list .item img {
    transition: all 1.2s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop .wp .list .item:hover img {
    transition: all 1.2s;
    transform: scale(1.08);
}

.formbox {
    height: 31.354vw;
    background: url(../images/picture/markting/bg4.jpg) no-repeat center;
}

.formbox .wp {
    display: flex;
    flex-grow: 1;
    height: 100%;
    align-items: center;
}

.formbox .wp .tbox {
    width: 32%;
}

.formbox .wp .tbox .dec {
    font-size: 2rem;
    color: #fff;
    ;
}

.formbox .wp .tbox .title {
    font-size: 6rem;
    color: #fff;
    font-weight: bold;
}

.formbox .wp .tbox .phone {
    font-size: 6rem;
    color: #fff;
    font-weight: bold;
}

.formbox .wp .tbox .phone span {
    font-size: 2rem;
    font-weight: 400;
}

.formbox .wp .form {
    display: flex;
    flex-direction: column;
    width: 32%;
    justify-content: center;
    height: 90%;
}

.formbox .wp .form input {
    width: 96%;
    margin: 0 0 10px 0;
    height: 6rem;
    padding: 0 0 0 4%;
    outline: none;
    border: 0;
}

.formbox .wp .form input::placeholder {
    font-size: 18px;
    color: #000;
}

.formbox .wp .form textarea {
    width: 96%;
    padding: 10px 0 0 4%;
    height: 17rem;
    margin: 0 0 10px 0;
    outline: none;
    border: 0;
}

.formbox .wp .form textarea::placeholder {
    font-size: 18px;
    color: #000;
}

.formbox .wp .form button {
    width: 100%;
    text-align: center;
    height: 6rem;
    background: #921616;
    outline: none;
    border: none;
    color: #fff;
    font-size: 22px;
}

.formbox .wp .mesbox {
    border: 1px solid #efefef;
    width: 32%;
    height: calc(35rem + 50px);
    /* height: 400px; */
    margin: 0 0 0 1%;
    overflow: hidden;
}

.formbox .wp .mesbox tr td {
    height: 20px;
    color: #fff;
}

.formbox .wp .mesbox table {
    margin: 0 auto;
}

.case-center .caselist {
    background: #e8e8e8;
    padding: 5rem 4rem;
}

.case-center .caselist .item {
    background: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 20px 0;
}

.case-center .caselist .item:nth-child(even) {
    flex-direction: row-reverse;
}

.case-center .caselist .item .imgbox {
    width: 60%;
    overflow: hidden;
}

.case-center .caselist .item .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.2s
}

.case-center .caselist .item .imgbox:hover img {
    transition: all 1.2s;
    transform: scale(1.05);
}

.case-center .caselist .item .tbox {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 0 2% 0 3%;
    flex-direction: column;
}

.case-center .caselist .item .tbox .title {
    font-size: 28px;
    color: #000;
    font-weight: bold;
}

.case-center .caselist .item .tbox .desc {
    font-size: 16px;
    color: #000;
}

.design-form {}

.design-form .wp {
    max-width: 1607px;
}

.design-form .wp .formbox2 {
    height: 35.9375vw;
    background: url(../images/picture/designer/formbg.jpg) no-repeat center;
    background-size: cover;
    margin: 6rem 0;
    display: flex;
    justify-content: space-between;
}

.design-form .wp .formbox2 .leftside {
    max-width: 60.9%;
    padding: 5vw 0.2vw 0 3.7vw;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.design-form .wp .formbox2 .leftside .title {
    color: #dc0606;
}

.design-form .wp .formbox2 .leftside .title span {
    font-size: 10.24rem;
    color: #fff;
    font-weight: bold;
    color: #dc0606;
}

.design-form .wp .formbox2 .leftside .title i {
    color: #fff;
    font-weight: bold;
    display: inline-block;
    padding: 0 0 0 0.5rem;
}

.design-form .wp .formbox2 .leftside .title i b {
    font-size: 3.5rem;
    display: block;
}

.design-form .wp .formbox2 .leftside .title i>em {
    font-size: 2.4rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
}

.design-form .wp .formbox2 .leftside .layui-form .layui-form-item {
    width: 83rem;
    display: flex;
    justify-content: flex-start;
}

.design-form .wp .formbox2 .leftside .layui-form .layui-form-item .layui-inline {
    /* flex-grow: 1;
    display: flex; */
    margin: 0;
    width: 98%;
}


/* .design-form .wp .formbox2 .leftside .layui-form .layui-form-item .layui-inline .layui-form-label {
    flex-grow: 1;
} */

.design-form .wp .formbox2 .leftside .layui-form .item1 .layui-input-inline {
    width: 80%!important;
}

.design-form .wp .formbox2 .leftside .layui-form .item2 .layui-inline {
    width: 33.3%;
    margin: 0 0.6% 0 0;
}

.design-form .wp .formbox2 .leftside .layui-form .item2 .layui-inline .layui-form-select {
    width: 100%;
}

.design-form .wp .formbox2 .leftside .layui-form .layui-form-label {
    text-align: left;
    font-size: 16px;
    color: #fff;
    font-weight: 100;
    line-height: 6rem;
    padding: 0;
    width: 15%;
}

.design-form .wp .formbox2 .leftside .layui-form .item2 .layui-form-label {
    width: 8%;
}

.design-form .wp .formbox2 .leftside .layui-form .item3 .layui-form-label {
    width: 7%;
}

.design-form .wp .formbox2 .leftside .layui-form .item4 .layui-form-label {
    width: 7%;
}

.design-form .wp .formbox2 .leftside .layui-form .item1 {
    width: 98%;
}

.design-form .wp .formbox2 .leftside .layui-form .item2 {
    width: 96%;
}

.design-form .wp .formbox2 .leftside .layui-form .item3 .layui-input-inline {
    width: 90.5%;
}

.design-form .wp .formbox2 .leftside .layui-form .layui-input {
    color: rgba(255, 255, 255, .85);
    border-radius: 2px;
    height: 6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
}

.design-form .wp .formbox2 .leftside .layui-form .layui-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.design-form .wp button {
    position: relative;
    width: 21rem;
    height: 7rem;
    font-size: 1.6rem;
    color: #fff;
    overflow: hidden;
    border: 0;
    outline: 0;
    cursor: pointer;
    background: #fff;
    max-width: 210px;
    max-height: 70px;
}

.design-form .wp button span {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all 1.2s;
    width: 90%;
}

.design-form .wp button img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: none;
    transition: all 4.2s;
}

.design-form .wp button:hover img {
    top: -6rem;
    transition: all 4.2s;
}

.design-form .layui-form-select dl dd.layui-this {
    background-color: #921616;
}

.design-form .wp .formbox2 .rside {
    display: flex;
    justify-content: center;
    width: 38%;
    align-items: center;
}

.design-form .wp .formbox2 .t2 {
    display: none;
    max-width: 96%;
    margin: 20px auto;
}


/* 证书资质 */

#wapcertifi {
    display: none;
}

.certifi {
    padding-bottom: calc(20px + 0.5vw);
    background: url(../image/bg.jpg) no-repeat;
    background-size: cover;
}

.certifi .swiper-wrapper {
    padding: 0 0 30px 0;
    align-items: center;
}

.certifi .swiper .swiper-wrapper .swiper-slide img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: cover;
}

.certifi .swiper .neiceng .swiper-slide {
    position: relative;
    overflow: hidden;
    width: calc(100% / 5 - 20px);
    margin-right: 20px;
    background: #fff;
}

.certifi .swiper .neiceng .swiper-slide:before {
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: url(../images/picture/certifi/rongyupng.png) no-repeat;
    background-size: 100% 100%;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.certifi .swiper .neiceng .swiper-slide.d-img:before {
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: url(../images/picture/certifi/rongyupng.png) no-repeat;
    background-size: 100% 100%;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.certifi .swiper-slide.d-img {
    display: block;
}

.certifi .swiper .neiceng .swiper-slide.d-img .dimg {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    height: calc(50% - 10px);
}

.certifi .swiper .neiceng .swiper-slide.d-img .dimg:before {
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: url(../images/picture/certifi/rongyupng.png) no-repeat;
    background-size: 100% 100%;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.certifi .swiper .neiceng .swiper-slide.d-img .dimg img {
    width: 100%;
    height: calc(145px + 2.2vw);
    padding-left: 2.5%;
}

.certifi .swiper .neiceng .swiper-slide img {
    transform: scale(0.9);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.certifi_nav {
    text-align: center;
    margin-bottom: calc(15px + 0.5vw);
}

.certifi_nav ul li {
    padding: 15px 35px;
    background: #dbdbdb;
    color: #000;
    margin: 0 5px;
    display: inline-block;
    font-size: 17px;
}

.certifi_nav ul li.active {
    background: #1b3665;
    color: #fff;
}


/* ------------------------------------------媒介查询---------------------------------------------- */

@media screen and (min-width:1921px) {
    .banner .banpic {
        width: 100%;
    }
    .sub-banner .banpic {
        width: 100%;
    }
}

@media screen and (max-width:1650px) {
    .design-form .wp .formbox2 .leftside .layui-form .item3 .layui-input-inline {
        width: 90%;
    }
    .view .wp .wrap .imgbox img {
        width: 43rem;
    }
    .healp {
        height: 60.53vw;
    }
    .brand .swiper .swiper-slide .dec {
        padding: 0rem 0 7rem 0;
    }
    .brand .swiper .swiper-slide {
        max-width: 96%;
        margin: 0 2%;
    }
    .videomodule .wp .tbox .name {
        font-size: 4rem;
    }
    .series .wp .list {
        top: 13%;
    }
}

@media screen and (max-width:1440px) {
    .formbox .wp .tbox .title {
        font-size: 4rem;
    }
    .formbox .wp .tbox {
        width: 26%;
    }
    .formbox .wp .tbox .phone {
        font-size: 4rem;
    }
    .view {
        height: 60.125vw;
    }
    html {
        font-size: 58%;
    }
    .prodetail .wp .detailbox .top .wrap .detailinfo .info span {
        font-size: 12px;
    }
}

@media screen and (max-width:1366px) {
    .design-form .wp .formbox2 .leftside .layui-form .item3 .layui-input-inline {
        width: 89.5%;
    }
    .healp .wp .list .item {
        margin: 0 10px 100px 0;
    }
    .healp .wp .list .item:nth-child(4n) {
        margin: 0 0 100px 0;
    }
    .healp .wp .list .item .iconpic {
        width: 84px;
    }
    .wall .wp .phonebox p::before {
        left: 10px;
        top: 0px;
    }
    .wall {
        height: max-content;
        padding: 5rem 0;
    }
    .wall .wp .phonebox p {
        position: relative;
        font-size: 26px;
    }
    .wall .wp .itemlist .item {
        width: 180px;
        height: 180px;
        font-size: 22px;
    }
    .wall .wp .itemlist .active::after {
        content: '';
        width: 220px;
        height: 220px;
    }
    .contact .wrapper .titlebox .entitle {
        font-size: 41px;
    }
    .develop .swiper .swiper-slide {
        height: 53.03vw;
    }
    .spirit .wp {
        padding: 25rem 0;
    }
    .prodetail .wp .detailbox .top .wrap .detailinfo .title {
        font-size: 1.4rem;
        padding: 10px 0 0 0;
    }
    .prodetail .wp .detailbox .top .wrap .detailinfo .btm .phonebox p {
        font-size: 3.2rem;
    }
    .prodetail .wp .detailbox .top .wrap .detailinfo .name {
        font-size: 2.6rem;
        font-weight: bold;
        margin: 0px 0 2rem 0;
    }
    .prodetail .wp .detailbox .top .wrap .detailinfo {
        width: 40%;
    }
    .prodetail .wp .detailbox .top .wrap .imgbox {
        width: 57.3%;
    }
    .pro-center .wp .pro-wrapper .prolist .list {
        max-width: 100%;
    }
    .diff .imgpic {
        width: 25%;
    }
    .diff .box1 {
        margin: 0 5rem 0 0;
    }
    .diff .tbox .desc {
        font-size: 1.6rem;
    }
    .diff .tbox .name {
        font-size: 4.6rem;
    }
    .cases .swiper .wp {
        max-width: 90%;
    }
    html {
        font-size: 50%;
    }
    .videomodule .wp .tbox .name {
        font-size: 4.3rem;
    }
    .videomodule .wp .tbox .name span {
        font-size: 2.4rem;
        color: #fff;
    }
    .design-form .wp .formbox2 .leftside .layui-form .layui-form-label {
        text-align: left;
        font-size: 14px;
    }
}

@media screen and (max-width:1280px) {
    .design-form .wp .formbox2 .rside .t1 {
        max-width: 50%;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item1 {
        width: 91.5%;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item2 {
        width: 90%;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item3 .layui-input-inline {
        width: 84%;
    }
    .design-form .wp .formbox2 .leftside .layui-form .layui-form-label {
        text-align: left;
        font-size: 14px;
    }
    .design-form .wp .formbox2 {
        height: 46.9375vw;
    }
    .healp {
        height: 67.53vw;
    }
    .showit .demo3 .tbox .name {
        font-size: 18px;
    }
    .showit .demo3 .tbox .dec {
        font-size: 3rem;
    }
    .showit .demo2 .tbox {
        width: 45%;
        padding: 0 3% 0 2%;
    }
    .showit .demo3 .tbox {
        width: 45%;
        padding: 0 3% 0 2%;
    }
    .showit .demo1 {
        height: 63.69vw;
    }
    .showit .demo1 .tbox {
        width: 45%;
        padding: 0 3% 0 2%;
    }
    .videoshow .wp .videowp {
        width: 28%
    }
    .videoshow .wp .tbox {
        width: 60.5vw;
    }
    .spirit .wp {
        padding: 21rem 0;
    }
    .series .wp .list {
        top: 15%;
    }
    .brand .swiper-pagination {
        bottom: 7%;
    }
    .indexnews .swiper .swiper-button-next {
        width: 90px;
        height: 90px;
    }
    .indexnews .swiper .swiper-button-prev {
        width: 90px;
        height: 90px;
    }
    .indexnews .swiper .wp .tbox .title {
        font-size: 4rem;
    }
    .brand .swiper .swiper-slide .dec {
        padding: 3rem 0 7rem 0;
    }
    .cases .swiper .swiper-slide .enname {
        padding: 14rem 0 6rem 0;
    }
    .cases .swiper .swiper-button-prev {
        width: 80px;
        height: 80px;
        right: 22%;
    }
    .cases .swiper .swiper-button-next {
        width: 80px;
        height: 80px;
    }
    .videomodule .wp .tbox .name {
        font-size: 3.8rem;
    }
    .videomodule .wp .tbox .name span {
        font-size: 2.2rem;
        color: #fff;
    }
    .videomodule .wp .tbox .desc {
        font-size: 1.6rem;
    }
    .videomodule {
        height: 54.97vw;
    }
    .videomodule .wp .tbox {
        width: 61.91vw;
    }
}

@media screen and (max-width:1170px) {
    .formbox .wp .mesbox {
        height: calc(30rem + 50px);
    }
    .design-form .wp .formbox2 .leftside .layui-form .item3 .layui-input-inline {
        width: 82.8%;
    }
}

@media screen and (max-width:1024px) {
    .pro-center .wp .pro-wrapper .prolist .top .rside .catelist .item {
        height: auto;
    }
    .pro-center .wp .pro-wrapper .prolist .top {
        padding: 3rem 20px 3rem 20px;
    }
    .pro-center .wp .pro-wrapper .prolist .top .rside .catelist {
        position: fixed;
        z-index: 9999;
        left: -100%;
        width: 30%;
        background: #fff;
        height: 100vh;
        top: 0;
        flex-direction: column;
        overflow-y: scroll;
        flex-wrap: nowrap;
    }
    .pro-center .wp .pro-wrapper .prolist .top .rside .menuicon {
        display: block;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item4 .layui-form-label {
        width: 13%;
    }
    .design-form .wp .formbox2 {
        height: 55.9375vw;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item1 {
        width: 100%;
        flex-direction: column;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item3 .layui-form-label {
        width: 13%;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item3 .layui-input-inline {
        width: 71%;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item1 .layui-inline {
        margin: 0 0 5px 0;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item2 .layui-form-label {
        width: 18%;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item2 {
        width: 94%;
    }
    .newscenter .wp .newswrap .newslist .item .cont .name {
        font-size: 20px;
    }
    .newscenter .wp .newswrap .hotnews .tbox .name {
        font-size: 22px;
    }
    .develop .swiper .swiper-slide {
        height: 80.03vw;
    }
    .series .wp .list {
        top: 12%;
    }
    header .nav {
        display: none;
    }
    header .wapmenu {
        display: block;
    }
    html {
        font-size: 50%
    }
    .numbox .wp .item p span {
        font-size: 5rem;
    }
    .videomodule .wp .tbox .enname {
        font-size: 6rem;
    }
}

@media screen and (max-width:992px) {
    .design-form .wp .formbox2 .rside {
        width: 25%;
    }
    .design-form .wp .formbox2 .rside .t1 {
        max-width: 65%;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item4 .layui-form-label {
        width: 10%;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item3 .layui-form-label {
        width: 10%;
    }
    .design-form .wp .formbox2 {
        height: 73.9375vw;
    }
    footer .wp .func .item span i {
        display: block;
    }
    .case-center .caselist .item .tbox .title {
        font-size: 24px;
    }
    .case-center .caselist .item .tbox .desc {
        font-size: 14px;
    }
    .formbox .wp .tbox .phone {
        font-size: 3rem;
    }
    .formbox {
        height: 53.354vw;
    }
    .wall .wp .itemlist .active::after {
        content: '';
        width: 140px;
        height: 140px;
    }
    .wall .wp .itemlist .item {
        width: 120px;
        height: 120px;
        font-size: 14px;
        margin: 0 14px 30px 0;
    }
    .healp .wp .list .item .iconpic {
        width: 64px;
    }
    .healp {
        height: 79.53vw;
    }
    .view {
        height: 89.125vw;
    }
    .adv .swiper .swiper-slide img {
        max-width: 100%;
    }
    .adv .swiper .swiper-slide {
        margin: 0 5px 0 0;
    }
    .newscenter .wp .newswrap .newslist .item .cont .desc {
        font-size: 13px;
        color: #000;
        line-height: 21px;
    }
    .newscenter .wp .newswrap .hotnews .tbox .desc {
        font-size: 13px;
    }
    .newscenter .wp .newswrap .hotnews .tbox .name {
        font-size: 18px;
    }
    .newscenter .wp .newswrap .newslist .item .cont .name {
        font-size: 16px;
    }
    .newscenter .wp .newswrap .newslist .item {
        height: 23rem;
    }
    .videocenter {
        margin: -23rem 0 0 0;
    }
    .videocenter .wp .videowrap video {
        height: 400px;
    }
    .showit .demo1 .tbox .name {
        font-size: 6rem;
    }
    .showit .demo1 {
        height: 71.69vw;
    }
    .showit .demo1 .tbox .desc {
        font-size: 12px;
        line-height: 22px;
    }
    .videoshow {
        height: 66vh;
        padding: 6rem 0;
    }
    .videoshow .wp {
        justify-content: center;
        flex-direction: column;
    }
    .videoshow .wp .tbox {
        width: 96vw;
    }
    .spirit .wp {
        padding: 27rem 0;
    }
    .spirit .wp .tbox {
        width: 96%;
        max-width: 100%;
        padding: 0.5vw 2% 0 2%;
    }
    .prodetail .wp .detailbox .top .wrap .detailinfo .title {
        font-size: 18px;
    }
    .prodetail .wp .detailbox .top .wrap {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
    }
    .prodetail .wp .detailbox .top .wrap .detailinfo {
        width: 100%;
    }
    .prodetail .wp .detailbox .top .wrap .imgbox {
        width: 100%;
    }
    .pro-center .wp .pro-wrapper .prolist .list .produc {
        width: calc(100% / 3 - 12px);
    }
    .diff .tbox .name {
        font-size: 3.6rem;
    }
    .indexnews .swiper .swiper-button-next {
        width: 60px;
        height: 60px;
    }
    .indexnews .swiper .swiper-button-prev {
        width: 60px;
        height: 60px;
    }
    .indexnews .swiper .wp .tbox .title {
        font-size: 3rem;
    }
    .brand .swiper .swiper-slide .tbox .name {
        font-size: 3.6rem;
    }
    .brand .swiper .swiper-slide .brandlist {
        max-width: 48rem;
    }
    .brand .swiper {
        height: 54.1vw;
    }
    .cases .swiper .swiper-slide .enname {
        padding: 6rem 0 6rem 0;
    }
    .series .wp .list {
        top: 11%;
    }
    .series .wp .cont .cnname {
        font-size: 3rem;
    }
    .series .wp .cont .enname {
        font-size: 5rem;
        margin: 5rem 0 0 0;
    }
    .series .wp .cont .cnname {
        margin: 1rem 0 5rem 0;
    }
    .series .wp .list .item a {
        font-size: 1.6rem;
    }
    .module .wp .wrapper .item .tbox .name {
        font-size: 2rem;
    }
    .module .wp .wrapper {
        margin: -12rem 0 0 0;
    }
    .videobox {
        width: 90%;
        height: 65vw;
    }
    .videomodule .wp .playbtn {
        right: 12%;
        top: 12%;
    }
    .videomodule .wp .tbox .name {
        font-size: 4rem;
    }
    .videomodule .wp .tbox .enname {
        font-size: 5rem;
    }
    .videomodule .wp .tbox {
        width: 96.91vw;
        max-width: 100%;
        padding: 4.5vw 0 0 0;
    }
    .videomodule .wp .tbox {
        padding: 6.5vw 0 0 0;
    }
    .numbox {
        height: fit-content;
        background-color: #e8e8e8;
        padding: 3rem;
    }
    .numbox .wp .item::after {
        height: 80%;
        top: 10%;
    }
}

@media screen and (max-width:768px) {
    .design-form .wp .formbox2 .rside {
        width: 0;
    }
    .design-form .wp .formbox2 {
        height: 75.9375vw;
        padding: 30px 0;
    }
    .design-form .wp .formbox2 .t2 {
        display: block;
    }
    .design-form .wp .formbox2 .rside .t1 {
        display: none;
    }
    .case-center .caselist .item .tbox .title {
        font-size: 20px;
    }
    .formbox {
        height: max-content;
        background-size: cover;
        padding: 0 0 5rem 0;
    }
    .formbox .wp .form {
        width: 100%;
        margin: 0 0 3rem 0;
    }
    .formbox .wp .mesbox {
        width: 100%;
    }
    .formbox .wp {
        flex-direction: column;
    }
    .formbox .wp .tbox {
        width: 100%;
        margin: 3rem 0;
    }
    .healp .wp .list .item .iconpic {
        width: 54px;
    }
    .healp .wp .list .item .title {
        font-size: 16px;
    }
    .wall .wp .desc {
        font-size: 22px;
    }
    .wall .wp .title {
        font-size: 36px;
    }
    .wall .wp .itemlist .active::after {
        content: '';
        width: 160px;
        height: 160px;
    }
    .wall .wp .itemlist .item {
        width: 140px;
        height: 140px;
        font-size: 14px;
    }
    .wall .wp .itemlist {
        flex-wrap: wrap;
    }
    .view .wp .wrap .imgbox {
        width: 70%;
    }
    .view .wp .wrap .imgbox img {
        width: 100%;
    }
    .view .wp .wrap .imgbox {
        margin: 30px auto;
    }
    .view {
        height: max-content;
        background-size: cover;
        padding: 0 0 5rem 0;
    }
    .view .wp .wrap .tbox {
        padding: 0;
    }
    .view .wp .wrap {
        flex-direction: column-reverse;
    }
    .view .wp .wrap .tbox {
        width: 100%;
    }
    .mode {
        height: 51vw;
    }
    .partner .wp .list {
        flex-wrap: wrap;
    }
    .partner .wp .list .item {
        width: calc(100% / 5 - 7px);
        margin: 0 5px 5px 0;
    }
    .partner .wp .list .item:nth-child(5n) {
        margin: 0 0 5px 0;
    }
    .adv .wp .wrap .tbox .item .right {
        width: 80%;
    }
    .adv .wp .wrap {
        flex-direction: column;
    }
    .adv .wp .wrap .imgbox {
        width: 100%;
    }
    .adv .wp .wrap .tbox {
        width: 100%;
        margin: 3rem 0 0 0;
    }
    .contact .wrapper .titlebox .entitle {
        font-size: 30px;
    }
    .newscenter {
        margin: -16rem 0 0 0;
    }
    .showit .demo1 .tbox .desc {
        font-size: 14px;
        line-height: 26px;
    }
    .showit .demo1 .tbox .brandlist {
        margin: 20px 0;
    }
    .showit .demo1 .tbox .dec {
        font-size: 22px;
    }
    .showit .demo1 .imgbox {
        width: 100%;
        background: url(../images/picture/about/demo1.jpg) no-repeat left;
        background-size: contain;
        /* background-attachment: fixed; */
        height: 400px;
    }
    .showit .demo2 .imgbox {
        width: 100%;
        height: 400px;
        background: url(../images/picture/about/demo2.jpg) no-repeat center;
        background-size: contain;
        /* background-attachment: fixed; */
    }
    .showit .demo3 .imgbox {
        width: 100%;
        height: 400px;
        background-size: contain;
        background-attachment: local;
    }
    .showit .demo1 {
        height: 100%;
        flex-direction: column;
    }
    .showit .demo2 {
        height: 100%;
        flex-direction: column-reverse;
    }
    .showit .demo3 {
        height: 100%;
        flex-direction: column;
    }
    .showit .demo1 .tbox {
        width: 95%;
        padding: 20px 3% 0 2%;
    }
    .showit .demo2 .tbox {
        width: 95%;
        padding: 20px 3% 20px 2%;
    }
    .showit .demo3 .tbox {
        width: 95%;
        padding: 20px 3% 20px 2%;
    }
    .prodetail .swiper2 .swiper-slide p {
        font-size: 12px;
    }
    .diff .tbox {
        float: left;
        max-width: 52.5vw;
    }
    .diff .imgpic {
        width: 25%;
        position: absolute;
        right: 5%;
    }
    .brand .swiper .swiper-slide .tbox .name {
        font-size: 2.5rem;
    }
    .brand .swiper {
        height: 71.1vw;
    }
    .brand .swiper .swiper-slide .tbox .desc {
        font-size: 12px;
    }
    .cases .swiper .swiper-button-prev {
        right: 30%;
    }
    .cases .swiper .swiper-slide .enname {
        font-size: 5rem;
        padding: 6rem 0 2rem 0;
    }
    .series .wp .list .item {
        margin: 0 0 1.4rem 0;
    }
    .series .wp .cont button {
        position: relative;
        width: 15rem;
        height: 5rem;
        font-size: 1rem;
    }
    .series .wp .cont .enname {
        font-size: 4rem;
    }
    .series .wp .cont .cnname {
        font-size: 2rem;
    }
    .series .wp .list {
        top: 10%;
    }
    .videobox {
        width: 90%;
        height: 70vw;
    }
    .numbox .wp .item p span {
        font-size: 4rem;
    }
    .numbox .wp .item::after {
        height: 6.5rem;
    }
    .numbox .wp .item .desc {
        font-size: 1rem;
        color: #666666;
    }
    f.healp .wp .list .item .title .videomodule .wp .tbox .enname {
        font-size: 4rem;
    }
    .videomodule .wp .tbox .name span {
        font-size: 1.6rem;
    }
    .videomodule {
        height: 80.97vw;
    }
}

@media screen and (max-width:640px) {
    .pro-center .wp .pro-wrapper .prolist .top .rside .catelist {
        width: 40%;
    }
    .spirit .wp .tbox .enname {
        color: #fff;
        text-shadow: 1px 1px 2px #000;
    }
    .spirit .wp .tbox .name {
        color: #fff;
        text-shadow: 1px 1px 2px #000;
    }
    .spirit .wp .tbox .name span {
        color: #fff;
        text-shadow: 1px 1px 2px #000;
    }
    .certifi .swiper .neiceng .swiper-slide {
        width: calc(100% / 2 - 20px);
    }
    .certifi .swiper .swiper-wrapper .swiper-slide img {
        height: auto;
    }
    #wapcertifi {
        display: block;
    }
    #pccertifi {
        display: none;
    }
    .design-form .wp .formbox2 .leftside .layui-form .layui-form-label {
        float: inherit;
    }
    .design-form .wp .formbox2 .leftside .layui-form .layui-form-item {
        display: block;
    }
    .design-form .wp .formbox2 .leftside {
        max-width: 85.9%;
    }
    .design-form .wp .formbox2 {
        height: 87.9375vw;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item2 .layui-inline {
        width: 26.3%;
        margin: 0 0.6% 0 0;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item3 .layui-input-inline {
        width: 90%;
    }
    .series .wp .cont {
        width: 96vw;
    }
    .develop .swiper .ylist {
        display: none;
    }
    footer .wp .func .item span i {
        font-size: 16px!important;
    }
    .banner {
        display: none;
    }
    .mbanner {
        display: block;
    }
    .pro-center .wp .pro-wrapper .prolist .list .produc:nth-child(4n) {
        margin: 0 10px 10px 0;
    }
    .pro-center .wp .pro-wrapper .prolist .list .produc:nth-child(2n) {
        margin: 0 0 10px 0;
    }
    .case-center .caselist {
        padding: 20px 10px;
    }
    .case-center .caselist .item .tbox .title {
        font-size: 18px;
    }
    .case-center .caselist .item .tbox .desc {
        font-size: 12px;
    }
    .videocenter .wp .crumb a {
        font-size: 14px;
    }
    .shop .wp .list .item {
        width: calc(100% / 2 - 10px);
    }
    .shop .wp .list .item:nth-child(3n) {
        margin: 0 10px 10px 0;
    }
    .shop .wp .list .item:nth-child(2n) {
        margin: 0 0 10px 0;
    }
    .healp {
        height: max-content;
    }
    .healp .wp .list .item .title {
        font-size: 18px;
    }
    .healp .wp .list .item .iconpic {
        width: 88px;
    }
    .healp .wp .list .item {
        width: calc(100% / 2 - 10px);
    }
    .concerns {
        padding: 30px 0 10px 0;
    }
    .wall .wp .phonebox p::before {
        left: -3px;
        top: 4px;
        width: 18px;
        height: 18px;
        background-size: contain;
    }
    .wall .wp .phonebox p {
        position: relative;
        font-size: 18px;
        padding: 0 0 0 20px;
    }
    .contact .wrapper .infobox .com .cont {
        font-size: 16px;
    }
    .contact .wrapper .titlebox .cntitle {
        font-size: 22px;
    }
    .contactus .wp .crumb a {
        font-size: 14px;
    }
    .contact .wrapper .infobox .com .name {
        font-size: 24px;
    }
    .contact .map {
        height: 400px;
    }
    .contact .wrapper {
        flex-direction: column;
    }
    .contact .wrapper .titlebox {
        width: 100%;
        border-right: 0
    }
    .contact .wrapper .infobox {
        padding: 0;
        width: 100%;
    }
    .newscenter .wp .newswrap {
        padding: 1rem 0 0 0;
    }
    .newscenter .wp .newswrap {
        padding: 5rem 1rem;
    }
    .newscenter .wp .crumb a {
        font-size: 14px;
    }
    .newscenter .wp .newswrap .newslist .item .imgbox {
        width: 100%;
        overflow: hidden;
        height: auto;
    }
    .newscenter .wp .newswrap .newslist .item {
        height: max-content;
        flex-direction: column-reverse;
        padding: 4% 0;
    }
    .newscenter .wp .newswrap .hotnews .tbox {
        width: 96%;
        padding: 4% 2%;
    }
    .newscenter .wp .newswrap .hotnews .imgbox {
        width: 100%;
        overflow: hidden;
        height: 65.78vw;
    }
    .newscenter .wp .newswrap .hotnews {
        flex-direction: column;
    }
    .newscenter .wp .newswrap .hotnews .tbox .name {
        font-size: 16px;
    }
    .newscenter .wp .newswrap .hotnews .tbox .desc {
        font-size: 12px;
        width: 96%;
    }
    .newscenter .wp .newswrap .newslist .item .cont .name {
        font-size: 15px;
    }
    .newscenter .wp .newswrap .newslist .item .cont .desc {
        font-size: 12px;
        color: #000;
        line-height: 19px;
        -webkit-line-clamp: 2;
        width: 90%;
    }
    .newscenter .wp .newswrap .newslist .item .cont {
        width: 90%;
        padding: 5% 0;
    }
    .newscenter .wp .newswrap .newslist .item .date {
        display: none;
    }
    .videocenter .wp .videowrap {
        padding: 50px 0;
    }
    .videocenter .wp .videowrap video {
        height: 300px;
    }
    .videocenter .wp .videowrap .name {
        font-size: 16px;
    }
    .spirit .wp .tbox .name span {
        font-size: 20px;
    }
    .spirit .wp .tbox .desc {
        font-size: 18px;
        color: #fff;
        text-shadow: 1px 1px 2px #000;
    }
    .develop .swiper .swiper-slide .tbox .name {
        font-size: 38px;
    }
    .develop .swiper .swiper-slide .tbox .desc {
        font-size: 14px;
        color: #fff;
        max-width: 270px;
    }
    .develop .swiper .swiper-slide {
        height: 100vw;
    }
    .showit .demo3 .tbox .dec {
        font-size: 24px;
    }
    .videoshow .wp .videowp {
        width: 28%;
        height: 13vh;
        margin: 30px 0;
    }
    .spirit .wp .dec {
        font-size: 16px;
        position: absolute;
        right: 0;
        top: -28px;
    }
    .spirit {
        padding: 7rem 0;
    }
    .spirit .wp {
        padding: 120px 0;
    }
    .prodetail .wp .crumb a {
        font-size: 14px;
    }
    .prodetail .wp .detailbox .top .wrap .detailinfo .btm .phonebox span {
        font-size: 18px;
    }
    .prodetail .wp .detailbox .top {
        padding: 40px 10px;
    }
    .pro-center .wp .pro-wrapper .prolist::-webkit-scrollbar {
        width: 0px;
    }
    .pro-center .wp .pro-wrapper .prolist .list .produc {
        width: calc(100% / 2 - 12px);
    }
    .indexnews .swiper {
        background-size: cover;
    }
    .design .wp {
        align-items: flex-start;
    }
    .diff .imgpic {
        width: 41%;
        top: 9%;
    }
    .diff .line {
        top: -20px;
        height: 40px;
    }
    .diff .line .t {
        height: 20px;
    }
    .diff .line .b {
        height: 20px;
    }
    .diff {
        padding: 4rem 2%;
    }
    .diff .tbox {
        float: left;
        max-width: 58.5vw;
    }
    .indexnews .swiper .wp .tbox .title {
        font-size: 20px;
    }
    .brand .swiper-pagination {
        bottom: 3%;
    }
    .brand .swiper {
        height: calc(96vw + 100px);
    }
    .brand .swiper .swiper-slide .tbox {
        text-align: left;
    }
    .brand .swiper .swiper-slide .brandlist {
        max-width: 100%;
        margin: 20px 0;
    }
    .brand .swiper .swiper-slide .wrap {
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .brand .swiper .swiper-slide .brandlist .item {
        height: 40px;
    }
    .brand .swiper .swiper-slide .tbox .desc {
        font-size: 14px;
        color: #fff;
    }
    .brand .swiper .swiper-slide .tbox .name {
        font-size: 18px;
    }
    .design .wp {
        flex-direction: column;
    }
    .design .wp .tbox .desc {
        font-size: 14px;
        max-width: 100%;
        margin: 0 0 30px 0;
    }
    .design {
        margin: 30px 0;
        padding: 0;
    }
    .series .wp .cont .enname {
        font-size: 26px;
        margin: 23px 0 0 0;
    }
    .series .wp .cont .cnname {
        font-size: 16px;
    }
    .series .wp .cont .type {
        padding: 15px 0 0 30px;
    }
    .design .wp button {
        width: 180px;
        height: 50px;
        font-size: 14px;
    }
    .series .wp .cont .cnname {
        margin: 1rem 0 20px 0;
    }
    .series .wp .cont button span {
        font-size: 14px;
    }
    .series .wp .list2 {
        display: flex;
        /* padding: 130px 0 0 0; */
    }
    .series {
        padding: 1em 0 3rem 0;
    }
    .series .wp .cont button {
        width: 160px;
        height: 35px;
    }
    .series .wp .list {
        display: none;
    }
    .module .wp .wrapper {
        display: flex;
        flex-wrap: wrap;
        margin: -6rem 0 0 0;
    }
    .module .wp .wrapper .item {
        width: calc(100% / 1);
        margin: 0 0 1rem 0;
    }
    .module .wp .wrapper .item:hover {
        transform: scale(1);
    }
    .module .wp .wrapper .item .tbox .name {
        font-size: 4rem;
    }
    .module .wp .wrapper .item .tbox .desc {
        font-size: 3rem;
        display: block;
        opacity: 1;
        padding: 0 0 20px 0;
    }
    .videomodule .wp .playbtn {
        width: 7rem;
        height: 7rem;
    }
    .videomodule .wp .playbtn span {
        margin: 0 0 0 2.5rem;
    }
    .module .wp .wrapper .item .title {
        font-size: 4rem;
    }
    header .logobox img {
        top: 1rem;
    }
    html {
        font-size: 30%
    }
    .numbox .wp .item p {
        font-size: 2.2rem;
    }
    .numbox .wp .item p span {
        font-size: 4rem;
    }
    .numbox .wp .item {
        text-align: center;
    }
    .videomodule .wp .tbox {
        width: 95.91vw;
        max-width: 94%;
    }
    .videomodule .wp .tbox .enname {
        font-size: 6rem;
    }
    .videomodule .wp .tbox .name {
        font-size: 5rem;
    }
    .videomodule .wp .tbox .desc {
        font-size: 2.6rem;
        /* line-height: 4.8rem; */
        line-height: 24px;
    }
    .numbox {
        height: fit-content;
        padding: 2rem 0;
    }
    .numbox .wp .item .desc {
        font-size: 2.5rem;
        color: #666666;
    }
    .numbox .wp .item::after {
        height: 80%;
        top: 10%;
    }
    .videomodule .wp .tbox .name span {
        font-size: 2.4rem;
    }
}

@media screen and (max-width:560px) {
    /* .series .wp .list2 {
        padding: 90px 0 0 0;
    } */
}

@media screen and (max-width:520px) {
    /* .series .wp .list2 {
        padding: 70px 0 0 0;
    } */
}

@media screen and (max-width:470px) {
    .series .wp .list2 {
        padding: 40px 0 0 0;
    }
}

@media screen and (max-width:430px) {
    .pro-center .wp .pro-wrapper .prolist .top .lside img {
        max-width: 100px;
    }
    .certifi .swiper .neiceng .swiper-slide {
        width: calc(100% / 2 - 20px);
    }
    .certifi .swiper .swiper-wrapper .swiper-slide img {
        height: auto;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item1 .layui-input-inline {
        width: 80%!important;
        margin: 0;
    }
    .design-form .wp .formbox2 {
        height: max-content;
        padding: 0 0 40px 0;
    }
    .design-form .wp button {
        font-size: 14px;
    }
    .design-form .wp .formbox2 .leftside .layui-form .layui-form-label {
        float: inherit;
        font-size: 16px;
    }
    .design-form .wp .formbox2 .leftside {
        max-width: 100%;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item3 .layui-form-label {
        width: 19%;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item2 .layui-inline {
        width: calc(100% - 10px);
        margin: 0 0 10px 0;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item1 .layui-input-inline {
        width: 100%!important;
        margin: 0;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item4 .layui-form-label {
        width: 0%;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item4 .layui-input-inline {
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item4 .layui-input-inline button {
        width: 100%;
        height: 40px;
    }
    .design-form .wp .formbox2 .leftside .layui-form .layui-form-item {
        width: 100%;
    }
    .design-form .wp .formbox2 .leftside .layui-form .layui-form-item {
        display: block;
    }
    .design-form .wp .formbox2 .leftside .layui-form .item3 .layui-input-inline {
        width: 90%;
        margin: 0;
    }
    .series .wp .cont .type {
        padding: 15px 0 0 0px;
    }
    .indexnews .swiper .wp .type i {
        display: none;
    }
    .indexnews .swiper .wp .type::before {
        display: none;
    }
    .series .wp .cont .type i {
        display: none;
    }
    .cases .swiper .swiper-slide .type i {
        display: none;
    }
    .cases .swiper .type::before {
        display: none;
    }
    .series .wp .cont .type::before {
        display: none;
    }
    .tabbar {
        display: block;
    }
    footer {
        padding: 60px 0;
        background: #ececec;
        padding: 20px 0 120px 0;
    }
    footer .wp .func {
        display: none;
    }
    .pro-center .wp .pro-wrapper .prolist .top .title::after {
        height: 15px;
        top: 4px;
    }
    .pro-center .wp .pro-wrapper .prolist .list {
        padding: 20px 5px;
        justify-content: space-around;
    }
    .case-center .caselist .item:nth-child(even) {
        flex-direction: column;
    }
    .case-center .caselist .item {
        margin: 0 0 5px 0;
        flex-direction: column;
    }
    .case-center .caselist .item .tbox .title {
        font-size: 16px;
    }
    .case-center .caselist .item .tbox .desc {
        font-size: 14px;
    }
    .case-center .caselist .item .tbox {
        width: 96%;
        padding: 20px 2%;
    }
    .case-center .caselist .item .imgbox {
        width: 100%;
    }
    .videocenter {
        margin: -6rem 0 0 0;
    }
    .contactus {
        margin: -6rem 0 5rem 0;
    }
    .formbox .wp .form input {
        height: 60px;
    }
    .formbox .wp .form button {
        height: 60px;
    }
    .formbox .wp .tbox .title {
        font-size: 28px;
    }
    .formbox .wp .tbox .phone {
        font-size: 28px;
    }
    .formbox .wp .tbox .phone span {
        font-size: 16px;
    }
    .formbox .wp .tbox .dec {
        font-size: 16px;
    }
    .healp .wp {
        padding: 10px 0 0 0;
    }
    .healp .wp .list {
        padding: 30px 0 0 0;
    }
    .view .wp .wrap .tbox .title {
        font-size: 32px;
    }
    .wall .wp .itemlist {
        padding: 30px 0;
    }
    .wp .titledemo .title {
        font-size: 28px;
    }
    .view .wp .wrap .tbox .desc {
        font-size: 18px;
    }
    .view .wp .wrap .tbox .cont {
        font-size: 16px;
    }
    .adv .wp .wrap .tbox .item .right .title {
        font-size: 18px;
    }
    .adv .wp .wrap .tbox .item .right .desc {
        font-size: 15px;
    }
    .wp .titledemo .desc {
        font-size: 16px;
    }
    .healp .wp .list .item {
        margin: 0 10px 60px 0;
    }
    .healp .wp .list .item:nth-child(4n) {
        margin: 0 0 60px 0;
    }
    .healp .wp .list .item .iconpic {
        width: 68px;
    }
    .contact .wrapper .titlebox {
        padding: 14px 0 0 0;
    }
    .newsdetail-show .detailtitle {
        font-size: 22px;
    }
    .contact .wrapper .infobox .com {
        padding: 20px 0;
    }
    .newscenter .wp .newswrap .hotnews .tbox .desc {
        font-size: 14px;
        width: 96%;
    }
    .newscenter .wp .newswrap .hotnews .tbox .name {
        font-size: 20px;
    }
    .newscenter .wp .newswrap .newslist .item .cont .name {
        font-size: 18px;
    }
    .newscenter .wp .newswrap .newslist .item .cont .desc {
        font-size: 14px;
    }
    .newscenter {
        margin: -10rem 0 0 0;
    }
    .videocenter .wp .videowrap video {
        width: 96%;
    }
    .aboutban .crumb {
        left: 11%;
    }
    .aboutban .crumb a {
        font-size: 14px;
    }
    .spirit .wp .tbox .name span {
        font-size: 18px;
    }
    .spirit .wp .tbox .desc {
        font-size: 16px;
        line-height: 28px;
    }
    .develop .swiper .swiper-slide {
        height: 90vw;
    }
    .prodetail .swiper2 .swiper-slide p {
        font-size: 10px;
    }
    .pro-center .wp .pro-wrapper .crumb a {
        font-size: 14px;
    }
    .pro-center .wp .pro-wrapper .probox .list {
        padding: 0 4px;
    }
    .pro-center .wp .pro-wrapper .prolist .list .produc img {
        height: 140px;
    }
    .pro-center .wp .pro-wrapper .prolist .list .produc .name {
        font-size: 16px;
    }
    .pro-center .wp .pro-wrapper .prolist .top {
        padding: 3rem 10px 3rem 10px;
    }
    .pro-center .wp .pro-wrapper .probox .list .item .name {
        font-size: 14px;
    }
    .pro-center .wp .pro-wrapper .probox .list .item {
        width: calc(100% / 2 - 6px);
    }
    .pro-center .wp .pro-wrapper .probox .list .item:nth-child(3n) {
        margin: 0 10px 10px 0;
    }
    .pro-center .wp .pro-wrapper .probox .list .item:nth-child(2n) {
        margin: 0 0 10px 0;
    }
    .pro-center {
        margin: -11% 0 0 0;
    }
    footer .wp .func .item .name {
        font-size: 14px;
        padding: 0 0 0 28px;
    }
    footer .wp .func .item .name::before {
        content: '';
        width: 22px!important;
        height: 22px!important;
    }
    footer .wp .func .item span {
        font-size: 13px;
    }
    .indexnews .swiper .wp .type i {
        left: 11px;
        bottom: 12px;
    }
    .indexnews .swiper .wp .type {
        font-size: 16px;
    }
    .brand .swiper .swiper-slide .dec {
        padding: 3rem 0 1rem 0;
    }
    .diff .box1 {
        width: 90px;
        height: 90px;
        font-size: 34px;
        margin: 0 10px 0 0;
    }
    .diff .tbox {
        width: 65%;
    }
    .diff .tbox .name {
        font-size: 18px;
    }
    .diff .tbox .desc {
        font-size: 14px;
        text-align: justify;
        line-height: inherit;
    }
    .diff {
        padding: 30px 2%;
        height: 200px;
    }
    .indexnews .swiper .swiper-button-prev::after {
        width: 18px;
        height: 18px;
    }
    .indexnews .swiper .swiper-button-next::after {
        width: 18px;
        height: 18px;
    }
    .indexnews .swiper .wp .tbox .desc {
        font-size: 14px;
    }
    .indexnews .swiper .wp .tbox {
        width: 80%;
        padding: 5% 0 10% 0;
    }
    .indexnews .swiper .wp .tbox .desc {
        max-width: 80%;
    }
    .indexnews .swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    .indexnews .swiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    .cases {
        min-height: 350px;
    }
    .cases .swiper .swiper-slide {
        min-height: 350px;
        background-size: cover!important;
    }
    .cases .swiper .swiper-slide button span {
        font-size: 14px;
    }
    .cases .swiper .swiper-button-next {
        right: 6%;
    }
    .cases .swiper .swiper-button-prev {
        right: 26%;
    }
    .cases .swiper .swiper-slide .type {
        font-size: 14px;
        padding: 20px 0 0 10rem;
    }
    .cases .swiper .swiper-slide button {
        height: 40px;
        width: 180px;
        margin: 0 0 0 18px;
    }
    .cases .swiper .swiper-slide .desc {
        font-size: 15px;
        margin: 0 0 8px 0;
        color: #fff;
        max-width: 200px;
        text-align: center;
    }
    .cases .swiper .swiper-slide .title {
        font-size: 20px;
        color: #fff;
        font-weight: bold;
        margin: 2px 0 10px 0;
        text-align: center;
        max-width: 200px;
    }
    .cases .swiper .swiper-slide .enname {
        font-size: 26px;
        max-width: 200px;
        margin: 0 0 0 0;
        padding: 80px 0 8px 0;
    }
    .cases .swiper .swiper-button-prev {
        width: 60px;
        height: 60px;
    }
    .cases .swiper .swiper-button-next {
        width: 60px;
        height: 60px;
    }
    .series .wp .cont .type i {
        bottom: 8px;
    }
    .series .wp .list2 .item a {
        color: #fff;
        font-size: 14px;
    }
    .series .wp .cont .cnname {
        font-size: 15px;
    }
    .series .wp .cont .cnname {
        margin: 1rem 0 13px 0;
    }
    .series .wp .list2 {
        padding: 20px 0 0 0;
    }
    .videobox {
        width: 100%;
        height: 90vw;
    }
    .videomodule .wp .playbtn {
        right: 8%;
        top: 7%;
    }
    .videomodule .wp .playbtn {
        width: 8rem;
        height: 8rem;
    }
    .videomodule .wp .playbtn span {
        display: block;
        margin: 0 0 0 3rem;
    }
    .videobox .videologo {
        max-width: 30%;
        top: 4rem;
        display: block;
    }
    .banner .swiper .swiper-slide .tbox .title {
        font-size: 4rem;
    }
    .banner .swiper .swiper-slide .tbox .year {
        padding: 0 0 0 4rem;
    }
    .banner .swiper .swiper-slide .tbox .desc {
        padding: 0 0 0 4rem;
    }
    .banner .swiper .swiper-slide .tbox .desc::before {
        width: 3rem;
    }
}

@media screen and (max-width:393px) {
    .certifi .swiper .neiceng .swiper-slide {
        width: calc(100% / 2 - 20px);
    }
    .certifi .swiper .swiper-wrapper .swiper-slide img {
        height: auto;
    }
}

@media screen and (max-width:375px) {
    .diff .tbox .desc {
        font-size: 12px;
        text-align: justify;
    }
}

@media screen and (max-width:320px) {}