@charset "utf-8";
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
  margin: 0;
  padding: 0;
}
header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details {
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th {
  text-align: left;
  font-weight: normal;
}
html,
body,
fieldset,
img,
iframe,
abbr {
  border: 0;
}
img {
  vertical-align: top;
}
html {
  overflow-x: hidden;
}
i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}
[hidefocus],
summary {
  outline: 0;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-size: 100%;
}
sup,
sub {
  font-size: 83%;
}
pre,
code,
kbd,
samp {
  font-family: inherit;
}
q:before,
q:after {
  content: none;
}
textarea {
  overflow: auto;
  resize: none;
}
label,
summary {
  cursor: default;
}
a,
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
  font-weight: bold;
}
del,
ins,
u,
s,
a,
a:hover {
  text-decoration: none;
}
body,
textarea,
input,
button,
select,
keygen,
legend {
  font: 13px/1 arial, \5b8b\4f53;
  color: #333;
  outline: 0;
}
:focus {
  outline: 0;
}
/*备用样式表*/
.none {
  display: none;
}
.wcb {
  width: 100%;
  height: 30px;
  border: 2px dashed #97cbe0;
}
.hidden {
  visibility: hidden;
}
.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;
}
/*css3扩展*/
::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
}
:-moz-placeholder {
  color: #999;
  font-size: 14px;
}
::-moz-placeholder {
  color: #999;
  font-size: 14px;
}
:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
}
/**布局开始**/
* {
  box-sizing: border-box;
}
body {
  background: #fff;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  font-family: Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei,
    STHeiti, WenQuanYi Micro Hei, Tahoma, Geneva, sans-serif;
  color: #333;
}
p {
  line-height: 1.75;
}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
a:hover {
  color: #cf0111;
}
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hide-text2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.hide-text3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.f_around {
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
}
.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;
}
.md_center {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: 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;
}
.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;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
/*版心 */
/*根据具体情况修改  */
.inner {
  width: 1300px;
  padding: 0px;
  margin: 0 auto;
} /**页面全局宽度**/
.ml {
  float: left;
}
.mr {
  float: right;
}
.header {
  position: relative;
}
/*默认主导航样式*/
#nav {
  position: absolute;
  bottom: 7%;
}
#nav .inner {
}
#nav .inner .wp-panel {
  height: 60px;
}
#nav .inner .wp-panel .wp-window {
}
#nav .inner .wp-panel .navbg {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  background: #fff;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
/*导航样式：后台绑定时也可以定义配置*/
.nav .wp-menu {
  width: 100%;
  float: left;
  margin: 0 auto;
  font-size: 0;
  display: flex;
  justify-content: space-around;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  float: left;
  position: relative;
  /*width: 12%;
   */
  text-align: center;
  transition: 0.5s;
}
.nav .wp-menu .menu-item:last-child {
  margin-right: 0;
}
.nav .wp-menu .menu-item.i1 {
  background: none;
}
.nav .wp-menu .menu-item a > .menu-switch-arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(images/nav_j.png) no-repeat center center;
  vertical-align: middle;
}
.nav .wp-menu .menu-item a.menu-link {
  display: inline-block;
  padding: 0 22px;
  font-family: MicrosoftYaHei;
  font-size: 20px;
  color: #fff;
  line-height: 60px;
  text-align: center;
  transition: 0.5s;
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 56px;
  z-index: 100;
  background: rgba(242, 242, 242, 1);
  border-top: 4px solid #be2418;
  min-width: 100%;
}
.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
}
.nav .sub-menu .sub-item a {
  display: block;
  color: #333;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  font-size: 16px;
  text-align: center;
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  background-color: #be2418;
  display: block;
}
.nav .sub-menu .sub-menu {
  left: 100%;
  top: 0px;
  z-index: 200;
  background: #fff;
}
.nav .wp-menu .menu-item:hover {
  background: rgba(242, 242, 242, 1);
  box-shadow: 2px 0px 0px 0px #ffffff;
  border-radius: 4px 4px 4px 4px;
}
.nav .wp-menu .menu-item:hover .menu-link {
  color: #dd0a01;
}
/**友情链接**/
/*具体样式可以修改  */
.mlink {
  width: 280px;
  height: 40px;
  background: rgba(154, 1, 0, 1);
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #ffffff;
  position: relative;
  margin-top: 30px;
}
.botlinks .links-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 30px;
  background: transparent;

  border-radius: 4px;
}
.botlinks .links-wrap a.links-arrow {
  display: block;
  height: 36px;
  line-height: 36px;
  padding: 0 42px 0 12px;
  color: #fff;
  font-size: 16px;
  background: url(images/arrow.png) no-repeat right bottom;
}
.botlinks .links-wrap a.links-arrow:hover,
.botlinks .wrap-open a.links-arrow {
  color: #fff;
  background-position: right top;
  cursor: pointer;
}
.botlinks .links-wrap .link-items {
  display: none;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 40px;
  height: auto;
  max-height: 300px;
  overflow: auto;
  overflow-x: hidden;
  background: rgba(255, 255, 255, 0.2);
}
.botlinks .links-wrap .link-items a {
  display: block;
  line-height: 24px;
  padding: 5px 0;
  color: #fff;
}
.botlinks .links-wrap .link-items a span {
  display: block;
  padding: 0 16px;
  white-space: nowrap;
}
.botlinks .links-wrap .link-items a:hover {
  color: #333;
  background: #e0f1f9;
  cursor: pointer;
} /**链接样式**/
.copyright {
  border-top: 1px solid #fff;
  margin-top: 35px;
  font-size: 16px;
  color: #fff;
}
.copyright .wz {
  padding: 28px 60px;
  line-height: 30px;
  text-align: center;
}

