﻿body {
	margin: 0px;
}

.logo {
	background-image: url(../images/header-bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 30px;
	padding-bottom: 30px;
}

.search {
	text-align: right;
	vertical-align: middle;
	padding-top: 15px;
	font-size: 14px;
	background-image: url(../images/logobg1.png);
	background-position: left;
	background-repeat: no-repeat;
}
.search a{
	text-decoration: none;
	color: #000000;
	font-family: "微软雅黑 Light";
	font-size: 14px;
}

.search a:hover{
	color: #CC0000;
}







.navbar {
    height: 50px; /* 修改为所需的高度 */
	background-color:#0F4C81;
	
}





.container-bg-color{
	background-color: #F0F7FB;
	margin-top: 40px;

}





.navbg
{
	background-size: cover;
	background-image: url(../images/headermainbg.png);
	background-repeat: no-repeat;
	
}




.nav{	width:1140px;	margin-right: auto;	margin-left: auto;}
.h_ul{
	width:auto;
	margin: 0px;
}


.h_li{
	float:left;
	width:120px;
	height:50px;
	text-align:center;
	line-height: 50px;
	vertical-align: middle;
	list-style-type: none;
	font-weight: bold;
}

.h_li a{	line-height:50px;	font-size:18px;	color:#FFFFFF;	display:block;	text-decoration: none;	font-family: inherit;}

.h_li:hover{
	background-color: #FFFFFF;
}
.h_li:hover a{	color:#004b9e;	text-decoration: none;}




.line{
	float:left;
	list-style-type: none;
	width: 10px;
	color: #FFFFFF;
	text-align: center;
	vertical-align: middle;
	line-height: 50px;
	height: 50px;
	font-size: 18px;
}




/* Sub menu */
.h_sub_ul{
	width:120px;
	position:absolute;
	z-index:999999;
	visibility:hidden;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-style: none;
	border-top-color: #0F9397;
	border-right-color: #0F9397;
	border-bottom-color: #0F9397;
	border-left-color: #0F9397;
	border-top-width: 0px;
	padding: 0px;
	margin-left: -1px;
}

.h_li:hover .h_sub_ul{visibility:visible; *margin-left:-72px;}
.h_sub_li{
	width:118px;
	height:40px;
	background-color:#FFFFFF;
	list-style-type: none;
	text-align: center;
}

.h_sub_li:hover{
	background-color: #0F9397;
}
.h_sub_li:hover a{color:#ffffff;}
.h_sub_li a {	line-height:40px;	font-size:16px;	text-decoration: none;}







/* 移动端导航目录 */
.mnavclose
{
	text-align: right;
}

.mnav
{
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	font-family: inherit;
	font-size: 18px;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	background-color: #FFFFFF;
}
.mnav i
{
	text-align: right;
	float: right;
}

.mnav a
{
	color: #393939;
	text-decoration: none;
	display: block;
}
.mnav a:hover
{
	color: #2461B1;
	text-decoration: none;
}

.mnavz
{

}


.mnavz li
{
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	font-size: 16px;
	font-weight: bold;
	background-color: #FFFFFF;
	list-style-type: none;
	text-indent: 36px;
}

.mnavz li i
{
	text-align: right;
	float: right;
}
.mnavz li:last-child
{

	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}

.mnavz li a
{
	color: #393939;
	text-decoration: none;
	display: block;
}
.mnavz li a:hover
{
	color: #2461B1;
	text-decoration: none;
}



/* 移动端导航结束 */



    /* 自定义配色 */
    :root {
      --primary-color: #0F4C81;
      --secondary-color: #2E7D32;
      --light-color: #f8f9fa;
    }
    .text-primary { color: var(--primary-color) !important; }
    .bg-primary { background-color: var(--primary-color) !important; }
    .text-secondary { color: var(--secondary-color) !important; }
    .bg-secondary { background-color: var(--secondary-color) !important; }
  



    /* 轮播 Banner 样式 */
    #heroCarousel {
      height: 74vh;
      min-height: 500px;
    }
    #heroCarousel .carousel-item {
      height: 74vh;
      min-height: 500px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }
    /* 背景遮罩 */
    .carousel-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(15, 76, 129, 0.7);
    }
    /* 轮播文字居中 */
    .carousel-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center;
    }

    /* 随机切换动画 */
    .carousel-fade .carousel-item {
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }
    .carousel-fade .carousel-item.active {
      opacity: 1;
    }
    .carousel-scale .carousel-item {
      transform: scale(1.1);
      transition: transform 1.2s ease-in-out;
    }
    .carousel-scale .carousel-item.active {
      transform: scale(1);
    }
    .carousel-slide {
      transition: transform 1.2s ease-in-out;
    }
    /* 轮播 Banner 样式结束 */
	
    /* 标题下划线 */
    .title-border {
	width: 70px;
	height: 3px;

      background: var(--secondary-color);
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
    }






