@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,
button,
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;
}
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-line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.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-line8 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  line-clamp: 8;
}

/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1300px;
  margin: 0 auto;
} /**页面全局宽度**/
.mod {
  padding: 0px;
}
/*head开始*/
#header {
  width: 100%;
  height: 180px;
  padding-top: 30px;
}
.head-top {
  padding-bottom: 30px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.45); */
}
.m0 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}
/**搜索**/
.wp_search {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  background: #fff;
  width: 209px;
  height: 36px;
  opacity: 0.3;
  filter: Alpha(opacity=30);
}
.wp_search #keyword {
  width: 177px !important;
  padding: 4px 0;
  border: none;
  height: 28px;
  line-height: 28px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-family: "Microsoft YaHei";
}
.wp_search .search {
  width: 32px;
  height: 32px;
  border: 0px;
  background: url(images/sous.png) no-repeat center;
  cursor: pointer;
  vertical-align: top;
}
/***自定义搜索*/
.wp-search {
  position: relative;
  width: 235px;
  height: 33px;
  border-radius: 16px;
  border: 1px solid #ffffff;
  opacity: 0.8;
}
.wp-search form {
  display: block;
  padding-right: 34px;
}
.wp-search .search-input {
  margin-right: 0;
  height: 32px;
  position: relative;
}
.wp-search .search-input input.search-title {
  width: 100%;
  box-sizing: border-box;
  height: 33px;
  padding: 0px 20px;
  line-height: 32px;
  border: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  font-family: Microsoft YaHei;
  font-size: 14px;
  color: #ffffff;
}
.wp-search .search-btn {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  top: 0;
}

.wp-search .search-btn input.search-submit {
  width: 23px;
  height: 33px;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: url(images/nav_icon_search.png) no-repeat center;
  background-size: 20px 20px;
  cursor: pointer;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -moz-transition: background-color 5000s ease-in-out 0s;
  -ms-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
}

/*默认主导航样式*/
.head-nav {
}
#nav {
}
.nav .wp-menu {
  height: 68px;
  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: 68px;
  text-align: center;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 68px;
  line-height: 68px;
  padding: 0 24px;
  position: relative;
}
.nav .wp-menu .menu-item a.menu-link {
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.nav .wp-menu .menu-item.hover a.menu-link {
  color: #fff;
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0!important;
  top: 68px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  color: rgba(51, 51, 51, 1);
  background-color: rgba(255, 255, 255, 0.7);
}

.nav  .sub-menu  .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
  

}
.nav .sub-menu .sub-menu {
    left:100% !important;
  top: 0 !important;
}