/* header */
.header {
  width: 100%;
  height: 780px;
  background: rgba(251, 251, 251, 1) url(images/banner.png) no-repeat;
  background-size: cover;
  background-position: center;
}

/*自定义输入框*/
.searchbox {
}
.wp-search {
  position: relative;
  border: 0;
  width: 320px;
  height: 46px;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #ffeaa9;
}
.wp-search form {
  display: block;
}
.wp-search .search-input {
  margin-right: 40px;
  color: #fff;
  padding: 1px;
}
.wp-search .search-input input.search-title {
  display: block;
  width: 100%;
  height: 42px;
  line-height: 38px;
  background: #be2418;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #fbdfa1 !important;
  font-size: 14px;
  border: 0;
  outline: 0;
  font-family: "Microsoft YaHei";
  text-indent: 12px;
}

.wp-search .search-btn {
  width: 45px;
  height: 46px;
  position: absolute;
  right: 0px;
  top: 0px;
}

.wp-search .search-btn input.search-submit {
  width: 42px;
  height: 42px;
  border: 0;
  outline: 0;
  background: url(images/search.png) center center no-repeat;
  cursor: pointer;
}

.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff;
}
.wp-panel {
  width: 70%;
}
.n1 {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contain {
  background: url(images/main.png) no-repeat;
  background-size: cover;
}
.logo {
  margin-top: 46px;
}
.m1-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.m1-1::before {
  content: "";
  position: absolute;
  width: 590px;
  height: 1px;
  background: #d10b00;
  bottom: 25px;
  right: 0;
}
.m11-1 {
  font-size: 28px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #be2418;
  line-height: 32px;
  position: relative;
}
.m11-2 {
  font-size: 16px;
  font-family: Microsoft YaHei;
  color: #6d6463;
  width: 17%;
}

.m11-1::after {
  content: "";
  display: block;
  width: 475px;
  height: 1px;
  background: #d10b00;
  position: absolute;
  left: 33%;
  top: 70%;
}
.m1-2 {
  margin-top: 40px;
  display: flex;
}
.mySwiper1 {
  width: 670px;
}
.mySwiper1111 {
  position: relative;
}
.mySwiper1111::before {
  content: "";
  position: absolute;
  width: 670px;
  height: 377px;
  background: #f8e2cb;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #c60305;
  left: -10px;
  top: -10px;
}
.mySwiper1 .swiper-wrapper {
  height: 100% !important;
}
.mySwiper1 .swiper-wrapper .swiper-slide {
  height: 100% !important;
}
.mySwiper1 .swiper-wrapper .swiper-slide img {
  height: 377px;
  width: 100%;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #c60305;
  object-fit: cover;
}
.SWimg {
  position: relative;
}
.SWtime {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 999;
  height: 57px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0px 0px 2px 2px;
  font-family: MicrosoftYaHei;
  font-size: 15px;
  color: #d6d6d6;
  line-height: 36px;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 30px;
}
.SWtitle {
  width: 570px;
  height: 50px;
  background: url(images/bj_news_tittle.jpg) no-repeat;
  font-family: MicrosoftYaHei;
  font-size: 18px;
  color: #f9f9f9;
  line-height: 36px;
  padding-left: 90px;
  display: flex;
  align-items: center;
  position: relative;
  top: -15px;
  z-index: 999;
  left: 65px;
}
.image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.bottom-border {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding-left: 20px;
  height: 50px;
  background: rgba(74, 12, 7, 0.4);
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #ffffff;
  line-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m122-time {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: 13px;
  padding-right: 20px;
  border-right: 1px solid #999;
  height: 100px;
}
.year {
  color: #666666;
  font-size: 14px;
  font-family: Microsoft YaHei;
  line-height: 23px;
  text-align: center;
}
.year1 {
  width: 64px;
  height: 27px;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  opacity: 0.7;
  line-height: 23px;
  text-align: center;
  transition: 0.5s;
}
.day {
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #be2418;
  line-height: 23px;
  text-align: center;
  padding-top: 5px;
  margin-bottom: 10px;
}
.day1 {
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #fff;
  line-height: 23px;
  text-align: center;
  padding-top: 5px;
}
.day11 {
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  opacity: 0.7;
  line-height: 23px;
  text-align: center;
  padding-top: 5px;
  transition: 0.5s;
}
.m122 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 20px;
}
.m12-2 {
  margin-left: 43px;
  width: 576px;
}
.m122-more {
  width: 80%;
}
.m122-1 {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333;
  line-height: 32px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.m12-2 li:hover .m122-1 {
  color: #be2418;
}

.m122-2 {
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #999999;
  line-height: 23px;
  margin-top: 10px;
}
.main1 {
  margin-bottom: 30px;
  background: rgba(251, 251, 251, 1);
}

.m2 {
  display: flex;
  justify-content: space-between;
}
.main2 {
  width: 48%;
}
.m2-1 {
  width: 100%;
  height: 166px;
  border: 1px solid #e5d4bd;
  border-radius: 4px;
  margin-top: 40px;
  padding: 30px 20px;
}
.m21-1 {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #b82929;
  margin-bottom: 20px;
}
.m21-2 {
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #999999;
  line-height: 23px;
  margin-bottom: 20px;
}
.m21-3 {
  display: flex;
  justify-content: space-between;
}
.m213-1 {
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #999999;
}
.m213-2 {
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #be2418;
}
.m222 {
  width: 100%;
  height: 65px;
  border: 1px solid #e5d4bd;
  border-radius: 4px;
  margin-top: 22px;
}
.m222 a {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
}
.m222-1 {
  width: 80%;
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.m222-2 {
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #999999;
}
.m222:hover .m222-1 {
  color: #be2418;
}

.main3 {
  width: 48%;
}
.m33-1 {
  height: 65px;
  border: 1px solid #e5d4bd;
  border-radius: 4px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.m33-11 {
  height: 65px;
  border: 1px solid #e5d4bd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin-top: 22px;
}
.m331 {
  width: 68px;
  height: 65px;
  background: #be2418;
  border: 1px solid #e5d4bd;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.m3311 {
  width: 68px;
  height: 65px;
  background: #ede0cd;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.5s;
}
.m332 {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #be2418;
  margin-left: 26px;
}
.m3321 {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333;
  margin-left: 26px;
  padding-right: 50px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.m33-2 {
  height: 95px;
  border: 1px solid #e5d4bd;
  border-radius: 4px;
  margin-top: 8px;
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #999999;
  line-height: 23px;
  padding-top: 18px;
  padding-left: 20px;
  padding-right: 20px;
}
.ma3-2 li:hover .m3321 {
  color: #be2418;
}
.ma3-2 li:hover .m3311 {
  background: #be2418;
}
.ma3-2 li:hover .day11 {
  color: #fff;
}
.ma3-2 li:hover .year1 {
  color: #fff;
}
.main4 {
  margin-top:  30px;
}
.m4 {
  width: 100%;
  margin-top: 47px;
  padding-bottom: 70px;
}
.m4 .mySwiper {
  width: 100%;
}
.m4 .swiper-wrapper {
  width: 100%;
  height: 350px;
}
.m4 .swiper-slide {
  width: 302px;
  height: 275px;
  background: #eadbca;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding-top: 8px;
}

.m4 .swiper-slide img {
  width: 289px;
  height: 162px;
  width: 97%;
  padding-left: 9px;
}
/* 自定义分页器样式 */
.m4 .swiper-pagination {
  width: 80px;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  left: 1090px !important;
  bottom: 20px !important;
}

.m4 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #ddd;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.m4 .swiper-pagination-bullet-active {
  background-color: #07457d; /* 激活状态的颜色 */
}

/* 显示当前页数和总页数 */
.m4 .swiper-pagination-current {
  margin-left: 10px;
}

/* 添加前导零 */
.m4 .swiper-pagination-total {
  margin-right: 5px;
}
/* 自定义分页器样式 */
.m4 .custom-pagination {
  display: flex;
  justify-content: left;
  align-items: baseline;
}

.m4 .custom-current-style {
  font-size: 24px;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #be2418;
  line-height: 9px;
}
.m4 .custom-total-style {
  width: 30px;
  font-size: 14px;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #333333;
  line-height: 9px;
}
/* 添加斜杠样式 */
.m4 .swiper-pagination-separator {
  margin: 0 5px;
}
.m4 .swiper-button-prev:after,
.m4 .swiper-rtl .swiper-button-next:after {
  display: none;
}
.m4 .swiper-button-next:after,
.m4 .swiper-rtl .swiper-button-prev:after {
  display: none;
}
.m4 .swiper-button-next {
  background: url(images/hr1.png) no-repeat;
  width: 48px;
  height: 48px;
  top: 90% !important;
}
.m4 .swiper-button-prev {
  background: url(images/hl1.png) no-repeat;
  width: 50px;
  height: 50px;
  top: 90% !important;
  right: 84px !important;
  left: none;
}

.m4more {
  float: right;
  position: relative;
  top: -30px;
  width: 120px;
  height: 40px;
  background: #07457d;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.m4more a {
  font-size: 14px;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #ffffff;
  z-index: 999;
}
.m44 {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333;
  line-height: 36px;
  padding-left: 20px;
  padding-top: 10px;
  padding-right: 20px;
}
.swiper-slide .m44::before {
  content: "";
  display: block;
  width: 6px;
  height: 30px;
  background: #be2418;
  position: absolute;
  top: 207px;
  left: 0;
}
.m4 .swiper-slide-active {
  background: #be2418 !important;
}
.m4 .swiper-slide-active .m44::before {
  content: "";
  display: block;
  width: 6px;
  height: 30px;

  position: absolute;
  top: 207px;
  left: 0;
  background: #eadbca !important;
}
.m4 .swiper-slide-active .m44 {
  color: #ffffff !important;
}
.swiper-pagination::before {
  content: "";
  display: block;
  width: 1045px;
  height: 1px;
  background: #999999;
  position: relative;
  right: 1085px;
  top: 10px;
}

.footer {
  background: url(images/bj_02.jpg) no-repeat;
  background-size: cover;
  padding-top: 1px;
  height: 780px;
}
.f {
  display: flex;
  justify-content: space-between;
 
  padding-top: 130px;
}
.f2 {
  display: flex;
}
.f2-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-right: 45px;
  color: #fff;
}
.f2-1 img {
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 4px;
  margin-bottom: 10px;
}
.f22 {
  font-size: 16px;
  font-family: Microsoft YaHei;
  color: #ffffff;
  line-height: 24px;
}
.f23 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #ffffff;
  line-height: 28px;
  margin-bottom: 15px;
}
.footer2 {
  width: 100%;
  height: 40px;
  background: #7f0b02;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/**新闻列表**/

/***********************************************************
 * 列表页
 */

/**主体列表页开始**/
#l-container .inner {
  padding: 25px 0px;
}
/**主体文章页开始**/
#d-container .inner {
  background: #fff;
}
.col_menu {
  width: 240px;
  float: left;
  margin-right: -240px;
  position: relative;
}
.col_menu .l-qh {
  margin-bottom: 10px;
}
.col_menu .col_menu_head {
  background: #8e0107;
} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 50px;
  padding: 0px 5px 0px 30px;
} /**栏目名称图标**/
.col_menu .col_menu_con {
  border: 1px solid #e4e4e4;
}
/*栏目列表*/
.col_list .wp_listcolumn {
  border-top: 0px solid #2867a0;
  border-bottom: 0px solid #fff;
}
.col_list .wp_listcolumn .wp_column a {
  color: #333;
  font-size: 15px;
  font-weight: normal;
  background: none;
  border-top: 0px solid #fff;
  border-bottom: 1px solid #f6eaea;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  padding: 5px 0px 5px 28px;
  line-height: 32px;
}
.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  color: #8e0107;
  background: #eee;
}
.col_list .wp_listcolumn .wp_column a.selected span.column-name {
  color: #8e0107;
}
.col_list .wp_listcolumn .wp_subcolumn .wp_column a {
  color: #454545;
  background: none;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #bbb;
}
.col_list .wp_listcolumn .wp_column.parent > a .column-name {
  font-weight: bold;
  color: #8e0107;
}
/*二级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list a {
  color: #333;
  border-top: 1px solid #eee;
  margin-top: -1px;
}
.col_list .wp_listcolumn .sub_list a .column-name {
  display: inline-block;
  line-height: 28px;
  padding: 5px 10px 5px 44px;
  cursor: pointer;
}
.col_list .wp_listcolumn .sub_list a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  font-weight: bold;
  font-weight: bold;
  color: #8e0107;
}
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a {
}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name {
  padding: 5px 10px 5px 60px;
  cursor: pointer;
}
.col_list .wp_listcolumn .sub_list .sub_list a :hover,
.col_list .wp_listcolumn .sub_list .sub_list a.selected {
  font-weight: bold;
  color: #8e0107;
}
/**栏目新闻**/
.col_news {
  width: 100%;
  min-height: 500px;
  float: right;
}
.col_news .col_news_box {
  margin-left: 290px;
}
.col_news_head {
  border-bottom: 1px solid #dbdbdb;
}
.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 48px;
  line-height: 48px;
} /**当前栏目**/
.col_metas .col_title h2 {
  display: inline-block;
  font-size: 18px;
  font-family: "Microsoft yahei";
  font-weight: normal;
  color: #8e0107;
  border-bottom: 3px solid #cbcbcb;
}
.col_metas .col_path {
  display: inline-block;
  float: right;
  white-space: nowrap;
  height: 46px;
  line-height: 46px;
  color: #666;
} /**当前位置**/
.col_metas .col_path a {
  color: #2f2f2f;
}
.col_news_con {
  padding: 5px 0px 10px 0px;
  margin: 0 0px;
}
.col_news_list {
  margin-top: 7px;
}
.col_news_list .wp_article_list .list_item {
} /**栏目新闻列表**/
.col_news_list .wp_article_list .list_item .Article_Index {
} /**栏目新闻图标序号**/
.col_news_list .wp_entry,
.col_news_list .wp_entry p {
  line-height: 1.75;
  font-size: 14px;
  color: #333;
}
.col_news_list .wp_entry p {
  margin-bottom: 10px;
}
.col_news_list .wp_entry table {
  margin-bottom: 4px;
}
.col_news_list .wp_entry img {
  max-width: 680px;
  _width: expression(this.width > 680 ? "680px": this.width);
} /**列表页文章图片大小限制**/
/**文章页**/
.infobox {
  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: #8e0107;
} /**文章标题**/
.article h2.arti_title {
  line-height: 34px;
  font-family: "Microsoft YaHei";
  font-size: 17px;
  text-align: center;
  color: #666;
} /**文章副标题**/
.article .arti_metas {
  padding: 10px;
  text-align: center;
}
.article .arti_metas span {
  margin: 0 5px;
  font-size: 12px;
  color: #787878;
} /**文章其他属性**/
.article .entry {
  margin: 0 auto;
  overflow: hidden;
  margin-top: 10px;
} /**文章内容**/
.article .entry .read,
.article .entry .read p {
  line-height: 1.75;
  font-size: 16px;
  color: #333;
} /**阅读字体**/
.article .entry .read p {
  margin-bottom: 10px;
}
.article .entry .read img {
  margin: 0 auto;
  max-width: 940px;
  _width: expression(this.width > 940 ? "940px": this.width);
} /**文章阅读部分图片大小限制**/
.article .entry .read table {
  margin: 0 auto;
  border: none !important;
}
.es_article_title {
  display: none;
}
/**翻页**/

