@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;
}

/**布局开始**/
* {
  box-sizing: border-box;
}
body {
  background: #fff;
  line-height: 1;
  font-size: 14px;
  font-family: Microsoft YaHei;
  color: #333;
  position: relative;
}
p {
  line-height: 1.75;
}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
a:hover {
  color: rgba(67, 130, 233, 1);
}
.flex {
  display: flex;
  display: -webkit-flex;
}
.f_between {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.f_start {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.f_end {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.f_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.f_middle {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
}
.f_top {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.f_bottom {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.f_stretch {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.middle_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.f_col {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_row {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.nowrap {
  -webkit-flex-wrap: nowrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wrap {
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}
.overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.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: 1300px;
  margin: 0 auto;
}
header {
  background: url(images/header_bg.png) no-repeat;
  padding-top: 28px;
  padding-bottom: 165px;
  background-size: cover;
}
/* 搜索 */
/**搜索**/
.wp_search {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  filter: Alpha(opacity=30);
  border-radius: 18px;
}
.wp_search #keyword {
  width: 177px !important;
  padding: 4px 0;
  border: none;
  height: 28px;
  line-height: 28px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-family: "Microsoft YaHei";
}
.wp_search .search {
  width: 32px;
  height: 32px;
  border: 0px;
  background: url(images/sous.png) no-repeat center;
  cursor: pointer;
  vertical-align: top;
}
/***自定义搜索*/
.wp-search {
  border: 0px;
  border-radius: 18px;
  width: 305px;
  height: 35px;
  background: linear-gradient(180deg, #00a18c 7.000000000000001%, #07b57a 100%);
  position: relative;
}
.wp-search form {
  display: block;
  padding-right: 34px;
}
.wp-search .search-input {
  margin-right: 0;
  height: 32px;
  position: relative;
}
.wp-search .search-input input.search-title {
  width: 255px;
  box-sizing: border-box;
  padding: 0px 15px;

  border: 0;
  outline: 0;
  background: #fff;
  box-shadow: 8px 0px 10px 0px rgba(34, 213, 133, 0.35);
  border-radius: 17px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  line-height: 35px;
}
.wp-search .search-btn {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 10px;
  top: 0;
}

.wp-search .search-btn input.search-submit {
  width: 35px;
  height: 35px;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: url(images/header_icon_search.png) no-repeat center;
  background-size: 20px 20px;
  cursor: pointer;
}
.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #333;
}
.headertop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 导航 */
/*默认主导航样式*/
#nav {
  margin-top: 30px;
}
#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 22px;
  line-height: 60px;
  color: #ffffff;
  font-size: 18px;
}
.nav .wp-menu .menu-item.hover a.menu-link:before {
  position: absolute;
  content: "";
  left: 0px;
  right: 0px;
  bottom: 0;
  margin: 0 auto;
  height: 4px;
  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 56px;
  z-index: 100;
  background: #fff;
  border-top: 4px solid rgba(0, 161, 140, 1);
  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;
}
/* banner */
.banner {
  position: relative;
  top: -130px;
}
.main1 {
  position: relative;
  top: -60px;
}
.s1 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 26px;
  color: #22212b;

  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s2 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #8a8d8c;
}
.Newsbox li {
  width: 30%;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(4, 100, 68, 0.15);
  padding-top: 17px;
  padding-bottom: 8px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.newsimg {
  width: 100%;
  height: 200px;
  border-top: 1px solid rgba(138, 141, 140, 0.2);
  border-bottom: 1px solid rgba(138, 141, 140, 0.2);
  padding-top: 10px;
  padding-bottom: 10px;
}
.newsimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.News {
  width: 75%;
  border-right: 2px solid rgba(219, 219, 219, 0.4);
  padding-right: 25px;
}
.Newsbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s3 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 32px;
  transition: 0.5s;
}
.newstext {
  padding: 20px;
}
.s4 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 30px;
  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Newsbox li:hover {
  box-shadow: 0px 0px 30px 0px rgba(4, 100, 68, 0.25);
}
.Newsbox li:hover .s3 {
  font-family: Microsoft YaHei;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  line-height: 32px;
  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.TZGG {
  width: 22%;
}
.main1-1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.TZdate {
  display: flex;
  flex-direction: column;
  width: 30%;
  align-items: center;
  margin-right: 10px;
  border-right: 1px solid rgba(221, 233, 228, 1);
}
.TZdate .day {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 26px;
  color: #22212b;
  line-height: 29px;
  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.TZdate .year {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 14px;
  color: #068559;
  line-height: 29px;
}
.TZGGbox li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.TZtext {
  width: 75%;
}
.TZGGbox li {
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(4, 100, 68, 0.15);
  border: 1px solid #dde9e4;
  padding: 10px;
  margin-bottom: 15px;
  transition: 0.5s;
}
.TZGGbox li:hover {
  box-shadow: 0px 0px 30px 0px rgba(4, 100, 68, 0.25);
}
.TZGGbox li:hover .s3 {
  font-family: Microsoft YaHei;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  line-height: 32px;
  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main2 {
  background: linear-gradient(
    0deg,
    rgba(2, 112, 62, 0.05) 0%,
    rgba(3, 110, 183, 0.05) 100%
  );
  padding-top: 55px;
  /* padding-bottom: 55px; */
}
.CXQD {
  width: 48%;
}
.s5 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 30px;
}
.CXQDbox {
  border-bottom: 1px solid rgba(219, 219, 219, 1);
}
.CXQDbox li .date1 {
  width: 115px;
  height: 25px;
  background: linear-gradient(0deg, #06864c, #0d7bc6);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.s6 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #22212b;
  line-height: 29px;
  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s7 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #8a8a8a;
  line-height: 30px;
}
.CXQDboxall {
  border: 1px solid #dbdbdb;
  padding: 20px;
}
.CXQDbox2 {
  padding-top: 20px;
}
.CXQDbox2 li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s8 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 44px;
}
.CXQDbox2 .hover-item {
  position: relative;
}
.CXQDbox2 .hover-item a {
  position: relative;
  text-decoration: none;
  color: inherit;
}
.CXQDbox2 .hover-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
  transition: width 0.8s ease-in-out;
}
.CXQDbox2 .hover-item:hover::after {
  width: 100%;
}
.CXQDbox .hover-item {
  position: relative;
  padding: 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform 0.8s ease, box-shadow 0.8s ease;
}

.CXQDbox .hover-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.CXQDbox .hover-item:hover .text-line1,
.CXQDbox .hover-item:hover .text-line3 {
  color: #0d7bc6;
}
.main2-1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.XSJL {
  width: 49%;
}
.XSimg {
  width: 221px;
  height: 127px;
}
.XSimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.XStitle1 {
  width: 62%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 127px;
}
.XSJLbox1 {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(219, 219, 219, 1);
}
.XSJLbox1 .hover-item {
  position: relative;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform 0.8s ease, box-shadow 0.8s ease;
}

.XSJLbox1 .hover-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.XSJLbox1 .hover-item:hover .text-line1,
.XSJLbox1 .hover-item:hover .text-line3 {
  color: #0d7bc6;
}
.XSJLbox2 li {
  border-bottom: 1px solid rgba(219, 219, 219, 1);
  padding-top: 10px;
  padding-bottom: 10px;
}
.main3 {
  margin-top: 50px;
}
.DFimg {
  height: 231px;
  width: 100%;
  overflow: hidden; /* 防止图片放大时溢出 */
  position: relative;
}
.DFimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mySwiperDFXH .swiper-slide:hover .DFimg img {
  transform: scale(1.1);
}
.DFtext {
  padding: 15px;
  background: #fff;
}
.mySwiperDFXH .swiper-slide:hover .s3 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #333333;

  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.DFSwiper {
  position: relative;
}
.DFSwiper .swiper-button-next {
  position: absolute;
  width: 31px;
  height: 31px;
  z-index: 999;
  top: -30px;
  background: url(images/LocalSociety_Switch__btn_right_nor.png) no-repeat;
}
.DFSwiper .swiper-button-next:hover {
  position: absolute;
  width: 31px;
  height: 31px;
  z-index: 999;
  top: -30px;
  background: url(images/LocalSociety_Switch__btn_right_per.png) no-repeat;
}
.DFSwiper .swiper-button-prev {
  position: absolute;
  width: 31px;
  height: 31px;
  z-index: 999;
  top: -30px;
  left: 92%;
  background: url(images/LocalSociety_Switch__btn_left_nor.png) no-repeat;
}
.DFSwiper .swiper-button-prev:hover {
  position: absolute;
  width: 31px;
  height: 31px;
  z-index: 999;
  top: -30px;
  background: url(images/LocalSociety_Switch__btn_left_per.png) no-repeat;
}
.main5 {
  margin-top: 50px;
}
.DJQH {
  width: 48%;
}
.M5Title {
  padding: 20px;
  border-bottom: 1px dashed rgba(219, 219, 219, 1);
}
.M5Title.active {
  padding: 20px;
  background: rgba(2, 112, 62, 0.1);
  border-radius: 4px 4px 0px 0px;
}
.M5more {
  text-indent: 2ch;
}
.DJQHtextall {
  min-height: 450px;
}
/* 初始状态 */
.M5Title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none; /* 默认无背景 */
  padding-right: 30px; /* 给箭头留出空间 */
  border-radius: 4px 4px 0px 0px; /* 默认半径 */
}

/* 默认样式，箭头朝上 */
.arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid rgba(11, 127, 155, 1);
  transition: transform 0.3s ease; /* 动画平滑 */
}

/* 展开时 M5Title 的样式 */
.accordion-item:hover .M5Title {
  background: rgba(2, 112, 62, 0.1); /* 展开时背景 */
  border-radius: 4px 4px 0px 0px; /* 展开时边框半径 */
}

/* 展开时 S3 的样式 */
.accordion-item:hover .M5Title .s3 {
  font-family: "Microsoft YaHei", sans-serif; /* 字体 */
  font-weight: bold; /* 粗体 */
  font-size: 18px; /* 字体大小 */
  color: #333333; /* 颜色 */
  line-height: 25px; /* 行高 */
  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%); /* 渐变背景 */
  -webkit-background-clip: text; /* 背景裁剪为文本 */
  -webkit-text-fill-color: transparent; /* 文字填充透明 */
}

/* 面板展开时的动画和样式 */
.M5more {
  transform: scaleY(0);
  transform-origin: top;
  height: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  border-bottom: 1px dashed rgba(219, 219, 219, 1);
  transition: transform 0.5s ease, height 0.5s ease, opacity 0.5s ease,
    padding 0.5s ease;
}

/* 展开时的面板内容样式 */
.accordion-item:hover .M5more {
  transform: scaleY(1);
  height: auto;
  opacity: 1;
  padding: 20px; /* 展开时的内边距 */
}
.main5-1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.s9 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #0b7f9b;
  line-height: 36px;
}
.KPYDBOX li {
  padding: 15px;
  border-top: 1px dashed rgba(2, 112, 62, 1);
  border-bottom: 1px dashed rgba(2, 112, 62, 1);
}
.KPYDBOX li:hover {
}
.main66 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.Q1 {
  background: rgba(3, 110, 183, 0.8);
  border-radius: 4px;
}
.Q2 {
  background: rgba(2, 112, 62, 0.8);
  border-radius: 4px;
}

.Q3 {
  background: rgba(3, 160, 183, 0.8);
  border-radius: 4px;
}

.Q4 {
  background: rgba(183, 151, 3, 0.8);
  border-radius: 4px;
}
.YQLJ {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.YQLJ li {
  width: 20%;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px 0px rgba(4,100,68,0.15);
}
.s10 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  line-height: 37px;
}
footer {
  padding-top: 38px;
  padding-bottom: 38px;
  background: linear-gradient(0deg, #02703e 0%, #11839c 100%);
}
.s11 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 40px;
}
.f1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s12 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 40px;
  text-align: center;
}
.KPYDBOX li:hover .s3 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #246ace;
  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.EWM img {
  width: 106px;
  height: 106px;
  object-fit: cover;
}
.mySwiperbanner .swiper-slide img {
  transition: transform 0.9s ease;
}

