@charset "utf-8";

.head-page .news_item>a span{
    color: #E62129;
}
.head-page .news_item>a:after {
    transform: scale(1);
    opacity: 1;
}
.news_details_pg .title {
    border-bottom: 1px solid #DCDCDC;
    padding-bottom: 27px;
    box-sizing: border-box;
    margin-bottom: 50px;
}
.news_details_pg .title .desc {
    margin-top: 16px;
}
.news_details_pg .title .desc p{
    margin-right: 10px;
    display: unset;
}
.news_details_pg .title .desc p:last-child{
    margin-right: 0;
}
.news_details_pg .con {
    text-indent: 2em;
}
.news_details_pg .con img{
    display: block;
    margin: 0 auto;
}
.news_details_pg .con p{
    margin-bottom: 15px;
}
.news_details_pg .con p:last-child{
    margin-bottom: 0;
}
.newsDe_page {
    border-top: 1px solid #DCDCDC;
    padding-top: 40px;
    box-sizing: border-box;
    margin-top: 60px;
}
.newsDe_list {
    width: 175px;
    height: 55px;
    border: 1px solid #DCDCDC;
    margin-left: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    z-index: 1;
}
.newsDe_list::before {
    content: "";
    display: block;
    width: 22px;
    height: 20px;
    background: url(../img/newsDe_list.png) no-repeat center/cover;
    margin-right: 15px;
    transition: all .4s;
}
.newsDe_list::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #E62129;
    transition: all .3s;
    height: 100%;
    width: 0;
    display: block;
}
.newsDe_iteml {
    width: calc(100% - 175px);
    padding-right: 5%;
    box-sizing: border-box;
}
.newsDe_iteml span {
    width: 70px;
    transition: all .4s;
}
.newsDe_iteml .item {
    margin-bottom: 12px;
    transition: all .4s;
}
.newsDe_iteml .item:last-child {
    margin-bottom: 0;
}
.newsDe_iteml .descc {
    width: calc(100% - 70px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all .4s;
}
.newsDe_iteml .item:hover .descc {
    color: #E62129;
}
@media only screen and (min-width: 960px) {
    .newsDe_list:hover::before {
        background: url(../img/newsDe_hlist.png) no-repeat center/cover;
    }
    .newsDe_list:hover::after {
        width: 100%;
    }
    .newsDe_list:hover {
        color: #fff;
    }
}
@media only screen and (max-width: 1200px) {
    .newsDe_page {
        padding-top: 35px;
        margin-top: 50px;
    }
}
@media only screen and (max-width: 1080px) {
    .news_details_pg .title{
       margin-bottom: 30px
    }
    .news_details_pg .title {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    .newsDe_page {
        margin-top: 45px;
    }
}
@media only screen and (max-width: 768px) {
    .newsDe_iteml {
        width: 100%;
        padding-right: 0;
    }
    .newsDe_page {
        margin-top: 25px;
        padding-top: 20px;
    }
    .newsDe_list {
        width: 128px;
        height: 42px;
        margin: 25px auto 0;
    }
}