@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(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;
}
@font-face {
  font-family: "Bagnard";
  src: url("BagnardSans.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Bagnard", sans-serif;
}

body {
  font-family: "Bagnard", sans-serif;
}

/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1300px;
  margin: 0 auto;
}
.s1 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 34px;
  color: #ffffff;
  text-shadow: 0px 0px 10px rgba(34, 37, 40, 0.3);
  margin-bottom: 38px;
}
.s2 {
  font-family: Bagnard;
  font-weight: 400;
  font-size: 46px;
  color: #ffffff;
}
header {
  position: absolute;
  z-index: 999;
  top: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  left: 50%; /* 水平中心对齐 */
  transform: translateX(-50%);
}
.banner {
  position: relative;
}
/* 导航 */
/*默认主导航样式*/
nav {
  width: 100%;
  position: absolute;
  z-index: 77;
  top: 75px;
}
.head-nav {
  height: 70px;
}

.nav .wp-menu {
  height: 70px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.nav .wp-menu .menu-item {
  width: 14%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  height: 70px;
  text-align: center;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 70px;
  line-height: 70px;
 
  position: relative;

  text-align: center;
}
.nav .wp-menu .menu-item a.menu-link {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: all 0.3s;
}
.nav .wp-menu .menu-item.hover a.menu-link {
  color: #fff;
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 70px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
}
.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
}
.nav .sub-menu .sub-item a {
  display: block;
  height: 40px;
  text-align: center;
  padding: 0 16px;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 46px;
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  background: #3B7AE1;
  display: block;
}

.nav .wp-menu {
  width: 100%;
}

/* banner */
.mySwiperbanner .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.head-nav3 {
  display: none;
}
.main1 {
  background: url(images/JUSTNEWS_bg.png) no-repeat;
  padding-top: 70px;
  padding-bottom: 70px;
  background-size: cover;
}
.Title {
  width: 100%;
  display: flex;
  justify-content: center;
}
.newsboxall {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.newbox1 {
  width: 49%;
}
.newbox1 li {
  position: relative;
}
.newsimg {
  width: 100%;
}
.newsimg img {
  width: 100%;
}
.newsimg1 img {
  width: 100%;
  height: 338px;
  object-fit: cover;
}
.newsimg2 img {
  width: 100%;
  height: 182px;
  object-fit: cover;
}
.s9 {
  font-family: Arial;
  font-weight: normal;
  font-size: 16px;
  color: #ffffff;
  font-style: italic;
}
.s10 {
  font-family: Arial;
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  line-height: 24px;
}
.newstext1 {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.newbox2 {
  width: 49%;
  display: flex;
  justify-content: space-between;
}
.newbox2 li {
  width: 49%;
}
.newstext2 {
  background: #fff;
  padding: 20px;
}
.more {
  width: 189px;
  height: 45px;
  background: #f1a435;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  transition: 0.5s;
}
.morelink {
  width: 100%;
  display: flex;
  justify-content: center;
}
.main2 {
  padding-top: 77px;
  padding-bottom: 63px;
}
.Vidoebox {
  width: 100%;

  padding: 30px;
  position: relative;
  margin-top: 100px;
  background: url(images/video_bg.png) no-repeat;
}
.Vidoeboximg {
  width: 100%;
  height: 100%;
}

.Vidoeboximg11 {
  position: relative;
  z-index: 99;
}
.s11 {
  font-family: Bodoni Bd BT;
  font-weight: bold;
  font-size: 84px;
  color: #ffffff;
  text-shadow: 0px 0px 14px rgba(34, 37, 40, 0.5);
  opacity: 0.45;
}
.videotext {
  position: absolute;
  z-index: 99;
  top: 41%;
  left: 25%;
}
.videotext2 {
  position: absolute;
  z-index: 999;
  top: 39%;
  left: 46%;
}
.footernav {
  background: url(images/Bottom_nav_bg.png) no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 30px;
}
.wp-menu1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.wp-menu1 .menu-item1 .menu-link {
  font-family: Arial;
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
}
.sub-menu1 {
  margin-top: 20px;
}
.wp-menu1 .menu-item1 .sub-menu1 .sub-item1 .sub-link {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 38px;
}
footer {
  background: #0751be;
  padding-top: 42px;
  padding-bottom: 28px;
}
.footer1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer2 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
}
.footerlogo {
  width: 30%;
}
.DBEWMimg img {
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
.DBEWM {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.DBEWM li a {
  display: flex;
  margin-left: 14px;
  height: 42px;
}
.EWM {
  width: 91px;
  height: 91px;
}
.EWM img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.DBEWM li {
  position: relative;
}
/* 隐藏二维码 */
.EWM {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-80%);
  transition: transform 0.8s ease-in-out;
  -webkit-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  -webkit-transform: translateX(-50%) translateY(-80%);
  -moz-transform: translateX(-50%) translateY(-80%);
  -ms-transform: translateX(-50%) translateY(-80%);
  -o-transform: translateX(-50%) translateY(-80%);
}

/* 当鼠标悬停在DBEWMimg上时，显示二维码并向上移动 */
.DBEWM li:hover .EWM {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
}
.s12 {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
}
.footer21 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 20px;
}
.s13 {
  font-family: Arial;
  font-weight: bold;
  font-size: 30px;
  color: #ffffff;
}
.mySwiperbanner .swiper-slide {
  position: relative;
}
.bannertext {

  position: absolute;
  bottom: 15%;
  left: 17%;
  z-index: 999;
  width: 935px;
  padding: 20px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to right,
    rgba(32, 113, 233, 0.62),
    rgba(32, 113, 233, 0)
  );
  display:none;
}
.bannertext::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: 999;
  top: 30%;
  width: 6px;
  height: 24px;
  background: #ffffff;
}