.mySwiperbanner .swiper-slide:hover img {
  transform: scale(1.1); /* 放大 1.1 倍 */
}
.Newsbox li {
  overflow: hidden;
}
.newsimg img {
  transition: transform 0.9s ease;
}
.Newsbox li:hover img {
  transform: scale(1.1); /* 放大 1.1 倍 */
}
.XSimg img {
  transition: transform 0.9s ease;
}
.XSJLbox1 li {
  overflow: hidden;
}
.XSJLbox1 .hover-item:hover img {
  transform: scale(1.1); /* 放大 1.1 倍 */
}
.YQLJ li img {
  transition: all 0.9s ease;
}
.YQLJ li:hover {
  box-shadow: 0px 0px 30px 0px rgba(4, 100, 68, 0.25);
}
.YQLJ li:hover img {
  transform: scale(1.2); /* 图标放大 1.2 倍 */
}
.YQLJ li {
  transition: transform 0.3s ease, color 0.3s ease; /* 文字上移和平滑过渡 */
}
.YQLJ li:hover {
  transform: translateY(-10px);
}

.column-banner .img {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  background: #f1f1f1 url(images/banner_img2.png) no-repeat center/cover;
}
.column-banner .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.column {
  margin-top: 30px;
  margin-bottom: 40px;
}
.column-anchor {
  padding-left: 24px;
  height: 80px;
  background-color: #0044a0;
  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
  border-radius: 0;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  line-height: 80px;
}
.column-nav ul li a {
  display: block;
 
  
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 48px;
  border-bottom: 1px solid #eee;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.column-nav ul li a:hover {
  background: #999;
  color: #fff;
}
.column-nav ul li ul li a {
  padding-left: 40px;
  height: 48px;
  background: #f0f0f0;
  font-size: 16px;
  line-height: 48px;
}
.column-nav ul li ul li ul li a {
  padding-left: 60px;
  height: 48px;
  background: #f0f0f0;
  font-size: 16px;
  line-height: 48px;
}
.column-nav ul li.selected > a {
  background: #f1f1f1;
  color: #0044a0;
  font-weight: 700;
}
.breadcrumb-nav {
  float: right;
  margin-top: -10px;
  padding: 8px 0;
  color: rgba(6, 133, 89, 1);
  font-size: 14px;
  font-weight: 400;
}
.breadcrumb-nav a {
  font-weight: 400;
  color: #999;
}
.breadcrumb-nav a:hover {
  color: #333;
}
.column-content {
  min-height: calc(100vh - 300px);
  background-color: #fff;
  box-shadow: 0 7px 20px rgba(175, 35, 40, 0.1);
  padding-bottom: 1px;
}
.column-content .hero-news-list {
  padding: 10px 24px;
}
.column-name {
  padding: 10px 24px;
  color: #333;
  font-weight: 600;
  font-size: 20px;
  line-height: 60px;
}
.column-nav {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.news-list {
  margin-bottom: 30px;
}
.news-list li {
  border-top: 1px dashed #ccc;
}
.news-list li:last-child.news-list-item {
  border-bottom: 1px dashed #ccc;
}
.news-list-item {
  position: relative;
  width: 100%;
  height: 105px;
  padding: 30px 16px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
}

.news-list-item .date {
  position: absolute;
  top: 20px;
  left: 0;
  width: 64px;
  overflow: hidden;
}
.news-list-item .date b,
.news-list-item .date span {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.news-list-item .date span {
  font-size: 28px;
  color: #333;
  font-weight: bold;
  font-style: italic;
}
.news-list-item .date b {
  font-size: 14px;
  color: #999;
  font-weight: normal;
}
.news-list-item .content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 52px;
  padding: 0 20px 0 95px;
  color: #1a1a1a;
  background: url(../img/icon/list_dot.png) no-repeat;
  background-position: 68px center;
}
.news-list-item .content h3 {
  line-height: 26px;
  font-size: 18px;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.news-list-item:hover .content {
  background-image: url(../img/icon/list_dot_active.png);
}
.news-list-item:hover .content h3 {
  color: #0044a0;
}

.column .wp_single {
  padding: 20px;
}
.teacher-list {
  padding: 20px;
}
.teacher-item {
  display: block;
  max-width: 210px;
  width: 100%;
  margin: 15px auto;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.teacher-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.teacher-item h2 {
  padding: 10px;
  background-color: #fff;
  font-size: 18px;
  color: #333;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.teacher-item:hover h2 {
  color: #0044a0;
}
.teacher-item img {
  width: 210px;
  height: 290px;
}
.column-img-list {
  padding: 15px 25px;
}
.column-img-item {
  margin: 15px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.column-img-item .photo {
  width: 100%;
  height: 180px;
  background-color: #999;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.column-img-item .title {
  padding: 16px 12px;
}
.column-img-item .title h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.column-img-item .title .date {
  color: #999;
}
.column-img-item:hover {
  box-shadow: 0 0 10px rgba(175, 35, 40, 0.3);
}
.column-img-item:hover .title h3 {
  color: #06864c;
}
#wp_pager {
  text-align: center;
}
.post-detail {
  margin: 30px auto 60px;
}
.post-detail .inner {
  background-color: #fff;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}
.post-info {
  padding: 25px 15px 15px;
  border-bottom: 1px solid #f1f1f1;
  background: #fff;
}
.post-title {
  padding-bottom: 8px;
  color: #333;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
}
.post-title h3 {
  padding-top: 2px;
  color: #333;
  font-size: 18px;
}
.post-attr {
  margin-bottom: 15px;
  color: #979797;
  text-align: center;
}
.post-content {
  margin: 20px 30px;
  min-height: 400px;
}
.post-content img {
  margin: 10px 0;
  height: auto !important;
  max-width: 100% !important;
}
#qrcode {
  padding-top: 20px;
  border-top: 1px solid #f1f1f1;
}
#qrcode img {
  display: block;
  margin: 0 auto;
  padding: 8px;
  border: 2px solid #0044a0;
  border-radius: 12px;
}
.qrcode-share {
  padding: 6px 0 20px;
  text-align: center;
}

/* HomeNews */
.home-news {
  padding: 60px 0;
  background: #f5f6f7 url(../img/home_hero_bg.png) no-repeat center top;
  background-size: auto;
}
.home-news .inner {
  background-color: #fff;
}
.news-photo-item {
  position: relative;
  margin-bottom: 20px;
}
.news-photo-item .photo {
  position: absolute;
  left: 0;
  top: 0;
  width: 160px;
  height: 90px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 4px;
  background-color: #999;
}
.news-photo-item .text {
  padding-left: 180px;
}
.news-photo-item .text h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  color: #333;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-photo-item .text p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 18px;
  height: 36px;
  color: #999;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-photo-item .date {
  padding-left: 20px;
  font-size: 14px;
  color: #0044a0;
  background: url(../img/icon/icon_time.png) no-repeat center left;
}
.news-photo-item:hover .text h3 {
  color: #0044a0;
}
.news-photo-item:hover .text p {
  color: #666;
}

.hero-news-list {
  min-height: 420px;
}
.hero-news-list li:last-child .hero-news-item {
  border-bottom: 1px dashed #e0e0e0;
}
.hero-news-item {
  height: 60px;
  overflow: hidden;
  background: url(images/icon_announcement.png);
  background-repeat: no-repeat;
  background-position: center left;
  border-top: 1px dashed #e6e6e6;
}
.hero-news-item:hover {
  background-image: url(images/icon_announcement_active.png);
}
.hero-news-item:hover h3 {
  font-family: Microsoft YaHei;
  font-weight: bold;

  color: #333333;

  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-news-item h3 {
  float: left;
  width: 78%;
  padding-left: 25px;
  line-height: 60px;
  font-size: 16px;
  color: #333;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.hero-news-item p {
  float: left;
  width: 22%;
  line-height: 60px;
  text-align: right;
  color: #999;
}

/* Home List */
.home-list {
  background: url(../img/home_list_bg.png) no-repeat center/cover;
  padding: 60px 0;
}
.home-list .inner {
  background-color: #fff;
}
.block-list {
  min-height: 506px;
}
.block-list-item {
  padding: 12px 0;
}
.block-list-item h3 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.block-list-item:hover h3 {
  color: #1251a7;
}
.block-list-item p {
  position: relative;
  margin-top: 6px;
  color: #999;
  font-size: 14px;
}
.block-list-item p::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 80%;
  border-top: 1px dashed #ccc;
}
.lecture-item {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  border: 1px solid #e5e5e5;
  margin-bottom: 30px;
  background: #f5f5f5;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.lecture-item:hover {
  background-color: #0044a0;
}
.lecture-item .date {
  position: absolute;
  left: 10px;
  top: 20px;
  width: 80px;
  text-align: center;
}
.lecture-item .date::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 55%;
  border: 1px solid #ccc;
  width: 20px;
  margin-left: -10px;
  -webki-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  transform: rotate(-15deg);
}
.lecture-item .date span,
.lecture-item .date b {
  display: block;
  color: #0044a0;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.lecture-item .date span {
  font-size: 28px;
}
.lecture-item .date b {
  margin-top: 24px;
  font-size: 14px;
}
.lecture-item:hover .date span,
.lecture-item:hover .date b {
  color: #fff;
}
.lecture-item .text {
  padding-left: 100px;
}
.lecture-item .text h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #333;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.lecture-item .text p {
  margin: 2px 0;
  color: #666;
  font-size: 14px;
  -webkit-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.lecture-item:hover .text h3,
