@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;
  /* color: #af251b; */
}

body,
textarea,
input,
select,
keygen,
legend {
  font: 13px/1 arial, \5b8b\4f53;
  color: #333;
  outline: 0;
}

:focus {
  outline: 0;
}

/*备用样式表*/
.clear {
  width: 100%;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  clear: both;
  display: block;
  _display: inline;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: block;
  *zoom: 1;
}

.icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: url(images/icon.png) no-repeat;
}

/*css3扩展*/
body:before {
  display: none;
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-moz-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

/*滚动样式*/
.scroller {
  position: absolute;
  z-index: 1;
  width: 750px;
  height: 160px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:horizontal {
  width: 4px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}

::-webkit-scrollbar-track-piece {
  background-color: #fff;
  /*滚动条的背景颜色*/
  -webkit-border-radius: 0;
  /*滚动条的圆角宽度*/
}

::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: #999;
  -webkit-border-radius: 4px;
  outline: 1px solid #fff;
  outline-offset: -1px;
  border: 1px solid #fff;
}

/**布局开始**/
* {
  box-sizing: border-box;
}

body {
  background: #fff;
  line-height: 1;
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #333;
  position: relative;
}

p {
  line-height: 1.75;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

a:hover {
  /* color: rgba(67, 130, 233, 1); */
}

.flex {
  display: flex;
  display: -webkit-flex;
}

.f_between {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

.f_start {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}

.f_end {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}

.f_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}

.f_middle {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
}

.f_top {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.f_bottom {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.f_stretch {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.middle_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.f_col {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.f_row {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.nowrap {
  -webkit-flex-wrap: nowrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.wrap {
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}

.overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-line1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.text-line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.text-line4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.text-line5 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

/*页面尺寸*/

.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1400px;
  margin: 0 auto;
}
header{
  position: absolute;
  z-index: 10;
}
.header {
  width: 100%;
  padding: 15px 0 12px 0;
  background: rgba(157, 0, 0, 0.78);
  background-size: cover;
  
}
.logo-text {
  border-left: 1px solid rgba(255, 255, 255, 1);
  padding-left: 15px;
}
.logo-text span {
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 600;
  font-size: 40px;
  color: #ffffff;
  line-height: 56px;
}
.logo1 {
  gap: 15px;
}
/* 搜索框样式 */
.wp-search {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  width: 350px;
  height: 48px;
  background: rgba(255,255,255,0.5);
  border-radius: 23px;
  box-shadow: 0px 0px 1px rgba(205,173,173,0.35);
}
.wp-search form {
  width: 100%;
  display: flex;
  padding-left: 18px;
}
.wp-search .search-input {
  flex: 1;
  height: 42px;
  display: flex;
  align-items: center;
}
.wp-search .search-input input.search-title {
  width: 100%;
  height: 42px;
  border: none;
  outline: none;
  background: transparent;
  font-family: "微软雅黑粗体";
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  padding: 0 1px;
  box-sizing: border-box;
}
.wp-search .search-input input.search-title::placeholder {
  font-family: "微软雅黑粗体";
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 38px;
}
.wp-search .search-btn {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 3px;
  gap: 4px;
}
.wp-search .search-btn input.search-submit {
  width: 26px;
  height: 26px;
  border: none;
  outline: none;
  background:url(images/icon_search.png) no-repeat;
  background-size: cover;
  cursor: pointer;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #666666;
}

/* nav */
.head-nav{
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.nav .wp-menu {
  width: 100%;
  height: 60px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  gap: 5px;
  padding: 0 20px;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  height: 60px;
  text-align: center;
  transition: all 0s ease;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 60px;
  line-height: 45px;
  position: relative;
  transition: all 0s ease;
  padding: 0  15px ;
}
.nav .wp-menu .menu-item a.menu-link {
  font-family: "SourceHanSansCN";
  font-weight: 500;
  font-size: 22px;
  color: #9d0000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav .wp-menu .menu-item > a:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  background: transparent;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.nav .wp-menu .menu-item > a:hover{
  background: #9d0000;
  color: #fff;
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 70px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  padding: 10px 0;
}
.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 {
  color: #333;
  height: auto;
  min-height: 40px;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  padding: 4px 25px;
  transition: all 0.3s;
  font-family: "SourceHanSansCN";
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #a80101;
  display: flex;
  font-weight: bold;
}
.nav .wp-menu .menu-item:hover .sub-menu {
  display: block;
}
.nav .wp-menu .menu-item:hover .sub-menu .sub-menu{
  display: none;
}
.nav .sub-menu .sub-menu{
  display: none;
  position: absolute;
  left: 100%;
  transform: translateX(0);
  top: 0px;
  width: auto;
  min-width: 50%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.80);
}
/* banner */
.banner {
  width: 100%;
  height: auto;
  min-height: 65px;
  position: relative;
}
.mySwiper1 {
  width: 100%;
  height: auto;
  position: relative;
}
.mySwiper1 .swiper-slide{
  width: 100%;
  height: auto;
}
.mySwiper1 .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none; 
}
.mySwiper1 .swiper-button-next,
.mySwiper1 .swiper-button-prev { 
  content: "";
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
}
.mySwiper1 .swiper-button-next{
  right: 40px;
  background: rgba(0,0,0,0.5) url("images/arrow_next.png") center center no-repeat;
}
.mySwiper1 .swiper-button-prev{
  left: 40px;
  background: rgba(0,0,0,0.5) url("images/arrow_pre.png") center center no-repeat;
}

/* main1 */
.main1 {
  padding: 48px 0 45px 0 ;
}
.main1 .inner{
  display: flex;
  gap: 50px;
}

.ml1{
  width: 63.571%;
}
.tt {
  width: 100%;
  margin-bottom: 45px;
  align-items: center;
} 
/**标题字体**/
.tt .title {
  /* line-height: 36px; */
  color: #333333;
  font-family: "Souce Han Sans CN";
  position: relative;
  z-index: 1;
  font-size: 32px;
  letter-spacing: 0.3px;
  font-weight: 600;
}
.tt .title:before{
  content: "";
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 12px;
  height: 12px;
  background: url(images/-h-line_tittle.png) no-repeat;
  background-size: cover;
}
.tt .title:after{
  content: "";
  position: absolute;
  top: calc(100% + 12px);
  left: 15px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #9d0000 0% ,#9d0000 87%, #fff 100% );
}
.tt .title span{
  color: #9d0000;
}
.more{
  color: #666666;
  font-size: 15px;
  border-radius: 18px 18px 18px 18px;
  border: 1px solid #D4D4D4;
  line-height: 36px;
  padding: 0 20px;
}
.more:hover{
  color: #af251b;
  border: 1px solid #af251b;
}
.m1{
  gap: 20px;
}
.mbanner{
  width: 57.415%;
}
.mySwiper2 {
  width: 100%;
  height: auto;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.16);
}
.mySwiper2 .swiper-slide{
  width: 100%;
  height: auto;
}
.mbanner .swiper-slide{
  background: #fff;
}
.pic{
  width: 100%;
  height: 288px;
  overflow: hidden;
}
.pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.mbanner .swiper-slide:hover .pic img{
  transform: scale(1.1);
}
.mbanner .swiper-slide:hover .s1{
  color: #A80101;
}
.s1{
  font-family: "Souce Han Sans CN";
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #333333;
}
.text{
  padding: 5px  15px 40px 15px;
}
.mySwiper2 .swiper-pagination{
  text-align: right;
  right: 10px;
}
.swiper-pagination-bullet{
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #333333;
}
.mySwiper2 .swiper-pagination {
  display: flex;
  justify-content: flex-end;
  right: 10px;
  bottom: 10px;
}
.mySwiper2 .swiper-pagination-bullet.num-bullet {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 0px;
  font-size: 14px;
  line-height: 17px;
  color: #999999;
  opacity: 1;
  cursor: pointer;
  font-family: "Souce Han Sans CN";
  font-weight: 400;
  box-sizing: border-box;
}
.mySwiper2 .swiper-pagination-bullet-active.num-bullet {
  background: #9d0000;
  color: #fff;
  border: 0px solid #d9d9d9;
}
.dtlist{
  width: 40.225%;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.dtlist li{
  padding-bottom: 18px;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
  z-index: 1;
}
.dtlist li a  {
  display: block;
  z-index: 1;
  position: relative;
}
.time{
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 500;
  font-size: 16px;
  color: #A80101;
  line-height: 31px;
}
.dtlist li:hover .s1{
  color: #A80101;
  font-size: 20px;
  font-weight: 500;
}
.dtlist li:hover .time{
  font-size: 20px;
}
.mr1{
  width: 32.142%;
}

/* main2 */
.main2{
  background: url(images/-h-bj_01.png) no-repeat;
  background-size: cover;
  padding: 20px 0 30px 0;
}
.main2 .tt .title:before,
.main3 .tt .title:before{
  left: 50%;
  transform: translateX(-50%);
}
.main2 .tt .title:after,
.main3 .tt .title:after{
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 50px);
  height: 2px;
  background: linear-gradient(to right, #fff 0% ,#9d0000 13% ,#9d0000 87%, #fff 100% );
}
.m2{
  display: flex;
  gap: 24px;
}
.ydbox{
  width: calc(100% / 3 - 16px);
  background: #f7d5d4;
  padding: 2px 2px 5px 2px;
}
.ydhead{
  flex-direction: column;
  align-items: center;
  padding: 19px 0 15px 0;
  gap: 15px;
  background: url(images/-h-top_study01.png) no-repeat;
  background-size: cover;
}
.ydtitle{
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 500;
  font-size: 26px;
  color: #333333;
  line-height: 35px;
}
.ydlist{
  
}
.ydlist li a{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #d9d9d9;
  gap: 6px;
}
.time1{
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 17px;
  position: relative;
  padding-left: 12px;
}
.time1:before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 10px;
  background: url(images/-h-arrow.png) center no-repeat;
  background-size: cover;
}
.ydlist li a:hover .time1:before{
  background: url(images/-h-arrow_h.png) center no-repeat;
  background-size: cover;
}
.ydlist li a:hover .time1{
  color: #9d0000;
}
.ydlist li a:hover .s1{
  color: #9d0000;
  font-weight: 500;
}
.more1{
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  font-size: 15px;
  color: #999999;
  line-height: 28px;
  text-align: center ;
  display: block;
  margin-top: 8px;
}
.more1:hover{
  color: #9d0000;
}
.m2 li:nth-child(2) .ydhead{
  background: url(images/-h-top_study02.png) no-repeat;
  background-size: cover;
}
.m2 li:nth-child(2) .ydhead{
  background: url(images/-h-top_study03.png) no-repeat;
  background-size: cover;
}


/* main3 */
.main3{
  padding-top: 40px;
  padding-bottom: 35px;
  position: relative;
}
.main3:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 486px;
  background: url(images/-h-bj_02.png) bottom no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
}
.main3 .tt{
  position: relative;
}
.main3 .more{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.m3{
  margin-top: 70px;
}

.mbanner1{
  width: 100%;
  position: relative;
}
.mySwiper3 {
  padding-top: 56px;
  padding-bottom: 60px;
}
.mySwiper3 .swiper-slide {
  height: auto; 
  transition: all 0.4s ease;
  box-sizing: border-box;
}
.mySwiper3 .swiper-slide a{
  box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.1);
  width: calc(100% - 34px);
  border: 1px solid #DDDDDD;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  box-sizing: border-box;
}
.mySwiper3 .swiper-slide.swiper-slide-next a{
  margin-left: 34px;
}
.mySwiper3 .swiper-slide.swiper-slide-prev a{
  margin-right: 34px;
}
.mySwiper3 .swiper-slide .pic {
  width: 100%;
  height: 234px; 
  display: block;
  overflow: hidden;
}
.mySwiper3 .swiper-slide .pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.mySwiper3 .swiper-slide-active {
  margin-top: -56px;
}
.mySwiper3 .swiper-slide.swiper-slide-active a{
  width: calc(100% + 66px);
  margin-left: -32px;
  margin-right: -32px;
}
.mySwiper3 .swiper-slide.swiper-slide-active .pic {
  width: 100%;
  height: 288px; 
}
.mySwiper3 .slide-text {
  padding: 13px 15px 15px 15px;
  background: #FFFFFF;
  transition: all 0.5s ease;
  border: 2px solid #f7d5d4;
  border-top: none;
}
.mySwiper3 .time {
  position: relative;
  font-family: Arial;
  font-weight: 400;
  font-size: 20px;
  color: #A00101;
  line-height: 34px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 15px;
}
.mySwiper3 .time .year{
  font-size: 16px;
  margin-left: 5px;
}
.mySwiper3 .time:before{
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  background: #A00101;
  width: 104px;
  height: 2px;
}
.s3{
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  font-size: 15px;
  color: #666666;
  line-height: 30px;
  margin-top: 20px;
}
.mySwiper3 .swiper-slide a:hover .s1{
  color: #A00101;
}

.mySwiper3 .swiper-slide-active .s3{
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.mySwiper3 .swiper-slide:hover .pic img{
  transform: scale(1.1);
}
.mbanner1 .swiper-pagination,
.mbanner2 .swiper-pagination {
  bottom: 10px;
}
.mbanner1 .swiper-pagination-bullet ,
.mbanner2 .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 8px;
  opacity: 1;
  border: 1px solid #A00101;
  box-sizing: border-box;
}
.mbanner1 .swiper-pagination-bullet-active,
.mbanner2 .swiper-pagination-bullet-active {
  background: #A00101; 
  width: 40px;
}
.more2{
  width: 27px;
  height: 17px;
  background: url(images/-h-icon_details.png) no-repeat;
  background-size: cover;
  float: right;
  margin-top: 15px;
}
.mySwiper3 .swiper-slide a:hover .more2{
  background: url(images/-h-icon_details_h.png) no-repeat;
  background-size: cover;
}

.mbanner2{
  gap: 27px;
  position: relative;
  padding-bottom: 45px;
}
.mySwiper4{
  width: 75%;
  box-sizing: border-box;
}
.mySwiper4 .swiper-slide{
  width: 100%;
  height: auto;
  position: relative;
  box-sizing: border-box;
}
.rgbox{
  display: flex;
  width: 25%;
  position: relative;
  box-sizing: border-box;
}
.pic2{
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.pic2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.text1{
  position: absolute;
  width: 100%;
  text-align: center;
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  line-height: 40px;
  letter-spacing: 1px;
  bottom: 0;
  left: 0px;
  opacity: 0;
  transition: all 0.5s;
  background: rgba(157,0,0,0.8);
}
.mySwiper4 .swiper-slide:hover .text1,
.rgbox:hover .text1{
  opacity: 1;
}
.mySwiper4 .swiper-slide:hover,
.rgbox:hover{
  border: 2px solid #9d0000;
}
.mySwiper4 .swiper-slide:hover .pic2 img,
.rgbox:hover .pic2 img{
  transform: scale(1.1);
}
/* footer */
footer{
  padding: 53px 0;
  background: url(images/-h-bj_botttom.png);
  background-size: cover;
}
footer .inner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.f1{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.f1 li{
  display: flex;
  align-items: center;
  gap: 5px;

  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 36px;
}
.Copyright{
  font-family: "Souce Han Sans CN";
  font-size: 16px;
  color: #fff;
  line-height: 36px;
  letter-spacing: 0.5px;
}
.fr p{
  font-family: SourceHanSansCN, SourceHanSansCN;
  font-weight: 400;
  font-size: 15px;
  color: #FFFFFF;
  line-height: 22px;
  text-align: center;
}
.fm{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-direction: column;
  max-width: 390px;
}
.link{
  gap: 5px;
  color: #fff;
  font-family: "Source Han Sans SC";
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0.4px;
  font-weight: 400;
  white-space: nowrap;
}
.lbox{
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 5px;
}
.lbox li{
  width: 50%;
  margin-bottom: 5px;
}
.lbox li a{
  color: #fff;
  font-family: "Source Han Sans SC";
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.4px;
  font-weight: 300;
}
.lbox li a:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}



/* 
 *  内容页定制
 */
.infotop {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 8px;
  border-bottom: 1px solid #af251b;
}
.info_title {
  color: #af251b;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  font-family: "微软雅黑粗体";
  letter-spacing: 0.4px;
}

.infotop .col_path {
  display: inline-block;
  white-space: nowrap;
  line-height: 28px;
  color: #333333;
  font-size: 16px;
  padding-left: 25px;
  position: relative;
} /**当前位置**/
.infotop .col_path:before {
  content: "";
  position: absolute;
  left: 3px;
  width: 19px;
  height: 19px;
  background: url(images/home.png) no-repeat;
  background-size: 19px 19px;
  top: 50%;
  margin-top: -8px;
}
.infotop .col_path a {
  color: #333333;
}

/***********************************************************
 * 列表页
 */

/*栏目图片*/
.l-banner{height: 376px;background-position:center center;background-repeat:no-repeat;text-align:center; background-size:cover;}
.l-banner img{display:none;height:100%;vertical-align:top;}
/**主体列表页开始**/

#l-container {
  background: #f0f0f0;
}
#l-container .inner {
  padding: 20px 0px;
  padding-bottom: 40px;
}
#d-container {
  background: none;
  box-sizing: border-box;
}
#d-container .inner {
  padding: 25px 40px 40px;
  box-sizing: border-box;
}
#d-container .inner {
  background: #fff;
  box-shadow: 0 0 10px rgba(175, 37, 27, 0.3);
  margin-top: 0px;
  position: relative;
  z-index: 2;
  min-height: 400px;
}
/*主栏目名称*/
.col_menu {
  width: 280px;
  float: left;
  margin-right: -280px;
  position: relative;
  margin-top: 0px;
  box-sizing: border-box;
  /* border-left: 8px solid #af251b; */
}
.col_menu .l-qh {
  margin-bottom: 10px;
}
.col_menu .col_menu_head {
  background: #af251b no-repeat;
  background-size: cover;
  position: relative;
  padding: 0 10px;
} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  min-height: 75px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2.2px;
  font-family: "微软雅黑粗体粗体";
} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 45px;
  width: 100%;
  text-align: center;
  position: relative;
  font-family: "微软雅黑粗体";
  font-weight: 500;
  font-size: 28px;
  color: #fff ;
  line-height: 40px;
  letter-spacing: 3px;
} /**栏目名称图标**/

