.news {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.new-item {
    color: #999999;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    width: 50%;
    height: 400px;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.sqbf-item {
    width: 33.3%;
}

.top-line {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 120px;
    height: 220px;
    opacity: 1;
    background-color: #F6E7CD;

}

.new-item-outer {
    position: relative;
    width: 90%;
    height: 100%;
    border-bottom: 1px solid;
    border-bottom-color: #DCDDDD;
    /* transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s; */
}

.new-item-outer::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .3s;
    opacity: 1;
    border-bottom: 1px solid #C6BAA5;
    transform-origin: left;
    transform: scaleX(0);
}

.new-item:hover .new-item-outer {
    border: none;
}

.new-item:hover .new-item-outer::after {
    transform: scaleX(1);
}

.news-img > img {
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.new-item:hover {
    cursor: pointer;
}

.new-item:hover .new-item-outer {
    border-bottom-color: linear-gradient(to right, red, red);
}

.new-item:hover .news-img > img {
    /*padding-left: 30px;*/
    transform: scale(1.08, 1.08);
}

.news-img {
    position: relative;
}

.news-content {
    display: flex;
    width: 100%;
    margin-top: 31px;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.new-item:hover .news-content {
    margin-left: 30px;
}

.news-content-left {
    width: 30%;
}

.news-date {
    font-size: 32px;
    font-family: DIN Light;
    color: #DCDDDD;
}

.news-more {
    color: #999999;
    position: relative;
    margin-top: 10px;
    width: 80%;
    border: 1px solid #C6BAA5;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

/*.news-more::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    border-radius: 30px;*/
/*    border: 1px solid #C6BAA5;*/
/*    left: 0;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*    transition: .3s;*/
/*    opacity: .5;*/
/*    !*background: #C6BAA5;*!*/
/*    transform-origin: left;*/
/*    transform: scaleX(0);*/
/*}*/

.new-item:hover .news-more {
    color: #C6BAA5;
    visibility: visible;
}

/*.new-item:hover .news-more::after {*/
/*    transform: scaleX(1);*/
/*}*/

.news-content-left > a {
    color: #C6BAA5;
}

.news-content-right {
    width: 70%;
}

.news-title {
    font-size: 18px;
    color: #332C2B;
    line-height: 26px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

.new-item:hover .news-title {
    color: #C6BAA5;
    font-weight: 800;
}

.news-detail {
    height: 50px;
    line-height: 25px;
    margin-top: 20px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #999999;
}

.news-detail-container {
    width: 100%;
    display: flex;
}

.news-detail-left {
    margin-top: 40px;
    width: 70%;
}

.news-detail-right {
    margin-top: 40px;
    width: 30%;
}

.detail-title {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: bold;
    color: #332C2B;
    /*white-space: nowrap;*/
    /*text-overflow: ellipsis;*/
    /*overflow: hidden;*/
    /*word-break: break-all;*/
}

.detail-date {
    font-size: 15px;
    font-family: Microsoft YaHei;
    color: #999999;
}

.detail-top {
    height: 90px;
    border-bottom: 1px solid #DCDDDD;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    padding-bottom: 10px;
}

.xgnr-top {
    border-bottom: 1px solid #DCDDDD;
    height: 90px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 10px;
    justify-content: space-between;
}

.xgnr-more a {
    color: #666666;
}

.xgnr-more:hover a {
    color: #E8DAC1;
}

.xgnr-text {
    font-size: 18px;
    font-weight: bold;
    color: #332C2B;
}

.detail-content {
    margin-top: 42px;
}

.detail-bottom {
    margin-bottom: 30px;
    display: flex;
    width: 70%;
    margin-top: 30px;
}

.jt-line {
    width: 1px;
    height: 30px;
    background-color: #DDDDDD;
}

.post-prev {
    color: #332C2B;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    width: 100%;
    background-color: #F5F5F5;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.post-prev:hover, .post-next:hover {
    background-color: #C6BAA5;
}

.post-prev:hover img, .post-next:hover img {
    display: block;
    visibility: visible;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    opacity: 1;
}

.post-prev img {
    margin-right: 10px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.post-next img {
    margin-left: 10px;
    display: none;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.prev-title {
    height: 30px;
    line-height: 30px;
    margin-left: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    font-size: 16px;
    color: #332C2B;
    transition: all .36s ease;
    width: 80%;
}

.post-prev:hover .prev-title, .post-next:hover .prev-title {
    color: #FFFFFF;
    width: 60%;
}

.post-next {
    color: #332C2B;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    width: 100%;
    background-color: #F5F5F5;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.jt-left::before {
    font-family: icomoon;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    transition: all .36s ease;
    color: #999;
    position: absolute;
    top: 50%;
    font-size: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30%;
}

.post-prev:hover .jt-left::before {
    right: 110%;
}

.jt-left::after {
    content: "\f11a";
    font-family: icomoon;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    transition: all .36s ease;
    color: #999;
    position: absolute;
    top: 50%;
    font-size: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -30px;
    opacity: 0;
}

.post-prev:hover .jt-left::after {
    right: 15px;
    opacity: 1;
    color: rgba(255, 255, 255, .8);
}

.jt-right, .jt-left {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 16px;
    color: transparent;
    overflow: hidden;
}

.jt-right::before {
    content: "\f11b";
    font-family: icomoon;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    transition: all .36s ease;
    color: #999;
    position: absolute;
    top: 50%;
    font-size: 20px;
    left: 30%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.post-next:hover .jt-right::before {
    left: 110%;
}

.jt-right::after {
    content: "\f11b";
    font-family: icomoon;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    transition: all .36s ease;
    color: #999;
    position: absolute;
    top: 50%;
    font-size: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -30px;
    opacity: 0;
}

.post-next:hover .jt-right::after {
    left: 15px;
    opacity: 1;
    color: rgba(255, 255, 255, .8);
}

.xgnr-content {
    padding-top: 20px;
    position: relative;
    padding-right: 20px;
    margin-top: 30px;
    height: 160px;
    border-bottom: 1px solid #DCDDDD;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.xgnr-content::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    transition: .3s;
    opacity: 1;
    border-bottom: 2px solid #C6BAA5;
    transform-origin: left;
    transform: scaleX(0);
}

.xgnr-content:hover {
    border: none;
    background: #FFFFFF;
    cursor: pointer;
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.1);
}

.xgnr-content:hover > div {
    margin-left: 20px;
}

.xgnr-content:hover .xgnr-content-title {
    font-size: 18px;
    font-weight: bold;
    color: #C6BAA5;
}

.xgnr-content:hover::after {
    transform: scaleX(1);
}


.xgnr-content-title {
    font-size: 18px;
    color: #332C2B;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;

}

.xgnr-date {
    font-size: 12px;
    color: #999999;
    margin-top: 13px;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.xgnr-detail {
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    height: 48px;
    margin-top: 21px;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    line-height: 24px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
