.banner {
    height: 700px;
    overflow: hidden;
}

/* 标题样式 */
.productTit {
    text-align: center;
    color: #000;
}
.productTit > p {
    font-size: 24px;
    line-height: 24px;
}
.productTit > h4 {
    position: relative;
    width: max-content;
    margin: 0 auto;
    font-size: 40px;
    line-height: 70px;
    font-weight: normal;
}
.productTit > h4 > a { color: #000; }
.productTit > h4 > a:hover { color: red; }
.productTit > h4::after, .productTit > h4::before {
    position: absolute;
    content: "";
    top: 34px;
    height: 2px;
    width: 64px;
    background-color: #000;
}
.productTit > h4::after { left: -106px; }
.productTit > h4::before { right: -106px; }

/* 产品展示 beign */
.product {
    background: url("/images/computer/productBg.jpg") no-repeat center center;
    padding-top: 72px;
    height: 512px;
}
.productPic {
    margin-top: 42px;
}
.productPic > ul > li > a {
    display: block;
    margin-bottom: 16px;
    width: 280px;
    height: 280px;
    overflow: hidden;
}
.productPic > ul > li > a > img {
    width: 100%;
    transition: all .5s ease;
}
.productPic > ul > li > a > img:hover {
    transform: scale(1.05);
}

.productPic > ul > li > p {
    text-align: center;
    line-height: 1.5;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/* 产品展示 end */

/* 公司简介 beign */
.about {
    height: 414px;
    padding: 81px 0 0 0;
}
.aboutLeft {
    float: left;
    width: 660px;
}
.aboutLeft > p {
    text-indent: 32px;
    text-align: justify;
    line-height: 2;
    font-size: 18px;
    margin: 20px 0;
}
.aboutLeft > a {
    display: block;
    margin: auto auto;
    width: 148px;
    height: 27px;
    font-size: 14px;
    text-align: center;
    line-height: 27px;
    border: 1px solid #000;
}

.aboutRight {
    float: right;
    width: 518px;
    height: 346px;
    overflow: hidden;
}
.aboutRight > img {
    width: 100%;
    height: 100%;
    transition: all .5s ease;
}
.aboutRight:hover > img { transform: scale(1.05); }
/* 公司简介 end */

/* 荣誉资质 beign */
.honor {
    background: url("/images/computer/honorBg.jpg") no-repeat center center;
    padding-top: 72px;
    height: 493px;
}
.honor > .productTit { color: #fff; }
.honor > .productTit > h4 > a { color: #fff; }
.honor > .productTit > h4 > a:hover { color: red; }
.honor > .productTit > h4::after,.honor > .productTit > h4::before { background-color: #fff; }

.honorPic {
    position: relative;
    margin-top: 42px;
    padding: 0 36px;
}
.honorPic > ul {
    display: flex;
    justify-content: space-between;
}
.honorPic > ul > li {
    width: 376px;
    height: 283px;
}
.honorPic > ul > li > a {
    display: block;
    margin-bottom: 16px;
    width: 376px;
    height: 243px;
    overflow: hidden;
}
.honorPic > ul > li > a > img {
    width: 100%;
    transition: all .5s ease;
}
.honorPic > ul > li > a > img:hover {
    transform: scale(1.05);
}

.honorPic > ul > li > p {
    color: #fff;
    text-align: center;
    line-height: 1.5;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.honorPic > .swiper-button-next, .honorPic >  .swiper-container-rtl .swiper-button-prev {
    right: 0;
}
.honorPic >  .swiper-button-prev, .honorPic >  .swiper-container-rtl .swiper-button-next {
    left: 0;
}
/* 荣誉资质 end */

/* 企业动态 beign */
.news {
    padding-top: 61px;
    height: 562px;
}
.newsList {
    margin-top: 42px;
}
.newsList-left {
    float: left;
    position: relative;
    width: 518px;
    height: 346px;
    overflow: hidden;

}
.newsList-left > div.swiper-pagination {
    bottom: 6px;
    left: unset; right: 14px;
    width: unset;
}
.newsList-left > .swiper-pagination > span.swiper-pagination-bullet {
    background: #959595;
    opacity: 0.9;
    width: 11px;
    height: 11px;
}
.newsList-left > .swiper-pagination > span.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

.newsList-left > ul > li > a { display: block; }
.newsList-left > ul > li > a > img {
    width: 100%;
    transition: all .5s ease;
}
.newsList-left > ul > li > a > img:hover { transform: scale(1.05); }

.newsList-left > ul > li > a > p {
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 33px;
    text-indent: 14px;
    line-height: 33px;
    font-size: 14px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
}
.newsList-left > ul > li > a:hover > p { color: red; }

.newsList-right {
    float: right;
    width: 662px;
}
.newsList-right > li > a {
    position: relative;
    display: block;
    padding-left: 15px;
    font-size: 18px;
    line-height: 69px;
    color: #000;
    border-bottom: 1px solid #ccc;
    transition: all .1s ease;
}
.newsList-right > li > a:hover {
    color: red;
    background-color: rgba(0, 0, 0, 0.05);
}
.newsList-right > li > a::before {
    position: absolute;
    left: 4px; top: 34px;
    content: "";
    width: 2px; height: 2px;
    background-color: #000;
}
/* 企业动态 end */