@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;
}

html {
  overflow-x: hidden;
}

i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}

[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 {
   
}

.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;
}

/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}

.inner {
  width: 1400px;
  margin: 0 auto;
}

.Headerbox {
  background: #0168b7;
  padding-top: 25px;
  padding-bottom: 25px;
}

.inner2 {
  width: 1600px;
  margin: 0 auto;
}

.headertop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* 导航 */
.head-nav {
  height: 60px;
}

.nav .wp-menu {
  height: 55px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  height: 55px;
  text-align: center;
}

.nav .wp-menu .menu-item>a {
  display: inline-block;
  height: 55px;
  line-height: 55px;
  padding: 0 10px;
  position: relative;
}

.nav .wp-menu .menu-item a.menu-link {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 20px;
  color: #0168B7;;
  line-height: 55px;
  -webkit-transition: all 0.3s;
}

.nav .wp-menu .menu-item.hover a.menu-link {
  color: #edbc91;
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 55px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: #fff;
}

.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;
  font-size: 16px;
  text-align: left;
  padding: 0 16px;
}

.nav .sub-menu .sub-item.hover>a,
.nav .sub-menu .sub-item a:hover {
  color: rgba(1, 104, 183, 1);
 
  display: block;
}

.nav .wp-menu .menu-item:hover .sub-menu {
  display: block;
}

.search-panel {
  float: right;
  position: relative;
  z-index: 20;
  display: inline-block;
  line-height: 25px;
}

.search-window {
  border: 0px;
  overflow: hidden;
  min-height: 32px;
}

/**搜索**/
.wp_search {
  display: inline-block;
  position: relative;
  opacity: 0.3;
  filter: Alpha(opacity=30);
  width: 300px;
  height: 32px;
  background: #57247b;
  border-radius: 16px 16px 16px 16px;
  border: 1px solid #ffffff;
}

.wp_search #keyword {
  padding: 4px 0;
  border: none;
  height: 28px;
  line-height: 28px;
  color: #fff;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  width: 300px;
  height: 32px;
  background: #57247b;
  border-radius: 16px 16px 16px 16px;
  border: 1px solid #ffffff;
}

.wp_search .search {
  width: 32px;
  height: 32px;
  border: 0px;
  background: url(images/sous.png) no-repeat center;
  cursor: pointer;
  vertical-align: top;
}

/***自定义搜索*/
.wp-search {
  border: 0px;
  position: relative;
  width: 180px;
  height: 35px;
}

.wp-search form {
  display: block;
  padding-right: 34px;
}

.wp-search .search-input {
  margin-right: 0;
  height: 40px;
  position: relative;
}

.wp-search .search-input input.search-title {
  width: 100%;
  box-sizing: border-box;
  height: 35px;
  padding: 0px 15px;
  line-height: 40px;
  border: 0;
  outline: 0;
  background: none;
  font-family: Microsoft YaHei;
  font-family: MicrosoftYaHei;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 0px;
}

.wp-search .search-btn {
  width: 13px;
  height: 13px;
  position: absolute;
  right: 10px;
  top: -2px;
}

/* .wp-search .search-btn:before{ position:absolute; content:'';left:-1px; top:50%; transform:translateY(-50%); width:1px; height:18px; background:#fff;} */
.wp-search .search-btn input.search-submit {
  width: 75px;
  height: 35px;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: url(images/icon_top_search.png) no-repeat center;
  background: cover;
  cursor: pointer;
  border-radius: 18px;
}

.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #333;
}

.searchbox {
  width: 220px;
  height: 35px;
  border-radius: 4px;
  border: 1px solid #d3d8dc;
}

.mySwiper {
  width: 100%;
  height: 100%;
}

.mySwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mySwiper {
  height: 900px;
  width: 100%;
}
.swiper-pagination{
bottom: 6% !important;
}
.mySwiper   .swiper-pagination-bullet{
width: 15px;
height: 15px;
background: #FFFFFF;
border-radius: 50%;
opacity: 0.65;
margin-right:20px !important;
}
.mySwiper   .swiper-pagination-bullet-active{
width: 15px;
height: 15px;
background: #FFFFFF;
border-radius: 50%;
opacity: 1;
 
}
/* main1 */
.mainbox1 {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(images/bg_news.png);
}

.Title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.title1 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 36px;
  color: #333333;
  line-height: 62px;
}

.more {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}