/*栏目列表*/
.col_list {
  min-height: 30px;
}
.col_list .wp_listcolumn {
  border-top: 0px solid #2867a0;
  border-bottom: 0px solid #fff;
}
.col_list .wp_listcolumn .wp_column a {
  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;
  border-left: 0px solid #af251b;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  padding: 5px 0px 5px 15px;
  line-height: 32px;
}
.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  color: #333333;
  position: relative;
  text-decoration: none;
}
/* .col_list .wp_listcolumn .wp_column a.selected span.column-name { color: #333333; } */
.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: #af251b;
}
.col_list .wp_listcolumn .wp_column > a {
  border-top: 1px solid #e0e0e0;
  padding-left: 40px;
  text-align: left;
}
.col_list .wp_listcolumn .wp_column > a:hover:before,
.col_list .wp_listcolumn .wp_column > a.selected:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 50%;
  background: #af251b;
}

/*二级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list a {
  color: #333;
  /* border-top: 1px solid #eee;  */
  margin-top: -1px;
}
.col_list .wp_listcolumn .wp_column .sub_list .sub-item > a {
  background: #e9e9e9;
}
.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: #af251b;
}
/*三级子栏目**/
.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: #af251b;
}

.col_list .wp_listcolumn {
  border: 0px;
}
.col_list .wp_listcolumn .wp_column a {
  font-family: "SourceHanSansCN";
  background-image: none;
  display: block;
  box-sizing: border-box;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  position: relative;
  background: #f5f5f5;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  padding: 12px 15px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.col_list .wp_listcolumn .wp_column a:hover .column-name,
.col_list .wp_listcolumn .wp_column a.selected .column-name {
  color: #af251b;
}

.col_list .wp_listcolumn .wp_column > a {
  border-top: 1px solid #e0e0e0;
  padding-left: 40px;
  padding-right: 30px;
  text-align: left;
  position: relative;
}
.col_list .wp_listcolumn .wp_column > a.selected:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #af251b;
}
.col_list .wp_listcolumn .wp_column > a.selected:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 8px;
  background: url(images/arrow.png) no-repeat;
  background-size: 100% 100%;
}