.nav .sub-menu .sub-item a {
  display: block;
  color: #333;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  padding: 0 16px;
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  background: #3b7ae1;
  display: block;
}
.nav .wp-menu .menu-item.hover a.menu-link::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 20%;
  bottom: 10px;
  width: 60%;
  background: rgba(255, 255, 255, 1);
}
/* main1 */
#header {
  width: 100%;
  position: absolute;
  z-index: 99;
}
.head-top {
  width: 100%;
}
.main1 {
  position: relative;
  z-index: 1;
}
/* banner */
.swiper-button-next:after {
  display: none;
}
.swiper-button-prev:after {
  display: none;
}
.mySwiper1 .swiper-slide img {
  width: 100%;
  position: relative;
}
.mySwiper1 .swiper-button-next {
  width: 35px !important;
  height: 15px !important;
  background: url(images/banner_Switch__btn_right_nor.png) no-repeat;
  right: 16% !important;
  transition: 0.5s;
  top: 90% !important;

  z-index: 999;
}
.mySwiper1 .swiper-button-prev {
  width: 35px !important;
  height: 15px !important;
  background: url(images/banner_Switch__btn_left_nor.png) no-repeat;
  left: 67% !important;
  top: 91% !important;
  transition: 0.5s;
  z-index: 999;
}
.mySwiper1 .swiper-pagination {
  width: 70% !important;
  left: 40% !important;
  bottom: 10% !important;
}
.mySwiper1 .swiper-pagination-bullet {
  opacity: 1 !important;
  margin-right: 15px !important;
  position: relative;
  z-index: 999;
  width: 34px !important;
  height: 26px !important;
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  background: none !important;
  border-radius: 5px;
  padding-top: 5px;
}
.mySwiper1 .swiper-pagination-bullet-active {
  width: 34px !important;
  height: 26px !important;
  background: #ffffff !important;
  border-radius: 5px;
  position: relative;
  z-index: 999;
  font-weight: bold;
  font-size: 18px;
  color: #3277e7;
  padding-top: 5px;
}
.swimgbox {
  position: absolute;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0) 100%
  );

  height: 296px;
  width: 100%;
  font-weight: bold;
  font-size: 32px;
  color: #ffffff;
  padding-top: 207px;
}
/* main2 */
.main2 {
  padding-top: 52px;
 
  background: url(images/Bgimg1.png) no-repeat;
  background-size: cover;
  opacity: 1;
  z-index: 1;
}
/* Title */
.XINWENT {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: #333333;
}
.XINWENT2 {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: #ffff;
}
.XINMORE {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  line-height: 28px;
}
.XINMORE a {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* main1 */
/* 通用样式 */
.n1 {
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 24px;
  margin-bottom: 10px;
}
.n2 {
  font-size: 14px;
  color: #898989;
  line-height: 22px;
}
.ntime {
  font-size: 14px;
  color: #898989;
  line-height: 22px;
  opacity: 0.8;
}
.ntime2 {
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  line-height: 31px;
  width: 73px;
  height: 25px;
  background: #a9322c;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}

/* main4 */

.mySwiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  position: relative;
object-fit: cover;
}
.s2box {
  width: 100%;
  height: 60px;
  background: rgba(7, 18, 26, 0.5);
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  line-height: 29px;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stime {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.stime .day {
  margin-bottom: 5px;
  font-size: 26px;
  color: #a9322c;
}
.stime .year {
  font-size: 14px;
  color: #a9322c;
}
.st {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s1 {
  width: 80%;
}

/* main2 */
.newspart {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 20px;
}
.mySwiper2 {
  width: 100%;
  height: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mySwiper2 .swiper-slide {
  width: 100% !important;
}
.news_list {
  width: 100%;
}
.news_list li {
  padding-bottom: 10px;
  width: 100%;
  border-bottom: 1px solid rgba(238, 238, 238, 1);
}
.news_list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new0 {
  width: 48%;
  height: 469px;
}
.new1 {
  width: 48%;
}

.mySwiper3 {
  overflow: hidden;
  height: 469px !important;
}
.mySwiper3 .swiper-slide {
}
.mySwiper2 .swiper-pagination {
  bottom: 87px !important;
}
.swiper-pagination-bullet {
  background: #fff !important;
}
.news_list li .s1 {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.news_list li:hover .s1 {
  color: #3277e7;
}

/* main3 */
.swiper-container {
  padding-left: 20px !important;
  padding-right: 13px !important;
  padding-top: 30px !important;
  padding-bottom: 70px !important;
  display: flex;
  justify-content: center;
}
.swiper-container .swiper-slide {
  /* width: 25%!important; */
  height: 223px !important;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  padding-top: 37px;
  padding-bottom: 37px;
  padding-left: 15px;
  padding-right: 15px;
}
.swiper-container .swiper-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Tbox1 {
  display: flex;
  margin-bottom: 20px;
}
.Ttime {
  width: 59px;
  height: 55px;
  background: linear-gradient(135deg, #5991e9 0%, #3073e3 100%);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  left: -29px;
  padding-left: 6px;
  padding-right: 6px;
}
.Ttime .day {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}
.Ttime .year {
  font-weight: bold;
  font-size: 13px;
  color: #ffffff;
}
.Ttitle {
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 26px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.Tmore {
  font-size: 16px;
  color: #898989;
  line-height: 28px;
}
.centercontain {
  background: url(images/Bgimg2.png) no-repeat;
  background-size: cover;
  opacity: 1;
  z-index: 1;
}
.main3 {
  margin-bottom: 60px;
  padding-top: 30px;
}
.swiper-container .swiper-pagination-bullet-active {
  width: 20px !important;
  height: 20px !important;
  background: url(images/Academic_Switch_btn_pre.png) no-repeat !important;
  background-size: center;
}
.swiper-container .swiper-pagination-bullet {
  width: 17px !important;
  height: 17px !important;
  background: #ffffff !important;
  border-radius: 50% !important;
  opacity: 0.5 !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
  padding-top: 5px !important;
}
.swiper-container .swiper-pagination-bullet-active {
  width: 20px !important;
  height: 20px !important;
  background: url(images/Academic_Switch_btn_pre.png) no-repeat !important;
  background-size: center;
}
.m4box {
  width: 100%;
  /* height: 695px; */
  background: rgba(255, 255, 255);
  box-shadow: 0px 0px 25px 1px rgba(129, 155, 194, 0.25);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
/* 切换卡 */
/* 设置选项卡样式 */
.tab {
  float: left;

  width: 100%;
  height: 120px;
  display: flex;
}

/* 为用于打开选项卡内容的按钮设置样式 */
.tab button {
  display: block;
  color: black;
  padding: 43px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  background: #fff;
}
.tab button .XINWENT {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 26px;
  color: rgba(51, 51, 51, 0.5);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  text-align: right;
  padding-right: 30px;
}
.tab button .XINWENT2 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 26px;
  color: rgba(51, 51, 51, 0.5);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  text-align: left;
  padding-left: 30px;
}
/* 更改悬停按钮的背景颜色 */
.tab button:hover {
}
.tab button:hover .XINWENT {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 32px;
  color: #333333;
}

.tab button:hover .XINWENT2 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 32px;
  color: #333333;
}
/* 创建一个活动的/当前的 "tab button" 类 */
.tab button.active {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 32px;
  color: #333333;
}
.tab button.active .XINWENT {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 32px;
  color: #333333;
}
.tab button.active .XINWENT2 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 32px;
  color: #333333;
}

/* 设置选项卡内容的样式 */
.tabcontent {
  float: left;
  padding: 0px 12px;
  width: 100%;
  border-left: none;
  display: none;
  background: #fff;
  padding-bottom: 30px;
}
.sw4 {
  position: relative;
}

.sw4 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sw4 .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 23px !important;
}
.sw4 .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  border: 1px solid #c1c1c1 !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
  margin-right: 119px !important;
  z-index: 3 !important;
  position: relative;
  background: url(images/Academic_Switch_btn_nor.png) center no-repeat !important;
}
.sw4 .swiper-pagination-bullet-active {
  width: 20px !important;
  height: 20px !important;
  background: url(images/Academic_Switch_btn_pre.png) center no-repeat !important;
  z-index: 3 !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
.sw4 .swiper-button-prev {
  width: 49px;
  height: 49px;
  background: url(images/Academic_Switch__btn_left_nor.png) center no-repeat;
  left: 0px !important;
  bottom: 0 !important;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.sw4 .swiper-button-prev:hover {
  background: url(images/Academic_Switch__btn_left_pre.png) center no-repeat;
}
.sw4 .swiper-button-next {
  transition: 0.5s;
  width: 49px;
  height: 49px;
  background: url(images/Academic_Switch__btn_right_nor.png) center no-repeat;
  right: 0px !important;
  bottom: 0 !important;
}
.sw4 .swiper-button-next:hover {
  background: url(images/Academic_Switch__btn_right_pre.png) center no-repeat;
}

.keyan {
  padding: 15px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  border: 1px solid #c5c5c5;
}
.keyan2 {
  padding: 15px;
  padding-top: 25px;
  padding-bottom: 30px;
}
.keyan .ktitle {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  line-height: 30px;
  margin-bottom: 12px;
  transition: 0.5s;
}

.keyan2 .ktitle {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  line-height: 30px;
  margin-bottom: 25px;
  transition: 0.5s;
}

.keyan .kmore {
  font-weight: bold;
  font-size: 14px;
  color: #878787;
  line-height: 26px;
  transition: 0.5s;
}
.img2 {
  height: 163px;
  width: 100%;
  margin-bottom: 16px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
}
.img2 img {
  width: 100%;
  height: 100%;
}
.sw4 {
  padding-bottom: 80px !important;
  padding-top: 20px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.sw4 .swiper-button-next {
  top: 90% !important;
}
.sw4 .swiper-button-prev {
  top: 90% !important;
}
.sw4 .swiper-slide:hover .img2 {
  box-shadow: 0px 0px 21px 4px rgba(67, 128, 226, 0.35);
}
.sw4 .swiper-slide:hover .keyan {
  border: 1px solid rgba(67, 128, 226, 0.65);
}
.sw4 .swiper-slide:hover .ktitle {
  color: #0044a0;
}
/* main5 */
.main5 {
  background: url(images/bg_img_3.png) no-repeat;
  padding-top: 95px;
  padding-bottom: 75px;
  background-size: cover;
}
.m5 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 52px;
  margin-top: 48px;
}
.m5-1 {
  width: 49%;
  height: 100%;
}
.m5-1 li {
  position: relative;
  height: 100%;
}
.m5-1 li img {
  width: 100%;
  height: 357px;
}
.m5-2 {
  width: 49%;
  display: flex;
  justify-content: space-between;
}
.m5-2 li {
  width: 49%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;

  border: 1px solid #dcdedd;
}
.m5-2 li img {
  width: 100%;
}
.date {
  width: 20px !important;
  height: 17px;
}
.m5info {
  background: #ffffff;
  /* box-shadow: 0px 0px 21px 4px rgba(67, 128, 226, 0.35); */
  padding: 12px;
}
.m5-2 li:hover {
  box-shadow: 0px 0px 21px 4px rgba(67, 128, 226, 0.35);
}
.m5-2 li .Ttitle {
  transition: 0.5s;
}
.m5-2 li:hover .Ttitle {
  color: #3b7ae1;
}
.m6 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
.Ttitle2 {
  height: 50px;
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  line-height: 27px;
  position: absolute;
  bottom: 0;
  z-index: 999;
  width: 100%;
  padding-left: 21px;
  padding-right: 27px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding-top: 10px;
}

/**页脚开始**/
#footer {
  background: #2c67c8;
  padding-top: 55px;
  padding-bottom: 55px;
}
.f1 {
  display: flex;
  justify-content: space-between;
}
.f2 li a {
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
}
/**链接样式**/
.mlink {
  width: 100%;
}
.botlinks .links-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 30px;
  background: transparent;
  border-radius: 4px;
}
.botlinks .links-wrap a.links-arrow {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 38px 0 12px;
  color: #fff;
  font-size: 16px;
  background: url(images/arrow.png) no-repeat right bottom;
}
.botlinks .links-wrap a.links-arrow:hover,
.botlinks .wrap-open a.links-arrow {
  color: #fff;
  background-position: right top;
  cursor: pointer;
}
.botlinks .links-wrap .link-items {
  display: none;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 40px;
  height: auto;
  max-height: 300px;
  overflow: auto;
  overflow-x: hidden;
  background: #f3eaea;
  border-radius: 4px;
}
.botlinks .links-wrap .link-items a {
  display: block;
  line-height: 24px;
  padding: 5px 0;
  color: #444;
}
.botlinks .links-wrap .link-items a span {
  display: block;
  padding: 0 16px;
  white-space: nowrap;
}
.botlinks .links-wrap .link-items a:hover {
  color: #9f0d0e;
  cursor: pointer;
}

/* hover */
.TZlist:hover .Ttitle {
  color: #3b7ae1;
}

/* school */
.head-right {
  display: flex;
}
.school {
  width: 158px;
  height: 33px;
  border-radius: 16px;
  border: 1px solid #ffffff;
  opacity: 0.8;
  margin-right: 33px;
  display: flex;
  align-items: center;
}
.school .s11 {
  width: 104px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
  padding-left: 15px;
}
.s22 {
  padding-left: 15px;
}

/**新闻列表**/

/***********************************************************
 * 列表页
 */

/**主体列表页开始**/
#l-container .inner {
  padding: 25px 0px;
}
/**主体文章页开始**/

.col_menu {
  width: 240px;
  float: left;
  margin-right: -240px;
  position: relative;
}
.col_menu .l-qh {
  margin-bottom: 10px;
}
.col_menu .col_menu_head {
  background: rgba(44, 103, 200, 1);
  height: 68px;
} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 50px;
  padding: 0px 5px 0px 30px;
} /**栏目名称图标**/
.col_menu .col_menu_con {
  border: 1px solid #e4e4e4;
}
/*栏目列表*/
.col_list .wp_listcolumn {
  border-top: 0px solid #2867a0;
  border-bottom: 0px solid #fff;
}
.col_list .wp_listcolumn .wp_column a {
  color: #333;
  font-size: 15px;
  font-weight: normal;
  background: none;
  border-top: 0px solid #fff;
  border-bottom: 1px solid #f6eaea;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  padding: 5px 0px 5px 28px;
  line-height: 32px;
}
.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  color: #8e0107;
  background: #eee;
}
.col_list .wp_listcolumn .wp_column a.selected span.column-name {
  color: #8e0107;
}
.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: #8e0107;
}
/*二级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list a {
  color: #333;
  border-top: 1px solid #eee;
  margin-top: -1px;
}
.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: #8e0107;
}
/*三级子栏目**/
.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: #8e0107;
}
/**栏目新闻**/
.col_news {
  width: 100%;
  min-height: 500px;
  float: right;
}
.col_news .col_news_box {
  margin-left: 290px;
}
.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: 18px;
  font-family: "Microsoft yahei";
  font-weight: normal;
  color: rgba(44, 103, 200, 1);
  border-bottom: 3px solid #cbcbcb;
}
.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 46px;
  line-height: 46px;
  color: #666;
} /**当前位置**/
.col_metas .col_path a {
  color: #2f2f2f;
}
.col_news_con {
  padding: 5px 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: 680px;
  _width: expression(this.width > 680 ? "680px": this.width);
} /**列表页文章图片大小限制**/
/**文章页**/
.infobox {
  margin-top: 20px;
  padding: 20px 60px;
  width: auto;
  min-height: 500px;
  box-shadow: 0px 0px 25px 1px rgba(129, 155, 194, 0.25);
}
.article {
  padding-top: 10px;
}
.article h1.arti_title {
  line-height: 36px;
  font-family: "Microsoft YaHei";
  font-size: 22px;
  text-align: center;
  color: #333;
} /**文章标题**/
.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;
}
.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;
}

