@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,
select,
keygen,
legend {
  font: 13px/1 arial, \5b8b\4f53;
  color: #333;
  outline: 0;
}
:focus {
  outline: 0;
}
/*备用样式表*/
.clear {
  width: 100%;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  clear: both;
  display: block;
  _display: inline;
}
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: block;
  *zoom: 1;
}
.icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: url(images/icon.png) no-repeat;
}
/*css3扩展*/
body:before {
  display: none;
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}
::-webkit-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
}
:-ms-input-placeholder {
  color: #ccc;
}
/*滚动样式*/
.scroller {
  position: absolute;
  z-index: 1;
  width: 750px;
  height: 160px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal {
  width: 4px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}
::-webkit-scrollbar-track-piece {
  background-color: #fff; /*滚动条的背景颜色*/
  -webkit-border-radius: 0; /*滚动条的圆角宽度*/
}
::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: #999;
  -webkit-border-radius: 4px;
  outline: 1px solid #fff;
  outline-offset: -1px;
  border: 1px solid #fff;
}
html {
  width: 100%;
  overflow-x: auto; /* 当内容超出视口时，显示横向滚动条 */
}
/**布局开始**/
* {
  box-sizing: border-box;
}
body {
  background: #fff;
  line-height: 1;
  font-size: 14px;
  font-family: AlibabaPuhui, AkkuratPro-Regular;
  color: #333;
  position: relative;
}
.es_article_content p{
  font-family: AlibabaPuhui, AkkuratPro-Regular !important;
}
p {
  line-height: 1.75;
}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.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-line1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.text-line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text-line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1450px;
  margin: 0 auto;
}
header {
  background: #fff;
  padding-left: 40px;
  padding-right: 40px;
  height: 100px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 999;
}
.banner {
  position: relative;
  height: 999px;
}
.banner .mySwiper img {
  height: 999px;
  width: 100%;
  object-fit: cover;
}

.logo li a img {
  width: 200px;
  height: 80px;
}
/* 导航 */
/*默认主导航样式*/
#nav {
   margin-right:50px
}
#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 {
  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;
}
.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  40px;
  font-weight: 400;
  font-size: 20px;
  color: rgba(151, 52, 47, 1);
  line-height: 32px;
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 56px;
  z-index: 100;
  background: #fff;

  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: linear-gradient(180deg, #00a18c 7.000000000000001%, #07b57a 100%);
  display: block;
}
.nav .sub-menu .sub-menu {
  left: 100%;
  top: 0px;
  z-index: 200;
  background: #fff;
}
.headertop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wp-search {
  position: relative;
}

.search-input {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease-in-out;
}

.search-btn {
  position: relative;
  z-index: 1; /* 保证按钮在输入框上面 */
}

.search-input input {
  width: 200px;
  /*输入框展开后的宽度*/
  padding: 5px;
  font-size: 16px;
  border: 1px solid #ccc;
  height: 58px;
  border-radius: 50px;
}

.search-btn input {
  width: 56px; /* 按钮的宽度 */
  height: 55px;
  background: url(images/search-icon.png) no-repeat center center;
  background-size: cover;
  border: none;
  cursor: pointer;
}

