/*轮播图*/
.swiper {
    width: 100%;
}

.swiper-container {
    max-height: 720px;
}

@media screen and (min-width: 1200px) {
    .swiper-container {
        height: 680px;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .swiper-container {
        height: 500px;
    }
}

@media screen and (max-width: 768px) {
    .swiper-container {
        max-height: 350px;
    }
}

.swiper-content {
    position: relative;
    width: 100%;
    height: 720px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    text-align: center;
}

.swiper-txt1 {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 40%;
    left: 20%;
    z-index: 5;
    text-align: right;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 32px;
}

.swiper-txt2 {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 20%;
    right: 15%;
    z-index: 5;
    text-align: right;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 32px;
}

.swiper-txt3 {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 50%;
    right: 10%;
    z-index: 5;
    text-align: right;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 32px;
}

.choose-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    align-items: center;
}

.choose-container .title {
    font-size: 28px;
    color: #3A3A3A;
    font-weight: bold;
    margin-top: 40px;
}

.choose-container .line {
    height: 4px;
    width: 32px;
    background: #F08619;
    margin-top: 16px;
}

.choose-container .text {
    margin-top: 32px;
    font-size: 18px;
    color: #3A3A3A;
    font-weight: normal;
    line-height: 30px;
    text-align: left;
}

.choose-container .achievement {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 1200px;
    max-width: 1200px;
}

.index-card {
    margin: 30px;
    width: 200px;
}

.news-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    /*text-align: center;*/
    /*align-items: center;*/
    padding-top: 32px;
    padding-bottom: 32px;
}

.news-container .title {
    font-size: 28px;
    color: #3A3A3A;
    font-weight: bold;
    text-align: center;
}

.news-container .line {
    height: 4px;
    width: 32px;
    background: #F08619;
    margin-top: 8px;
    align-self: center;
}

.news-list-container {
    display: flex;
    flex-direction: row;
    margin-top: 18px;
    background: #FFFBF8;
    padding: 18px;
    /*align-items: flex-end;*/
    /*justify-content: space-between;*/
}

.news-img {
    max-width: 368px;
    max-height: 185px;
}

.news-list-text {
    margin-left: 20px;
}

.news-title {
    font-size: 18px;
    color: #3A3A3A;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.news-title a {
    color: #3A3A3A;
    font-weight: bold;
}

.news-desc {
    font-size: 16px;
    color: #3A3A3A;
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-desc a {
    color: #3A3A3A;
    font-weight: normal;
}

.news-time {
    color: #AAAAAA;
    font-size: 14px;
    margin-top: 16px;
}