/***********************************************************
 * 列表页
 */

/**首页三列布局**/

/**列表页**/

/*栏目图片*/

.l-banner {
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  background: url(images/img_banner1.png);
  background-size: cover;
}

.l-banner img {
  vertical-align: top;
}

.l-banner img {
  width: 100%;
  height: 100%;
}

.list {
  background: #f5f5f5;
}

.list #nav {
  margin-bottom: 0;
}

/**主体列表页开始**/

#l-container {
  background: #f5f5f5;
  position: relative;
  z-index: 1;
}

#l-container .inner {
  padding: 30px 0px 60px;
}

/**主体文章页开始**/

#d-container {
  background: #f5f5f5;
}

#d-container .inner {
  padding: 30px 0px 60px;
}

.col_menu {
  width: 240px;
  float: left;
  margin-right: -240px;
  position: relative;
  z-index: 2;
}

.col_menu .l-qh {
  margin-bottom: 10px;
}

/**位置栏目背景**/

.col_menu .col_menu_head h3.col_name {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

/**位置栏目字体**/

.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 80px;
  padding: 0px 12px;
  text-align: center;
}

/**栏目名称图标**/

.col_menu .col_menu_con {
  border: 0px solid #e4e4e4;
  background: #fff;
  border-radius: 0 0 8px 8px;
  padding: 10px;
}

