@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: relative;
  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;
}
.h1{
  display: flex;
  gap: 15px;
}
.hr{
  display: flex;
  align-items:  center;
  gap: 25px;
  position: relative;
}
.h2 a{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 34px;
  padding-right: 13px;
  margin-right: 10px;
  border-right: 1px solid #c3c3c3;
}
.h2 a:hover{

}
/**搜索**/
.wp_search {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  filter: Alpha(opacity=30);
  border-radius: 18px;
  width: 38px;
  height: 38px;
  z-index: 100; 
  position: relative;
}
.wp_search #keyword {
  width: 137px !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/search.png) no-repeat center;
  cursor: pointer;
  vertical-align: top;
}
/***自定义搜索*/
.wp-search {
  border: 0px;
  border-radius: 18px;

  height: 35px;
  position: relative;
}
.wp-search form {
  display: block;
  padding-right: 34px;
}
.wp-search .search-input {
  margin-right: 0;

  position: relative;
}
.wp-search .search-input input.search-title {
  width: 200px !important;
  box-sizing: border-box;
  padding: 0px 12px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 32px;
  border: 0;
  outline: 0;
  background: #ffffff;
  border-radius: 17px;
}
.wp-search .search-btn {
  width: 38px;
  height: 38px;
  position: absolute;
  right: 0px;
  top: 0;
  background: #a00101;
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
}

.wp-search .search-btn input.search-submit {
  width: 38px;
  height: 38px;
  border: 0;
  outline: 0;
  background: url(images/search.png) no-repeat center;
  background-size: 22px 22px;
  cursor: pointer;
  opacity: 1;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #333;
}
.wp-search {
  position: relative;
}
.wp-search .search-input {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease-in-out;
  height: 38px;
  z-index: 1;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.search-btn {
  position: relative;
  z-index: 1; 
}
.search-input input {
  width: 150px !important; 
  padding: 5px;
  font-size: 16px;
  border: 1px solid #ccc;
}
.search-btn input {
  width: 30px; 
  height: 30px;
  background: url("search-icon.png") no-repeat center center;
  border: none;
  cursor: pointer;
}
.wp-search:hover .search-input {
  width: 150px !important; 
}
.wp-search .search-input input.search-title {
  width: 200px;
  height: 100%;
  padding: 0 15px;
  padding-right: 45px; 
  border: none;
  outline: none;
  font-size: 14px;
  color: #333;
  background: transparent;
  white-space: nowrap;
}

/* nav */
.head-nav{
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  position: relative;
  background: #A00101;
}
.nav .wp-menu {
  width: 100%;
  height: 50px;
  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: 50px;
  text-align: center;
  transition: all 0s ease;
  width: 12.125%;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  position: relative;
  transition: all 0s ease;
}
.nav .wp-menu .menu-item a.menu-link {
  font-family: Microsoft YaHei;
  font-weight: 500;
  font-size: 21px;
  color: #fff;
  position: relative;
  text-align: center;
}
.nav .wp-menu .menu-item:before {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.2);
  width: 1px;
  height: 30px;
  left:0;
  bottom: 50%;
  transform: translateY(50%);
  transition: all 0.3s ease;
}
.nav .wp-menu li:nth-child(1).menu-item:before{
  display: none;
}
/* .nav .wp-menu .menu-item:hover a.menu-link {
  background: #f1cb96;
  position: relative;
} */
/* .nav .wp-menu .menu-item:hover > a.menu-link{ 
  color: #a00101;
} */

.nav .wp-menu .menu-item:hover {
  
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 1);
}
.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: #000;
  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: #fff;
  display: block;
  font-weight: bold;
  background: #a00101;
}
.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, 1);
  min-width: 80%;
}
/* .nav .wp-menu .menu-item .sub-menu:hover .sub-menu{
  display: block;
} */