.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: 30px;
  padding: 8px 0;
  cursor: pointer;
  /* padding-left: 20px;  */
  position: relative;
}
/* .col_list .wp_listcolumn .sub_list a .column-name:before {  position: absolute; content: ""; left: 2px; top: 50%; margin-top: -2px; width: 6px; height: 6px; background: #af251b; } */
.col_list .wp_listcolumn .sub_list a:hover {
  background: #f6f6f6;
}
.col_list .wp_listcolumn .sub_list a.selected {
  background: #f6f6f6;
  font-weight: 600;
}
.col_list .wp_listcolumn .sub_list a:hover span.column-name,
.col_list .wp_listcolumn .sub_list a.selected span.column-name {
  color: #af251b;
}
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a {
  background: #efefef;
}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name {
  padding: 5px 10px 5px 20px;
  cursor: pointer;
  font-size: 14px;
  position: relative;
}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name:before {
  position: absolute;
  content: "";
  left: 2px;
  top: 50%;
  margin-top: -2px;
  width: 6px;
  height: 6px;
  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: #af251b;
}

/**栏目新闻**/
.col_news {
  width: 100%;
  min-height: 400px;
  float: right;
} /**栏目新闻**/
.col_news .col_news_box {
  margin-left: 330px;
  min-height: 350px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  /* border: 1px solid #ddd; */
  background: #fff;
}
.colum-box {
}

