.djgz {
    width: 100%;
    height: 100%;
}

.djgz-one {
    overflow: hidden;
}

.dj-title {
    width: 100%;
    height: 60px;
    margin-bottom: 30px;
    display: block;
    cursor: pointer;
}

.dj-title img {
    height: 100%;
    float: left;
}

.dj-title div {
    font-size: 50px;
    float: right;
    color: #C72526;
    font-family: "微软雅黑";
}

.swiper4-box {
    width: 44%;
    height: 420px;
    overflow: hidden;
    float: left;
}

.swiper4 {
    width: 100%;
}

.swiper4 .swiper-slide {
    height: 400px;
    /* border-radius: 8px; */
    overflow: hidden;
    position: relative;
}

.swiper4 .swiper-slide .swiper4-img {
    width: 100%;
    height: 370px;
	    justify-content: center;
	    /* 水平居中 */
	    align-items: center;
	    /* 垂直居中 */
	    overflow: hidden;
}

.swiper4 .swiper-slide .swiper4-img img {
		min-width: 100%;
	    /* 确保图片宽度不会超过容器 */
	    min-height: 100%;
	    /* 确保图片高度也不会超过容器 */
	    display: block;
	    /* 移除图片下方的额外空间 */
	    object-fit: cover;
}

.swiper4 .swiper4-title {
    width: 80%;
    height: 60px;
    line-height: 30px;
    background-color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 1px solid #eee;
}

.swiper4 .swiper4-title div:nth-of-type(1) {
    width: 60px;
    height: 60px;
    padding: 5px;
    float: left;
    border-right: 1px solid #eee;
}

.swiper4 .swiper4-title div:nth-of-type(1) p:nth-of-type(1) {
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
}

.swiper4 .swiper4-title div:nth-of-type(1) p:nth-of-type(2) {
    width: 100%;
    text-align: left;
    font-size: 14px;
    line-height: 14px;
    color: #ccc;
}

.swiper4 .swiper4-title div:nth-of-type(2) {
    float: left;
    width: calc(100% - 60px);
    height: 60px;
    padding: 10px 16px;
}

