@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;
}
.text-line4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.text-line5 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}
/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.inner {
  width: 1300px;
  margin: 0 auto;
}
.banner {
  position: relative;
}
header {
  position: absolute;
  top: 30px;
  z-index: 999;
}
/* 搜索 */
/**搜索**/
.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;

  height: 35px;
  position: relative;
}
.wp-search form {
  display: block;
  padding-right: 34px;
}
.wp-search .search-input {
  margin-right: 0;

  position: relative;
}
.wp-search .search-input input.search-title {
  width: 180px;
  box-sizing: border-box;
  padding: 0px 15px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 32px;
  border: 0;
  outline: 0;
  background: #ffffff;

  border-radius: 17px;
}
.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/nav_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;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -moz-transition: background-color 5000s ease-in-out 0s;
  -ms-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
}
.headertop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 10px 35px 0px rgba(38, 70, 190, 0.2);
  border-radius: 18px;
  padding: 20px;
}
/* 导航 */
/*默认主导航样式*/
#nav {
}
#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;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 32px;
}

.nav .sub-menu {
  position: absolute;
  left: 0;
  top: 40px;
  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: rgba(83, 140, 239, 0.91);
  display: block;
}

.sub-menu {
  display: block;
  max-height: 0; /* 初始时设置为 0 */
  overflow: hidden; /* 隐藏超出部分 */
  transition: max-height 0.9s ease-out; /* 添加动画过渡 */
  opacity: 0; /* 初始隐藏时透明 */
  transition: max-height 0.9s ease-out, opacity 0.9s ease-out;
}

.menu-item:hover > .sub-menu {
  max-height: 500px; /* 设置足够大的最大高度，以确保菜单完全展开 */
  opacity: 0; /* 显示子菜单时透明度变为 1 */
}

