@charset "utf-8";

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
  margin: 0;
  padding: 0;
}
header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details {
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th {
  text-align: left;
  font-weight: normal;
}
html,
body,
fieldset,
img,
iframe,
abbr {
  border: 0;
}
img {
  vertical-align: top;
}
html {
  overflow-x: hidden;
}
i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}
[hidefocus],
summary {
  outline: 0;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-size: 100%;
}
sup,
sub {
  font-size: 83%;
}
pre,
code,
kbd,
samp {
  font-family: inherit;
}
q:before,
q:after {
  content: none;
}
textarea {
  overflow: auto;
  resize: none;
}
label,
summary {
  cursor: default;
}
a,
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
  font-weight: bold;
}
del,
ins,
u,
s,
a,
a:hover {
  text-decoration: none;
}
body,
textarea,
input,
button,
select,
keygen,
legend {
  font: 13px/1 arial, \5b8b\4f53;
  color: #333;
  outline: 0;
}
:focus {
  outline: 0;
}
/*备用样式表*/
.clear {
  width: 100%;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  clear: both;
  display: block;
  _display: inline;
}
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: block;
  *zoom: 1;
}
.icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/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: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB,
    Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
  color: #333;
}
p {
  line-height: 1.75;
}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
a:hover {
}
.flex {
  display: flex;
  display: -webkit-flex;
}
.f_between {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.f_start {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.f_end {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.f_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.f_middle {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
}
.f_top {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.f_bottom {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.f_stretch {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.middle_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.f_col {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_row {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.nowrap {
  -webkit-flex-wrap: nowrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wrap {
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}
.overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.text-line1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.text-line7 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  line-clamp: 7;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1280px;
  margin: 0 auto;
}
.head1 {
  position: relative;
  z-index: 999;
  height: 44px;
  background: rgb(126, 0, 20);
  padding-left: 160px;
  padding-right: 320px;
  box-shadow: 0px 12px 30px 0px rgba(196, 209, 222, 0.3),
    0px 12px 30px 0px rgba(196, 209, 222, 0.3);
}
.head1 li {
  margin-right: 62px;
}
.s1 {
  color: rgb(255, 255, 255);
  font-family: PingFang SC;
  font-size: 14px;
  font-weight: 400;
}
.logo {
  display: block;
width: 15%;
height: auto;
 
}
.logo img {
  width: 90%;
  height: 90%;
  object-fit: cover;
}
.inner2 {
  width: 1500px;
  margin: 0 auto;
}

.head2{
z-index:999;
}

.head2 {
  width: 100%;
  height: 100px;
  background: #fff;
}
/*默认主导航样式*/
.head-nav {
  background: #fff;
}
#nav {
}
.nav .wp-menu {
  height: 68px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  height: 68px;
  text-align: center;
}
.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 68px;
  line-height: 68px;
  padding: 0 12px;
  position: relative;
  font-family: 思源黑体;
}
.nav .wp-menu .menu-item a.menu-link {
  color: #333;
  font-size: 20px;
  -webkit-transition: all 0.3s;
}
.nav .wp-menu .menu-item.hover a.menu-link {
  color: #333;
  background: #9f0d0e;
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 68px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: #fff;
}
.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
}
.nav .sub-menu .sub-item a {
  display: block;
  color: #333;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  text-align: left;
  padding: 0 16px;
}
.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  background-color: rgb(126, 0, 20);
  display: block;
}
.h21 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s2 {
  color: rgb(0, 0, 0);
  font-family: 思源黑体;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  margin-left: 10px;
}
.banner {
  position: relative;
}
.BQH {
  position: absolute;
  bottom: 32px;
  left: 50%; /* 水平中心对齐 */
  transform: translateX(-50%);
  z-index: 888;
}
.BQH li {
  width: 320px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px 0px 0px 4px;
  background: rgb(255, 255, 255, 0.7);
  transition: 0.5s;
}
.BQH li:hover {
  background: rgb(126, 0, 20);
}
.BQH li:hover .s2 {
  color: #fff;
}
.main1 {
  padding-top: 60px;
  padding-bottom: 80px;
}
.swiper-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
  margin-top: 37px;
}
.s3 {
  color: rgb(51, 51, 51);
  font-family: 微软雅黑;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.s4 {
  color: rgb(102, 102, 102);
  font-family: 微软雅黑;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.Sbox {
  padding: 20px;
  transition: 0.5s;
  box-shadow: 0px 0px 15px 0px rgba(196, 203, 222, 0.43);
}
.swiper-container .swiper-slide:hover .Sbox {
  box-shadow: 0px 12px 30px 0px rgba(196, 209, 222, 0.3);
}
.swiper-container .swiper-slide img {
  width: 300px;
  height: 190px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-container .swiper-button-next {
  width: 32px;
  height: 32px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/right.png) no-repeat;
  top: 97%;
  right: 40%;
  background-size: cover;
}
.swiper-container .swiper-button-next:hover {
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/righton.png) no-repeat;
  background-size: cover;
}
.swiper-container .swiper-button-prev {
  top: 97%;
  left: 40%;
  width: 32px;
  height: 32px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/left.png) no-repeat;
  background-size: cover;
}
.swiper-container .swiper-button-prev:hover {
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/lefton.png) no-repeat;
  background-size: cover;
}
.main2 {
  background: rgb(248, 248, 248);
  padding-top: 58px;
  padding-bottom: 81px;
}
.HWXXBox {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.HWXXBox li {
  width: 30%;
  position: relative;
  overflow: hidden;
}
.HWXXBox li img {
  width: 100%;
  height: 288px;
  object-fit: cover;
}
.s5 {
  color: rgb(203, 177, 128);
  font-family: 思源黑体;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.s6 {
  color: rgb(51, 51, 51);
  font-family: 微软雅黑;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
}
.HWBox2 {
  padding: 20px;
  background: rgb(255, 255, 255);
}
.s7 {
  color: rgb(255, 255, 255);
  font-family: 微软雅黑;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}
.btn1 {
  width: 32px !important;
  height: 32px !important;
}
.s8 {
  color: rgb(255, 255, 255);
  font-family: 微软雅黑;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.HWBox3 {
  box-shadow: 0px 12px 30px 0px rgba(196, 209, 222, 0.3),
    0px 12px 30px 0px rgba(196, 209, 222, 0.3);
  background: rgb(126, 0, 20);
  padding: 30px;
}
.HWBT {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.HWBox3 {
  position: absolute;
  bottom: -105%; /* 初始隐藏在下方 */
  left: 0;
  width: 100%;
  height: 100%;
  transition: bottom 0.4s ease-in-out; /* 动画效果 */
}

.HWXXBox li :hover .HWBox3 {
  bottom: 0; /* 悬停时滑出 */
}
.main3 {
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/bgcopy1x.jpg) no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 80px;
  min-height: 900px;
}
.m3box {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  justify-content: space-between;
}
.m31 {
  width: 200px;
  height: 264px;
  background: rgba(128, 128, 128, .7) url(imagesYL/621x.png) no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
}
.m32 {
  width: 718px;
  height: 264px;
  background: rgba(128, 128, 128, .7) url(imagesYL/m591x-2.png) no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
}
.m33 {
  width: 360px;
  height: 485px;
  background: rgba(128, 128, 128, .7) url(imagesYL/m601x-2.png) no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
}
.m34 {
  width: 360px;
  height: 504px;
  background: rgba(128, 128, 128, .7) url(imagesYL/m621x-1.png) no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
}
.m35 {
  width: 558px;
  height: 222px;
  background: #fff;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m36 {
  width: 718px;
  height: 282px;
  background: rgba(128, 128, 128, .7) url(imagesYL/m1x-1.png) no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
}
.m37 {
  width: 200px;
  height: 283px;
  background: rgba(128, 128, 128, .7) url(imagesYL/631x.png) no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
}
.M3BOX {
  position: relative;
  width: 1300px;
  display: flex;
  justify-content: space-between;
}
.m3box1 {
  position: absolute;
  top: 56%;
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: space-between;
}
.M3BOX li {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
    flex-direction: column;
}
.M3BOX li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.M3BOX li a img {
  margin-bottom: 25px;
}
.s9 {
  color: rgb(255, 255, 255);
  font-family: 思源黑体;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.m35:hover {
  background: #fff !important;
}
.main4 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.head2 #sh{
background: #7e0014;
}

.head2 #sh {
    z-index: 2;
    font-size: 0.75vw;
    background: #7e0014;
    color: #FFFFFF;
    line-height: 45px;
    height: 45px;
    transition: all 0.2s ease-out 0s;
    overflow: hidden;
    display: flex
;
    width: 100%;
    padding: 0 10%;
    position: relative;
   box-sizing: border-box;
    justify-content: space-between;
}




.s10 {
  color: rgb(51, 51, 48);
  font-family: 思源黑体;
  font-size: 28px;
  font-weight: 700;
  line-height: 41px;
}
.swiper-container2 {
  overflow: hidden;
  position: relative;
  margin-top: 30px;
  padding-bottom: 70px;
}
.swiper-container2 .swiper-slide {
}
.SC1img {
  height: 400px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/bg3.png) no-repeat;
  transition: 0.5s;
  padding: 20px;
}
.SC1img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s12 {
  color: rgb(51, 51, 51);
  font-family: 思源黑体;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}
.s11 {
  color: rgb(51, 51, 51);
  font-family: 思源黑体;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}
.SC2box {
  background: rgb(248, 248, 248);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: column;
  transition: 0.5s;
}
.swiper-container2 .swiper-slide:hover .SC1img {
  height: 400px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/bg2.png) no-repeat;
}
.swiper-container2 .swiper-slide:hover .SC2box {
  box-shadow: 0px 12px 30px 0px rgba(196, 209, 222, 0.3);
  background: rgb(255, 255, 255);
}
.swiper-container2 .swiper-slide:hover .s12,
.swiper-container2 .swiper-slide:hover .s11 {
  color: rgb(126, 0, 20);
}
.swiper-container2 .swiper-button-next {
  width: 32px;
  height: 32px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/right.png) no-repeat;
  top: 97%;
  right: 40%;
  background-size: cover;
}
.swiper-container2 .swiper-button-next:hover {
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/righton.png) no-repeat;
  background-size: cover;
}
.swiper-container2 .swiper-button-prev {
  top: 97%;
  left: 40%;
  width: 32px;
  height: 32px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/left.png) no-repeat;
  background-size: cover;
}
.swiper-container2 .swiper-button-prev:hover {
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/lefton.png) no-repeat;
  background-size: cover;
}
.main4 {
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/bg1.png) bottom no-repeat;
  background-size: cover;
}
.main5 {
  background: rgb(248, 248, 248);
  padding-top: 50px;
  padding-bottom: 87px;
}
.s13 {
  color: rgb(51, 51, 51);
  font-family: 微软雅黑;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.s14 {
  color: rgb(56, 62, 99, 0.5);
  font-family: 微软雅黑;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}
.XZFCbox {
  margin-top: 32px;
}
.XZFCbox li {
  width: 33%;
  padding-top: 14px;
  padding-bottom: 16px;
  padding-left: 30px;
  padding-right: 18px;
  display: flex;
  align-items: center;
  box-shadow: 0px 12px 30px 0px rgba(196, 209, 222, 0.3);
  background: rgb(255, 255, 255);
}
.XZFCbox li a {
  width: 100%;
}

.mySwiper1 {
  position: relative;
  overflow: hidden;
  margin-top: 27px;
}
.mySwiper1 .swiper-slide a {
  display: flex;
  align-items: center;
}
.MSimg {
  width: 33%;
  height: 305.38px;
}
.MSimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.MSbox {
  background: rgb(255, 255, 255);
  padding: 30px;
  padding-left: 48px;
  height: 320px;
  width: 67%;
  border-bottom: 2px solid rgb(126, 0, 20);
}
.s15 {
  color: rgb(102, 102, 102);
  font-family: 微软雅黑;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.s16 {
  color: rgb(126, 0, 20);
  font-family: 微软雅黑;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}
.MSmore {
  width: 87px;
  height: 32px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  background: rgb(126, 0, 20);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.s17 {
  color: rgb(255, 255, 255);
  font-family: 微软雅黑;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.mySwiper1 .swiper-pagination {
  left: 20% !important;
}
.mySwiper1 .swiper-pagination-bullet {
  background: rgb(220, 228, 241);
  width: 28px;
  height: 4px;
  border-radius: 5px;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 2.2);
}
.mySwiper1 .swiper-pagination-bullet-active {
  width: 28px;
  height: 4px;
  border-radius: 5px;
  background: rgb(126, 0, 20);
}
.XZFCbox li {
  position: relative;
  transition: 0.5s;
}
.XZFCbox li::before {
  content: "";
  width: 9.91px;
  height: 14px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/11x.png);
  position: absolute;
  right: 30px;
  top: 20px;
}
.XZFCbox li:hover {
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/Group12.png) no-repeat;
}
.XZFCbox li:hover .s13,
.XZFCbox li:hover .s14 {
  color: #fff;
}
.XZFCbox li:hover::before {
  width: 15px;
  height: 14px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/copy.png) no-repeat;
}

