/* 轮播 */
.banner {
    max-width: 1200px;
    margin: 20px auto;
}

.swiper-container {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    height: 300px;
    text-align: center;
    font-size: 18px;
    background: #fff;
    border-radius: 10px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    height: 100%;
}

.swiper-pagination-bullet {
    width: 40px !important;
    height: 4px;
    border-radius: 1000px;
    background: #00000099 !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
}

/* 条幅 */
.tiaofu {
    max-width: 1160px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
}

.tiaofu-left {
    font-size: 20px;
    font-weight: bold;
    color: #03672D;
    margin-right: 20px;
}

.tiaofu-center {
    font-size: 18px;
    width: 960px;
    color: #999;
}

.tiaofu-center text {
    cursor: pointer;
}

.tiaofu-right {
    text-align: right;
    flex: 1;
    font-size: 18px;
    color: #333;
    cursor: pointer;
}

/* 导航 */
.list {
    max-width: 1200px;
    margin: 20px auto;
}

.list-item {
    border-radius: 10px;
    width: calc(33.333% - 60px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.list-item:hover .list-item-bg {
    top: 0%;
}

.list-item-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
}

.list-item-bg P {
    font-size: 24px;
    color: #fff;
    background: #0db94f;
    border-radius: 6px;
    padding: 6px 30px;
}

.list-img img {
    width: 100%;
    height: 100%;
}

.list-title {
    font-size: 28px;
    color: #333;
    padding: 20px 0;
}

.list-text {
    font-size: 20px;
    color: #999;
    line-height: 1.5;
    height: 120px;
}