@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.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;
}

/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}

.inner {
  width: 1400px;
  margin: 0 auto;
}
.header1{
  width: 100%;
  height: auto;
  min-height: 120px;
  background: url(images/bj_top.jpg) center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  padding: 19px;
}
.head1{
  width: 403px;
  height: 84px;
}
.head1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.head2{
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
/* 搜索框样式 */
.wp-search {
  width: 320px;
  height: 46px;
  background: #fff;
  border-radius: 23px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}
.wp-search form {
  width: 100%;
  display: flex;
}
.wp-search .search-input {
  flex: 1;
  height: 45px;
  display: flex;
  align-items: center;
}
.wp-search .search-input input.search-title {
  width: 100%;
  height: 46px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #666;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 6px 0 0 6px;
}
.wp-search .search-input input.search-title::placeholder {
  color: #062564;
  font-size: 16px;
  font-family: "Microsoft YaHei";
  font-weight: 400;
}
.wp-search .search-btn {
  width: 100px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: url(images/search.png) no-repeat right; */
  position: absolute;
  right: 1px;
  top: 0;
}
.wp-search .search-btn input.search-submit {
  width: 50px;
  height: 40px;
  border: none;
  outline: none;
  background:url(images/btn_top_search.png) no-repeat center center;
  background-size: 25px 25px;
  cursor: pointer;
  position: absolute;
  right: 1px;
  top: 2px;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #062564;
}
.Eng{
  display: flex;
}
.Eng a{
  padding:12px 15px 8px 20px;
  position: relative;
  transition: all 0.5s ease;
}
.Eng a::before{
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.2);
  width: 1px;
  height: 44px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.Eng a:last-child:before{
  display: none;
}
.Eng a:hover{
  background: #08389a;
}
.Eng span{
  color: #f5f5f5;
  font-size: 18px;
  line-height: 40px;
  margin-left: 10px;
  font-weight: 600;
  font-family: "微软雅黑";
}
/* nav */
.header2{
  background: #062564;
  position: relative;
}
.head-nav {
  height: 70px;
  background: none;
  z-index: 99;
}
.header2:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: url(images/line_top.png) center no-repeat ;
  background-size: cover;
  top: 0;
  left: 0;
}
.nav .wp-menu {
  height: 70px;
  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: 70px;
  text-align: center;
  width: calc(100% / 10);
  transition: all 0.3s;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.nav .wp-menu .menu-item:first-child{
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 70px;
  line-height: 70px;
  padding: 0 10px;
  position: relative;
}
.nav .wp-menu .menu-item a.menu-link {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  -webkit-transition: all 0.5s;
}
.nav .wp-menu .menu-item:hover a.menu-link {
  font-size: 18px;
  color: #ffffff;
  transition: all 0.3s;
}
.nav .wp-menu .menu-item:hover {
  background: #08389a;
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 70px;
  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;
  transition: all 0.3s;
}
.nav .sub-menu .sub-item a {
  display: block;
  color: #333;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  padding: 0 16px;
  transition: all 0.3s;
}
.nav .sub-menu.sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #2a5fbe;
  display: block;
  font-weight: bold;
  background: #ced1d5;
}
/* .nav .wp-menu .menu-item:hover .sub-menu {
  display: block;
} */
.nav .sub-menu .sub-menu { left: 100%; top:0px; z-index: 1000; background:#fff; transform:none; -webkit-transform:none; -moz-transform:none; -ms-transform:none; -o-transform:none; box-shadow: none;border-radius: none; border-top:none; }


/* banner */
.mySwiper1 {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner {
  width: 100%;
  height: 520px;
  position: relative;
}
/* .banner::before{
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  height: 42px;
  background: url(images/banner_bottom.png) center no-repeat;
  background-size: cover;
  z-index: 10;
} */
.mySwiper1 .swiper-slide{
  width: 100%;
  height: 100%;
}
.mySwiper1 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mySwiper1 .swiper-pagination{ 
  position:absolute;
  bottom:-2px; 
  left:50%; 
  transform:translateX(-50%);
  height:42px; 
  text-align:center;
  display:flex;
  width: 820px;
  background: url(images/banner_bottom.png) center no-repeat;
  background-size: 100% 100%;
  align-items: flex-end;
  margin:0 auto; 
  justify-content: center;
  gap: 17px;
  box-sizing:border-box;
  z-index: 20;
}
.mySwiper1  .swiper-pagination .swiper-pagination-bullet{
  margin-bottom: 3px;
  position:relative;
  width:18px;
  height:18px;
  background:none;
  border-radius:50%;
  opacity: 1;
  border:2px solid #062564;
  box-sizing:border-box;
}
.mySwiper1  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  height:18px;
  width:80px;
  border-radius: 9px;
  background:#062564;
}

.mySwiper1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .current{ 
  display:block;
}
.mySwiper1 .swiper-pagination .swiper-pagination-bullet:first-child:before{ 
  display:none;
}
/* main1 */
.main1{
  height: auto;
  min-height: 918px;
  background: url("images/bj_01.jpg") center no-repeat;
  background-size: cover;
  padding-top: 35px;
  padding-bottom: 290px;
}
.JXDT{
  display: flex;
  gap: 55px;
  margin-top: 75px;
}
.m1{
  width: 53.21%;
  margin-top: 25px;
}
.title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-bottom: 25px;
  border-bottom: 1px solid #c5c5c5;
}
.title::before{
  content: "teaching";
  text-transform: uppercase;
  top: -30px;
  left: 0px;
  position: absolute;
  font-size: 60px;
  background: linear-gradient(to bottom, #ccdcf7 0%, rgba(204, 222, 247, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 62px;
  font-family: "Arial";
  font-weight: 600;
}
.tit1{
  font-size: 22px;
  line-height: 36px;
  color: #333333;
  font-weight: 600;
  font-family: "微软雅黑";
  letter-spacing: 2px;
  position: relative;
  padding-left: 20px;
}
.tit1::before{ 
  content: "/";
  position: absolute;
  font-size: 22px;
  background: none;
  color: #333333;
  left: 0;
  top: -1px;
}
.tit1::after{ 
  content: "/";
  position: absolute;
  font-size: 22px;
  background: none;
  color: #333333;
  right: -20px;
  top: -1px;
}
.More{
  font-size: 16px;
  color: #062564;
  line-height: 34px;
  display: flex;
  align-items: center;
}
.More span{ 
  background: url("images/btn_more.png") center no-repeat;
  background-size: cover;
  display: inline-block;
  width: 11px;
  height: 20px;
  margin-left: 8px;
}
.JXbox1{
  margin-top: 30px;
  display: flex;
  gap: 40px;
}
.JXbox1 li{
  width: calc(50% - 20px);
}
.jximg{
  width: 100%;
  height: 198px;
  overflow: hidden;
}
.jximg img{
  transition: all .8s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jxtxt{
  position: relative;
}
.time{
  position: absolute;
  background: #062564;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 36px;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  font-size: 15x;
  line-height: 36px;
  color: #ffffff;
  font-family: "Arial";
  border-radius: 4px;
}
.time span{
  font-size: 20px;
  line-height: 36px;
  color: #ffffff;
  font-family: "Arial";
}
.s1{
  padding: 40px 17px 0px 17px;
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  font-weight: 500;
  transition: all 0.5s ease;
}
.s2{
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  font-weight: 400;
  margin-top: 5px;
}
.More1{
  width: 60px;
  height: 60px;
  background: url("images/btn_teaching_arrow.png") center no-repeat;
  background-size: cover;
  margin: 0 auto;
  margin-top: 20px;
  transition: all 0.5s ease;
}
.JXbox1 li:hover .s1{
  color: #062564;
}
.JXbox1 li:hover .More1{
  background: url("images/btn_teaching_arrow_h.png") center no-repeat;
  background-size: cover;
}
.JXbox1 li:hover .jximg img{
  transform: scale(1.1);
}


.m2{
  width: 42.86%;
  position: relative;
  display: block;
}
.jximg1{
  width: 100%;
  height: 378px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.jximg1 img{
  transition: all .8s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m2:before{
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: 100%;
  height: 378px;
  background: #062564;
}
.time1{
  position: absolute;
  height: 46px;
  left: -10px;
  top: 352px;
  transform: translateX(0);
  z-index: 3;
}
.s1-1{
  padding-top: 35px;
  font-weight: 600;
  font-size: 18px;
  line-height: 34px;
  color: #000000;
  transition: all 0.5s ease;
}
.m2:hover .s1-1{
  color: #062564;
}
.m2:hover .More1{
  background: url("images/btn_teaching_arrow_h.png") center no-repeat;
  background-size: cover;
}
.m2:hover .jximg1 img{
  transform: scale(1.1);
}



/* main2 */
.main2{
  margin-top: -215px;
  height: auto;
  /* min-height: 681px; */
  padding-top: 150px;
  /* padding-bottom: 60px; */
}
.TZGG{
  position: relative;
}
.TZGG::before{
  content: "";
  position: absolute;
  background: url("images/bg_02.png") center no-repeat;
  background-size: cover;
  width: 629px;
  height: 221px;
  top: -158px;
  right: 0px;
}
.m2box{
  background: url("images/bg_02.jpg") center no-repeat;
  background-size: cover;
  padding-bottom: 52px;
}
.title1{
  width: 53%;
  border-bottom: none;
}
.title1::before{
  content: "notice";
  text-transform: uppercase;
}
.TZbox{
  padding-top: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 35px 40px;
}
.TZbox li{
  width: calc(50% - 20px);
  
  
}
.TZbox li a{
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 20px 15px 20px;
}
.time2{
  font-size: 15x;
  line-height: 26px;
  color: #062564;
  font-family: "Arial";
  letter-spacing: 0.5px;
}
.time2 span{
  font-size: 20px;
  line-height: 26px;
  color: #062564;
  font-family: "Arial";
}
.s3{
  margin-top: 5px;
  color: #000000;
  font-size: 18px;
  font-family: "微软雅黑";
  line-height: 30px;
  font-weight: 400;
  transition: all 0.3s ;
}
.More2{
  width: 50px;
  height: 50px;
  background: url("images/btn_notice_arrow.png") center no-repeat;
  background-size: cover;
  transition: all 0.3s ;
}
.TZbox li:hover .s3{
  color: #062564;
}
.TZbox li:hover .More2{
  background: url("images/btn_notice_arrow_h.png") center no-repeat;
  background-size: cover;
}

/* main3 */
.main3{
  height: auto;
  /* min-height: 1314px; */
  background: url("images/bj_03.jpg") center no-repeat;
  background-size: cover;
  padding-top: 115px;
  padding-bottom: 60px;
}
.m3{
  display: flex;
  gap: 50px;
}
.title2::before{
  content: "Regulation";
  text-transform: uppercase;
}
.title3::before{
  content: "download";
  text-transform: uppercase;
}
.GZZD{
  width: 67.86%; 
}
.XZZX{
  /* width: 28.57%; */
  width: 400px;
}
.GZbox{
  width: 100%;
  background: #ffffff;
  padding-bottom: 10px;
}
.GZbox li a{
  display: flex;
  padding: 20px 30px 10px 20px;
  gap: 27px;
  position: relative;
}
.GZbox li a::before{
  content: "";
  width: 0px;
  height: 0px;
  background: url("images/arrow.png") center no-repeat;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.GZbox li:hover a::before{
  content: "";
  width: 28px;
  height: 20px;
  background: url("images/arrow.png") center no-repeat;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  transition: all 0.3s ease;
}
.time3{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  background: #062564;
  width: 90px;
  height: 70px;
  padding-top: 5px;
  position: relative;
}
.time3 .day{
  font-size: 28px;
  line-height: 30px;
  color: #f5f5f5;
  font-family: "Arial";
  letter-spacing: 0.5px;
}
.time3 .month{
  font-size: 16px;
  line-height: 18px;
  color: #f5f5f5;
  font-family: "Arial";
}
.s4{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  margin-right: 30px;
  transition: all 0.5s ease;
}
.GZbox li:hover .s4{
  color: #062564;
}

.XZbox{
  position: relative;
  background: #fff;
  padding-bottom: 30px;
}
.XZbox::before{
  content: "";
  position: absolute;
  background: url("images/bj_download.png") center no-repeat;
  width: 165px;
  height: 110px;
  background-size: cover;
  bottom: 0px;
  right: 0px;
}
.XZbox li{
  padding: 30px 10px  15px 30px;
}
.XZbox li a{
  padding-left:65px;
  position: relative;
  transition: all 0.5s ease;
  color: #000000;
  font-size: 18px;
  line-height: 35px;
}
.XZbox li a::before{ 
  position: absolute;
  content: "";
  width: 46px;
  height: 33px;
  background: url("images/btn_download.png") center no-repeat;
  background-size: cover;
  left: 0px;
  top: 0px;
}
.more{
  position: relative;
  margin-left:30px;
  border: 1px solid #062564;
  width: 180px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 13px;
  z-index: 2;
}
.XZbox li:hover a{
  transform: translateY(-5px);
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
}



/* m4 */
.m4{
  /* margin-top: 105px; */
  margin-bottom: 20px;
}
.title4::before{
  content: "Quick navigation";
  text-transform: uppercase;
  left: 50%;
  transform: translateX(-50%);

}
.title4{
  justify-content: center;
  border-bottom: none;
}
.KJDH{
  display: flex;
  gap:25px  25px;
  flex-wrap: wrap;

}
.KJDH li{
  width: calc(25% - 18.75px);
  height: auto;
  background: url("images/btn_bj_quick.png") center no-repeat;
  background-size: cover;
  transition: all .3s ease;
}
.KJDH li a{
  display: flex;
  gap: 20px;
  padding: 11px 30px 11px 30px;
  align-items: center;
}
.KJDH li a > img{
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.s5{
  color: #000000;
  font-size: 18px;
  line-height: 30px;
  font-family: "微软雅黑";
  transition: all .3s ease;
  text-align: left;
}
.KJDH li:hover{
  background: url("images/btn_bj_quick_h.png") center no-repeat;
  background-size: cover;
}
.KJDH li:hover .s5{
  color: #ffffff;
}



/* footer */
.footer{
  background: url("images/bj_bottom.jpg") top center no-repeat;
  background-size: cover;
  height: auto;
  min-height: 180px;
}
.m5{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  min-height: 180px;
}
.s6{
  color: #f5f5f5;
  font-size: 16px;
  line-height: 34px;
  font-family: "微软雅黑";
}
.iconboxs{
  display: flex;
  gap: 15px;
}
.iconboxs li{
  width: 56px;
  height: 56px;
  position: relative;
}
.iconpic{
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icontext{
  position: absolute;
  width: auto;
  min-width: 100px;
  min-height: 40px;
  height: auto;
  right: 50%;
  transform: translateX(+50%);
  bottom: calc(100% + 10px);
  z-index: 99;
  color: #062564;
  font-size: 16px;
  line-height: 32px;
  display: none;
  transition: all 0.3s;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 10px;
  text-align: center;
}
.icontext img{
  max-width: 120px;
  height: auto;
  object-fit: cover;
}
.iconboxs li:hover .icontext{
  display: block;
}
.iconboxs li:last-child:hover .icontext{
  display: block;
  right: 50%;
  transform: translateX(0);
}


/* fix_link */
.fix_link_container{
  position: fixed;
  right: 0px;
  top: 45%;
  z-index: 1111;
  
}
.fix_link{
  border:1px solid #062564;
  border-radius: 4px;
  width: 48px;
  height:138px;
  background: #ffffff;
  display: flex;
  transition: transform 0.3s ease-in-out;
  transform: translateX(0);
}
.lk1{
  color: #062564;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  height: 100%;
  padding: 0 6px;
  text-align: center;
  font-size: 15px;
  line-height: 18px;
}
.lk2{
  width: 16px;
  height: 100%;
  background:#062564;
  display: flex;
  align-items: center;
  justify-content: center;
}



















/***********************************************************
 * 列表页
 */

 
 /*栏目图片*/
 .l-banner {height: 450px; background:url(images/banner01.jpg);background-position: center bottom;background-repeat: no-repeat; background-size: cover;text-align: center;overflow: hidden;position: relative;}
 .l-banner img {display: none;vertical-align: top;height: 100%;}
 
 /**主体列表页开始**/

#l-container { background:#fff; }
#l-container .inner {padding: 20px 0px;}
#d-container {  background: #ffffff; box-sizing: border-box; }
#d-container .inner { padding: 30px 40px 40px;box-sizing: border-box; }
/*主栏目名称*/
.col_menu { width: 250px; float: left; margin-right: -250px; position: relative; 
  /* margin-top:-85px;  */
  box-sizing: border-box; box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);}
.col_menu::before{
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 87px;
  background: url("images/pic.png") center no-repeat;
  background-size: cover;
  z-index: 20;
}
.col_menu .l-qh { margin-bottom: 10px; }
.col_menu .col_menu_head { background: #062564; } /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name { height:80px; font-size: 24px; font-weight:bold; color: #fff; } /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text { display: block; line-height: 45px; padding: 0px 15px; padding-left:27px; width:100%; text-align:left;} /**栏目名称图标**/
.col_menu .col_menu_con { 
  /* border-left: 12px solid #062564;  */
  background:#f8f8f8 }

/*栏目列表*/
.col_list { min-height:30px; }
.col_list .wp_listcolumn { border-top: 0px solid #2867a0; border-bottom: 0px solid #fff; }
.col_list .wp_listcolumn .wp_column a { 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; }
.col_list .wp_listcolumn .wp_column a:hover, .col_list .wp_listcolumn .wp_column a.selected { color: #062564; background: #eee; }
.col_list .wp_listcolumn .wp_column a.selected span.column-name { color: #062564; }
.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: #062564; }
/*二级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list a { color: #333; border-top: 1px solid #eee; margin-top: -1px; padding-left:60px;text-align:left;}
.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: #062564; }
/*三级子栏目**/
.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: #062564; }

.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: 16px; font-weight: 600; text-align: center; position: relative; }
.col_list .wp_listcolumn .wp_column a .column-name { display:block; padding: 12px 15px;padding-left: 40px;  line-height: 30px; text-align:left;}
.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: 16px; color: #333; }
.col_list .wp_listcolumn .sub_list a .column-name { display: inline-block; line-height: 30px; padding: 10px 0; cursor: pointer; }
.col_list .wp_listcolumn .sub_list a:hover { background: #f6f6f6; }
.col_list .wp_listcolumn .sub_list a.selected { background: #f6f6f6; font-weight: 600; }
.col_list .wp_listcolumn .sub_list a:hover span.column-name, .col_list .wp_listcolumn .sub_list a.selected span.column-name { color: #000; }
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a { background: none; }
.col_list .wp_listcolumn .sub_list .sub_list a .column-name { padding: 5px 10px 5px 35px; cursor: pointer; font-size: 14px; position: relative; }
.col_list .wp_listcolumn .sub_list .sub_list a .column-name:before { position: absolute; content: ""; left: 15px; 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_news { width: 100%; min-height: 400px; float: right; } /**栏目新闻**/
.col_news .col_news_box { margin-left: 280px;min-height: 350px; box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);padding:15px;}
.colum-box {}

.col_news_head { border-bottom: 1px solid #dbdbdb; }
.col_metas .col_title { display: inline-block; float: left; height: 48px; line-height: 48px; } /**当前栏目**/
.col_metas .col_title h2 { display: inline-block; font-size: 20px; font-weight: normal; color: #062564; }
.col_metas .col_path { display: inline-block; float: right; white-space: nowrap; height: 46px; line-height: 46px; color: #666; font-size:12px; } /**当前位置**/
.col_metas .col_path a { color: #2f2f2f; }
.col_news_con { padding: 15px 0px 10px 0px; 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;}
.col_news_list .wp_entry img { max-width:767px; _width:expression(this.width > 767 ? "767px" : this.width); } /**列表页文章图片大小限制**/
.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: #062564;
  border: 2px solid #062564;
}
#wp_pager .pages li a.pgNext {
  width: auto;
  padding: 0px 8px;
}
/**文章页**/
.infobox {width:auto; margin:0 auto; }
.article {padding-top:10px;}
.article h1.arti_title {line-height: 48px;font-family: "Microsoft YaHei";font-size:22px;text-align:center;color: #062564;} /**文章标题**/
.article h2.arti_title {line-height: 40px;font-family: "Microsoft YaHei";font-size: 17px;text-align:center;color: #1B1B1B;} /**文章副标题**/
.article .arti_metas { padding:10px; text-align:center;border-top:1px solid #ececec;}
.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:14px; 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;}

.col_news_list .news_list li.news {line-height: 50px;padding-left:0px;font-size: 18px; border-bottom:1px solid #e5e5e5; position:relative} /**标题图标**/
.col_news_list .news_list li.news span.news_title { float:left;width:calc(100% - 120px);white-space: nowrap;overflow: hidden;text-overflow: ellipsis;  transition: all .5s ease-in-out;}/*标题*/
.col_news_list .news_list li.news span.news_title img {vertical-align: middle;}
.col_news_list .news_list li.news span.news_meta { position:absolute;right:0;top:0;line-height: 50px; text-align:right; width:100px;color: #777;font-size: 14px;}/*属性*/
.col_news_list .news_list li.news:hover span.news_title{ color: #062564; transform: translateX(15px) ; -webkit-transform: translateX(15px) ; -moz-transform: translateX(15px) ; -ms-transform: translateX(15px) ; -o-transform: translateX(15px) ; }


.list-teacher{display: flex;flex-wrap: wrap;}
.list-teacher li.news{width: 25%; border-bottom:none!important;}
.list-teacher li .title_teach{padding: 10px 0px;width: 100%;display:flex; flex-direction: column;}
.list-teacher li img{max-width: 150px;height: 200px;margin: 0 auto; object-fit: cover; }
.list-teacher li.news:hover .title_teach{ color: #2a5fbe; transform: translateX(15px) ; -webkit-transform: translateX(15px) ; -moz-transform: translateX(15px) ; -ms-transform: translateX(15px) ; -o-transform: translateX(15px) ; }
.list-teacher li.news .title_teach { font-size: 18px; line-height: 30px; transition: all .5s ease-in-out; text-align: center; -webkit-transition: all .5s ease-in-out; -moz-transition: all .5s ease-in-out; -ms-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; }/*标题*/

.list-stu{display: flex;flex-wrap: wrap; margin: 0 auto;justify-content: space-around;}
.list-stu li.news{width: 30%; border-bottom:none!important;}
.list-stu li .title_stu{padding: 10px 0px;width: 100%;display:flex; flex-direction: column;}
.list-stu li img{max-width: 280px;height: 210px;margin: 0 auto; object-fit: cover;}
.list-stu li.news:hover .title_stu{ color: #2a5fbe; transform: translateX(15px) ; -webkit-transform: translateX(15px) ; -moz-transform: translateX(15px) ; -ms-transform: translateX(15px) ; -o-transform: translateX(15px) ; }
.list-stu li.news .title_stu { font-size: 18px; line-height: 30px; transition: all .5s ease-in-out; text-align: center; -webkit-transition:; -moz-transition:; -ms-transition:; -o-transition:; }/*标题*/

/* .activity-carousel-content.column-img,.activity-carousel-content.column-teacher{margin: 0;}
.activity-carousel-content.column-img .title,.activity-carousel-content.column-teacher .title{height: 35px;line-height: 35px;max-width: 250px;font-size: 16px;}
.activity-carousel-content.column-teacher .img{max-width: 150px;height: 200px;margin: 0 auto;}
.activity-carousel-content.column-teacher .img img{width: 100%; height: 100%; object-fit: cover;}
.activity-carousel-content.column-teacher .title{box-shadow: none;} */


.col_news_list .news_list li.news_news{
  padding-left: 20px;
  position: relative;
}
.news_news:before{
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 12px;
  background: url("images/li_before.png") center no-repeat;
  background-size: cover;
}