/*栏目列表*/

.col_list {
}

.col_list .wp_listcolumn {
  border-top: 0px solid #2867a0;
  border-bottom: 0px solid #fff;
}

.col_list .wp_listcolumn .wp_column a {
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  border-top: 0px solid #fff;
  border-bottom: 0px solid #fff;
  display: block;
  background: none;
}

.col_list .wp_listcolumn .wp_column a .column-name {
  display: block;
  padding: 10px;
  line-height: 28px;
  text-align: center;
  color: #333;
}

.col_list .wp_listcolumn .wp_column a.selected {
  color: #000;
  border-radius: 8px;
  background: #f1ac40;
}

.col_list .wp_listcolumn .wp_column a.selected span.column-name,
.col_list .wp_listcolumn .wp_column a:hover span.column-name {
  color: #000;
}

.col_list .wp_listcolumn .wp_column.parent > a .column-name {
  font-weight: normal;
  color: #fff;
  background: #f1ac40;
  border-radius: 8px;
}

/*二级子栏目**/

.col_list .wp_listcolumn .wp_column .sub_list {
  padding-bottom: 6px;
}

.col_list .wp_listcolumn .wp_column .sub_list a {
  color: #2ca6e0;
  border-bottom: 0px dashed #e0e0e0;
  margin-top: 6px;
  text-align: center;
  background: #e9e9e9;
  border-radius: 8px;
}

