@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,
a:active {
  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.5s all ease;
  -ms-transition: 0.5s all ease;
  transition: 0.5s 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;
}

/*页面尺寸*/
header{
  position: absolute;
  /* background: linear-gradient(to bottom, #114498, rgba(17, 68, 152, 0.0)); */
  background: url(images/banner_b.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 10;
}
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1400px;
  margin: 0 auto;
}
.head-top{
  display: flex;
  gap:15px;
  justify-content: space-between; 
  align-items: center;
  padding-top: 21px;
  padding-bottom: 21px;
}

.hr{
  display: flex;
  flex-direction: column;
  align-items:  flex-end;
  gap: 25px;
}
.h2 a{
  color: #fff;opacity: 0.5; font-family: SourceHanSansCN; font-size: 16px;
  padding-right: 13px;
  margin-right: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
}
.h2 a:hover{
  opacity: 1;
}
/* 搜索框样式 */
.wp-search {
  width: 320px;
  height: 44px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 1);
}
.wp-search form {
  width: 100%;
  display: flex;
  padding-left: 20px;
}
.wp-search .search-input {
  flex: 1;
  height: 44px;
  display: flex;
  align-items: center;

}
.wp-search .search-input input.search-title {
  width: 100%;
  height: 44px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  letter-spacing: -0.3px;
  padding: 0 1px;
  box-sizing: border-box;
}
.wp-search .search-input input.search-title::placeholder {
  color:rgba(255, 255, 255, 1);
  font-size: 16px;
  font-family: "Microsoft YaHei";
  font-weight: 400;
  letter-spacing: -0.3px;
}
.wp-search .search-btn {
  width: 70px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -1px;
  top: 0;
  background: #fff;
  border-radius: 21px;
}
.wp-search .search-btn input.search-submit {
  width: 24px;
  height: 24px;
  border: none;
  outline: none;
  background:url(images/search.png) no-repeat center center;
  background-size: cover;
  cursor: pointer;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: rgba(255, 255, 255, 1);
}


/* nav */
.head-nav{
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
}
.nav .wp-menu {
  width: 100%;
  height: 60px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  height: 60px;
  text-align: center;
  transition: all 0s ease;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 60px;
  line-height: 60px;
  position: relative;
  transition: all 0s ease;
  padding: 0 22px;
  
}
.nav .wp-menu .menu-item a.menu-link {
  font-family: Microsoft YaHei;
  font-weight: 500;
  font-size: 21px;
  color: #00296d;
  position: relative;
}
.nav .wp-menu .menu-item a.menu-link:before {
  content: "";
  position: absolute;
  background: #00296d;
  width: 0px;
  height: 3px;
  left:50%;
  transform: translateX(-50%);
  bottom: 0px;
  border-radius: 1.5px;
  transition: all 0.3s ease;
}
/* .nav .wp-menu .menu-item:hover a.menu-link {
  background: #f1cb96;
  position: relative;
} */
.nav .wp-menu .menu-item:hover a.menu-link:before {
  content: "";
  position: absolute;
  background: #00296d;
  width: 120px;
  height: 3px;
  left:50%;
  transform: translateX(-50%);
  bottom: 0px;
  border-radius: 1.5px;
}
/* .nav .wp-menu .menu-item:hover > a.menu-link{ 
  color: #114498;
} */

.nav .wp-menu .menu-item:hover {
  
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 60px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.5);
}
.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
  transition: all 0.3s;
}

.nav .sub-menu .sub-item a {
  display: block;
  color: #00296d;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  text-align: center;
  padding: 0 8px;
  transition: all 0.3s;
  font-family: "微软雅黑"
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #00296d;
  display: block;
  font-weight: bold;
  background: #fff;
}
.nav .wp-menu .menu-item:hover .sub-menu {
  display: block;
}
.nav .wp-menu .menu-item:hover .sub-menu .sub-menu{
  display: none;
}
.nav .sub-menu .sub-menu{
  display: none;
  position: absolute;
  left: 100%;
  transform: translateX(0);
  top: 0px;
  width: auto;
  min-width: 50%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.5);

}
/* .nav .wp-menu .menu-item .sub-menu:hover .sub-menu{
  display: block;
} */