.search-wrapper {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.search-wrapper.active {
}

.search-wrapper .input-holder {
  overflow: hidden;
  height: 50px;
  background: rgba(255, 255, 255, 0);
  border-radius: 6px;
  position: relative;
  width: 70px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.search-wrapper.active .input-holder {
  border-radius: 50px;
  width: 300px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
  -moz-transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
}

.search-wrapper .input-holder .search-input {
  width: 100%;

  padding: 0px 70px 0 20px;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-family: "Open Sans", Arial, Verdana;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
  -webkit-transform: translate(0, 60px);
  -moz-transform: translate(0, 60px);
  transform: translate(0, 60px);
  -webkit-transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  -moz-transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);

  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.search-wrapper.active .input-holder .search-input {
  opacity: 1;
  -webkit-transform: translate(0, 10px);
  -moz-transform: translate(0, 10px);
  transform: translate(0, 10px);
}

.search-wrapper .input-holder .search-icon {
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 6px;
  background: #fff;
  padding: 0px;
  outline: none;
  position: relative;
  z-index: 2;
  float: right;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.search-wrapper.active .input-holder .search-icon {
  width: 40px;
  height: 40px;
  margin: 5px;
  border-radius: 30px;
}
.search-wrapper .input-holder .search-icon span {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.4s cubic-bezier(0.65, -0.6, 0.24, 1.65);
  -moz-transition: all 0.4s cubic-bezier(0.65, -0.6, 0.24, 1.65);
  transition: all 0.4s cubic-bezier(0.65, -0.6, 0.24, 1.65);
}
.search-wrapper.active .input-holder .search-icon span {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.search-wrapper .input-holder .search-icon span::before,
.search-wrapper .input-holder .search-icon span::after {
  position: absolute;
  content: "";
}
.search-wrapper .input-holder .search-icon span::before {
  width: 4px;
  height: 11px;
  left: 9px;
  top: 18px;
  border-radius: 2px;
  background: #974be0;
}
.search-wrapper .input-holder .search-icon span::after {
  width: 14px;
  height: 14px;
  left: 0px;
  top: 0px;
  border-radius: 16px;
  border: 4px solid #974be0;
}

.search-wrapper .close {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 20px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: all 0.3s cubic-bezier(0.285, -0.45, 0.935, 0.11);
  -moz-transition: all 0.3s cubic-bezier(0.285, -0.45, 0.935, 0.11);
  transition: all 0.3s cubic-bezier(0.285, -0.45, 0.935, 0.11);
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.search-wrapper.active .close {
  right: -50px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
  -moz-transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.search-wrapper .close::before,
.search-wrapper .close::after {
  position: absolute;
  content: "";
  background: #333;
  border-radius: 2px;
}
.search-wrapper .close::before {
  width: 5px;
  height: 25px;
  left: 10px;
  top: 0px;
}
.search-wrapper .close::after {
  width: 25px;
  height: 5px;
  left: 0px;
  top: 10px;
}
.search-wrapper .result-container {
  width: 100%;
  position: absolute;
  top: 80px;
  left: 0px;
  text-align: center;
  font-family: "Open Sans", Arial, Verdana;
  font-size: 14px;
  display: none;
  color: #b7b7b7;
}

@media screen and (max-width: 560px) {
  .search-wrapper.active .input-holder {
    width: 200px;
  }
}

.main1 {
  background: url(images/aboutcooper_bg.png) center no-repeat;
  padding-top: 114px;
  padding-bottom: 119px;
  background-size: cover;
}
.s1 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 40px;
  color: #4d81dd;
}
.s2 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 20px;
  color: #8f9297;
  line-height: 42px;
  text-indent: 2em;
}
.m1box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.more {
  width: 300px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #99a0a9;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0);
  transition: 0.6s;
}
.more3 .more {
  border: 1px solid #fff;
}
.more3 .s3 {
  color: #fff;
}
.s3 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #99a0a9;
  line-height: 32px;
  transition: 0.6s;
}
.m1img1 {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  height: 742px;
}
.s4 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 42px;
}
.s5 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #7f8286;
  line-height: 28px;
}
.m1img2 {
  position: absolute;
  right: -23px;
  top: 66px;
}
.m1img2::before {
  position: absolute;
  content: "";
  left: -65px;
  top: 120px;
  width: 33px;
  height: 33px;
  background: url(images/icon2.png) no-repeat;
  background-size: cover;
}
.m1img3 {
  position: absolute;
  bottom: -3%;
  left: 31%;
}
.m1img31img {
  margin-right: 40px;
  width: 294px;
  height: 216px;
}
.m1img31 {
  display: flex;
  align-items: center;
}
.m1img3::before {
  position: absolute;
  content: "";
  left: -51px;
  top: 24px;
  width: 33px;
  height: 33px;
  background: url(images/icon2.png) no-repeat;
  background-size: cover;
}
.m1img4 {
  position: absolute;
  left: 0;
  top: 40px;
}
.m1img41img {
  width: 329px;
  height: 208px;
}
.m1img4::before {
  position: absolute;
  content: "";
  right: -73px;
  top: 24px;
  width: 33px;
  height: 33px;
  background: url(images/icon2.png) no-repeat;
  background-size: cover;
}
.mySwiper1 {
  width: 100%;
 
  padding-top: 10px;
  padding-bottom: 10px;
}

.mySwiper1 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
 
  background: #f9f9f9;
  border-radius: 60px;
  box-shadow: 0 4px 15px rgba(38, 70, 190, 0.2);
  position: relative;
}
.mySwiper1 .swiper-slide a {
  width: 100%;
  height: 100%;
}

.mySwiper1 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.mySwiper1 .swiper-slide {
  width: 50%;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(38, 70, 190, 0.2);
  position: relative;
  overflow: hidden;
}

.main2 {
  padding-top: 114px;
  padding-bottom: 95px;
  background: url(images/products_bg.png) top no-repeat;
  background-size: cover;
  position: relative;
}
.s6 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 50px;
  color: #22212b;
  line-height: 60px;
  background: linear-gradient(0deg, #5689e3 0%, #eff5fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.M2title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 85px;
}
.s7 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  line-height: 35px;
}
.s8 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 32px;
  text-align: left;
}
.SWimgtext {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(83, 140, 239, 0.91) 19%,
    rgba(255, 255, 255, 0) 100%
  );
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding-left: 70px;
  padding-right: 70px;
  padding-bottom: 30px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.6s, transform 0.6s ease;
  transform: translateY(20px);
  -webkit-transition: opacity 0.6s, transform 0.6s ease;
  -moz-transition: opacity 0.6s, transform 0.6s ease;
  -ms-transition: opacity 0.6s, transform 0.6s ease;
  -o-transition: opacity 0.6s, transform 0.6s ease;
}

