/* 新闻区块重构样式 - 参考图片结构 */

/* 新闻区块主容器 */
.home-news-v2 {
    width: 100%;}

.home-news-v2 .content {
    display: flex;
    align-items: flex-start;
    gap: 40px;}

/* 左侧焦点图区域 */
.home-news-v2 .focus {
    width: 50%;
    max-width:710px;
    flex-shrink: 0;}

.home-news-v2 .focus .swiper-slide {
    display: block;}

.home-news-v2 .focus .pic {
    width: 100%;
    height:420px;
    overflow: hidden;
    position: relative;}

.home-news-v2 .focus .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;}

/* 左侧焦点图下方文字区域 */
.home-news-v2 .focus .text-con {
    margin-top: 15px;}

.home-news-v2 .focus .tit {
    font-size: 24px;
    font-weight: normal;
    color: #000;
    line-height: 1.5;
    margin-bottom: 10px;}

.home-news-v2 .focus .des {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
    overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}

.home-news-v2 .focus .date {
    font-size: 14px;
    color: #087f85;
    display: flex;
    align-items: center;
    gap: 6px;}

.home-news-v2 .focus .date .date-icon {
    display: inline-block;
    width: 18px;
    height: 15px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23087f85"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z"/></svg>') center no-repeat;
    background-size: contain;}

/* 焦点图分页器 - 位于图片区域右下角 */
.home-news-v2 .focus .swiper-container {
    position: relative;}

.home-news-v2 .focus .swiper-pagination {
    position: absolute;
    bottom: 165px;
    right: 15px;
    left: auto;
    width: auto;
    text-align: right;
    z-index: 10;}

.home-news-v2 .focus .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,1);
    opacity: 1;
    margin: 0 4px;}

.home-news-v2 .focus .swiper-pagination-bullet-active {
    background: #087f85;}

/* 右侧新闻列表 - 参考图片样式 */
.home-news-v2 .news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;}

.home-news-v2 .news-item {
    border-bottom: 1px solid #eee;
    padding: 18px 0;
    position: relative;}

.home-news-v2 .news-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1c8a8b;
    transition: width 0.4s ease;}

.home-news-v2 .news-item:hover::after {
    width: 100%;}

.home-news-v2 .news-item:first-child {
    padding-top: 0;}

/* .home-news-v2 .news-item:last-child {
    border-bottom: none;
}

.home-news-v2 .news-item:last-child::after {
    display: none;
}
 */
.home-news-v2 .news-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;}

/* 日期样式 - 参考图片：绿色大号数字 + 灰色年月 */
.home-news-v2 .news-item .date {
    width:72px;
    padding: 14px 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    text-align: center;
    border: 1px #ebebeb solid;
    transition: all 0.3s ease;}

.home-news-v2 .news-item:hover .date {
    background-color: #1c8a8b;
    border-color: #1c8a8b;
    border-radius:0 26px 0 26px;}