.col_news_head {
  border-bottom: 1px solid #af251b;
  padding-bottom: 10px;
  margin: 0 15px;
}
.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 38px;
  line-height: 38px;
} /**当前栏目**/

.col_metas .col_title h2 {
  display: inline-block;
  font-size: 20px;
  font-weight: 400;
  color: #af251b;
}
.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 38px;
  line-height: 38px;
  color: #333333;
  font-size: 16px;
  padding-left: 25px;
  position: relative;
} /**当前位置**/
.col_metas .col_path:before {
  content: "";
  position: absolute;
  left: 3px;
  width: 19px;
  height: 19px;
  background: url(images/icon_home.png) no-repeat;
  background-size: 19px 19px;
  top: 50%;
  margin-top: -8px;
}
.col_metas .col_path a {
  color: #333333;
}
.col_news_con {
  padding: 0px 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{
  padding: 10px 20px;
}
.col_news_list .wp_entry p {
  margin-bottom: 10px;
}
.col_news_list .wp_entry table {
  margin: 0 auto;
  margin-bottom: 4px;
  min-width: 414px;
}
.col_news_list .wp_entry img {
  margin: 0 auto;
  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: 40px;
  overflow: hidden;
  padding: 0;
  margin: 0 4px;
  text-align: center;
  background-color: transparent;
  color: #323333;
  border-radius: 50%;
  font-family: "微软雅黑粗体粗体";
}
#wp_pager .pages li a.pgCurrent {
  font-weight: bold;
  background-color: #af251b;
  color: #fff;
}
#wp_pager .pages li a.pgNext {
  width: auto;
  padding: 0px 8px;
}
#wp_pager .pages li:hover a.pgNext {
  color: #af251b;
}