.col_list .wp_listcolumn .sub_list a.hover,
.col_list .wp_listcolumn .sub_list a.selected {
  color: #2ca6e0;
}

.col_list .wp_listcolumn .sub_list a.selected span.column-name {
  color: #036eb7;
}

.col_list .wp_listcolumn .sub_list a .column-name {
  display: inline-block;
  line-height: 28px;
  padding: 5px 10px;
  cursor: pointer;
}

.col_list .wp_listcolumn .wp_column .sub_list a:hover .column-name {
  color: #036eb7;
}

/*三级子栏目**/

.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;
  font-size: 13px;
}

.col_list .wp_listcolumn .sub_list .sub_list a :hover,
.col_list .wp_listcolumn .sub_list .sub_list a.selected {
  font-weight: bold;
  color: #93150c;
}

/**栏目新闻**/

.col_news {
  width: 100%;
  min-height: 500px;
  float: right;
}

.col_news .col_news_box {
  margin-left: 270px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 0 30px;
padding-bottom: 50px;
}

.col_news_head {
  border-bottom: 1px solid #dbdbdb;
}

.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 74px;
  line-height: 74px;
}

/**当前栏目**/

.col_metas .col_title h2 {
  display: inline-block;
  font-size: 24px;
  font-family: "Microsoft yahei";
  font-weight: bold;
  color: #333;
}