.home-news-v2 .news-item:hover .date .day,
.home-news-v2 .news-item:hover .date .year-month {
    color: #fff;}

.home-news-v2 .news-item .date .day {
    font-size: 32px;
    font-weight: bold;
    color: #2a9d8f;
    line-height: 1;
    margin-bottom: 4px;}

.home-news-v2 .news-item .date .year-month {
    font-size: 12px;
    color: #999;
    line-height: 1;}

/* 新闻标题 - 参考图片样式 */
.home-news-v2 .news-item .news-title {
    flex: 1;
    font-size: 17px;
    color: #333;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;}

.home-news-v2 .news-item a:hover .news-title {
    color: #087f85;}

/* index_two 一行两列布局 */
.index_two { background: #f5f5f5; padding: 80px 0; margin-top: 70px;}

.index_two_container {
    display: flex;
    gap: 40px;
    width: 1460px;
    margin: 0 auto;
    max-width: 92%;}

.index_two_item {
    flex: 1;
    width: 50%;}

/* 简洁新闻列表样式 - 参考图片结构 */
.news-simple-list {
    width: 100%;}

.news-simple-item {
    padding: 18px 0;}

.news-simple-item:last-child {
    border-bottom: none;}

.news-simple-item:last-child::after {
    display: none;}

.news-simple-item a {
    display: block;
    text-decoration: none;
    color: inherit;}

.news-simple-item .title {
    font-size: 17px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: normal;}

.news-simple-item a:hover .title {
    color: #087f85;}

.news-simple-item .date-line {
    display: flex;
    align-items: center;
    gap: 15px;}

.news-simple-item .date {
    font-size: 14px;
    color: #087f85;
    flex-shrink: 0;}

.news-simple-item .line {
    flex: 1;
    height: 1px;
    background: #e8e8e8;}

/* 2x2 卡片网格布局 - 参考图片结构 */
.card-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;}

.card-item {
    position: relative;
    padding: 25px;
    min-height: 167px;
    overflow: hidden;transition: all .5s ease;}

.card-item a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 2;}
.card-item:hover {
   transform: translateY(-10px);}

.card-item.blue-dark {
    background: #087f85 url("https://www.peaktip.com/__xh__/hyxt.whu.edu.cn/dfiles/11967/case/whu_hyxt2/images/xx-1.png") no-repeat right bottom;}

.card-item.blue-light {
    background: #cfecec url("https://www.peaktip.com/__xh__/hyxt.whu.edu.cn/dfiles/11967/case/whu_hyxt2/images/xx-2.png") no-repeat right bottom;}

.card-item.blue-dark .card-title,
.card-item.blue-dark .card-date {
    color: #fff;}

.card-item.blue-light .card-title,
.card-item.blue-light .card-date {
    color: #333;}

.card-item .card-title {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: normal;
    flex: 1;}

.card-item .card-date {
    font-size: 14px;
    flex-shrink: 0;}

/* 背景装饰图案 */
.card-item::after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 80px;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 80" fill="none"><path d="M20 60 L50 20 L80 60 Z" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="30" cy="40" r="15" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="70" cy="40" r="15" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') center no-repeat;
    background-size: contain;
    opacity: 0.3;
    z-index: 1;}

.card-item.blue-light::after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 80" fill="none"><path d="M10 70 L50 10 L90 70 Z" stroke="rgba(30,90,168,0.1)" stroke-width="2"/><path d="M25 70 L50 30 L75 70 Z" stroke="rgba(30,90,168,0.1)" stroke-width="2"/></svg>') center no-repeat;
    background-size: contain;}

/* index_two 内部的 news-list 样式 */
.index_two .news-list {
    width: 100%;}

.index_two .news-list .news-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 13px 0;
    position: relative;}

.index_two .news-list .news-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1c8a8b;
    transition: width 0.4s ease;}

.index_two .news-list .news-item:hover::after {
    width: 100%;}

.index_two .news-list .news-item:first-child {
    padding-top: 0;}

/* .index_two .news-list .news-item:last-child {
    border-bottom: none;
}

.index_two .news-list .news-item:last-child::after {
    display: none;
} */

.index_two .news-list .news-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;}

.index_two .news-list .news-item .date {
    width: 74px;
    padding: 14px 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    text-align: center;
    border: 1px #ebebeb solid;
    background: #fff;
    transition: all 0.3s ease;}

.index_two .news-list .news-item:hover .date {
     background-color: #1c8a8b;
    border-color: #1c8a8b;
    border-radius:0 26px 0 26px;}

.index_two .news-list .news-item .date .day {
    font-size: 32px;
    font-weight: bold;
    color: #2a9d8f;
    line-height: 1;
    margin-bottom: 4px;
    transition: color 0.3s ease;}

.index_two .news-list .news-item .date .year-month {
    font-size: 12px;
    color: #999;
    line-height: 1;
    transition: color 0.3s ease;}

.index_two .news-list .news-item:hover .date .day,
.index_two .news-list .news-item:hover .date .year-month {
    color: #fff;}

.index_two .news-list .news-item .news-title {
    flex: 1;
    font-size: 17px;
    color: #333;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;}

.index_two .news-list .news-item a:hover .news-title {
    color: #087f85;}

/* 学术资讯卡片样式 - 参考图片结构 */
.academic-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:20px;
    width: 100%;}

.academic-card {
    background: #fff;
    overflow: hidden;}

.academic-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;}

.academic-card .card-image {
  
    width:calc(100% - 30px);
    aspect-ratio: 3/4.21;
    overflow: hidden;
    margin: 15px 15px 0 15px;}

.academic-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;}

.academic-card .card-date-tag {
    position: absolute;
    top: 0;
    left: 5px;
    background: #087f85;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    z-index: 2;}

.academic-card .card-date-tag::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-top: 8px solid #065f63;}

.academic-card .card-overlay {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height:calc(100% + 15px);
    background: rgba(8, 127, 133, 1) url("https://www.peaktip.com/__xh__/hyxt.whu.edu.cn/dfiles/11967/case/whu_hyxt2/images/xs_botbg.jpg") no-repeat center bottom;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 3;}

.academic-card:hover .card-overlay {
    opacity: 1;}

.academic-card .academic-logo {
   width: 100%;
   height: 100px;
   background: url("https://www.peaktip.com/__xh__/hyxt.whu.edu.cn/dfiles/11967/case/whu_hyxt2/images/baogao_top.png") center top no-repeat;
   background-size: cover;
   margin-bottom: 25px;}
.academic-card .academic-bottom {
   width: 100%;
   height: 100px;
   background: url("https://www.peaktip.com/__xh__/hyxt.whu.edu.cn/dfiles/11967/case/whu_hyxt2/images/xs_botbg.jpg") center no-repeat;
   background-size: contain;}
/* .academic-card .academic-logo img {
    width: 100%;
    height: 93px;
    object-fit: contain;
} */



.academic-card .academic-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 25px;
    text-decoration: underline;
    text-underline-offset: 4px;
    padding: 25px;}

.academic-card .academic-info {
    color: #fff;}

.academic-card .academic-info .info-row {
    display: flex;
    align-items: flex-start;
    margin: 0 25px 10px 25px;
    line-height: 1.8;}

.academic-card .academic-info .label {
    opacity: 0.9;
    width: 74px;
    flex-shrink: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 4px;}

.academic-card .academic-info .label i {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;}

.academic-card .academic-info .label .icon-speaker {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');}

.academic-card .academic-info .label .icon-time {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>');}

.academic-card .academic-info .label .icon-location {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');}

.academic-card .academic-info .value {
    flex: 1;
    font-size: 16px;
    word-break: break-all;}

.academic-card .card-title-bottom {
    padding: 20px;
    margin: 0;
    font-size: 16px;
    min-height: 45px;
    color: #333;
    text-align: center;
    font-weight: normal;}

.academic-card:hover .card-title-bottom {
    color: #087f85;}

/*学术报告 */
.fxy-xsjz-list {}

.fxy-xsjz-list ul {
	position: relative;
	display: flex;
    gap: 20px;}

/* .fxy-xsjz-list ul::before {
	content: "";
	width:100%;
	height:7px;
	background: #087f85;
	border-radius: 5px;
	position: absolute;
	left: 0;
	top: 13px;
	z-index: 1;
} */

.fxy-xsjz-list ul li {
	width:223px;}

.fxy-xsjz-list ul li .box {
	height:524px;
	padding: 50px 11px 0 11px;
	background: url("https://www.peaktip.com/__xh__/hyxt.whu.edu.cn/dfiles/11967/case/whu_hyxt2/images/bg-grey.png") no-repeat center top;
	position: relative;
	z-index: 2;
	background-size: contain;}

.fxy-xsjz-list ul li .box .time {
	font-family: "din";
	font-weight: 500;
	font-size: 14px;
	color: #fff;
	text-align: center;
	margin-bottom: 20px;}

.fxy-xsjz-list ul li .box .img {
	width: 100%;
	height:315px;
	overflow: hidden;}

.fxy-xsjz-list ul li .box .img img {
	width: 100%;
	height: 100%;
	object-fit: cover
;}

.fxy-xsjz-list ul li .box .title {
	height: 50px;
	line-height:1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: 400;
	font-size: 16px;
	color: #333333;
    text-align: center;
	margin-top: 15px;}

.fxy-xsjz-list ul li .box1 {
	display: none;}

.fxy-xsjz-list ul li:hover .box {
	display: none;}

.fxy-xsjz-list ul li:hover .box1 {
	display: block;
	height: 524px;
	padding: 90px 11px 0 11px;
	background: url("https://www.peaktip.com/__xh__/hyxt.whu.edu.cn/dfiles/11967/case/whu_hyxt2/images/bg-green.png") no-repeat center top;
	background-size: contain;}

.fxy-xsjz-list ul li .box1 .item {
	color: #fff;
	margin: 20px 0;}

.fxy-xsjz-list ul li .box1 .item h4 {
	position: relative;
	text-indent: 25px;font-size: 14px;}

.fxy-xsjz-list ul li .box1 .item h4.zt::before {
	content: "";
	background: url("https://www.peaktip.com/__xh__/hyxt.whu.edu.cn/dfiles/11967/case/whu_hyxt2/images/zt.png") no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background-size: contain;}

.fxy-xsjz-list ul li .box1 .item h4.sj::before {
	content: "";
	background: url("https://www.peaktip.com/__xh__/hyxt.whu.edu.cn/dfiles/11967/case/whu_hyxt2/images/sj.png") no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background-size: contain;}

.fxy-xsjz-list ul li .box1 .item h4.dd::before {
	content: "";
	background: url("https://www.peaktip.com/__xh__/hyxt.whu.edu.cn/dfiles/11967/case/whu_hyxt2/images/dd.png") no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background-size: contain;}

.fxy-xsjz-list ul li .box1 .item h4.zjr::before {
	content: "";
	background: url("https://www.peaktip.com/__xh__/hyxt.whu.edu.cn/dfiles/11967/case/whu_hyxt2/images/zjr.png") no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background-size: contain;}

.fxy-xsjz-list ul li .box1 .item p {
	padding-left: 25px;}

.fxy-xsjz-list ul li .box1 .item p.zt,
.fxy-xsjz-list ul li .box1 .item p.sj,
.fxy-xsjz-list ul li .box1 .item p.dd,
.fxy-xsjz-list ul li .box1 .item p.zjr {
	height: 50px;
	line-height: 1.8;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: 400;
	font-size: 14px;}


/* 响应式适配 */

@media (max-width: 1400px) {
.academic-card .card-image {
    aspect-ratio: 3/5.32;}
.academic-card .academic-info .label { font-size: 14px;}
.academic-card .academic-info .value { font-size: 14px;}
.fxy-xsjz-list ul li .box {padding: 36px 11px 0 11px;height:440px;}
.fxy-xsjz-list ul li .box .img {height: 240px;}
.index_two .news-list .news-item .date {  width:66px;    padding: 10px 0;}
.index_two .news-list .news-item {padding: 11px 0;}
.fxy-xsjz-list ul li:hover .box1 {padding:40px 11px 0 11px;}

}

@media (max-width: 1200px) {
.home-news-v2 .focus .pic {

    height:380px;}
}

@media (max-width: 1200px) {
    .home-news-v2 .content {
        flex-direction: column;}
    
    .home-news-v2 .focus {
        width: 100%;}
    
    .home-news-v2 .focus .pic {
        height: auto;
        aspect-ratio: 16/9;}
    
    .home-news-v2 .news-list {
        width: 100%;}
}

@media (max-width: 768px) {
    .home-news-v2 .focus .pic {
        height: auto;}
    
    .home-news-v2 .news-item .date .day {
        font-size: 24px;}
    
    .home-news-v2 .news-item .news-title {
        font-size: 14px;}
    .home-news-v2 .focus .tit {
    font-size: 18px; font-weight: 600;}

    .home-news-v2 .news-item .date {
    width:62px;}
    .index_two_container{flex-direction: column;}

    .index_two_item {    width: 100%;}

    .index_two .news-list .news-item .date {
    width: 64px;}

    .index_two .news-list .news-item .date .day {
    font-size: 24px;}

    .card-item { padding: 15px;}

    .index_two .news-list .news-item .news-title {
    font-size: 14px;}

    .card-item .card-title {
    font-size: 14px;}

   .academic-card .card-image {
        aspect-ratio: 3 / 4.3;}


    .fxy-xsjz-list ul li {  width:48%;}
    .fxy-xsjz-list ul li .box {     padding: 36px 11px 0 11px;}
    .fxy-xsjz-list ul li:last-child {display: none;}
    .fxy-xsjz-list ul li .box .title { font-size: 14px;    height: 60px;}

    .index_two { padding-bottom: 30px;}




}
