/*轮播器*/
html,
body {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 1);
}

body {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
}

/*产品目录*/

.main-box ul {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.main-box ul li {
    width: calc(20% - 10px);
	overflow: hidden;
	margin: 0 5px;
}

.main-box ul li img {
    width: 100%;
    height: auto;
	transition: all 0.3s ease 0s;
}

/*关于我们*/
.about-us {
    width: 100%;
    height: 800px;
    margin: 129px 0 107px 0;
    background: url(../images/index/about-us.png)no-repeat;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.left-box {
    width: 53.5%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.left-box .content-box {
    width: 660px;
    height: 624px;
    background: rgba(255, 255, 255, 1);
    padding: 48px 60px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.left-box .content-box span {
    height: 50px;
    font-family: PingFangSC-Semibold;
    font-size: 36px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    line-height: 50px;
    margin: 0 auto;
    position: relative;
}

.left-box .content-box p {
    width: 540px;
    font-size: 14px;
    font-family: PingFangSC-Regular;
    font-weight: 400;
    color: rgba(102, 102, 102, 1);
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 17;
    overflow: hidden;
}

.left-box .content-box .layoutBox {
    width: 133px;
    height: auto;
    margin: 30px 0 0 0;
    background: #0448D2;
    padding: 10px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
.left-box .content-box .layoutBox:hover{
    background: #f08200;
}
.left-box .content-box .layoutBox a {
    font-size: 14px;
    font-family: PingFangSC-Regular;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    line-height: 20px;
}

.left-box .Triangle {
    position: absolute;
    right: -106px;
    z-index: 11;
    /*三角形*/
    width: 0;
    height: 0;
    border-width: 53px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.right-box {
    width: 46.5%;
    height: 100%;
    background: rgba(4, 72, 210, 1);
    opacity: 0.9;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.right-box ul {
    width: 50%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.right-box ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 42px 18px 42px 0;
}

.right-box ul li img {
    margin: 0 18px;
}

.Title-box h2 {
    font-size: 40px;
    font-family: PingFangSC-Semibold;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    line-height: 56px;
}

.Title-box p {
    width: 210px;
    height: 22px;
    font-size: 16px;
    font-family: PingFangSC-Regular;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    line-height: 22px;
}

/*新闻*/
.news-box {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.news-leftBox {
	overflow: hidden;
    width: 567px;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.news-leftBox img {
    width: 567px;
    height: auto;
    margin-bottom: 21px;
	transition: all 0.3s ease 0s;
}

.news-leftBox span {
    font-size: 16px;
    font-family: PingFangSC-Semibold;
    font-weight: 600;
    color: rgba(51, 51, 51, 1);
    line-height: 22px;
}
.news-leftBox span:hover{
   color:#f08200;
}
.news-leftBox p {
    font-size: 14px;
    font-family: PingFangSC-Regular;
    font-weight: 400;
    color: rgba(136, 136, 136, 1);
    line-height: 20px;
}

.news-leftBox .layoutBox {
    width: 133px;
    height: auto;
    margin: 30px 0 0 0;
    background: #0448D2;
    padding: 10px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
.news-leftBox .layoutBox:hover{
    background: #f08200;
}
.news-leftBox .layoutBox a {
    font-size: 14px;
    font-family: PingFangSC-Regular;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    line-height: 20px;
}

.news-box .news-rightBox {
    width: 590px;
    margin: 0 0 0 24px;
}

.news-box .news-rightBox ul {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.news-box .news-rightBox ul li {
    width: 100%;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    border: none;
}

.news-box .news-rightBox ul li:last-child {
    margin-bottom: 0;
}

.news-rightBox ul li img {
    width: 304px;
    height: 182px;
}

.right-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 23px 0 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.sub-rightBox {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 0 0 30px;
}

.sub-rightBox span {
    font-size: 16px;
    font-family: PingFangSC-Semibold;
    font-weight: 600;
    color: rgba(51, 51, 51, 1);
    line-height: 22px;
}

.sub-rightBox p {
    width: 100%;
    font-size: 14px;
    font-family: PingFangSC-Regular;
    font-weight: 400;
    color: rgba(136, 136, 136, 1);
    line-height: 20px;
    word-break: break-all;
}

.right-arrow {
    width: 34px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.right-arrow a .picture {
    width: 34px;
    height: 34px;
    background: #0448D2;
}

.news-box .video-box {
    width: 1218px;
    height: 530px;
}

/* .news-box .video-box .videoPlayer {
    width: 1218px;
    height: auto;

} */
@media screen and (max-width:768px) {
    .box-form{
        max-width: 100% !important;
    }
    .about-us {
        width: 100%;
        height: 600px;
        margin: 10px 0 10px 0;
        background: url(../images/index/about-us.png)no-repeat;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }

    .left-box {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -moz-box-orient: horizontal;
        -moz-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }

    .left-box .content-box {
        width: 100%;
        height: auto;
        background: rgba(255, 255, 255, 1);
        padding: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .left-box .content-box p {
        width: 100%;
        font-size: 14px;
        font-family: PingFangSC-Regular;
        font-weight: 400;
        color: rgba(102, 102, 102, 1);
        line-height: 24px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 20;
        overflow: hidden;
    }

    .left-box .content-box .layoutBox {
        width: 133px;
        height: auto;
        margin: 10px 0;
        background: rgba(4, 72, 210, 1);
        padding: 10px 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        text-align: center;
    }

    .left-box .Triangle,
    .right-box {
        display: none;
    }

    .news-box {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .news-leftBox {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .news-box .news-rightBox {
        width: 100%;
        margin: 0;
    }

    .news-rightBox ul li img {
        width: 100%;
    }

    .news-leftBox img {
        width: 100%;
        height: auto;
        margin-bottom: 21px;
    }

    .news-leftBox span {
        text-align: center;
        font-size: 16px;
        font-family: PingFangSC-Semibold;
        font-weight: 600;
        color: rgba(51, 51, 51, 1);
        line-height: 22px;
    }

    .news-leftBox p {
        padding: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        font-size: 14px;
        font-family: PingFangSC-Regular;
        font-weight: 400;
        color: rgba(136, 136, 136, 1);
        line-height: 20px;
    }

    .news-leftBox .layoutBox {
        width: 133px;
        height: auto;
        margin: 10px;
        background: #0448D2;
        padding: 10px 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        text-align: center;
    }

    .sub-rightBox {
        margin: 0;
    }

    .news-box .news-rightBox ul li {
        width: 100%;
        margin-bottom: 20px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border: none;
    }

    .news-box .video-box {
        width: 100%;
        height: auto;
    }

    .news-box .video-box video {
        width: 100%;
        height: auto;

    }
    .hideBox{
        display: none;
    }
}