/* 公共样式 */

.w {
    width: 70%;
    height: 100%;
    margin: 0 15%;
    display: inline-block;
}
.swiper1 {
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: 100%;
    overflow: hidden;
}
.swiper1 img {
    width: 100%;
    height: 100%
}
.background {
    display: inline-block;
    font-size: 3rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #000000;
    line-height: 2.25rem;
    opacity: 0.06;
    margin-top: 3.75rem;
}

.title {
    font-size: 2rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #004BC8;
    line-height: 2rem;
    margin-top: -1.25rem;
    z-index: 20;
}

.black {
    color: #000000;
}

.line {
    width: 4.3125rem;
    height: 3px;
    background: #004BC8;
    margin-top: 1.8125rem;
}

.blue {
    float: right;
    height: 100%;
    width: 25%;
    position: absolute;
    right: 0;
    animation: flyright .5s linear;
}
.videobox {
    top: 25%;
    right: 25%;
    position: absolute;
    z-index: 2;
    width: 30rem;
    height: 20rem;
    animation: video 0.5s linear;
    z-index: 4;
}
.videobox .video {
     width: 100%;
    height: 100%;
    z-index: 2;
    animation: video .5s linear;
    z-index: 3;
}
.w>.video {
    position: absolute;
    top: 25%;
    right: 25%;
    width: 30rem;
    z-index: 19;
    /*height: 20rem;*/
}
.w>.video2 {
    position: absolute;
    top: 25%;
    right: 25%;
    width: auto;
    z-index: 19;
    height: 16rem;
}
.videot{
    position: absolute;
    top: 30%;
    right: 25%;
    width: 25rem;
    z-index: 19;
    height: 15rem;
}
.videot2{
    position: absolute;
    top: 30%;
    right: 25%;
    width: auto;
    z-index: 19;
    height: 15rem;
}
video {
    width: 100%;
    height: 100%;
    animation: video 0.5s linear;
    z-index: 4;
    display: none;
}

.article {
    margin-top: 2.0625rem;
    display: block;
    width: 40%;
    font-size: 1rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: 2.25rem;
    opacity: 0.8;
    margin-bottom: 1.875rem;
    word-wrap: break-word;
    word-break: break-all;
}

.num {
    font-size: 1.7rem;
    margin-top: 1.875rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 3.3125rem;
}

.numbox {
    display: flex;
    flex-direction: column;
}

.num1 {
    margin: auto;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    width: 80%;
    font-size: 1.25rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: 3.3125rem;
    opacity: 0.6;
}

.numbox li {
    overflow: hidden;
    width: 100%;
    height: 17.0625rem;
    background-position: center;
    background-image: url('../img/b.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}


/*导航栏下划线 */

.after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    position: absolute;
    bottom: 10%;
    left: 0;
    opacity: 1;
}


/* 动画 */


/* 从右向左飞入 */

@keyframes flyright {
    0% {
        right: -100%;
    }
    50% {
        right: -50%;
    }
    100% {
        right: 0;
    }
}


/* 缩放 */

@keyframes video {
    0% {
        transform: scale(0.3);
    }
    40% {
        transform: scale(0.6);
    }
    80% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}


/* 飞入 */

@keyframes fly {
    0% {}
}


/* 照片移入放大 */

@keyframes imgscale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.2);
    }
}


/* btn */

.header .btn {
    position: absolute;
    width: 3.125rem;
    height: 3.125rem;
    right: 5%;
    display: flex;
    flex-direction: column;
    z-index: 10001;
    display: none;
    cursor: pointer;
}

.btn span {
    width: 100%;
    height: .625rem;
    background-color: gray;
    border-radius: 5px;
    position: absolute;
    transition: 0.5s;
}

.btn span:nth-child(1) {
    top: .375rem;
}

.btn span:nth-child(even) {
    top: 1.25rem;
}

.btn span:nth-child(3) {
    top: 2.125rem;
}


/* 设置第一个和第三个的动画 */

.changeFigure span:nth-child(odd) {
    opacity: 0;
}

.changeFigure span:nth-child(2) {
    transform: rotate(45deg);
}

.changeFigure span:nth-child(4) {
    transform: rotate(-45deg);
}

.move-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    background-color: rgba(40, 40, 40, 1);
    transition: all 0.3s ease-in-out;
}

