/* 分类 */
.NyCaseNav {
    margin-bottom: 75px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.NyCaseNav a {
    width: 30%;
    background: #FFF;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.10);
    display: block;
    padding: 30px 45px;
    color: #494949;
    font-size: 26px;
    line-height: 1.5;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.NyCaseNav a img {
    margin-right: 30px;
    filter: brightness(0);
}

.NyCaseNav a.active,
.NyCaseNav a:hover {
    color: var(--color);
}

.NyCaseNav a.active img,
.NyCaseNav a:hover img {
    filter: brightness(1);
}

@media(max-width: 1600px) {
    .NyCaseNav a {
        font-size: 23px;
    }
}

@media(max-width: 1440px) {
    .NyCaseNav a {
        font-size: 18px;
        padding: 30px;
    }
}

@media(max-width: 1200px) {
    .NyCaseNav {
        margin-bottom: 45px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
    }

    .NyCaseNav a {
        width: 45%;
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .NyCaseNav a img {
        margin-right: 15px;
        width: 30px;
    }

}

@media(max-width: 640px) {
    .NyCaseNav {
        margin-bottom: 30px;
    }

    .NyCaseNav a {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* 列表 */
.Ny_Item {
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: -75px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.ItemList {
    width: calc(50% - 60px);
    margin: 0 30px;
    margin-bottom: 75px;
}

.ItemList .img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: -75px;
}

.ItemList .img img {
    width: 100%;
    transition: 0.5s;
}

.ItemList:hover .img img {
    transform: scale(1.08);
}

.ItemList .text {
    margin-left: 100px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.06);
    background: #fff;
    border-radius: 0px 0px 20px 20px;
    padding: 60px;
    padding-right: 240px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ItemList .text h1 {
    color: #767676;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.ItemList .text h2 {
    color: #767676;
    font-size: 16px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ItemList .text span {
    position: absolute;
    right: 60px;
    font-family: fantasy;
    color: #F0F0F0;
    text-align: center;
    font-size: 120px;
    line-height: 1;
}

@media(max-width: 1440px) {
    .ItemList .text {
        padding: 60px 30px;
        padding-right: 140px;
    }

    .ItemList .text span {
        right: 30px;
        font-size: 100px;
    }
}

@media(max-width: 1200px) {
    .Ny_Item {
        margin-left: -15px;
        margin-right: -15px;
    }

    .ItemList {
        width: calc(50% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }

    .ItemList .img {
        border-radius: 10px;
    }

    .ItemList .text {
        border-radius: 0px 0px 10px 10px;
        margin-left: 30px;
        padding: 45px 30px;
        padding-right: 75px;
    }

    .ItemList .text h1 {
        margin-bottom: 15px;
    }

    .ItemList .text span {
        right: 15px;
        font-size: 60px;
    }
}

@media(max-width: 640px) {
    .Ny_Item {
        margin: 0;
        margin-bottom: -45px;
    }

    .ItemList {
        width: 100%;
        margin: 0;
        margin-bottom: 45px;
    }

    .ItemList .img {
        border-radius: 5px;
    }

    .ItemList .text {
        border-radius: 0px 0px 5px 5px;
        padding: 30px 20px;
        padding-right: 75px;
    }

    .ItemList .text h1 {
        font-size: 18px;
        word-break: break-all;
    }

    .ItemList .text h2 {
        word-break: break-all;
    }

    .ItemList .text span {
        right: 10px;
    }
}

/* 详情 */
.Ny_Post {
    position: relative;
}

.Ny_Post .imgBox {
    margin: 30px 0;
    width: 100%;
    display: block;
}

.Ny_Post .imgBox img {
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.Ny_Post .title {
    display: block;
    width: 100%;
    font-size: 24px;
    line-height: 2;
    font-weight: bold;
    text-align: center;
}

.Ny_Post .desc {
    display: flex;
    justify-content: center;
    width: 100%;
}

.Ny_Post .desc span {
    margin: 0 5px;
    color: #999;
    font-size: 14px;
    line-height: 3;
    text-align: center;
}

.Ny_Post .Ny_xiangqing {
    margin-top: 30px;
    margin-bottom: 30px;
    min-height: 300px;
}

.Ny_Post .Ny_xiangqing p {
    margin: 0;
}


video {
    display: block;
    margin: 0 auto;
}


.NewsPostBottom {
    border-top: 1px solid #e6e6e6;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
}

.NewsPostBottom a {
    color: #333;
    line-height: 1;
    font-size: 16px;
}

@media (max-width: 640px) {
    .Ny_NewsPost .title {
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .Ny_NewsPost .title {
        font-size: 18px;
        line-height: 1.5;
    }

}