.mySwiperbanner .swiper-pagination-bullet {
  width: 20px;
  background: #ffffff;
  transition: 0.5s;
  border-radius: 5px;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 2.2);
}
.mySwiperbanner .swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 5px;
  background: #2071e9;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.swiper-pagination {
  bottom: 40px !important;
}
#column {
  padding: 0 0 30px;
}
.column-banner {
  position: relative;
  width: 100%;
  height: 700px;
  background: url(images/banner1.png) no-repeat;
  background-size: cover !important;
  margin: 0 auto;
}
.column-banner .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  background: 0 0;
  background: url(images/banner1.jpg) no-repeat center;
  background-size: cover !important;
 background-position-y: -160px;
}
#column .section-list {
  margin: 0 10px;
  padding: 10px 10px;
  min-height: 300px;
}
.left-nav {
  margin-top:  0px;
}
.col-anchor {
  padding: 25px 20px;
  background: #236ad3;
  color: #fff;
  font-size: 26px;
}
.breadcrumbs {
  margin: 15px 10px 15px;
  color: #999;
  font-size: 14px;
}
.col-name {
  margin: 0 10px 0;
  padding: 20px 0;
  font-size: 26px;
  font-weight: 700;
  color: #236ad3;
  border-bottom: 1px solid #ededed;
}
.breadcrumbs img {
  width: 12px;
  margin-right: 5px;
}
.col-list {
  margin-bottom: 30px;
  background: #fff;
}
.col-list > ul {
  position: relative;
  border-left: 8px solid #236ad3;
  padding: 0;
}
.col-list li {
  position: relative;
  font-size: 18px;
  border-left: none;
  border-top: 1px dashed #ededed;
  border-bottom: 1px dashed #ededed;
}
.col-list li.selected {
  background: #f1f1f1;
  color: #0288d1;
 display:block;
}
.col-list li.selected a {
  color: #236ad3;
  font-weight: 700;
}
.col-list ul li a {
  color: rgba(35, 106, 211, 1);
  display: block;
  padding: 15px 20px;
 font-size: 16px;
}
.submenu-toggle {
  position: absolute;
  right: 0;
  top: 0;
  background: #fafafa;
  color: #2566bf !important;
  padding: 15px 20px !important;
  border-left: 1px solid #ededed;
}
.col-list ul li ul {
  position: relative;
  padding: 0;
}
.col-list ul li ul li {
  font-size: 16px;
  border-left: none;
  background: #f7f7f7;
  border-left: 5px solid #f2afac;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.col-list ul li ul li a {
  color: #636363;
  display: block;
  padding: 10px 20px;
}
.col-list ul li ul li span {
  position: relative;
  top: 3px;
  font-size: 12px;
  float: right;
}
.col-list ul li ul li:hover a + span {
  color: #4863d2;
}
.col-breadcrumbs {
  float: right;
  margin-top: 30px;
  margin-right: 10px;
}
.article-list {
  margin: 10px 0;
  min-height: 300px;
}
.article-list li {
  background: url(images/icon_list_arrow.png) no-repeat left center;
  font-size: 14px;
  padding: 12px 0 12px 20px;
  margin: 0 10px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}
