 @charset "utf-8";

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
  margin: 0;
  padding: 0;
}

header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
  font-weight: normal;
}

html,
body,
fieldset,
img,
iframe,
abbr {
  border: 0;
}

img {
  vertical-align: top;
}

 

 
[hidefocus],
summary {
  outline: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-size: 100%;
}

sup,
sub {
  font-size: 83%;
}

pre,
code,
kbd,
samp {
  font-family: inherit;
}

q:before,
q:after {
  content: none;
}

textarea {
  overflow: auto;
  resize: none;
}

label,
summary {
  cursor: default;
}

a,
button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
  font-weight: bold;
}

del,
ins,
u,
s,
a,
a:hover {
  text-decoration: none;
}

body,
textarea,
input,
select,
keygen,
legend {
  font: 13px/1 arial, \5b8b\4f53;
  color: #333;
  outline: 0;
}

:focus {
  outline: 0;
}

/*备用样式表*/
.clear {
  width: 100%;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  clear: both;
  display: block;
  _display: inline;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: block;
  *zoom: 1;
}

.icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: url(images/icon.png) no-repeat;
}

/*css3扩展*/
body:before {
  display: none;
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-moz-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

/*滚动样式*/
.scroller {
  position: absolute;
  z-index: 1;
  width: 750px;
  height: 160px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:horizontal {
  width: 4px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}

::-webkit-scrollbar-track-piece {
  background-color: #fff;
  /*滚动条的背景颜色*/
  -webkit-border-radius: 0;
  /*滚动条的圆角宽度*/
}

::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: #999;
  -webkit-border-radius: 4px;
  outline: 1px solid #fff;
  outline-offset: -1px;
  border: 1px solid #fff;
}

/**布局开始**/
* {
  box-sizing: border-box;
}

body {
  background: #fff;
  line-height: 1;
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #333;
  position: relative;
}

p {
  line-height: 1.75;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

a:hover {
  color: rgba(67, 130, 233, 1);
}

.flex {
  display: flex;
  display: -webkit-flex;
}

.f_between {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

.f_start {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}

.f_end {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}

.f_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}

.f_middle {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
}

.f_top {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.f_bottom {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.f_stretch {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.middle_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.f_col {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.f_row {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.nowrap {
  -webkit-flex-wrap: nowrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.wrap {
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}

.overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-line1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.text-line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.text-line4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.text-line5 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

.text-line6 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
}


 
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

.inner {
  width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Banner Styles */
.banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

 
header {
  position: relative;
}

 

/* Header and Navigation Styles */
.head-nav {
  width: 100%;
  position: absolute;
  bottom: 1%;
  left: 0;
}

/*导航样式：后台绑定时也可以定义配置*/
.nav .wp-menu {
  width: 100%;
  float: left;
  margin: 0 auto;
  font-size: 0;
  display: flex;
  justify-content: space-evenly;
}

.nav .wp-menu .menu-item {
  display: inline-block;
  float: left;
  position: relative;
  text-align: center;
  transition: 0.5s;
}

.nav .wp-menu .menu-item:last-child {
  margin-right: 0;
}

.nav .wp-menu .menu-item.i1 {
  background: none;
}

.nav .wp-menu .menu-item a > .menu-switch-arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(images/nav_j.png) no-repeat center center;
  vertical-align: middle;
}

.nav .wp-menu .menu-item a.menu-link {
  display: inline-block;
  padding: 0 22px;
  font-family: MicrosoftYaHei;
  font-size: 20px;
  color: #0e798c;
  line-height: 60px;
  text-align: center;
  transition: 0.5s;
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 56px;
  z-index: 100;
  background: rgba(242, 242, 242, 1);
  border-top: 4px solid #be2418;
  min-width: 100%;
}

.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
}

.nav .sub-menu .sub-item a {
  display: block;
  color: #333;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  font-size: 16px;
  text-align: center;
}

.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  background-color: #be2418;
  display: block;
}

.nav .sub-menu .sub-menu {
  left: 100%;
  top: 0px;
  z-index: 200;
  background: #fff;
}

.nav .wp-menu .menu-item:hover {
}

.nav .wp-menu .menu-item:hover .menu-link {
  color: #0a90a7;
}

.Research {
  padding-top: 60px;
  padding-bottom: 10px;
}

.s1 {
  font-family: Arial;
  font-weight: 400;
  font-size: 36px;
  color: #888888;
  line-height: 40px;
}

.Title {
  position: relative;
}

.Title1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.More {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(2, 117, 133, 0);
  border-radius: 2px;
  border: 1px solid #027585;
  width: 140px;
  height: 40px;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(2, 117, 133, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(2, 117, 133, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(2, 117, 133, 0);
  }
}

.More:hover {
  animation: none;
  box-shadow: 0 0 0 2px rgba(2, 117, 133, 0.2);
  transform: translateY(-50%) scale(1.03);
}

.More a {
  font-family: Arial;
  font-weight: 400;
  font-size: 22px;
  color: #027585;
  line-height: 36px;
  position: relative;
  display: inline-block;
}

.More a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #027585;
  transition: width 0.5s ease;
}

.More:hover a::after {
  width: 100%;
}

.Researchbox {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.Rimg {
  width: 51%;
  height: 450px;
  background: #d5b159;
  border-radius: 2px;
}

.Rimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ResearchText {
  width: 100%;
  min-height:500px
}

.s2 {
  font-family: Arial;
  font-weight: 400;
  font-size: 28px;
  color: #000000;
  line-height: 42px;
}

.s3 {
  font-family: Arial;
  font-weight: 400;
  font-size: 20px;
  color: #666666;
  line-height: 38px;
}

.People1 {
  padding-top: 60px;
  padding-bottom: 50px;
  background: url(images/people.png) no-repeat;
  background-size: cover;
}

 
 
.news-date-list .faculty-list li {
  
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
 
.faculty-img {
  width: 100%;
 
}
.news-date-list .faculty-img {
  width: 213px;
  height: 213px;
}

.faculty-img img {
  width: 100%;
  height: 326px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.faculty-info {
  width: 100%;
   text-align: left;
  padding: 10px;
}
.faculty-info p{
  text-align: left;
}
.faculty-info h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  transition: all 1s ease;
  position: relative;
  padding-left: 0;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  text-align: left;
}

.faculty-info p {
  font-size: 15px;
  color: #666;
  line-height: 1.4;
}

.faculty-list li:hover h3 {
  width: 100%;
  color: #a61212;
  text-align: left;
 
}

.faculty-list li:hover h3::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 11px;
  height: 20px;
  background: url(images/btn_people_arrow.png) no-repeat;

  transform: translateY(-50%);
}

@media screen and (max-width: 1200px) {
  .faculty-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .faculty-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.Publications {
  padding-top: 55px;
 
}
.mySwiper {
  margin-top: 25px;
  padding-bottom: 25px;
  height: 470px;
}
.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mySwiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid #027585;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.mySwiper .swiper-pagination-bullet-active {
  width: 50px;
  height: 20px;
  background: #027585;
  border-radius: 10px;
}
.PublicationsText {
  margin-top: 25px;
}
.s4 {
  font-family: Arial;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: 36px;
}
.s5 {
  font-family: Arial;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 36px;
}
 
footer {
  background: #363535;
  padding-top: 60px;
  padding-bottom: 60px;
}
.s6 {
  font-family: Arial;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: 40px;
}
.f2 {
  background: url(images/codebg.png) no-repeat;
  width: 420px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 30px;
  position: relative;
  top: -80px;
background-position: center;
}
.f2 img{
width:170px;
height:170px;
}
.footer {
  display: flex;
  justify-content: space-between;
}

/*
 * Column Style
 */
.column-banner {
  background: url(images/top_banner01.jpg);
}
.column-img {
  max-width: 1920px;
  width: 100%;
  height: 380px;
  margin: 0 auto;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.column {
  min-height: calc(100vh - 500px);
}
.column-sidebar,
.column-content {
  position: relative;
  margin-top: 40px;
  background: #fff;
}
.column-sidebar {
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.column-content {
  min-height: 800px;
  margin-bottom: 50px;
 
}
.column-content .wp_paging {
  padding: 12px 0;
  overflow: hidden;
  float: none;
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
.column-name {
  padding: 18px 20px;
  font-size: 22px;
  font-weight: 500;
  color: rgba(2, 117, 133, 1);
  border-left: 8px solid rgba(2, 117, 133, 1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.column-name .navbar-toggle {
  margin-top: -10px;
  margin-right: 0;
  color: #333;
}

.column-collapse {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}
.col-list {
  background: #fff;
}
.col-list > ul {
  position: relative;
  padding: 0;
 
  font-size: 16px;
}
.col-list > ul > li > a {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-bottom: 1px dashed #ccc;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.col-list > ul > li > a:hover {
  color: rgba(2, 117, 133, 1);
  background-color: #ededed;
}
.col-list > ul > li:last-child a {
  border-bottom: none;
}
.col-list > ul > li.selected > a {
  background: #eee;
  color: rgba(2, 117, 133, 1);
  font-weight: 600;
}
.col-sublist > ul > li > a {
  display: block;
  color: #666;
  display: block;
  padding: 10px 28px;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.col-sublist > ul > li span {
  position: relative;
  top: 3px;
  font-size: 12px;
  float: right;
}
.col-sublist > ul > li > a:hover {
  background-color: rgba(2, 117, 133, 1);
  color: #fff;
}

.col-breadcrumbs {
  float: right;
  margin-top: 30px;
  margin-right: 10px;
}
.wp_listalbumn {
  margin-top: 20px;
}
.wp_single.wp_column_article {
  padding: 0px 30px;
}

/* Column Right */
.column-title {
  font-size: 22px;
  font-weight: 500;
  color: rgba(2, 117, 133, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 18px 20px;
}
.column-breadcrumb {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #666;
}
.column-breadcrumb a {
  color: #999;
}
.column-breadcrumb a:hover {
  color: #333;
}
.column-breadcrumb i {
  margin-right: 12px;
}
.column-info-list {
  padding-top: 20px;
}
.column-info-list li {
  padding: 10px 20px;
}
.column-info-list li p {
  margin: 0;
}
.column-info-list li:last-child {
  border-bottom: none;
}

.column-date-list {
 
}
.column-date-list .date-item {
  margin-bottom: 28px;
}

.column-img-list,
.column-photo-list {
  padding: 15px 0px;
}
.column-img-item,
.column-photo-item {
  width: 100%;
  overflow: hidden;
  padding: 5px 0 25px;
}
.column-img-item .photo {
  width: 100%;
  padding-bottom: 120%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #999;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.column-photo-item .photo {
  width: 100%;
  padding-bottom: 60%;
  background-color: #333;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}
.column-img-item .title {
  position: relative;
  width: 92%;
  margin: 0 auto;
  padding: 12px 15px;
  margin-top: -60px;
  background-color: #fff;
  font-size: 16px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.column-photo-item .title {
  padding: 10px 15px;
  font-size: 16px;
  text-align: center;
  border-bottom: 2px solid rgba(2, 117, 133, 1);
}
.column-img-item .title p,
.column-photo-item .title p {
  margin: 0;
}
.column-img-item:hover .title {
  color: rgba(2, 117, 133, 1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}

/*
 * Post
 */
.post {
  background-color: #fff;
}
.post-breadcrumb {
  padding: 12px 0;
  background-color: #f7f7f7;
  color: rgba(2, 117, 133, 1);
  box-shadow: 0 0 30px rgb(0, 0, 0, 0.1);
}
.post-breadcrumb a {
  color: #333;
  opacity: 0.8;
}
.post-breadcrumb a:hover {
  color: #333;
  opacity: 1;
}
.post-content {
  width: 100%;
  padding: 0;
  margin: 40px 0;
  background-color: #fff;
}
.post-title {
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: rgba(2, 117, 133, 1);
}
.post-attr {
  margin-bottom: 20px;
  padding: 0 20px 20px;
  border-bottom: 1px solid #efefef;
  text-align: center;
  color: #666;
}
.post-attr > span {
  display: inline-block;
  padding: 5px 10px;
  background-color: #f7f7f7;
  border-radius: 8px;
  cursor: pointer;
}
.read-content {
  width: 100%;
  min-height: 400px;
  line-height: 2;
  margin: 0 auto;
  padding: 10px 20px 40px;
}
.read-content img {
  margin: 10px 0;
  
  height: auto;
}
.breadcrumb {
  color: #fff;
  text-align: left;
  background: #5fcbd2;
  border-radius: 0;
}
.breadcrumb .possplit {
  display: none;
}
.breadcrumb a {
  margin: 0 5px;
  color: #fff;
  opacity: 0.8;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.breadcrumb a:hover {
  opacity: 1;
}
.wp_articlecontent > table {
  width: 100% !important;
}

.wp_listcolumn_searchbartree {
  margin: 10px 0;
}
.wp_listcolumn_searchbartree .wp_listcolumn_treeKeyword {
  width: 100%;
  height: 36px;
}
.wp_listcolumn_searchbttree {
  position: relative;
  z-index: 1;
  float: right;
  margin-top: -29px;
  margin-right: 4px;
}
.ztree {
  background-color: #f7f7f7;
}
.ztree * {
  font-size: 14px;
}
.ztree li {
  padding: 10px 0;
}
.news-date-item {
  border-bottom: 1px solid #eee;
  height:71px;
   display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-date-item:hover {
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
}
.news-date-item:hover .text-truncate {
  color: rgba(2, 117, 133, 1);
}
.news-date-item .date {
  
}
.news-date-item a {
  width:100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-date-item span {
  font-family: Arial;
  font-weight: 400;
  font-size:18px;
  color: #d1c2a0;
  line-height: 30px;
}
.news-date-item b {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #d9cba9;
  line-height: 30px;
}
.news-date-item .text-truncate {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 28px;
}
.news-date-item .text-truncate2 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  --swiper-theme-color: #fff !important;
  background: #fff;
}

.mySwiper3 .swiper-slide {
  overflow: hidden;
}
.mySwiper3 .swiper-slide:hover .s5 {
  color: #05379e;
}
.mySwiper3 .swiper-slide:hover img {
  transform: scale(1.05); /* 放大 5% */
  transition: transform 0.3s ease; /* 平滑过渡 */
}
/* 基础样式 */
.YQLJbox a {
  text-decoration: none; /* 移除默认下划线 */
  color: inherit; /* 继承父级文字颜色 */
  position: relative; /* 为伪元素定位准备 */
  transition: all 0.3s ease; /* 过渡动画 */
}

/* 悬停下划线效果 */
.YQLJbox a:hover {
  text-decoration: none; /* 确保覆盖默认行为 */
}

/* 使用伪元素创建下划线动画 */
.YQLJbox a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* 根据字体大小调整位置 */
  width: 100%;
  height: 2px; /* 下划线粗细 */
  background: #fff; /* 白色下划线 */
  animation: underline 0.3s forwards;
}

/* 下划线动画 */
@keyframes underline {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.banner2 img {
  width: 100%;
}
.main1-1 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 50px;
}
.TZGG .morebt {
  position: relative;
}
.TZGG .morebt::before {
  position: absolute;
  content: "";
  width: 86px;
  height: 90px;
  background: url(images/bj_notice.png) no-repeat;
  left: -71px;
  top: -150%;

  z-index: -1;
}
.column-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-date-item .text-truncate {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 35px;
}
.news-date-item .text-truncate2 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 30px;
}

.mySwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.mySwiper .SWtext {
  position: absolute;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial;
  font-weight: 400;
  font-size: 22px;
  color: #ffffff;
  line-height: 40px;
  padding-left: 50px;
  padding-right: 30px;
  z-index: 9999;
}
.mySwiper .SWimg {
  height: 400px;
  width: 100%;
  position: relative;
}
.mySwiper .SWimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emailbox {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.email-icon {
  display: block !important;
  width: 30px;
  height: 30px;
  overflow: hidden;
  text-indent: -1000px;
  background: url(images/email.png) no-repeat;
  background-size: 30px;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.col-lg-3 {
  width: 14%;
}
.col-lg-9 {
  width: 85%;
}

.row {
  display: flex !important;
  justify-content: space-between !important;
}

.navbar-collapse.collapse {
   
}

.email-icon {
  display: block !important;
  width: 30px;
  height: 30px;
  overflow: hidden;
  text-indent: -1000px;
  background: url(images/email.png) no-repeat;
  background-size: 30px;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.email-icon:hover {
  opacity: 0.7;
  cursor: pointer;
}
.faculty-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px; /* 列间距保持不变 */
   margin-top: 40px;
}

.faculty-list li {
        width: calc(22% - -4px); /* 四列均分宽度，减去 gap 的影响 */
}
 
.ZY{
  text-align: left;
   
}

.news-date-list  .faculty-list {
    display: flex !important;
    
    justify-items: start !important;
 
   justify-items: center !important;
margin-top: 20px;
 
}

.news-date-list  .faculty-list .faculty-info{
padding-top:0px !important;

}
.news-date-list  .faculty-list li {
width:29% !important;
margin-right: 0px;
box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}
.news-date-list .faculty-img {
    width: 100%;
height:338px;
  
}


 .news-date-list .faculty-list li:hover .faculty-img  img {
    box-shadow:   0px 0px 50px 0px  rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease; /* 可选：平滑过渡 */
}

.wp_entry img{
    max-width: 100%;
}
img {
    width: 100% !important;
    object-fit: contain;
height: auto;
}

.head-nav3{
display:none;
}

.f1  img{
width:550px   !important;
}

.wp_articlecontent .list-paddingleft-2 {
    width: 100%   !important;
    padding-left: 30px;
}

.wp_articlecontent img {
    width: auto   !important;
    
}