.mySwiper1 .swiper-slide:hover .SWimgtext {
  opacity: 1; /* 当 hover 时变为完全不透明 */
  transform: translateY(0); /* 恢复原位 */
}
.mySwiper1 .swiper-slide:hover img {
  transform: scale(1.1);
  transition: transform 0.6s ease;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next {
  background: url(images/products_Switch_btn_right_nor.png);
  background-size: cover;
  -webkit-transition: opacity 0.6s, transform 0.6s ease;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 100px !important;
  z-index: 9999;
  right: 18%;
}
.swiper-button-next:hover {
  background: url(images/products_Switch_btn_right_per.png);
  background-size: cover;
}
.swiper-button-prev {
  background: url(images/products_Switch_btn_left_nor.png);
  background-size: cover;
  -webkit-transition: opacity 0.6s, transform 0.6s ease;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 100px !important;
  z-index: 9999;
  left: 75%;
}
.swiper-button-prev:hover {
  background: url(images/products_Switch_btn_left_per.png);
  background-size: cover;
}
.more2 {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 64px;
}
.more:hover {
  background: rgba(83, 140, 239, 0.91);
}
.more:hover .s3 {
  color: #fff;
}
.main3 {
  padding-top: 105px;
  padding-bottom: 80px;
  background: url(images/news_bg.png) top no-repeat;
  background-size: cover;
}
.news {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news li {
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
  width: 30%;
  transition: 0.6s;
}
.news li .newsimg img {
  height: 222px;
  width: 100%;
  object-fit: cover;
}
.newstext {
  padding: 30px 20px;
}
.s9 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 20px;
  color: #333333;
  transition: 0.6s;
}
.s10 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #538cef;
}
.s11 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #777777;
  line-height: 30px;
}
.newsmore {
  width: 123px;
  height: 30px;
  border-radius: 14px;
  border: 1px solid #99a0a9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #99a0a9;
  line-height: 33px;
  margin-top: 25px;
  transition: 0.6s;
}
.news li:hover .s9 {
  color: #538cef;
}
.news li:hover .newsmore {
  color: #fff;
  background: #538cef;
}
.news li:hover .newsimg img {
  transform: scale(1.1);
  transition: transform 0.6s ease;
}
footer {
  padding-top: 45px;
  padding-bottom: 45px;
  background: url(images/footerBg.png) no-repeat;
  background-size: cover;
}
.s12 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 45px;
  opacity: 0.65;
}
.f1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer2 {
  background: rgba(0, 0, 0, 1);
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s13 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #fefefe;
  line-height: 28px;
}
.s13 a {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #fefefe;
  line-height: 28px;
}
.l-banner {
  height: 488px;
}
/**主体列表页开始**/
#l-container,
#d-container {
  background: rgba(242, 246, 254, 1);
}

.col_menu {
  width: 100%;
  float: left;
  margin-right: -240px;
  position: relative;
  height: 80px;
  background: #ffffff;
  box-shadow: 0px 5px 20px 0px rgba(0, 36, 61, 0.15);
}
.col_menu .l-qh {
}
.col_menu .col_menu_head {
  background: #009b91;
} /**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  height: 60px;
  font-size: 20px;
  font-weight: 600;
  font-family: SourceHanSansCN;
  color: #fff;
  position: relative;
  padding: 0 20px;
} /**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 40px;
  text-align: center;
} /**栏目名称图标**/
.col_menu .col_menu_con {
  border: 0;
  background: #fff;
  padding: 0;
  box-sizing: border-box;
}

/*栏目列表*/
.col_list {
}
.col_list .wp_listcolumn {
  border: 0px;
  display: flex;
  justify-content: space-between;
}
.col_list .wp_listcolumn .wp_column a {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 32px;
  border-bottom: 2px solid #fff;
}
.col_list .wp_listcolumn .wp_column a .column-name {
  display: inline-block;
  padding: 12px 0px;
  line-height: 30px;
}
.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected,
.col_list .wp_listcolumn .wp_column a.parent {
  color: #3288f4;
  border-bottom: 2px solid rgba(31, 96, 208, 1);
}
.col_list .wp_listcolumn .wp_column a.col_item_link i {
  position: absolute;
  content: "";
  right: 48px;
  top: 50%;
  margin-top: -7px;
  width: 8px;
  height: 14px;
  display: none;
}
.col_list .wp_listcolumn .wp_column a.col_item_link:hover i,
.col_list .wp_listcolumn .wp_column a.col_item_link.selected i,
.col_list .wp_listcolumn .wp_column a.col_item_link.parent i {
  display: block;
}
.col_list .wp_listcolumn .sub_list .wp_column a {
  color: #454545;
  background: none;
  border-bottom: 1px solid #bbb;
}

