@font-face {
    font-family: '思源宋体-bold';
    src: url('/hnyky/font/SourceHanSerifSC-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: '思源宋体';
    src: url('/hnyky/font/SourceHanSerifSC-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


body{
    margin: 0;
    padding: 0;
    min-width: 1000px;
}
body a{
    text-decoration: none;
}
body ul{
    margin: 0;
    padding: 0;
}









/* 头部图片 */
.barImgDiv{
    width: 100%;
    overflow: hidden;
}
.barImgDiv img{
    width: 100%;
    /* height: 261px; */
    display: block;
}








/* 新闻列表 */
.newsList{
    padding: 0 2.5%;
    display: flex;
    justify-content: center;
    background-image: url('/hnyky/images/bg_list.png');
    background-size: 100% 100%;
}
/* 左上角大标题 */
.newsList .leftBigTitle{
    width: 460px;
    height: 200px;
    background: linear-gradient(to right, #00325b, #076cbc);
    font-family: '思源宋体-bold', sans-serif;
    position: absolute;
    left: 0;
    top: 550px;
    clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 0% 100%);
    /* display: flex; */
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 300;
}
.newsList .leftBigTitle .mainTitle{
    max-width: 400px;
    white-space: nowrap;  /* 防止文本换行 */
    overflow: hidden;     /* 隐藏超出部分 */
    text-overflow: ellipsis;  /* 显示省略号 */
    font-size: 80px;
    color: white;
    position: relative;
    left: -7.5%;
}
.newsList .leftBigTitle .subTitle{
    font-family: '微软雅黑';
    font-size: 34px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    left: -7.5%;
    top: -15px;
}
.newsList .bodyDiv{
    width: 100%;
    padding: 30px 0 20px;
    display: flex;
    justify-content: space-between;
}
/* 左侧菜单 */
.newsList .bodyDiv .menuDiv{
    width: 280px;
    /* font-family: '思源宋体-bold', sans-serif; */
    /* margin-top: 100px; */
    padding: 15px 10px;
    box-sizing: border-box;
    background-color: white;
    font-weight: 600;
}
.newsList .bodyDiv .menuDiv .menuUl{
    display: flex;
    flex-direction: column;
    font-weight: 600;
}
.newsList .bodyDiv .menuDiv .menuUl a{
    color: white;
    text-decoration: none;
}
.newsList .bodyDiv .menuDiv .menuUl .menuLi{
    list-style: none;
    height: 80px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #00325b, #076cbc);
    transition: 0.3s;
}
.newsList .bodyDiv .menuDiv .menuUl .menuLi:hover{
    cursor: pointer;
    background: linear-gradient(to right, #024781, #097edb);
    transition: 0.3s;
}
/* 右侧信息列表 */
.newsList .bodyDiv .contentDiv{
    width: calc(100% - 300px);
    background-color: white;
    z-index: 200;
}
.newsList .bodyDiv .contentDiv .titleBar{
    width: 100%;
    height: 60px;
    /* font-family: '思源宋体-bold', sans-serif; */
    display: flex;
    justify-content: space-between;
}
.newsList .bodyDiv .contentDiv .titleBar .leftTitle{
    height: calc(100% - 4px);
    width: 300px;
    /* font-size: 36px; */
    font-weight: 600;
    font-size: 1.6em;
    color: #364c7d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid;
}
.newsList .bodyDiv .contentDiv .titleBar .rightPath{
    height: calc(100% - 2px);
    width: calc(100% - 300px);
    padding-right: 40px;
    border-bottom: 2px solid #9fa8c0;
    font-size: 19px;
    color: #4b5f96;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}






/* 列表 */
.newsList .bodyDiv .contentDiv .contentUl{
    padding: 20px;
    /* font-family: '思源宋体', sans-serif; */
}
.newsList .bodyDiv .contentDiv .contentUl .contentLi a{
    color: black;
    transition: 0.3s;
    width: calc(100% - 100px);
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.newsList .bodyDiv .contentDiv .contentUl .contentLi a:hover{color: #316baf; transition: 0.3s;}
.newsList .bodyDiv .contentDiv .contentUl .contentLi::before{
    content: '◆';
    color: #4b5f96;
    font-size: 14px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%); /* 垂直居中 */
}
.newsList .bodyDiv .contentDiv .contentUl .contentLi{
    height: 50px;
    list-style: none;
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: space-between;
    padding-left: 30px; /* 留出空间放置图片 */
    position: relative;
    /* font-size: 22px; */
    border-bottom: 1px dashed #dedede;
}
.newsList .bodyDiv .contentDiv .contentUl .contentLi .date{
    font-size: 16px;
    color: #666;
}
/* 切页 */
.newsList .bodyDiv .contentDiv .pageBar{
    width: 100%;
    padding: 0 40px 30px;
    font-family: '思源宋体', sans-serif;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.newsList .bodyDiv .contentDiv .pageBar .pageBt{
    padding: 5px 15px;
    margin-left: 8px;
    color: #818181;
    border: 1px solid #dedede;
    border-radius: 5px;
    display: block;
}
.newsList .bodyDiv .contentDiv .pageBar .pageBt:hover{
    cursor: pointer;
}





/* 列表 - 卡片形式 */
.newsList .bodyDiv .contentDiv .contentUlCard{
    padding: 30px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.newsList .bodyDiv .contentDiv .contentUlCard .contentLiCard{
    height: 330px;
    width: 400px;
    margin: 0 25px 30px;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.newsList .bodyDiv .contentDiv .contentUlCard .contentLiCard img{
    width: 100%;
    height: 300px;
    transition: 0.3s;
}
.newsList .bodyDiv .contentDiv .contentUlCard .contentLiCard:hover{
    cursor: pointer;
}
.newsList .bodyDiv .contentDiv .contentUlCard .contentLiCard:hover img{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.01);
    transition: 0.3s;
}
.newsList .bodyDiv .contentDiv .contentUlCard .contentLiCard .cardTitle{
    margin-top: 5px;
    line-height: 25px;
}





/* 团队列表列表 - 卡片形式 */
.newsList .bodyDiv .contentDiv .contentUlTeam{
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.newsList .bodyDiv .contentDiv .menberDetail .contentUlTeam{
    padding: 30px 20px;
}
.newsList .bodyDiv .contentDiv .contentUlTeam .contentLiTeam{
    height: 270px;
    width: 180px;
    margin: 0 10px;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}
.newsList .bodyDiv .contentDiv .contentUlTeam .contentLiTeam:hover{
    cursor: pointer;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}
.newsList .bodyDiv .contentDiv .contentUlTeam .contentLiTeam .imgDiv{
    width: 75%;
    height: 70%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.newsList .bodyDiv .contentDiv .contentUlTeam .contentLiTeam img{
    height: 100%;
}
.newsList .bodyDiv .contentDiv .contentUlTeam .contentLiTeam .name{
    font-weight: 600;
    line-height: 34px;
}
.newsList .bodyDiv .contentDiv .contentUlTeam .contentLiTeam .teamName:not(.toolTip){
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.newsList .bodyDiv .contentDiv .contentUlTeam .contentLiTeam .teamName:hover .toolTip{
    display: block;
}
.newsList .bodyDiv .contentDiv .contentUlTeam .contentLiTeam .toolTip{
    width: 180px;
    padding: 5px;
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 270px;
    left: 0;
    z-index: 999;
    text-wrap: wrap;
    text-align: left;
    word-break: break-all;
    background-color: #e0e0e0;
    border-radius: 5px;
}






/* 团队成员详情 */
.newsList .bodyDiv .contentDiv .menberDetail{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* height: calc(100% - 100px); */
    padding: 20px;
    box-sizing: border-box;
}
.newsList .bodyDiv .contentDiv .menberDetail .top{
    display: block;
    width: 100%;
}
.newsList .bodyDiv .contentDiv .menberDetail .top ul{
    display: flex;
    justify-content: flex-end;
}
.newsList .bodyDiv .contentDiv .menberDetail .top ul li{
    height: 40px;
    padding: 0 12px;
    font-size: 16px;
    list-style: none;
    display: flex;
    align-items: center;
}
.newsList .bodyDiv .contentDiv .menberDetail .top ul li a{
    color: black;
}
.newsList .bodyDiv .contentDiv .menberDetail .middle{
    width: 100%;
    display: flex;
}
.newsList .bodyDiv .contentDiv .menberDetail .left{
    height: calc(100% - 40px);
    width: 200px;
    padding: 20px;
    box-sizing: border-box;
}
.newsList .bodyDiv .contentDiv .menberDetail .left img{
    width: 100%;
}
.newsList .bodyDiv .contentDiv .menberDetail .right{
    height: calc(100% - 40px);
    width: calc(100% - 200px);
    padding: 0 40px 0 20px;
    box-sizing: border-box;
}
.newsList .bodyDiv .contentDiv .menberDetail .leftMergeRight{
    height: calc(100% - 40px);
    width: 100%;
    padding: 0 40px 0 20px;
    box-sizing: border-box;
}
.newsList .bodyDiv .contentDiv .menberDetail .left .name{
    /* display: inline-block; */
    text-align: center;
}
.newsList .bodyDiv .contentDiv .menberDetail .left .teamName{
    /* margin-left: 16px; */
    display: block;
    font-size: 14px;
    width: 100%;
    text-align: center;
}
.newsList .bodyDiv .contentDiv .menberDetail .right .contentP{
    font-size: 18px;
    line-height: 34px;
}
.newsList .bodyDiv .contentDiv .menberDetail .memberList{
    width: 100%;
}
.newsList .bodyDiv .contentDiv .menberDetail .memberList .memberTitle{
    width: 100%;
    height: 50px;
    padding-left: 20px;
    font-size: 24px;
    /* font-family: '思源宋体-bold', sans-serif; */
    display: flex;
    align-items: center;
    color: white;
    background-color: #076cbc;
    box-sizing: border-box;
}







/* 右侧文章内容 */
.newsList .bodyDiv .contentDiv .articleDiv{
    padding: 50px 75px;
}
.newsList .bodyDiv .contentDiv .articleDiv .articleTitleBar{
    height: 89px;
    border-bottom: 1px dashed #dedede;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.newsList .bodyDiv .contentDiv .articleDiv .articleTitleBar .title{
    font-size: 24px;
    text-align: center;
}
.newsList .bodyDiv .contentDiv .articleDiv .articleTitleBar .articleInfo{
    color: #979797;
}
.newsList .bodyDiv .contentDiv .articleDiv .content{
    padding: 20px 0;
    border-bottom: 2px dashed #dedede;
    font-size: 18px;
    line-height: 30px;
}
.newsList .bodyDiv .contentDiv .articleDiv .changeArticle a{color: black; transition: 0.3s}
.newsList .bodyDiv .contentDiv .articleDiv .changeArticle a:hover{color: #316baf; transition: 0.3s;}
.newsList .bodyDiv .contentDiv .articleDiv .changeArticle{
    font-size: 18px;
    line-height: 30px;
}