.swiper4 .swiper4-title div:nth-of-type(2) p {
    font-size: 14px;
    line-height: 20px;
    height: 40px;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.djhd {
    height: 420px;
    width: 53%;
    float: right;
    background-color: #F7F7F7;
    box-sizing: border-box;
}

.djhd>a {
    height: 50%;
    float: left;
}

.djhd>a:nth-of-type(1),
.djhd>a:nth-of-type(2) {
    width: 66.66%;
}

.djhd>a:nth-of-type(3) {
    margin-top: -210px;
    width: 33.33%;
    height: 100%;
}

.djhd .djhd-img {
    width: 50%;
    height: 100%;
    justify-content: center;
    /* 水平居中 */
    align-items: center;
    /* 垂直居中 */
    overflow: hidden;
}

.djhd .djhd-img img {
    min-width: 100%;
    /* 确保图片宽度不会超过容器 */
    min-height: 100%;
    /* 确保图片高度也不会超过容器 */
    display: block;
    /* 移除图片下方的额外空间 */
    object-fit: cover;
}

.djhd .djhd-content {
    width: 50%;
    height: 100%;
    padding: 30px;
    position: relative;
}

.djhd .djhd-content::after {
    content: '';
    width: 20px;
    height: 20px;
    transform: rotateZ(45deg);
    position: absolute;
    background-color: #F7F7F7;
}

.djhd>a:nth-of-type(1) .djhd-img {
    float: right;
}

.djhd>a:nth-of-type(1) .djhd-content {
    float: left;
}

.djhd>a:nth-of-type(1) .djhd-content::after {
    right: -10px;
    top: 50%;
}

.djhd>a:nth-of-type(2) .djhd-content::after {
    left: -10px;
    top: 50%;
}

.djhd>a:nth-of-type(3) .djhd-content::after {
    right: 50%;
    bottom: -10px;
}

.djhd>a:nth-of-type(2) .djhd-img {
    float: left;
}

.djhd>a:nth-of-type(2) .djhd-content {
    float: right;
}

.djhd>a:nth-of-type(3) .djhd-img {
    width: 100%;
    height: 50%;
    float: left;
}

.djhd>a:nth-of-type(3) .djhd-content {
    width: 100%;
    height: 50%;
    float: right;
}


.djhd .djhd-content h4 {
    font-size: 20px;
    line-height: 20px;
    max-height: 40px;
    text-align: left;
    font-family: "Noto Sans SC";
    font-weight: bold;
    color: #333;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.djhd .djhd-content>div {
    font-size: 12px;
    text-align: left;
    font-family: "Noto Sans SC";
    color: #9c9c9c;
    margin: 12px 0;
}

.djhd .djhd-content>p {
    font-size: 14px;
    text-align: left;
    font-family: "Noto Sans SC";
    color: #333;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.djhd .djhd-content>button {
    width: 40px;
    font-size: 12px;
    text-align: right;
    font-family: "Noto Sans SC";
    color: #333;
    float: right;
}

.djhd>a:hover {
    background-color: #CA3E40;
}

.djhd>a:hover .djhd-content::after {
    background-color: #CA3E40;
}

.djhd>a:hover h4,
.djhd>a:hover div,
.djhd>a:hover p,
.djhd>a:hover button {
    color: #fff;
}

.djgz-two {
    width: 100%;
    display: flex;
    margin-top: 80px;
}

.djgz-two>div {
    width: 50%;
}

.djgz-two>div:nth-of-type(1) .dj-content {
    width: 100%;
    overflow: hidden;
}

.djgz-two>div:nth-of-type(1) .dj-content>.dj-content-li {
    width: 49%;
    height: 120px;
    float: left;
    border: 1px solid #ececec;
    margin-bottom: 35px;
}

.djgz-two>div:nth-of-type(1) .dj-content>.dj-content-li:nth-of-type(2n) {
    float: right;
}

.djgz-two>div:nth-of-type(2) {
    padding-left: 120px;
}

.dj-content-li {
    cursor: pointer;
    background-color: #fff;
}

.dj-content-li .dj-content-li-titie {
    min-width: 80px;
    width:fit-content;
    padding: 0 10px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    margin: 0;
    background-color: #C72526;
}

.dj-content-li>div:nth-of-type(2) {
    width: 100%;
    padding: 20px;
    overflow: hidden;
}

.dj-content-li>div:nth-of-type(2) .dj-content-time {
    float: left;
    width: 60px;
    font-family: "Noto Sans SC";
    text-align: left;
    font-style: italic;
    color: #C72526;
}

.dj-content-li>div:nth-of-type(2) .dj-content-time p:nth-of-type(1) {
    font-size: 20px;
    line-height: 24px;
}

.dj-content-li>div:nth-of-type(2) .dj-content-time p:nth-of-type(2) {
    font-size: 12px;
    line-height: 14px;
}

.dj-content-li>div:nth-of-type(2) .dj-content-details {
    float: left;
    font-family: "Noto Sans SC";
    width: calc(100% - 80px);
    height: 40px;
    line-height: 20px;
    font-size: 14px;
    text-align: left;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.dj-content-li:hover {
    background-color: #C72526;
}

.dj-content-li:hover .dj-content-li-titie {
    background-color: #fff;
    color: #C72526;
}

.dj-content-li:hover .dj-content-time>p {
    color: #fff;
}

.dj-content-li:hover .dj-content-details {
    color: #fff;
}

.ztjy {
    width: 100%;
}

.ztjy>a{
    width: 30%;
    height: 210px;
    background-color: #fff;
    float: left;
    margin-bottom: 10px;
    margin-right: 5%;
    justify-content: center;
    /* 水平居中 */
    align-items: center;
    /* 垂直居中 */
    overflow: hidden;
}

.ztjy>a:nth-of-type(2n) {
    background-color: #C72526;
    color: #fff;
}

.ztjy>a:nth-of-type(3n) {
    margin-right: 0;
}

.ztjy>a:nth-of-type(2n-1) h3 {
    color: #C72526;
}

.ztjy>a:nth-of-type(2n-1) button {
    color: #C72526;
}

.ztjy>a h3 {
    font-size: 22px;
    font-family: "Noto Sans SC";
    padding: 20px 20px 0;
    height: 53px;
    line-height: 40px;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.ztjy>a>img {
    width: 100%;
    height: 0;
    max-height: 50%;
    overflow: hidden;
}

.ztjy>a div {
    padding: 0 20px;
    font-size: 14px;
    font-family: "Noto Sans SC";
    height: 72px;
    line-height: 18px;
    text-align: left;
    margin: 20px auto 30px;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.ztjy>a button {
    padding: 0 20px;
    width: 100%;
    font-size: 24px;
    text-align: right;
}

.ztjy>a:nth-of-type(2n):hover {
    background-color: #fff;
    color: #C72526;
}

.ztjy>a:nth-of-type(2n):hover h3 {
    color: #C72526;
    height: 0;
    overflow: hidden;
    padding: 0;
}

.ztjy>a:nth-of-type(2n):hover img {
    height: 50%;
    min-width: 100%;
    /* 确保图片宽度不会超过容器 */
    /* min-height: 100%; */
    /* 确保图片高度也不会超过容器 */
    display: block;
    /* 移除图片下方的额外空间 */
    object-fit: cover;
}

.ztjy>div:nth-of-type(2n):hover div {
    height: 54px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin: 20px auto 0px;
}

.ztjy>a:nth-of-type(2n):hover button {
    color: #C72526;
}

.ztjy>a:nth-of-type(2n-1):hover {
    background-color: #C72526;
    color: #fff;
}

.ztjy>a:nth-of-type(2n-1):hover h3 {
    color: #fff;
    height: 0;
    overflow: hidden;
    padding: 0;
}
.ztjy>a:nth-of-type(2n-1):hover img {
    height: 50%;
}

.ztjy>a:nth-of-type(2n-1):hover div {
    height: 54px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin: 20px auto 0px;
}

.ztjy>a:nth-of-type(2n-1):hover button {
    background-color: #C72526;
    color: #fff;
}