.mySwiper2 {
  position: relative;
  overflow: hidden;
  margin-top: 27px;
}
.mySwiper2 .swiper-slide a {
  display: flex;
  align-items: center;
}
.mySwiper3 {
  position: relative;
  overflow: hidden;
  margin-top: 27px;
}
.mySwiper3 .swiper-slide a {
  display: flex;
  align-items: center;
}
.mySwiper2 .swiper-pagination {
  left: 20% !important;
}
.mySwiper2 .swiper-pagination-bullet {
  background: rgb(220, 228, 241);
  width: 28px;
  height: 4px;
  border-radius: 5px;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 2.2);
}
.mySwiper2 .swiper-pagination-bullet-active {
  width: 28px;
  height: 4px;
  border-radius: 5px;
  background: rgb(126, 0, 20);
}
.mySwiper3 .swiper-pagination {
  left: 20% !important;
}
.mySwiper3 .swiper-pagination-bullet {
  background: rgb(220, 228, 241);
  width: 28px;
  height: 4px;
  border-radius: 5px;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 2.2);
}
.mySwiper3 .swiper-pagination-bullet-active {
  width: 28px;
  height: 4px;
  border-radius: 5px;
  background: rgb(126, 0, 20);
}

/* 默认样式 */
.swiper11 {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 2s ease;
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -ms-transition: all 2s ease;
  -o-transition: all 2s ease;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
}

.swiper11.active {
  display: block;
}

/* 添加动画 */
.swiper11.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* li 激活样式 */
.XZFCbox ul li {
  cursor: pointer;
}

.XZFCbox ul li.active {
  font-weight: bold;
  border-bottom: 2px solid #000;
}

.XZFCbox li.active {
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/Group12.png) no-repeat;
}
.XZFCbox li.active .s13,
.XZFCbox li.active .s14 {
  color: #fff;
}
.XZFCbox li.active::before {
  width: 15px;
  height: 14px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/copy.png) no-repeat;
}
.main6 {
  padding-top: 60px;
  padding-bottom: 120px;
}
.mySwiper4 {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
.mySwiper4 .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-start;
}
.mySwiper4 .swiper-slide {
  margin-top: 0 !important;
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: calc((100% - 10px) / 2) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;

  margin-bottom: 36px;
}
.mySwiper41 .swiper-button-next {
  width: 32px;
  height: 32px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/right.png) no-repeat;
  top: 50%;
  right: -5%;
  background-size: cover;
}
.mySwiper41 .swiper-button-next:hover {
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/righton.png) no-repeat;
  background-size: cover;
}
.mySwiper41 .swiper-button-prev {
  top: 50%;
  left: -5%;
  width: 32px;
  height: 32px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/left.png) no-repeat;
  background-size: cover;
}
.mySwiper41 .swiper-button-prev:hover {
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/lefton.png) no-repeat;
  background-size: cover;
}
.mySwiper41 {
  position: relative;
}
.mySwiper4 .swiper-slide img {
  width: 220px;
  height: 220px;
  transition: transform 0.5s ease;
}

.mySwiper4 .swiper-slide img:hover {
  transform: scale(1.2);
  box-shadow: 0px 12px 30px 0px rgba(196, 209, 222, 0.3);
}
footer {
  padding-top: 30px;
  padding-bottom: 10px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/51.png) no-repeat;
  background-size: cover;
}
.flogo {
  margin-bottom: 50px;
}
.s18 {
  color: #ccc;
  font-family: PingFang SC;
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
}
.Fbox1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.QLIKES {
  display: flex;
  align-items: center;
}
.QLIKES li {
  color: rgb(203, 177, 128);
  font-family: PingFang SC;
  font-size: 12px;
  font-weight: 400;
  padding: 8px;
  border: 1px solid rgb(255, 255, 255, 0);
  margin-left: 15px;
}
.QLIKES .EWMimg2:hover {
  box-sizing: border-box;

  border-radius: 2px;
  backdrop-filter: blur(27.18px);
  background: rgb(255, 255, 255, 0.1);
}
.EWMimg {
  width: 118px;
  height: 118px;
}
.list-item {
  position: relative;
  display: inline-block; /* 确保图片相对于文字定位 */
  padding: 10px; /* 可根据需要调整 */
  cursor: pointer;
}

.EWMimg {
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translate(-50%, 100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  display: block;
}

.list-item:hover .EWMimg {
  transform: translate(-50%, 0); /* 从下方移动到正下方 */
  opacity: 1; /* 图片可见 */
}
.footer2 {
  background: #7e0014;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  text-align: center;
}

.EWMimg1 {
  padding: 20px;
  width: 130px;
  height: 140px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/scan_bg.png) no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
.EWMimg2 {
  color: rgb(203, 177, 128);
  font-family: PingFang SC;
  font-size: 16px;
  font-weight: 400;
  padding: 8px;
  border: 1px solid rgb(255, 255, 255, 0);
  margin-left: 15px;
}
.EWMimg1 {
  position: absolute;
  top: 50px;
  left: 50%;

  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}
.list-item:hover .EWMimg1 {
  transform: translate(-50%, 0); /* 从下方移动到正下方 */
  opacity: 1; /* 图片可见 */
}

.s19 {
  color: rgb(51, 51, 48);
  font-family: 思源黑体;
  font-size: 36px;
  font-weight: 700;
  line-height: 52px;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.s20 {
  color: rgb(203, 177, 128);
  font-family: 思源黑体;
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
}
.s191::before {
  position: absolute;
  content: "";
  bottom: -5px;
  width: 165px;
  height: 60px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/Path4.png) no-repeat;
  background-size: cover;
  z-index: 999;
}
.TitleAll {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.s21 {
  position: relative;
}
.s22 {
  position: relative;
}
.s21::before {
  position: absolute;
  content: "";

  width: 156px;
  height: 40px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/Group2Copy3.png) no-repeat;
  background-size: cover;
  z-index: 999;
  left: -13px;
  top: 100%;
}
.s22::before {
  position: absolute;
  content: "";

  width: 240px;
  height: 40px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/Path41.png) no-repeat;
  background-size: cover;
  z-index: 999;
  left: -23px;
  top: 100%;
}
.s300{
color: rgb(0, 0, 0);
font-family: 思源黑体;
font-size: 14px;
font-weight: 700;
line-height: 20px;
}

.QLIKES {
  display: flex;
  align-items: center;
}
.QLIKES li {
  color: rgb(203, 177, 128);
  font-family: PingFang SC;
  font-size: 12px;
  font-weight: 400;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0);
  margin-left: 15px;
  transition: all 0.3s ease;
}
.QLIKES li.active .EWMimg2 {
  box-sizing: border-box;
  border-radius: 2px;
  backdrop-filter: blur(27.18px);
  background: rgb(255, 255, 255, 0.1);
}
.footer3{
display:none;
}
.EWMimg {
  width: 118px;
  height: 118px;
}
.list-item {
  position: relative;
  display: inline-block;
  padding: 10px;
  cursor: pointer;
}

.list-item.active .EWMimg,
.list-item:hover .EWMimg {
  transform: translate(-50%, 0);
  opacity: 1;
}
.QLIKES li.active .EWMimg1 {
  transform: translate(-50%, 0);
  opacity: 1;
}
.menu-item:hover .sub-menu {
  display: block;
}
.menu-item:hover {
  border-bottom: 1px solid rgb(126, 0, 20);
}

.mySwiperbanner {
  width: 100%;
  height: 100vh; /* 初始高度为全屏 */
}
.mySwiperbanner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-top: 130px;
}
.HWXXMedia{
 display:none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
.mySwiperbanner .swiper-button-prev {
  width: 52px;
  height: 52px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/btn_left.png) no-repeat;
  background-size: cover;
  left: -4px;
  opacity: 0.3;
  transition: 0.3s;
}
.mySwiperbanner .swiper-button-next {
  width: 52px;
  height: 52px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/btn_right.png) no-repeat;
  background-size: cover;
  right: -4px;
  opacity: 0.3;
  transition: 0.3s;
}
.mySwiperbanner .swiper-button-prev:hover {
  opacity: 0.8;
}
.mySwiperbanner .swiper-button-next:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1499px) {
  .inner {
    width: 100%;
    padding: 0 20px!important;
  }
  .inner2 {
    padding: 0 20px;
    width: 100%;
  }
}