/**文章页**/
.infobox {
  width: auto;
  margin: 0 auto;
}
.article {
  padding-top: 10px;
}
.article h1.arti_title {
  line-height: 40px;
  font-family: "Microsoft YaHei";
  font-size: 22px;
  text-align: center;
  color: #333;
} /**文章标题**/
.article h2.arti_title {
  line-height: 40px;
  font-family: "Microsoft YaHei";
  font-size: 17px;
  text-align: center;
  color: #1b1b1b;
} /**文章副标题**/
.article .arti_metas {
  /* padding: 10px; */
  text-align: center;
}
.article .arti_metas span {
  margin: 0 5px;
  font-size: 14px;
  color: #999999;
} /**文章其他属性**/
.article .arti_metas span img {
  margin-top: 2px;
  margin-right: 5px;
}
.article .entry {
  margin: 0 auto;
  overflow: hidden;
  margin-top: 10px;
} /**文章内容**/
.article .entry .read,
.article .entry .read p {
  line-height: 1.75;
  font-size: 18px;
  color: #333;
} /**阅读字体**/
.article .entry .read p {
  margin-bottom: 10px;
}
.article .entry .read img {
  margin: 0 auto;
  max-width: 940px;
  _width: expression(this.width > 940 ? "940px": this.width);
} /**文章阅读部分图片大小限制**/
.article .entry .read table {
  margin: 0 auto;
  border: none !important;
  min-width: 414px;
}