.more a {
  color: #666;
  text-decoration: none;
  position: relative;
  padding: 8px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.more a:hover {
  color: #fff;
  background: #0168b7;
  border-color: #0168b7;
  box-shadow: 0 4px 12px rgba(1, 104, 183, 0.2);
  transform: translateY(-2px);
}

.content {
  margin-top: 40px;
}

.news-section {
  display: flex;
  gap: 40px;
  overflow-x: hidden;
}

.news-image {
  width: 818px;
  height: 460px;
  overflow: hidden;

  background: #f5f5f5;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s;
}

.news-list {
  width: 530px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.3s;
  z-index: 1;
  padding-top: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(211, 224, 235, 1);
  display: flex;
  align-items: center;
}
.news-item a{
    width: 100%;
  display: flex;
  align-items: center;
}
.news-item .news-date {
 
  font-family: Georgia;
  font-weight: bold;
  font-size: 16px;
  color: #0168b7;
  margin-right: 16px;
}

.news-item .news-title {
  width: 100%;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
}

 

.news-item:hover,
.news-item.active {
  box-shadow: 0 8px 32px rgba(58, 122, 254, 0.08);
}

.news-item:hover .news-title{
color: #0168B7;
}
 

.news-item:hover::before,
.news-item.active::before {
  right: 0;
  opacity: 1;
}

/* 通知公告 */
.noticebox {
  margin-top: 70px;
}

.notice-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.notice-row {
  display: flex;
  align-items: center;
  background: #fff;

  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 20px 30px;
  width: 48%;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.notice-row:hover {
  background: #0168b7;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.notice-row .notice-date {
  text-align: center;
  margin-right: 24px;
  min-width: 60px;
}

.notice-row .notice-day {
  font-family: Arial;
  font-weight: 400;
  font-size: 40px;
  color: #0168b7;
  transition: color 0.2s;
  margin-bottom: 15px;
}

.notice-row:hover .notice-day {
  color: #fff;
}

.notice-row .notice-month {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #0168b7;

  transition: color 0.2s;
}

.notice-row:hover .notice-month {
  color: #fff;
}

.notice-row .notice-title {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 32px;
  transition: color 0.2s;
}

.notice-row:hover .notice-title {
  color: #fff;
}

.mainbox2 {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(images/bg_teach.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.teach-research-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  justify-content: flex-start;
}

.teach-research-row {
  display: flex;
  height: 320px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  width: 48%;
  margin-bottom: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s, background 0.2s;
}

.teach-research-row a {
  display: flex;
  width: 100%;
}

.teach-research-row:hover {
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.teach-research-img {
  width: 390px;
  height: 292px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teach-research-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.teach-research-desc {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #717171;
  line-height: 32px;
  margin-bottom: 0;
  transition: color 0.2s;
}

.teach-research-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  /* 让图片能浮在卡片上 */
}

.teach-research-img-float {
  position: relative;
  z-index: 2;
  width: 390px;
  height: 292px;
  margin-right: -120px;
  /* 让图片和卡片有重叠 */
  box-shadow: 0 8px 32px rgba(58, 122, 254, 0.12);
  overflow: hidden;
  background: #f5f5f5;
}

.teach-research-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.teach-research-row:hover img {
  transform: scale(1.1);
}

.teach-research-card {
  position: relative;
  z-index: 1;
  background: #fff;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 0px 36px 32px 160px;
  /* 左侧内边距大一些，避免文字压到图片 */
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 600px;
  /* 根据实际内容调整 */
}

.teach-research-date {
  font-family: Georgia;
  font-weight: bold;
  font-size: 16px;
  color: #ffff;
  margin-bottom: 15px;
width: 110px;
height: 25px;
background: #0168B7;

display: flex;
  align-items: center;
    justify-content: center;


}

.teach-research-title {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 22px;
  color: #333333;
  margin-bottom: 12px;
  line-height: 1.4;
}

.teach-research-desc {
  font-size: 16px;
  color: #717171;
  line-height: 32px;
}

.mainbox3 {
  padding-top: 80px;
  padding-bottom: 25px;
  background: url(images/footbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 75%;
}

.ZPZS {
  margin-bottom: 150px;
}

.ZPZSbox {
  display: flex;
  gap: 24px;
justify-content: space-between;
}

.zp-left-big {
  width: 450px;
  height: 810px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.zp-left-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zp-left-big:hover img {
  transform: scale(1.1);
}

.zp-title-mask {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 24px 16px 12px 16px;
  box-sizing: border-box;
}

.zp-title {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  line-height: 36px;
}

.zp-right-list {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.zp-row {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.zp-item {
  width: 438px;
  height: 247px;
  position: relative;
  overflow: hidden;
   
}

.zp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zp-item .zp-title-mask {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 100%);
  padding: 0 16px 12px 16px;
  box-sizing: border-box;
}

.zp-video .zp-video-mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.zp-video .zp-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: url("images/play_btn.png") no-repeat center center;
  background-size: contain;
  z-index: 2;
}

.zp-placeholder {
  background: #b3c6e0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zp-placeholder-content {
  text-align: center;
  color: #fff;
}

.zp-placeholder-content img {
  width: 56px;
  height: 56px;
  opacity: 0.7;
  margin-bottom: 8px;
}

/* footer 样式 */

.footer-content {
  margin: 0 auto;
  text-align: left;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 38px;
}

.footer-title {
  margin-bottom: 10px;
}

.footer-contact {
  margin-bottom: 10px;
}

.footer-address {
  margin-bottom: 10px;
}

.footer-copyright {
  font-size: 16px;
  color: #e0e6f6;
  padding: 18px 0 10px 0;
  border-top: 1px solid #3b7edc;
  margin-top: 18px;
  text-align: center;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 100px;
}

.footer-content-wrap {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footercode1 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 53px;
  opacity: 0.5;
  text-align: center;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
 
}

.header-left-item {
  display: flex;
  align-items: center;
  gap: 32px;
}

.home-link {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 30px;
  opacity: 0.8;
  transition: color 0.3s;
  margin-right: 20px;
  position: relative;
}

.home-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #edbc91;
  transition: width 0.3s ease;
}

.home-link:hover::after {
  width: 100%;
}

.lang-switch {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 30px;
  opacity: 0.8;
  margin-right: 50px;
  position: relative;
  display: inline-block;
}

.lang-switch::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #edbc91;
  transition: width 0.3s ease;
}

.lang-switch:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  flex-direction: column;
}

/*
 * Column Style
 */
.column-banner {
  background: url(images/banner1.png);
}

.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;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.column-content .wp_paging {
  padding: 12px 0;
  overflow: hidden;
  float: none;
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.column-name {
  padding: 30px 20px;
  font-size: 24px;
  font-weight: 600;
  color: #0168b7;
  border-left: 8px solid #0168b7;
  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;
  margin-top: 12px;
  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: #0168b7;
  background-color: #ededed;
}

.col-list>ul>li:last-child a {
  border-bottom: none;
}

.col-list>ul>li.selected>a {
  background: #eee;
  color: #0168b7;
  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: #0168b7;
  color: #fff;
}

.col-breadcrumbs {
  float: right;
  margin-top: 30px;
  margin-right: 10px;
}

.wp_listalbumn {
  margin-top: 20px;
}

.wp_single.wp_column_article {
  padding: 12px 30px;
}

/* Column Right */
.column-title {
  font-size: 24px;
  font-weight: 600;
  color: #0168b7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.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 {
  padding: 30px;
}

.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 #0168b7;
}

.column-img-item .title p,
.column-photo-item .title p {
  margin: 0;
}

.column-img-item:hover .title {
  color: #0168b7;
  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: #0168b7;
  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: #0168b7;
}

.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;
  max-width: 100% !important;
  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;
  margin-bottom: 20px;
}

.news-date-item:hover {
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
}

.news-date-item:hover .text-truncate {
  color: #0168b7;
}

.news-date-item .date {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-date-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-date-item span {
  font-family: Arial;
  font-weight: 400;
  font-size: 26px;
  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;
}

.zp-left-big {
  position: relative;
}

.zp-left-big::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 70px;
  height: 5px;
  background: #1BF1E4;
  transition: width 0.3s ease;
}

.zp-left-big:hover::after {
  width: 80%;
}

.zp-item2 {
  position: relative;
}

.zp-item2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 70px;
  height: 5px;
  background: #FB4F90; 
  transition: width 0.3s ease;
}

.zp-item2:hover::after {
  width: 80%;
}

.zp-item1 {
  position: relative;
}

.zp-item1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 70px;
  height: 5px;
  background: #F1A81B;
  transition: width 0.3s ease;
}