@media screen and (max-width: 1399px) {
  .swiper-container .swiper-slide img {
    width: 100%;
  }
}
@media screen and (max-width: 999px) {
  body.list .d2 {
    display: flex !important;
  }

  .mySwiperbanner,
  .mySwiperbanner .swiper-wrapper,
  .mySwiperbanner .swiper-slide img {
    height: 300px !important;
  }
  .BQH {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translateX(0%);
    background: rgb(243, 243, 248);
    padding: 20px;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
}
  .BQH li {
    background:#fff;
    margin-bottom: 20px;
  }
  .BQH .f_middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap:wrap;
  }
  .BQH .f_middle li {
    width: 48%;
  }
}
@charset "UTF-8";
/**
 * [xLarge Screen for PC]
 * >=1200
 */
@media screen and (max-width: 1920px) {
  .jj {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: justify;
    padding-right: 25px;
    line-height: 24px;
  }
}
/**
 * [Large Screen for PC & Pad]
 * 960~1199
 */
@media screen and (max-width: 1500px) {
  .head1 .banner .item img {
    width: 100vw;
    background-size: cover;
    height: 100% !important;
  }
  .whhd_list .news_list .con .top {
    width: 250px;
  }
  .whhd_list .news_list .con .top .pic img {
    object-fit: cover;
  }
  .whhd_list .news_list .con .top .pic {
    height: 302px;
    padding-top: 0;
  }
  .ContentImglist .inner .right .item .l {
    z-index: 1;
    height: 2vw;
    text-align: center;
  }

  .ContentImglist .inner .right .item:hover .l .day {
    font-size: 1vw;
  }
  .jj {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: justify;
    padding-right: 25px;
    font-size: 14px;
    line-height: 24px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 1450px) {
  #mh .navbar_nav li a {
    padding: 0 21px;
  }
  .ContentImglist .inner .right .item .l .day {
    margin-top: 0.5vw;
    font-size: 1vw;
  }
}
@media screen and (max-width: 1299px) {
  .ImgContentlist .inner .right .list .item {
    height: auto;
  }
  .ContentMain .inner .left .list .item {
    height: auto;
  }
  .ContentSimplelist .inner .left .list .item {
    height: auto;
  }
  .ContentImglist .inner .right .item .l .day {
    margin-top: 0;
  }
  #mh .navbar_nav li a {
    padding: 0 15px;
  }
  .nav_main .con {
    margin: 0 1.4vw;
  }
  .wrapper .inner {
    width: 100%;
    margin: 0 auto;
  }
  .wrapper .inner .mod {
    width: auto;
    padding: 0 8px;
  }
  .nav .wp-menu .menu-item {
  }
  .nav .wp-menu .menu-item a.menu-link {
  }
  .header .sitelogo img {
    width: 80%;
    margin: 0 auto;
  }
  .main1 .ml,
  .main1 .mr {
    width: 100%;
    float: none;
    border: none;
  }

  .main1 .post-13 {
    padding: 0;
  }
  .main1 .more_btn {
    bottom: 15px;
  }
  .mbanner .dot-inner {
    width: 100%;
  }
  .post-13 li.news {
    width: 50%;
    float: left;
  }
  .post-13 li.news.n4 {
    border-bottom: 1px solid #cdcdcd;
  }
  .main2 .ml {
    width: 35%;
  }
  .main2 .mr {
    width: 64%;
  }
  .main4 .ml {
    width: 58%;
  }
  .main4 .mr {
    width: 41%;
  }
  /*links*/
  .botlinks .links-wrap {
    margin: 4px 5px;
  }
  /*banner*/
}
@media screen and (max-width: 1440px) {
  .list1_pic ul {
    position: relative;
    margin: 0 -14px;
  }
  .list1_pic .post_box {
    padding: 0 14px;
  }
  .list2_pic li {
    width: 33.3%;
  }
  .DisplayImglist .inner .top .title {
    color: #26447b;
    font-weight: bold;
    line-height: 26px;
    font-size: 26px;
    padding-left: 16px;
    border-left: 0.5vw solid #26447b;
    width: 20%;
    float: left;
    position: absolute;
    margin-top: -1.7%;
  }
  /*
.bt1 {
    margin-top: 2%;
    margin-left: -47%;
    font-size: 22px;
    color: #26447b;
}
*/
  #mh .navbar_nav li.dropdown .dropdown_menu a {
    font-size: 12px;
    color: #232323;
    padding: 0 0px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    margin-bottom: 2px;
  }
  #mh .navbar_nav li.dropdown .dropdown_menu {
    display: none;
    position: absolute;
    top: 50px;
    width: 100%;
    background: #fff;
    box-shadow: 0 15px 27px 0 rgb(167 165 165 / 38%);
    width: 150%;
    left: -25%;
  }
  .col_list .wp_listcolumn .wp_column a.selected {
    background: #26447b;
    color: #fff !important;
    margin: 1% 20% 1% 8%;
    width: auto;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
}
@media screen and (max-width: 1280px) {
  .jj {
    line-height: 20px;
  }
  .tb1 {
    margin-left: -41%;
  }
  .DisplayImglist .inner .top .title {
    margin-top: -1.9%;
  }
  .BigBanner .inner div.title {
    max-width: 45vw;
  }
}
@media screen and (max-width: 1140px) {
  .col_list .wp_listcolumn .wp_column a.selected {
    background: #26447b;
    color: #fff !important;
    margin: 1% 20% 1% -3%;
    width: auto;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
  }
  #mh .navbar_nav li a {
    padding: 0 12px;
  }
  .tb1 {
    margin-left: -27%;
  }
  .DisplayImglist .inner .top .title {
    margin-top: -2.3%;
  }
}
/**
 * [Medium Screen for Pad]
 * 768~959
 */
@media screen and (max-width: 999px) {

.s2 {
    color: rgb(0, 0, 0);
    font-family: 思源黑体;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    margin-left: 10px;
}
.head2 .d2 {
    padding: 0 0 0 5%;
    width: 100%;
    background: #002147;
    height: 72px;
    display: flex
;
}
.head2 #sh{
background: rgb(126, 0, 20);

}
.head2 .d2{
background: rgb(126, 0, 20);
}
.swiper-container .swiper-button-next {
    right: 25%;
}
.swiper-container .swiper-button-prev{
    left: 25%;
}

.XZFCbox li{
padding:10px;
}





.mySwiper1 .swiper-pagination {
    left: 0% !important;
 bottom:40px;
}
.mySwiper2 .swiper-pagination {
    left: 0% !important;
 bottom:40px;
}
.mySwiper3 .swiper-pagination {
    left: 0% !important;
 bottom:40px;
}

.MSbox{
width:100%;

}
.MSimg{
width:100%;
height:  300px;

}
.mySwiper1 .swiper-slide a {
    display: flex;
    align-items: center;
    flex-direction: column;
 
}
.mySwiper2  .swiper-slide a {
    display: flex;
    align-items: center;
    flex-direction: column;
 
}
.mySwiper3 .swiper-slide a {
    display: flex;
    align-items: center;
    flex-direction: column;
 
}





.XZFCbox li::before {
    content: "";
    width: 9.91px;
    height: 14px;
    background: url(/_upload/tpl/00/50/80/template80/imagesYL/11x.png);
    position: absolute;
    right: 4px;
    top: 20px;
}
.s13 {
    color: rgb(51, 51, 51);
    font-family: 微软雅黑;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}