.col_news_list .news_list li.news {
  line-height: 50px;
  padding-left: 0px;
  font-size: 18px; /*border-bottom:1px solid #e0e0e0;*/
  position: relative;
} /**标题图标**/
.col_news_list .news_list li.news span.news_title {
  float: left;
  width: calc(100% - 110px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s ease-in-out;
} /*标题*/
.col_news_list .news_list li.news span.news_title img {
  vertical-align: middle;
}
.col_news_list .news_list li.news span.news_meta {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 50px;
  text-align: right;
  width: 105px;
  color: #777;
  font-size: 14px;
} /*属性*/
.col_news_list .news_list li.news:hover span.news_title {
  color: #af251b;
  transform: translateX(15px);
}

.col_news_list .news_list li.news:hover span.news_meta {
  color: #af251b;
}
.col_news_list .news_list li.news_news {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  padding-top: 10px;
}
.news_content {
  border-bottom: 1px dashed #e5e5e5;
  padding-bottom: 12px;
  padding-left: 24px;
  position: relative;
  transition: all 0.3s;
}
.news_content:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-70%);
  width: 8px;
  height: 14px;
  background: url(images/-h-arrow.png) no-repeat;
  background-size: contain;
  box-sizing: border-box;
}
.col_news_list .news_list li.news_news:hover .news_content:before {
  background: url(images/-h-arrow_h.png) no-repeat;
  background-size: contain;
}
.col_news_list .news_list li.news_news:hover {
  background: #f5f5f5;
}
.news_time {
  font-size: 14px;
  font-family: "Roboto";
  color: #696969;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-style: italic;
  line-height: 30px;
  position: relative;
}