.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 74px;
  line-height: 74px;
  color: #666;
  padding-left: 28px;
  background: url(images/back.png) left center no-repeat;
}

/**当前位置**/

.col_metas .col_path a {
  color: #2f2f2f;
}

.col_news_con {
  padding: 0px;
  margin: 0 0px;
}

.col_news_list {
  margin-top: 0px;
}

.col_news_list .news_list2 li {
  padding: 30px 0;
  border-bottom: 1px solid #e0e0e0;
}

.col_news_list .news_list2 li .news_pic {
  width: 240px;
  height: 134px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.col_news_list .news_list2 li .news_pic .img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
}

.col_news_list .news_list2 li .news_pic:hover {
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}

.col_news_list .news_list2 li .news_pic:hover .img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.col_news_list .news_list2 li .news_info {
  width: calc(100% - 280px);
  height: 134px;
  position: relative;
}

.col_news_list .news_list2.list2c li .news_info {
  width: 100%;
}

.col_news_list .news_list2 li .news_title {
  margin-top: 5px;
  line-height: 28px;
  color: #333;
  font-size: 16px;
  font-weight: bold;
}

.col_news_list .news_list2 li .news_meta {
  height: 20px;
  line-height: 20px;
  font-size: 16px;
  color: #999;
}

.col_news_list .news_list2 li .news_wz {
  margin-top: 7px;
  line-height: 24px;
  max-height: 48px;
  font-size: 14px;
  color: #999;
}

.col_news_list .news_list2 li .news_more {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-top: 14px;
  background: url(images/more.png) left no-repeat;
  padding-left: 16px;
  height: 14px;
  font-size: 14px;
  color: #1267bb;
}

.col_news_list .news_list2 li .news_more1 {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-top: 14px;
  background: url(images/more.png) left no-repeat;
  padding-left: 16px;
  height: 14px;
  font-size: 14px;
}

.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: 800px;
  _width: expression(this.width > 800 ? "800px": this.width);
}