/* banner */
.banner {
  width: 100%;
  height: auto;
  position: relative;
}
.mySwiper1 {
  width: 100%;
  height: auto;
  position: relative;
}
.mySwiper1 .swiper-slide{
  width: 100%;
  height: auto;
}
.mySwiper1 .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.mySwiper1  .swiper-pagination{
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  bottom: 20px !important;
}
.mySwiper1  .swiper-pagination-bullet{
  width: 15px;
  height: 15px;
  background: #114498;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
}
.mySwiper1  .swiper-pagination-bullet-active{
  width: 60px;
  height: 15px;
  border-radius: 10px;
}




/* main1 */
.main1{
  background: url(images/bj_02.png);
  background-size: cover;
  padding-top: 85px;
  padding-bottom: 35px;
}
.title{
  font-size: 40px;
  line-height: 36px;
  font-family: "思源黑体";
  color: #333333;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
}
.line{
  font-size: 26px;
  line-height: 36px;
  font-family: "思源黑体";
  color: #999999;
  font-weight: 500;
}
.title:before{
  content: "Research";
  position: absolute;
  left: 0px;
  top: -40px;
  font-size: 80px;
  line-height: 80px;
  background: linear-gradient(to bottom, #0052da, rgba(0,82,218,0.0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-transform: uppercase;
  opacity: 0.15;
  font-weight: 700;
  font-family: "思源黑体";
}
.more{
  color: #114498;
  line-height: 30px;
  font-size:  18px;
  font-family: "思源黑体";
  position: relative;
  padding-right: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.micon{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.more:hover {
  color: #fd992d !important;
}
.more:hover .micon {
  filter: 
    brightness(2.3)     
    saturate(3)         
    hue-rotate(170deg)  
    contrast(1.1);
  transition: filter 0.3s ease;
}


.banner1{
  margin-top: 46px;
}
.mySwiper2{
  padding-bottom: 65px !important;
  padding: 0 9px;
  padding-top: 10px;
}
.mySwiper2 .swiper-slide img{
  width: 100%;
  height: 234px;
  object-fit: cover;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.mySwiper2 .swiper-pagination{
  bottom: 0px;
}
.mySwiper2 .swiper-pagination-bullet{
  background: #114498;
  width: 20px;
  height: 20px;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
}
.mySwiper2 .swiper-slide a{
  position: relative;
  display: block;
}
.slide-text{
  background: rgba(255, 255, 255, 1);
  padding: 20px 20px 20px 15px;
  transition: all 0.3s;
}
.time{
  position: absolute;
  top: -10px;
  left: 0px;
  background: #04388d;
  width: 160px;
  color: #ffffff;
  line-height: 34px;
  font-size:  18px;
  font-family: "Arial";
  text-align: center;
  border-radius: 0px 0px 4px 4px;
}
.time:before{
  content: "";
  background: url(images/time_b.png);
  top: 0px;
  left: 100%;
  width: 10px;
  height: 10px;
  position: absolute;
}
.s1{
  color: #000000;
  line-height: 32px;
  font-size:  18px;
  font-family: "思源黑体";
  transition: all 0.3s;
}
.s2{
  color: #fff;
  line-height: 28px;
  font-size:  15px;
  font-family: "思源黑体";
  display: none;
  margin-top: 15px;
  transition: all 0.3s;
}
.mySwiper2 .swiper-slide a:hover .slide-text{
  background: #114498;
  width: calc(100% + 18px);
  margin-left: -9px;
  padding: 20px 29px 20px 24px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
.mySwiper2 .swiper-slide a:hover .s2{
  display: block;
  opacity: 0.7;
}
.mySwiper2 .swiper-slide a:hover .s1{
  color: #fff;
}


/* main2 */
.main2{
  padding-top: 85px;
  padding-bottom: 60px;
}
.title1:before{
  content: "NEWS";
}
.m2{
  margin-top: 35px;
  gap: 35px;
  align-items: flex-end;
}
.ml2{
  width: 57.14%;
  height: 450px;
  display: block;
}
.ml2 .swiper-slide a:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background:url(images/ml2_b.png);
  background-size: cover;
}
.ml2 .mySwiper4{
  width: 100%;
  height: 100%;
}
.ml2 .mySwiper4 .swiper-wrapper{
  width: 100%;
  height: 100%;
}
.ml2 .swiper-slide a{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.ml2  img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ml2-text{
  position: absolute;
  bottom: 0;
  left: 20px;
  padding-bottom: 20px;
}
.time1{
  color: #ffffff;
  line-height: 34px;
  font-size:  18px;
  font-family: "Arial";
  background: #00296d;
  border-radius: 17px;
  width: 130px;
  text-align: center;
}
.s3{
  color: #ffffff;
  line-height: 30px;
  font-size:  20px;
  font-family: "思源黑体";
  margin-top: 12px;
}
.ml2 .swiper-pagination{
  text-align: right;
}
.ml2 .swiper-pagination-bullet{
  background: #fff;
  width: 10px;
  height: 10px;
}


.mr2{
  width: 40.35%;
}
.mr2 li a{
  display: block;
  padding-bottom: 25px;
  border-bottom: 1px solid #cdcdcd;
  padding-left: 22px;
  padding-top: 18px;
  padding-right: 15px;
  position: relative;
}
.mr2 li a:before{
  top: -10px;
  left: -10px;
  content: "";
  position: absolute;
  width: 0px;
  height: 100%;
  background: #04388d;
  transition: all 0.5s ease;
}
.time2{
  color: #666666;
  line-height: 30px;
  font-size:  16px;
  font-family: "Arial";
  transition: all 0.5s ease;
}
.s4{
  color: #000000;
  line-height: 30px;
  font-size:  18px;
  font-family: "思源黑体";
  transition: all 0.5s ease;
}
.more1{
  display: none;
  text-align: right;
}
.mr2 li a:hover{
  background-color: #5b85c7;
  padding-right: 30px;
}
.mr2 li a:hover .more1{
  display: block;
}
.mr2 li a:hover .time2,
.mr2 li a:hover .s4{
  color: #ffffff;
}
.mr2 li a:hover:before{
  top: -10px;
  left: -10px;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #04388d;
}

/* main3 */
.main3{
  padding-top: 85px;
  background: url(images/bj_03.png);
  background-size: cover;
  padding-bottom: 33px;
}
.line1{
  color: #ffffff;
  opacity: 0.7;
}
.title2{
  color: #ffffff;
}
.title2:before{
  content: "Notice";
  background: linear-gradient(to bottom, #fff, rgba(255,255,255,0.0));
  opacity: 0.08;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.banner2{
  margin-top: 40px;
}
.mySwiper3{
  padding-bottom: 52px;
}
.mySwiper3 a{
  display: block;
  background: #fff;
  padding: 22px 20px 17px 20px;
  border-top: 4px solid #114498;
  box-sizing: border-box;
  border-radius: 0px 0px 4px 4px;
  transition: all 0.3s ease;
}
.time3{
  padding: 7px;
  min-width: 60px;
  height: 60px;
  font-size: 20px;
  line-height: 26px;
  font-family: "arial";
  color: #fff;
  background: #04388d;
  box-sizing: border-box;
  border-radius: 4px;
  position: relative;
}
.time3 .day{
  text-align: right;
}
.time3:before{
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 19px;
  height: 36px;
  background: url(images/time_between.png);
  background-size: cover;
}
.s5{
  color: #000000;
  font-size: 18px;
  line-height: 30px;
  font-family: "微软雅黑";
}
.s6{
  color: #666666;
  font-size: 15px;
  line-height: 26px;
  font-family: "微软雅黑";
  margin-top: 15px;
}
.mySwiper3 a:hover{
  border-top: 6px solid #00296d;
  box-sizing: border-box;
  box-shadow: 0 0 10px #00296d;
}
.mySwiper3 a:hover .s5{
  color: #114498;
  font-weight: bold;
}
.mySwiper3 .swiper-pagination{
  bottom: 0px;
}
.mySwiper3 .swiper-pagination-bullet{
  background: #fff;
  width: 20px;
  height: 20px;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
}



/* main4 */
.main4{
  padding-top: 85px;
  padding-bottom: 62px;
}
.title3:before{
  content: "Cooperation";
}
.m4{
  padding-left: 12px;
  justify-content: space-between;
}
.m4 li a{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 4px;
  margin-top: 52px;
}
.m4-pic{
  width: 416px;
  height: 234px;
  position: relative;
}
.m4 li a:hover .m4-pic > img{
  transform: scale(0.97);
}
.m4-pic > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.m4 li a > .m4-pic:before{
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  background: url("images/m4_b.png");
  width: 100%;
  height: 100%;
  background-size: cover;
}
.s7{
  width: 280px;
  height: 84px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
  margin-top: -22px;
  color: #000000;
  font-size: 18px;
  line-height: 30px;
  font-family: "微软雅黑";
  padding: 8px 15px;
  position: relative;
  z-index: 1;
}
.m4 li a:hover .s7{
  color: #114498;
  font-weight: 500;
}

/* main5 */
.main5{
  padding-top: 85px;
  background: url("images/bj_04.png");
  background-size: cover;
  padding-bottom: 58px;
}
.m5{
  gap: 40px;
  justify-content: space-between;
}

.mr5{
  width: 40.35%;
}
.xsbox{
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  
}
.xsbox li{
  padding-left: 100px;
}
.xsbox li a{
  display: flex;
  gap: 18px;
  background: #fff;
  justify-content: space-between;
  padding-right: 25px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.xs-pic{
  width: 206px;
  height: 206px;
  margin-left: -100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  vertical-align: top;
  justify-content: center;
  background: #04388d;

}
.xs-pic img{
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}
.xs-text{
  width: calc(100% - 157px);
  padding-top: 18px;
}
.xsbox li:hover .s8{
  color: #114498;
}
.s8{
  color: #000;
  line-height: 30px;
  font-size:  20px;
  font-family: "微软雅黑";
  font-weight: bold;
  letter-spacing: -0.2px;
}
.s9{
  color: #000000;
  line-height: 30px;
  font-size:  18px;
  font-family: "微软雅黑";
  font-weight: 500;
  margin-top: 10px;
}
.s9 span{
  font-weight: 600;
}
.s10{
  color: #666666;
  line-height: 30px;
  font-size:  16px;
  font-family: "微软雅黑";
  font-weight: 400;
  margin-top: 10px;
}
.time4{
  position: absolute;
  left: 55px;
  top: 10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #2f5aa9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: white;
}
.time4 .day{
  line-height: 26px;
  font-size:  20px;
  font-family: "Arial";
  padding-bottom: 5px;
  display: block;
  position: relative;
}
.time4 .day:before{
  content: " ";
  position: absolute;
  width: 75px;
  height: 1px;
  background: white;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.time4 .month{
  font-size:  16px;
  font-family: "Arial";
  line-height: 26px;
}
.title4:before{
  content: "Lecture";
}
.ml5{
  width: 57.14%;
}
.title5:before{
  content: "Join";
}
.jrbox{
  margin-top: 40px;
  display: flex;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  
}
.jrbox img{
  width: 100%;
  height: 443px;
  object-fit: cover;
}
.jrtext{
  width: 360px;
  height: 104px;
  background: rgba(4, 56, 141, 0.86);
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 17px 15px 15px;
}
.s11{
  color: #ffffff;
  line-height: 32px;
  font-size:  18px;
  font-family: "Mircrosoft YaHei";
  transition: all 0.3s;
}
.jrbox:hover .s11{
  transform: translate(5px , -5px);
}

/* main6 */
.main6{
  padding-top: 85px;
  padding-bottom: 60px;
}
.m6{
  gap: 40px;
  justify-content: space-between;
}
.ml6{
  width: 57.14%;
}
.gzbox{
  margin-top: 35px;
  
}
.gzbox li{
  padding: 0px 15px 0px 20px;
  position: relative;
}
.gzbox li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px 17px 0px;
  border-bottom: 1px solid #cdcdcd;
}
.gzbox li:last-child a{
  border-bottom: none;
}
.s12{
  color: #000000;
  line-height: 28px;
  font-size:  18px;
  font-family: "Mircrosoft YaHei";
  width: calc(100% - 82px);
}
.time5{
  color: #666666;
  line-height: 28px;
  font-size:  16px;
  font-family: "Arial";
}
.gzbox li:hover:before{
  background: #04388d;
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 1px);
  top: -1px;
  left: 0;
}
.gzbox li:hover .s12,
.gzbox li:hover .time5{
  color: #ffffff;
  z-index: 1;
}
.mr6{
  width: 40.35%;
}
.title6:before{
  content: "Regulations";
}
.title7:before{
  content: "Download";
}
.xzbox{
  margin-top: 35px;
}
.xzbox .s12{
  width: calc(100% - 32px);
}
.xzbox li{
  padding: 0px 15px 0px 20px;
  position: relative;
}
.xzbox li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px 17px 0px;
  border-bottom: 1px solid #cdcdcd;
}
.xzbox li:last-child a{
  border-bottom: none;
}
.xz-pic{
  display: block;
  width: 28px;
  height: 24px;
  background: url(images/icon.png);
  background-size: cover;
}
.xzbox li a:hover .s12{
  color: #04388d;
  font-weight: 500;
}
.xzbox li a:hover .xz-pic{
  background: url(images/icon_h.png);
}

/* main7 */
.main7{
  padding-top: 85px;
  background: url(images/bj_05.png) no-repeat;
  padding-bottom: 85px;
  background-size: cover;

}
.title8:before{
  content: "Navigation";
}
.kjbox{
  margin-top: 37px;
  gap: 25px;
  justify-content: space-around;
}
.kjbox li a{
  align-items: center;
  gap: 15px;
}
.s13{
  width: 130px;
  color: #000000;
  line-height: 36px;
  font-size:  18px;
  font-family: "Mircrosoft YaHei";
  letter-spacing: 0.5px;
  background: #f1f4ff;
  border-radius: 18px;
  text-align: center;
}
.kjbox li a:hover .s13{
  background: #04388d;
  color: #ffffff;
}

/* footer */
footer{
  padding-top: 48px;
  background: url(images/bj_06.png) no-repeat;
  padding-bottom: 65px;
  background-size: cover;

}
.logo1{
  margin-bottom: 20px;
}
.f1{
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.4);
  gap: 20px;
}
.f1 li{
  color: #fff;
  line-height: 36px;
  font-size:  18px;
  font-family: "Mircrosoft YaHei";
}
.copyright{
  color: rgba(255,255,255,0.7);
  line-height: 30px;
  font-size:  15px;
  font-family: "Mircrosoft YaHei";
}
.s14{
  color: #fff;
  line-height: 30px;
  font-size:  15px;
  font-family: "Mircrosoft YaHei";
  letter-spacing: 0.6px;
  text-align: center;
  position: relative;
}
.s14:before{
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,1);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.s14:after{
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,1);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ewm{
  width: 130px;
  height: 130px;
  object-fit: cover;
}






/***********************************************************
 * 列表页
 */

 
 /*栏目图片*/
 .l-banner {height: 440px; background:url(images/banner1.png);background-position: center;background-repeat: no-repeat; background-size: cover;text-align: center;overflow: hidden;position: relative;}
 .l-banner img {display: none;vertical-align: middle;height: 100%; object-position: center;}
 
/**主体列表页开始**/
#l-container{
  background:#f8fafc;
}
#l-container .inner {padding:25px 0px; } 
/**主体文章页开始**/
#d-container .inner {
  background:#fff;
  box-shadow: 0 0 20px rgba(17, 68, 152, 0.3);
  border-radius:20px 20px 0px 0px;
  margin-top: -150px;
  position: relative;
  z-index: 2;
}


/*主栏目名称*/
.col_menu { width: 250px; float: left; margin-right: -250px; position: relative;  margin-top:-150px; box-sizing: border-box; box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);z-index: 2;}
.col_menu .l-qh { margin-bottom: 10px; }
.col_menu .col_menu_head { background: #114498; position: relative;} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name { height:55px; font-size: 20px; font-weight:bold; color: #fff; } /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text { display: block; line-height: 55px; padding: 0px 25px; width:100%; text-align:center; position: relative;} /**栏目名称图标**/
.col_menu .col_menu_con {  background:#fff }

.col_menu:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 40px;
  background: url(images/col_before.png) no-repeat;
  background-size: 100% 100%;
  left: 0;
  bottom: 100%;
}
/*栏目列表*/
.col_list { min-height:30px; background:#f7f7f7}
.col_list .wp_listcolumn { border-top: 0px solid #2867a0; border-bottom: 0px solid #fff; }
.col_list .wp_listcolumn .wp_column a { text-decoration: none; color: #333; display: block; font-size: 15px; font-weight: normal; background: none; border-top: 0px solid #fff; border-bottom: 0px solid #f6eaea; }
.col_list .wp_listcolumn .wp_column a .column-name { /* padding: 5px 0px 5px 15px;  */line-height: 32px; cursor: pointer; }
.col_list .wp_listcolumn .wp_column a:hover{position: relative;text-decoration: none;color: #ff9536;font-weight: 600;padding-left: 5px; } 
.col_list .wp_listcolumn .wp_column a.selected { color: #ff9536;  position: relative; text-decoration: none;font-weight: 600;padding-left: 5px;background: #ffffff;border-left: 4px solid #ff9536;}
.col_list .wp_listcolumn .wp_column a.selected span.column-name { color: #ff9536; }
.col_list .wp_listcolumn .wp_subcolumn .wp_column a { color: #454545; background: none; border-top: 1px solid #fff; border-bottom: 1px solid #bbb; }
.col_list .wp_listcolumn .wp_column.parent > a .column-name { font-weight: bold; color: #ff9536;}
.col_list .wp_listcolumn .wp_column.parent > a { border-left: 4px solid #ff9536;background: #ffffff;}
/*二级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list a { color: #333;  }
.col_list .wp_listcolumn .sub_list a .column-name { display: inline-block; line-height: 28px; padding: 5px 10px 5px 44px; cursor: pointer; }
.col_list .wp_listcolumn .sub_list a:hover, .col_list .wp_listcolumn .wp_column a.selected { font-weight: bold; font-weight: bold; color: #ff9536; }
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a { }
.col_list .wp_listcolumn .sub_list .sub_list a .column-name { padding: 5px 10px 5px 60px; cursor: pointer; }
.col_list .wp_listcolumn .sub_list .sub_list a :hover, .col_list .wp_listcolumn .sub_list .sub_list a.selected { font-weight: bold; color: #ff9536; }

.col_list .wp_listcolumn { border: 0px; }
.col_list .wp_listcolumn .wp_column a { background-image: none; display: block; box-sizing: border-box; color: #333; font-size: 20px; font-weight: 500; text-align: left; position: relative; }
.col_list .wp_listcolumn .wp_column a .column-name { display:block; padding-left: 20px ;padding-right: 12px; line-height: 60px; text-align:left;letter-spacing: 0.6px;font-family: "微软雅黑";}
.col_list .wp_listcolumn .wp_column a.col_item_link i { position: absolute; content: ""; right: 48px; top: 50%; margin-top: -7px; width: 8px; height: 14px; display: none; }
.col_list .wp_listcolumn .wp_column a.col_item_link:hover i, .col_list .wp_listcolumn .wp_column a.col_item_link.selected i, .col_list .wp_listcolumn .wp_column a.col_item_link.parent i { display: block; }
.col_list .wp_listcolumn .sub_list .wp_column a { color: #454545; background: none; border-bottom: 1px solid #bbb; }
/*二级子栏目**/
.col_list .wp_listcolumn .sub_list a { font-weight: normal; font-size: 18px; color: #333; font-family: "微软雅黑";}
.col_list .wp_listcolumn .sub_list a .column-name { display: inline-block; line-height: 50px;  padding-left: 20px ;padding-right: 12px; cursor: pointer; letter-spacing: 0.2px;}
.col_list .wp_listcolumn .sub_list a:hover { background: #fff; color: #ff9536}
.col_list .wp_listcolumn .sub_list a.selected { background: #fff; font-weight: 600;  color: #ff9536;border-left:none;}
.col_list .wp_listcolumn .sub_list a:hover span.column-name, .col_list .wp_listcolumn .sub_list a.selected span.column-name { color: #ff9536; }
/* .col_list .wp_listcolumn .wp_column .sub_list.parent > a { border-left:none;background: #ffffff;}
.col_list .wp_listcolumn .wp_column .sub_list.parent > a .column-name{color: #ff9536;} */
.col_list .wp_listcolumn .wp_column .sub_list a.sub-item-link.parent{ border-left:none;background: #ffffff;}
.col_list .wp_listcolumn .wp_column .sub_list a.sub-item-link.parent .column-name{color: #ff9536;}
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a { background: none;font-family: "微软雅黑"; padding: 6px 5px;}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name { padding: 0px 10px 5px 20px; cursor: pointer; font-size: 16px; position: relative; line-height: 32px;}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name:before { position: absolute; content: ""; left: 14px; top: 50%; margin-top: -2px; width: 4px; height: 4px; background: #bbb; }
.col_list .wp_listcolumn .sub_list .sub_list a:hover, .col_list .wp_listcolumn .sub_list .sub_list a.selected { font-weight: 400; color: #237b36; }
.col_list .wp_listcolumn .sub_list .sub_list a:hover .column-name:before, .col_list .wp_listcolumn .sub_list .sub_list a.selected .column-name:before { background: #f6f6f6; }
.col_list .wp_listcolumn .sub_list .sub_list a.selected{border-left: none;}
/**栏目新闻**/
.col_news { width: 100%; min-height: 400px; float: right; margin-top:-150px; position: relative; z-index: 1;} /**栏目新闻**/
.col_news .col_news_box { margin-left: 280px;min-height: 350px; box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); background: #fff;}

.col_news_head { border-bottom: 1px solid #dbdbdb; background: #f7f7f7;padding: 0 20px;}
.col_metas .col_title { display: inline-block; float: left; height: 60px; line-height: 60px; } /**当前栏目**/
.col_metas .col_title h2 { display: inline-block; font-size: 20px; font-weight: bold; color: #000000; }
.col_metas .col_path { display: inline-block; float: right; white-space: nowrap; height: 60px; line-height: 60px; color: #666; font-size:18px; padding-left: 25px;position: relative;} /**当前位置**/
.col_metas .col_path:before { content: ''; position: absolute;  left: 0px; width: 18px; height: 18px; background: url(images/home.png) no-repeat; background-size: 18px 18px; top: 50%; margin-top: -9px; }
.col_metas .col_path a { color: #2f2f2f; }
.col_news_con { padding: 15px 22px 10px 22px; margin: 0 0px; }
.col_news_list { margin-top:7px;}
.col_news_list .wp_article_list .list_item {} /**栏目新闻列表**/
.col_news_list .wp_article_list .list_item .Article_Index { }  /**栏目新闻图标序号**/
.col_news_list .wp_entry,.col_news_list .wp_entry p { line-height:1.75; font-size:14px; color:#333;}
.col_news_list .wp_entry p { margin-bottom:10px;}
.col_news_list .wp_entry table{ margin-bottom:4px; margin: 0 auto; min-width: 414px;}
.col_news_list .wp_entry img { max-width:940px; _width:expression(this.width > 940 ? "940px" : this.width); margin: 0 auto; } /**列表页文章图片大小限制**/
.wp_paging { font-size: 14px; margin-top: 30px;}
#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: 0;
  -webkit-transition: .3s all ease;
  -ms-transition: .3s all ease;
  transition: .3s all ease;
}
#wp_pager .pages li a.pgCurrent {
  font-weight: bold;
  background-color: #fff;
  color: #114498;
  border: 2px solid #114498;
}
#wp_pager .pages li a.pgNext {
  width: auto;
  padding: 0px 8px;
}
.col_news_list .news_list li.news {line-height: 50px;padding-left:0px;font-size: 18px;  position:relative} /**标题图标**/
.col_news_list .news_list li.news .news_title { width: calc(100% - 120px);white-space: nowrap;overflow: hidden;text-overflow: ellipsis;  transition: all .5s ease-in-out;font-weight: 500;}/*标题*/
.col_news_list .news_list li.news .news_title img {vertical-align: middle;}
.col_news_list .news_list li.news a{display: flex;justify-content: space-between; border-bottom: 1px dashed #eee;}
.col_news_list .news_list li.news .news_meta { width: 100px;padding-left: 20px;position:relative;line-height: 20px;  color: #777;font-family: "Arial";font-style: italic;font-size: 14px;display: flex;gap: 10px;justify-content: space-between;align-items: center;}/*属性*/
.col_news_list .news_list li.news:hover .news_title{ color: #1d3e87;}
.col_news_list .news_list li.news:hover:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ff9536;
}
.col_news_list .news_list li.news:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0px;
  height: 1px;
  background: #ff9536;
  transition: all 1.4s ease;
}
.col_news_list .news_list li.news .news_meta:before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 14px;
  height: 14px;
  background:url(images/time.png);
  background-size: cover;
}
.col_news_list .news_list li.news:hover .news_meta{
  color: #1d3e87;
}
.col_news_list .news_list li.news_news{
  /* padding-left: 20px; */
  position: relative;
}

/**文章页**/
.infobox {padding:20px 60px; margin:0 auto; width:auto;    min-height: 500px;}
.article {padding-top:10px;}
.article h1.arti_title {line-height: 36px;font-family: "Microsoft YaHei";font-size:22px;text-align:center;color: #0044A0;} /**文章标题**/
.article h2.arti_title {line-height: 34px;font-family: "Microsoft YaHei";font-size: 17px;text-align:center; color:#666;} /**文章副标题**/
.article .arti_metas {padding:10px;text-align:center;}
.article .arti_metas span { margin:0 5px; font-size:12px; color:#787878;}/**文章其他属性**/
.article .entry { margin:0 auto; overflow:hidden;margin-top:10px;} /**文章内容**/
.article .entry .read,.article .entry .read p { line-height:1.75; font-size:16px; color:#333;}  /**阅读字体**/
.article .entry .read p { margin-bottom:10px;}
.article .entry .read img {margin:0 auto; max-width:940px; _width:expression(this.width > 940 ? "940px" : this.width); }   /**文章阅读部分图片大小限制**/
.article .entry .read table { margin: 0 auto; border: none!important; min-width: 414px;}
.es_article_title { display: none; }
/**翻页**/

.es_pagingbar_container { margin: 40px auto 0; text-align: center; padding-bottom: 40px; }
.es_pagingbar_container .es_pagingbar { display: inline-block; overflow: hidden; }
.es_pagingbar_container .es_pagingbar li { float: left; padding: 6px 12px; margin: 0 6px; color: #999; background: #fff; border: 1px solid #eee; font-size: 14px; text-align: center; cursor: pointer; }
.es_pagingbar_container .es_pagingbar li.active { background: #d63e3e; color: #fff; border-color: #d63e3e; }
.es_pagingbar_container .es_pagingbar li.active a { color: #fff; }
.es_article_content img { margin-right: 20px; }


.newspic{ width:100%; height: 293px; }
.n1 .n22{ margin-top: 15px; }
.n3 .n22{ margin-top: 15px; }
.list_news li{
  margin-top: 20px;
  margin-bottom: 20px;
}


.sub-menu .sub-menu {
  left: 100%;
  top: 0px;
  z-index: 200;
}



/* 师资队伍 */
.people_list{
  padding: 0 5px;
  padding-bottom: 50px;
  gap: 30px 45px;
  padding-top: 25px;
  /* justify-content: space-around; */
}
.people_news a{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.peo_pic{
  width: 180px;
  height: 240px;
  object-fit: cover;
  z-index: 1;
}
.peo_text{
  margin-top: -22px;
  position: relative;
  z-index: 2;
  background: url(images/col-text-b.png);
  background-size: 100% 100%;
  width: 220px;
  padding: 32px 5px 10px 5px;

}
.peo_title{
  color: #000000;
  line-height: 30px;
  font-size:  20px;
  font-family: "Mircrosoft YaHei";
  letter-spacing: 0.5px;
  font-weight: 500;
  text-align: center;
}
.peo_cont{
  color: #000000;
  line-height: 30px;
  font-size:  16px;
  font-family: "Mircrosoft YaHei";
  text-align: center;
}
.peo_text_b{
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  background: #bdbdbd;
  top: 218px;
  left: 0;
  z-index: 0;
}
.people_news a:hover .peo_text{
  background: url(images/col-text-b-h.png);
}
.people_news a:hover .peo_text_b{
  background: #00235d;
}
.people_news a:hover .peo_cont,
.people_news a:hover .peo_title{
  color: #ffffff;
}


/* 教师队伍 */
/* 首字母筛选样式 */
.subDoctor_year{
  padding-bottom: 12px;
  border-bottom: 2px solid #114498;
  gap: 5px 13.5px;
}
.filter-item {
  display: inline-block;
  padding: 2px 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  color:#666666;
  line-height: 40px;
  font-size:  20px;
  font-family: "Arial";
  letter-spacing: 0.16em;
}

.filter-item:hover {
  background-color: #e6f0ff;
  color: #114498;
}

.filter-item.active {
  background-color: #114498;
  color: #fff;
  font-weight: bold;
}