.wp-search:hover .search-input {
  width: 200px; /* 鼠标悬停时输入框展开 */
}
.Seabox {
  display: flex;
  align-items: center;
}
.ENG img {
  width: 58px; /* 按钮的宽度 */
  height: 58px;
  object-fit: cover;
  margin-left: 30px;
}
.main1-1 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.about {
  padding: 50px;
  height: 730px;
  width: 100%;
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.3);
  background: #fff url(images/banner2.png) bottom left no-repeat;
  border-radius: 25px;
}
.s1 {
  font-weight: 400;
  font-size: 40px;
  color: #a62424;
  line-height: 50px;
}
.s2 {
  color: rgba(77, 77, 77, 0.8);

  font-size: 20px;
  font-weight: 600;
}
.s3 {
  font-weight: 600;
  font-size: 43px;
  color: #a62424;
  line-height: 45px;
}
.abouttext {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.abouttext1 {
  width: 34%;
}
.abouttext1 li {
  margin-bottom: 50px;
}
.abouttext2 {
  width: 44%;
}
.s4 {
  font-weight: 400;
  font-size: 30px;
  color: rgba(142, 10, 10, 1);
  line-height: 45px;
  text-indent: 2em;
}
.s5 {
  color: rgba(77, 77, 77, 1);

  font-weight: 400;
  font-size: 20px;
  line-height: 45px;
  text-indent: 2em;
}
.abouttext {
  position: relative;
}
.abouttext::before {
  position: absolute;
  content: "";
  width: 300px; /* 半圆的半径 */
  height: 600px; /* 半圆的直径 */
  background: url(images/banner5.png) no-repeat;
  border-top-left-radius: 300px; /* 左上角半径 */
  border-bottom-left-radius: 300px; /* 左下角半径 */
  overflow: hidden;
  top: -20%;
  right: -54px;
}
.abouttext::before::after {
  position: absolute;
  content: "";
}
.main1 {
}
.main1 {
  background: url(images/banner3.png) left bottom no-repeat;
 background-position-y: 171%;
}
.main2 {
  background: url(images/banner4.png) no-repeat;
  background-size: contain;
  padding-bottom: 100px;
}
.POCT {
  padding-top: 100px;
  padding-bottom: 100px;
}
.PTitle {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.CQtu {
  display: flex;
  align-items: center;

  margin-top: 50px;
}
.Friend {
  margin-top: 50px;
}
.s6 {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}
.s7 {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 25px;
}
.Fboximg {
  margin-top: 115px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 50px;
  padding-right: 50px;
}
.Fboximg li {
  width: 46%;
  position: relative;
}
.Fboximg li .Fimg img {
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}
.Ftext {
  position: absolute;
  z-index: 999;
  bottom: 0px;
  padding-left: 30px;
  padding-right: 30px;
padding-bottom: 5px;
}
.FTexttitle {
  margin-bottom: 20px;
}
.FTmore {
  width: 100%;
  text-align: right;
}
.swiper-container {
  overflow: hidden;
  margin-top: 115px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.swiper-container .swiper-slide img {
  width: 104px;
  height: 104px;
  object-fit: cover;
}
.swiper-container .swiper-slide {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.XHUILUNBO {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
}
.XHUILUNBO .swiper-button-next {
  color: rgba(77, 77, 77, 1);
  top: 38%;
  right: -39px;
}
.XHUILUNBO .swiper-button-prev {
  color: rgba(77, 77, 77, 1);
  top: 38%;
  left: -39px;
}
footer {
  background: #a72a24;
  padding-top: 40px;
  padding-bottom: 20px;
  background-size: cover;
}
.s8 {
  font-weight: 400;
  font-size: 25px;
  color: #fff;
  line-height: 45px;
}
.EWM li img {
  width: 108px;
  height: 108px;
  object-fit: cover;
}
.EWM li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
  margin-top: 40px;
}
.EWM {
  display: flex;
}
.LXTEXT li img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  object-fit: contain;
}
.LXTEXT li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.FNAV {
  display: flex;
  align-items: flex-start;
  width: 35%;
  justify-content: space-between;
}
.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.LXTEXT {
  width: 24%;
}
.BQ {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* 列表页 */
.mySwipercolumn {
width:100%;
  height: 750px;
  background: #a72a24;
}
.mySwipercolumn img {
width:100%;
  height: 750px;
     position: relative;
    left: -20px;
    object-fit: contain;
}
.banner2 {
  height: auto;
}
/**链接样式**/
/**
 * 列表页
 */
/**首页三列布局**/
/**列表页**/
/*栏目图片*/
.wp-inner {
  width: 990px;
  margin: 0 auto;
}
.l-banner {
  height: 268px;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  background-size: cover;
}
.l-banner img {
  display: none;
  height: 100%;
  vertical-align: top;
}
.d-banner {
  height: 265px;
}
/**主体列表页开始**/
#l-container {
  padding-top: 100px;
  padding-bottom: 100px;
}
#l-container .inner {
  padding: 15px 10px;
  background: #fff;
  box-shadow: 0px 0px 10px #333;
  border-radius: 10px;
  padding: 50px;
}
/**主体文章页开始**/
#d-container {
  min-height: 700px;
  margin-top: 50px;
  margin-bottom: 50px;
}
#d-container .inner {
  width: 1600px;
  padding: 20px 60px;
  background: #fff;
  min-height: 700px;
}