.es_article_content p,
div {
  line-height: 2em;
  font-size: 16px;
  font-weight: 400;
  font-family: SourceHanSansCN;
  color: #333;
}

.es_list_singlearticle .content p {
  line-height: 2em;
  font-size: 16px;
  font-weight: 400;
  font-family: SourceHanSansCN;
  color: #333;
}

.es_article_title {
  line-height: 2em;
  font-size: 22px;
  font-weight: 800;
  font-family: SourceHanSansCN;
  color: #333;
}

/*二级子栏目**/
.col_list .wp_listcolumn .sub_list a {
  font-weight: normal;
  font-size: 16px;
  color: #333;
  font-family: SourceHanSansCN;
}
.col_list .wp_listcolumn .sub_list a .column-name {
  display: inline-block;
  line-height: 30px;
  padding: 10px 0;
  cursor: pointer;
}
.col_list .wp_listcolumn .sub_list a:hover {
  background: #f6f6f6;
}
.col_list .wp_listcolumn .sub_list a.selected {
  background: #f6f6f6;
  font-weight: 600;
}
.col_list .wp_listcolumn .sub_list a:hover span.column-name,
.col_list .wp_listcolumn .sub_list a.selected span.column-name {
  color: #000;
}

/*三级子栏目**/
.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 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: SourceHanSansCN;
  position: relative;
}
.col_list .wp_listcolumn .sub_list .sub_list a .column-name:before {
  position: absolute;
  content: "";
  left: 2px;
  top: 50%;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  background: #bbb;
}
.col_list .wp_listcolumn .sub_list .sub_list a:hover,
.col_list .wp_listcolumn .sub_list .sub_list a.selected {
  font-weight: 400;
  color: #237b36;
  font-family: SourceHanSansCN;
}
.col_list .wp_listcolumn .sub_list .sub_list a:hover .column-name:before,
.col_list .wp_listcolumn .sub_list .sub_list a.selected .column-name:before {
  background: #f6f6f6;
}

/**栏目新闻**/
.col_news {
  width: 100%;
  float: right;
}
.col_news .col_news_box {
  margin-top: 60px;
  min-height: 500px;
  box-sizing: border-box;
  padding: 10px 30px 40px;
}
.col_news_head {
}
.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 64px;
  line-height: 64px;
} /**当前栏目**/
.col_metas .col_title h2 {
  display: inline-block;
  font-size: 24px;
  font-family: SourceHanSansCN;
  font-weight: 600;
  color: #333;
  border-bottom: 0px solid #036eb7;
  margin-bottom: 0;
  padding-left: 26px;
  position: relative;
}
.col_metas .col_title h2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  margin-top: -12px;
  width: 6px;
  height: 24px;
  background: #009b91;
}
.col_metas .col_path {
  display: inline-block;
  white-space: nowrap;
  height: 64px;
  line-height: 64px;
}
/**当前位置**/
.path_name {
  color: #007263;
  padding-left: 25px;
  background: url(images/home.png) left center no-repeat;
}
.col_metas .col_path a {
  color: #bdbdbd;
}
.col_metas .col_path a:last-child {
  color: #333;
}

.col_news_con {
  padding: 0;
  margin: 0;
}
.col_news_list {
  margin-top: 7px;
}
.col_news_list .news_list li.news {
  padding-right: 51px;
  padding-left: 30px;
  padding-top: 34px;
  padding-bottom: 36px;
  background-color: #fff;
  margin-bottom: 25px;
}
.col_news_list .news_list li.news .title {
  /* width: calc(100% - 90px); */
  font-size: 22px;
  font-weight: 600;
  font-family: SourceHanSansCN;
  line-height: 32px;
  margin-bottom: 43px;
  width: 100%;
}
.col_news_list .news_list li.news .news_meta {
  height: 54px;
  line-height: 54px;
  font-size: 14px;
  color: #999;
  margin-right: 53px;
  width: 20%;
}
.col_news_list .news_list li.news .news_meta .day {
  font-size: 26px;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #071021;
}
.col_news_list .news_list li.news .news_meta .year {
  font-size: 16px;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #071021;
}
.col_news_list .wp_article_list .list_item {
} /**栏目新闻列表**/
.col_news_list .wp_article_list .list_item .Article_Index {
} /**栏目新闻图标序号**/
.col_news_list .wp_entry,
.col_news_list .wp_entry p {
  line-height: 1.75;
  font-size: 14px;
  color: #333;
}
.col_news_list .wp_entry p {
  margin-bottom: 10px;
}
.col_news_list .wp_entry table {
  margin-bottom: 4px;
}
.col_news_list .wp_entry img {
  max-width: 800px;
  _width: expression(this.width > 800 ? "800px": this.width);
} /**列表页文章图片大小限制**/
.col_news_list .wp_entry,
.col_news_list .wp_entry table {
  margin: 0 auto;
}

