﻿@charset "utf-8";



/* middle */
.middle {
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    overflow: hidden;
}

.mid-main{
    padding: 80px 0 40px;
}
.mid-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mid-title img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 12px;
}

/* 列表 */
.news-list {
    width: 100%;
}
.news-item {
    position: relative;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    z-index: 1;
}
.news-item::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 1px;
    background: rgba(188, 188, 188, 0.3);
}
.news-item:hover {
    box-shadow: 0px 0px 20px 1px rgba(107,114,129,0.15);
    border-radius: 15px;
    z-index: 10;
    transform: translateY(-1px);
}
.news-item:hover .item-title{
    color: #39A7D9;
}
.news-item:hover::after {
    display: none;
}

.item-title {
    position:relative;
    font-size:18px;
    font-weight:bold;
    color:#1E3A5F;
    line-height:28px;
    padding-left:56px;
    flex:1;
}
.item-title::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url("/yl_oa_api/siteManageFront/templateManage/file/20593b9da3da4d448bff761a08e792df/images/mid-icon.png") no-repeat center;
    background-size: contain;
}
.item-date {
    display: flex;
    align-items: baseline;
    font-size: 12px;
    color: #6884A3;
    line-height: 1;
    margin-right: 37px;
}
.item-date::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 3px;
    background: url("/yl_oa_api/siteManageFront/templateManage/file/20593b9da3da4d448bff761a08e792df/images/rl.png") no-repeat center;
    background-size: contain;
}

/* 移动端 */
@media screen and (max-width: 1000px) {
    .mid-main{
        padding: 50px 0 20px;
    }
    .news-item{
        display: block;
    }
    .news-item:hover {
        box-shadow: none;
        transform: none;
        z-index: 1;
    }
    .news-item::after{
        left: 0;
        right: 0;
    }
    .news-item:hover::after{
        display: block;
    }
	.news-item:first-child{
		padding-top: 0;
	}
    .mid-title{
        font-size: 22px;
        line-height: 31px;
        margin-bottom: 24px;
    }
    .mid-title img{
        width: 25px;
        height: 25px;
    }
    .item-title {
        padding-left: 20px;
        margin-bottom: 12px;
        font-size: 16px;
        line-height: 22px;
    }
    .item-title::before {
        left: 0;
        top: 10%;
        transform: none;
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 500px) {

}