.HWXXMediaimg2 img{
margin-right:10px;
}
.main3 .inner{
padding:0;
}
.XMbox{
padding:20px;
background:#fff;
}
.main3{
min-height:0;
    padding-top: 10px;
    padding-bottom: 10px
}
.HWXXBox {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
   padding:20px;
}
.HWXXBox li{
width:100%;
}
.M3BOX{
display:none;
}
.HWXXMedia{
        display: flex;
        flex-direction: column;
        align-items: center;

}
.HWXXMedia li{
margin-bottom:20px;
}
    .HWXXMediaimg1 {
             width: 115px;
        height: 80px;
        background: rgba(22, 36, 135, 0.5) url(imagesYL/hwxx1.png) bottom no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
    }
    .HWXXMediaimg12 {
               width: 115px;
        height: 80px;
        background: url(/_upload/tpl/00/50/80/template80/imagesYL/hwxx2.png) bottom no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
    }
    .HWXXMediaimg13 {
              width: 115px;
        height: 80px;
        background: rgba(22, 36, 135, 0.5) url(imagesYL/hwxx3.png) bottom no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
    }
    .HWXXMediaimg14 {
              width: 115px;
        height: 80px;
        background: url(/_upload/tpl/00/50/80/template80/imagesYL/hwxx4.png) bottom no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
    }
    .HWXXMediaimg15 {
               width: 115px;
        height: 80px;
        background: rgba(22, 36, 135, 0.5) url(imagesYL/hwxx5.png) bottom no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
    }
    .HWXXMediaimg16 {
               width: 115px;
        height: 80px;
        background:   url(/_upload/tpl/00/50/80/template80/imagesYL/hwxx6.png) bottom no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
    }




  .layer {
    width: 30%;
    margin-left: 67%;
  }
  .search_box .searchKeyword {
    height: 40px;
    line-height: 40px;
  }
  .layer .con {
    padding: 10% 12%;
  }
  ::-webkit-input-placeholder {
    color: #333;
    opacity: 0.6 !important;
    font-size: 16px;
  }
  .search_box .serachSubmit,
  .tijiao {
    width: 36px;
    height: 36px;
    background-size: 17px;
  }
  .layer .con .navitem {
    margin-top: 40px;
  }
  .layer .con .navitem .tt {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .layer .con .navitem li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .list1_pic li {
    width: 50%;
    margin-bottom: 20px;
  }
  .list1_pic .post_box .titwz {
    font-size: 14px;
    line-height: 24px;
    height: 48px;
  }

  .whhd_list .news_list .con .top {
    float: none;
    width: 100%;
    overflow: initial;
  }
  .BigBanner .inner div.title {
    max-width: 50vw;
    width: 100%;
  }
  .column-switch {
    display: block;
  }

  .whhd_list .news_list .con .txt {
    left: 0;
    top: 0;
  }
  .DisplayImglist .inner .top .title {
    color: #26447b;
    font-weight: bold;
    line-height: 45px;
    font-size: 26px !important;
    padding-left: 16px;

    border-left: 0.5vw solid #26447b;
    width: 20%;
    float: left;
    position: absolute;

    margin-top: -4%;
  }
  /*
.bt1 {
    margin-top: 2%;
    margin-left: -55%;
    font-size: 22px;
    color: #26447b;
}
*/
  /*.DisplayImglist .left {
    width: 100%;
    float: left;

}*/
  .ytbu_sceneN .inner .p1 {
    top: 0 !important;
  }
  .ytbu_sceneN .inner .p2 {
    top: 0 !important;
  }
  .ytbu_special .r div {
    top: 0 !important;
  }

  .dcgs .BigBanner .inner .title {
    width: auto;
  }
  .DisplayImglist .inner .top .item img {
    height: auto;
    max-width: 100%;
  }
  .col_metas .col_path {
    display: inline-block;
    float: none;
    white-space: nowrap;
    font-size: 15px;
    height: 50px;
    line-height: 50px;
    color: #000;
  }
  .DisplayImglist .inner {
    width: 96%;
    margin: auto;
  }
  .DisplayImglist .inner .top .title {
    font-size: 18px;
  }
  /*.DisplayImglist .inner .top {
    width: 100%;
    height: auto;
    cursor: pointer;
}*/
  .DisplayImglist .inner .top .item {
    width: 100%;
    height: calc(100% + 8vw);
    margin: auto;
    position: relative;
    text-align: center;
    overflow: hidden;
  }
  .DisplayImglist .inner .bottom {
    width: 100%;
    margin-top: 0vw;
    position: relative;
  }
  .DisplayImglist .inner .bottom .pre {
    width: 3%;
    text-align: center;
  }
  .DisplayImglist .inner .bottom .next {
    width: 3%;
  }
  .DisplayImglist .inner .bottom .item {
    width: 90%;
    margin: 0 auto;
    left: 4%;
  }
  .ContentImglist {
    padding: 25px 0 50px 0;
  }
  .ContentImglist .inner {
    width: 96%;
    margin: auto;
    display: flex;
    justify-content: center;
  }
  .ContentImglist .inner .left {
    width: 30%;
  }

  .ContentImglist .inner .left .title {
    font-size: 18px;
    height: auto;
    padding: 10px 0;
  }
  .ContentImglist .inner .left .list .item .l .day {
    font-size: 16px;
  }
  .ContentImglist .inner .left .list .item .l .date {
    font-size: 12px;
  }
  .ContentImglist .inner .left .list .item {
    height: auto;
  }
  .ContentImglist .inner .left .list .item .r h3 {
    font-size: 14px;
  }
  .ContentImglist .inner .left .list .item .r {
    overflow: hidden;
    width: 100%;
    height: 100%;
    letter-spacing: 0.1vw;
  }
  .ContentImglist .inner .right .title {
    font-size: 18px;
  }
  .ContentImglist .inner .right .item {
    height: auto;
    width: 100%;
  }
  .ContentImglist .inner .right .item .l {
    z-index: 1;
    width: 40%;
    height: auto;
    text-align: center;
  }
  .ContentImglist .inner .right .item .m {
    z-index: 1;
    width: 50%;
    height: auto;
    padding: 2%;
  }
  .ContentImglist .inner .right .item .r {
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .ContentImglist .inner .right .item .l .day {
    font-size: 1vw;
  }
  .ContentImglist .inner .right .item .l .date {
    font-size: 12px;
  }
  .ContentImglist .inner .right .item .m h3 {
    font-size: 16px;
    line-height: 30px;
    height: auto;
  }

  .ImgContentlist .inner .right .list .item .r h3 {
    font-size: 16px;
  }
  .ImgContentlist .inner .left .item .head {
    font-size: 16px;
    padding: 10px 0;
  }
  .ImgContentlist .inner .left .item .CBox {
    width: 48%;
    margin: 1%;
    transition: all 0.5s ease 0s;
    box-shadow: -0.5vw -0.5vw 0.5vw #dadada;
  }
  .ImgContentlist {
    padding: 25px 0 50px 0;
  }
  .ImgContentlist .inner {
    width: 96%;
    margin: auto;
    display: flex;
    justify-content: center;
  }
  .ImgContentlist .inner .left {
    width: 66%;
    padding: 0 4% 0 0%;
    overflow: hidden;
  }
  .ImgContentlist .inner .right {
    width: 30%;
  }
  .ImgContentlist .inner .left .title {
    font-size: 18px;
  }
  .ImgContentlist .inner .right .title {
    font-size: 18px;
    height: auto;
    padding: 10px 0;
  }
  .ImgContentlist .inner .right .list .item .l .day {
    font-size: 16px;
  }
  .ImgContentlist .inner .right .list .item .l .date {
    font-size: 12px;
  }
  .ImgContentlist .inner .right .list .item .r {
    overflow: hidden;
    width: 100%;
    height: 100%;
    letter-spacing: 0.1vw;
  }
  .ContentVideolist .inner .right .videocontent {
    width: 100%;
    display: flex;
    padding: 0;
    flex-wrap: wrap;
  }
  .ContentVideolist .inner .right {
    width: 100%;
    padding: 0;
    overflow: hidden;
  }
  .ContentVideolist .inner .right .item {
    width: 31%;
    margin: 1%;
    box-shadow: -0.2vw -0.2vw 0.2vw #dadada;
    cursor: pointer;
  }
  .ContentVideolist .inner .right .item .bottom .tag {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    margin-top: -15px;
    left: 50%;
    margin-left: -15px;
  }
  .ContentVideolist .inner .right .item .bottom {
    overflow: hidden;
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 70%;
  }
  .ContentVideolist .inner .right .item .bottom img {
    transition: all 0.8s ease 0s;

    position: absolute;
    top: 0;
    left: 0;
  }
  .ContentVideolist .inner .right .item .top h3 {
    font-size: 16px;
    height: auto;
    line-height: 30px;
  }
  .ContentVideolist .inner .right .title {
    padding: 0;
    font-size: 20px;
  }
  .ContentVideolist {
    padding: 25px 0 50px 0;
  }
  .ContentVideolist .inner {
    width: 96%;
    margin: auto;
    display: block;
    justify-content: center;
  }
  .ContentMain .inner .left .title {
    font-size: 18px;
    padding: 10px 0;
  }
  .ContentMain .inner .left .list .item .r {
    width: 100%;
  }
  .ContentMain .inner .left .list .item .l .day {
    font-size: 16px;
  }
  .ContentMain .inner .left .list .item .l .date {
    font-size: 12px;
  }
  .ContentMain .inner .left .list .item .r h3 {
    font-size: 14px;
  }
  .ContentMain .inner .right .title {
    font-size: 20px;
    line-height: 25px;
  }
  .ContentMain .inner .right .stitle {
    font-size: 12px;
  }
  .ContentMain .inner {
    width: 96%;
    margin: auto;
    display: flex;
    justify-content: center;
  }
  .ContentMain .inner .left {
    width: 30%;
  }
  .ContentMain .inner .right {
    width: 66%;
    padding: 0 0% 0 4%;
  }
  .BigBanner .inner .title h3 {
    color: #ffffff;
    font-size: 20px;
    margin: 2vw;
  }
  .BigBanner .inner .title a {
    font-size: 12px;
  }
  .col_path .possplit {
    top: -5px;
  }
  .ContentSimplelist {
    padding: 0px 0 50px 0;
  }
  .ContentSimplelist .inner .left .title {
    font-size: 18px;
    height: auto;
    padding: 10px 0;
  }
  .ContentSimplelist .inner .left .list .item .l .day {
    font-size: 16px;
  }
  .ContentSimplelist .inner .left .list .item .l .date {
    font-size: 12px;
  }
  .ContentSimplelist .inner .left .list .item .r h3 {
    font-size: 14px;
  }
  .ContentSimplelist .inner .right .title {
    font-size: 18px;
  }
  .ContentSimplelist .inner .right .item .l .day {
    font-size: 16px;
  }
  .ContentSimplelist .inner .right .item .l .date {
    font-size: 12px;
  }
  .ContentSimplelist .inner .right .item .r h3 {
    font-size: 16px;
    height: auto;
    line-height: inherit;
  }
  .ContentSimplelist .inner .right .item .r h4 {
    font-size: 12px;
    height: auto;
  }
  .ContentSimplelist .inner .right .item {
    height: auto;
  }

  .BigBanner .inner .title {
    width: 96%;
    margin: 0 auto;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .ContentSimplelist .inner {
    width: 96%;
    margin: auto;
    display: flex;
    justify-content: center;
    padding-top: 30px;
  }
  .ContentSimplelist .inner .left {
    width: 30%;
  }
  .ContentSimplelist .inner .right {
    width: 66%;
    padding: 0 0% 0 4%;
    overflow: hidden;
  }
  .ContentSimplelist .inner .left .list .item .r {
    overflow: hidden;
    width: 100%;
    height: 100%;
    letter-spacing: 0.1vw;
  }

  body.list .d2 {
    display: flex !important;
  }
  .body.list .head2 {
    display: block !important;
  }
  body.list .head2 {
    display: block !important;
    position: relative !important;
    height: auto;
  }

  .ytbu_notice .inner .l .top {
    height: auto;
  }
  .ytbu_notice .inner .l .top .title .l {
    font-size: 25px;
    height: auto;
    line-height: inherit;
  }
  .ytbu_notice .inner .l .top .more .text {
    font-size: 16px;
  }
  .ytbu_notice .inner .l .top .more .text {
    font-size: 16px;
    right: 0;
  }
  .ytbu_research .inner .btm a {
    font-size: 25px;
  }
  .ytbu_research .inner .list .r h3 {
    font-size: 16px;
  }
  .ytbu_research .inner .list .r h4 {
    font-size: 13px;
    line-height: 25px;
    margin: 0;
  }
  .ytbu_human .inner .title .text {
    font-size: 25px;
  }
  .ytbu_human .inner h3 {
    font-size: 16px;
  }
  .ytbu_sceneN .inner .p1 .left h3,
  .ytbu_sceneN .inner .p2 .left h3,
  .ytbu_sceneN .inner .p3 .left h3,
  .ytbu_sceneN .inner .p4 .left h3,
  .ytbu_sceneN .inner .p5 .left h3 {
    font-size: 16px;
  }
  .ytbu_sceneN .inner .p1 .left,
  .ytbu_sceneN .inner .p2 .left,
  .ytbu_sceneN .inner .p3 .left,
  .ytbu_sceneN .inner .p4 .left,
  .ytbu_sceneN .inner .p5 .left {
    font-size: 16px;
    width: auto;
    height: auto;
    bottom: 5px;
  }
  .ytbu_sceneN .inner .p1 .left img,
  .ytbu_sceneN .inner .p2 .left img,
  .ytbu_sceneN .inner .p3 .left img,
  .ytbu_sceneN .inner .p4 .left img,
  .ytbu_sceneN .inner .p5 .left img {
    height: 35px;
  }
  .ytbu_special .r div h3 {
    font-size: 18px;
  }
  .ytbu_special .l .text {
    font-size: 25px;
  }
  .ytbu_number .inner .content .item .tag {
    width: 90px;
    height: 90px;
  }
  .ytbu_news .inner .title {
    font-size: 25px;
  }
  .ytbu_footer .bottom {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    font-size: 14px;
    background-color: #002147;
    color: #ffffff;
    position: relative;
    align-items: center;
  }
  .ytbu_footer .bottom .left {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 0;
  }
  .ytbu_footer .bottom .logo {
    display: block !important;
    width: 96%;
    text-align: center;
    margin: 0 auto !important;
  }
  .ytbu_footer .bottom .links {
    display: block;
    text-align: center;
    font-size: 12px;
    padding: 10px 0;
    line-height: 1.75;
  }
  .ytbu_footer .bottom .contact {
    margin: 0;
    font-size: 12px;
  }
  .ytbu_footer .bottom .share {
    width: 100%;
    margin: 0;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
  }
  .ytbu_footer .bottom .share .con {
    width: 80px;
    padding: 0 1vw 0 0;
    position: relative;
  }
  .ytbu_footer .bottom .logo img {
    width: 220px;
    margin: 3vw 0;
  }

  .ytbu_footer .bottom .share .con .tag {
    width: 65px;
    font-size: 14px;
  }
  .ytbu_footer .top .item {
    width: 96%;
    display: flex;
    margin-left: 0;
    height: auto;
    min-height: 5vw;
    line-height: 50px;
  }
  .ytbu_footer .top .item div {
    width: 25%;
    border-left: 1px solid #c6c6c6;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 0;
  }
  .ytbu_guide .inner {
    width: 96%;
    height: auto;
  }
  .ytbu_guide .inner .bottom .item {
    width: 25%;
    padding: 0;
    text-align: center;
  }
  .ytbu_guide .inner .bottom .item div {
    height: 30px;
    width: 30px;
  }
  .ytbu_guide .inner .bottom .item h3 {
    height: auto;
    font-size: 16px;
    text-align: center;
    margin-top: 1.5vw;
  }
  .ytbu_sceneN .inner .video1 img {
    top: 50% !important;
  }
  .ytbu_sceneN .inner .video1 video {
    object-fit: fill;
    width: 100%;
    height: 100%;
  }
  .ytbu_cooperate .inner .top .item {
    overflow: hidden;
    background-size: cover;
    width: 100%;
    height: 72vw;
    position: relative;
  }
  .ytbu_notice .inner {
    width: 96%;
    display: flex;

    height: auto;

    transition: all 0.8s ease 0s;
    flex-direction: column;
  }
  .ytbu_notice .inner .l {
    width: 100%;
    transition: none;
    margin: 0 !important;
  }
  .ytbu_cooperate .inner .bottom img {
    transition: none;
    cursor: pointer;
    width: 100%;
  }
  .ytbu_guide .inner .bottom .n1 .tag {
    transition: none;
  }
  .ytbu_guide .inner .bottom .n2 .tag {
    transition: none;
  }
  .whhd_list .news_list .con {
    overflow: initial;
  }
  a {
    transition: none;
  }
  .ytbu_cooperate .inner .top .images .item img {
    transition: none;
    cursor: pointer;
    width: 100%;
    height: 72vw;
  }
  .ytbu_cooperate .inner .bottom .p1 {
    transition: none;
    left: 0 !important;
  }
  .ytbu_cooperate .inner .bottom .p2 {
    transition: all 1s ease 0s;
    left: 0 !important;
  }

  .ytbu_cooperate .inner .bottom .p3 {
    transition: all 1s ease 0s;
    left: 0 !important;
  }
  .ytbu_cooperate .inner .bottom .p4 {
    transition: all 1s ease 0s;
    left: 0 !important;
  }

  .ytbu_notice .inner .r {
    width: 100%;
    margin-left: 0;
    margin: 0 !important;
  }
  .ytbu_notice .inner .l .bottom {
    height: auto;
  }
  .ytbu_notice .inner .l .bottom ul li {
    position: relative;
    line-height: 40px;
    height: 40px;
    overflow: hidden;
  }
  .ytbu_notice .inner .r .bottom {
    height: auto;
  }
  .ytbu_notice .inner .r .bottom .item {
    height: auto;
    line-height: 40px;
  }
  .ytbu_notice .inner .r .bottom .item .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 76%;
    font-size: 16px;
    display: block;
  }
  .ytbu_cooperate .inner .title {
    font-size: 25px;
  }
  .ytbu_cooperate .inner .top .images .item h3 {
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
  .ytbu_cooperate .inner .bottom h3 {
    font-size: 15px;
  }
  .ytbu_guide .inner .top {
    height: auto;
    font-size: 25px;
  }
  .ytbu_footer .top .item a {
    font-size: 14px;
  }

  .ytbu_notice .inner .l .bottom h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 76%;
    font-size: 16px;
  }
  .ytbu_notice .inner .l .bottom span {
    font-size: 14px;

    display: inline-block;
  }
  .ytbu_notice .inner .r .top {
    height: auto;
    margin: 20px 0;
  }
  .ytbu_notice .inner .r .top .title {
    font-size: 25px;
  }
  .ytbu_notice .inner .r .top .more .text {
    font-size: 16px;
    right: 0;
  }
  .ytbu_notice .inner .r .bottom .item .img h3 {
    font-size: 16px;
  }

  .ytbu_cooperate .inner {
    width: 96%;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .ytbu_cooperate .inner .top {
    position: relative;
    top: auto;
    left: -1vw;
    width: 100%;
    left: 0 !important;
    height: auto;
    overflow: visible;
    margin: 0;
    margin-top: 20px;
    transition: all 0.8s ease-in-out 0s;
  }
  .ytbu_cooperate .inner .bottom {
    width: auto;
    position: relative;
    right: 0;
    top: 0;
    margin: 0px -1%;
    display: block;
    justify-content: center;
  }
  .ytbu_cooperate .inner .bottom div {
    width: 48% !important;
    margin: 1% !important;
    height: auto !important;
    float: left;
  }
  .ytbu_cooperate .inner {
    padding-bottom: 10%;
  }
  .ytbu_cooperate .inner .btns {
    bottom: -2%;
  }
  .ytbu_cooperate .inner .top .images {
    display: block;
    width: 100%;
    height: 72vw;
    position: initial;
  }

  .ytbu_sceneN .inner .p1 {
    width: 33.3%;
    float: left;
    position: relative;
    height: 37.5vw;
    left: 0 !important;
    display: block;
  }
  .ytbu_sceneN .inner .p2 {
    width: 33.3%;
    height: 37.5vw;
    background-color: #001952;
    position: relative;
    left: 0 !important;
    top: 0;
    left: 30vw;
    overflow: hidden;
    transition: all 1.2s ease 0s;
    float: left;
  }
  .ytbu_sceneN .inner .p3 {
    width: 33.3%;
    height: 37.5vw;
    background-color: #001652;
    position: relative;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden;
    transition: all 1.7s ease 0s;
    float: left;
  }
  .ytbu_sceneN .inner .p4 {
    width: 33.3%;
    height: 37.5vw;
    background-color: #001552;
    position: relative;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden;
    transition: all 2.2s ease 0s;
    float: left;
  }

  element.style {
  }
  .ytbu_sceneN .inner .p5 {
    width: 33.3%;
    height: 37.5vw;
    background-color: #ffffff;
    position: relative;
    top: 0vw;
    left: auto;
    overflow: hidden;
    transition: all 0.5s ease 0s;
    float: left;
  }
  .ytbu_sceneN .inner .p1 .img,
  .ytbu_sceneN .inner .p2 .img,
  .ytbu_sceneN .inner .p3 .img,
  .ytbu_sceneN .inner .p4 .img,
  .ytbu_sceneN .inner .p5 .img {
    width: 100%;
    transition: all 0.5s ease 0s;
    height: 100%;
  }
  .ytbu_sceneN .inner .video1 {
    width: 33.3%;
    height: auto;
    height: 37.5vw;
    position: relative;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden;
    float: left;
  }
  .ytbu_sceneN {
    height: auto;
  }

  .ytbu_sceneN .inner {
    width: 96%;
    margin: 0 auto;
    height: auto;
    background-color: #002147;
  }
  .ytbu_human .inner {
    width: 96%;
    height: auto;
  }
  .ytbu_human .inner .title {
    width: 100%;
    position: relative;
    top: auto;
    right: 0;
    text-align: center;
  }
  .ytbu_human .inner .top {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
    transition: all 0.8s ease 0s;
    top: 0 !important;
  }
  .ytbu_human .inner .btm {
    width: 100%;
    height: auto;
    position: relative;
    bottom: 0;
    right: 0;
    overflow: hidden;
    transition: all 0.8s ease 0s;
    margin-top: 10px;
    bottom: 0 !important;
  }
  .ytbu_research .inner {
    width: 96%;
    margin: auto;
    display: flex;
    z-index: 1;
    position: relative;
    height: auto;
    overflow: hidden;
    flex-direction: column;
  }
  .ytbu_research .inner .btm {
    position: inherit;
    left: auto;
    bottom: auto;
    width: 100%;
  }
  .ytbu_research .inner .top {
    position: relative;
  }
  .ytbu_research .inner .top .item {
    overflow: hidden;
    background-size: cover;
    width: 100vw;
    position: relative;
  }
  .ytbu_research .inner .list {
    position: relative;
    bottom: 0;
    right: 0;
    height: auto;
    width: 89vw;
    display: flex;
    z-index: 2;
    padding: 3vw 3.5vw;
    background-color: #002147;
  }
  .ytbu_research .inner .left,
  .ytbu_research .inner .right {
    top: 24vw;
  }
  .ytbu_research .inner .left,
  .ytbu_research .inner .right {
    font-size: 3vw;
  }
  .ytbu_special .r div span {
    right: 1vw;
    height: auto;
    font-size: 16px;
    width: auto;
  }
  .ytbu_special .inner {
    width: 96%;
    margin: 0 2%;
    display: flex;
    max-height: 100%;
  }
  .ytbu_special .r div {
    width: 20vw;
  }
  .ytbu_special .r div img {
    width: 20vw;
  }
  .ytbu_news .btns {
    text-align: center;
    padding: 10px 0px;
  }
  .more_all a .icon {
    min-width: 200px;
    height: 50px;
    background-size: 100%;
  }
  .ytbu_number .inner {
    width: auto;
    margin: 0 2%;
  }
  .ytbu_number .inner .content {
    color: #ffffff;
    font-size: 2vw;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ytbu_number .inner .content .item {
    width: 50%;
    margin-bottom: 20px;
  }
  .ytbu_number .inner .content .item .number {
    margin-bottom: 2vw;
  }
  .ytbu_news .btm .r {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 0 1vw;
  }
  .ytbu_news .btm .r .con {
    width: calc(98% / 2);
    height: auto;
  }
  .ytbu_news .btm .r .con div {
    margin: 10%;
    font-size: 16px;
  }
  .ytbu_news .top .l h3 {
    font-size: 16px;
  }
  .ytbu_news .btm .l h3 {
    font-size: 16px;
  }
  .ytbu_number .inner .content .item .number {
    font-size: 36px;
  }
  .ytbu_number .inner .content .item .declare {
    font-size: 16px;
  }

  .ytbu_news .btm .l {
    overflow: hidden;
    width: 100%;
    height: auto;
    position: relative;
    padding: 0;
    cursor: pointer;
    margin-top: 20px;
  }

  .ytbu_news .btm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .ytbu_news .btm .l img {
    height: 100%;
    width: 100%;
  }
  .ytbu_news .inner {
    width: auto;
    margin: 0 2%;
  }
  .ytbu_news .top {
    display: flex;
    margin-bottom: 15px;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .ytbu_news .top .l {
    overflow: hidden;
    width: 100%;
    height: auto;
    position: relative;
    cursor: pointer;
    margin-bottom: 20px;
  }
  .ytbu_news .top .r {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 0 1vw;
  }
  .ytbu_news .top .r .con {
    width: calc(98% / 2);
    height: auto;
  }
  .ytbu_news .top .r .con div {
    margin: 10%;
    font-size: 16px;
  }
  .maincontent {
    margin-top: 0px !important;
  }
  .head2 #sh {
    padding: 0 0%;
  }
  .nav_r {
    width: 50%;
  }
  .nav_l {
    width: 50%;
  }

  .head1 #sh {
    z-index: 2;
    font-size: 14px;
    background: #002147;
    color: #ffffff;
    line-height: 45px;
    height: 45px;
    transition: all 0.2s ease-out 0s;
    overflow: hidden;
    display: flex;
    width: 100%;
    padding: 0 0%;
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
  }
  .nav_r {
    margin-right: 2%;
  }
  .wp-search .search-input input.search-title {
    width: 100%;
  }
  .nav_r {
    display: flex;
  }
  .searchbtn {
    width: 32px;
    height: 32px;
  }
  .searchbtn img {
    width: 17px;
    height: 17px;
  }
  .nav_l {
    margin-left: 2%;
  }
  .head1 .d2 .logo {
    margin-left: 2%;
  }
  .head1 .d2 {
    padding: 2% 0 0 0% !important;
  }
  .nav_mobile .head {
    padding: 2% 5%;
  }
  .head2 .d2 {
    padding: 2% 3%;
    width: auto;
  }
  div#mh {
    display: none !important;
  }
  .d1 {
    display: block !important;
  }
  .logo {
    margin-left: 0%;
    height: auto;
  }
  #footer .inner .foot-right .address {
    text-align: center;
  }
  #footer .inner .foot-left .news_list {
    text-align: center;
  }
  #footer .inner .foot-left li.news {
    float: none;
    display: inline-block;
    margin: 0 13px;
  }
  #footer .inner .foot-left .tit {
    float: none;
  }
  #footer .inner .foot-left .tt {
    text-align: center;
  }
  .post-40 .more_btn {
    top: -9px;
    bottom: auto;
    border: none;
    right: 0;
    width: auto;
  }
  .post-22 .titbox ul {
    margin-left: 0;
  }
  .post-22 .imgbox {
    display: none !important;
  }
  .wrapper .inner {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .main1 .ml {
    margin-bottom: 20px;
  }
  .ml .post-11 {
    width: auto;
  }
  .navi-aside-toggle,
  .navi-aside-search {
    display: block;
  }
  #header {
  }
  .logobox {
    position: static;
    margin: 0;
  }
  .logobox img {
    display: block;
    margin: 0 auto;
  }
  #header .site-lang {
    display: none;
  }
  #header .inner {
    padding-bottom: 10px;
    height: auto;
    position: relative;
    background: none;
  }
  .header .head-left {
    float: none;
    display: inline-block;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .header .sitelogo {
    float: none;
    margin-top: 0px;
  }
  .header .sitelogo a {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
  }
  .header .sitelogo img {
    width: auto;
  }
  .header .sitetitle {
    margin-top: 38px;
    font-size: 28px;
  }
  .header .head-main {
    display: none;
  }
  .header .head-right {
    float: none;
    width: 100%;
    margin-top: 0px;
  }
  .header .head-right .searchbox {
    margin: 5px 0px;
    width: 100%;
  }

  /*导航样式：后台绑定时也可以定义配置*/
  .wp-navi .wp-menu {
    display: none;
  }
  .wp-navi-slide .navi-slide-head {
    display: block;
    padding: 0 10px;
    height: 40px;
  }
  .wp-navi-slide .wp-menu {
    background: #fff;
  }
  .wp-navi-slide .wp-menu .menu-item {
    display: inline-block;
    float: none;
    position: relative;
    z-index: 100;
    width: 100%;
    padding-left: 0px;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  .wp-navi-slide .wp-menu .menu-item .menu-switch-arrow {
    display: block;
    width: 38px;
    height: 38px;
    position: absolute;
    right: 6px;
    top: 1px;
    background: url(/_upload/tpl/00/50/80/template80/css/img/icons.png) no-repeat 10px -116px;
  }
  .wp-navi-slide .wp-menu .menu-item a.menu-link {
    display: block;
    padding: 0 20px;
    line-height: 40px;
    color: #343434;
    font-size: 14px;
  }
  .wp-navi-slide .wp-menu .menu-item a.menu-link.hover,
  .wp-navi-slide .wp-menu .menu-item.hover a.menu-link,
  .wp-navi-slide .sub-menu .sub-item.hover > a,
  .wp-navi-slide .sub-menu .sub-item a:hover {
    text-decoration: none;
    color: #000;
    background-color: #eee;
  }
  .wp-navi-slide .sub-menu {
    display: none;
    position: relative;
    left: 0;
    bottom: 0px;
    top: 0px;
    min-width: 0px;
    z-index: 100;
    background: #fff;
    opacity: 0.8;
  }
  .wp-navi-slide .sub-menu .sub-item {
    position: relative;
    white-space: nowrap;
    vertical-align: top;
    border-bottom: 1px solid #eee;
  }
  .wp-navi-slide .sub-menu .sub-item a {
    display: block;
    color: #000;
    height: auto;
    line-height: 40px;
    padding: 0 36px;
    font-size: 14px;
    background: none;
  }
  .wp-navi-slide .sub-menu .sub-item a:hover {
    color: #000;
    background-color: #eee;
    display: block;
  }
  .wp-navi-slide .sub-menu .sub-menu {
    left: 0;
    top: 0;
  }
  .wp-navi-slide .sub-menu .sub-menu .sub-item a {
    padding: 0 52px;
  }

  .mbanner .focus .focus-title-bar {
    /* display:none!important; */
  }
  .mbanner .focus-title {
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #banner .box-zx {
    display: none;
  }
  .main2 .inner {
    padding: 30px 0;
  }
 
  .post-30 .more_btn {
    bottom: 40px;
  }
  .main2 .ml,
  .main2 .mr {
    width: 100%;
    float: none;
    border: none;
  }
  .main4 .ml,
  .main4 .mr {
    width: 100%;
    float: none;
    border: none;
  }
  .main2 .mr {
    margin-top: 30px;
  }
  .main5 .inner {
    padding: 40px 0;
  }
  .post-40,
  .post-41 {
    padding: 0;
    position: relative;
  }
  .post-40 .news_imgs {
    border: none;
    height: auto;
    padding-right: 0;
  }
  .post-41 .more_btn {
    /* bottom:50px; */
    top: -9px;
    bottom: auto;
    border: none;
    right: 0;
    width: auto;
  }
  .post .tt .tit {
    font-size: 18px;
  }
  #videoAlert .video_box {
    /**width:100%;margin-left: 0;**/
  }
  .bofang_box img {
    width: 50px;
  }
  .bofang_box {
    margin-left: -25px;
    margin-top: -25px;
  }
  .post-30 .news_imgs,
  .post-50 .news_imgs {
    height: auto;
  }
  #footer .inner {
    background: none;
  }
  #footer .inner .foot-right,
  #footer .inner .foot-left,
  #footer .inner .foot-mid {
    width: 50%;
    border: none;
    margin: 0 auto;
    float: none;
  }
  #footer .inner .foot-mid {
  }
  #footer .inner .foot-left p {
    text-align: center;
  }
  #footer .inner .foot-right .con {
    float: none;
  }

  .shares ul {
    display: inline-block;
    width: auto;
    margin: 0 auto;
    float: none;
  }

  /**友情链接**/
  .botlinks .links-wrap {
    float: none;
    display: inline-block;
    margin: 4px 0px;
    width: 100%;
  }
  .botlinks .links-wrap .link-items {
    min-width: 100%;
  }

  /*图列表*/
  .news_tu .news_list li.news {
    width: 33.3%;
  }
}
/**
 * [Small Screen for Smart Phone and Mini Pad]
 * 480~767
 */