/** 分页栏 **/
.col_news_con .pages {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-family: SourceHanSansCN;
  color: #494949;
  text-align: center;
  padding-top: 30px;
}
.col_news_con .pages li {
  float: none;
  display: inline-block;
  margin: 0 10px;
}
.col_news_con .pages li a {
  font-size: 16px;
}
.col_news_con .pages li a.pgNext {
  color: #237b36;
}
.col_news_con .pages li a.page-number {
  display: inline-block;
  border: 1px solid #237b36;
  width: 34px;
  height: 34px;
  border-radius: 2px;
  line-height: 34px;
  color: #237b36;
}
.col_news_con .pages li a.page-number:hover,
.col_news_con .pages li a.pgCurrent {
  border: 1px solid #237b36;
  background: #237b36;
  color: #fff;
}
.list-paddingleft-2 {
  display: flex;
  align-items: center;
  justify-content: center !important;
  width: 100%;
  height: 80px;
}
.list-paddingleft-2 .wp_column a {
  height: 80px;
  display: flex !important;
  align-items: center;
}
.list-paddingleft-2 li {
  margin-right: 130px;
}
.list-paddingleft-2 li:last-child {
  margin-right: 0px;
}

.c1 {
  width: 51%;
}
.c3 {
  display: flex;
}
.liebiaoimg {
  width: 383px;
  height: 215px;
  display: block;
  overflow: hidden;
  margin-right: 30px;
}
.c2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.jianjie {
  font-size: 16px;
  font-family: SourceHanSansCN;
  color: #7b7b7b;
  line-height: 28px;
  width: 100%;
}
.liebiaoimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/**主体文章页开始**/
#d-container .inner {
  padding: 10px 30px 30px;
  box-sizing: border-box;
}
.infobox {
  margin: 0 auto;
  margin-top: 28px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 20px 40px 40px;
}
.article {
  display: flex;
  padding-top: 24px;
  flex-direction: column;
}

.article h1.arti_title {
  line-height: 36px;
  font-family: SourceHanSansCN;
  font-size: 22px;
  text-align: center;
  color: #333;
  margin-bottom: 6px;
} /**文章标题**/
.article h2.arti_title {
  line-height: 40px;
  font-family: SourceHanSansCN;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #1b1b1b;
} /**文章副标题**/
.article .arti_metas {
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-family: SourceHanSansCN;
}
.article .arti_metas span {
  margin: 0 5px;
  font-size: 14px;
  color: #999;
} /**文章其他属性**/
.article .entry {
  overflow: hidden;
  margin-top: 10px;
  min-height: 300px;
} /**文章内容**/
.article .entry .read,
.article .entry .read p {
  line-height: 1.75;
  font-size: 16px;
  color: #333;
  font-family: SourceHanSansCN;
} /**阅读字体**/
.article .entry .read p {
  margin-bottom: 10px;
  text-indent: 2em;
}
.article .entry .read img,
.es_article_content p img {
  margin: 0 auto;
  max-width: 940px;
  _width: expression(this.width > 940 ? "940px": this.width);
  display: block;
} /**文章阅读部分图片大小限制**/
.article .entry .read table {
  margin: 0 auto;
  border: none;
}

.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;
}

.search-btn input {
  width: 30px; /* 按钮的宽度 */
  height: 30px;
  background: url("search-icon.png") no-repeat center center;
  border: none;
  cursor: pointer;
}

.wp-search:hover .search-input {
  width: 200px; /* 鼠标悬停时输入框展开 */
}
.mySwiperbanner {
  width: 100%;
  position: relative;
}
.mySwiperbanner .swiper-slide img {
  width: 100%;
}
.navi-aside-toggle {
  z-index: 9999 !important;
}
.MIIMGALL {
  width: 889px;
  height: 742px;
}

/* 初始状态 */
.menu-item {
  position: relative;
  display: inline-block;
}

