/*page.css*/
.list-section {
    width: 1170px;
    margin: 0 auto;
}

.location {
    padding: 12px 0px;
    border-bottom: solid 1px #ededed;
    letter-spacing: 4px;
    display: flex;
    font-size: 14px;
    font-size: 0.14rem;
}

.location img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-top: -5px;
}

.page-box {
    margin: 15px;

}

.content .title {
    font-size: 28px;
    font-size: 0.28rem;
    padding: 15px 0px;
    margin: 10px 0px;
    text-align: center;
    color: #333;
}

.content .info {
    display: flex;
    justify-content: space-between;
    padding: 15px 0px;
    margin: 10px 0px;
    border-bottom: solid 1px #ededed;
    color: #a79f9f;
}

.content .info a {
    color: #a79f9f;
}

.content .info span {
    margin: 0px 10px;
}

.content .info .right {
    display: flex;
    justify-content: space-between;
}

.content .article {
    line-height: 32px;
    line-height: 0.32rem;
    padding: 15px;
}

.content .article img {
    max-width: 100%;
}

.content .article p {
    text-align: justify;
    /*实现两端对齐*/
    text-justify: newspaper;
    /*通过增加或减少字或字母之间的空格对齐文本*/
    word-break: break-all;
    /*允许在单词内换行*/
    width: 100% !important;
}

.content .info-samll {
    display: none;
    text-align: center;
    font-size: 14px;
    font-size: 0.14rem;
    padding: 15px 0px;
    margin: 10px 0px;
    border-bottom: solid 1px #ededed;
    color: #666666;
}

.content .info-samll span {
    margin: 0px 5px;
}

.scroll_top {
    display: none;
    position: fixed;
    bottom: -100px;
    right: 5%;
    width: 50px;
    height: auto;
    transition: all 0.3s;
}

.scroll_top a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    background: #ededed;
    text-align: center;
    font-size: 14px;
    color: rgb(72, 71, 71);
    margin-bottom: 5px;
}

.iframe {
    position: relative;
    padding-bottom: 39.25%;
    height: 0;
    overflow: hidden;
    width: 70%;
    margin: 15px auto;
}

.iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.news_more{
    margin:15px 0px;
}
.news_more h3{
    font-size: 16px;
    padding:10px 0px;
    color:#3e3d3d;
    position: relative;
    padding-left: 35px;
}
.news_more h3::before{
    content: ' ';
    position: absolute;
    left: 0;
    top:6px;
    display: block;
    width:30px;
    height: 30px;
    background:url(../images/more.gif) no-repeat center;
}
.news_more ul{
    margin-left:10px;
}
.news_more ul li{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 40px;
}

@media screen and (max-width: 768px) {
    .list-section {
        width: 100%;
    }

    .scroll_top {
        display: none;
    }

    .content .title {
        text-align: left;
    }

    .content .info {
        display: none;
    }

    .content .info-samll {
        display: block;
    }

    .content .article img {
        width: 100%;
        max-width: 100%;
    }

    .iframe {
        width: 100%;
        margin: 15px 0px;
        padding-bottom: 56.25%;
    }
}