@media screen and (max-width: 850px) {
  .maincontent {
    margin-top: 0px !important;
  }

  body.list .maincontent {
    margin-top: 0px !important;
  }
}
@media screen and (max-width: 767px) {
footer{
display:none;
}
.footer2{
display:none;
}
.footer3 {
display:block;
  padding-top: 30px;
  padding-bottom: 10px;
  background: url(/_upload/tpl/00/50/80/template80/imagesYL/51.png) no-repeat;
  background-size: cover;
}
.Fbox11 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.Fbox11 .flogo {
  width: 100%;
  padding-bottom:30px;
  border-bottom: 1px solid   rgb(255, 255, 255,0.7);
}
.EWMbox{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.EWMbox li{
  width: 23%;
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
}
.EWMbox li img{
  width: 100%;

}
  .layer {
    margin: 0 0;
    width: 100%;
    position: fixed;
    height: 100%;
  }
  /*

.bt1 {
    margin-top: 2%;
    margin-left: -36%;
    font-size: 22px;
    color: #26447b;
}
.DisplayImglist .inner .top .title {
    color: #26447b;
    font-weight: bold;
    line-height: 36px;
    font-size: 26px !important;
    padding-left: 16px;
    border-left: 0.5vw solid #26447b;
    width: 20%;
    float: left;
    position: absolute;
    margin-top: -4%;
}
*/
  .whhd_list .news_list .con .top .pic {
    height: auto;
    padding-top: 66%;
  }
  .whhd_list .news_list .con .txt {
    padding: 20px;
  }
  .DisplayImglist .inner .top {
    width: 100%;
    height: auto;
    cursor: pointer;
    padding: 0;
    border: none;
  }
  .DisplayImglist .left {
    width: 100%;
    float: left;
  }
  .DisplayImglist .inner .top .item img {
    height: auto;
    max-width: 100%;
  }
  span#num_xs2 {
    display: inline-block;
  }
  .ContentMain {
    padding: 0 0;
  }
  span#num_tsg2 {
    display: inline-block;
  }
  span#num_hj2 {
    display: inline-block;
  }
  span#num_lxs2 {
    display: inline-block;
  }
  span#num_xs {
    display: none;
  }
  span#num_tsg {
    display: none;
  }
  span#num_hj {
    display: none;
  }
  span#num_lxs {
    display: none;
  }
  .r_imgs1 img {
    width: 100%;
    height: auto;
    float: none;
    padding-bottom: 20px;
  }
  .r_imgs2 img {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }
  .r_imgs3 img {
    width: 100%;
    height: auto;
    float: left;
    padding-bottom: 20px;
  }
  .r_imgs4 img {
    width: 100%;
    height: auto;
    float: left;
    padding-bottom: 20px;
  }
  .r_imgs5 img {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }
  .r_imgs6 img {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }
  .dcgs .ContentSimplelist .inner .left {
    width: 100%;
  }
  span.hengx {
    display: none;
  }
  span.hengx2 {
    display: none;
  }
  .dcgs .col_menu .col_menu_head h3.col_name .col_name_text {
    padding: 0;
    text-align: center;
    font-size: 20px;
  }
  .ContentImglist .inner {
    width: 96%;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .ContentImglist .inner .left {
    width: 100%;
    margin-top: 15px;
  }
  .ContentImglist .inner .right {
    width: 100%;
    padding: 0;
    overflow: hidden;
  }
  .ContentImglist .inner .right .item .m h4 {
    height: auto;
    line-height: 20px;
  }
  .ImgContentlist .inner .left {
    width: 100%;
    padding: 0;
    overflow: hidden;
  }
  .ImgContentlist .inner .right {
    width: 100%;
    margin-top: 30px;
  }
  .ImgContentlist .inner {
    width: 96%;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .ImgContentlist .inner .left .item .CBox {
    width: 98%;
    margin: 1%;
    transition: all 0.5s ease 0s;
    box-shadow: -0.5vw -0.5vw 0.5vw #dadada;
  }
  .ContentVideolist .inner .right .item {
    width: 48%;
    margin: 1%;
    box-shadow: -0.2vw -0.2vw 0.2vw #dadada;
    cursor: pointer;
  }
  .ContentMain .inner {
    width: 96%;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .ContentMain .inner .left {
    width: 100%;
    margin-top: 50px;
  }
  .ContentMain .inner .right {
    width: 100%;
    padding: 0;
    border: 0;
  }
  .ContentSimplelist .inner {
    width: 96%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ContentSimplelist .inner .right {
    width: 100%;
    padding: 0;
    overflow: hidden;
  }
  .ContentSimplelist .inner .left {
    width: 100%;
    margin-top: 30px;
  }
  .ContentSimplelist .inner .right .item .r {
    overflow: hidden;
    padding: 0 1vw;
    height: 100%;
    width: 100%;
  }
  .ContentSimplelist .inner .right .item {
    height: auto;
    padding: 10px 0;
  }
  .head2 .d2 .tools .menu .i {
    width: 25px;
    border-bottom: 2px solid #ffffff;
    margin-bottom: 7px;
  }
  .ytbu_footer .top .item {
    width: 96%;
    display: flex;
    margin-left: 0;
    height: auto;
    min-height: 5vw;
    line-height: 50px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ytbu_footer .top .item div {
    width: 50%;
    border-left: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 0;
  }
  .ytbu_research .inner .left,
  .ytbu_research .inner .right {
    top: 27vw;
  }
  .ytbu_sceneN .inner .p1 .left,
  .ytbu_sceneN .inner .p2 .left,
  .ytbu_sceneN .inner .p3 .left,
  .ytbu_sceneN .inner .p4 .left,
  .ytbu_sceneN .inner .p5 .left {
    width: auto;
  }
  .ytbu_special .r {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  .ytbu_special .r div {
    cursor: pointer;
    height: auto;
    overflow: hidden;
    margin: 1vw 1vw;
    background-color: #000000;
    position: relative;
    transition: none;
    width: 44vw;
    float: left;
  }
  .imgScale {
    animation: none;
  }
  .ytbu_sceneN .inner .p1 .img,
  .ytbu_sceneN .inner .p2 .img,
  .ytbu_sceneN .inner .p3 .img,
  .ytbu_sceneN .inner .p4 .img,
  .ytbu_sceneN .inner .p5 .img {
    width: 100%;
    transition: none;
    height: 100%;
  }
  .ytbu_special .r div img {
    width: 44vw;
    height: auto;
    transition: all 0.8s ease 0s;
  }
  .ytbu_special .inner {
    width: 96%;
    margin: 0 2%;
    display: flex;
    max-height: 100%;
    flex-direction: column;
  }
  .ytbu_special .l {
    width: 100%;
    text-align: center;
    padding-top: 0px;
  }
  .ytbu_human {
    padding: 10px 0;
  }
  .ytbu_guide {
    padding: 0 0 40px 0;
  }

  .ytbu_special .l .text {
    margin: 3vw 0;
    writing-mode: inherit;
    color: #ccb280;
    letter-spacing: 0.2vw;
  }
  .ytbu_special .l .more {
    display: none;
  }
  .head1 .banner {
    position: relative;
  }
  .head1 .d2 {
    padding: 2% 0 2% 0% !important;
    background: #002147;
  }
  .head1 {
    height: auto !important;
  }
  .head1 .d2 .tools .menu .i {
    width: 25px;
    border-bottom: 2px solid #ffffff;
    margin-bottom: 7px;
  }
  .head1 .d2 .tools .menu {
    margin: 0px 20px 0 10px;
  }
  #header .inner {
    height: auto;
  }
  .header .sitelogo a img {
    max-width: 85%;
  }
  .header .sitelogo a {
  }
  .header .sitetitle {
    display: block;
    margin-top: 10px;
    font-size: 18px;
  }
  #banner .box-zx2 {
    display: none;
  }
  .mbanner .focus .focus-title-bar {
    bottom: 60px;
  }
  .main1 .ml {
    float: none;
    width: 100%;
  }
  .main1 .mr {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  .post-11,
  .main1 .post-14 {
    float: none;
    width: auto;
    margin: 0;
  }
  .post .tt {
    margin-bottom: 10px;
  }

  #footer .inner .foot-right .con {
    float: none;
  }
  #footer .inner .foot-right,
  #footer .inner .foot-left,
  #footer .inner .foot-mid {
    width: 90%;
  }
  #footer .inner .foot-left li.news {
    /* margin-bottom:5px; */ /* margin-right:20px; */
  }
  #footer .inner .foot-mid {
    width: 50%;
  }
  .mbanner .focus-pagination {
    display: none;
  }
  /*栏目图片*/
  .l-banner {
    height: 180px;
  }
  .l-banner img {
    width: 100%;
    height: 100%;
  }
  #l-container .inner,
  #d-container .inner {
    padding: 0px 0px;
  }
  #l-container.wrapper .inner .mod,
  #d-container.wrapper .inner .mod {
    padding: 0;
  }
  .paper .listcon li.news {
    width: 48%;
    margin: 20px 1%;
  }
  .paper .listcon .list2 li:nth-child(3n + 2) {
    width: 48%;
    margin: 20px 1%;
  }
  .column-switch {
    display: block;
  }

  .col_menu .col_menu_head h3.col_name .col_name_text {
    display: block;
    line-height: 40px;
    padding: 0px 5px 0px 12px;
    font-size: 17px;
    text-align: center;
    background: #002147;
    color: #fff;
  } /**栏目名称图标**/
  .col_menu {
    width: 100%;
    float: none;
    margin-right: 0px;
    position: relative;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 50px;
  }
  .col_menu .bg {
    display: none;
  }
  .col_menu .col_menu_con {
    border: 0px solid #e4e4e4;
    display: none;
  }
  .col_metas .col_title h2 {
    font-size: 18px;
  } /**当前栏目名称**/
  .col_list .wp_listcolumn .wp_column a {
    text-align: center;
    font-size: 16px;
  }
  .ContentSimplelist .inner .right {
    border: 0;
  }
  .wp_listcolumn .wp_column a .column-name {
    padding: 0;
  }
  .col_list .wp_listcolumn .wp_column a:hover,
  .col_list .wp_listcolumn .wp_column a.selected {
    padding: 0;
    margin: 0;
  }
  .col_news {
    width: 100%;
    min-height: 0px;
    float: none;
  } /**栏目新闻**/
  .col_news .col_news_box {
    margin-left: 10px;
    margin-right: 10px;
  }
  .col_news_con li.news {
    line-height: 40px;
  }
  .col_news_con .news_title {
    /* height:40px */
  }
  .col_news_con {
    padding: 5px 0px 10px 0px;
    margin: 0 0px;
  }
  .col_news_con .news_list li.news {
  }
  .col_news_con .news_list li.news span.news_title {
    float: none;
    padding-left: 45px;
    line-height: 25px;
    display: block;
  } /*标题*/
  .col_news_con .news_list li.news span.news_meta {
    float: left;
  } /*属性*/

  .wp_paging li.pages_count,
  .wp_paging li.page_jump {
    display: none;
  }

  .infobox {
    width: auto;
    padding: 0px;
    margin: 0 10px;
  }

  .col_news_list .wp_entry img,
  .article .entry .read img {
    max-width: 100%;
    height: auto !important;
    width: 100%;
  } /**文章阅读部分图片大小限制**/

  /*图列表*/
  .news_tu .news_list li.news {
    width: 50%;
  }
  /*组织机构*/
  .inss .part_xy .sub-list .sub-item {
    width: 50%;
  }

  .ytbu_notice .inner .l .bottom ul li {
    padding: 6px 0 0px 0;
  }
}
/**
 * [xSmall Screen for Smart Phone]
 * 480~767
 */