.es_pagingbar_container {
  margin: 40px auto 0;
  text-align: center;
  padding-bottom: 40px;
}
.es_pagingbar_container .es_pagingbar {
  display: inline-block;
  overflow: hidden;
}
.es_pagingbar_container .es_pagingbar li {
  float: left;
  padding: 6px 12px;
  margin: 0 6px;
  color: #999;
  background: #fff;
  border: 1px solid #eee;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}
.es_pagingbar_container .es_pagingbar li.active {
  background: #d63e3e;
  color: #fff;
  border-color: #d63e3e;
}
.es_pagingbar_container .es_pagingbar li.active a {
  color: #fff;
}
.es_article_content img {
  margin-right: 20px;
}

/**主页开始**/
.fNav {
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 68%;
  transform: translateY(-50%);
  width: 164px;
}

.fNav .menu-item {
  position: relative;
  margin-top: 22px;
}

.fNav .menu-item a.menu-link {
  position: relative;
  width: 100%;
  display: block;
  height: 13px;
}

.fNav .menu-item .m-link1 {
  position: absolute;
  left: -100%;
  top: 0;
  height: 50px;
  line-height: 18px;
  font-size: 0px;
  color: #e6be5d;
}

.fNav .menu-item .m-link2 {
  position: absolute;
  left: 28px;
  width: 100px;
  color: #5273a8;
  top: 0;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  text-shadow: 1px 1px 1px #ffffff;
}

.fNav .menu-item a.selected .m-link2 {
  display: none;
}

.fNav .menu-item a.selected .m-link1 {
  font-size: 20px;
  left: 28px;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.news_title,
.news_date {
  display: inline;
}
.news_date {
  float: right;
}
.B1 {
  height: 350px;
  width: 100%;
  overflow: hidden;
}
.B1 .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Column */
.column-banner {
}
.column-banner .img {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: 350px;
  margin: 0 auto;
  background: #f1f1f1 url(../img/list_column_bg.jpg) no-repeat center/cover;
}
.column-banner .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.column {
  margin-top: 30px;
  margin-bottom: 40px;
}
.column-anchor {
  padding-left: 15px;
  height: 60px;
  background-color: #ca020d;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 60px;
}
.column-nav {
  box-shadow: 0 7px 20px rgba(175, 35, 40, 0.1);
}
.column-nav ul li a {
  display: block;
  padding-left: 25px;
  height: 40px;
  background: #fff;
  color: #333;
  font-size: 14px;
  line-height: 40px;
}
.column-nav ul li a:hover {
  background: #e5892c;
  color: #fff;
}
.column-nav ul li ul li a {
  padding-left: 40px;
  height: 36px;
  background: #f0f0f0;
  font-size: 14px;
  line-height: 36px;
}
.column-nav ul li.selected > a {
  background: #f1f1f1;
  color: #ca020d;
  font-weight: bold;
}
.breadcrumb-nav {
  float: right;
  margin-top: -10px;
  padding: 8px 0;
  color: #ca020d;
  font-size: 14px;
  font-weight: normal;
}
.breadcrumb-nav a {
  font-weight: normal;
  color: #999;
}
.breadcrumb-nav a:hover {
  color: #333;
}
.column-content {
  min-height: calc(100vh - 300px);
  background-color: #fff;
  box-shadow: 0 7px 20px rgba(175, 35, 40, 0.1);
padding-bottom:30px;
}
.column-name {
  padding: 0 25px;
  height: 60px;
  border-bottom: 1px solid #efefef;
  color: #333;
  font-weight: bold;
  font-size: 18px;
  line-height: 60px;
}
.news-list li {
  border-bottom: 1px solid #e6e6e6;
}
.news-list-item {
  position: relative;
  padding: 20px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
}
.news-list-item:hover {
  background-color: #fff;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
}
.news-list-item .date {
  position: absolute;
  top: 20px;
  left: 20px;
  overflow: hidden;
  width: 80px;
  height: 50px;
  color: #333;
  border-right: 1px solid #e6e6e6;
}
.date-item:hover .date {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
}
.news-list-item .date span,
.news-list-item .date b {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  color: #333;
}
.news-list-item .date span {
  height: 30px;
  line-height: 30px;
  font-size: 21px;
  font-weight: bold;
}
.news-list-item .date b {
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  font-weight: normal;
}
.news-list-item:hover .content {
  color: #333;
}
.news-list-item .content {
  height: 56px;
  line-height: 28px;
  padding: 0 20px 0 95px;
  color: #1a1a1a;
}
.news-list-item .content h3 {
  line-height: 0px;
  font-size: 16px;
}
.news-list-item .content p {
  font-size: 14px;
  color: #888;
}
.column .wp_single {
  padding: 20px;
}
.teacher-list {
  padding: 20px;
}
.teacher-item {
  display: block;
  max-width: 210px;
  width: 100%;
  margin: 15px auto;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.teacher-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.teacher-item h2 {
  padding: 10px;
  background-color: #fff;
  font-size: 18px;
  color: #333;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.teacher-item:hover h2 {
  color: #ca020d;
}
.teacher-item img {
  width: 210px;
  height: 290px;
}
.column-img-list {
  padding: 15px 25px;
}
.column-img-item {
  margin: 15px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.column-img-item .photo {
  width: 100%;
  height: 180px;
  background-color: #999;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.column-img-item .title {
  padding: 16px 12px;
}
.column-img-item .title h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.column-img-item .title .date {
  color: #999;
}
.column-img-item:hover {
  box-shadow: 0 0 10px rgba(175, 35, 40, 0.3);
}
.column-img-item:hover .title h3 {
  color: #ca020d;
}
#wp_pager {
  text-align: center;
}
#wp_paging_w7 {
  display: flex;
  justify-content: center;
}
.s1 {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  color: #d10b00;
  line-height: 36px;
}
.more {
  position: absolute;
  right: 0;
}
.SWtime {
}
.m1-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main222 {
  background: url(images/bj_01.jpg) no-repeat;
  padding-top: 30px;
  padding-bottom: 30px;
  background-size: cover;
}

.news-list2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item2 {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.news-item2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #be2418;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-item2 a {
  display: flex;
  padding: 5px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.4s ease;
 align-items: center;
}

.news-item2:hover {
  transform: translateY(-2px);
}

.news-item2:hover::after {
  width: 100%;
}

.news-time2 {
  width: 90px;
  height: 60px;
  background: #ffd3a1;
  border-radius: 4px;
  text-align: center;
  margin-right: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.news-time2 .day2 {
  font-size: 32px;
  font-weight: bold;
  color: rgba(209, 11, 0, 1);
  line-height: 1;
  margin-bottom: 5px;
  transform: scale(1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-time2 .year2 {
  font-size: 14px;
  color: rgba(209, 11, 0, 1);
  transition: all 0.4s ease;
}

.news-content2 {

 width:70%;
  flex: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-title2 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-left: 0;
width: 80%;
}

.news-desc2 {
  font-family: MicrosoftYaHei;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-item2:hover .news-title2 {
  color: #000000;
  font-weight: bold;
  padding-left: 10px;
}

.news-item2:hover .day2 {
  transform: scale(1.1);
  color: #fff;
}

.news-item2:hover .year2 {
  color: #fff;
}

.news-item2:hover .news-desc2 {
  opacity: 1;
  max-height: 72px;
  margin-top: 8px;
}

.news-item2:hover .news-time2 {
  width: 90px;
  background: url(images/date_h.png);
  border-radius: 4px;
  justify-content: space-evenly;
}

.news-item2.active .news-desc2 {
  opacity: 1;
  max-height: 72px;
  margin-top: 8px;
}

.news-item2.active {
  transform: translateY(-2px);
}

.news-item2.active .news-title2 {
  color: #000000;
  font-weight: bold;
  padding-left: 10px;
}

.news-item2.active .day2 {
  transform: scale(1.1);
  color: #fff;
}

.news-item2.active .year2 {
  color: #fff;
}

.news-item2.active .news-time2 {
  width: 90px;
  background: url(images/date_h.png);
  border-radius: 4px;
  justify-content: space-evenly;
}
/*  */

.news-list3 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item3 {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.news-item3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #be2418;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-item3 a {
  display: flex;
  padding: 5px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.4s ease;
 align-items: center;
}

.news-item3:hover {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

.news-item3:hover::after {
  width: 100%;
}

.news-time3 {
  width: 90px;
  height: 60px;
  background: #ffd3a1;
  border-radius: 4px;
  text-align: center;
  margin-right: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.news-time3 .day2 {
  font-size: 32px;
  font-weight: bold;
  color: rgba(209, 11, 0, 1);
  line-height: 1;
  margin-bottom: 5px;
  transform: scale(1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-time3 .year2 {
  font-size: 14px;
  color: rgba(209, 11, 0, 1);
  transition: all 0.4s ease;
}

.news-content3 {
  flex: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 width:70%;
}

.news-title3 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-left: 0;
width: 80%;
}

.news-desc3 {
  font-family: MicrosoftYaHei;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-item3:hover .news-title3 {
  color: #000000;
  font-weight: bold;
  padding-left: 10px;
}

.news-item3:hover .day2 {
  transform: scale(1.1);
  color: #fff;
}

.news-item3:hover .year2 {
  color: #fff;
}

.news-item3:hover .news-desc3 {
  opacity: 1;
  max-height: 72px;
  margin-top: 8px;
}

.news-item3:hover .news-time3 {
  width: 90px;
 
  background: url(images/date_h.png);
  border-radius: 4px;
  justify-content: space-evenly;
}

.news-item3.active .news-desc3 {
  opacity: 1;
  max-height: 72px;
  margin-top: 8px;
}

.news-item3.active {
  transform: translateY(-2px);
}

.news-item3.active .news-title3 {
  color: #000000;
  font-weight: bold;
  padding-left: 10px;
}

.news-item3.active .day2 {
  transform: scale(1.1);
  color: #fff;
}

.news-item3.active .year2 {
  color: #fff;
}

.news-item3.active .news-time3 {
  width: 90px;
 
  background: url(images/date_h.png);
  border-radius: 4px;
  justify-content: space-evenly;
}

.mySwiper {
  width: 100%;
  height: 100%;
  padding-bottom: 80px;
}

.mySwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 225px;
}
.mySwiper .swiper-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(images/pic_cert.png) no-repeat;
  background-size: cover;
 
}

.mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 225px;
  object-fit: cover;
}
.m1-11::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 1px;
  background: #d10b00;
  bottom: 25px;
  right: 0;
}
.m1-11::after {
  content: "";
  position: absolute;
  width: 550px;
  height: 1px;
  background: #d10b00;
  bottom: 25px;
  left: 0;
  top: 35px;
}
.mySwiper .swiper-pagination-bullet {
  width: 40px;
  height: 8px;
  background: #b5b5b5;
  border-radius: 4px 4px 4px 4px;
}
.mySwiper .swiper-pagination-bullet-active {
  width: 40px;
  height: 8px;
  background: #d10b00;
  border-radius: 4px 4px 4px 4px;
}
.mySwiper .swiper-pagination {
  bottom: 10%;
}
.f1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 15px;
}
.f12 {
  font-family: MicrosoftYaHei;
  font-size: 15px;
  color: #ffffff;
  line-height: 30px;
  margin-top: 10px;
}
.header2{
  height: 550px;
  background:url(images/bgtop1.jpg) center no-repeat;
  background-size:cover;
}
.footer2{
  height: 430px;
  background:url(images/bgbottom2.png) center no-repeat;
  background-size:cover;
}
.news-list11{
  display: flex;
  align-items: center;
  flex-wrap:wrap

}
.news-list11 li{
  width: 32%;
  margin-right: 10px;
}
.news-list11 li img{
  width: 100%;
  height: 180px;
  object-fit:cover;
}

.search-title::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-family: "Microsoft YaHei";
  font-size: 14px;
  color: #FFEAA9;
}
.search-title::-moz-placeholder { /* Firefox 19+ */
  font-family: "Microsoft YaHei";
  font-size: 14px;
  color: #FFEAA9;
}
.search-title:-ms-input-placeholder { /* IE 10+ */
  font-family: "Microsoft YaHei";
  font-size: 14px;
  color: #FFEAA9;
}
.search-title:-moz-placeholder { /* Firefox 18- */
  font-family: "Microsoft YaHei";
  font-size: 14px;
  color: #FFEAA9;
}

/* 现代浏览器标准写法 */
.search-title::placeholder {
  font-family: "Microsoft YaHei";
  font-size: 16px;
  color: #FFEAA9;
}
.swiper-slide a img {
  transition: transform 0.5s ease-in-out;
  display: block;
  width: 100%;
  height: auto;
}

.swiper-slide:hover a img {
  transform: scale(1.1);
}
.swiper-slide {
  overflow: hidden;
}

.s1{
 transition: 0.5s   ;
margin-right:5px;
}
.s1 img{
margin-left:5px;
}
.s1:hover {
    font-family: MicrosoftYaHei;
    font-size: 17px;
    color: #d10b00;
    line-height: 36px;
}
.m11-2{
    width: 18%;
}