/* banner */
.banner {
  width: 100%;
  height: auto;
  min-height: 100px;
}
.mySwiper1 {
  width: 100%;
  height: auto;
  position: relative;
}
.mySwiper1 .swiper-slide{
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.mySwiper1 .swiper-slide img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.banner-text{
  position: absolute;
  width: 920px;
  height: 80px;
  background: rgba(0, 0, 0, 0.66);
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 10px;
}
.banner-text:before{
  content: '';
  position: absolute;
  width: 65.217%;
  height: 4px;
  background: #A00101;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
}
.banner-text p{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 30px;
  text-align: center;
}
/* 分页器 */
.mySwiper1 .swiper-button-next,
.mySwiper1 .swiper-button-prev {
    position: absolute;
    bottom: 50px;
    width: 10px;
    height: 12px;
    top: auto;
    z-index: 10;
    cursor: pointer;
    background-size: 10px 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    outline: none;
}
.mySwiper1 .swiper-button-prev {
    left: 47.5%;
    background-image: url("images/before_h.png");
}
.mySwiper1 .swiper-button-next {
    right: 47.5%;
    background-image: url("images/next_h.png");
}
.mySwiper1 .swiper-button-next:after,
.mySwiper1 .swiper-button-prev:after {
    display: none;
}
.mySwiper1 .swiper-pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  z-index: 10;
} 
.mySwiper1 .swiper-pagination .swiper-pagination-bullet {
  width: auto;
  height: 15px;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mySwiper1 .swiper-pagination .swiper-pagination-bullet .current {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 30px;
  font-style: italic;
}
.mySwiper1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: none;
  display: flex !important;
}
.mySwiper1 .swiper-pagination .swiper-pagination-bullet::before {
  display: none;
}