/**文章页banner**/
#m-container1 {
}
#m-container1 .inner {
  background: #fff;
  padding-top: 15px;
}

.col_menu {
  width: 22%;
  float: left;
  position: relative;
}
.col_menu .l-qh {
  margin-bottom: 10px;
}
.col_menu .col_menu_head {
  background: #3fa940;
} /**位置栏目背景**/
.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: 45px;
  padding: 0px 5px 0px 30px;
} /**栏目名称图标**/
.col_menu .col_menu_con {
}
/*栏目列表*/
/*栏目列表*/
.col_list {
  /* padding:4px 18px; */
}
.col_list .wp_listcolumn {
  border-top: 0px solid #a72a24;
  border-bottom: 0px solid #fff;
}
.col_list .wp_listcolumn .wp_column a {
  color: #333;
  font-size: 15px;
  font-weight: normal;
  background: none;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid #dbdbdb;
}
.col_list .wp_listcolumn .wp_column a .column-name {
}
.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  color: #a72a24;
}
.col_list .wp_listcolumn .wp_column a.selected span.column-name {
  color: #a72a24;
}
.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: #a72a24;
}
/*二级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list a {
  color: #333; /* background:none; */
  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 52px;
  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: #a72a24;
}
/*三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a {
  background: none;
}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name {
  padding: 5px 10px 5px 51px;
  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: #a72a24;
}
.col_news {
  width: 73%;
  min-height: 700px;
  float: right;
}
/**栏目新闻**/
.col_news .col_news_box {
}
.col_news_head {
}
.col_metas .col_title {
  display: inline-block;
  float: left;
  line-height: 43px;
  border-left: 15px solid #a72a24;
  padding-left: 30px;
}
/**当前栏目**/
.col_metas .col_title h2 {
  display: inline-block;
  font-size: 20px;
  font-weight: normal;
  color: #000;
  border-bottom: 3px solid #cbcbcb;
}
/**当前栏目名称**/
.col_metas .col_path {
  display: inline-block;
  float: right; /* padding-right:20px; */
  white-space: nowrap;
  height: 45px;
  line-height: 45px;
  color: #666;
}
/**当前位置**/
.col_metas .col_path a {
  color: #2f2f2f;
}
.col_news_con {
  padding: 5px 0px 10px 0px;
  margin-top: 50px;
}
.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.6;
  font-size: 13px;
  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 {
  width: auto;
  margin: 0 auto;
}
.article {
}
.article h1.arti_title {
  line-height: 26px;
  padding: 10px;
  border-bottom: 1px solid #ececec;

  font-size: 22px;
  text-align: center;
  color: #4e4e4e;
} /**文章标题**/
.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.6;
  font-size: 14px;
  color: #333;
  text-align: center;
} /**阅读字体**/
.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;
}
.column-img img {
  width: 80px;
  height: 110px;
  margin-right: 20px;
}
.CNAME {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#l-container {
  background: url(images/1x/cbg.png) no-repeat;
  background-size: contain;
}
.column-nameENG {
  font-weight: 400;
  font-size: 20px;
  color: #333;
  line-height: 45px;
}
.column-name {
  font-weight: 400;
  font-size: 20px;
  color: #333;
  line-height: 45px;
}
.s9 {
  font-weight: 400;
  font-size: 20px;
  color: #333;
  line-height: 45px;
}
.s10 {
  font-weight: 400;
  font-size: 22px;
  color: #333;
  line-height: 45px;
}
.Cbox {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
/* 默认状态：图片灰色，文字颜色为默认颜色 */
.col_list .wp_listcolumn .wp_column a .column-img img {
  filter: grayscale(80%);
  transition: filter 0.3s ease, color 0.3s ease;
  -webkit-transition: filter 0.3s ease, color 0.3s ease;
  -moz-transition: filter 0.3s ease, color 0.3s ease;
  -ms-transition: filter 0.3s ease, color 0.3s ease;
  -o-transition: filter 0.3s ease, color 0.3s ease;
}

.col_list .wp_listcolumn .wp_column a .CNAME .column-nameENG,
.col_list .wp_listcolumn .wp_column a .CNAME .column-name {
  color: #000; /* 默认文字颜色 */
  transition: color 0.3s ease;
}

/* hover 或 selected 状态：图片正常显示，文字颜色变红 */
.col_list .wp_listcolumn .wp_column a:hover .column-img img,
.col_list .wp_listcolumn .wp_column a.selected .column-img img {
  filter: none; /* 去掉灰色滤镜 */
}

.col_list .wp_listcolumn .wp_column a:hover .CNAME .column-nameENG,
.col_list .wp_listcolumn .wp_column a:hover .CNAME .column-name,
.col_list .wp_listcolumn .wp_column a.selected .CNAME .column-nameENG,
.col_list .wp_listcolumn .wp_column a.selected .CNAME .column-name {
  color: #a72a24; /* 设置为红色 */
}
.SHFWimg img {
  width: 550px;
  height: 350px;
}
.s55 {
  color: rgba(77, 77, 77, 1);

  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}
.SHTEXT li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.SHTEXT li img {
  margin-right: 20px;
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.ZPXX {
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

.Fboximg li {
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease; /* 整体放大效果 */
}

/* 图片样式 */
.Fboximg .Fimg img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease; /* 图片放大效果 */
}
.Fboximg .Ftext {
  border-radius: 25px;
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.6)
  ); /* 初始渐变背景 */
  transition: background 0.5s ease; /* 渐变背景动画 */
  z-index: 1;
}