.move-nav .menu {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.move-nav .menu li {
    margin: 30px 0;
}

.move-nav .menu li a {
    font-size: 20px;
    color: rgba(255, 255, 255, .8);
     font-weight: bold; 
    position: relative;
    line-height: 30px;
}

.move-nav .menu li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
    background-color: rgba(255, 255, 255, .8);
    z-index: -1;
    border-radius: 30px;
    left: 0px;
    top: 0;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.move-nav .menu li a:hover::after {
    transform: scaleY(1);
}

.move-nav .menu li a:hover {
    font-weight: bold;
}


/* header头部 */

html {
    font-size: 14px;
}

.header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .h-box {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.header .h-box .logo {
    height: 100%;
}

.header .h-box .logo a {
    height: 100%;
    display: block;
    margin-left: -1.9rem;
    width: 82%;
}

.header .h-box .country {
    display: flex;
    justify-content: space-between;
}

.header .h-box .country a {
    display: block;
    display: flex;
    justify-content: end;
    align-items: center;
    /* width: 100%;
	height: 100%; */
}

.header .h-box a img {
    width: 100%;
    height: 100%;
}


/* nav部分 */

.nav {
    width: 100%;
    height: 4rem;
    background: #004BC8;
}

.nav .navlist {
    float: left;
    width: 88%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav .navlist ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
}

.nav .navlist ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.nav .navlist ul li a {
    height: 100%;
    height: 1.0625rem;
    font-size: 1rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.5rem;
}

.nav .navlist ul li a::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    position: absolute;
    bottom: 10%;
    left: 0;
    opacity: 0;
    transform: scaleX(0);
    transition: .2s ease-in-out;
}

.nav .navlist ul li a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav .iconlist {
    position: relative;
    float: right;
    height: 100%;
    width: 12%;
    display: flex;
    justify-content: center;
}

.nav .iconlist ul {
    width: 100%;
    margin-left: 1.875rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav .iconlist ul li img {
    width: 1.375rem;
    height: 1.75rem;
}

.nav .iconlist ul :nth-child(1)::after {
    content: '';
    display: block;
    width: 2px;
    height: 1.625rem;
    background: #FFFFFF;
    opacity: 0.6;
    position: absolute;
    right: 42%;
    top: 32%;
}

.swiper {
    width: 100%;
    height: 37.5rem;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    --swiper-navigation-size: 2.75rem;
}

.swiper .swiper-slide img {
    width: 100%;
    height: 100%;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    position: absolute;
    bottom: 10px;
}

.swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-weight: 700;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 5%;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 5%;
}


/* banner */


/* about us */

.aboutus {
    width: 100%;
    background: #FAFAFA;
    position: relative;
}

.aboutus .white {
    float: left;
    width: 40%;
    position: absolute;
    left: 0;
    bottom: 2.8125rem;
    z-index: -999;
}

.aboutus .play {
     height: 17%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: video 0.5s linear;
}

.aboutus .more {
    width: 7.625rem;
    height: 2.75rem;
    border: 2px solid #004BC8;
    border-radius: 4px;
    margin-top: 3.6875rem;
    margin-bottom: 5.1875rem;
    font-size: 1rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #004BC8;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.125rem;
    z-index: 100;
}


/* advantage */

.advantage {
    width: 100%;
    height: 66.5rem;
}

.advantage {
    height: 100%;
    position: relative;
}

.advantagebox {
    margin-top: 3.125rem;
    width: 100%;
    display: flex;
}

.advantagebox ul li {
    position: relative;
    text-align: center;
    width: 30%;
    margin-bottom: 1.5rem;
    background-position: center;
    background-image: url('../img/b1.png');
    background-size: contain;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.advantagebox ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* margin-top: 18.75rem; */
    /* position: absolute;
    top: 4rem; */
}

.advantagebox ul li a {
    text-align: center;
    vertical-align: middle;
    position: relative;
}

.advantage ul li a span {
    display: block;
    margin-top: 2.5rem;
    font-size: 20px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 2.125rem;
    margin-bottom: 4.1875rem;
}

.advantage ul li a img {
    width: 2.8125rem;
    height: 2.8125rem;
}

.advantage ul li a p {
    width: 80%;
    margin: auto;
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
    text-align: center;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: 2.125rem;
    opacity: 0.6;
}


/* production */

.production {
    width: 100%;
    background: #FAFAFA;
    overflow: hidden;
    position: relative;
}

.production .productionlist {
    margin-top: 3.125rem;
    width: 100%;
}

.production .productionlist .list1 {
    display: flex;
    flex-wrap: wrap;
}

.production .productionlist .list1 li img {
    width: 100%;
    height: 100%;
}

.production .productionlist .list1 li {
    position: relative;
    width: 50%;
    height: 17.25rem;
    background-size: cover;
    border: 1px solid #004BC8;
    background-position: 10%;
}

.production .productionlist .list1 li .title {
    height: 16px;
    font-size: 1.5rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #000000;
    line-height: 2rem;
    position: absolute;
    top: 10%;
    left: 8%;
}

.production .productionlist .list1 li .word3 {
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: 1.875rem;
    position: absolute;
    left: 8%;
    top: 27%;
    opacity: 0.8;
}

/*.production .productionlist .list2 {*/
/*    margin-top: 3.0625rem;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    flex-wrap: wrap;*/
/*    width: 100%;*/
/*    margin-bottom: 4.875rem;*/
/*}*/

/*.production .productionlist .list2 li {*/
/*    width: 31%;*/
/*    height: 220px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    overflow: hidden;*/
/*    margin-bottom: 2.5rem;*/
/*    background-color: #FFFFFF;*/
/*    border-radius: 10px;*/
/*    border: 1px solid #8080806b;*/
/*}*/

/*.production .productionlist .list2 li img:hover {*/
/*    animation: imgscale 0.3s linear forwards;*/
/*}*/

.production .personalbox {
    margin-top: 4.3125rem;
    background-color: red;
}


/* application */

.ourapplication span {
    display: block;
    margin-top: 2.75rem;
    font-size: 1.125rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    opacity: 0.8;
}

.ourapplication img {
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
    display: block;
    width: 100%;
}


/* aboutus banner */

.aboutusbanner {
    width: 100%;
    overflow: hidden;
    background: #FFFFFF;
    position: relative;
}

.aboutbannerbox {
    height: 100%;
}

.aboutusbanner img {
    position: absolute;
    right: 0;
    width: 80%;
    height: 100%;
    animation: flyright .5s linear;
}

.aboutusbanner .title {
    margin-top: 2.6875rem;
}

.aboutusbanner .line {
    margin-top: 2.125rem;
}

.aboutusbanner .banner-word1 {
    width: 36.75rem;
    font-size: 1.125rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 2rem;
    margin-top: 2.625rem;
    word-wrap: break-word;
    word-break: break-all;
}

.aboutusbanner .banner-word2 {
    margin-top: 2rem;
    height: 1.25rem;
    font-size: 1.125rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #4C4C4C;
    line-height: 2rem;
}

.aboutusbanner .banner-word3 {
    margin-top: 1.5625rem;
    font-size: 1.125rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: 2rem;
    opacity: 0.6;
    margin-bottom: 2.5rem;
}


/*内容中间区域production  */

.a-production span {
    display: block;
    margin-top: 2.9375rem;
    width: 80%;
    font-size: .9375rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #4C4C4C;
    line-height: 2rem;
    word-wrap: break-word;
    word-break: break-all;
}

.a-production {
    height: 100%;
    position: relative;
    z-index: 999;
}

.a-production .productionbox span {
    margin-top: 2.9375rem;
    width: 69.1875rem;
    font-size: 1.125rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #4C4C4C;
    line-height: 2rem;
    word-wrap: break-word;
    word-break: break-all;
}

.a-production .info {
    height: 100%;
}

.a-production .info .infotitle {
    margin-top: 2.3125rem;
    position: relative;
    padding-left: 2.6875rem;
    background: #004BC8;
    border-radius: 2.1875rem;
    font-size: 1.875rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 4.375rem;
}

.a-production .info .iron {
    position: absolute;
    top: .75rem;
    right: .9375rem;
    text-align: center;
    line-height: 2.875rem;
    display: inline-block;
    width: 2.875rem;
    height: 2.875rem;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
}

.a-production .info .box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* display: flex;
    flex-wrap: wrap; */
    width: 100%;
    /* justify-content: space-between; */
}