/* 简介部分 */

.flex-container {
  display: flex;
}



.title
{
	background-position: top;
	color: #2E7D32;
	font-weight: bold;
	border-bottom-style: solid;
	border-bottom-color: #2E7D32;
	padding-bottom: 10px;
	  min-width: 0; /* 重要：允许内部元素收缩 */
	
}

.syjjnr {
	font-size: 18px;
	line-height: 35px;
	padding-top: 3px;
	padding-bottom: 15px;
	text-indent: 35px;
}

.btmore {
	text-align: right;
}
.btn-custom {
    background-color: #13A196; /* 蓝色 */
    border-color: #13A196; /* 蓝色 */
}

/* 简介部分结束 */











/* 新闻部分 */



/* 新闻部分 */

.xwtitle
{
	text-align: center;
	margin-bottom: 30px;
}

.tbbg
{
	font-size: 20px;
	font-weight: bold;
	font-family: inherit;
	color: #004B9E;
	padding-bottom: 10px;
	border-bottom-style: solid;
	border-bottom-color: #004B9E;
	border-bottom-width: medium;
}






.xwdtrow
{
	margin: 0px;
	padding-right: 10px;
	padding-left: 10px;
}



.pic-news{
}
.pic-news img{transition: all 0.4s ease;}

.news-img{
	overflow:hidden;
}

.pic-news h5{
	color: #000000;
	font-family: "微软雅黑 Light";
	font-size: 16px;
	text-align: left;
	margin-bottom: 10!important;
	font-weight: bold;
	margin-top: 10px;
		
}
.pic-news p{
	color: #999999;
	font-family: inherit;
	font-size: 14px;
	text-indent: 28px;
}

.pic-news a{
	text-decoration: none;
}
.pic-news a:hover h5{
	color: #CC0000;
}

.pic-news a:hover  .news-img img{
	transform: scale(1.05);
}
.pic-news p span{
	float: right;
}








.wzlist
{

}

.wzlist  li
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	list-style-type: none;
	height: 90px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
.wzlist  li a:link
{
	text-decoration: none;
}


.wzlistrq
{
	margin-right: 20px;
	background-color: #F0F0F0;
	float: left;
	width: 70px;
}

.wzlistrq  .day{
	font-size: 24px;
	height:50px;
	color: #004B9E;
	font-family: inherit;
	text-align: center;
	vertical-align: middle;
	margin: 0px;
	padding: 0px;
	line-height: 50px;
}

.wzlistrq  .year
{
	font-size:14px;
	color: #969696;
	font-family: inherit;
	height: 30px;
	text-align: center;
	vertical-align: middle;
	margin: 0px;
	padding: 0px;
	line-height: 30px;
}





.wzlisttt

{	}

.wzlisttt h2{
	font-size:16px;
	color: #000;
	font-family: "微软雅黑 Light";
	vertical-align: middle;
	padding: 0px;
	font-weight: bold;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
}

.wzlisttt p{
	font-size: 14px;
	color: #828282;
	text-indent: 28px;
	vertical-align: middle;
	margin: 0px;
	padding: 0px;
}





.wzlist  li a:hover .wzlisttt  h2
{
	text-decoration: none;
	color: #CC0000;
	border-bottom-color: #CC0000;
}


/* 新闻部分结束 */










/* 通知公告 */


.navbg

{
	background-image: url(../images/bg-map.png);
}


.card-hover{
	transition: all 0.3s ease;
	border: 1px solid #076AAE;

    }
.card-hover:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);

    }

.tzrq {
	font-size: 16px;
	font-weight: bold;
	color: #999999;
	font-style: italic;
    }
.tztt {
	font-size:16px;
	color: #000;
	font-family: "微软雅黑 Light";
	font-weight: bold;
    }
 .tztt a:link 	
	 {
	text-decoration: none;

    }

 .tztt a:hover 	
	 {
	text-decoration: none;
	color: #076AAE;
    }