.article-list li a {
  color: #393939;

  font-family: Arial;
  font-weight: 400;
  font-size: 18px;

  line-height: 30px;
}
.article-list li:hover a {
  color: #3676d0;
}
.article-list li span {
  color: #636363;
  float: right;
}
.page_jump {
  display: none !important;
}
#wp_paging_w5 {
  text-align: center;
}
.wp_paging {
  float: none !important;
  display: inline-block !important;
  overflow: auto;
  zoom: 1;
}
.page_nav .prev span {
  display: none !important;
}
.page_nav .prev::before {
  content: "上一页";
}
.page_nav .next span {
  display: none !important;
}
.page_nav .next::before {
  content: "下一页";
}
.wp_paging li {
  height: auto !important;
  line-height: auto !important;
}
.wp_paging li a {
  height: auto;
  background: #fafafa;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}
.wp_paging li a:hover {
  background: #f0f0f0;
  box-shadow: 0 0 10px rgba(95, 121, 218, 0.4);
  color: #5f79da;
}
#wp_paging_w6 {
  display: block;
  text-align: center;
}

.nav {
  display: block;
}
.container {
  max-width: 100% !important;
  width: 100% !important;
}
#content {
}
.block-list {
  position: relative;
  min-height: 315px;
}
.block-list h1 {
  display: inline-block;
  margin: 0;
  padding: 10px 9px;
  color: #30b0ae;
  font-size: 18px;
  border-bottom: 3px solid #30b0ae;
}
.block-list .more {
  top: 14px;
}
.block-list ul {
  padding: 10px 5px;
  border-top: 1px solid #a4a4a4;
}
.block-list ul li {
  padding: 8px 0;
}
.block-list ul li::before {
  content: "·";
  position: relative;
  top: 3px;
  color: #4461d3;
  font-size: 24px;
  line-height: 14px;
}
.block-list ul li a {
  font-size: 14px;
  color: #363636;
}
.block-list ul li a:hover {
  color: #30b0ae;
}
.block-list ul li span {
  font-size: 12px;
  float: right;
  color: rgba(54, 54, 54, 0.4);
}
.block-tab .nav li > a {
  color: #333;
  border-radius: 0;
  border: none;
}
.block-tab .nav > li {
  width: auto !important;
}
.block-tab .nav > li > a {
  padding: 10px 9px;
  font-size: 18px;
}
.block-tab .nav li.active a {
  color: #30b0ae;
  border: none;
  border-bottom: 3px solid #30b0ae;
}
.block-tab .nav > li > a:focus,
.block-tab .nav > li > a:hover {
  background: 0 0 !important;
  border-top: none;
  border-left: none;
  border-right: none;
  color: #30b0ae !important;
}
.block-tab .nav > li {
  width: auto;
}
.block-tab .block-list {
  min-height: 270px;
}
.block-tab .block-list .more {
  top: -33px;
}
.block-tab .block-list ul {
  border-top: none;
}
.video-carousel {
  height: 305px;
}
.video-carousel .swiper-slide {
  position: relative;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(9, 22, 64, 0.5);
  line-height: 305px;
  text-align: center;
  z-index: 10;
  cursor: pointer;
}
.video-overlay img {
  margin: 0 auto;
  vertical-align: middle;
}
.video-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
  color: #fff;
  z-index: 10;
}
.video-title:focus,
.video-title:hover {
  color: #30b0ae;
}
.video-carousel video {
  width: 100%;
  height: 305px;
  background: #636363;
}
.video-pagination {
  bottom: 45px !important;
}
.video-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 30px;
  height: 3px;
  opacity: 1;
  background: rgba(150, 150, 150, 0.3);
}
.video-pagination .swiper-pagination-bullet-active {
  background: #30b0ae;
}
.quick-link {
  margin: 0 -5px;
  padding-top: 40px;
}
.quick-link div {
  padding: 5px 5px;
}
.quick-link img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.95;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}
.quick-link img:hover {
  opacity: 1;
  transform: scale(1.05);
}
.teacher-carousel {
  height: 320px;
  width: 100%;
  background: #f1f1f1;
}
.teacher-carousel .swiper-slide {
  display: block;
  background-size: cover !important;
  overflow: hidden;
  -webkit-transform: skew(-7deg, 0deg);
  -moz-transform: skew(-7deg, 0deg);
  -o-transform: skew(-7deg, 0deg);
  transform: skew(-7deg, 0deg);
}
.teacher-carousel .swiper-slide h1 {
  position: absolute;
  bottom: 8%;
  left: -5px;
  font-size: 20px;
  padding: 5px 0;
  width: 110%;
  text-align: center;
  background: rgba(38, 61, 158, 0.5);
  color: #fff;
  -webkit-transform: skew(7deg, 0deg);
  -moz-transform: skew(7deg, 0deg);
  -o-transform: skew(7deg, 0deg);
  transform: skew(7deg, 0deg);
}
.teacher-carousel .swiper-slide img {
  position: relative;
  left: -15px;
  width: 120%;
  -webkit-transform: skew(7deg, 0deg);
  -moz-transform: skew(7deg, 0deg);
  -o-transform: skew(7deg, 0deg);
  transform: skew(7deg, 0deg);
}
.circle-button {
  position: relative;
  width: 180px;
  height: 180px;
  background: #30b0ae;
  border-radius: 50%;
  padding: 65px 0;
  margin: 20px auto;
  text-align: center;
  font-size: 24px;
  color: #fff;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -ms-transition: all 0.4s;
}
.circle-button:hover {
  background: #617adb;
  padding: 50px 0;
}
.circle-button:hover .text {
  display: none;
}
.circle-button::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid #edfaf9;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -ms-transition: all 0.4s;
}
.circle-button:hover::before {
  border: 0;
  visibility: hidden;
}
.circle-button span {
  display: block;
  font-size: 12px;
}
.circle-button img {
  display: none;
}
.circle-button:hover img {
  display: inline-block;
}
.subject-carousel {
  height: 320px;
  width: 100%;
  color: #fff;
}
.subject-carousel .swiper-slide {
  background: cover !important;
}
.subject-carousel .swiper-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(68, 97, 212, 0.5);
  padding: 20px 40px;
}
.subject-carousel .swiper-slide .overlay h1 {
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.subject-carousel .swiper-slide .overlay span {
  display: block;
  background: url(../img/icon_time.png) no-repeat center left;
  background-size: contain !important;
  padding-left: 30px;
  margin-bottom: 20px;
}
.subject-carousel .swiper-slide .overlay p {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 2;
}
.special-list {
  background: #edf9f9;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.1);
}
.special-list > h1 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #4461d3;
  margin: 0 -15px;
  padding: 15px 0;
  text-align: center;
}
.special-list > h1 img {
  width: 20px;
  margin-right: 10px;
}
.special-list .block-list {
  background: #edf9f9;
}
.special-list .block-list ul {
  min-height: 338px;
}
.un-btn-small li {
  float: left;
  width: 20%;
  padding: 8px;
}
.un-btn-small li img {
  opacity: 0.95;
  width: 100%;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -ms-transition: all 0.4s;
}
.un-btn-small li:hover img {
  opacity: 1;
  transform: scale(1.1);
}
.un-btn-small li p {
  text-align: center;
  font-size: 12px;
  color: #1d1d1d;
  margin-top: 10px;
}
.un-btn-large {
  position: absolute;
  left: 0;
  bottom: -60px;
}
.un-btn-large li {
  float: left;
  width: 50%;
  padding: 0 15px;
}
.un-btn-large li img {
  width: 100%;
  opacity: 0.95;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -ms-transition: all 0.4s;
}
.un-btn-large li:hover img {
  opacity: 1;
  transform: scale(1.05);
}
.breadcrumbs {
  text-align: left;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 5px;
}
.breadcrumbs span:first-child {
  margin-right: 8px;
}
.page-content {
  padding: 30px;
  border-top: 5px solid rgba(35, 106, 211, 1);
  box-shadow: 0 2px 20px rgba(65, 136, 206, 0.2);
  background: #fff;
}
.post-title {
 
  text-align: center;
  font-size: 26px;
  color: #363636;
 line-height: 50px; 
 margin-bottom:20px;
}
.post-meta {
  display: block;
  padding: 0 10px 5px;
  color: #636352;
  text-align: center;
  font-size: 12px;
  white-space: nowrap;
}
.post-meta span {
  border-bottom: 1px solid rgba(35, 106, 211, 1);
  padding: 4px;
  background: #fafafa;
  margin: 5px 8px;
}
.post-meta span i {
  color: rgba(68, 97, 211, 0.5);
  margin-right: 10px;
}
.post-divider {
  margin: 10px auto;
  height: 1px;
  max-width: 1000px;
  background: #ededed;
}
.post-content {
  margin: 0 auto;
  padding: 20px 0;

  font-size: 14px;
  min-height: 600px;
}
.post-content img {
  height: auto;
  max-width: 100%;
  margin: 0 20px;
}