.zp-item1:hover::after {
  width: 80%;
}

.zp-item2 img {
  transition: transform 0.5s ease;
}

.zp-item2:hover img {
  transform: scale(1.1);
}

.zp-item1 img {
  transition: transform 0.5s ease;
}

.zp-item1:hover img {
  transform: scale(1.1);
}

.title1 {
    position: relative;
    display: inline-block; /* 让伪元素宽度以内容为基准 */
}

.title1::after {
    content: "";
    display: block;
 
    width: 54px;
    height: 3px;
    background: #0168B7;
    margin: 8px auto 0 auto; /* 上下间距可调整，auto 实现居中 */
    border-radius: 2px; /* 可选，让横线更圆润 */
    
}
.mainbox2 {
.title1 {
    position: relative;
    display: inline-block; /* 让伪元素宽度以内容为基准 */
}

.title1::after {
    content: "";
    display: block;
 
    width: 54px;
    height: 3px;
    background: #fff;
    margin: 8px auto 0 auto; /* 上下间距可调整，auto 实现居中 */
    border-radius: 2px; /* 可选，让横线更圆润 */
    
}

}


.notice-divider {
    width: 1px;
    height: 73px;
    background: #D2D2D2;
    margin: 0 20px; /* 可根据实际情况调整间距 */
    display: inline-block;
    vertical-align: middle;
}
.notice-row a{
    display: flex;
    align-items: center;
}


.zp-item .zp-title-mask {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 100%);
  padding: 0 16px 12px 16px;
  box-sizing: border-box;
}

.zp-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 47px;
  height: 60px;
  background: url("images/icon_works_play_sel.png") no-repeat center center;
 
  z-index: 2;
}

.zp-placeholder {
  background: #b3c6e0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zp-placeholder-content {
  text-align: center;
  color: #fff;
}

.zp-placeholder-content img {
  width: 56px;
  height: 56px;
  opacity: 0.7;
  margin-bottom: 8px;
}