.lecture-item:hover .text p {
  color: #fff;
}
.wp_paging {
  margin-bottom: 50px;
  float: none !important;
}

.headerlist {
  padding-bottom: 28px !important;
  padding-top: 28px;
}
.date2 {
  width: 22%;
  margin-left: 10px;
  text-align: right;
}

.wp_paging {
  margin-top: 30px;
  float: none !important;
}
.KPYDBOX li .s9 {
  width: 15%;
}
.s1 {
  position: relative;
}
.s1::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 12px;
  background: #a6a9a8;
  bottom: 0;
  right: -16px;
}
.s2{
  transition:0.9s;
   
}
.TitleALL:hover .s2{
  font-family: Microsoft YaHei;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
 
  background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/**链接样式**/
.mlink {
  width: 100%;
}
.botlinks .links-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 30px;
  background: transparent;
  background: rgba(255, 255, 255, 1);
  border-radius: 4px;
}
.botlinks .links-wrap a.links-arrow {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 38px 0 12px;
  color: #333333;
  font-size: 16px;
  background: url(images/btn111.png) no-repeat right bottom;
}
.botlinks .links-wrap a.links-arrow:hover,
.botlinks .wrap-open a.links-arrow {
  color:rgba(2, 112, 62, 1);
  background-position: right top;
  cursor: pointer;
}
.botlinks .links-wrap .link-items {
  display: none;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 40px;
  height: auto;
  max-height: 300px;
  overflow: auto;
  overflow-x: hidden;
  background:  #fff;
  border-radius: 4px;
}
.botlinks .links-wrap .link-items a {
  display: block;
  line-height: 24px;
  padding: 5px 0;
  color: #444;
}
.botlinks .links-wrap .link-items a span {
  display: block;
  padding: 0 16px;
  white-space: nowrap;
}
.botlinks .links-wrap .link-items a:hover {
  color: rgba(2, 112, 62, 1);
  cursor: pointer;
}
.mlinkbox{
  width: 20%;
}
.mlinkbox .name{
  margin-bottom: 10px;
}
.col_name{
 
    height: 80px;
    background-color: #0044a0;
    background: linear-gradient(0deg, #06864c 0%, #0d7bc6 100%);
    border-radius: 0;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    line-height: 80px;
}

.column-content .column-name{
border-bottom: 1px solid #eee;
}
.mySwiperbanner {
height:510px;
}
.mySwiperbanner  .swiper-slide img{
width:100%;
}
.column-nav ul li.active  a  .column-name{
    color: rgba(6, 133, 89, 1)
}

.es_list_singlearticle .content{
padding:20px;
}