.menu-item a {
  text-decoration: none; /* 移除默认下划线 */
  color: inherit; /* 继承父元素的文字颜色 */
}
.menu-item .menu-link:hover {
  color: #1c68e9 !important;
}

.l-banner {
  position: relative;
  height: 488px;
  background-size: cover;
}
.column-info {
  position: absolute;
  top: 70%;
  left: 19%;
}
.column-info h1 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 40px;
  color: #ffffff;
  line-height: 50px;
  background: linear-gradient(-55deg, #1c68e9 70.9228515625%, #357cf7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.column-info p {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 47px;
  color: rgba(31, 96, 208, 0.15);
  text-shadow: 0px 0px 40px rgba(14, 145, 206, 0.34);
  position: relative;
  top: -96px;
}
.es_article_content td,
.es_article_content th {
  border: 0px;
}

.news_list .news:hover .liebiaoimg img {
  transform: scale(1.1); /* 放大图片 */
  transition: transform 0.5s ease; /* 平滑过渡 */
}

.news_list .news:hover .title {
  color: #357cf7; /* 修改标题颜色 */
  transition: color 0.5s ease; /* 平滑过渡 */
}
.news_list .news:hover .news_meta .day,
.news_list .news:hover .news_meta .year {
  color: #357cf7 !important; /* 修改标题颜色 */
  transition: color 0.5s ease; /* 平滑过渡 */
}

table td {
  text-align: left;
}
table td img {
  margin: inherit !important;
}

.es_article_content p,
div {
  line-height: 20px;
}
.es_pagingbar_container .es_pagingbar li {
  padding: 10px;
  margin: 0 8px;
}
.es_pagingbar_container .es_pagingbar li.active a {
  color: #fff;
}
.es_pagingbar .page_jump {
  display: flex;
}
.es_pagingbar .page_jump span {
  font-size: 14px;
}
.es_pagingbar .page_jump .pages {
  padding-top: 0;
  margin-right: 8px;
}
.pagingJump {
  margin-left: 8px;
}
.maintitle-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.maintitle {
  width: 52%;
}
.maintitle1 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 30px;
  color: #a6c0ed;
  opacity: 0.7;
  line-height: 45px;
  margin-bottom: 24px;
}
.maintext1 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 45px;
}
.maintitle2 {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 38px;
  color: #4d81dd;
  line-height: 45px;
  margin-bottom: 54px;
}
.maintitle3 {
  width: 41%;
}

.maintitle3 img {
  width: 80%;
  transition: transform 0.5s ease; /* 添加平滑过渡效果 */
}

.maintitle3:hover img {
  transform: scale(1.1); /* hover 时图片放大 1.1 倍 */
}

.more1 {
  display: flex;
  align-items: center;
  justify-content: start;
}




.read1{
  background:white;
  padding: 10px 30px;
}
.read2{
  background:white;
  padding: 10px 0px;
}
/* 库派量光 */
.tb1{
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 170px;
  position: relative;
}
.tb1_s1{
  margin-top:40px;
  font-size: 36px;
  color: rgb(79, 129, 189);
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-weight: 700;
  position: relative;
}
.tb1_s1:before{
  content: "®";
  color: rgb(79, 129, 189);
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-weight: 700;
  font-size: 40px;
  position: absolute;
  top: -5px;
  left: 150px;
}
.tb1_s4{
  margin-top:40px;
  font-size: 36px;
  color: rgb(79, 129, 189);
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-weight: 700;
  position: relative;
  line-height: 1.5;
}
.tb1_s2{
  margin-top:20px;
  font-size: 16px;
  color: rgb(79, 129, 189);
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-weight: 400;
}
.tb1_s3{
  margin-top:20px;
  line-height: 2;
  font-size: 20px;
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-weight: 400;
}
.tb1_img{
  margin-top:30px;
  width: 400px;
  height: 301px;
}
.tb2{
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 100px;
  margin-top: 30px;
}
.tb2_s1{
  margin-top:20px;
  background:url(/upload/2025/0707/a7943d47-e493-4e8a-a20c-4d663f894d0e.png) no-repeat;
  width: 142px;
  height: 24px;
}
.tb2_s2{
  /* margin-top:10px; */
}
.tb2_s2 .tb2_s2_1{
  position: relative;
  padding:0 20px;
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-size: 20px;
  line-height: 45px;
}
.tb2_s2 .tb2_s2_1:before{
  position: absolute;
  left:5px;
  top:20px;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(79, 129, 189);
}

