@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 {
  color: rgba(43, 139, 201, 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;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1200px;
  margin: 0 auto;
}
/* header */
header {
  height: 100px;
  background: url(images/bg-header.png) no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.HT {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.HT1 {
  display: flex;
  align-items: center;
}
.HT1 li a {
  display: flex;
  align-items: center;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  line-height: 16px;
}

/* 导航 */
/*默认主导航样式*/
.head-nav {
  height: 60px;
  background: #ffffff;
  box-shadow: 0px 2px 2px 0px rgba(34, 51, 65, 0.12);
}

.nav .wp-menu {
  height: 60px;
  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: 60px;
  text-align: center;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 60px;
  line-height: 60px;
  padding: 0 10px;
  position: relative;
}
.nav .wp-menu .menu-item a.menu-link {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 16px;
  color: rgba(35, 61, 99, 1);
  line-height: 60px;
  -webkit-transition: all 0.3s;
}
.nav .wp-menu .menu-item.hover a.menu-link {
  color: rgba(43, 139, 201, 1);
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 60px;
  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: #fff;
  background-color: #2b8bc9;
  display: block;
}
/* banner */
.mySwiper {
  position: relative;
}
.mySwiper .swiper-slide img {
  width: 100%;
  height:800px;    object-fit: cover;
   
}
.SWTEXT { 
  display:none;
  position: absolute;
  height: 170px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1180px;
  width: 100%;
  background: rgba(34, 51, 65, 0.6);
  border-radius: 6px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 28px;
  color: #ffffff;
  line-height: 44px;
  padding: 20px;
}
.mySwiper .swiper-pagination-current {
  font-family: HelveticaNeue, HelveticaNeue;
  font-weight: normal;
  font-size: 40px;
  color: #ffffff;
  line-height: 54px;
}
.mySwiper .swiper-pagination {
  bottom: 12%;
  font-family: HelveticaNeue, HelveticaNeue;
  font-weight: normal;
  font-size: 40px;
  color: #ffffff;
  line-height: 54px;
  position: absolute;
  left:  68%;
  width: 110px;
  font-style: italic;
 display:none;
}
.mySwiper .swiper-pagination-total {
  font-family: HelveticaNeue, HelveticaNeue;
  font-weight: normal;
  font-size: 20px;
  color: #ffffff;
  line-height: 54px;
}
.mySwiper .swiper-button-next {
    width: 78px;
    height: 100px;
  background: url(images/right-arrow.png);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  opacity: 0.7  !important; /* 透明度值 0-1之间调整 */
    transition: inherit; /* 继承父元素的过渡效果 */
}
.mySwiper .swiper-button-prev {
      width: 78px;
    height: 100px;
  background: url(images/left-arrow.png);
  transition: 0.5s;
  opacity: 0.5  !important; /* 透明度值 0-1之间调整 */
    transition: inherit; /* 继承父元素的过渡效果 */
}
 
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.KJLJ {
  height: 156px;
  position: relative;
  top: -80px;
  background: #fff;
  background-size: cover;
  z-index: 9999;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0px 2px 2px 0px rgba(34, 51, 65, 0.12);
}
.KJLJ li   {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 16px;
  color: #1c1c1b;
  line-height: 21px;
  text-align: center;
  transition: 0.5s;
  -webkit-transition: 0.5s ease all;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.KJLJ li {
  position: relative;
}

.KJLJ li::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  background: linear-gradient(
    180deg,
    rgba(89, 182, 241, 0.94) 0%,
    rgba(94, 190, 252, 0) 100%
  );
  opacity: 0.6;
  border-radius: 50px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, transform 0.3s ease; /* 平滑过渡效果 */
}

.KJLJ li:hover::before {
  opacity: 0; /* 将透明度设为 0 来隐藏元素 */
  transform: translateX(-50%) scale(1.2); /* 如果你想增加动画效果，可以加入缩放 */
}

.KJLJ li:hover div {
  color: rgb(0, 64, 152);
  transition: color 0.3s ease; /* 平滑颜色变化 */
}

.s1 {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 30px;
  color: #181b20;
  line-height: 28px;
}
.s2 {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: 500;
  font-size: 16px;
  color: #2b8bc9;
  line-height: 18px;
  text-transform: uppercase;
}
.mainbox1 {
  background: url(images/bg01.png) no-repeat;
  background-size: cover;
  padding-bottom: 70px;
}
.main1-1 {
  width: 49.4%;
}
.main1-2 .news_list li {
  background: #f3f4f5;
  border-radius: 4px;
}
.title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.Title {
  margin-top: 8px;
  width: 286px;
  height: 4px;
  margin-bottom: 36px;
  background: linear-gradient(90deg, #4caae8 0%, rgba(94, 190, 252, 0) 100%);
}
.s3 {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 15px;
  color: #231916;
  line-height: 21px;
}
.news_list li {
  padding: 15px;
  background: #ffffff;
  border-radius: 4px;
  margin-bottom: 8px;
  transition: 0.5s ease;
}
.news_list li a {
  display: flex;
  align-items: center;
}
.news_list .s3 {
  width: 70%;
}
.news_date {
  margin-right: 20px;
  width: 20%;
}
.news_date .day {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 22px;
  color: #2b8bc9;
  line-height: 20px;
}
.news_date .year {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 12px;
  color: #2b8bc9;
  line-height: 20px;
}
.main1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.more a {
  display: block;
  width: 27px;
  height: 18px;
  background: url(images/icon-arrow-more.png) no-repeat;
}
.more:hover a {
  display: block;
  width: 27px;
  height: 18px;
  background: url(images/icon-arrow-more-hover.png) no-repeat;
}
.news_list li:hover {
  background: #004098;
  box-shadow: 1px 1px 6px 0px rgba(119, 90, 44, 0.1);
  border-radius: 4px;
  opacity: 0.92;
  backdrop-filter: blur(8px);
}
.news_list li:hover .news_date .day {
  color: #fff;
}
.news_list li:hover .news_date .year {
  color: #fff;
}
.news_list li:hover .s3 {
  color: #fff;
}
.title2 {
  display: flex;
  justify-content: center;
  margin-top: 70px;
  margin-bottom: 40px;
}
.image-container {
  position: relative; /* 使子元素可绝对定位 */
  display: inline-block;
}

/* 伪元素作为渐变滤镜层 */
.image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 添加滤镜渐变 */
  background: linear-gradient(180deg, #001e47 0%, rgba(0, 0, 0, 0) 80%);
  pointer-events: none; /* 避免遮挡点击事件 */
}
.SFQtitlebox {
  position: absolute;
  z-index: 999;
  top: 30%;
  left: 42%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.more11 {
  font-family: PingFangSC, PingFang SC;
  font-size: 14px;
  color: #ffffff;
  line-height: 24px;
  display: none;
}
.SFQbox li.active .more11 {
  display: block;
}
.SFQbox {
  display: flex;
  align-items: center;
}
.SFQbox li {
  position: relative;
  width: 179px;
  height: 360px;
  transition: width 1s ease;
  -webkit-transition: width 1s ease;
  -moz-transition: width 1s ease;
  -ms-transition: width 1s ease;
  -o-transition: width 1s ease;
}
.SFQbox li a {
  width: 100%;
  height: 100%;
}
.SFQbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.moreimg {
  width: 20px;
  height: 18px;
}
.SFQtitle {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  line-height: 24px;

  /* 设置文字从右到左垂直排列 */
  writing-mode: vertical-rl;
  /* 保证每个字符直立显示 */
  text-orientation: upright;
}
.SFQbox li.active {
  width: 467px;
}
.SFQbox li.active .image-container::after {
  display: none;
}
.SFQbox li.active .SFQtitlebox {
  width: 60px;
  height: 100%;
  left: 0;
  top: 0;
  text-align: center;

  background: linear-gradient(315deg, #4dabe8 0%, #407dce 42%, #004098 100%);
  opacity: 0.9;
  backdrop-filter: blur(0px);
}
.mainbox2 {
  background: url(images/bg2.jpg) no-repeat;
  background-size: cover;
  padding-top: 70px;
  height: 560px;
}
.s4 {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 30px;
  color: #ffffff;
  line-height: 34px;
}
.title3 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.title4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.Title2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Title2 li a {
  display: block;
  width: 81px;
  height: 35px;
  background: url(images/btn-website.png);
}
.main2-1 {
  width: 40%;
  position: relative;
}
.main2-1::before {
  position: absolute;
  content: "";
  width: 125px;
  height: 102px;
  background: url(images/img2.png) no-repeat;
  right: -195px;
}
.main2-2 {
  width: 40%;
  position: relative;
}
.main2-2::before {
  position: absolute;
  content: "";
  width: 102px;
  height: 102px;
  background: url(images/img1.png) no-repeat;
  left: -185px;
  top: 75%;
}
.main2-2::before {
  position: absolute;
  width: 120px;
  height: 100px;
}
.KJYC {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 13px;
  color: #ffffff;
  line-height: 26px;
  margin-top: 35px;
}
.main22 {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.main11 {
  background: #fff;
  border-radius: 24px;
  backdrop-filter: blur(0px);
  padding-top: 60px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  top: -125px;
}
.mainbox4 {
  background: url(images/bg-footer2.png) no-repeat;
  background-size: cover;
}
.head-nav2 {
  background: url(images/bg-footer2.png) no-repeat;
  background-size: cover;
  height: 96px;
  display: flex;
  align-items: center;
}
.head-nav2 .nav .wp-menu .menu-item a.menu-link {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  line-height: 60px;
  -webkit-transition: all 0.3s;
  border-top: 1px solid rgba(255, 255, 255, 0);
}
.footer {
  background: url(images/bg-footer.png) no-repeat;
  background-size: cover;
  padding-top: 48px;
  padding-bottom: 88px;
}
.s5 {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 50px;
}
.s6 a {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 40px;
}
.s6 {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 40px;
}
.s7 {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #ebf4ff;
  line-height: 20px;
  margin-top: 20px;
}
.QR {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 40%;
}
.QR li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footerbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mySwiper .swiper-button-next {
  right:0;
}
.mySwiper .swiper-button-prev {
  left:0;
}
.news_listimg1 {
  width: 100%;
  height: 264px;
  position: relative;
}
.news_listimg1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.NL2title {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  line-height: 24px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #001e47 100%);
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  z-index: 999;
  width: 100%;
}
.news_listimg2box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.news_listimg2 {
  width: 49%;
  height: 128px;
  position: relative;
}
.news_listimg2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/*
 * Column Style
 */
.column-banner {
  background: url(images/banner.jpg) no-repeat;
  background-size: cover;
  background-position: bottom;
}
.column-img {
  max-width: 1920px;
  width: 100%;
  height: 300px;
  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;
}
.column-sidebar {
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  position: relative;
  top: -90px;
}
.column-content {
  min-height: 500px;
  margin-bottom: 50px;
}
.column-content .wp_paging {
  padding: 12px 0;
  overflow: hidden;
  float: none;
  display: flex;
  justify-content: right;
}
.column-name {
  padding: 30px 20px;
  background: url(images/bg-title.png) no-repeat;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-size: cover;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 28px;
  color: #ffffff;
  line-height: 40px;
  text-align: center;
  font-style: normal;
}
.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: linear-gradient(#3879d5 0%, #0d4994 100%);
  border-radius: 0px 0px 4px 4px;
  padding-top: 10px;
  padding-left: 6px;
  border-top: 2px solid #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.5s all ease;
  -ms-transition: 0.5s all ease;
  transition: 0.5s all ease;
  height: 56px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.col-list > ul > li > a::before {
  display: none;
  content: "";
  width: 8px;
  height: 12px;
  position: absolute;
  background: url(images/icon-arrow-r.png) no-repeat;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.col-list > ul > li > a:hover {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 17px;
  color: #004098;
  line-height: 24px;
}
.col-list > ul > li > a:hover::before {
  display: block;
}
.col-list > ul > li:last-child a {
  border-bottom: none;
}
.col-list > ul > li.selected > a {
  background: #fff;
   color: #004098;
  font-weight: 600;
}
.col-list > ul > li.selected > a::before {
  display: block;
}
.col-sublist > ul > li > a {
  display: block;
  color: #fff;
  display: block;
  padding: 10px 28px;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
  height: 56px;
}
.col-sublist > ul > li span {
  position: relative;
  top: 3px;
  font-size: 12px;
  float: right;
}
.col-sublist > ul > li > a:hover {
  background-color: #2b8bc9;
  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: #2b8bc9;
  background: #f5f6f7;
  padding: 18px 20px;
}
.column-breadcrumb {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 12px;
  color: #333;
  line-height: 16px;
}
.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 #2b8bc9;
}
.column-img-item .title p,
.column-photo-item .title p {
  margin: 0;
}
.column-img-item:hover .title {
  color: #2b8bc9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}
.column-breadcrumb {
  position: relative;
}
.column-breadcrumb::before {
  content: " ";
  width: 14px;
  height: 14px;
  background: url(images/icon-home.png) no-repeat;
  position: absolute;
}
.glyphicon-home:before {
  content: " ";
}

/*
 * Post
 */
.post {
  background-color: #fff;
}
.post-breadcrumb {
  padding: 12px 0;
  background-color: #f7f7f7;
  color: #2b8bc9;
  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: #2b8bc9;
}
.post-attr {
  margin-top: 20px;
  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 List */
.home-list {
  padding: 20px 0 50px;
  background-color: #fff;
}
.news-date-list {
  min-height: 388px;
}
.news-date-item {
  position: relative;
  min-height: 60px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #eee;
}
.news-date-item .date {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 60px;
  overflow: hidden;
  background: #004098;
  border-radius: 8px;
  border-radius: 4px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.news-date-item .date span,
.news-date-item .date b {
  display: block;
  text-align: center;
  font-style: normal;
  white-space: nowrap;
  color: #fff;
}
.news-date-item .date span {
  padding-top: 2px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.news-date-item h3 {
  padding-top: 4px;
  padding-left: 100px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.news-date-item p {
  padding-left: 100px;
  font-size: 14px;
  color: #999;
}
.news-date-item:hover h3 {
  color: #2b8bc9;
}
.img-list-item-special {
  position: relative;
  display: block;
  height: 160px;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 4px;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.img-list-item-special:hover {
  background-color: #2b8bc9;
}
.img-list-item-special .photo {
  position: absolute;
  left: 17px;
  top: 16px;
  width: 160px;
  height: 128px;
  background-color: #f0f0f0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 4px;
}
.img-list-item-special .text {
  padding-top: 16px;
  padding-left: 210px;
}
.img-list-item-special .text h3 {
  min-height: 60px;
  line-height: 30px;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.img-list-item-special .text p {
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.img-list-item-special .text .more {
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  text-align: left;
}
.img-list-item-special .text .more i {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  background: url(../img/icon/icon_img_list_arrow.png) no-repeat center;
  vertical-align: middle;
}
.img-list-item-special:hover .text p {
  color: rgba(255, 255, 255, 0.5);
}
.img-list-item-special:hover .text h3 {
  color: #fff;
}
.img-list-item {
  display: block;
  height: 74px;
  line-height: 74px;
  border-bottom: 1px solid #e0e0e0;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.img-list-item span {
  color: #999;
}
.img-list-item b {
  padding-left: 30px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.img-list-item:hover {
  background-color: #f0f0f0;
}
.img-list-item:hover b {
  color: #2b8bc9;
}
.block-tab {
  line-height: 45px;
  margin-bottom: 10px;
}
.block-tab ul {
  width: 100%;
}
.block-tab li,
.block-tab a {
  display: inline-block;
  vertical-align: middle;
}
.block-tab li {
  margin-right: 10px;
}
.block-tab li a {
  color: #fff;
  text-align: center;
  font-size: 24px;
  color: #999;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.block-tab li a:hover {
  color: #af251b;
}
.block-tab li.active a {
  padding: 0;
  color: #af251b;
  background: transparent;
  font-size: 28px;
  font-weight: 700;
}
.block-tab-content {
  position: relative;
}
.block-tab-content > ul > li {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  -webkit-transition: 0.2s all ease;
  -ms-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.block-tab-content > ul > li.active {
  position: relative;
  top: 0;
  z-index: 1;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.6s all ease;
  -ms-transition: 0.6s all ease;
  transition: 0.6s all ease;
}
.block-tab-content .tab-more {
  position: absolute;
  right: 0;
  top: -42px;
  font-size: 16px;
  font-weight: 700;
  color: #999;
}
.block-tab-content .tab-more:hover {
  color: #af251b;
}

.block-tab1 {
  line-height: 45px;
  margin-bottom: 10px;
}
.block-tab1 ul {
  width: 100%;
}
.block-tab1 li,
.block-tab a {
  display: inline-block;
  vertical-align: middle;
}
.block-tab1 li {
  margin-right: 10px;
}
.block-tab1 li a {
  color: #fff;
  text-align: center;
  font-size: 24px;
  color: #999;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.block-tab1 li a:hover {
  color: #af251b;
}
.block-tab1 li.active a {
  padding: 0;
  color: #af251b;
  background: transparent;
  font-size: 28px;
  font-weight: 700;
}
.block-tab-content1 {
  position: relative;
}
.block-tab-content1 > ul > li {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  -webkit-transition: 0.2s all ease;
  -ms-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.block-tab-content1 > ul > li.active {
  position: relative;
  top: 0;
  z-index: 1;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.6s all ease;
  -ms-transition: 0.6s all ease;
  transition: 0.6s all ease;
}
.block-tab-content1 .tab-more {
  position: absolute;
  right: 0;
  top: -42px;
  font-size: 16px;
  font-weight: 700;
  color: #999;
}
.block-tab-content1 .tab-more:hover {
  color: #af251b;
}
.nav .wp-menu .menu-item a.menu-link {
  position: relative;
  transition: 0.6s all ease;
}
.nav .wp-menu .menu-item a.menu-link::before {
  position: absolute;
  content: "";
  width: 27px;
  height: 18px;
  background: url(images/icon-bookline-27-blue.png) no-repeat;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
  display: none;
  transition: 0.6s all ease;
}
.nav .wp-menu .menu-item a.menu-link:hover::before {
  display: block;
}

.nav .wp-menu .menu-item a.menu-link:hover {
  transform: translateY(-5px);
}

.news_list2 li {
  overflow: hidden;
}
.news_list2 li a img {
  transition: transform 0.5s ease;
  overflow: hidden;
}

.news_list2 li a:hover img {
  transform: scale(1.1);
}
.HT1 li a img {

width:12px !important;
height:12px  !important;
  margin-right: 5px;
}

.title .s2 {
  margin-left: 10px;
}

/* 分页容器居中显示 */
#wp_pager {
  text-align: center;
  margin: 30px 0;
}

/* 去除默认列表样式，并内联显示 */
#wp_pager .pages {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 列表项间距 */
#wp_pager .pages li {
  display: inline-block;
  margin: 0 5px;
}

/* 分页链接基本样式 */
#wp_pager .pages li a {
  display: block;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

/* hover 状态：背景及文字颜色轻微变化 */
#wp_pager .pages li a:hover {
  background-color: #f7f7f7;
  border-color: #aaa;
  color: #333;
}

/* 当前页样式：突出显示 */
#wp_pager .pages li a.pgCurrent {
  background-color:  rgba(0, 64, 152, 1);
  border-color:  rgba(0, 64, 152, 1);
  color: #fff;
}

.Title2 li:hover a {
  display: block;
  width: 81px;
  height: 35px;
  background: url(images/btn-website-hover.png);
}

.news_list li {
  transition: transform 0.5s ease;
}

.news_list li:hover {
  transform: scale(1.05);
}

.news_listimg1 {
  position: relative;
}

.news_listimg1::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  background: url(images/icon-play.png) no-repeat;
  z-index: 999;
  right: 10px;
  top: 10px;
}
.news_listimg1:hover::before {
  background: url(images/icon-play-hover.png) no-repeat;
}
.news_listimg2 {
  position: relative;
}

.news_listimg2::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  background: url(images/icon-play.png) no-repeat;
  z-index: 999;
  right: 10px;
  top: 10px;
}
.news_listimg2:hover::before {
  background: url(images/icon-play-hover.png) no-repeat;
}

.head-nav2 .nav .wp-menu .menu-item a.menu-link::before {
  position: absolute;
  content: "";
  width: 27px;
  height: 18px;
  background: url(images/icon-bookline-27.png) no-repeat;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
  display: none;
  transition: 0.6s all ease;
}

.head-nav2 .nav .wp-menu .menu-item a.menu-link:hover::before {
  display: block;
}

.s6:hover a {
  color: #fff;
 text-decoration: underline
}
.NDLtitlle {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 22px;
  color: #181c23;
  line-height: 32px;
  text-align: center;
}
.NDLnr {
}
.NDLnav {
  margin-top: 30px;
}
.NDLnav .wp-panel .wp-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.NDLnav .wp-panel .wp-menu li {
  width: 49%;
  background: #eff6fe;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 15px;
  position: relative;
}
.NDLnav .wp-panel .wp-menu li a {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 15px;
  color: #181c23;
  line-height: 16px;
}
.NDLnav .wp-panel .wp-menu li::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 12px;
  background: url(images/icon-arrow-more.png) no-repeat;
  right: 0;
}
.NDLnav .wp-panel .wp-menu li:hover {
  background: #004098;
}
.NDLnav .wp-panel .wp-menu li:hover a {
  color: #fff;
}
.NDLnav .wp-panel .wp-menu li:hover::before {
  background: url(images/icon-arrow-hover1.png) no-repeat;
}

.wp_entry a:hover{
    text-decoration: none;
    
}
 .XYGK1{
position: relative;
height:55px;
display: flex
;
    align-items: flex-end;
}
.XYGK1::before{
  position: absolute;
  content:"";
  width: 100%;
  height: 34px;
  background:url(images/ustcbg.png)no-repeat;
    top:7px;
    z-index: 99999;
 
}
 .XYGK2{
position: relative;
height:55px;
display: flex
;
    align-items: flex-end;
}
.XYGK2::before{
  position: absolute;
  content:"";
  width: 100%;
  height: 34px;
  background:url(images/ustcbg.png)no-repeat;
    top:7px;
    z-index: 99999;
background-position: center;
}

.erji_content_left .content_left_nva .left_nva_top {
    width: 280px;
    height: 110px;
    background: url(images/sidenavbg.png);
    border-radius: 10px 10px 0px 0px;
}
.erji_content_left{
background: #004098 !important
}


.content_box .biaoti_top{
float: none!important;
}


.menu-link:hover   .sub-menu{
display:block  !important;
}


.wp-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-menu .menu-item {
    position: relative;
    display: block;
}

.wp-menu .menu-link {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.wp-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    list-style: none;
    padding: 0;
    min-width: 100px;
    z-index: 1000;
}

.wp-menu .menu-item:hover > .sub-menu,
.wp-menu .menu-item.touch-active > .sub-menu {
    display: block;
}

.wp-menu .sub-item {
    position: relative;
}

.wp-menu .sub-link {
    display: block;
    
   
}

/* 触摸设备的样式 */
@media (hover: none) {
    .wp-menu .menu-item > .sub-menu {
        display: none;
    }
    
    .wp-menu .menu-item.touch-active > .sub-menu {
        display: block;
    }
}