@media screen and (max-width: 600px) {
  .BigBanner .inner div.title {
    max-width: 65vw;
  }
}
@media screen and (max-width: 550px) {
  .head2 #sh {
    display: flex !important;
    height: auto;
    padding: 2% 2%;
    width: auto;
    height: 50px !important;
  }
  .ytbu_research .inner .left,
  .ytbu_research .inner .right {
    top: 30vw;
  }
  .nav_l i {
    margin: 0px 1vw;
    font-size: 0.9vw;
  }

  .nav_l {
    text-align: left;
    margin-left: 0;
    width: 59%;
    float: left;
    font-size: 14px;
  }
  .nav_r {
    margin-right: 0;
    width: 40%;
    float: right;
  }
  .head1 #sh {
    display: block;
    height: auto;
    padding: 1% 2%;
    width: auto;
  }
  .head2 {
    display: none !important;
  }
}
@media screen and (max-width: 479px) {
  .list1_pic ul {
    position: relative;
    margin: 0 -10px;
  }
  .list1_pic .post_box {
    padding: 0 10px;
  }

  /*


.bt1 {
    margin-top: 2%;
    margin-left: -29%;
    font-size: 19px;
    color: #26447b;
}
.DisplayImglist .inner .top .title {
    color: #26447b;
    font-weight: bold;
    line-height: 20px;
    font-size: 20px !important;
    padding-left: 16px;
    border-left: 0.5vw solid #26447b;
    width: 25%;
    float: left;
    position: absolute;
    margin-top: -4%;
}
*/
  .ContentImglist .inner .right .item .m h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-height: 90px;
    white-space: inherit;
    line-height: 22px;
  }
  .ContentVideolist .inner .left {
    width: 100%;
    margin-top: 15px;
  }
  .ContentImglist .inner .right .item {
    display: block;
  }
  .ContentImglist .inner .right .item .l {
    z-index: 1;
    width: 38%;
    height: auto;
    text-align: center;
  }
  .ContentImglist .inner .right .item .m {
    z-index: 1;
    width: 96%;
    height: auto;
    padding: 2%;
  }
  .ContentImglist .inner .right .item .r {
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .ContentImglist .inner .right .item {
    height: auto;
    width: 100%;
    padding-bottom: 30px;
  }
  .ytbu_news .btm .r {
    width: 104%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 0 0vw;
  }
  .dcgs .right img {
    width: 100% !important;
    height: auto;
  }
  .ytbu_cooperate .inner {
    padding-bottom: 22%;
  }
  .ContentVideolist .inner .right .item {
    width: 98%;
    margin: 1%;
    box-shadow: -0.2vw -0.2vw 0.2vw #dadada;
    cursor: pointer;
  }
  .head2 .d2 .logo {
    width: 100%;
  }
  .ytbu_news .top .r .con div {
    margin: 10% 2%;
    font-size: 16px;
  }
  .ytbu_news .btm .r .con div {
    width: 100%;
    margin: 10% 2%;
  }
  .ytbu_cooperate .inner .bottom div {
    width: 100% !important;
    margin: 1% 0% !important;
  }
  .ytbu_sceneN .inner .p1 {
    width: 50%;
    top: 0 !important;
    left: 0 !important;
    height: 37.5vw;
  }
  .ytbu_sceneN .inner .p2 {
    width: 50%;
    top: 0 !important;
    left: 0 !important;
    height: 37.5vw;
  }
  .ytbu_sceneN .inner .p3 {
    width: 50%;
    top: 0 !important;
    left: 0 !important;
    height: 37.5vw;
  }
  .ytbu_sceneN .inner .p4 {
    width: 50%;
    top: 0 !important;
    left: 0 !important;
    height: 37.5vw;
  }
  .ytbu_sceneN .inner .p5 {
    width: 50%;

    height: 37.5vw;
  }
  .ytbu_sceneN .inner .video1 {
    width: 50%;

    height: 37.5vw;
  }

  .ytbu_number .inner .content {
    color: #ffffff;
    font-size: 2vw;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .ytbu_news .top .r .con {
    width: 46%;
    margin: 2%;
  }
  .ytbu_news .inner .title {
    font-size: 5vw;
  }
  .ytbu_news .top .r {
    width: 100vw;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0;

    align-content: center;
  }
  .ytbu_news .btm .r .con {
    width: 46%;
    margin: 2%;
  }
  .head1 .d2 .logo {
    width: 100%;
  }
  .BigBanner .inner div.title {
    max-width: 85vw;
  }

  .site-lang ul li.links a {
    margin: 0px 2px 0px 2px;
  }
  .mbanner .focus .focus-title-bar {
    bottom: 30px;
  }
  .mbanner .focus-title {
    font-size: 16px;
  }
  .post-13 li.news {
    width: 100%;
  }
  .post-22 .titbox ul {
    margin: 0;
  }
  .en {
    display: none;
  }
  .col_metas .col_path,
  .col_metas .col_title {
    display: block;
    float: none;
    height: 34px;
    line-height: 34px;
  }
  .col_news_con .news_list li.news,
  .paper .listcon .list2 li:nth-child(3n + 2) {
    width: 100%;
    margin: 10px 0;
  }
  .article .arti_metas span {
    display: block;
  }
  .article .arti_metas .fgx {
    display: none;
  }
  .article .arti_metas {
    line-height: 25px;
  }
  #footer .foot-left .tt .tit {
    float: none;
  }
  #footer .inner .foot-left li.news {
    display: inline-block;
  }
  #foot-bot .inner {
    line-height: 35px;
  }
  #foot-bot .inner span {
    display: block;
  }
  #footer .inner p.copyright span {
    display: block;
  }
  #footer .inner .foot-right,
  #footer .inner .foot-left,
  #footer .inner .foot-mid {
    width: 100%;
    border: none;
    margin: 0 auto;
    float: none;
  }
  #footer .inner .foot-mid {
    width: 80%;
  }
  .article h1.arti_title {
    line-height: 28px;
    font-size: 18px;
  }
  .article h2.arti_title {
    line-height: 28px;
    font-size: 16px;
  }

  /*图列表*/
  .news_tu .news_list li.news {
    width: 100%;
  }
  /*组织机构*/
  .inss .part_xy .sub-list .sub-item {
    width: 100%;
  }
  span.arti_views span {
    display: block;
    float: left;
  }
  .article .arti_metas span {
    display: block;
  }
  .post-11 .focus .focus-title {
    padding: 0 15px;
    font-size: 16px;
    overflow: hidden;
    width: 90%;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .ytbu_notice .inner .l .bottom h3 {
    width: 85%;
  }
}
/**
 * [Tiny Screen for Older Phone and Smart Phone]
 * <319
 */
