﻿html,body{
	margin:0px;
	padding:0px;
	font-family: 'AlibabaPuHuiTi-Refular' !important;
}

.conTimeDiv {
	width: 100%;
	height: 88px;
	background: #fff;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.countDownSpan {
	font-size: 20px;
	color: #333333;
	text-align: center;
	font-weight: 700;
	margin-left: 40px;
}
.countDownDaySpan {
	font-size: 40px;
	color: #7CC240;
	text-align: center;
	font-weight: 700;
	margin-left: 10px;
}
.loginButton {
	min-width: 68px;
	width: auto;
	height: 40px;
	margin-left: auto; /* 将loginButton和enButton推到右边 */
	margin-right: 40px; /* 设置与enButton的左边距 */
	background-color: #007BFF;
	color: #FFFFFF;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-size: 20px;
	color: #FFFFFF;
	text-align: center;
	font-weight: 500;
}
.enButton {
	width: 40px;
	height: 40px;
	margin-right: 40px; /* 设置与右边的边距 */
	background-color: #FFA500;
	color: #FFFFFF;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-size: 20px;
	color: #FFFFFF;
	text-align: center;
	font-weight: 500;
}
.testEnButton {
	position: absolute;
	top: 25px;
	right: 25px;
	width: 40px;
	height: 40px;
	background-color: #0b445b;
	color: #FFFFFF;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-size: 20px;
	color: #FFFFFF;
	text-align: center;
	font-weight: 500;
}

.bannerDiv {
	position: relative;
	width: 1060px;
	height: 150px; /* 设置固定高度 */
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto; /* 水平居中 */
}
.bannerImg {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 保持图片比例，填满整个容器 */
}

.menuDiv {
	width: 1060px;
	height: 50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 10px auto 10px auto !important; /* 水平居中 */
	/* gap: 10px; */
}
.menuFacultyDiv {
	width: 1060px;
	height: 50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 10px auto 0px auto !important; /* 水平居中 */
	/* gap: 10px; */
}
.el-menu--horizontal>.el-menu-item {
    color: #909399;
	font-size: 17px;
	text-align: center;
	font-weight: 400;
	background-color: transparent !important;
	height: 50px !important;
	line-height: 50px !important;
}
.el-submenu__title {
    color: #909399 ;
	font-size: 17px !important;
	text-align: center;
	font-weight: 400 !important;
	background-color: transparent !important;
}
.el-submenu__icon-arrow {
    font-size: 17px !important;
}
/* 修改悬浮时的背景色 */
.el-menu-item:hover {
  background-color: #F6D8A4 !important; /* 需要添加 !important */
  color: #AD3233 !important; /* 设置字体颜色为黄色 */
}

