/* 顶部滚动banner */
.swiper-container .swiper-slide {
    overflow: hidden;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    background: none;
    opacity: .6;
}

.swiper-container .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background: #f0f0f0;
    opacity: 1;
}


/* body */
.body{
    width: 82%;
    margin: auto;
}

.culture{
    display: flex;
    margin-top: 160px;
}
.culture .title{
    font-weight: bold;
    font-size: 44px;
    line-height: 80px;
}
.culture .desc{
    font-size: 22px;
    margin-top: 50px;
}

.culture .right{
    width: 60%;
    overflow: hidden;
}

.culture .right img{
    width: 100%;

    height: 500px;
}
.culture .left{
    flex: 1;
}

/* 企业文化滚动banner */
.culture-swiper .swiper-slide {
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
}

.culture-swiper .tab {
    font-size: 28px;
    font-weight: bold;
    line-height: 60px;
    margin-top: 12px;
}

.culture-swiper li {
    font-size: 18px;
    line-height: 40px;
}

.culture-swiper .swiper-button-next,
.culture-swiper .swiper-button-prev {
    top: 78%;
    width: 27px;
    height: 30px;
}

/** 行为准则 */
.more{
    margin-top: 20px;

}
.more a span{
    font-size: 22px;
}
.more a span.suffix{
    color: rgb(86, 156, 254);
    margin-left:4px;

}

/* 大事记 */
.big-event {
    margin-top: 160px;
}

.big-event .title {
    font-weight: bold;
    font-size: 44px;
    line-height: 80px;

}

.big-event .swiper-slide{
    background: transparent;
}

.big-event .event-box {
    width: 720px;
    height: 360px;
    display: flex;
    margin: auto;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.big-event .event-box .event-left {
    margin-left: 20px;
    display: block;
    width: 50%;
    height: 100%;
    background-position: center;
    background-size:contain;
    background-repeat: no-repeat;

}

.big-event .event-box .event-right {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.big-event .event-box .event-right .tab {
    font-size: 28px;
    font-weight: bold;
    line-height: 60px;
}

.big-event .event-box .event-right .desc {
    font-size: 18px;
    line-height: 40px;
}

/* 大事记缩略图 */
.event-swiper-thumb {
    margin-top: 30px;
    margin-bottom: 30px;
}

.event-swiper-thumb .swiper-slide {
    width: 56px;
    height: 56px;
    border-radius: 50%;

    margin-right: 40px;
    cursor: pointer;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #2C8DFB;;
    transition: transform 500ms ease, -webkit-transform 500ms ease;

    opacity: 0.9;


}

.event-swiper-thumb .swiper-slide span {
    color: #fff;
    opacity: 0.6;
    font-style: italic;
}

.event-swiper-thumb .swiper-slide-active {

    transform: scale(1.3);
    color: rgb(60, 140, 255);
    margin-right: 80px;
    margin-left: 40px;
    opacity: 1;


}

.event-swiper-thumb .swiper-slide-active span {
    color: #fff;
    font-size: 16px;
    opacity: 1;
}


.progress{
    height: 3px;
    background-color: #666;
    margin-top: -56px;

    mask-image: linear-gradient(
            90deg,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,1) 20%,
            rgba(0,0,0,1) 50%,
            rgba(0,0,0,1) 80%,
            rgba(0,0,0,0) 100%
    );

}

.cer-list{
    margin-top: 40px;
    display:grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 50px;
}
.cer-list .cer-item{

    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 16px;
    /*overflow: hidden;*/
}
.cer-list .cer-item:hover .cer-img{
    transform: scale(1.2);
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}


.cer-list .cer-item img{
    margin: auto;
    width: 100%;
}
.cer-list .cer-item .desc{
    text-align: center;
    line-height: 50px;
    z-index: 1000;
}