@media screen and (max-width: 490px) {

.XZFCbox{
display: flex;
    flex-direction: column;
    align-items: center;
}

.XZFCbox li{
width:100%

}


.m35 {
    width: auto;
    height: auto;
    background:  none;
    background-size: cover;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
}



.main6 {
    padding-top: 30px;
    padding-bottom:60px;
} 
.s10 {
    color: rgb(51, 51, 48);
    font-family: 思源黑体;
    font-size: 20px;
    font-weight: 700;
    line-height: 41px;
}
.main1,.main2  {
    padding-top: 20px;
    padding-bottom: 50px;
}
.s19 {
    color: rgb(51, 51, 48);
    font-family: 思源黑体;
    font-size: 30px;
    font-weight: 700;
    line-height: 52px;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.s18 {
    color: rgb(182, 183, 185);
    font-family: PingFang SC;
    font-size: 13px;
    font-weight: 400;
    line-height: 36px;
}

.mySwiper4 .swiper-slide img{
width:100%;
height:100%;
object-fit: cover;

}
.swiper-container2 .swiper-button-next {
    right: 25%;
}
.swiper-container2 .swiper-button-prev{
    left: 25%;
}

.HWXXBox li img {
    width: 100%;
    height: auto; 
    object-fit: cover;
}


  .ytbu_research .inner .left,
  .ytbu_research .inner .right {
    top: 36vw;
  }

  .more_all a .icon {
    min-width: 150px;
    height: 45px;
    background-size: 100%;
  }
  .ytbu_research .inner .list .l {
    width: 53%;
    overflow: hidden;
    margin-right: 10px;
    cursor: pointer;
  }
  .ytbu_special .r div {
    top: 0 !important;
    margin: 1%;
    width: 48%;
  }
  .ytbu_special .r div img {
    width: 100%;
  }
  .ytbu_special .r {
    display: block;
  }
  .ytbu_special .inner {
    display: block;
  }
}

.nav_r {
    width: 40%;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
/*系统默认搜索*/
.wp_search{ display:inline-block;position:relative;padding-left:4px;border: 1px solid #d0d0d0;}
.wp_search #keyword{ width:160px!important;padding: 4px 0; border:none;height:20px; line-height:20px; background:transparent; color:#fff; }
.wp_search .search{width:32px;height: 30px;border:0px; background: #FFFFFF url(/_upload/tpl/00/50/80/template80/images/sous.png) no-repeat center;cursor: pointer; vertical-align:top; }
/*自定义输入框*/
.searchbox{text-align:right; float:right;width: 240px;margin-top:13px}
.wp-search {position: relative; border-radius: 10px;}
.wp-search form {display: block;}
.wp-search .search-input {margin-left:4px;}
.wp-search .search-input input.search-title {font-family: "微软雅黑";background: #b1545c;width: 20vw;height: 28px;opacity: 0.6;;padding: 4px 0;text-indent:1em;line-height: 24px; border-radius:15px;color: #FFFFFF;font-size: 13px;border:0;outline: 0;}
.wp-search .search-btn {width:32px;height: 32px;position: absolute;right: 0;top:0;border-radius:50%;}
.wp-search .search-btn input.search-submit {width:30px;height:30px;border:0;border-radius:50%;outline: 0;background: #b1545c url(/_upload/tpl/00/50/80/template80/images/sous.png) no-repeat center;cursor: pointer;}
.wp-search .search-input input.search-title {height:32px;}

@media screen and (max-width: 999px) {
.nav_l {
    width: 50%;margin-right: 2%;display: flex;
   
}
}
@media screen and (max-width: 550px) {
    .nav_r {
        margin-right: 0;
        width: 25%;
        float: right;
    }
.wp-search .search-input input.search-title{width:33vw;}
}
