/**
 * 首页
 *
 */

/*公共*/
@import "reset.css";
@import "base.css";
/*头部*/
@import "module/top.css";
/*导航*/
@import "module/nav.css";
/*底部*/
@import "module/footer.css";
/* 悬浮框 */
@import "module/suspend.css";


/*主体内容*/
.main {
    background: #f9f9f9;
}

/*轮播图*/
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* 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 {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*搜索框*/
.search {
    margin: 15px 0;
}

.search .container {
    display: flex;
    justify-content: right;
}

.search input {
    border: 1px solid #dddddd;
    padding: 10px 15px;
    color: #666;
}

.search input:focus-visible {
    border: 1px solid #dddddd;
}

.search button {
    padding: 10px 20px;
    background: #c40000;
    cursor: pointer;
}

.search button img {
    width: 20px;
}

/*新闻*/
.news {
    padding-top: 20px;
}

.news .title {
    background: white;
}

.news .content {
    display: grid;
    grid-template-columns: 550px 600px;
    justify-content: space-between;
    background: white;
}

/*左侧*/
.news .content-left {
    padding: 10px 0;
}

.news .content-left .image{
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 60%;
    display: flex;
    justify-content: center;
}
.news .content-left img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
}

.news .content-left .time {
    font-size: 20px;
    color: #878787;
    line-height: 2rem;
    height: 2rem;
    padding: 5px 10px;
}

.news .content-left h3 {
    line-height: 2rem;
    height: 2rem;
    font-size: 16px;
    font-weight: bold;
    padding: 0 10px;
    overflow: hidden;
}

.news .content-left p {
    line-height: 2rem;
    height: 4rem;
    padding: 0 10px;
    color: #878787;
    overflow: hidden;
}

/*右侧*/
.news .content-right {
    padding: 10px 0;
}


.news .content-right p {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
    line-height: 3rem;
    height: 3rem;
    border-bottom: 1px solid #f5f6f7;
}

.news .content-right a {
    display: block;
    width: 82.5%;
    overflow: hidden;
}

.news .content-right span {
    text-align: right;
}


/*简介*/
.intro {
    padding-top: 20px;
}

.intro .title {
    background: white;
}

.intro .content {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    background: white;
}

.intro .content p {
    width: 650px;
    line-height: 2rem;
    height: 20rem;
    padding: 5px 10px;
    overflow: hidden;
}

.intro .content img {
    width: 50%;
    height: auto;
}

/*视频展示*/
.video {
    padding: 15px 0;
}

video .swiper {
}

.video .swiper-wrapper {

}

.video .swiper-slide {
    margin: 20px 0;
}

.video .swiper-slide .image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 215px;
}

.video .swiper-slide img {
    width: 100%;
    height: auto;
}


.video .swiper-slide a {
    padding: 0;
}

.video .swiper-slide p {
    line-height: 2rem;
    padding: 0 10px;
    height: 2rem;
    font-size: 16px;
    overflow: hidden;
}

/*公告*/
.notice {
    padding: 15px 0;
}

.notice .container {
    display: grid;
    grid-template-columns: 48.5% 48.5%;
    grid-column-gap: 3%;
    grid-row-gap: 10px;
}

.notice-item {
    width: 100%;
    margin-top: 10px;
    background: white;
}

.notice-item .content {
    overflow: hidden;
    height: 18rem;
}

.notice-item .content p {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
    line-height: 3rem;
    height: 3rem;
    border-bottom: 1px solid #f5f6f7;
}

.notice-item .content a {
    display: block;
    width: 82.5%;
    overflow: hidden;
}

.notice-item .content span {
    text-align: right;
}

/* 链接 */
.link {
    margin: 20px 0;
}

.link .content {
    margin-top: 5px;
    line-height: 40px;
    word-break: keep-all;
}