.col_news_list .news_list2 li {
  padding-right: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.col_news_list .news_list2 li:hover {
  border-radius: 25px;
  box-shadow: 2px 3px 9px 1px rgba(74, 74, 74, 0.15);
  padding-left: 30px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}
.newsimg {
  width: 40%;
}
.newsimg img {
  width: 100%;
}
.school a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Column_Name {
  display: none;
}
.newsbox1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mySwiper3 .swiper-slide {
  display: flex;
  align-items: center;
}

.sw4:before {
  width: 95%;
  content: "";
  height: 1px;
  border-bottom: 1px dashed #c1c1c1;
  display: block;
  position: absolute;
  bottom: 33px;
  z-index: 1 !important;
  padding-left: 20px;
}
.mySwiper4 {
  margin-top: 20px;
}

.mySwiper4 .swiper-slide:hover .img2 {
  box-shadow: 0px 0px 21px 4px rgba(67, 128, 226, 0.35);
}
.mySwiper4 .swiper-slide:hover .keyan {
  border: 1px solid rgba(67, 128, 226, 0.65);
}
.mySwiper4 .swiper-slide:hover .ktitle {
  color: #0044a0;
}

.m3-left {
  width: 48%;
}
.m3-right {
  width: 48%;
}

.m3box {
  margin-top: 48px;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 0px 25px 1px rgba(129, 155, 194, 0.25);
  padding-bottom: 28px;
}
.news_list3 {
  margin-top: 48px;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 0px 25px 1px rgba(129, 155, 194, 0.25);
}
.m3box li {
  padding-top: 33px;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.m3box li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.minfo {
  width: 85%;
  transition: 0.8s;
  border-bottom: 1px solid rgba(129, 155, 194, 0.25);
  padding-bottom: 10px;
}
.m3time {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #5991e9 0%, #3073e3 100%);
  padding-top: 11px;
  padding-bottom: 9px;
  padding-left: 6px;
  padding-right: 6px;
}
.m3time .day {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}
.m3time .year {
  font-weight: bold;
  font-size: 13px;
  color: #ffffff;
}
.m3box li:hover .minfo {
  border-bottom: 1px dashed rgba(59, 122, 225, 1);
}
.m3box li:hover .Ttitle {
  color: #3b7ae1;
}
.m3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news_list3 li .news_date {
  width: 15%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 20px;
  border-right: 1px solid rgba(230, 230, 230, 1);
  border-left: 4px solid rgba(59, 122, 225, 1);
}
.news_list3 li .news_date .day {
  font-weight: bold;
  font-size: 30px;
  color: #3b7ae1;
  margin-bottom: 10px;
}
.news_list3 li .news_date .year {
  font-size: 14px;
  color: #3b7ae1;
}

.news_list3 li a {
  display: flex;
  justify-content: space-between;
}
.news_list3 li a .info {
  width: 80%;
}
.news_list3 li a .info .bt {
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.news_list3 li {
  padding-top: 33px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.newsmore {
  font-size: 16px;
  color: #ababab;
  line-height: 30px;
}
.news_list3 li:hover .bt {
  color: rgba(59, 122, 225, 1) !important;
}
.title_03 {
  height: 54px;
  position: relative;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
}
.title_03bt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;

  line-height: 41px;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #333;
}

.title_03 .title_more {
  width: 95px;

  position: absolute;
  top: 0;
  right: 0;
  line-height: 54px;
  font-size: 14px;
  color: #0e4ba0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.T1 {
width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* main3 */
.main3 {
  background: url(images/mbanner.png) no-repeat;
  background-size: cover;
  padding-top: 30px;
}
.main3-1 {
  display: flex;
  justify-content: space-between;
}
.m3data {
  transition: 0.5s;
  font-weight: bold;
  position: relative;
  top: -13px;
  width: 100px;
  height: 25px;
  background: rgba(59, 122, 225, 1);
  border: 1px solid rgba(59, 122, 225, 1);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main3-2 li {
  transition: 0.5s;
  margin-bottom: 38px;
  width: 100%;
  height: 100px;
  background: #ffffff;
  box-shadow: 0px 0px 9px 0px rgba(20, 88, 166, 0.29);
  opacity: 0.9;
  justify-content: center;
  padding-left: 25px;
  padding-right: 25px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.main3-2 {
  margin-top: 45px;
}
.m3title {
  transition: 0.5s;
  font-size: 18px;
  color: #333333;
  line-height: 30px;
  font-weight: bold;
}
.m3more {
  transition: 0.5s;
  font-size: 16px;
  color: #333333;
  line-height: 28px;
}
.main3-2 li:hover {
  background: rgba(59, 122, 225, 1);
  box-shadow: 0px 0px 9px 0px rgba(20, 88, 166, 0.29);
}
.main3-2 li:hover .m3title {
  color: #ffffff;
}
.main3-2 li:hover .m3more {
  color: #ffffff;
}
.main3-2 li:hover .m3data {
  width: 100px;
  height: 25px;
  background: #ffffff;
  border: 1px solid #ffffff;
  font-weight: bold;
  color: #1458a6;
}
.main3-3 li a {
  width: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
}
.main3-3 li {
  transition: 0.5s;
  padding-left: 42px;
  padding-right: 22px;
  display: flex;
  align-items: center;
  margin-bottom: 38px;
  width: 100%;
  height: 100px;
  background: #ffffff;
  box-shadow: 0px 0px 9px 0px rgba(20, 88, 166, 0.29);
  opacity: 0.9;
}
.main3-3 {
  margin-top: 43px;
}
.main3-3 li a .m33title {
  transition: 0.5s;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 34px;
}
.main3-3 li a .m33more {
  transition: 0.5s;
  font-size: 16px;
  color: #333333;
  line-height: 28px;
}
.m33data {
  transition: 0.5s;
  width: 19%;
  border-left: 1px solid #d1def0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m33data .day {
  transition: 0.5s;
  font-weight: bold;
  font-size: 34px;
  color: #276bb3;
  line-height: 40px;
}
.m33data span {
  transition: 0.5s;
  font-size: 14px;
  color: #276bb3;
  line-height: 21px;
}
.m33All {
  width: 78%;
}
.main3-3 li:hover {
  background: rgba(59, 122, 225, 1);
  box-shadow: 0px 0px 9px 0px rgba(20, 88, 166, 0.29);
}
.main3-3 li:hover .m33title {
  color: #fff;
}
.main3-3 li:hover .m33more {
  color: #fff;
}
.main3-3 li:hover .day {
  color: #fff;
}
.main3-3 li:hover span {
  color: #fff;
}
.post {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 25px 1px rgba(129, 155, 194, 0.25);
  border-radius: 4px;
}
.post-11 .tt .title.selected {
  font-weight: bold;
  font-size: 32px;
  color: #333333;
}
/* tab切换卡 */
/* 设置选项卡样式 */
.tab {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 为用于打开选项卡内容的按钮设置样式 */
.tab .button {
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  font-weight: bold;
  font-size: 26px;
  color: rgba(51, 51, 51, 0.5);
  transition: 0.5s;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.tt {
  display: flex;
  align-items: center;
  justify-content: space-between;
position: relative;
}
/* 更改悬停按钮的背景颜色 */
.tab .button:hover {
  color: #a9322c;
}

/* 创建一个活动的/当前的 "tab button" 类 */
.tab .button.active {
  color: #a9322c;
  border-bottom: 4px solid #a9322c;
}

/* 设置选项卡内容的样式 */
.tabcontent {
  float: left;
  padding: 0px 12px;
  width: 100%;
  border-left: none;
  display: none;
  margin-top: 32px;
}

.news_notice {
  width: 100%;
  margin-top: 15px;
  padding-left: 20px;
  padding-right: 20px;
}
.news_notice li {
  border-bottom: 1px solid #e9e7e7;
  padding-top: 20px;
  padding-bottom: 17px;
}
.news_notice li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.news_notice li a {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
}

.news_notice li a .info {
  height: 105px;
  width: 68%;
  display: flex;
  flex-direction: column;
}
.news_notice li a .news_noticeimg {
  width: 187px;
  height: 105px;
  margin-right: 21px;
}
.news_notice li a .news_noticeimg img {
  width: 100%;
  height: 100%;
}
.news_notice li a .info .bt {
  font-weight: bold;
  font-size: 16px;
  line-height: 26px;
  color: #333;
}
.news_notice li a .info .jianjie {
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #999999;
  line-height: 23px;
}
.news_notice li a .news_date {
  height: 64px;
  width: 64px;
  padding-top: 8px;
  border: 1px solid #a9322c;
  border-radius: 4px;
  text-align: center;
  font-size: 12px;
  background: #fff;
  color: #333;
  margin-right: 17px;
}
.news_notice li a .news_date:before {
  position: absolute;
  content: "";
  left: 50%;
  margin-left: -8px;
  top: -6px;
  width: 16px;
  height: 12px;
  background: url(images/time.png) no-repeat;
}
.news_notice li a .news_date .day {
  font-weight: bold;
  font-size: 24px;
  font-family: Microsoft YaHei;
  color: #a9322c;
  line-height: 23px;
  font-size: 18px;
  border-bottom: 1px solid #a9322c;
}
.news_notice li a:hover .info .bt,
.news_notice li a:hover .news_date {
  color: #9f0d0e;
}
.news_notice li a .news_date .year {
  background: #a9322c;
  height: 100%;
  padding-top: 4px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  line-height: 23px;
}
.more_btn .more_text  a {
font-weight: bold;
  font-size: 14px;
color: #333333;
line-height: 28px;
display: flex;
    align-items: center;
    justify-content: space-around;


}
.more_btn {
  width: 8%;
position: absolute;
    right:  40px;
}
.Timg{
  margin-left: 7px;
  margin-right: 7px;
}
.con{
padding-bottom: 50px;
}

.News5 li{
border-bottom: 1px dashed rgba(137, 137, 137, 0.8);
margin-bottom: 20px;
    padding-bottom: 4px;
}

.News5 li:hover{
 transition:0.8s;
padding-left:15px;
}

.News5 li:hover .n1{
color: rgba(59, 122, 225, 1)
}