/* 鼠标悬停时图片变大 */
.Fboximg li:hover .Fimg img {
  transform: scale(1.1); /* 图片放大 */
}

/* 鼠标悬停时 Ftext 渐变更明显 */
.Fboximg li:hover .Ftext {
  border-radius: 18px;
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.9)
  ); /* 更深的渐变底色 */
}

.CQtu li {
  position: relative;
  transition: transform 0.3s ease; /* 鼠标悬停时的平滑变换 */
}

/* 图片样式 */
.CQtu li img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease, filter 0.3s ease; /* 图片动画效果 */
}

/* 鼠标悬停时 li 的动画效果 */
.CQtu li:hover {
  transform: scale(1.05) rotate(5deg); /* 放大和轻微旋转 */
}

/* 鼠标悬停时图片的动画效果 */
.CQtu li:hover img {
  transform: scale(1.05) rotate(-5deg); /* 放大并旋转 */
}
.nav .wp-menu .menu-item a.menu-link {
  font-weight: normal; /* 默认字体不加粗 */
  transition: 0.5s ease; /* 平滑过渡 */
}

/* 鼠标悬停时加粗字体 */
.nav .wp-menu .menu-item a.menu-link:hover {
  font-weight: bold;
  font-size: 22px;
}

.swiper-container .swiper-slide img {
  transition: transform 0.4s ease, filter 0.3s ease; /* 图片过渡动画 */
}

/* 鼠标悬停时的图片动画 */
.swiper-container .swiper-slide:hover img {
  transform: scale(1.05) rotate(5deg); /* 图片放大并旋转 */
}

.column-img img {
  object-fit: contain;
}

.col_title .s10 {
  font-weight: bold;
  font-size: 28px;
}
.es_list_singlearticle .title {
  display: none;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.main {
  width: 100%;
  height: 100%;
  overflow-x: auto; /* 如果页面宽度大于视口时，显示横向滚动条 */
}

header {
  position: fixed; /* 固定位置 */
  top: 0;
  left: 0;
  width: 100%; /* 确保宽度占满页面 */
  z-index: 1000; /* 确保header在所有内容之上 */
  background-color: #fff; /* 背景色防止遮挡内容 */
  transition: box-shadow 0.3s ease; /* 平滑过渡效果 */
}

/* 设置初始状态，没有阴影 */
header {
  box-shadow: none;
}

/* 滚动后，给header添加阴影 */
header {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 阴影效果 */
}

.s7 {
  transition: 0.5s ease; /* 平滑过渡 */
}
.FNAV .s7:hover {
  font-weight: bold;
  font-size: 18px;
}
.FNAV li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.CQtu1 {
  margin-right: 260px;
}

@media screen and (max-width: 1499px) {
  .inner {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1599px) {
  .XHUILUNBO .swiper-button-prev {
    display: none;
  }
  .XHUILUNBO .swiper-button-next {
    display: none;
  }
}
.swiper-container .s7 {
  font-size: 14px;
}
.header-right{
  display: flex;
  align-items: center;
}
header .inner {
width:100%;
}