.a-production .info .box ul li {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    width: 24%;
    height: 14.5rem;
    font-size: 26px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    background-size: 100% 100%;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}

.a-production .info .box ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 26px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
}

.showimage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    z-index: 101;
    display: none;
}

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


.a-production .info .box ul li:hover img {
    animation: imgscale 0.3s linear forwards;
}

.a-production .info .box ul li:hover .mask {
    opacity: 1;
}

.a-production .info .box ul li:hover .masktitle {
    display: block;
}

.a-production .info .box ul li img {
    width: 100%;
    height: 100%;
}

.mask {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
}

.masktitle {
    display: none;
    z-index: 10;
}

.a-production .info .box ul li p {
    text-align: center;
    position: absolute;
}

.a-production .honor {
    height: auto;
}

.a-production .honor ul li {
    margin: auto;
    margin-top: 2.375rem;
    width: 70%;
}

.a-production .honor ul li::before {
    content: '';
    display: block;
}

.a-production .honor ul li img {
    width: 100%;
    height: 100%;
}


/* profucts 主页 */

.productsbox {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.productsbox .productlist {
    margin-top: 3.125rem;
    /* position: absolute;
    top: 16.25rem; */
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.productsbox .productlist ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.productsbox .productlist ul li {
    border: 1px solid #8080806b;
    background-size: cover;
    position: relative;
    float: left;
    width: 23%;
    height: 14.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.productsbox .productlist ul li:nth-child(3n){
    margin-right: 0;
}
.productsbox .productlist ul li img {
    /*width: 100%;*/
    height: 120%;
}

.productsbox .productlist ul li:hover img {
    animation: imgscale 0.3s linear forwards;
}

.productsbox .productlist ul li a {
    display: block;
    height: 100%;
    width: 100%;
}

.productsbox .productlist ul li span {
    position: absolute;
    height: 30px;
    bottom: 10%;
    width: 100%;
    right: 0;
    font-size: 1rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    opacity: 0.8;
}


/* feedback主页 */

.feedback {
    width: 100%;
    height: 65rem;
    background: #FAFAFA;
    /* overflow: hidden; */
}

.feedback {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.feedback .table {
    width: 100%;
    margin-top: 2.4375rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.table .namebox {
    position: relative;
    margin-right: 3%;
    margin-bottom: 3%;
    float: left;
    box-sizing: border-box;
    padding: .625rem;
    width: 46%;
    height: 3.75rem;
    background: #FFFFFF;
    border-radius: 8px;
    background-image: url('../img/fd1.png');
    background-size: 1.575rem 1.575rem;
    background-position: 2.5rem 1.1125rem;
    background-repeat: no-repeat;
}

.feedback .table input {
    position: absolute;
    left: 6.5rem;
    font-size: 1.2rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: 2.875rem;
    opacity: 0.6;
    border: 0;
}

.table .emailbox {
    margin-bottom: 3%;
    position: relative;
    float: left;
    box-sizing: border-box;
    padding: .625rem;
    width: 46%;
    height: 3.75rem;
    background: #FFFFFF;
    border-radius: 8px;
    background-image: url('../img/fd2.png');
    background-size: 1.575rem 1.575rem;
    background-position: 2.5rem 1.1125rem;
    background-repeat: no-repeat;
}

.table .telbox {
    margin-bottom: 3%;
    position: relative;
    float: left;
    box-sizing: border-box;
    padding: .625rem;
    width: 46%;
    height: 3.75rem;
    background: #FFFFFF;
    border-radius: 8px;
    background-image: url('../img/fd3.png');
     background-size: 1.575rem 1.575rem;
    background-position: 2.5rem 1.1125rem;
    background-repeat: no-repeat;
}

.table .companybox {
    position: relative;
    margin-right: 3%;
    margin-bottom: 3%;
    float: left;
    box-sizing: border-box;
    padding: .625rem;
    width: 46%;
    height: 3.75rem;
    background: #FFFFFF;
    border-radius: 8px;
    background-image: url('../img/fd4.png');
     background-size: 1.575rem 1.575rem;
    background-position: 2.5rem 1.1125rem;
    background-repeat: no-repeat;
}

.table .textareabox {
    float: left;
    width: 95.5%;
    height: 15.6875rem;
}

.table .textareabox .textarea {
    text-indent: 1em;
    font-size: 1.35rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    opacity: 0.66;
    width: 99%;
    height: 100%;
    resize: none;
    border: none;
    margin-bottom: 4%;
}

.table button {
    width: 38.0625rem;
    height: 4rem;
    background: #004BC8;
    border-radius: 2.5rem;
    font-size: 1.625rem;
    font-family: Micr6osoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 3.5rem;
}

.fa {
    width: 100%;
    position: relative;
}

.fa .falist {
    margin-top: 5.125rem;
    width: 100%;
    background-image: url('../img/border.png');
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 1.875rem;
}

.fa .falist ul {
    background-position: 100%;
    width: 99%;
    margin: auto;
    background: rgba(0, 75, 200, .1);
    border-radius: 3px;
}

.fa .falist ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 75, 200, .4);
    overflow: hidden;
}

.fa .falist ul li .top {
    font-size: 1.25rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #010101;
    line-height: 2rem;
    margin-top: 3%;
    margin-left: 4%;
    display: inline-block;
}

.fa .falist ul li .toptitle {
    margin-left: 2%;
    display: inline-block;
    font-size: 1.125rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #010101;
}

.fa .falist ul li .faword {
    font-size: 1rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    width: 83%;
    color: #000000;
    line-height: 2rem;
    opacity: 0.8;
    margin-top: 2%;
    margin-bottom: 2%;
    margin-left: 11%;
}


/* contactus主页 */

.contactusbox {
    width: 100%;
}

.contactusbox .contacticon {
    margin-top: 5rem;
}

.contactusbox .contacticon ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.contactusbox .contacticon ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    float: left;
    height: 8.25rem;
}
.contactusbox .contacticon ul li img {
    height: 4.6875rem;
    width: 4.6875rem;
}
.contactusbox .contacticon ul li .weixin {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -150px;
    display: none;
}

.contactusbox .contacticon ul li .whatapp {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -150px;
    display: none;
}

.contactusbox ul li:hover .weixin {
    display: block;
}

.contactusbox ul li:hover .whatapp {
    display: block;
}

.contactusbox .contacticon ul li h1 {
    position: absolute;
    display: none;
}
.contactusbox .contacticon ul li:hover h1{
    display: block;
}

.contactusbox ul li:nth-child(1) h1 {
    width: 250px;
    top: -20px;
    left: -60%;
}

.contactusbox ul li:nth-child(2) h1 {
    width: 250px;
    top: -20px;
    left: -65%;
}

.contactusbox ul li:nth-child(4) h1 {
    width: 250px;
    top: -20px;
    left: -55%;
}
.contactusbox .contacticon ul li span {
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
}

.contactinfo {
    width: 100%;
    margin-top: 2.1875rem;
}

.contactinfo ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contactinfo ul li {
    margin-top: 4.3125rem;
    width: 47%;
}

.contactinfo ul .add {
    width: 100%;
}

.contactinfo .contact-title {
    font-size: 15px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #000000;
}

.contactinfo .contact-line {
    width: 100%;
    height: 2px;
    border: 1px solid #004BC8;
}

.contactinfo .contact-info {
    margin-top: 2.25rem;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.map .mapbox {
    margin-top: 2.5rem;
    width: 100%;
    height: 30rem;
    margin-bottom: 2.5rem;
}
#allmap {
    margin-top: 2.5rem;
    width: 100%;
    height: 30rem;
    margin-bottom: 2.5rem;
}
.wrapper {
    width: 100%;
    height: 100%;
}

.amap-marker {
    transform: none!important;
    left: -17px!important;
}

.amap-overlay-text-container {
    position: absolute;
    transform: translate(-45%, -85%);
    background-image: url('../img/mapimg.png');
    background-size: cover;
    text-align: center;
}

.amap-overlay-text-container h1 {
    margin-top: .3333rem;
    font-size: .32rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #156639;
}

.amap-overlay-text-container p {
    font-size: .1867rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    /* 文本超出内容 自动换行 */
    word-wrap: break-word;
    width: 70%;
    margin: 0 auto;
    opacity: 0.6;
    margin-top: .4rem;
    margin-bottom: 0.4rem;
}

.amap-overlay-text-container {
    white-space: inherit;
}

.amap-icon img {
    display: none;
}

.amap-icon {
    width: 33px!important;
    height: 33px!important;
    background: rgba(76, 148, 108, 0.2);
    border-radius: 50%!important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.amap-icon::after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background: #4C946C;
    border-radius: 50%;
}


/* tradingshow */

.tradingshow .ttitle {
    margin-top: 3.3125rem;
    width: 38.4375rem;
    height: 4.375rem;
    background: #004BC8;
    border-radius: 35px;
    font-size: 1.575rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 4.375rem;
    text-align: center;
}

.tradingshow .imgbox img {
    width: 45%;
    border-radius: 30px;
}

.tradingshow .imgbox {
    display: flex;
    justify-content: space-between;
    margin-top: 2.875rem;
    margin-bottom: 6.875rem;
    flex-wrap: wrap;
}


/* regisisitive */

.resistivetouch .background {
    margin-top: 3.0625rem;
}

.resistivetouch {
    position: relative;
}


/* .resistivetouch .blue {
    float: right;
    height: 100%;
    width: 50%;
    position: absolute;
    right: 0;
} */


/* .resistivetouch .video {
    top: 30%;
    right: 10%;
    position: absolute;
    z-index: 2;
    width: 40%;
    height: 50%;
} */

.resistivetouch .title {
    z-index: 30;
    color: #000000;
    margin-top: -1.5625rem;
}

.resistivetouch .line {
    margin-top: 2rem;
}

.resistivetouch .article {
    margin-bottom: 1.875rem;
}


/* ouradvantege */

.ouradvantage .background {
    margin-top: 0.625rem;
}

.ouradvantage .title {
    color: #000000;
    z-index: 2;
    margin-top: -1.5625rem;
}

.ouradvantage .line {
    margin-top: 2rem;
}

.ouradvantagebox {
    margin-top: 3.375rem;
    margin-bottom: 3.6875rem;
}

.ouradvantageimg {
    background: #FAFAFA;
}

.ouradvantageimg ul li {
     border: 1px solid #8080806b;
    background-size: 100% 100%;
    border-radius: 5px;
    background-position: center;
    position: relative;
    float: left;
    width: 26%;
    height: 16.75rem;
    margin-right: 11%;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ouradvantageimg ul li:nth-child(3n){
    margin-right: 0;
}
.ouradvantageimg ul li:hover img {
    animation: imgscale 0.3s linear forwards;
}

.ouradvantageimg ul li span {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0.9375rem;
    height: 1.3125rem;
    font-size: 1.25rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    opacity: 0.8;
}

.ouradvantageimg ul li img {
    width: 100%;
    height: 100%;
}

.ouradvantageimg2 img {
    display: block;
    width: 70%;
    margin: auto;
    margin-bottom: 2.875rem;
}


/* capactive */

.capactivetouch {
    position: relative;
}

.capactive .capactivetouch.title {
    margin-top: -1.25rem;
    z-index: 20;
}

.capactive .line {
    margin-top: 1.8125rem;
}

.capactive .capactivetouch .article {
    margin-bottom: 1.875rem;
}


/* moduel */

.lcdmoduel {
    position: relative;
}

.moduelimg {
    width: 100%;
}


/* hdmi */

.hdmidriver {
    position: relative;
}

.hdmiimg img {
    width: 100%;
    margin-bottom: 2.5rem;
}

/* lcddriver */

.lcddriver {
    position: relative;
}

.lcddriverimg .w .img1 {
    width: 100%;
    margin-bottom: 2.5rem;
}

.lcddriverimg2 {
    display: flex;
    justify-content: space-between;
}

.lcddriverimg .lcddriverimg2 img {
    width: 45%;
    margin-bottom: 2.5rem;
}


/* touchpanel */

.touchpanel {
    position: relative;
}

.touchpanelimg .img1 {
    width: 100%;
    margin-bottom: 2.5rem;
}

.touchpanelimg .lcddriverimg2 img {
    width: 45%;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}


/* lcdtouch */

.lcdtouchplay {
    position: relative;
}

.lcdimg1 {
    background: #FAFAFA;
}

.lcdimg1 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.lcdimg1 ul li {
    height: 21.25rem;
    width: 30%;
    margin-bottom: 2.5rem;
    position: relative;
    border: 2px solid #D3D3D3;
    overflow: hidden;
}

.lcdimg1 ul li span {
    text-align: center;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 2%;
    font-size: 1.25rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #4C4C4C;
    line-height: 2rem;
}

.lcdimg1 ul li img {
    width: 100%;
    height: 100%;
}

.lcdimg1 ul li:hover img {
    animation: imgscale 0.3s linear forwards;
}

.lcdimg2 img {
    margin-top: 4.125rem;
    width: 100%;
}

/*.lcdimg2 .icdimg2-1 {*/
/*    height: 62.5rem;*/
/*}*/

/*.lcdimg2 .icdimg2-2 {*/
/*    height: 93.75rem;*/
/*}*/


/* touchpanelcover */

.touchpanelcover {
    position: relative;
}

.lcdimg1 ul .cover1 {
    background-image: url('../img/touchcover/2.png');
    background-size: 100% 100%;
}

.lcdimg1 ul .cover2 {
    background-image: url('../img/touchcover/3.png');
    background-size: 100% 100%;
}

.lcdimg1 ul .cover3 {
    background-image: url('../img/touchcover/4.png');
    background-size: 100% 100%;
}

.lcdimg1 ul .cover4 {
    background-image: url('../img/touchcover/5.png');
    background-size: 100% 100%;
}

.lcdimg1 ul .cover5 {
    background-image: url('../img/touchcover/6.png');
    background-size: 100% 100%;
}

.lcdimg1 ul .cover6 {
    background-image: url('../img/touchcover/7.png');
    background-size: 100% 100%;
}

.touochimg .coverproduction ul {
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.touochimg .coverproduction ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
    align-items: center;
}

.touochimg .coverproduction ul li img {
    width: 100%;
}

.touochimg .coverproduction ul li span {
    display: block;
    margin-top: 1.5625rem;
    margin-bottom: 3.75rem;
    width: 50%;
    height: 3.375rem;
    background: #004BC8;
    font-size: 1.25rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 3.375rem;
}


/* footer */

.footer {
    width: 100%;
    height: 30rem;
    padding-top: 2.5rem;
    background-image: url('../img/end-back.jpg');
    position: relative;
    display: flex;
    flex-direction: column;
}

.footer .w .title {
    margin-top: 0!important;
    width: 18.9375rem;
    height: 2.1875rem;
    font-size: 2rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 2rem;
    opacity: 0.8;
}

.footer .line {
    margin-top: 2.125rem;
    width: 4.3125rem;
    height: .1875rem;
    background: #FFFFFF;
    opacity: 0.8;
}

.footer .word {
    margin-top: 2.5rem;
    height: 1.8125rem;
    font-size: 1.5rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 2rem;
    opacity: 0.8;
}

.footer .info {
    margin-top: 2rem;
}

.footer span {
    display: block;
    font-size: 1.125rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 2.625rem;
    opacity: 0.6;
    margin-bottom: 1.5625rem;
}

.footer .w .iconlist {
    /* overflow: hidden; */
    position: absolute;
    bottom: 1.875rem;
}

.footer .iconlist ul {
    display: flex;
}

.footer .iconlist li {
    position: relative;
    margin-right: 1.5625rem;
}

.footer .iconlist li img {
    width: 2.4375rem;
    height: 2.4375rem;
}
.footer .iconlist li:nth-child(1) span {
    display: none;
    position: absolute;
    top: -80%;
    right: -150px;
    color: #FFFFFF;
    width: 300px;
    opacity: 0.6;
}

.footer .iconlist li:nth-child(2) span {
    display: none;
    position: absolute;
    top: -80%;
    right: -125px;
    color: #FFFFFF;
    width: 200px;
    opacity: 0.6;
}

.footer .iconlist li:nth-child(3)>img {
    display: none;
    position: absolute;
    width: 250px;
    height: 250px;
    top: -250px;
    right: -110px;
    color: #FFFFFF;
}

.footer .iconlist li:nth-child(4) span {
    display: none;
    position: absolute;
    top: -80%;
    right: -180px;
    color: #FFFFFF;
    width: 300px;
    opacity: 0.6;
}

.footer .iconlist li:nth-child(5)>img {
    display: none;
    position: absolute;
    width: 250px;
    height: 250px;
    top: -250px;
    right: -110px;
    color: #FFFFFF;
}

.footer .iconlist ul li:hover span {
    display: block;
}

.footer .iconlist ul li:hover img {
    display: block;
}
@media screen and (max-width:1550px){
    .swiper{
        height: 30rem;
    }
    .videobox {
    top: 25%;
    right: 25%;
    position: absolute;
    z-index: 2;
    width: 25rem;
    height: 15rem;
    animation: video 0.5s linear;
    z-index: 4;
}
.w>.video {
    position: absolute;
    top: 25%;
    right: 25%;
    width: 25rem;
    /*height: 18rem;*/
}
.w>.video2 {
    position: absolute;
    top: 25%;
    right: 25%;
    width: auto;
    height: 18rem;
}
}
@media screen and (max-width:1280px) {
    .w {
        width: 90%;
        margin: 0 5%;
    }
    html {
        font-size: 10px;
    }
    .a-production .info .box ul li {
        width: 21%;
        height: 15rem;
    }
}

@media screen and (max-width:767px) {
    html {
        font-size: 8px;
    }
    .swiper {
        height: 25rem;
    }
    .w>.video {
        position: relative;
        top: 0%;
        right: 0%;
    }
    .videot{
        position: relative;
        top: 0%;
        right: 0%;
    }
     .footer .iconlist ul li:hover span {
        display: none;
    }
    .footer .iconlist ul li:hover img {
        display: none;
    }
    .contactusbox ul li:hover .weixin {
    display: none;
    }
    .contactusbox ul li:hover h1 {
    display: none;
    }
   .contactusbox ul li:hover .whatapp {
    display: none;
    }
    .header .btn {
        display: block;
    }
    .header .h-box .country {
        display: none;
    }
    .nav {
        display: none;
    }
    .background {
        font-size: 28px;
    }
    .title {
        font-size: 24px;
    }
    .article {
        width: 100%;
        font-size: 14px;
    }
    .videobox {
        position: relative;
        width: 30rem;
        height: 20rem;
        top: 0;
        right: 0;
    }
    .aboutus .more {
        margin-top: 5%;
        margin-bottom: 5%;
    }
    .advantagebox ul li {
        width: 48%;
        height: auto;
    }
    .advantage ul li a span {
        font-size: 18px;
        margin-top: 3.5rem;
    }
    .advantage ul li a p {
        font-size: 14px;
    }
    .production .productionlist .list1 li {
        width: 100%;
        height: 21.25rem;
    }
    .production .productionlist .list1 li .title {
        font-size: 16px;
    }
    .production .productionlist .list1 li .word3 {
        font-size: 14px;
        line-height: 2.275rem;
    }
    .production .productionlist .list1 .i1 {
        background-image: none;
    }
    .production .productionlist .list1 .i2 {
        background-image: none;
    }
    .production .productionlist .list1 .i3 {
        background-image: none;
    }
    .production .productionlist .list1 .i4 {
        background-image: none;
    }
    .production .productionlist .list2 li {
        width: 100%;
    }
    .production .productionlist .list2 li img {
        display: block;
        height: 200px;
    }
    .footer .word {
        margin-top: 2.125rem;
    }
    .footer .info {
        margin-top: 1.9375rem;
    }
    .title {
        margin-top: -0.6865rem!important;
        line-height: 30px;
        z-index: 2;
    }
    .background {
        margin-top: 3.5rem!important;
    }
    .article {
        margin-top: 3.0625rem;
    }
    .aboutusbanner .banner-word1 {
        font-size: 14px;
        margin-top: 3.625rem;
    }
    .a-production span {
        width: 100%;
        font-size: 14px;
    }
    .ourapplication span {
        font-size: 14px;
    }
    .a-production .info .box ul li {
        height: 10rem;
        font-size: 14px;
    }
    .a-production .honor ul li {
        margin-top: 4.375rem;
    }
    .aboutusbanner .title {
        margin-top: 3rem!important;
    }
    .productsbox .productlist ul li span {
        font-size: 16px;
    }
    .contactinfo ul li {
        width: 100%;
    }
    .map .background {
        margin-top: 0!important;
    }
    .map img {
        margin-top: 3.125rem;
    }
    .tradingshow .ttitle {
        margin-top: 3.3125rem;
    }
    .fa .falist ul li .top {
        display: block;
        margin-left: 5%;
        font-size: 18px;
    }
    .fa .falist ul li .toptitle {
        display: block;
        margin-left: 5%;
        margin-top: 3%;
        font-size: 16px;
    }
    .fa .falist ul li .faword {
        width: 100%;
        font-size: 14px;
        margin-left: 5%;
        line-height: 20px;
    }
    .table .namebox {
        width: 100%;
        margin-right: 0;
    }
    .table input {
        width: 80%;
    }
    .table .emailbox {
        width: 100%;
    }
    .table .telbox {
        width: 100%;
    }
    .table .companybox {
        width: 100%;
        margin-right: 0;
    }
    .table .textareabox {
        width: 100%;
    }
}

@media screen and (max-width:550px) {
    .a-production .info .box ul li {
        width: 48%;
        height: 15rem;
    }
    .productsbox .productlist ul li {
        width: 47%;
    }
    .ouradvantageimg ul li{
        margin-right: 0;
    }
    .ouradvantageimg ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .productsbox .productlist ul li span {
        font-size: 14px;
    }
    .contactusbox .contacticon ul li img {
        height: 3.6875rem;
        width: 3.6875rem;
    }
    .contactinfo {
        margin-top: 0;
    }
    .tradingshow .imgbox img {
        width: 100%;
        margin-bottom: 2.5rem;
    }
    .tradingshow .imgbox {
        margin-bottom: 0;
    }
    .header {
        height: 60px;
    }
    .numbox li {
        height: 20rem;
    }
    .num1 {
        line-height: 2.5rem;
        margin-top: 3.5rem;
    }
    .ouradvantageimg ul li {
        width: 47%;
        height: 16.75rem;
    }
    .lcdimg1 ul li {
        width: 47%;
    }
    .blue {
        display: none;
    }
}