.newbox1 li {
  overflow: hidden;
  transition: 0.5s;
}
.newbox2 li {
  overflow: hidden;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.newsimg {
  transition: transform 0.6s ease-in-out;
}
.newbox1 li:hover .newsimg {
  transform: scale(1.1);
}
.newsimg {
  transition: transform 0.6s ease-in-out;
}
.newbox2 li:hover .newsimg {
  transform: scale(1.1);
}
.newbox2 li:hover .s9 {
  color: #f1a435 !important;
}
.newbox2 li:hover .s10 {
  color: #236ad2 !important;
}
.more:hover {
  transform: scale(1.1); /* 放大 10% */
}
.Vidoebox {
  transition: 0.5s;
  transition: transform 0.6s ease-in-out;
}
.Vidoeboximg11 {
  transition: transform 0.6s ease-in-out;
}
.Vidoebox:hover .Vidoeboximg11 {
  transform: scale(1.05);
}

.menu-item1 .menu-link {
  position: relative;
  text-decoration: none; /* 去掉默认下划线 */
}

.menu-item1 .menu-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px; /* 下划线的高度 */
  background-color: #f1a435; /* 下划线的颜色 */
  transition: width 0.6s ease; /* 动画效果 */
}

.menu-item1 .menu-link:hover::after {
  width: 100%; /* 鼠标悬停时，宽度为100%，下划线从左到右滑出 */
}