.s16 {
  font-size: 18px;
  color: #333333;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  font-family: "微软雅黑粗体粗体";
  width: calc(100% - 90px);
}
.s17 {
  color: #666666;
  font-size: 16px;
  line-height: 24px;
  margin-top: 5px;
  font-family: "微软雅黑粗体粗体";
}
.col_news_list .news_list li.news_news:hover .news_content {
  transform: translateX(5px);
}
.col_news_list .news_list li.news > a:hover .s16 {
  color: #af251b;
}
.col_news_list .news_list li.news > a:hover .news_time {
  color: #af251b;
}

.tu_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  margin-top: 25px;
}
.tu_list li.news_tu {
  width: calc(100% / 3 - 20px);
}
.tu_list li.news_tu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
  max-width: 253px;
  width: 100%;
  position: relative;
}
.tu_list li.news_tu a:before {
  content: "";
  position: absolute;
  right: 0px;
  top: 43px;
  width: 24px;
  height: calc(100% - 85px);
  background: rgba(197, 19, 6, 0.07);
}
.tu_list li.news_tu img {
  max-width: 221px;
  width: calc(100% - 32px);
  height: 310px;
  object-fit: cover;
}
.news_tu_text {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 42px;
  text-align: center;
  padding: 0 37px 0 16px;
  transition: all 0.3s ease;
  width: calc(100% - 24px);
  margin-left: 24px;
  position: relative;
  background: rgba(197, 19, 6, 0.07);
}
.news_tu_text:before {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: url(images/arrow_h.png) no-repeat;
  background-size: 100% 100%;
  width: 8px;
  height: 15px;
}

.f111 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.f111 .code_text {
  line-height: 30px;
}