.main1{
  position: relative;
}
.main1:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 150px; 
  background: linear-gradient(to bottom, rgba(246, 206, 153, 0.26) 0%, #ffffff 100%);
  top: 0px;
  left: 0px;
}
/* mm1 */
.mm1{
  background: #A00101;
  border-radius: 0px 0px 4px 4px;
  padding: 10px 18px;
  margin-top: -40px;
  position: relative;
  z-index: 1;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.mm1:before{
  content: "";
  position: absolute;
  width: 20px;
  height: 40px;
  background: url("images/mm1_before.png");
  top: 0px;
  right: 100%;
  background-size: cover;
}
.mm1:after{
  content: "";
  position: absolute;
  width: 20px;
  height: 40px;
  background: url("images/mm1_next.png");
  top: 0px;
  left: 100%;
  background-size: cover;
}
.ysbox{
  width: 70.357%;
  padding-top: 20px;
}
.ysbox a{
  gap: 15px;
}
.ysimg{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}
.ysimg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yscontent{
  width: calc(100% - 165px);
}
.ystitle{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 30px;
  position: relative;
}
.ystitle:before{
  position: absolute;
  content: '';
  width: 120px;
  height: 10px;
  background: #FFFFFF;
  opacity: 0.2;
  bottom: 0px;
  left: 0;
}
.ysmore{
  display: inline-block;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #F8D9AF;
  line-height: 26px;
  padding-right: 10px;
  position: relative;
}
.ysmore:before{
  position: absolute;
  content: '+';
  width: 10px;
  height: 10px;
  background: none;
  top: -8px;
  right: 0;
  color: #F8D9AF;
}
.s1{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 32px;
}
.yslist{
  width: 23.571%;
  gap: 10px;
  height: 100%;
  min-width: 280px;
}
.yslist li{
  width: 100%;
  height: calc(50% - 5px);
  background: linear-gradient(135deg, #fbead3 0%, #f6d7ad 100%);
  border-radius: 8px;
  transition: transform 0.2s;
}
.yslist li a{
  padding: 10px 25px 10px 12px;
  position: relative;
  gap: 8px;
}
.yslist li a:before{
  position: absolute;
  content: '';
  width: 10px;
  height: 12px;
  background: url('images/arrow.png');
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.yslist li a > img{
  width: 42px;
  height: 42px;
  object-fit: cover;
}
.yslist li p{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: 26px;
}
.yslist li:hover {
  box-shadow: 0 0 6px #f6cf99;
  transform: scale(1.03) translateY(-3px);
}

.m1{
  padding-top: 55px;
  padding-bottom: 65px;
}
.title{
  position: relative;
  text-align: center;
}
.tit1{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 34px;
  color: #A00101;
  line-height: 26px;
  margin: 0 auto;
  position: relative;
}
.tit1:before{
  content: '';
  height: 2px;
  background: #A00101;
  opacity: 0.08;
  width: 71.428%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 20px);
}
.tit1:after{
  content: '';
  height: 10px;
  background: #A00101;
  opacity: 0.08;
  width: 300px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
}
.more{
  position: absolute;
  right: 0;
  top: 0px;
  color: #A00101;
}
.more:before{
  color: #A00101;
}
@keyframes spin-plus {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

.more:before {
  display: inline-block;
}

.more:hover:before {
  animation: spin-plus 1s linear infinite;
  -webkit-animation: spin-plus 1s linear infinite;
}

.tit2{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #A00101;
  line-height: 26px;
  margin-top: 22px;
}
.banner1{
  width: 100%;
  padding-top: 27px;
  position: relative;
}
.mySwiper2 {
  padding-top: 72px;
  padding-bottom: 50px;
}
.mySwiper2 .swiper-slide {
  height: auto; 
  transition: all 0.4s ease;
  box-sizing: border-box;
}
.mySwiper2 .swiper-slide a{
  box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.1);
  width: calc(100% - 65px);
  border: 1px solid #DDDDDD;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  box-sizing: border-box;
}
.mySwiper2 .swiper-slide.swiper-slide-next a{
  margin-left: 65px;
}
.mySwiper2 .swiper-slide.swiper-slide-prev a{
  margin-right: 65px;
}
.mySwiper2 .swiper-slide .pic {
  width: 100%;
  height: 207px; 
  display: block;
  overflow: hidden;
}
.mySwiper2 .swiper-slide .pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.mySwiper2 .swiper-slide-active {
  margin-top: -72px;
}
.mySwiper2 .swiper-slide.swiper-slide-active a{
  width: calc(100% + 127px);
  margin-left: -63px;
  margin-right: -64px;
}
.mySwiper2 .swiper-slide.swiper-slide-active .pic {
  width: 100%;
  height: 315px; 
}
.mySwiper2 .slide-text {
  padding: 12px 20px 20px 15px;
  background: #FFFFFF;
  transition: all 0.5s ease;
}
.mySwiper2 .time {
  position: relative;
  padding-left: 35px;
  font-family: Arial;
  font-weight: 400;
  font-size: 24px;
  color: #A00101;
  line-height: 36px;
}
.mySwiper2 .time .year{
  font-size: 16px
}
.mySwiper2 .time:before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("images/time.png");
  background-size: cover;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
.mySwiper2 .swiper-slide:hover .time{
  color: #fff;
}
.mySwiper2 .swiper-slide:hover .time:before{
  background-image: url("images/time_h.png");
}
.mySwiper2 .s2 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: 34px;
  transition: all 0.5s ease;
}
.mySwiper2 .swiper-slide-active .s2{
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 22px;
  color: ##000000;
  line-height: 36px;
  transition: all 0.5s ease;
}
.mySwiper2 .swiper-slide:hover .slide-text{
  background: #A00101;
}
.mySwiper2 .swiper-slide:hover .s2{
  color: #fff;
}
.mySwiper2 .swiper-slide:hover .pic img{
  transform: scale(1.1);
}
.banner1 .swiper-button-next:after,
.banner1 .swiper-button-prev:after { 
  display: none;
}
.mySwiper2 .swiper-pagination{
  bottom: 10px;
}
.mySwiper2 .swiper-pagination-bullet {
  width: 100px;
  height: 4px;
  background: #BBBBBB;
  border-radius: 2px;
  opacity: 1;
}
.mySwiper2 .swiper-pagination-bullet-active {
  background: #A00101; 
}
.banner1 .swiper-button-next,
.banner1 .swiper-button-prev {
  width: 25px;
  height: 46px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.banner1 .swiper-button-next{
  background: url(images/next.png) no-repeat;
  background-size: 100% 100%;
  right: -115px;
  left: auto;
}
.banner1 .swiper-button-prev{
  background: url(images/before.png) no-repeat;
  background-size: 100% 100%;
  left: -115px;
  right: auto;
}


/* main2 */
.main2{
  background: url(images/bj_01.jpg);
  background-size: cover; 
  padding-top: 55px;
  padding-bottom: 80px;
}
.main2 .inner{
  display: flex;
  gap: 60px;
}

/* 学院新闻 */
.m2{
  width: 65.714%;
}
.tit1_1{
  display: flex;
  align-items: flex-start;
}
.tit1_1:before{
  left: 0px;
  transform: translateX(-0%);
  width: 100%;
}
.tit1_1:after{
  width: 220px;
  left: 0px;
  transform: translateX(-0%);
}
.tit2_1{
  display: flex;
  align-items: flex-start;
}
.xylist{
  display: flex;
  width: 100%;
  margin-top: 25px;
}
.xybox{
  display: flex;
  width: 53.913%;
  flex-direction: column;
}
.pic1{
  width: 100%;
  height: 297px;
}
.pic1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xytext{
  background: #A00101;
  padding: 17px 15px 35px 20px;
  min-height: 220px;
}
.time1{
  font-family: Arial;
  font-weight: 400;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 36px;
  padding-left: 45px;
  position: relative;
}
.time1 .year{
  font-size: 16px;
}
.time1:before {
  content: '';
  position: absolute;
  width: 36px;
  height: 32px;
  background-image: url("images/see.png");
  background-size: cover;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.s3{
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 22px;
  color: #FFFFFF;
  line-height: 36px;
  margin-top: 5px;
}
.s4{
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 28px;
  opacity: 0.7;
  margin-top: 5px
}
.xyitems{
  width: 46.087%;
  background: #FFFFFF;
  padding: 0px 15px 0 15px;
}
.xyitems li {
  padding: 18px 5px 16px 5px;
  border-bottom: 1px solid #d8d8d8;
  box-sizing: border-box;
  min-height: 128px;
}
.xyitems li:last-child{
  border-bottom: none;
}
.time2{
  font-family: Arial;
  font-weight: 400;
  font-size: 18px;
  color: #A00101;
  line-height: 36px;
  position: relative;
}
.time2 .year{
  font-weight:300;
}
.more1{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
}
.s5{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 30px;
}
.xyitems li:hover .more1{
  opacity: 1;
}
.xyitems li:hover .s5{
 color: #A00101;
}


.m3{
  width: 30%;
}
/* 标签切换 */
.post-tab .tt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5px;
  position: relative;
  width: 100%;
}
.post-tab .tab {
  display: flex;
  border: none;
  align-items: flex-start;
  gap: 7px;
}
.post-tab .tab .xline{
  display: block;
  color: #8d8d8d;
  font-size: 26px;
  line-height: 26px;
  font-family: Source Han Sans CN;
  font-weight: 400;
}
title1 .button {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  align-items: flex-start;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  
  transition: all 0.3s ;
}
.post-tab .tab .button .tit1_1{
  color: #8D8D8D;
  font-size: 30px;
}
.post-tab .tab .button:hover .tit1_1,
.post-tab .tab .button.active  .tit1_1{
  color: #A00101;
  font-size: 34px;
}
.title1 .tit1:before{
  display: none;
}
.title1 .tit1:after{
  display: none;
}
.tt:before{
  content: '';
  height: 2px;
  background: #A00101;
  opacity: 0.08;
  width: 100%;
  position: absolute;
  left: 0;
  top: 45px;
}
.tt:after{
  content: '';
  height: 10px;
  background: #A00101;
  opacity: 0.08;
  width: 330px;
  position: absolute;
  left: 0;
  top: 35px;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.more_btn{
  width: 100%;
  display: flex;
  margin-top: -10px;
}
.more_btn1{
  display: flex;
}
.more_text{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  font-family: Roboto;
  font-weight: 500;
  font-size: 16px;
  color: #1D5093;
}
.post-tab .tab .button.active .tit2_1{
  display: block;
}
.post-tab .tab .button .tit2_1{
  display: none;
  position: absolute;
}

.con{
  margin-top: 75px;
}
.tab-content ul{
  display: flex;
  flex-direction: column;
  width: 100%;
  background: rgba(255, 255, 255, 0.82);
}
.tab-content ul li a{
  display: flex;
  gap: 15px;
  padding: 17px 17px 25px 20px;
  align-items: center;
  min-height: 104px;
  transition: all 0.3s ease;
}
.s6{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 30px;
}
.time3 .day{
  font-family: Arial;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: 22px;
  font-style: italic;
}
.time3 .month{
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 22px;
}

.tab-content ul li a:hover{
  background: #FFFFFF;
  box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.1);
  border-left: 7px solid #A00101;
}
.tab-content ul li a:hover .time3 .day{
  font-size: 22px;
  color: #A00101;
  font-weight: bold;
}
.tab-content ul li a:hover .s6{
  color: #A00101;
}








/* 学术论坛 */
.main3{
  background: url(images/bj_02.jpg);
  background-size: cover; 
  padding-top: 55px;
  padding-bottom: 80px;
}
.main3 .inner{
  display: flex;
  gap: 60px;
}
.m4{
  width: calc(50% - 30px);
}
.tit1_2:before{
  left: 0px;
  transform: translateX(-0%);
  width: 100%;
  background: #FFFFFF;
  opacity: 0.12;
}
.tit1_2:after{
  width: 220px;
  left: 0px;
  transform: translateX(-0%);
  background: #FFFFFF;
  opacity: 0.12;
}
.tit2_2,
.tit1_2{
  color: #FFFFFF;
  display: flex;
  align-items: flex-start;
}
.xsmore{
  color: #FFFFFF;
  right: 0;
  top: 0px;
  position: absolute;
}
.xsmore:before{
  color: #FFFFFF;
}
.xslist{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.xslist li a{
  display: flex;
  align-items: center;
  padding: 0px 30px 0px 10px;
  gap: 15px;
  height: 80px;
  background: #FFFFFF;
  border: 1px solid #F2F2F2;
  box-sizing: border-box;
}
.time4{
  min-width: 80px;
  height: 100%;
  background: #F6CF99;
  border-radius: 2px;
  margin-top: -10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.time4 .day{
  font-family: Arial;
  font-weight: 400;
  font-size: 20px;
  color: #A00101;
  line-height: 30px;
  position: relative;
}
.time4 .month{
  font-family: Arial;
  font-weight: 400;
  font-size: 15px;
  color: #A00101;
  line-height: 25px;
}
.time4 .day:before{
  content: " ";
  position: absolute;
  width: 50px;
  height: 1px;
  background: #A00101;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0px);
}
.s7{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 28px;
}
.xslist li a:hover .time4{
  background: #A00101;
}
.xslist li a:hover .time4 .day,
.xslist li a:hover .time4 .month{ 
  color: #fff;
}
.xslist li a:hover .time4 .day:before{
  background: #fff;
}
.xslist li a:hover .s7{
  color: #000000;
  font-weight: 500;
}



/* 教学动态 */
.main4{
  background: url(images/bj_03.jpg);
  background-size: cover; 
  padding-top: 55px;
  padding-bottom: 80px;
}
.main4 .inner{
  display: flex;
  gap: 60px;
}
.jxlist li a.jxbox{
  display: block;
  padding: 17px 15px;
  background: #FFFFFF;
  box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.1);
  border: 1px solid #F2F2F2;
  margin-top: 30px;
  /* margin-bottom: 10px; */
}
.jxtext{
  display: flex;
  border-bottom: 1px solid  #CDCDCD;
  justify-content: space-between;
  position: relative;
  padding-bottom: 7px;
}
.jxtext:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0px;
  height: 1px;
  background: #a00101;
  transition: all 0.5s ease-in-out;
}
.jxlist li a .s8{
  width:calc(100% - 100px);
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 36px;
  
}
.time5{
  position: relative;
  display: flex;
}
.time5 .day{
  font-family: Arial;
  font-weight: 400;
  font-size: 18px;
  color: #A00101;
  line-height: 36px;
  display: block;
}
.time5 .month{
  font-family: Arial;
  font-weight: 400;
  color: #A00101;
  font-size: 16px;
  line-height: 36px;
  margin-left: 5px;
  display: block;
}
.s9{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 15px;
  color: #666666;
  line-height: 28px;
  margin-top: 5px;
}
.jxlist{
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.jxlist li a:hover .time5 .day,
.jxlist li a:hover .time5 .month{ 
  display: none;
}
.jxlist li a:hover .more1{
  opacity: 1;
}
.jxbox:hover .jxtext{
  border-bottom: none;
}
.jxbox:hover .jxtext:before{
  width: 100%;
}
.jxlist li a:hover .s8{
  color: #a00101;
}
.jxlist li a.jxbox .s8{
  font-weight: 600;
}
.jxlist li a.jxbox1 .time5 .day,
.jxlist li a.jxbox1 .time5 .month{ 
  color: #999999;
}
.jxlist li a.jxbox1{
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.1);
  border: 1px solid #F2F2F2;
}


/* 人才引进 */
.main5{
  background: #fdf3f3;
  padding-top: 55px;
  padding-bottom: 80px;
}
.rclist{
  margin-top: 30px;
  display: flex;
  gap: 40px;
}
.rclist li{
  width: calc(25% - 30px);
}
.rclist li a{
  display: block;
  background: #FFFFFF;
  box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.s10{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 22px;
  color: #000000;
  line-height: 28px;
  transition: all 0.3s;
}
.rctxt{
  padding-left: 18px;
  border-bottom : 1px solid #D8D8D8;
  padding: 13px 32px 13px 18px;
  position: relative;
}
.rclist li:hover .s10{
  color: #fff;
}
.pic2{
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  height: 171px;
}
.pic2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rcicon{
  width: 100%;
  height: 6px;
  background: #FFFFFF;
  margin-top: 10px;
  transition: all 0.3s;
}
.more2{
  opacity: 0;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s;
}
.rclist li:hover .more2{
  opacity: 1;
}
.rclist li:hover a{
  background: #A00101;
}
.rclist li:hover .rcicon{
  background: #A00101;
}
/* 科研团队 */
.main6{
  background: url(images/bj_04.jpg);
  background-size: cover;
  padding-top: 55px;
  padding-bottom: 130px;
}
.banner2{
  margin-top: 35px;
}
.mySwiper3 {
  padding-top: 40px;
  padding-bottom: 50px;
}
.mySwiper3 .swiper-slide a{
  display: block;
  width: calc(100% - 65px);
}
.mySwiper3 .swiper-slide.swiper-slide-next a{
  margin-left: 65px;
}
.mySwiper3 .swiper-slide.swiper-slide-prev a{
  margin-right: 65px;
}
.pic3{
  width: 100%;
  height: 207px;
  overflow: hidden;
}
.pic3 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s  ;
}
.text1{
  width: 86.956%;
  margin: 0 auto;
  background: #FFFFFF;
  box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.1);
  border-radius: 4px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0px 14px;
  height: 50px;
  transition: all 0.5s  ;
}
.s11{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 50px;
  transition: all 0.5s  ;
}

.mySwiper3 .swiper-slide-active {
  margin-top: -40px;
}
.mySwiper3 .swiper-slide.swiper-slide-active a{
  width: calc(100% + 127px);
  margin-left: -63px;
  margin-right: -64px;
}
.mySwiper3 .swiper-slide-active .pic3 {
  height: 315px; 
}
.mySwiper3 .swiper-slide-active .text1{
  width: 78.571%;
  
}
.mySwiper3 .swiper-slide:hover .text1{
  background: #A00101;
}
.mySwiper3 .swiper-slide:hover .s11{
  color: #FFFFFF;
}
.mySwiper3 .swiper-slide:hover  .pic3 img{
  transform: scale(1.1);
}
.mySwiper3 .swiper-pagination{
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.mySwiper3 .swiper-pagination-bullet{
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.mySwiper3 .swiper-pagination-bullet-active{
  width: 60px;
  height: 20px;
  background: #A00101;
  border-radius: 10px;
}

.main7{
  margin-top: -100px;
  background: url(images/bj_05.png) no-repeat;
  background-size: 100% 100%;
  padding-top: 30px;
  padding-bottom: 45px;
}
.text-link{
  background: #FFFFFF;
  box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.1);
  padding: 25px 0px 15px 0px;
}
.title2 .tit1{
  font-size: 30px;
}
.title2 .tit1:after{
  display: none;
}
.title2 .tit1:before {
  top: calc(100% + 13px);
}
.text-link-items{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 40px 5px 40px;
}
.text-link-items li a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.text-link-items li a span{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 26px;
}
.text-link-items li {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.text-link-items li a img {
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85; 
}
.text-link-items li a span {
  transition: color 0.3s ease;
}
.text-link-items li:hover {
  transform: translateY(-3px);
}

.text-link-items li:hover a img {
  transform: scale(1.1) rotate(-5deg);
  opacity: 1;
}

.text-link-items li:hover a span {
  color: #A00101;
  font-weight: 500; 
}
.footer{
  margin-top: 50px;
}
.fl .h1{
  margin-bottom: 20px;
}
.f1{
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.f1 li {
  display: flex;
  align-items: center;
  gap: 5px;

  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 36px;
}
.copyright{
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 15px;
  color: #FFFFFF;
  line-height: 36px;
  opacity: 0.5;
}
footer{
  background: url(images/bj_06.png) center;
  background-size: cover;
  padding-bottom: 35px;
  padding-top: 5px;
}







/***********************************************************
 * 列表页
 */

 
 /*栏目图片*/
 .l-banner {height: 350px; background:url(images/banner1.jpg);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(255, 68, 152, 0.3);
  border-radius: 10px 10px 0px 0px;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}


/*主栏目名称*/
.col_menu { width: 250px; float: left; margin-right: -250px; position: relative;  margin-top:-80px; 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: #a00101; 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: #a00101;font-weight: 600;padding-left: 5px; } 
.col_list .wp_listcolumn .wp_column a.selected { color: #a00101;  position: relative; text-decoration: none;font-weight: 600;padding-left: 5px;background: #ffffff;border-left: 4px solid #a00101;}
.col_list .wp_listcolumn .wp_column a.selected span.column-name { color: #a00101; }
.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: #a00101;}
.col_list .wp_listcolumn .wp_column.parent > a { border-left: 4px solid #a00101;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: #a00101; }
/*三级子栏目**/
.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: #a00101; }

.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: 18px; 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: 16px; color: #333; font-family: "微软雅黑";}
.col_list .wp_listcolumn .sub_list a .column-name { display: inline-block; line-height: 50px;  padding-left: 30px ;padding-right: 12px; cursor: pointer; letter-spacing: 0.2px;}
.col_list .wp_listcolumn .sub_list a:hover { background: #fff; color: #a00101}
.col_list .wp_listcolumn .sub_list a.selected { background: #fff; font-weight: 600;  color: #a00101;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: #a00101; }
/* .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: #a00101;} */
.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: #a00101;}
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a { background: none;font-family: "微软雅黑"; padding: 6px 18px; color: #9f9d9d;}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name { padding: 0px 10px 5px 20px; cursor: pointer; font-size: 14px; position: relative; line-height: 32px;}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name:before { position: absolute; content: ""; left: 8px; 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:-80px; 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: 0 auto !important;   margin-bottom:4px; margin: 0 auto; min-width: 414px;}
.col_news_list .wp_entry img { margin: 0 auto !important;  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: #a00101;
  border: 2px solid #a00101;
}
#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: #a00101;}
.col_news_list .news_list li.news:hover:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #a00101;
}
.col_news_list .news_list li.news:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0px;
  height: 1px;
  background: #a00101;
  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: #a00101;
}
.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: #a00101;} /**文章标题**/
.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 !important; max-width:940px; _width:expression(this.width > 940 ? "940px" : this.width); }   /**文章阅读部分图片大小限制**/
.article .entry .read table { margin: 0 auto !important; 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,
.photo_news a{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden
}
.peo_pic{
  width: 180px;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
}
.peo_text{
  margin-top: -22px;
  position: relative;
  z-index: 2;

  width: 220px;
  padding: 32px 5px 10px 5px;
  transition: all 0.3s ease;
}
.peo_title,
.pho_title{
  color: #000000;
  line-height: 36px;
  font-size:  18px;
  font-family: "Mircrosoft YaHei";
  letter-spacing: 0.5px;
  font-weight: 500;
  text-align: center;
  transition: color 0.3s ease;
}
.photo_list{
  padding: 0 5px;
  padding-bottom: 50px;
  gap: 30px 15px;
  padding-top: 25px;
  /* justify-content: space-around; */
}
.photo_list li{
  width:calc(100% / 3 - 18px);
}
.pho_pic{
  max-width: 288px;
  width: 100%;
  height: 162px;
  object-fit: cover;
  z-index: 1;
}

/* 教师队伍 */
/* 首字母筛选样式 */
.subDoctor_year{
  padding-bottom: 12px;
  border-bottom: 2px solid #a00101;
  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: #a00101;
}

.filter-item.active {
  background-color: #a00101;
  color: #fff;
  font-weight: bold;
}



.photo_list li.photo_news:hover {
  transform: translateY(-8px);
  z-index: 10;
}

.photo_list li.photo_news:hover a {
  box-shadow: 0 15px 30px rgba(160, 1, 1, 0.15); 
}


.photo_list li.photo_news:hover .pho_pic {
  transform: scale(1.1); 
}

.photo_list li.photo_news:hover .pho_title {
  color: #A00101; 
  font-weight: 600;
}
.people_list li.people_news:hover {
  transform: translateY(-10px);
  z-index: 10;
}


.people_list li.people_news {
  position: relative;
  padding: 10px; 
  transition: all 0.3s ease;
}

.people_news a {
  display: block;
  position: relative;
  background: #fff;
  border: 1px solid transparent; 
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
}
.peo_pic {
  width: 180px;
  height: 240px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  transition: transform 0.5s ease;
}

.peo_text {
  position: relative;
  width: 100%;
  margin-top: 15px; 
  padding: 0 10px 15px 10px;
  text-align: center;
  z-index: 2;
  background: #fff;
}

.peo_title {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.peo_title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #A00101;
  transition: width 0.3s ease;
}
.people_list li.people_news:hover a {
  border-color: #A00101; 
  box-shadow: 0 8px 20px rgba(160, 1, 1, 0.15); 
  transform: translateY(-5px); 
}

.people_list li.people_news:hover .peo_pic {
  transform: scale(1.05);
}
.people_list li.people_news:hover .peo_title {
  color: #A00101;
  font-weight: 600;
}

.people_list li.people_news:hover .peo_title:after {
  width: 30px; /
}