.sub-item1 .sub-link {
  position: relative;
  text-decoration: none; /* 去掉默认下划线 */
}

.sub-item1 .sub-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px; /* 下划线的高度 */
  background-color: #f1a435; /* 下划线的颜色 */
  transition: width 0.6s ease; /* 动画效果 */
}

.sub-item1 .sub-link:hover::after {
  width: 100%; /* 鼠标悬停时，宽度为100%，下划线从左到右滑出 */
}

.post-content img {
  display: block;
  margin: 0 auto;
}
table {
  margin: 0 auto;
}

.nav .wp-menu .menu-item:hover .menu-link {
  color: #fff !important;
  border-bottom: 2px solid #3b7ae1;

  transition: 0.5s;
}

#wp_pager .pages {
  display: flex;
  min-height: auto;
  margin: 40px 0 20px;
  justify-content: center;
  align-items: center;
}
#wp_pager .pages li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 36px;
  overflow: hidden;
  padding: 0;
  margin: 0 4px;
  text-align: center;
  background-color: #f1f1f1;
  color: #333;
  border: 2px solid transparent;
  border-radius: 4px;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
#wp_pager .pages li a:hover {
  background-color: #e3e3e3;
  color: #333;
}
#wp_pager .pages li a.pgCurrent {
  font-weight: bold;
  background-color: #fff;
  color: #666;
  border: 2px solid #236ad3;
}
#wp_pager .pages li a.pgNext {
  width: auto;
  padding: 0 8px;
}

#wp_pager .pages li a.pgCurrent {
  font-weight: bold;
  background-color: #fff;
  color: #236ad3;
  border: 2px solid #236ad3;
}

.newbox1 {
  position: relative;
}
.newbox1::before {
  left: 3%;
  z-index: 999;
  position: absolute;
  content: "";
  width: 75px;
  height: 7px;
  background: #236ad3;
  bottom: 5px;
}

.s1 {
  position: relative;
}

.column-date-list {
  padding: 30px;
}
.column-date-list .date-item {
  margin-bottom: 28px;
}

.column-img-list,
.column-photo-list {
  padding: 15px 0px;
  min-height: 500px;
}
.column-img-item,
.column-photo-item {
  width: 100%;
  overflow: hidden;
  padding: 5px 0 25px;
}
.column-img-item .photo {
  width: 100%;
  padding-bottom: 75%;
  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;
 display:none;
}
.column-photo-item .title {
  padding: 10px 15px;
  font-size: 16px;
  text-align: center;
  border-bottom: 2px solid #6a3093;
}
.column-img-item .title p,
.column-photo-item .title p {
  margin: 0;
}
.column-img-item:hover .title {
  color: #236ad3;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -o-transform: translateY(-8px);
}
.main {
  position: relative;
}
.Chinese a {
  width: 158px;
  height: 33px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 15px;
}
.Chinese:hover .s14 {
  background: rgba(255, 255, 255, 0.5);
}
.headertop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s14 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  width: 104px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
header {
  width: 100%;
  padding-top: 30px;
  background: linear-gradient(180deg, #236ad3 0%, rgba(35, 106, 211, 0) 100%);
}
.head-nav {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  margin-top: 30px;
}
.head-nav .nav .wp-menu .menu-item .menu-link {
  font-family: Arial;
  font-weight: bold;
  font-size: 22px;
  color: #ffffff;
}
.row{
padding-top:20px;
}

 
  .menu-item1{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
 }
.sub-menu1{
display: flex !important;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
 .wp_articlecontent p{
 line-height: 36px !important;
    font-size: 20px !important;
}
 .wp_articlecontent  span{
 line-height: 36px !important;
    font-size: 20px !important;
}
 