.tb2_img{
  width: 400px;
  height: 301px;
}
.tb2_img_1{
  width: 500px;
  height: 264px;
}
.tb3{
  width: 100%;
  margin-top: 30px;
}
.tb3_s1{
  background:url("/upload/2025/0707/733121fb-6abf-45f9-b3e5-b4921d2853a9.png") no-repeat;
  width: 142px;
  height: 36px;
  margin-bottom: 10px;
}
.tb3 .tb3_ul{
  display: flex;
}
.tb3_ul_1_1{
  display: flex;
}
.tb3_ul .tb3_ul_11{
  width: 25%;
  text-align: center;
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-size: 20px;
  padding: 20px 0;
}
.tb3_ul_1 .tb3_ul_12{
  width: 25%;
  text-align: center;
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-size: 20px;
  padding: 20px 0;
}
.tb3_ul_1_1 .tb3_ul_11_1{
  width: 25%;
  text-align: center;
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-size: 20px;
  padding: 20px 0;
}
.tb3_s2_1{
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-size: 20px;
  margin-top:15px;
}
.tb3_ul_1_1:first-child{
  background: rgb(248, 248, 248);
  font-weight: bold;
}
.tb3_ul_1:first-child{
  background: rgb(248, 248, 248);
  font-weight: bold;
}
.tb3_ul .tb3_ul_11:first-child,
.tb3_ul .tb3_ul_11:nth-child(3){
  background: rgb(248, 248, 248);
  font-weight: bold;
}

.tb4{
  width: 100%;
  margin-top: 30px;
}
.tb6{
  width: 100%;
  margin-top: 30px;
}
.tb4_s1{
  background:url("/upload/2025/0707/b2abc90e-4323-401f-9e93-1f1df38a13f5.png") no-repeat;
  width: 142px;
  height: 24px;
  margin-bottom: 10px;
}
.tb4_s2{
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-size: 20px;
  line-height: 40px;
}
.tb4_s3{
  display: flex;
}
.tb4_s3 .tb4_ul{
  width: 50%;
}
.tb4_s3 .tb4_ul .tb4_ul_11{
  text-align: left;
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-size: 20px;
  padding: 20px 10px;
}

.tb4_s3 .tb4_ul:nth-child(2){
  background: rgb(248, 248, 248);
}
.tb4_ul_1{
  display: flex;
  display: none;
  text-align: center;
}
.tb4_ul_1 .tb4_13{
  width: 100%;
  text-align: center;
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-size: 20px;
  padding: 20px 0;
}
.tb4_ul_1 .tb4_13:first-child,
.tb4_ul_1 .tb4_13:nth-child(3){ 
  background: rgb(248, 248, 248);
  font-weight: bold;
}


.tb4_s4{
  display: flex;
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
}
.tb4_s4 img{
  width: 25px; 
  height: 20px;
  margin-left: 0 !important;
}
.tb4_s4 a{
  position: absolute;
  left:37px;
  top: 0;
  font-size: 18px;
}

/* 芯合 */
.tb3 .tb3_ul_1,
.tb3 .tb3_ul_2{
  display: flex;
}

.tb3_ul_3.tb3_ul_1{
  display: none;
}
.tb5{
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}
.tb5_s1{
  margin-top:20px;
  background:url(images/lgg5.png) no-repeat;
  width: 250px;
  height: 24px;
}
.tb5_s2{
  /* margin-top:10px; */
}
.tb5_s2 .tb5_s2_11{
  position: relative;
  padding:0 20px;
  font-family: 微软雅黑, &quot;Microsoft YaHei&quot;
  font-size: 20px;
  line-height: 45px;
}
.tb5_s2 .tb5_s2_11:before{
  position: absolute;
  left:5px;
  top:20px;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(79, 129, 189);
}
.tb5_img{
  width: 620px;
  height: 466px;
}

.tb4_s5{
  display: flex;
  position: relative;
  margin-top: 15px;
}
.tb4_s5 a{
  position: absolute;
  left:37px;
  top: 0;
  font-size: 18px;
}
.tb4_s5 img{
  width: 25px; 
  height: 20px;
  margin-left: 0 !important;
  
}
.tb6_s1{
  margin-top:20px;
  background:url(images/lgg6.png) no-repeat;
  width: 250px;
  height: 24px;
}