/* 通知公告结束 */











.隔断
｛
｝



/* 通知  研究 */
.tbbg
{
	font-size: 20px;
	font-weight: bold;
	font-family: inherit;
	color: #004B9E;
	padding-bottom: 10px;
	border-bottom-style: solid;
	border-bottom-color: #004B9E;
	border-bottom-width: medium;
}


.tzbg
{




	font-size: 20px;
	font-weight: bold;
	font-family: inherit;
	background-image: url(../images/tbbg1.png);
	background-repeat: no-repeat;
	background-position: center center;
	text-align: center;
	vertical-align: middle;
	color: #004B9E;
	margin-bottom: 20px;
	
	
	
	
	
	
}

.dqgz{

}

.dqgz ul{
	margin: 0px;
	padding: 0px;	
}
.dqgz ul li{
	list-style-type: none;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCCCCC;
	padding-top: 15px;
	padding-bottom: 15px;
}

.dqgz ul li a{
	font-size:16px;
	color: #000;
	font-family: "微软雅黑 Light";
	font-weight: bold;
	text-decoration: none;
	display: block;
}
.dqgz ul li  a:hover{
	color: #AE1C1C;
	font-weight: bold;
 }

.dqgz ul li span{
	color: #9a9a9a;
	font-size: 14px;
	float: right;
}

/* 通知  研究 结束 */








/* 底部 */

.db {
	background-color: #3f4851;
}

.dbwz{
	margin: 0px;
	padding: 0px;

}

.dbwz li{
	font-size: 14px;
	color: #F0F0F0;
	padding-top: 3px;
	padding-bottom: 3px;
	list-style-type: none;
}

.dbwz li a{
	color: #FFFFFF;
	text-decoration: none;
}

.dbwz li a:hover{
	color: #FFCC00;
}

/* 底部结束 */










/*list页面*/


.list-tp{
	height: 220px;
	width: auto;
}


.left-zr
{	

position: relative;
bottom: 65px;

}


.list-lefttb
{
height: 80px;
	font-family: inherit;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	line-height: 80px;
	border-radius: 10px 10px 0 0;
	color: #FFFFFF;
	vertical-align: middle;

background-color: rgba(0, 75, 158, 0.8);

}










.list-leftnr
{
}



.list-leftnr  li
{
	height:50px;
	text-align: left;
	vertical-align: middle;
	line-height: 50px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCCCCC;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-left-color: #CCCCCC;
	list-style-type: none;
	text-indent: 40px;
}
.list-leftnr  li a
{
	text-decoration: none;
	color: #000000;
	display: block;
	font-family: "微软雅黑 Light";
	font-weight: bold;
	font-size: 16px;
}

.list-leftnr  li a:hover{
	background-color: #BBFFE8;
	color: #AE1C1C;
	display: block;
}

.list-leftnr  li:last-child
{
	height:50px;
	text-align: left;
	vertical-align: middle;
	line-height: 50px;
	display: list-item;
	text-indent: 40px;
	font-size: 16px;
	list-style-type: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}



.list-leftsz
{
}



.list-leftsz  li
{
	height:50px;
	text-align: left;
	vertical-align: middle;
	line-height: 50px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCCCCC;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-left-color: #CCCCCC;
	list-style-type: none;
	text-indent: 20px;
}
.list-leftsz  li a
{
	text-decoration: none;
	color: #000000;
	display: block;
	font-family: "微软雅黑 Light";
	font-weight: bold;
	font-size: 16px;
}

.list-leftsz  li a:hover{
	background-color: #BBFFE8;
	color: #AE1C1C;
	display: block;
}

.list-leftsz  li:last-child
{
	height:50px;
	text-align: left;
	vertical-align: middle;
	line-height: 50px;
	display: list-item;
	text-indent: 20px;
	font-size: 16px;
	list-style-type: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}










.list-lefttp
{
	margin-top: 20px;
}





.qtlist{
	height: auto;
	width: auto;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 10px;
}



.qtlist  li {
	text-indent: 32px;
	margin-bottom: 10px;
	list-style-type: none;
}

.qtlist  li a{
	text-decoration: none;
	font-size: 16px;
	color: #000000;
	font-family: inherit;
 }  
.qtlist  li a:hover{
	color: #AE1C1C;
}
.qtlist  li  span {
	color: #666666;
	font-size: 14px;
  } 








