a{
    color: black;
}
.news{
    display: block!important;
}

.main {
    padding: 30px 10%;
}

.main-div {
    display: flex;
    width: 100%;
    position: relative;
}

.main-div-left {
    width: 25%;
    position: relative;
}

/*新闻动态*/
.news-box {
    width: 100%;
    height: 150px;
    border: 1px solid #e5e5e5;
    text-align: center;
}

.news-box-div {
    width: 100%;
    height: 30%;
    justify-content: center;
    align-items: center;
}
.news-box-div-active{
    border-left: 2px solid #ed1f65;
    background-color: #f9f9f9;
}
.news-items{
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}
.news-box-title {
    height: 40%;
    background-color: #ed1f65;
    color: white;
    cursor: pointer;
    padding: 10px;
    display: flex;
    justify-content: center;
    font-size: 18px;
}
.news-box-div-low{
    padding: 10px;
    cursor: pointer;
    transition: 0.4s;
    display: block;
    color: black;
}
.news-box-div-low:hover {
    border-left: 2px solid #ed1f65;
    background-color: #f9f9f9!important;
    color: #ed1f65!important;
}

/*内容*/
.main-news {
    width: 75%;
}

.main-div-right {
    margin-left: 65px;
    width: 100%;
}
.news-year{
    position: absolute;
    right: 10px;
    bottom: 3px;

}
.news-content {
    display: flex;
    cursor: pointer;
}

.news-content:hover .news-content-date-button {
    background-color: #ed1f65;
    color: white!important;
}

.news-content:hover .news-content-title {
    color: #ed1f65;
}

.news-content-left {
    width: 100px;
    font-size: 30px;
    color: #9f9e99;
    text-align: right;
}

.news-content-right {
    width: calc(100% - 140px);
    padding: 8px 0;
    display: flex;
}

.news-content-text {
    /*width: 45%;*/
    /*margin-right: 65px;*/
    width: 50%;
    padding: 0 10px;
}

.news-content-title {
    font-size: 22px;
    font-weight: 600;
    transition: .5s;
}

.news-content-date-button {
    margin: auto;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.news-content-summarize {
    color: #6d6a6a;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 15px;
}

.news-content-img {
    width: 20vw;
    height: 166px;
    object-fit: cover;
    object-position: 60% 18%;
}

/*媒体查询*/
@media (max-width: 1200px) {
    .main {
        padding: 30px 5%;
    }

    .news-content-left {
        font-size: 20px;
        width: 60px;
    }

    .news-content-right {
        width: calc(100% - 60px);
    }

    .news-content-title {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .main-news {
        width: 100%;
    }

    .main-div-left {
        display: none;
    }

    .main-div-right {
        width: 100%;
        margin-left: 0!important;
    }
    .news-content-img{
        width:35vw!important;
    }
    .news-content-date-button {
        display: none
    }

    .news-content-text {
        width: 80%;
    }



    .breadcrumb {
        background-color: #ed1f65;
        color: white;
    }
}

@keyframes leftToRight {
    from {
       left: -100%;
       opacity: 0
    }
    to {
        left: 0;
        opacity: 1
    }
}


.left{
    position: absolute;
    animation: leftToRight 2s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
}



.news-phone-menus-head-main{
    background: white;
    box-shadow:0 0 40px 10px rgba(0,10,10,0.5);
    position: fixed;
    bottom: 0;
    left: 0 ;
    width: 100%;
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius:15px 15px 0 0;
    transition: 0.4s;
}
.news-phone-menus-head-box{
    padding: 13px 0;
}
.news-phone-menus-bottom-main{
    position: fixed;
    left: 0 ;
    bottom: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0,10,10,0.5);
    z-index: 9999;
}
.news-phone-menus-bottom-box{
    background: white;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 15px 15px 0 0;
}
.news-phone-menus-bottom-head-box{
    padding: 12px 20px;
    width: 100%;
    background: white;
    font-size: 15px;
    border-radius: 15px 15px 0 0;
    height: 50px;
}
.news-phone-menus-bottom-context-box{
    overflow-y: auto;
    height: 123px;
    z-index:9999 ;
}

.news-phone-menus-bottom-context-items{
    padding: 20px 20px;
    transition: 0.4s;
    font-size: 14px;
    color: black;
}
.news-phone-menus-bottom-context-items a{
    color: black;
    padding-right: 70%;
}
.news-phone-menus-bottom-context-items:hover{
    background: #cfd0d0;
}