.searchBgDiv {
	width: 1060px;
	height: 50px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between; 
	margin: 0px auto !important; /* 水平居中 */
	background-color: #dadada;
}
.searchTitleDiv {
	width: 50%;
	height: 50px;
	color: #333;
	text-align: left; 
	line-height: 50px; /* 垂直居中文本 */
	font-size: 16px;
	font-weight: 400;
	padding-left: 20px; /* 文字距离左边框10px */
	box-sizing: border-box; /* 包含padding和border在内的宽度 */
}
.searchDiv {
	width: 25%;
	height: 50px;
	margin-right: 20px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.facultyListBgDiv {
	width: 1060px;
	height: auto;
	margin: 10px auto !important; /* 水平居中 */
	padding: 20px; /* 文字距离左边框10px */
	box-sizing: border-box; /* 包含padding和border在内的宽度 */
	background-color: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap; 
	justify-content: space-around;
}
.facultyListItemDiv {
	width: 210px;
	height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	cursor: pointer;
	margin-bottom: 40px;
	border: 1px solid #eaeaea; /* 边框一直显示 */
	transition: transform 0.3s ease; /* 仅缩放添加动画 */
}
.facultyListItemDiv:hover {
	transform: scale(1.05); /* 鼠标悬停时放大 5% */
}
.facultyDetailBgDiv {
	width: 1060px;
	height: auto;
	margin: 10px auto !important; /* 水平居中 */
	padding: 20px; /* 文字距离左边框10px */
	box-sizing: border-box; /* 包含padding和border在内的宽度 */
	background-color: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	display: flex;
}
.facultyDetailItemDiv {
	width: 210px;
	height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-bottom: 20px;
	border: 1px solid #eaeaea; /* 边框一直显示 */
	transition: transform 0.3s ease; /* 仅缩放添加动画 */
}
.facultyDetailItemDiv:hover {
	transform: scale(1.05); /* 鼠标悬停时放大 5% */
}
.facultyDetailContentDiv {
	height: auto;
	margin-left: 20px;
	margin-bottom: 20px;
	flex: 1;
	text-align: justify; /* 文字两端对齐 */
	display: flex;
	flex-direction: column; /* 确保内容从上到下排列 */
	justify-content: flex-start; /* 内容居顶对齐 */
	line-height: 1.6; /* 设置行高，确保文字有良好的可读性 */
	align-items: stretch;
	white-space: pre-line;
}

.middleBgDiv {
	width: 1060px;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between; 
	margin: 0 auto !important; /* 水平居中 */
}
.middleLeftDiv {
	width: 250px;
	height: 550px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.middleDiv {
	margin-bottom: 20px;
	width: 520px;
	height: auto;
	display: flex;
	flex-direction: column;
	/* background-color: #2d6fb7; */
}
.lunboDiv {
	width: 520px;
	height: 300px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.5); /* 添加阴影 水平/垂直/模糊半径/颜色 */
}
/* .el-carousel__item:nth-child(2n) {
    background-color: #99a9bf;
}
.el-carousel__item:nth-child(2n+1) {
    background-color: #d3dce6;
} */
.el-carousel__item:nth-child(2n) {
    background-color: #FFF;
}
.el-carousel__item:nth-child(2n+1) {
    background-color: #FFF;
}
.conInfoDiv {
	width: 520px;
	height: auto;
	margin-top: 20px;
	display: flex;
	flex-direction: column; /* 子元素垂直排列 */
	align-items: center; /* 子元素水平居中 */
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* 添加阴影 水平/垂直/模糊半径/颜色 */
	overflow: hidden; /* 防止溢出 */
	transition: height 0.3s ease; /* 过渡效果 */
}
.conInfoText1 {
	width: 100%; /* 占满整个父容器的宽度 */
	height: 40px;
	color: white;
	text-align: left; 
	line-height: 40px; /* 垂直居中文本 */
	font-size: 16px;
	font-weight: 400;
	padding-left: 10px; /* 文字距离左边框10px */
	box-sizing: border-box; /* 包含padding和border在内的宽度 */
}
.conInfoText2 {
	margin: 0px 15px 0px 15px;
	width: calc(100% - 30px);
	height: auto; /* 根据内容自动调整高度 */
	font-size: 15px;
	font-weight: 400;
	color: #333;
	line-height: 1.5;
}
.toggleButton {
	margin-top: 10px;
	cursor: pointer;
	color: #4fc08d;
	font-weight: bold;
}
.dongtaiList {
	margin-top: 10px;
	margin-left: 20px;
	margin-right: 20px;
	width: calc(100% - 40px);
	/* height: 340px; */
	/* overflow: hidden; */
}
.dongtaiItem{
	width: 100%;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
}
.dongtaiArrow {
	font-family: AlibabaPuHuiTi_2_55_Regular;
	font-size: 14px;
	color: #008D87;
	text-align: right;
	font-weight: 400;
	width: auto;
	height: 40px;
	line-height: 40px;
	margin-left: auto;
}
.dongtaiTitle {
	font-family: AlibabaPuHuiTi_2_65_Medium;
	font-size: 14px;
	color: #333333;
	font-weight: 400;
	height: 40px;
	line-height: 40px;
	flex: 1;
	margin-right: 15px;
	white-space: nowrap; /* 不换行 */
	overflow: hidden; /* 隐藏超出部分 */
	text-overflow: ellipsis; /* 显示省略号 */
}
.middleRightDiv {
	width: 250px;
	height: 550px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.facultyBgDiv {
	width: 1060px;
	height: auto; /* 设置固定高度 */
	display: flex;
	flex-direction: column; /* 子元素垂直排列 */
	align-items: center; /* 子元素水平居中 */
	margin: 0 auto; /* 水平居中 */
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.facultylunboDiv {
	width: 1060px;
	height: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}
.facultylunboPageDiv {
	width: 900px;
	height: 340px;
	display: flex;
	margin: 0 auto; 
	justify-content: space-between; 
}
.facultyDiv {
	width: 195px;
	height: 340px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	cursor: pointer;
}
.facultyImgDiv {
	width: 210px;
	height: 280px;
	margin: 0 auto; /* 水平居中 */
	border-bottom: 1px solid #eaeaea;
}
.facultyImg {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 保持比例，填满容器，裁剪多余部分 */
}
.facultyName {
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	word-wrap: break-word; /* 允许单词换行 */
	word-break: break-word; /* 强制长单词换行 */
	font-size: 18px;
	color: #333;
	font-weight: 500;
}
.facultyDepartment {
	width: 100%;
	height: 40px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
	word-wrap: break-word; /* 允许单词换行 */
	word-break: break-word; /* 强制长单词换行 */
	font-size: 12px;
	color: #777;
	white-space: pre-line;
	font-weight: 400;
}

.copyrightDiv {
	margin-top: 20px !important;
	width: 1060px;
	height: 150px; /* 设置固定高度 */
	background-color: #eaeaea;
	display: flex;
	flex-direction: column; /* 子元素垂直排列 */
	align-items: center; /* 子元素水平居中 */
	margin: 0 auto; /* 水平居中 */
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.copyrightText {
	width: 100%; /* 占满整个父容器的宽度 */
	height: 20px;
	text-align: center; /* 文本水平居中 */
	line-height: 20px; /* 垂直居中文本 */
	font-size: 13px;
	color: #999999;
	font-weight: 400;
}
.link {
	color: #333333; /* 设置超链接的颜色 */
	text-decoration: none; /* 去掉下划线 */
}
.link:hover {
	text-decoration: underline; /* 悬停时添加下划线 */
}




.cardDiv {
	margin-top: 40px;
	margin-right: 80px;
	margin-bottom: 40px;
	margin-left: 80px;
	height: 290px;
	display: flex;
	flex-direction: row;
	overflow-x: auto;
	justify-content: center;
	gap: 20px;
}
.cardItemDiv {
	margin-top: 5px;
	width: 240px;
	height: 280px;
	cursor: pointer;
	border-radius: 10px; /* 添加圆角 */
	box-shadow: 2px 2px 6px 0px rgba(150, 150, 150, 0.3); /* 添加阴影 */
	display: flex; /* 启用 Flexbox 布局 */
	flex-direction: column; /* 子元素垂直排列 */
	align-items: center; /* 子元素水平居中 */
	box-sizing: border-box; /* 确保 padding 不会影响宽度 */
	cursor: pointer;
}
.cardItemImage {
	width: 120px;
	height: 120px;
	margin-top: 30px; /* 设置距离顶部的间距 */
}
.cardItemText1 {
	width: 100%;
	height: 30px;
	margin-top: 20px;
	text-align: center; /* 文本水平居中 */
	line-height: 30px; /* 垂直居中文本 */
	font-size: 22px;
	color: #6FBE2A;
	text-align: center;
	font-weight: 500;
}
.cardItemText2 {
	width: 100%;
	height: 22px;
	margin-top: 12px;
	text-align: center; /* 文本水平居中 */
	line-height: 22px; /* 垂直居中文本 */
	font-size: 16px;
	color: #999999;
	text-align: center;
	font-weight: 500;
}
.cardItemLine {
	width: 80px;
	height: 1px;
	margin-top: 22px;
	background-color: black; /* 设置线条颜色 */
	border: none; /* 移除默认的边框样式 */
}
.cardDiv5 {
	margin-top: 40px;
	margin-right: 0px;
	margin-bottom: 40px;
	margin-left: 80px;
	height: 280px;
	background-color: #7CC240;
	display: flex;
	flex-direction: row;
	overflow-x: auto;
}
.cardItemDiv5 {
	width: 240px;
	height: 280px;
	/* float: left;
	display: inline;*/
	margin-left: 15px;
	margin-right: 15px; 
	background-color: #2d6fb7;
}



.zxzcDiv {
	margin-top: 40px;
	margin-right: 80px;
	margin-bottom: 40px;
	margin-left: 80px;
	height: auto;
	display: flex;
	flex-direction: column; /* 子元素垂直排列 */
	align-items: center; /* 子元素水平居中 */
	border-radius: 10px; /* 添加圆角 */
	box-shadow: 2px 2px 6px 0px rgba(150, 150, 150, 0.3); /* 添加阴影 */
}
.zxzcText1 {
	width: 100%; /* 占满整个父容器的宽度 */
	min-height: 40px;
	margin-top: 30px;
	text-align: center; /* 文本水平居中 */
	line-height: 40px; /* 垂直居中文本 */
	font-size: 28px;
	color: #439B8A;
	font-weight: 500;
	word-wrap: break-word; /* 允许长文本换行 */
	white-space: normal; /* 默认换行处理 */
}
.zxzcLine {
	width: 80px;
	height: 2px;
	margin-top: 4px;
	background-color: #439B8A;
	border: none; /* 移除默认边框 */
}
.zxzcText2 {
	margin-top: 20px;
	margin-left: 40px;
	margin-right: 40px;
	margin-bottom: 30px;
	width: calc(100% - 80px);
	height: auto; /* 根据内容自动调整高度 */
}

.importantDiv {
	margin-top: 20px;
	margin-right: 40px;
	margin-bottom: 20px;
	margin-left: 40px;
	width: calc(100% - 80px);
	height: 100px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 50px;
}
.importantItemDiv {
	width: 240px;
	height: 100px;
	display: flex; /* 启用 Flexbox 布局 */
	flex-direction: column; /* 子元素垂直排列 */
	justify-content: center;
	align-items: center; 
	/* background-color: #439B8A; */
}
.importantText1 {
  width: 100%; /* 占满整个父容器的宽度 */
  height: 40px;
  text-align: center; /* 文本水平居中 */
  line-height: 40px; /* 垂直居中文本 */
  font-size: 16px;
  color: #666666;
  font-weight: 500;
}
.importantText2 {
  width: 100%; /* 占满整个父容器的宽度 */
  height: 40px;
  text-align: center; /* 文本水平居中 */
  line-height: 40px; /* 垂直居中文本 */
  font-size: 22px;
  color: #333333;
  font-weight: 500;
}

.otherInfoDiv {
	margin-top: 40px;
	margin-right: 80px;
	margin-bottom: 40px;
	margin-left: 80px;
	height: 492px;
	display: flex;
	flex-direction: row; /* 子元素垂直排列 */
/* 	border-radius: 10px; 
	box-shadow: 2px 2px 6px 0px rgba(150, 150, 150, 0.3); */
}
.dongtaiDiv {
	margin-top: 5px;
	width: 780px;
	height: 482px;
	border-radius: 10px; /* 添加圆角 */
	box-shadow: 2px 2px 6px 0px rgba(150, 150, 150, 0.3); /* 添加阴影 */
	display: flex;
	flex-direction: column; /* 子元素垂直排列 */
	align-items: center; /* 子元素水平居中 */
}
.dongtaiLine {
	width: calc(100% - 80px);
	height: 1px;
	margin-top: 19px;
	margin-left: 40px;
	margin-right: 40px;
	background-color: #EFF5F8;
	border: 2px solid rgba(239,245,248,1);
}
.dongtaiListContainer {
	/* 动态总容器 */
	width: calc(100% - 80px);
	margin: 0 auto;
	height: 340px; 
	/* overflow: hidden; */
	background-color: #008D87;
	/* overflow-x: auto; */
	
}
.dongtaiPagesContainer {
	/* 动态滑动容器 */
	width: 100%;
	height: 340px;
	transition: transform 0.5s ease-in-out; /* 平滑过渡动画 */
	background-color: #2F3032;
}

.dongtaiInfoView {
	width: 100%;
	height: 29px;
	display: flex;
	flex-direction: row;
}
.dongtaiTime{
	margin-top: 20px;
	margin-right: 20px;
	color: #F9F9F9;
	width:80px;
	height:68px;
	background: #dedede;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.dongtaiDay{
	font-family: AlibabaPuHuiTi_2_65_Medium;
	font-size: 20px;
	color: #2F3032;
	text-align: center;
	font-weight: 500;
	width: 100%;
	height: 28px;
}
.dongtaiYM{
	font-family: AlibabaPuHuiTi_2_65_Medium;
	font-size: 12px;
	color: #2F3032;
	text-align: center;
	font-weight: 500;
	width: 100%;
	height: 17px;
}
.dongtaiDetail {
	flex: 1;
	height: 30px;
}

.dongtaiMarginLine {
	width: 100%;
	height: 1px;
	background-color: #eff5f8;
}
.pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }

        .pagination span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .pagination span.active {
            background-color: #0b445b;
        }


.zuzhijigouDiv {
	margin-left: auto;
	margin-top: 5px;
	width: 460px;
	height: 482px;
	border-radius: 10px; /* 添加圆角 */
	box-shadow: 2px 2px 6px 0px rgba(150, 150, 150, 0.3); /* 添加阴影 */
	display: flex;
	flex-direction: column; /* 子元素垂直排列 */
	align-items: center; /* 子元素水平居中 */
}
.zzjgText {
	margin-top: 30px;
	margin-left: 50px;
	margin-right: 50px;
	margin-bottom: 30px;
	width: calc(100% - 100px);
	height: 340px;
	overflow-y: auto;
}

.barDiv {
	margin-top: 40px;
	width: 100%;
	height: auto;
	background-color: #EAEAEA;
	display: flex;
	flex-direction: column; /* 子元素垂直排列 */
	align-items: center; /* 子元素水平居中 */
}
.contactDiv {
	margin-top: 20px;
	margin-right: 80px;
	margin-bottom: 20px;
	margin-left: 80px;
	width: calc(100% - 160px);
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 10px;
}
.contactItemDiv {
	width: 320px;
	height: auto;
	display: flex; /* 启用 Flexbox 布局 */
	flex-direction: column; /* 子元素垂直排列 */
	align-items: flex-start; /* 子元素左对齐 */
}
.contactText1 {
  width: 100%; /* 占满整个父容器的宽度 */
  height: 30px;
  margin-top: 5px;
  text-align: left; /* 文本水平居中 */
  line-height: 30px; /* 垂直居中文本 */
  font-size: 16px;
  color: #333333;
  font-weight: 500;
}
.phoneEmailDiv {
	margin-top: 5px;
	display: flex;
	align-items: center; /* 垂直居中对齐子元素 */
	gap: 5px; /* 子元素间隔10px */
}
.phoneEmailicon {
	width: 18px; /* 设置图片的宽度 */
	height: 18px; /* 保持图片的原始高宽比 */
	position: relative;
	align-self: center;
	overflow: hidden;
}
.svg-img {
	align-self: center;
    margin: auto;
    cursor: pointer;
}
.svg-img-style{
	position:absolute; 
	top: 0px; 
	left: -999px;
	height: 100%;
	margin-right: 13px;
}
.phoneEmailtitle {
	font-size: 14px;
	color: #666666;
	letter-spacing: 0;
	font-weight: 400;
}
.contactLine {
	margin-top: 20px;
	margin-right: 80px;
	margin-bottom: 20px;
	margin-left: 80px;
	width: calc(100% - 160px);
	height: 1px;
	background-color: #FFFFFF;
	border: 1px solid rgba(255,255,255,1);
}