.list-right
{
	height: auto;
	width: 840px;
	float: left;
	margin-top: 40px;
}


.list-righttb
{
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	margin: 0px;
	padding: 0px;
	height: 43px;
}


.list-righttbh5
{
	font-family: inherit;
	font-size: 20px;
	font-weight: bold;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #004B9E;
	width:-moz-fit-content;
	width:-webkit-fit-content;
	width:-moz-fit-content;
	padding-bottom: 11px;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	float: left;
	color: #004B9E;
}







.listnr
{

}

.listnr  li
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	padding-top: 10px;
	list-style-type: none;
	margin: 0px;
	padding-bottom: 10px;
	height: 100px;
}

.listnr-div1

{
	margin-right: 20px;
	width: 80px;
	background-color: #F0F0F0;
	float: left;
}

.listnr-div1  .day{
	font-size: 30px;
	height:50px;
	color: #004B9E;
	font-family: inherit;
	text-align: center;
	vertical-align: middle;
	line-height: 50px;
	margin: 0px;
	padding: 0px;
}

.listnr-div1  .year
{
	font-size:16px;
	color: #969696;
	font-family: inherit;
	height: 30px;
	line-height: 30px;
	text-align: center;
	vertical-align: middle;
	margin: 0px;
	padding: 0px;
}

.listnr-div2

{	}

.listnr-div2 h2{
	font-size:16px;
	line-height:30px;
	color: #000;
	font-family: "微软雅黑 Light";
	vertical-align: middle;
	height: 30px;
	margin: 0px;
	padding: 0px;
	font-weight: bold;
}
.listnr-div2 p{
	font-size: 14px;
	color: #828282;
	height: 50px;
	text-indent: 28px;
	vertical-align: middle;
	margin: 0px;
	padding: 0px;
}
.listnr  li a:link
{
	text-decoration: none;
}
.listnr  li a:hover .listnr-div2 h2
{
	text-decoration: none;
	color: #CC0000;
	border-bottom-color: #CC0000;
}









/*content页面*/

.bmgknr
{
	padding-top: 10px;
}



#content{
	box-shadow: 0 0 5px 1px #DDDDDD;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 20px;
	margin: 0px;
}
.content-lj{
	font-size: 16px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.content-lj a{
	color: #000000;
	text-decoration: none;
}

.content-lj a:hover{
	color: #CC0000;
	text-decoration: none;
}
.content-divtt{
	font-family: inherit;
	font-size: 20px;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	text-align: center;
	font-weight: bold;
	padding-bottom: 10px;
	padding-top: 10px;
}

.content-divtt span{
	font-family: inherit;
	font-size: 18px;
	text-align: right;
	font-weight: bold;
	color: #000000;
	display: block;
	padding-right: 40px;
}

.content-divtt1{
	font-size: 16px;
	line-height: 40px;
	color: #B8B8B8;
	height: 40px;
	text-align: right;
	vertical-align: middle;
}

.content-divnr{

}
.content-divnr img{
width: 80%;
height: auto;
}








/*师资队伍页面*/

.szlist{
	padding-top: 40px;

}

.szlist li{
	border: 1px solid #2251a3;
	height: 220px;
	list-style-type: none;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
 }
.szlistimg {
	float: left;
	position: relative;
	bottom: 40px;
	margin-right: 20px;
 }

 .szlist li:hover {
	box-shadow: 0 0 5px  #2251a3;
	display: block;
}
  .szlist li h5 {
	font-weight: bold;
	text-indent: 10px;

}
  .szlist li p {
	text-indent: 10px;

}
.szlistmore
{
	padding-top: 6px;
	text-align: right;
}
   .szlist li img {
	display: flex;
	justify-content: center;
	align-items: center;
	float: left;
}
 
 

.szdwlisttb
{
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	margin: 0px;
	padding: 0px;
	height: 43px;
}


.szdwlisttb h5
{
	font-weight: bold;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #2461B1;
	width:-moz-fit-content;
	width:-webkit-fit-content;
	width:-moz-fit-content;
	padding-bottom: 17px;
	margin: 0px;
	padding-top: 0px;
	padding-right: 10px;
	padding-left: 0px;

	
	
}
.szdwlisttb h5 img {
	display: flex;
	justify-content: center;
	align-items: center;
	float: left;
}