@charset "utf-8";
:root {
  --color: #ff7700;
  --vh: 100vh;
}
/*字体*/
/* @font-face {
	font-family: "Fontke";
	src: url("Fontke.woff2") format("woff2"),
		 url("Fontke.woff") format("woff"),
		 url("Fontke.ttf") format("truetype"),
		 url("Fontke.eot") format("embedded-opentype"),
		 url("Fontke.svg") format("svg"),
		 url("Fontke.otf") format("opentype");
} */
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
html ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
html ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #ff7700;
}
html ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #222;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1600px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ptb100 {
    padding-top: 1.2rem;
    padding-bottom: 1.2em;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 1.2rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 1.2rem;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .font16 {
    font-size: 0.28rem;
  }
}
.public-scrollbar {
  scrollbar-width: thin;
}
.public-scrollbar ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.public-scrollbar ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #ff7700;
}
.public-scrollbar ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.public-content {
  color: #666;
  line-height: 1.8;
}
.public-content a {
  color: #666;
}
.public-content table {
  max-width: 100%;
}
.public-content table td,
.public-content table th {
  padding: 10px 15px;
  border: 1px solid #dbf1ed;
}
.public-content li {
  margin-left: 15px;
  list-style: disc;
}
.public-content ol {
  margin-left: 15px;
  list-style: decimal;
}
.public-content img,
.public-content video {
  max-width: 100%;
  height: auto !important;
}
#hi-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
#hi-upgrade .hi-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -177px 0 0 -450px;
  width: 900px;
}
#hi-upgrade .hi-wrap .hi-title {
  font-size: 30px;
  line-height: 40px;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #ff7700;
}
#hi-upgrade .hi-wrap .hi-close:hover {
  text-decoration: underline;
}
#hi-upgrade .hi-wrap .hi-text1 {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-text1 span {
  color: #ff7700;
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-text2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ddd;
}
#hi-upgrade .hi-wrap .hi-text2 span {
  position: relative;
  z-index: 5;
  padding: 0 30px;
  background: #fff;
}
#hi-upgrade .hi-wrap .hi-list {
  overflow: hidden;
}
#hi-upgrade .hi-wrap .hi-list li {
  display: inline-block;
  width: 16%;
}
#hi-upgrade .hi-wrap .hi-list li div {
  margin: 0 auto 5px;
  width: 50px;
  height: 50px;
}
#hi-upgrade .hi-wrap .hi-list li a {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-list li a:hover {
  color: #ff7700;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(../images/hi-llq-1.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(../images/hi-llq-2.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(../images/hi-llq-3.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-4.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-5.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-6.jpg) no-repeat center / 100%;
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 0.8rem;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 1.2rem;
  }
}
/*顶部*/
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 0.8rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  #c-header {
    line-height: 1.2rem;
  }
}
#c-header a {
  color: #fff;
  transition: 0.3s;
}
#c-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  #c-header .container {
    height: 1.2rem;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  #c-header .c-right-box {
    margin-right: 0;
  }
}
#c-header.c-head-move {
  top: -1rem;
}
@media (max-width: 1024px) {
  #c-header.c-head-move {
    top: -1.2rem;
  }
}
#c-header.c-style2 {
  color: #222;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#c-header.c-style2 a {
  color: #222;
}
/*顶部logo*/
#c-header .c-logo {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box img,
#c-header .c-logo .c-img-box svg {
  height: 0.4rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img,
  #c-header .c-logo .c-img-box svg {
    height: 0.6rem;
  }
}
#c-header .c-logo .c-img-box img:nth-child(2),
#c-header .c-logo .c-img-box svg:nth-child(2) {
  display: none;
}
#c-header .c-logo span {
  display: inline-block;
  margin-left: 0.2rem;
  padding-left: 0.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  #c-header .c-logo span {
    display: none;
  }
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(1) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(2) {
  display: inline-block;
}
/*顶部pc导航*/
#c-header .c-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  position: relative;
  margin-right: 0.3rem;
}
#c-header .c-nav > li:last-child {
  margin-right: 0;
}
#c-header .c-nav > li > .c-title-box {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#c-header .c-nav > li > .c-title-box img,
#c-header .c-nav > li > .c-title-box svg {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
}
#c-header .c-nav > li > .c-title-box img path,
#c-header .c-nav > li > .c-title-box svg path {
  fill: #fff;
  transition: all 0.3s;
}
#c-header .c-nav > li > .c-title-box .c-icon {
  transform: rotate(0) translateY(-5px);
  width: 20px;
  height: 20px;
}
#c-header .c-nav > li > .c-title-box .c-icon path {
  fill: #ff7700 !important;
}
#c-header .c-nav > li > .c-title-box.active a {
  color: #ff7700;
}
#c-header .c-nav > li > .c-title-box.active a::before {
  left: 4px;
}
#c-header .c-nav > li > .c-title-box.active a:hover::before {
  width: calc(100% + 13px);
}
#c-header .c-nav > li a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff7700;
  transition: 0.3s;
}
#c-header .c-nav > li.active > ul {
  top: 102%;
}
#c-header .c-nav li a {
  position: relative;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}
#c-header .c-nav ul {
  position: absolute;
  top: 99%;
  left: 50%;
  display: none;
  min-width: 1.5rem;
  line-height: 0.5rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#c-header .c-nav ul li {
  border-bottom: 1px solid #eee;
}
#c-header .c-nav ul li:last-child {
  border: 0;
}
#c-header .c-nav ul li a {
  color: #333;
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a,
#c-header .c-nav li:hover > .c-title-box > a,
#c-header .c-nav li.on > a,
#c-header .c-nav li:hover > a {
  color: #ff7700;
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a:before,
#c-header .c-nav li:hover > .c-title-box > a:before,
#c-header .c-nav li.on > a:before,
#c-header .c-nav li:hover > a:before {
  width: 100%;
}
#c-header.c-style2 .c-nav li.on > .c-title-box svg path,
#c-header .c-nav li:hover > .c-title-box svg path {
  fill: #ff7700 !important;
}
#c-header.c-style2 .c-nav li .c-title-box svg path {
  fill: #333;
}
/*顶部移动端导航*/
#c-header .c-nav2 {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 1rem;
  color: #333;
  background: #fff;
  overflow-y: auto;
  transition: 0.3s;
  text-align: left;
}
#c-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2 li {
  padding: 0 0.5rem;
  border-top: 1px solid #f1f1f1;
}
@media (max-width: 767px) {
  #c-header .c-nav2 li {
    padding: 0 0.5rem;
  }
}
#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
  width: 0.3rem;
  height: 0.3rem;
  transition: all 0.3s;
}
#c-header .c-nav2 li .c-title-box img path,
#c-header .c-nav2 li .c-title-box svg path {
  fill: #333;
}
#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}
#c-header .c-nav2 li a {
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: #ff7700;
}
#c-header .c-nav2 li ul {
  display: none;
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 1.2rem);
}
/*顶部导航开关*/
#c-header .c-switch {
  position: relative;
  display: none;
  width: 0.48rem;
  height: 0.4rem;
  cursor: pointer;
}
@media (max-width: 1024px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.3s;
}
#c-header .c-switch i:nth-child(1) {
  top: 0;
}
#c-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#c-header .c-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
#c-header.c-style2 .c-switch i {
  background: #333;
}
body.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
body.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 顶部功能区 */
#c-header .c-gn {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  #c-header .c-gn {
    display: none;
  }
}
#c-header .c-gn form {
  padding-left: 0.6rem;
  position: relative;
  cursor: pointer;
}
#c-header .c-gn form img,
#c-header .c-gn form svg {
  width: 20px;
  height: 20px;
  transition: 0.3s;
  vertical-align: middle;
}
@media (max-width: 991px) {
  #c-header .c-gn form img,
  #c-header .c-gn form svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
#c-header .c-gn form img path,
#c-header .c-gn form svg path {
  fill: #fff;
}
#c-header .c-gn form:hover > svg path {
  fill: #ff7700 !important;
}
#c-header .c-gn form .c-box {
  position: absolute;
  top: 106%;
  right: 0;
  display: none;
  width: 280px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#c-header .c-gn form .c-box input {
  float: left;
  padding: 0 0.15rem;
  width: -webkit-calc(30%);
  width: calc(100% - 70px);
  height: 50px;
}
#c-header .c-gn form .c-box button {
  float: left;
  width: 70px;
  height: 50px;
  color: #fff;
  background: #ff7700;
  cursor: pointer;
}
#c-header .c-gn .c-phone {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}
@media (max-width: 1580px) {
  #c-header .c-gn .c-phone {
    margin-left: 1.1rem;
  }
}
#c-header .c-gn .c-phone .icon-box {
  width: 25px;
  height: 25px;
  border-radius: 1000px;
  background: #ff7700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
#c-header .c-gn .c-phone img,
#c-header .c-gn .c-phone svg {
  width: 10px;
}
#c-header .c-gn .c-phone img path,
#c-header .c-gn .c-phone svg path {
  fill: #fff;
}
#c-header .c-gn .c-phone span {
  font-weight: bold;
}
#c-header .c-gn .c-btn {
  margin-left: 0.3rem;
}
#c-header .c-gn .c-btn .public-btn .btn-box {
  min-width: 120px;
  height: 40px;
}
@media (max-width: 1440px) {
  #c-header .c-gn .c-btn .public-btn .btn-box {
    min-width: 100px;
  }
}
#c-header.c-style2 .c-gn form > svg path {
  fill: #333;
}
#c-header.c-style2 .c-gn .c-phone svg path {
  fill: #ff7700;
  fill: #fff;
}
#c-go-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ff7700;
  cursor: pointer;
}
@media (max-width: 767px) {
  #c-go-top {
    display: none !important;
  }
}
#c-go-top img,
#c-go-top svg {
  width: 50%;
  height: 50%;
  transform: rotate(-90deg);
}
#c-go-top img path,
#c-go-top svg path {
  fill: #ffff;
}
/*首页轮播图*/
.c-home-banner .swiper-slide {
  overflow: hidden;
}
.c-home-banner .swiper-slide .c-pc,
.c-home-banner .swiper-slide .c-mb {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.c-home-banner .swiper-slide .c-mb {
  display: none;
}
@media (max-width: 991px) {
  .c-home-banner .swiper-slide .c-mb {
    display: block;
  }
}
@media (max-width: 991px) {
  .c-home-banner .swiper-slide .c-pc {
    display: none;
  }
}
.c-home-banner .swiper-button-next {
  margin-top: -0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  opacity: 0.2;
  transition: 0.3s;
  right: 0.6rem;
}
@media (max-width: 991px) {
  .c-home-banner .swiper-button-next {
    display: none;
  }
}
.c-home-banner .swiper-button-next::after {
  display: none;
}
.c-home-banner .swiper-button-next img,
.c-home-banner .swiper-button-next svg {
  width: 100%;
  height: 100%;
}
.c-home-banner .swiper-button-next img path,
.c-home-banner .swiper-button-next svg path {
  fill: #fff;
}
.c-home-banner .swiper-button-prev {
  margin-top: -0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  opacity: 0.2;
  transition: 0.3s;
  left: 0.6rem;
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .c-home-banner .swiper-button-prev {
    display: none;
  }
}
.c-home-banner .swiper-button-prev::after {
  display: none;
}
.c-home-banner .swiper-button-prev img,
.c-home-banner .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}
.c-home-banner .swiper-button-prev img path,
.c-home-banner .swiper-button-prev svg path {
  fill: #fff;
}
.c-home-banner .swiper-button-next:hover,
.c-home-banner .swiper-button-prev:hover {
  opacity: 1;
}
#c-code-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#c-code-pop .c-img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  width: 200px;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#c-code-pop .c-img-box .c-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  bottom: -60px;
  left: 50%;
  margin-left: -20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.5s;
}
#c-code-pop .c-img-box .c-close img,
#c-code-pop .c-img-box .c-close svg {
  margin: 4px;
  width: 18px;
  height: 18px;
}
#c-code-pop .c-img-box .c-close img path,
#c-code-pop .c-img-box .c-close svg path {
  fill: #333;
  transition: all 0.5s;
}
#c-code-pop .c-img-box .c-close:hover {
  background-color: #ff7700;
}
#c-code-pop .c-img-box .c-close:hover svg path {
  fill: #fff;
}
#c-code-pop .c-img-box > img {
  width: 100%;
}
#c-code-pop .c-img-box .c-text {
  padding-top: 10px;
  line-height: 1;
  text-align: center;
  color: #333;
}
/* 底部 */
#c-footer {
  color: #222;
}
#c-footer a {
  color: #222;
  transition: 0.3s;
}
#c-footer a:hover {
  color: #ff7700;
}
#c-footer .c-top-box {
  padding: 0.75rem 0 0.85rem;
  background: transparent;
}
@media (max-width: 767px) {
  #c-footer .c-top-box {
    padding: 1.1rem 0 0.5rem;
  }
}
#c-footer .c-top-box .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#c-footer .c-top-box .container .c-logo {
  width: 220px;
}
#c-footer .c-top-box .container .c-logo .c-div {
  margin-top: 0.2rem;
  color: #222;
}
#c-footer .c-top-box .container .c-logo > a img {
  height: 0.44rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-logo > a img {
    height: 0.8rem;
  }
}
#c-footer .c-top-box .container .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-title-box {
    padding: 0.3rem 0;
    border-bottom: 1px solid #ddd;
  }
}
#c-footer .c-top-box .container .c-title-box .c-title {
  color: #222;
}
#c-footer .c-top-box .container .c-title-box a {
  color: #222;
}
#c-footer .c-top-box .container .c-title-box a:hover {
  color: #ff7700;
}
#c-footer .c-top-box .container .c-title-box img,
#c-footer .c-top-box .container .c-title-box svg {
  display: none;
  transition: 0.3s;
  width: 0.3rem;
  height: 0.3rem;
}
#c-footer .c-top-box .container .c-title-box img path,
#c-footer .c-top-box .container .c-title-box svg path {
  fill: #999;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-title-box img,
  #c-footer .c-top-box .container .c-title-box svg {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box {
    width: 100%;
  }
}
#c-footer .c-top-box .container .c-list-box .c-list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list {
    padding-top: 0.2rem;
    display: none;
  }
}
#c-footer .c-top-box .container .c-list-box .c-list li {
  padding-bottom: 0.1rem;
  padding-right: 0.3rem;
  position: relative;
  padding-left: 15px;
}
#c-footer .c-top-box .container .c-list-box .c-list li:hover::before {
  background: #ff7700;
}
#c-footer .c-top-box .container .c-list-box .c-list li::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: #222;
  border-radius: 1000px;
  top: 10px;
  left: 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list li::before {
    content: unset;
  }
}
#c-footer .c-top-box .container .c-list-box .c-list li:last-child {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list li:last-child {
    padding-bottom: 0.2rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list li {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-list-box.on .c-title-box img,
#c-footer .c-top-box .container .c-list-box.on .c-title-box svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box.on .c-title-box img,
  #c-footer .c-top-box .container .c-list-box.on .c-title-box svg {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-box {
    padding-top: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-text-box p {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
}
#c-footer .c-top-box .container .c-text-box p img,
#c-footer .c-top-box .container .c-text-box p svg {
  margin-right: 15px;
  width: 0.2rem;
  min-width: 15px;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-box p {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-ico {
  display: flex;
  align-items: center;
}
#c-footer .c-top-box .container .c-ico a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: #33444f;
  transition: 0.3s;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-ico a {
    width: 0.6rem;
    height: 0.6rem;
  }
}
#c-footer .c-top-box .container .c-ico a img,
#c-footer .c-top-box .container .c-ico a svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-ico a img,
  #c-footer .c-top-box .container .c-ico a svg {
    width: 0.3rem;
    height: 0.3rem;
  }
}
#c-footer .c-top-box .container .c-ico a img path,
#c-footer .c-top-box .container .c-ico a svg path {
  fill: #fff;
}
#c-footer .c-top-box .container .c-ico a:hover {
  background: #ff7700;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-ul-box {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-wrap {
    width: 100%;
    padding-top: 0.4rem;
  }
}
#c-footer .c-link {
  color: #999;
}
#c-footer .c-link > .container {
  display: flex;
}
#c-footer .c-link .c-ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  flex: 1;
}
@media (max-width: 767px) {
  #c-footer .c-link .c-ul {
    margin-bottom: 0.5rem;
  }
}
#c-footer .c-link .c-ul .c-li {
  margin-right: 25px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  #c-footer .c-link .c-ul .c-li {
    margin-right: 0.3rem;
    margin-bottom: 0.1rem;
  }
}
#c-footer .c-link .c-ul .c-li .c-a {
  color: #999;
  transition: all 0.4s;
}
#c-footer .c-link .c-ul .c-li .c-a:hover {
  color: #ff7700;
}
#c-footer .c-link .c-ul .c-li:last-child {
  margin-right: 0;
}
#c-footer .c-bottom-box {
  padding: 0.2rem 0;
  border-top: 1px solid #ddd;
  color: #222;
  background: transparent;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box {
    padding: 0.6rem 0 1rem;
  }
}
#c-footer .c-bottom-box .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#c-footer .c-bottom-box .container a {
  color: #7f7f7f;
}
#c-footer .c-bottom-box .container a:hover {
  color: #ff7700;
}
#c-footer .c-bottom-box .container .c-copyright {
  word-wrap: break-word;
  word-break: break-all;
  display: flex;
  color: #222;
  flex-wrap: wrap;
}
#c-footer .c-bottom-box .container .c-copyright .c-support {
  margin-left: 10px;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box .container .c-copyright .c-support {
    margin-left: 0;
  }
}
#c-footer .c-bottom-box .container .c-copyright .c-a1 {
  margin-right: 20px;
}
#c-footer .c-bottom-box .container .c-copyright a {
  color: #222;
  transition: all 0.4s;
}
#c-footer .c-bottom-box .container .c-copyright a:hover {
  color: #ff7700;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box .container > .c-support {
    margin-top: 0.2rem;
  }
}
#c-footer .c-bottom-box .container > .c-support a {
  margin-left: 0.3rem;
}
#c-footer .c-bottom-box .container > .c-support a:nth-of-type(1) {
  margin-left: 0;
}
.zz_w1200,
.zz_w1380 {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 1260px) {
  .zz_w1200,
  .zz_w1380 {
    width: 90%;
  }
}
.zz_w1380 {
  max-width: 1380px;
}
/* 复选框和单选框 */
.xc-radio:checked,
.xc-radio.xc-checked,
.xc-checkbox:checked,
.xc-checkbox.xc-checked {
  background-color: #ff7700;
  border: 1px solid #ff7700;
  text-align: center;
  background-clip: padding-box;
  transition: all 0.3s;
}
.xc-radio,
.xc-checkbox {
  width: 15px;
  height: 15px;
  background-color: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  font-size: 8px;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  cursor: default;
  -webkit-appearance: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-transition: background-color ease 0.1s;
  transition: background-color ease 0.1s;
}
@media (max-width: 767px) {
  .xc-radio,
  .xc-checkbox {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.xc-radio:checked:before,
.xc-radio.xc-checked:before,
.xc-checkbox:checked:before,
.xc-checkbox.xc-checked:before,
.xc-radio:checked:after,
.xc-radio.xc-checked:after,
.xc-checkbox:checked:after,
.xc-checkbox.xc-checked:after {
  content: '';
  width: 8px;
  height: 4px;
  position: absolute;
  top: 20%;
  left: 20%;
  background: transparent;
  border: 1px solid #fff;
  border-top: none;
  border-right: none;
  z-index: 2;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .xc-radio:checked:before,
  .xc-radio.xc-checked:before,
  .xc-checkbox:checked:before,
  .xc-checkbox.xc-checked:before,
  .xc-radio:checked:after,
  .xc-radio.xc-checked:after,
  .xc-checkbox:checked:after,
  .xc-checkbox.xc-checked:after {
    width: 0.15rem;
    height: 0.08rem;
    top: 30%;
    left: 25%;
  }
}
.font12 {
  font-size: 12px;
}
@media (max-width: 767px) {
  .font12 {
    font-size: 0.24rem;
  }
}
.font14 {
  font-size: 14px;
}
.font16 {
  font-size: 16px;
}
.font17 {
  font-size: 17px;
}
.font18 {
  font-size: 18px;
}
.font20 {
  font-size: 20px;
}
.font24 {
  font-size: 24px;
}
.font26 {
  font-size: 26px;
}
.font28 {
  font-size: 28px;
}
.font30 {
  font-size: 30px;
}
.font36 {
  font-size: 0.36rem;
}
.font36 {
  font-size: 0.36rem;
}
.font38 {
  font-size: 38px;
}
.font48 {
  font-size: 0.48rem;
}
.font46 {
  font-size: 0.46rem;
}
.font44 {
  font-size: 0.44rem;
}
.font60 {
  font-size: 0.6rem;
}
.font52 {
  font-size: 0.52rem;
}
.font34 {
  font-size: 34px;
}
.font22 {
  font-size: 22px;
}
.font32 {
  font-size: 32px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
  .font18,
  .font17 {
    font-size: 16px;
  }
  .font24,
  .font22 {
    font-size: 18px;
  }
  .font20 {
    font-size: 16px;
  }
  .font30,
  .font28,
  .font26 {
    font-size: 24px;
  }
  .font36,
  .font34,
  .font32 {
    font-size: 26px;
  }
  .font48,
  .font44,
  .font46,
  .font38,
  .font52 {
    font-size: 32px;
  }
}
@media (max-width: 1260px) {
  .font20 {
    font-size: 16px;
  }
  .font44,
  .font38 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .font14 {
    font-size: 0.28rem;
  }
  .font16 {
    font-size: 0.28rem;
  }
  .font18,
  .font17 {
    font-size: 0.28rem;
  }
  .font20,
  .font24 {
    font-size: 0.32rem;
  }
  .font20 {
    font-size: 0.32rem;
  }
  .font30,
  .font28,
  .font26 {
    font-size: 0.36rem;
  }
  .font36,
  .font36 {
    font-size: 0.36rem;
  }
  .font48 {
    font-size: 0.48rem;
  }
  .font44 {
    font-size: 0.4rem;
  }
  .font38 {
    font-size: 0.38rem;
  }
  .font46,
  .font45 {
    font-size: 0.44rem;
  }
  .font60,
  .font52 {
    font-size: 0.48rem;
  }
  .font34,
  .font32 {
    font-size: 0.32rem;
  }
  .font22 {
    font-size: 0.32rem;
  }
}
.font50 {
  font-size: 0.5rem;
}
.font42 {
  font-size: 0.42rem;
}
.font40 {
  font-size: 0.4rem;
}
.font45 {
  font-size: 0.45rem;
}
@media (max-width: 1580px) {
  .font42 {
    font-size: 32px;
  }
  .font40 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .font50,
  .font45 {
    font-size: 0.48rem;
  }
  .font40,
  .font42 {
    font-size: 0.4rem;
  }
}
.font72 {
  font-size: 0.72rem;
}
.zz_bgjb {
  background-image: linear-gradient(to right, #f87908, #fb8a16);
  background-image: -o-linear-gradient(to right, #f87908, #fb8a16);
  background-image: -moz-linear-gradient(to right, #f87908, #fb8a16);
  background-image: -webkit-linear-gradient(to right, #f87908, #fb8a16);
}
.zz_bgjb2 {
  background-image: linear-gradient(to bottom, #fffaf9, #fffdfc);
  background-image: -o-linear-gradient(to bottom, #fffaf9, #fffdfc);
  background-image: -moz-linear-gradient(to bottom, #fffaf9, #fffdfc);
  background-image: -webkit-linear-gradient(to bottom, #fffaf9, #fffdfc);
}
@keyframes top {
  0% {
    transform: translateY(0%);
  }
  25% {
    transform: translateY(3%);
  }
  50% {
    transform: translateY(0%);
  }
  75% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0%);
  }
}
.pc {
  display: block;
}
.wap {
  display: none;
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .wap {
    display: block;
  }
}
.text_b {
  font-weight: bold;
}
.public-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.public-btn .btn-box {
  position: relative;
  padding: 0.15rem 20px;
  transition: all 0.4s;
  background: #fff;
  height: 0.5rem;
  min-height: 40px;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
@media (max-width: 1366px) {
  .public-btn .btn-box {
    min-width: 120px;
  }
}
.public-btn .btn-box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.8s;
  opacity: 1;
  background-image: linear-gradient(to right, #f87908, #fb8a16);
  background-image: -o-linear-gradient(to right, #f87908, #fb8a16);
  background-image: -moz-linear-gradient(to right, #f87908, #fb8a16);
  background-image: -webkit-linear-gradient(to right, #f87908, #fb8a16);
  border-radius: 5px;
}
.public-btn .btn-box::before {
  background: rgba(251, 138, 21, 0.95);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.8s;
  opacity: 0;
  border-radius: 5px;
}
.public-btn .hi-text {
  color: #fff;
  position: relative;
  z-index: 3;
}
.public-btn.public-btn3 .btn-box::after {
  background: transparent;
  border: 1px solid #ff7700;
  height: 97%;
}
.public-btn.public-btn3 .btn-box::before {
  background: rgba(251, 138, 21, 0.2);
  border: 1px solid #ff7700;
  height: 97%;
}
.public-btn.public-btn3 .btn-box .hi-text {
  color: #ff7700;
}
.public-btn:hover .btn-box::after {
  opacity: 0;
}
.public-btn:hover .btn-box::before {
  opacity: 1;
}
.public-btn2 {
  display: flex;
  align-items: center;
}
.public-btn2:hover .hi-ico {
  transform: translateX(5px);
}
.public-btn2 .hi-text {
  color: #ff7700;
}
.public-btn2 .hi-ico {
  width: 8px;
  margin-left: 10px;
  transition: all 0.4s;
}
@media (max-width: 1366px) {
  .public-btn2 .hi-ico {
    width: 6px;
  }
}
.fd {
  overflow: hidden;
}
.fd img {
  transition: all 0.8s;
}
.fd:hover img {
  transform: scale(1.05);
}
.color-333 {
  color: #333;
}
.public-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.public-title .h2 {
  padding: 0 0.4rem;
  text-align: center;
}
.public-title .h2 span {
  color: #ff7700;
}
.public-title .c-text {
  width: 43%;
  text-align: center;
  color: #666;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .public-title .c-text {
    width: 100%;
  }
}
.public-title .c-btn {
  margin-top: 0.2rem;
}
.public-title.public-title2 {
  align-items: flex-start;
}
.public-title.public-title2 .h2 {
  text-align: left;
  padding: 0;
}
.sybn-box {
  overflow: hidden;
}
.sybnSwp {
  position: relative;
}
.sybnSwp .swiper-slide {
  width: 100%;
  height: 33.33vw;
  position: relative;
  z-index: 1;
}
.sybnSwp .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.1;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.sybnSwp .swiper-slide::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: url(../images/wenli.png) center;
  opacity: 0.5;
}
.sybnSwp .swiper-slide .zz_w1200 {
  position: relative;
  z-index: 11;
  height: 100%;
}
.sybnSwp .swiper-slide .bgimg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.sybnSwp .swiper-slide .swpVideo {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
@media (max-width: 767px) {
}
.sybnSwp .swiper-slide .c-box {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  z-index: 3;
}
.sybnSwp .swiper-slide .c-box .c-icon {
  width: 1.65rem;
  min-width: 120px;
}
.sybnSwp .swiper-slide .c-box .h2 {
  color: #fff;
  line-height: 1.3;
}
.sybnSwp .swiper-slide .c-box .h2 span {
  color: #ff7700;
}
.sybnSwp .swiper-slide .c-box .c-text {
  color: #ddd;
  margin-top: 10px;
}
.sybnSwp .swiper-slide .c-box .btnbox {
  margin-top: 0.6rem;
}
.sybnSwp .swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.sybnSwp .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  opacity: 1;
  margin: 0 0.15rem;
  transition: all 0.4s;
  border-radius: 1000px;
  background: #fff;
}
.sybnSwp .swiper-pagination-bullet-active {
  background: #ff7700;
}
@media (max-width: 767px) {
  .sybnSwp .swiper-slide {
    height: 65vh;
  }
  .sybnSwp .swiper-slide .bgimg {
    height: 100%;
  }
  .sybnSwp .swiper-pagination {
    background: transparent;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.6rem;
  }
  .sybnSwp .swiper-pagination-bullet {
    background: #fff;
  }
  .sybnSwp .swiper-pagination-bullet-active {
    background: #ff7700;
  }
  .sybnSwp .swiper-slide .container {
    position: relative;
    height: 100%;
  }
  .sybnSwp .swiper-slide .c-box {
    width: 100%;
  }
  .sybnSwp .swiper-pagination-bullet {
    margin: 0 0.15rem;
  }
  .sybnSwp .swiper-slide .c-box .c-text {
    font-size: 0.28rem;
    margin-top: 0.2rem;
  }
  .sybnSwp .swiper-slide .c-box .btnbox {
    margin-top: 0.9rem;
  }
  .sybnSwp .swiper-slide .c-box .h2 {
    font-size: 0.48rem;
  }
}
.syAbout {
  padding: 1.1rem 0;
}
.syAbout .c-ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .syAbout .c-ul {
    margin-top: 0.7rem;
  }
}
.syAbout .c-ul .c-li {
  width: 30.41%;
  margin-right: 4.37%;
}
.syAbout .c-ul .c-li:nth-of-type(3n+3) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .syAbout .c-ul .c-li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.8rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #ddd;
  }
  .syAbout .c-ul .c-li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }
}
.syAbout .c-ul .c-li .c-a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.syAbout .c-ul .c-li .c-a:hover .imgbox img {
  transform: scale(1.05);
}
.syAbout .c-ul .c-li .c-a:hover .c-title {
  color: #ff7700;
}
.syAbout .c-ul .c-li .c-a:hover .public-btn2 .hi-ico {
  transform: translateX(5px);
}
.syAbout .c-ul .c-li .imgbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 63.88%;
  margin-bottom: 0.3rem;
  border-radius: 15px;
  overflow: hidden;
}
.syAbout .c-ul .c-li .imgbox > .img,
.syAbout .c-ul .c-li .imgbox > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .syAbout .c-ul .c-li .imgbox {
    margin-bottom: 0.5rem;
  }
}
.syAbout .c-ul .c-li .imgbox img {
  object-fit: cover;
  transition: all 0.8s;
  border-radius: 15px;
}
.syAbout .c-ul .c-li .c-cont {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.syAbout .c-ul .c-li .c-title {
  color: #222;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .syAbout .c-ul .c-li .c-title {
    font-size: 0.32rem;
  }
}
.syAbout .c-ul .c-li .c-text {
  margin-top: 10px;
  line-height: 1.625;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 0.25rem;
  color: #222;
}
@media (max-width: 767px) {
  .syAbout .c-ul .c-li .c-text {
    margin: 0.3rem 0 0.4rem;
  }
}
.syServer {
  height: 29.16vw;
  min-height: 500px;
  position: relative;
  padding: 1.3rem 0 0;
}
@media (max-width: 1024px) {
  .syServer {
    min-height: 390px;
  }
}
@media (max-width: 767px) {
  .syServer {
    height: auto;
    min-height: unset;
    background-image: linear-gradient(130deg, #fff6ee, #fffdfc);
    padding: 1rem 0 1.2rem;
  }
}
.syServer .bgimg-box {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  .syServer .bgimg-box {
    display: none;
  }
}
.syServer .bgimg-box .bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.syServer .c-ul {
  display: flex;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .syServer .c-ul {
    justify-content: space-between;
  }
}
.syServer .c-ul .c-li {
  margin-right: 0.8rem;
}
.syServer .c-ul .c-li:last-child .zz-c2 .c-img {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .syServer .c-ul .c-li {
    margin-right: 0;
    width: 25%;
  }
}
.syServer .c-ul .c-li .zz-c1 {
  color: #666;
}
@media (max-width: 767px) {
  .syServer .c-ul .c-li .zz-c1 {
    min-height: 0.8rem;
  }
}
.syServer .c-ul .c-li .zz-c2 {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .syServer .c-ul .c-li .zz-c2 {
    margin-top: 0.2rem;
  }
}
.syServer .c-ul .c-li .zz-c2 .c-img {
  height: 0.3rem;
  min-height: 15px;
}
.syServer .c-ul .c-li .zz-c2 .c-img path {
  fill: #ff7700;
}
.syServer .c-ul .c-li .zz-c2 .c-p {
  display: flex;
  align-items: flex-end;
  color: #ff7700;
}
.syServer .c-ul .c-li .zz-c2 .c-p .num {
  margin: 0 5px;
  min-width: 55px;
}
@media (max-width: 1580px) {
  .syServer .c-ul .c-li .zz-c2 .c-p .num {
    min-width: 40px;
  }
}
@media (max-width: 767px) {
  .syServer .c-ul .c-li .zz-c2 .c-p .num {
    min-width: 0.6rem;
  }
}
.syServer .c-ul .c-li .zz-c2 .c-p .syb {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .syServer .c-ul .c-li .zz-c2 .c-p .syb {
    margin-bottom: 0.06rem;
  }
}
.syServer .c-btn {
  margin-top: 0.75rem;
}
.plate-bgimg {
  background-size: 100% 100%;
}
.syCase {
  padding: 1rem 0 0;
}
.syCase .c-contBox {
  display: flex;
  margin-top: 0.35rem;
}
@media (max-width: 767px) {
  .syCase .c-contBox {
    flex-direction: column;
    margin-top: 0.2rem;
  }
}
.syCase .c-contBox .zz-left {
  width: 17.92%;
  padding: 0.35rem;
  padding-right: 0.2rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .syCase .c-contBox .zz-left {
    width: 22%;
  }
}
@media (max-width: 767px) {
  .syCase .c-contBox .zz-left {
    width: 100%;
    padding-left: 0;
  }
  .syCase .c-contBox .zz-left > div {
    width: 100%;
    overflow-x: auto;
    display: -webkit-box;
    padding: 0.4rem 0;
    padding-left: 0.3rem;
  }
}
.syCase .c-contBox .zz-left .bgimg {
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media (max-width: 767px) {
  .syCase .c-contBox .zz-left .bgimg {
    display: none;
  }
}
.syCase .c-contBox .zz-left .c-li {
  width: 100%;
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 16px;
  box-shadow: 22px 0 76px 0.6px rgba(219, 102, 0, 0.11);
  cursor: pointer;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .syCase .c-contBox .zz-left .c-li {
    width: 41%;
    width: auto;
    margin-bottom: 0;
    margin-right: 0.6rem;
    padding: 0.2rem 0.3rem;
    box-shadow: 22px 0 76px 0.6px rgba(219, 102, 0, 0.3);
  }
}
.syCase .c-contBox .zz-left .c-li::before {
  content: '';
  position: absolute;
  background-image: url(../images/xxy-21.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0px;
  left: 0;
  width: 112.5%;
  height: 100%;
  transition: all 0.4s;
  opacity: 0;
  z-index: 1;
}
@media (max-width: 767px) {
}
@media (max-width: 767px) {
  .syCase .c-contBox .zz-left .c-li.on {
    background: #fee5c8;
  }
}
.syCase .c-contBox .zz-left .c-li.on::before {
  opacity: 1;
}
.syCase .c-contBox .zz-left .c-li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .syCase .c-contBox .zz-left .c-li:last-child {
    margin-right: 0;
  }
}
.syCase .c-contBox .zz-left .c-li .c-tbox {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.syCase .c-contBox .zz-left .c-li .c-tbox .imgbox {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .syCase .c-contBox .zz-left .c-li .c-tbox .imgbox {
    margin-right: 0.2rem;
  }
}
.syCase .c-contBox .zz-left .c-li .c-tbox .imgbox img {
  width: auto;
  height: auto;
  max-height: 100%;
}
.syCase .c-contBox .zz-right {
  width: 79.58%;
  background: #fefaf4;
  display: flex;
  padding: 0.3rem 5px 0.35rem 0.75rem;
  position: relative;
  z-index: 1;
  justify-content: space-between;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (max-width: 1024px) {
  .syCase .c-contBox .zz-right {
    width: 78%;
  }
}
@media (max-width: 767px) {
  .syCase .c-contBox .zz-right {
    width: 100%;
    padding: 0.6rem 0.4rem;
  }
}
.syCase .c-contBox .zz-right .c-li {
  width: 100%;
  display: none;
}
.syCase .c-contBox .zz-right .c-li:nth-of-type(1) {
  display: block;
}
.syCase .c-contBox .zz-right .c-li .c-box {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .syCase .c-contBox .zz-right .c-li .c-box {
    flex-direction: column;
  }
}
.syCase .c-contBox .zz-right .left {
  width: 53.5%;
  padding-right: 2%;
  max-height: 550px;
  overflow-y: auto;
  /*定义滚动条的轨道颜色、内阴影及圆角*/
  /*定义滑块颜色、内阴影及圆角*/
}
.syCase .c-contBox .zz-right .left::-webkit-scrollbar {
  width: 1px;
  /*对垂直流动条有效*/
}
.syCase .c-contBox .zz-right .left::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #aaa;
  background-color: #aaa;
  border-radius: 3px;
}
.syCase .c-contBox .zz-right .left::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background-color: #ff7700;
}
@media (max-width: 1580px) {
  .syCase .c-contBox .zz-right .left {
    max-height: 525px;
  }
}
@media (max-width: 1024px) {
  .syCase .c-contBox .zz-right .left {
    max-height: 520px;
  }
}
@media (max-width: 767px) {
  .syCase .c-contBox .zz-right .left {
    order: 1;
    width: 100%;
    max-height: 2.8rem;
  }
}
.syCase .c-contBox .zz-right .left .c-list {
  margin-bottom: 25px;
}
.syCase .c-contBox .zz-right .left .c-list:last-child {
  margin-bottom: 0;
}
.syCase .c-contBox .zz-right .left .c-list .c-title {
  background: #ffedd7;
  border-radius: 1000px;
  color: #ff7700;
  padding: 0 10px;
  display: inline-flex;
}
.syCase .c-contBox .zz-right .left .c-list .c-text {
  margin-top: 10px;
}
.syCase .c-contBox .zz-right .left .c-list .c-text p {
  margin-bottom: 5px;
}
.syCase .c-contBox .zz-right .right {
  width: 43%;
}
@media (max-width: 767px) {
  .syCase .c-contBox .zz-right .right {
    order: 0;
    width: 100%;
    margin-bottom: 0.6rem;
  }
}
.syCase .c-contBox .zz-right .right .imgbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 142.66%;
  overflow: hidden;
  border-radius: 5px;
}
.syCase .c-contBox .zz-right .right .imgbox > .img,
.syCase .c-contBox .zz-right .right .imgbox > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.syCase .c-contBox .zz-right .right .imgbox img {
  transition: all 0.8s;
}
.syCase .c-contBox .zz-right .right .imgbox:hover img {
  transform: scale(1.05);
}
@media (max-width: 1580px) {
  .syCase .c-contBox .zz-right .right .imgbox {
    padding-bottom: 135.66%;
  }
}
@media (max-width: 1260px) {
  .syCase .c-contBox .zz-right .right .imgbox {
    padding-bottom: 142.66%;
  }
}
@media (max-width: 1024px) {
  .syCase .c-contBox .zz-right .right .imgbox {
    padding-bottom: 181.66%;
  }
}
@media (max-width: 991px) {
  .syCase .c-contBox .zz-right .right .imgbox {
    padding-bottom: 188.66%;
  }
}
@media (max-width: 767px) {
  .syCase .c-contBox .zz-right .right .imgbox {
    padding-bottom: 90%;
  }
}
.syCase .c-contBox .zz-right .right .imgbox img {
  object-fit: cover;
  border-radius: 5px;
}
.syCase.solution3 {
  padding-top: 0;
  padding-bottom: 1.05rem;
}
.syPartner {
  padding: 1rem 0 1.25rem;
}
@media (max-width: 767px) {
  .syPartner {
    padding: 1rem 0;
  }
}
.syPartner .c-ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.syPartner .c-ul .c-li {
  width: 10%;
  margin-right: 1.11%;
  box-shadow: 11px 0 62px 7px rgba(73, 73, 73, 0.07);
  border-radius: 5px;
  margin-bottom: 15px;
}
.syPartner .c-ul .c-li:nth-of-type(9n+9) {
  margin-right: 0;
}
@media (max-width: 1024px) {
  .syPartner .c-ul .c-li {
    width: 15%;
    margin-right: 1.66%;
  }
  .syPartner .c-ul .c-li:nth-of-type(9n+9) {
    margin-right: 1.66%;
  }
  .syPartner .c-ul .c-li:nth-of-type(6n+6) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .syPartner .c-ul .c-li {
    width: 23%;
    margin-right: 2.66%;
    margin-bottom: 0.2rem;
  }
  .syPartner .c-ul .c-li:nth-of-type(9n+9) {
    margin-right: 2.66%;
  }
  .syPartner .c-ul .c-li:nth-of-type(6n+6) {
    margin-right: 2.66%;
  }
  .syPartner .c-ul .c-li:nth-of-type(4n+4) {
    margin-right: 0%;
  }
}
.syPartner .c-ul .c-li .imgbox {
  border-radius: 5px;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
}
.syPartner .c-ul .c-li .imgbox > .img,
.syPartner .c-ul .c-li .imgbox > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.syPartner .c-ul .c-li .imgbox img {
  object-fit: cover;
}
.syPartner.solution4 {
  padding-top: 0;
}
.public-ftbn {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0.7rem 0 0.9rem;
}
@media (max-width: 767px) {
  .public-ftbn {
    padding: 1rem 0;
  }
}
.public-ftbn .c-cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.public-ftbn .c-title-box .c-tips {
  margin-bottom: 5px;
  text-align: center;
}
.public-ftbn .c-title-box .h2 {
  text-align: center;
}
@media (max-width: 767px) {
  .public-ftbn .c-title-box .h2 {
    font-size: 0.4rem;
  }
}
.public-ftbn .c-title-box .c-text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .public-ftbn .c-title-box .c-text {
    margin-top: 0.1rem;
  }
}
.public-ftbn .c-title-box .c-text .c-li {
  position: relative;
  padding-left: 15px;
  margin-left: 10px;
}
.public-ftbn .c-title-box .c-text .c-li:nth-of-type(1) {
  padding-left: 0;
  margin-left: 0;
}
.public-ftbn .c-title-box .c-text .c-li:nth-of-type(1)::before {
  content: unset;
}
.public-ftbn .c-title-box .c-text .c-li::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #222;
  border-radius: 1000px;
  top: 13px;
  left: 0;
}
@media (max-width: 767px) {
  .public-ftbn .c-title-box .c-text .c-li::before {
    top: 8px;
  }
}
.public-ftbn .c-btn {
  margin-top: 0.45rem;
  display: flex;
}
@media (max-width: 767px) {
  .public-ftbn .c-btn {
    margin-top: 0.7rem;
  }
}
.public-ftbn .c-btn .public-btn:nth-of-type(2) {
  margin-left: 0.25rem;
}
.public-nybn {
  width: 100%;
  height: 0;
  padding-bottom: 21.875%;
  position: relative;
}
.public-nybn > .img,
.public-nybn > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.public-nybn .bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.public-nybn .bgimg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.public-nybn .bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public-nybn .c-box {
  display: flex;
  flex-direction: column;
  position: absolute;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.public-nybn .bn-title {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
}
.public-nybn .bn-title .c-tips {
  color: #eee;
  text-align: center;
  margin-bottom: 10px;
}
.public-nybn .bn-title .h2 {
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.public-nybn.public-nybn2 .bgimg::before {
  content: unset;
}
.public-nybn.public-nybn2 .bn-title .h2 {
  color: #333;
  text-align: left;
}
.public-nybn.public-nybn2 .bn-title .h2 span {
  color: #ff7700;
}
@media (max-width: 1580px) {
  .public-nybn .bn-box .r-ul li {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .public-nybn .bn-box {
    height: auto;
  }
}
@media (max-width: 767px) {
  .public-nybn {
    padding-bottom: 70%;
  }
  .public-nybn .bn-box .l-ul li {
    padding: 0.3rem 0 0.3rem;
  }
  .public-nybn .bn-box .r-ul {
    display: none;
  }
  .public-nybn .bn-title .h2 {
    font-size: 0.4rem;
    margin-top: 0.2rem;
  }
  .public-nybn .bn-title .c-tips {
    font-size: 0.3rem;
  }
}
.public-crumbs {
  border-bottom: 1px solid #e6e6e6;
}
.public-crumbs > .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.public-crumbs > .container .zz-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.public-crumbs > .container a {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.public-crumbs > .container a,
.public-crumbs > .container span {
  color: #333;
}
.public-crumbs > .container .c-syb {
  margin: 0 15px;
}
.public-crumbs > .container .c-syb path {
  fill: #dedede;
}
@media (max-width: 767px) {
  .public-crumbs > .container .c-syb {
    margin: 0 0.2rem;
  }
}
.public-crumbs .crumbs-list {
  display: flex;
  align-items: center;
}
.public-crumbs .crumbs-list a {
  display: inline-block;
  align-items: center;
  color: #999;
}
.public-crumbs .crumbs-list a.on {
  color: #333;
}
.public-crumbs .crumbs-list:last-child img,
.public-crumbs .crumbs-list:last-child svg {
  display: none;
}
.public-crumbs > .container .on {
  color: #222;
}
.public-crumbs.public-crumbs2 .container {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .public-crumbs.public-crumbs2 .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.public-crumbs.public-crumbs2 .container .zz-right {
  display: flex;
}
@media (max-width: 767px) {
  .public-crumbs.public-crumbs2 .container .zz-right {
    display: -webkit-box;
    overflow-x: auto;
  }
  .public-crumbs.public-crumbs2 .container .zz-right::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
.public-crumbs.public-crumbs2 .container .zz-right a {
  height: 100%;
  display: inline-flex;
  align-items: center;
  color: #333;
  margin-left: 0.85rem;
  transition: all 0.3s;
  position: relative;
}
@media (max-width: 767px) {
  .public-crumbs.public-crumbs2 .container .zz-right a {
    display: block;
    margin-left: 0.6rem;
  }
}
.public-crumbs.public-crumbs2 .container .zz-right a:nth-of-type(1) {
  margin-left: 0;
}
.public-crumbs.public-crumbs2 .container .zz-right a::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background: #ff7700;
  transition: all 0.3s;
}
.public-crumbs.public-crumbs2 .container .zz-right a:hover,
.public-crumbs.public-crumbs2 .container .zz-right a.on {
  color: #ff7700;
}
.public-crumbs.public-crumbs2 .container .zz-right a:hover::before,
.public-crumbs.public-crumbs2 .container .zz-right a.on::before {
  width: 100%;
}
.public-crumbs.public-crumbs3 {
  border-bottom: 0;
}
.public-crumbs.on {
  border-bottom: 0;
}
@media (max-width: 767px) {
  .public-crumbs > .container a {
    padding: 0;
    line-height: 1.8;
    display: flex;
    align-items: center;
  }
  .public-crumbs .c-back {
    display: none;
  }
  .public-crumbs {
    padding: 0.25rem 0;
  }
  .public-crumbs.public-crumbs2 {
    padding-top: 0.3rem;
    padding-bottom: 0;
  }
  .public-crumbs.public-crumbs2 .zz-left {
    margin-bottom: 0.25rem;
  }
  .public-crumbs.public-crumbs2 .container .zz-right {
    margin-top: 0;
  }
  .public-crumbs.public-crumbs2 .container .zz-right a {
    padding-bottom: 0.25rem;
  }
  .public-crumbs.public-crumbs3 {
    padding-bottom: 0;
  }
}
.public-page {
  display: flex;
  width: 100%;
  justify-content: center;
}
.public-page .c-box {
  display: flex;
}
.public-page .p-num {
  display: flex;
  flex-wrap: wrap;
}
.public-page .p-num a {
  width: 0.5rem;
  height: 0.5rem;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.4s;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 0.2rem;
}
@media (max-width: 767px) {
  .public-page .p-num a {
    width: 0.8rem;
    height: 0.8rem;
    min-width: 0.8rem;
    min-height: 0.8rem;
  }
}
.public-page .p-num a svg {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 15px;
  min-height: 15px;
}
.public-page .p-num a svg path {
  fill: #271c19;
}
.public-page .p-num a:hover,
.public-page .p-num a.on {
  background: #ff7700;
  color: #fff;
  border-color: #ff7700;
}
.public-page .p-num a:hover svg path,
.public-page .p-num a.on svg path {
  fill: #fff;
}
.public-page .p-prev a,
.public-page .p-next a {
  display: flex;
}
.public-page .p-prev,
.public-page .p-next {
  width: auto;
}
.public-page .p-prev a,
.public-page .p-next a {
  width: auto;
}
.public-page .p-prev a img,
.public-page .p-next a img,
.public-page .p-prev a svg,
.public-page .p-next a svg {
  width: 8px;
  height: 12px;
}
.public-page .p-prev a img path,
.public-page .p-next a img path,
.public-page .p-prev a svg path,
.public-page .p-next a svg path {
  fill: #e9e9e9;
}
@media (max-width: 767px) {
  .public-page .p-prev a img,
  .public-page .p-next a img,
  .public-page .p-prev a svg,
  .public-page .p-next a svg {
    width: 0.1rem;
    height: 0.1rem;
  }
}
.public-page .p-prev a {
  padding-left: 0.15rem;
  padding-right: 0.2rem;
}
.public-page .p-prev .c-span {
  margin-left: 0.1rem;
}
@media (max-width: 767px) {
  .public-page .p-prev .c-span {
    display: none;
  }
}
.public-page .p-next a {
  padding-left: 0.2rem;
  padding-right: 0.15rem;
}
.public-page .p-next .c-span {
  margin-right: 0.1rem;
}
@media (max-width: 767px) {
  .public-page .p-next .c-span {
    display: none;
  }
}
.public-page .p-num {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .public-page .p-prev,
  .public-page .p-num a,
  .public-page .p-next {
    margin: 0 0.15rem 0.2rem;
    width: 0.8rem;
    height: 0.8rem;
    font-size: 0.24rem;
  }
  .public-page .p-prev svg,
  .public-page .p-num a svg,
  .public-page .p-next svg {
    width: 0.25rem;
    height: 0.25rem;
    min-width: 0.25rem;
    min-height: 0.25rem;
  }
  .public-page {
    flex-direction: column;
    align-items: center;
  }
  .public-page .p-prev {
    margin-left: 0;
    margin-right: 0.15rem;
  }
  .public-page .p-prev a {
    margin-left: 0;
  }
  .public-page .p-next {
    margin-right: 0;
  }
  .public-page .p-next a {
    margin-left: 0;
  }
  .public-page .p-num span {
    margin: 0 0.3rem;
  }
  .public-page .c-box {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.case {
  padding: 0.7rem 0 1.2rem;
}
.case .c-ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding-bottom: 0.45rem;
}
.case .c-ul .c-li {
  width: 30.41%;
  margin-right: 4.38%;
  height: auto;
  transition: all 0.4s;
  border-radius: 15px;
  background: transparent;
  margin-bottom: 0.45rem;
}
@media (max-width: 767px) {
  .case .c-ul .c-li {
    width: 100%;
    margin-right: 0;
    background: #fff;
    box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.06);
  }
}
.case .c-ul .c-li .c-a {
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.case .c-ul .c-li:hover {
  background: #fff;
  box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.06);
}
.case .c-ul .c-li:hover .imgbox img {
  transform: scale(1.05);
}
.case .c-ul .c-li:hover .c-cont span {
  color: #ff7700;
}
.case .c-ul .c-li:hover .c-cont .c-btn .c-syb path {
  fill: #ff7700;
}
.case .c-ul .c-li:nth-of-type(3n+3) {
  margin-right: 0;
}
.case .c-ul .c-li .imgbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
  overflow: hidden;
  border-radius: 15px;
}
.case .c-ul .c-li .imgbox > .img,
.case .c-ul .c-li .imgbox > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.case .c-ul .c-li .imgbox img {
  transition: all 0.8s;
  object-fit: cover;
  border-radius: 15px;
}
.case .c-ul .c-li .c-cont {
  padding: 0.25rem 0.15rem 0.2rem 0.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .case .c-ul .c-li .c-cont {
    padding: 0.5rem 0.3rem;
  }
}
.case .c-ul .c-li .c-cont .c-title {
  color: #222;
  transition: all 0.4s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.case .c-ul .c-li .c-cont .c-btn {
  margin-top: 0.2rem;
  color: #999;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .case .c-ul .c-li .c-cont .c-btn {
    margin-top: 0.3rem;
  }
}
.case .c-ul .c-li .c-cont .c-btn span {
  transition: all 0.4s;
}
.case .c-ul .c-li .c-cont .c-btn .c-syb path {
  fill: #dedede;
  transition: all 0.4s;
}
.case.news {
  padding-top: 0.35rem;
}
@media (max-width: 767px) {
  .case.news {
    padding-top: 0.8rem;
    padding-bottom: 1.2rem;
  }
}
.case.news .c-label {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.15rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .case.news .c-label {
    margin-bottom: 0.25rem;
  }
}
.case.news .c-label .c-div {
  color: #ff7700;
}
.case.news .c-label .c-labelUl {
  display: flex;
  color: #999;
  flex-wrap: wrap;
}
.case.news .c-label .c-labelUl .c-labelLi {
  padding-right: 5px;
  margin-right: 5px;
  position: relative;
}
@media (max-width: 767px) {
  .case.news .c-label .c-labelUl .c-labelLi {
    padding-right: 0.2rem;
    margin-right: 0.2rem;
  }
}
.case.news .c-label .c-labelUl .c-labelLi::before {
  content: '';
  position: absolute;
  height: 75%;
  width: 1px;
  background: #eee;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.case.news .c-label .c-labelUl .c-labelLi:last-child {
  padding-right: 0;
  margin-right: 5px;
}
.case.news .c-label .c-labelUl .c-labelLi:last-child::before {
  content: unset;
}
.caseDetail1 {
  padding: 0.95rem 0 0.55rem;
}
.caseDetail1 .c-ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  align-items: stretch;
}
.caseDetail1 .c-ul .c-li {
  background: #fa8511;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30%;
  margin-right: 5%;
  padding: 0.45rem 0.2rem 0.55rem;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 0.45rem;
}
@media (max-width: 767px) {
  .caseDetail1 .c-ul .c-li {
    width: 100%;
    margin-right: 0;
    padding: 0.55rem 0.65rem;
  }
}
.caseDetail1 .c-ul .c-li:nth-of-type(3n+3) {
  margin-right: 0;
}
.caseDetail1 .c-ul .c-li .c-cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.caseDetail1 .c-ul .c-li .c-num {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.1rem;
}
@media (max-width: 767px) {
  .caseDetail1 .c-ul .c-li .c-num {
    margin-bottom: 0.3rem;
  }
}
.caseDetail1 .c-ul .c-li .c-num,
.caseDetail1 .c-ul .c-li .c-title,
.caseDetail1 .c-ul .c-li .c-text {
  text-align: center;
}
.caseDetail1 .c-ul .c-li .c-title,
.caseDetail1 .c-ul .c-li .c-text {
  color: #fff;
}
.caseDetail1 .c-ul .c-li .c-text {
  margin-top: 0.1rem;
  line-height: 1.875em;
  padding: 0 0.4rem;
  flex: 1;
}
@media (max-width: 767px) {
  .caseDetail1 .c-ul .c-li .c-text {
    margin-top: 0.3rem;
    padding: 0;
  }
}
.caseDetail2 {
  padding-bottom: 1.1rem;
}
.caseDetail2 .c-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .caseDetail2 .c-box {
    flex-direction: column;
  }
}
.caseDetail2 .c-box .c-left {
  width: 35.33%;
  padding-right: 2%;
  max-height: 340px;
  overflow-y: auto;
  /*定义滚动条的轨道颜色、内阴影及圆角*/
  /*定义滑块颜色、内阴影及圆角*/
}
.caseDetail2 .c-box .c-left::-webkit-scrollbar {
  width: 1px;
  /*对垂直流动条有效*/
}
.caseDetail2 .c-box .c-left::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #aaa;
  background-color: #aaa;
  border-radius: 3px;
}
.caseDetail2 .c-box .c-left::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background-color: #ff7700;
}
@media (max-width: 1366px) {
  .caseDetail2 .c-box .c-left {
    max-height: 330px;
  }
}
@media (max-width: 767px) {
  .caseDetail2 .c-box .c-left {
    width: 100%;
    order: 1;
  }
}
.caseDetail2 .c-box .c-left .c-li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.25rem;
}
.caseDetail2 .c-box .c-left .c-li:last-child {
  margin-bottom: 0;
}
.caseDetail2 .c-box .c-left .c-li .c-num {
  background: #ff7700;
  color: #fff;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  margin-right: 0.2rem;
}
.caseDetail2 .c-box .c-left .c-li .c-text {
  flex: 1;
  color: #666;
}
@media (max-width: 767px) {
  .caseDetail2 .c-box .c-left .c-li .c-text {
    margin-top: 3px;
  }
}
.caseDetail2 .c-box .c-left .c-li .c-text span {
  color: #333;
  font-weight: bold;
}
.caseDetail2 .c-box .c-right {
  width: 58.75%;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .caseDetail2 .c-box .c-right {
    width: 100%;
    order: 0;
    margin-bottom: 0.6rem;
  }
}
.caseDetail2 .c-box .c-right .imgbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 58.15%;
  border-radius: 15px;
  overflow: hidden;
}
.caseDetail2 .c-box .c-right .imgbox > .img,
.caseDetail2 .c-box .c-right .imgbox > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.caseDetail2 .c-box .c-right .imgbox img {
  transition: all 0.8s;
}
.caseDetail2 .c-box .c-right .imgbox:hover img {
  transform: scale(1.05);
}
.caseDetail2 .c-box .c-right .imgbox img {
  object-fit: cover;
}
.caseDetail3 {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 1rem 0 0.45rem;
}
@media (max-width: 767px) {
  .caseDetail3 {
    padding: 1.1rem 0 0.4rem;
  }
}
.caseDetail3 .public-title .h2 {
  color: #fff;
}
.caseDetail3 .c-ul {
  display: flex;
  margin-top: 0.8rem;
  align-items: stretch;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .caseDetail3 .c-ul {
    flex-direction: column;
  }
}
.caseDetail3 .c-ul .c-li {
  width: 31.25%;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.85rem;
  align-items: center;
}
.caseDetail3 .c-ul .c-li:last-child::before {
  content: unset;
}
@media (max-width: 767px) {
  .caseDetail3 .c-ul .c-li {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.8rem;
  }
}
.caseDetail3 .c-ul .c-li::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .caseDetail3 .c-ul .c-li::before {
    content: unset;
  }
}
.caseDetail3 .c-ul .c-li:nth-of-type(3n+2) {
  width: 37.5%;
}
@media (max-width: 767px) {
  .caseDetail3 .c-ul .c-li:nth-of-type(3n+2) {
    width: 100%;
  }
}
.caseDetail3 .c-ul .c-li:nth-of-type(3n+2) .box {
  width: 65%;
}
@media (max-width: 767px) {
  .caseDetail3 .c-ul .c-li:nth-of-type(3n+3) {
    align-items: center;
  }
}
.caseDetail3 .c-ul .c-li .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 77.33%;
}
.caseDetail3 .c-ul .c-li .box .c-numBox {
  width: 1.25rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0.65rem;
}
@media (max-width: 767px) {
  .caseDetail3 .c-ul .c-li .box .c-numBox {
    margin-bottom: 0.4rem;
  }
}
.caseDetail3 .c-ul .c-li .box .c-numBox .bgimg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.caseDetail3 .c-ul .c-li .box .c-numBox .c-num {
  color: #ff7700;
  position: relative;
  z-index: 2;
}
.caseDetail3 .c-ul .c-li .box .c-text {
  color: #fff;
  text-align: center;
}
.caseDetail4 {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 1rem 0 1.5rem;
}
@media (max-width: 767px) {
  .caseDetail4 {
    padding: 1.1rem 0;
  }
}
.caseDetail4 .c-box {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.45rem;
}
@media (max-width: 767px) {
  .caseDetail4 .c-box {
    flex-direction: column;
    margin-top: 0.6rem;
  }
}
.caseDetail4 .c-box .bgimg {
  top: 10%;
  right: 0;
  position: relative;
  width: 93.33%;
  height: 0;
  padding-bottom: 35.71%;
  position: absolute;
}
.caseDetail4 .c-box .bgimg > .img,
.caseDetail4 .c-box .bgimg > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.caseDetail4 .c-box .c-left {
  width: 36.66%;
}
@media (max-width: 767px) {
  .caseDetail4 .c-box .c-left {
    width: 100%;
  }
}
.caseDetail4 .c-box .c-left .imgbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 103.4%;
  overflow: hidden;
  border-radius: 20px;
  border-bottom-right-radius: 75px;
}
.caseDetail4 .c-box .c-left .imgbox > .img,
.caseDetail4 .c-box .c-left .imgbox > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.caseDetail4 .c-box .c-left .imgbox img {
  transition: all 0.8s;
}
.caseDetail4 .c-box .c-left .imgbox:hover img {
  transform: scale(1.05);
}
.caseDetail4 .c-box .c-left .imgbox img {
  object-fit: cover;
  transition: all 0.8s;
  border-radius: 20px;
  border-bottom-right-radius: 75px;
}
.caseDetail4 .c-box .c-right {
  width: 55.83%;
  padding-right: 0.65rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .caseDetail4 .c-box .c-right {
    width: 100%;
    margin-top: 0.45rem;
  }
}
.caseDetail4 .c-box .c-right .c-icon {
  width: 0.5rem;
  height: 0.5rem;
  margin-bottom: 0.45rem;
}
.caseDetail4 .c-box .c-right .c-cont {
  padding-left: 0.2rem;
  color: #333;
}
.caseDetail4 .c-box .c-right .c-cont .c-text {
  max-height: 215px;
  overflow-y: auto;
  /*定义滚动条的轨道颜色、内阴影及圆角*/
  /*定义滑块颜色、内阴影及圆角*/
}
.caseDetail4 .c-box .c-right .c-cont .c-text::-webkit-scrollbar {
  width: 1px;
  /*对垂直流动条有效*/
}
.caseDetail4 .c-box .c-right .c-cont .c-text::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #aaa;
  background-color: #aaa;
  border-radius: 3px;
}
.caseDetail4 .c-box .c-right .c-cont .c-text::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background-color: #ff7700;
}
@media (max-width: 1366px) {
  .caseDetail4 .c-box .c-right .c-cont .c-text {
    max-height: 210px;
  }
}
@media (max-width: 1024px) {
  .caseDetail4 .c-box .c-right .c-cont .c-text {
    max-height: 145px;
  }
}
.caseDetail4 .c-box .c-right .c-cont .c-tipsBox {
  margin-top: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.caseDetail4 .c-box .c-right .c-cont .c-tipsBox .c-tips {
  color: #999;
}
.newsNav {
  margin-top: 0.8rem;
}
.newsNav .zz_w1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .newsNav .zz_w1200 {
    flex-direction: column;
    align-items: flex-start;
  }
}
.newsNav .c-left {
  display: flex;
}
.newsNav .c-left .c-div {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .newsNav .c-left .c-div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.2rem;
    margin-top: 0.15rem;
  }
}
.newsNav .c-left .c-ul {
  display: flex;
  flex-wrap: wrap;
}
.newsNav .c-left .c-ul .c-li {
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-flex;
}
@media (max-width: 767px) {
  .newsNav .c-left .c-ul .c-li {
    margin-right: 0.3rem;
    margin-bottom: 0.2rem;
  }
}
.newsNav .c-left .c-ul .c-li:last-child {
  margin-right: 0;
}
.newsNav .c-left .c-ul .c-li .c-a {
  color: #999;
  background: #fafafa;
  border-radius: 1000px;
  padding: 4px 15px;
  transition: all 0.4s;
  display: inline-flex;
}
@media (max-width: 767px) {
  .newsNav .c-left .c-ul .c-li .c-a {
    padding: 0.16rem 0.3rem;
  }
}
.newsNav .c-left .c-ul .c-li:hover .c-a,
.newsNav .c-left .c-ul .c-li.on .c-a {
  background: #ff7700;
  color: #fff;
}
@media (max-width: 767px) {
  .newsNav .c-right {
    margin-top: 0.5rem;
    width: 100%;
  }
}
.newsNav .c-right .c-search {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding-left: 15px;
  height: 40px;
  display: flex;
  align-items: center;
  width: 2.9rem;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .newsNav .c-right .c-search {
    width: 100%;
    height: 0.8rem;
    padding-left: 0.3rem;
    margin-bottom: 0;
  }
}
.newsNav .c-right .c-search form {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}
.newsNav .c-right .c-search input {
  flex: 1;
  /* WebKit browsers */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10+ */
}
.newsNav .c-right .c-search input::-webkit-input-placeholder {
  color: #ddd;
}
.newsNav .c-right .c-search input:-moz-placeholder {
  color: #ddd;
}
.newsNav .c-right .c-search input::-moz-placeholder {
  color: #ddd;
}
.newsNav .c-right .c-search input:-ms-input-placeholder {
  color: #ddd;
}
.newsNav .c-right .c-search button {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .newsNav .c-right .c-search button {
    width: 1rem;
  }
  .newsNav .c-right .c-search button img,
  .newsNav .c-right .c-search button svg {
    width: 0.4rem;
  }
}
.newsNav .c-right .c-search button img,
.newsNav .c-right .c-search button svg {
  width: 20px;
}
.newsNav .c-right .c-search button img path,
.newsNav .c-right .c-search button svg path {
  fill: #ddd;
}
.about-box {
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.about-box .about1 {
  display: flex;
  justify-content: space-between;
  padding-top: 1.1rem;
}
@media (max-width: 767px) {
  .about-box .about1 {
    flex-direction: column;
  }
}
.about-box .about1 .imgbox {
  position: relative;
  width: 42.5%;
  height: 0;
  padding-bottom: 34.16%;
  overflow: hidden;
  border-radius: 15px;
}
.about-box .about1 .imgbox > .img,
.about-box .about1 .imgbox > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.about-box .about1 .imgbox img {
  transition: all 0.8s;
}
.about-box .about1 .imgbox:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .about-box .about1 .imgbox {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 80.37%;
  }
  .about-box .about1 .imgbox > .img,
  .about-box .about1 .imgbox > img {
    position: absolute;
    width: 100%;
    height: 100%;
  }
}
.about-box .about1 .imgbox img {
  object-fit: cover;
  border-radius: 15px;
}
.about-box .about1 .c-cont {
  width: 50%;
  padding-left: 0.35rem;
  padding-right: 1.2rem;
  padding-top: 0.45rem;
}
@media (max-width: 767px) {
  .about-box .about1 .c-cont {
    width: 100%;
    padding: 0.6rem 0.4rem;
  }
}
.about-box .about1 .c-cont .c-title {
  position: relative;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .about-box .about1 .c-cont .c-title {
    padding-bottom: 0.4rem;
  }
}
.about-box .about1 .c-cont .c-title::before {
  content: '';
  position: absolute;
  width: 0.5rem;
  height: 2px;
  background: #e5e5e5;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .about-box .about1 .c-cont .c-title::before {
    width: 0.5rem;
  }
}
.about-box .about1 .c-cont .c-text {
  margin-top: 0.55rem;
  color: #666;
}
.about-box .about1 .c-cont .c-text .c-scroll {
  max-height: 190px;
  overflow-y: auto;
  /*定义滚动条的轨道颜色、内阴影及圆角*/
  /*定义滑块颜色、内阴影及圆角*/
}
.about-box .about1 .c-cont .c-text .c-scroll::-webkit-scrollbar {
  width: 1px;
  /*对垂直流动条有效*/
}
.about-box .about1 .c-cont .c-text .c-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #aaa;
  background-color: #aaa;
  border-radius: 3px;
}
.about-box .about1 .c-cont .c-text .c-scroll::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background-color: #ff7700;
}
@media (max-width: 1366px) {
  .about-box .about1 .c-cont .c-text .c-scroll {
    max-height: 230px;
  }
}
@media (max-width: 1024px) {
  .about-box .about1 .c-cont .c-text .c-scroll {
    max-height: 150px;
  }
}
@media (max-width: 767px) {
  .about-box .about1 .c-cont .c-text .c-scroll {
    max-height: 3.4rem;
  }
}
.about-box .about2 .c-ul {
  display: flex;
  flex-wrap: wrap;
  background-image: linear-gradient(to bottom, #fffaf9, #fffdfc);
  background-image: -o-linear-gradient(to bottom, #fffaf9, #fffdfc);
  background-image: -moz-linear-gradient(to bottom, #fffaf9, #fffdfc);
  background-image: -webkit-linear-gradient(to bottom, #fffaf9, #fffdfc);
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(213, 194, 186, 0.1);
  margin-top: 0.25rem;
}
@media (max-width: 767px) {
  .about-box .about2 .c-ul {
    flex-wrap: wrap;
    padding: 0.5rem 0 0;
  }
}
.about-box .about2 .c-ul .c-li {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.4rem 0 0.55rem;
  position: relative;
}
@media (max-width: 767px) {
  .about-box .about2 .c-ul .c-li {
    width: 50%;
    padding: 0 0 0.5rem;
  }
  .about-box .about2 .c-ul .c-li:nth-of-type(2n+2)::before {
    content: unset;
  }
}
.about-box .about2 .c-ul .c-li::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  background: #dfdedd;
  height: 28.5%;
  transform: translateY(-50%);
}
.about-box .about2 .c-ul .c-li:last-child::before {
  content: unset;
}
.about-box .about2 .c-ul .c-li .box1 {
  display: flex;
  align-items: flex-start;
  color: #ff7700;
}
.about-box .about2 .c-ul .c-li .box1 .c-syb {
  margin-top: 5px;
  margin-left: 5px;
}
.about-box .about2 .c-ul .c-li .box1 .c-syb2 {
  margin-top: 10px;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .about-box .about2 .c-ul .c-li .box1 .c-syb2 {
    margin-top: 6px;
  }
}
.about-box .about2 .c-ul .c-li .box2 {
  color: #666;
}
.about-box .about3 {
  margin-top: 1rem;
  overflow: hidden;
  padding-bottom: 1rem;
  position: relative;
}
.about-box .about3::before {
  content: "";
  width: 30.7%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #fffdfc, rgba(255, 255, 255, 0.1));
  background-image: -o-linear-gradient(to right, #fffdfc, rgba(255, 255, 255, 0.1));
  background-image: -moz-linear-gradient(to right, #fffdfc, rgba(255, 255, 255, 0.1));
  background-image: -webkit-linear-gradient(to right, #fffdfc, rgba(255, 255, 255, 0.1));
  z-index: 2;
  background-size: cover;
}
.about-box .about3::after {
  content: "";
  width: 30.7%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-image: linear-gradient(to left, #fffdfc, rgba(255, 255, 255, 0.1));
  background-image: -o-linear-gradient(to left, #fffdfc, rgba(255, 255, 255, 0.1));
  background-image: -moz-linear-gradient(to left, #fffdfc, rgba(255, 255, 255, 0.1));
  background-image: -webkit-linear-gradient(to left, #fffdfc, rgba(255, 255, 255, 0.1));
  z-index: 2;
  background-size: cover;
}
.about-box .about3 .public-title {
  margin-bottom: 0.45rem;
}
.about-box .about3 .c-logoBox {
  overflow: hidden;
  position: relative;
  padding: 30px 0 0px;
  margin: -30px 0 0px;
  width: 100%;
}
.about-box .about3 .c-logoBox .c-list {
  display: flex;
  position: relative;
}
.about-box .about3 .c-logoBox .c-list::before {
  content: "";
  width: 30.7%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #fffdfc, rgba(255, 255, 255, 0.1));
  background-image: -o-linear-gradient(to right, #fffdfc, rgba(255, 255, 255, 0.1));
  background-image: -moz-linear-gradient(to right, #fffdfc, rgba(255, 255, 255, 0.1));
  background-image: -webkit-linear-gradient(to right, #fffdfc, rgba(255, 255, 255, 0.1));
  z-index: 2;
  background-size: cover;
}
.about-box .about3 .c-logoBox .c-list::after {
  content: "";
  width: 30.7%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-image: linear-gradient(to left, #fffdfc, rgba(255, 255, 255, 0.1));
  background-image: -o-linear-gradient(to left, #fffdfc, rgba(255, 255, 255, 0.1));
  background-image: -moz-linear-gradient(to left, #fffdfc, rgba(255, 255, 255, 0.1));
  background-image: -webkit-linear-gradient(to left, #fffdfc, rgba(255, 255, 255, 0.1));
  z-index: 2;
  background-size: cover;
}
.about-box .about3 .c-logoBox .c-list .str_move {
  display: flex;
}
.about-box .about3 .c-logoBox .c-list .c-li {
  width: 155px;
  height: 75px;
  background: #fff;
  margin-right: 0.2rem;
  margin-bottom: 0.2rem;
  border-radius: 10px;
  box-shadow: 7px 11px 62px rgba(73, 73, 73, 0.07);
}
@media (max-width: 1366px) {
  .about-box .about3 .c-logoBox .c-list .c-li {
    width: 135px;
    height: 63px;
  }
}
@media (max-width: 767px) {
  .about-box .about3 .c-logoBox .c-list .c-li {
    width: 2.5rem;
    height: 1.2rem;
  }
}
.about-box .about3 .c-logoBox .c-list .c-li .imgbox {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-box .about3 .c-logoBox .c-list .c-li .imgbox img {
  width: auto;
  height: auto;
}
.about-box .about3 .c-logoBox .c-list3 .c-li {
  margin-bottom: 0;
}
.about4 {
  padding: 1rem 0 0rem;
}
.about4 .c-ul {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .about4 .c-ul {
    margin-top: 0.6rem;
  }
}
.about4 .c-ul .c-li {
  width: 30%;
  margin-right: 5%;
}
@media (max-width: 767px) {
  .about4 .c-ul .c-li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.about4 .c-ul .c-li:hover .imgbox img {
  transform: scale(1.05);
}
.about4 .c-ul .c-li:nth-of-type(3n+3) {
  margin-right: 0;
}
.about4 .c-ul .c-li .imgbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 63.88%;
  overflow: hidden;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  margin-bottom: 0.35rem;
  z-index: 2;
}
.about4 .c-ul .c-li .imgbox > .img,
.about4 .c-ul .c-li .imgbox > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.about4 .c-ul .c-li .imgbox img {
  object-fit: cover;
  transition: all 0.4s;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  z-index: 1;
}
.about4 .c-ul .c-li .c-title,
.about4 .c-ul .c-li .c-text {
  text-align: center;
}
.about4 .c-ul .c-li .c-title {
  color: #333;
}
.about4 .c-ul .c-li .c-text {
  padding: 0 0.4rem;
  color: #666;
  margin-top: 0.15rem;
}
@media (max-width: 767px) {
  .about4 .c-ul .c-li .c-text {
    margin-top: 0.25rem;
  }
}
.about5 {
  padding: 0.4rem 0 0.3rem;
}
@media (max-width: 767px) {
  .about5 {
    padding: 0.2rem 0 0.4rem;
  }
}
.about5 .c-ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  .about5 .c-ul {
    margin-top: 0.6rem;
  }
}
.about5 .c-ul .c-li {
  margin-bottom: 0.75rem;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about5 .c-ul .c-li:nth-of-type(4n+4) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .about5 .c-ul .c-li {
    width: 50%;
  }
}
.about5 .c-ul .c-li .imgbox {
  width: 1.6rem;
  height: 1.7rem;
  display: flex;
  align-items: center;
}
.about5 .c-ul .c-li .imgbox img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.about5 .c-ul .c-li .c-text {
  color: #333;
}
.about6 {
  padding: 1rem 0 1rem;
}
@media (max-width: 767px) {
  .about6 {
    padding-bottom: 0.8rem;
  }
}
.about6 .c-box1 .c-ul {
  display: flex;
}
@media (max-width: 767px) {
  .about6 .c-box1 .c-ul {
    flex-direction: column;
    margin-top: 0.5rem;
  }
}
.about6 .c-box1 .c-ul .c-li {
  display: flex;
  align-items: flex-start;
  padding: 0.45rem 0;
}
@media (max-width: 767px) {
  .about6 .c-box1 .c-ul .c-li {
    width: 100%;
    margin-bottom: 0.5rem;
    padding: 0;
  }
}
.about6 .c-box1 .c-ul .c-li .c-icon {
  width: 0.5rem;
  height: 0.5rem;
  min-width: 40px;
  min-height: 40px;
  border-radius: 1000px;
  background: #ff7700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about6 .c-box1 .c-ul .c-li .c-cont {
  margin-left: 0.2rem;
  flex: 1;
}
.about6 .c-box1 .c-ul .c-li .c-title {
  color: #333;
}
.about6 .c-box1 .c-ul .c-li .c-text {
  color: #666;
}
.about6 .c-box1 .c-ul .c-li1 {
  width: 33.33%;
  padding-left: 0.4rem;
  padding-right: 0.2rem;
}
@media (max-width: 767px) {
  .about6 .c-box1 .c-ul .c-li1 {
    width: 100%;
    padding: 0;
  }
}
.about6 .c-box1 .c-ul .c-li2 {
  width: 42.5%;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}
.about6 .c-box1 .c-ul .c-li2::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ddd;
  width: 1px;
  height: 25%;
  left: 0;
}
.about6 .c-box1 .c-ul .c-li2::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ddd;
  width: 1px;
  height: 25%;
  right: 0;
}
@media (max-width: 767px) {
  .about6 .c-box1 .c-ul .c-li2 {
    width: 100%;
    padding: 0;
  }
  .about6 .c-box1 .c-ul .c-li2::before,
  .about6 .c-box1 .c-ul .c-li2::after {
    content: unset;
  }
}
.about6 .c-box1 .c-ul .c-li3 {
  width: 28.34%;
  display: flex;
  padding-left: 1rem;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .about6 .c-box1 .c-ul .c-li3 {
    width: 100%;
    padding-left: 0;
  }
}
.about6 .c-box2 .c-ul {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .about6 .c-box2 .c-ul {
    margin-top: 0.2rem;
  }
}
.about6 .c-box2 .c-ul .c-li {
  width: 32.5%;
  position: relative;
  margin-right: 1.25%;
  margin-bottom: 15px;
}
.about6 .c-box2 .c-ul .c-li:nth-of-type(3n+3) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .about6 .c-box2 .c-ul .c-li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.about6 .c-box2 .c-ul .c-li .c-box1 {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 53.84%;
  border-radius: 5px;
  transition: all 0.4s;
}
.about6 .c-box2 .c-ul .c-li .c-box1 > .img,
.about6 .c-box2 .c-ul .c-li .c-box1 > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.about6 .c-box2 .c-ul .c-li .c-box1::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.49);
  z-index: 1;
  border-radius: 5px;
}
.about6 .c-box2 .c-ul .c-li .c-box1 img {
  border-radius: 5px;
}
.about6 .c-box2 .c-ul .c-li .c-box1 .c-title {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.about6 .c-box2 .c-ul .c-li .c-box2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  border-radius: 5px;
  opacity: 0;
  transition: all 0.4s;
}
.about6 .c-box2 .c-ul .c-li .c-box2 img {
  border-radius: 5px;
}
.about6 .c-box2 .c-ul .c-li .c-box2 .c-cont {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.about6 .c-box2 .c-ul .c-li .c-box2 .c-cont .c-text {
  text-align: center;
  margin-top: 0.2rem;
}
.about6 .c-box2 .c-ul .c-li .c-box2 .c-cont .c-tel {
  margin-top: 5px;
}
.server {
  position: relative;
  padding-top: 0.8rem;
  padding-bottom: 0.25rem;
}
.server .bgimg {
  position: absolute;
  width: 100%;
  bottom: -11.5%;
  left: 0;
  z-index: -1;
}
.server .zz_w1200 {
  display: flex;
  align-items: flex-start;
}
.server .c-left {
  width: 42.5%;
  position: sticky;
  top: 1.2rem;
}
@media (max-width: 767px) {
  .server .c-left {
    top: 1.8rem;
    width: 40%;
  }
}
.server .c-left .c-li {
  position: relative;
  margin-bottom: 0.5rem;
  display: flex;
}
.server .c-left .c-li.on .c-a .c-icon {
  background-image: linear-gradient(to bottom, #ff7801, #ff7700);
  background-image: -o-linear-gradient(to bottom, #ff7801, #ff7700);
  background-image: -moz-linear-gradient(to bottom, #ff7801, #ff7700);
  background-image: -webkit-linear-gradient(to bottom, #ff7801, #ff7700);
  box-shadow: 2px 9px 20px rgba(249, 122, 9, 0.22);
}
.server .c-left .c-li.on .c-a .c-icon img path,
.server .c-left .c-li.on .c-a .c-icon svg path {
  fill: url(#grad1);
}
.server .c-left .c-li.on .c-a .c-icon::before {
  background: #ff7700;
}
.server .c-left .c-li.on .c-a .c-title {
  color: #ff7700;
}
.server .c-left .c-li:last-child .c-a .c-icon::before {
  content: unset;
}
.server .c-left .c-li .c-a {
  display: flex;
  align-items: center;
}
.server .c-left .c-li .c-a .c-icon {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 1000px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s;
}
.server .c-left .c-li .c-a .c-icon::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0.1rem);
  width: 1px;
  height: 0.3rem;
  background: #eee;
  transition: all 0.4s;
}
.server .c-left .c-li .c-a .c-icon img,
.server .c-left .c-li .c-a .c-icon svg {
  width: 0.22rem;
  height: 0.22rem;
  min-width: 16px;
  min-height: 16px;
}
.server .c-left .c-li .c-a .c-icon img path,
.server .c-left .c-li .c-a .c-icon svg path {
  fill: #fff;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .server .c-left .c-li .c-a .c-icon img,
  .server .c-left .c-li .c-a .c-icon svg {
    width: 0.3rem;
    height: 0.3rem;
    min-width: 0.3rem;
    min-height: 0.3rem;
  }
}
.server .c-left .c-li .c-a .c-title {
  transition: all 0.4s;
  margin-left: 0.2rem;
  color: #999;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .server .c-left .c-li .c-a .c-title {
    font-size: 0.28rem;
  }
}
.server .c-right {
  width: 57.5%;
  padding-top: 0.25rem;
}
@media (max-width: 767px) {
  .server .c-right {
    width: 60%;
  }
}
.server .c-right .c-list {
  margin-bottom: 0.8rem;
  padding-top: 0.8rem;
  margin-top: -0.8rem;
}
.server .c-right .c-list .imgbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 57.24%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 0.25rem;
}
.server .c-right .c-list .imgbox > .img,
.server .c-right .c-list .imgbox > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.server .c-right .c-list .imgbox img {
  transition: all 0.8s;
}
.server .c-right .c-list .imgbox:hover img {
  transform: scale(1.05);
}
.server .c-right .c-list .imgbox img {
  object-fit: cover;
  transition: all 0.4s;
  border-radius: 10px;
}
.server .c-right .c-list .c-title {
  color: #333;
}
.server .c-right .c-list .c-text {
  color: #666;
  margin-top: 10px;
}
.server .c-right .c-list .c-text span {
  font-weight: bold;
  color: #333;
}
.privacy {
  margin-top: 1rem;
  padding-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .privacy {
    margin-top: 0.6rem;
  }
}
.privacy .c-date-box {
  display: flex;
  justify-content: center;
  color: #999;
  margin-top: 0.2rem;
}
.privacy .c-date-box .c-date1 {
  margin-right: 0.3rem;
}
.privacy .c-box {
  margin-top: 0.3rem;
  color: #666;
}
@media (max-width: 767px) {
  .privacy .c-box {
    margin-top: 0.6rem;
  }
}
.product {
  padding: 0.8rem 0 1.25rem;
}
.product .c-li {
  margin-bottom: 0.7rem;
  transition: all 0.4s;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .product .c-li {
    margin-bottom: 0.4rem;
    box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.06);
  }
}
.product .c-li:hover {
  box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.06);
}
.product .c-li:hover .c-left .imgbox img {
  transform: scale(1.05);
}
.product .c-li .c-a {
  display: flex;
}
@media (max-width: 767px) {
  .product .c-li .c-a {
    flex-direction: column;
  }
}
.product .c-li .c-left {
  width: 57.08%;
  border: 5px solid #fff;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .product .c-li .c-left {
    width: 100%;
  }
}
.product .c-li .c-left .imgbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 58.39%;
  overflow: hidden;
  border-radius: 20px;
}
.product .c-li .c-left .imgbox > .img,
.product .c-li .c-left .imgbox > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.product .c-li .c-left .imgbox img {
  border-radius: 20px;
  transition: all 0.8s;
}
.product .c-li .c-right {
  width: 42.91%;
  padding: 0.4rem 0.55rem 0.5rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 767px) {
  .product .c-li .c-right {
    width: 100%;
    padding: 0.35rem 0.55rem 0.55rem;
  }
}
.product .c-li .c-right .h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .product .c-li .c-right .h3 {
    font-size: 0.32rem;
  }
}
.product .c-li .c-right .c-desc {
  color: #666;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.product .c-li .c-right .box {
  margin-top: 0.45rem;
  max-height: 105px;
  overflow-y: auto;
  /*定义滚动条的轨道颜色、内阴影及圆角*/
  /*定义滑块颜色、内阴影及圆角*/
}
.product .c-li .c-right .box::-webkit-scrollbar {
  width: 1px;
  /*对垂直流动条有效*/
}
.product .c-li .c-right .box::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #aaa;
  background-color: #aaa;
  border-radius: 3px;
}
.product .c-li .c-right .box::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background-color: #ff7700;
}
@media (max-width: 1580px) {
  .product .c-li .c-right .box {
    max-height: 120px;
  }
}
@media (max-width: 1024px) {
  .product .c-li .c-right .box {
    max-height: 92px;
  }
}
@media (max-width: 767px) {
  .product .c-li .c-right .box {
    margin-top: 0.3rem;
  }
}
.product .c-li .c-right .box .c-list {
  display: flex;
  margin-bottom: 0.1rem;
  align-items: flex-start;
}
.product .c-li .c-right .box .c-list .c-icon {
  margin-right: 10px;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .product .c-li .c-right .box .c-list .c-icon {
    margin-top: 4px;
  }
}
.product .c-li .c-right .box .c-list .c-div {
  color: #999;
  padding-right: 10px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .product .c-li .c-right .box .c-list .c-div {
    font-size: 0.28rem;
  }
}
.product .c-li .c-right .c-btn {
  margin-top: 0.4rem;
}
.product .public-page {
  padding-top: 0.55rem;
}
@media (max-width: 767px) {
}
.public-mask {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
.public-mask.active {
  display: block;
}
.xc-window-middle {
  width: 57.03%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  position: fixed;
  z-index: 1000;
  display: none;
}
.xc-window-middle.active {
  display: block;
  animation: hideShow 0.3s;
}
.proDetail-tc {
  border-radius: 15px;
  background: #fff;
  height: 73.8vh;
}
@media (max-width: 1580px) {
  .proDetail-tc {
    height: 80vh;
  }
}
@media (max-width: 1366px) {
  .proDetail-tc {
    width: 70%;
    height: 85vh;
  }
}
@media (max-width: 1280px) {
  .proDetail-tc {
    height: 80vh;
  }
}
@media (max-width: 1024px) {
  .proDetail-tc {
    width: 90%;
    height: 81vh;
  }
}
@media (max-width: 991px) {
  .proDetail-tc {
    height: 79.5vh;
  }
}
@media (max-width: 767px) {
  .proDetail-tc {
    height: 90vh;
  }
}
.proDetail-tc .close-box {
  height: 0.7rem;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .proDetail-tc .close-box {
    height: 1.2rem;
  }
}
.proDetail-tc .close-box .zz-close {
  width: 0.95rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .proDetail-tc .close-box .zz-close {
    width: 1.3rem;
  }
}
.proDetail-tc .close-box .zz-close:hover {
  transform: rotate(180deg);
}
.proDetail-tc .close-box .zz-close img {
  width: 35px;
  height: 35px;
}
.proDetail-tc .c-box {
  overflow-y: auto;
  /*定义滚动条的轨道颜色、内阴影及圆角*/
  /*定义滑块颜色、内阴影及圆角*/
  height: calc(100% - 1.15rem);
}
.proDetail-tc .c-box::-webkit-scrollbar {
  width: 1px;
  /*对垂直流动条有效*/
}
.proDetail-tc .c-box::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #aaa;
  background-color: #aaa;
  border-radius: 3px;
}
.proDetail-tc .c-box::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background-color: #ff7700;
}
.proDetail-tc .c-box::-webkit-scrollbar {
  width: 6px;
}
.proDetail-tc .box1 {
  display: flex;
}
@media (max-width: 767px) {
  .proDetail-tc .box1 {
    flex-direction: column;
    padding-bottom: 0.6rem;
  }
}
.proDetail-tc .box1 .c-left,
.proDetail-tc .box1 .c-right {
  width: 50%;
}
@media (max-width: 767px) {
  .proDetail-tc .box1 .c-left,
  .proDetail-tc .box1 .c-right {
    width: 100%;
  }
}
.proDetail-tc .box1 .c-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.proDetail-tc .box1 .c-left .imgbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}
.proDetail-tc .box1 .c-left .imgbox > .img,
.proDetail-tc .box1 .c-left .imgbox > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .proDetail-tc .box1 .c-left .imgbox {
    padding-bottom: 75%;
  }
}
.proDetail-tc .box1 .c-left .imgbox:hover img {
  transform: scale(1.05) translate(-50%, -50%);
}
.proDetail-tc .box1 .c-left .imgbox img {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.8s;
}
.proDetail-tc .box1 .c-right {
  padding: 0.3rem 0.7rem 0 0.5rem;
}
@media (max-width: 767px) {
  .proDetail-tc .box1 .c-right .c-title {
    font-size: 0.32rem;
  }
}
.proDetail-tc .box1 .c-right .c-title2 {
  margin-top: 0.2rem;
  color: #666;
}
@media (max-width: 767px) {
  .proDetail-tc .box1 .c-right .c-title2 {
    font-size: 0.28rem;
  }
}
.proDetail-tc .box1 .c-right .c-listBox {
  margin-top: 0.3rem;
}
@media (max-width: 1580px) {
  .proDetail-tc .box1 .c-right .c-listBox {
    max-height: 270px;
    overflow-y: auto;
    /*定义滚动条的轨道颜色、内阴影及圆角*/
    /*定义滑块颜色、内阴影及圆角*/
  }
  .proDetail-tc .box1 .c-right .c-listBox::-webkit-scrollbar {
    width: 1px;
    /*对垂直流动条有效*/
  }
  .proDetail-tc .box1 .c-right .c-listBox::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #aaa;
    background-color: #aaa;
    border-radius: 3px;
  }
  .proDetail-tc .box1 .c-right .c-listBox::-webkit-scrollbar-thumb {
    border-radius: 7px;
    background-color: #ff7700;
  }
}
@media (max-width: 1366px) {
  .proDetail-tc .box1 .c-right .c-listBox {
    max-height: 285px;
  }
}
.proDetail-tc .box1 .c-right .c-listBox .c-title {
  color: #333;
}
.proDetail-tc .box1 .c-right .c-listBox .c-list {
  color: #333;
  position: relative;
  padding-left: 25px;
  line-height: 1.33;
  margin-bottom: 0.2rem;
}
@media (max-width: 767px) {
  .proDetail-tc .box1 .c-right .c-listBox .c-list {
    padding-left: 0.4rem;
  }
}
.proDetail-tc .box1 .c-right .c-listBox .c-list:last-child {
  margin-bottom: 0;
}
.proDetail-tc .box1 .c-right .c-listBox .c-list::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 1000px;
  background: #ff7700;
  left: 0;
  top: 8px;
}
@media (max-width: 767px) {
  .proDetail-tc .box1 .c-right .c-listBox .c-list::before {
    top: 6px;
  }
}
.proDetail-tc .box2 {
  margin-top: 0.5rem;
  padding-bottom: 0.75rem;
}
.proDetail-tc .box2 .c-title-box {
  position: relative;
}
.proDetail-tc .box2 .c-title-box .c-title {
  text-align: center;
  position: relative;
  z-index: 2;
}
.proDetail-tc .box2 .c-title-box .bgimg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
.proDetail-tc .box2 .c-listBox {
  margin: 0.5rem 0.7rem 0;
  border: 1px solid #eee;
}
@media (max-width: 767px) {
  .proDetail-tc .box2 .c-listBox {
    margin: 0.6rem 0.4rem 0.4rem;
  }
}
.proDetail-tc .box2 .c-listBox .c-list {
  display: flex;
  min-height: 60px;
  background: #fff8f2;
  border-bottom: 1px solid #eee;
}
.proDetail-tc .box2 .c-listBox .c-list:last-child {
  border-bottom: 0;
}
.proDetail-tc .box2 .c-listBox .c-list:nth-of-type(even) {
  background: #fff;
}
@media (max-width: 767px) {
  .proDetail-tc .box2 .c-listBox .c-list {
    flex-direction: column;
  }
}
.proDetail-tc .box2 .c-listBox .c-list .c-left {
  width: 30.72%;
  color: #333;
  padding-left: 0.7rem;
  border-right: 1px solid #eee;
  padding: 0.2rem 0.7rem 0.15rem;
}
@media (max-width: 767px) {
  .proDetail-tc .box2 .c-listBox .c-list .c-left {
    width: 100%;
    padding: 0 0.4rem;
    margin-bottom: 0.2rem;
  }
}
.proDetail-tc .box2 .c-listBox .c-list .c-right {
  width: 69.27%;
  color: #666;
  padding: 0.2rem 0.5rem 0.15rem;
}
@media (max-width: 767px) {
  .proDetail-tc .box2 .c-listBox .c-list .c-right {
    width: 100%;
    padding: 0 0.4rem;
  }
}
@media (max-width: 767px) {
  .proDetail-tc .box2 .c-listBox .c-list {
    min-height: unset;
    padding: 0.4rem 0;
  }
}
.case-tc {
  border-radius: 20px;
  max-height: 90vh;
  display: none;
  width: 47.39%;
}
@media (max-width: 767px) {
  .case-tc {
    width: 90%;
  }
}
.case-tc .c-box .c-title-box {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  padding: 0.25rem 0.2rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media (max-width: 767px) {
  .case-tc .c-box .c-title-box {
    padding: 0.4rem;
  }
}
.case-tc .c-box .c-title-box .c-text {
  color: #ffe3c0;
  text-align: center;
}
@media (max-width: 767px) {
  .case-tc .c-box .c-title-box .c-text {
    margin-top: 0.1rem;
  }
}
.case-tc .c-box .c-title-box .close-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.85rem;
  height: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.case-tc .c-box .c-title-box .close-box:hover .zz-close {
  transform: rotate(180deg);
}
.case-tc .c-box .c-title-box .close-box .zz-close {
  width: 0.35rem;
  height: 0.35rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .case-tc .c-box .c-title-box .close-box .zz-close {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.case-tc .c-box .c-title-box .close-box .zz-close img,
.case-tc .c-box .c-title-box .close-box .zz-close svg {
  width: 100%;
  height: 100%;
}
.case-tc .c-box .box {
  background: #f8f8f8;
  padding: 0.4rem 0.6rem;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 767px) {
  .case-tc .c-box .box {
    padding: 0.4rem;
  }
}
.case-tc .c-box .box .inputBox {
  display: flex;
  margin-bottom: 10px;
  width: 100%;
}
.case-tc .c-box .box .inputBox .public-input {
  border-radius: 8px;
  padding: 0 0.25rem;
  height: 50px;
  flex: 1;
  border: 1px solid #eee;
  background: #fff;
}
.case-tc .c-box .box .inputBox .public-input input {
  width: 100%;
  height: 100%;
  /* WebKit browsers */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10+ */
  color: #333;
}
.case-tc .c-box .box .inputBox .public-input input::-webkit-input-placeholder {
  color: #ddd;
}
.case-tc .c-box .box .inputBox .public-input input:-moz-placeholder {
  color: #ddd;
}
.case-tc .c-box .box .inputBox .public-input input::-moz-placeholder {
  color: #ddd;
}
.case-tc .c-box .box .inputBox .public-input input:-ms-input-placeholder {
  color: #ddd;
}
.case-tc .c-box .box .inputBox .public-input:nth-of-type(2) {
  margin-left: 15px;
}
@media (max-width: 767px) {
  .case-tc .c-box .box .inputBox .public-input:nth-of-type(2) {
    margin-left: 0.2rem;
  }
}
@media (max-width: 767px) {
  .case-tc .c-box .box .inputBox .public-input {
    height: 0.8rem;
  }
}
.case-tc .c-box .box .public-select {
  margin-bottom: 10px;
  border-radius: 8px;
  background: #fff;
  width: 100%;
  border: 1px solid #eee;
  height: 50px;
  padding: 0 0.25rem;
  color: #ddd;
}
.case-tc .c-box .box .public-select.on {
  color: #333;
}
.case-tc .c-box .box .public-select select {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .case-tc .c-box .box .public-select {
    height: 0.8rem;
  }
}
.case-tc .c-box .box .public-textarea {
  background: #fff;
  width: 100%;
  border: 1px solid #eee;
  padding: 0.2rem 0.25rem;
  border-radius: 8px;
  min-height: 1rem;
  margin-bottom: 10px;
}
.case-tc .c-box .box .public-textarea textarea {
  width: 100%;
  height: 100%;
  /* WebKit browsers */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10+ */
}
.case-tc .c-box .box .public-textarea textarea::-webkit-input-placeholder {
  color: #ddd;
}
.case-tc .c-box .box .public-textarea textarea:-moz-placeholder {
  color: #ddd;
}
.case-tc .c-box .box .public-textarea textarea::-moz-placeholder {
  color: #ddd;
}
.case-tc .c-box .box .public-textarea textarea:-ms-input-placeholder {
  color: #ddd;
}
.case-tc .c-box .box .public-clause {
  display: flex;
  color: #999;
  align-items: center;
}
@media (max-width: 767px) {
  .case-tc .c-box .box .public-clause {
    align-items: flex-start;
  }
}
.case-tc .c-box .box .public-clause .c-div {
  margin-left: 10px;
  flex: 1;
}
.case-tc .c-box .box .public-clause a {
  color: #ff7700;
}
.case-tc .c-box .box .c-btn {
  margin-top: 0.25rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.solution1 {
  padding: 1rem 0 1.05rem;
}
@media (max-width: 767px) {
  .solution1 {
    padding-bottom: 0.85rem;
  }
}
.solution1 > .zz_w1200 > .c-text {
  color: #666;
  width: 44.16%;
  margin: 0 auto;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .solution1 > .zz_w1200 > .c-text {
    width: 100%;
    margin-top: 0.3rem;
  }
}
.solution1 .c-box {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .solution1 .c-box {
    margin-top: 0.6rem;
  }
}
.solution1 .c-box .c-ul {
  display: flex;
  flex-wrap: wrap;
}
.solution1 .c-box .c-ul .c-li {
  width: 22.5%;
  position: relative;
  margin-right: 3.33%;
}
.solution1 .c-box .c-ul .c-li:nth-of-type(4n+1) {
  top: -1rem;
  animation: 4s top linear infinite;
}
@media (max-width: 767px) {
  .solution1 .c-box .c-ul .c-li:nth-of-type(4n+1) {
    top: unset;
    animation: unset;
  }
}
.solution1 .c-box .c-ul .c-li:nth-of-type(4n+2) {
  animation: 6s top linear infinite;
}
@media (max-width: 767px) {
  .solution1 .c-box .c-ul .c-li:nth-of-type(4n+2) {
    animation: unset;
  }
}
.solution1 .c-box .c-ul .c-li:nth-of-type(4n+3) {
  animation: 5s top linear infinite;
}
@media (max-width: 767px) {
  .solution1 .c-box .c-ul .c-li:nth-of-type(4n+3) {
    animation: unset;
  }
}
.solution1 .c-box .c-ul .c-li:nth-of-type(4n+4) {
  margin-right: 0;
  top: -1rem;
  animation: 4.5s top linear infinite;
}
@media (max-width: 767px) {
  .solution1 .c-box .c-ul .c-li:nth-of-type(4n+4) {
    top: unset;
    animation: unset;
  }
}
@media (max-width: 767px) {
  .solution1 .c-box .c-ul .c-li {
    width: 48%;
    margin-bottom: 0.3rem;
  }
  .solution1 .c-box .c-ul .c-li:nth-of-type(2n+2) {
    margin-right: 0;
  }
}
.solution1 .c-box .c-ul .c-li:hover .imgbox img {
  transform: scale(1.05);
}
.solution1 .c-box .c-ul .c-li .c-text {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.solution1 .c-box .c-ul .c-li .imgbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 55.55%;
  border-radius: 15px;
  overflow: hidden;
}
.solution1 .c-box .c-ul .c-li .imgbox > .img,
.solution1 .c-box .c-ul .c-li .imgbox > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.solution1 .c-box .c-ul .c-li .imgbox::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ff7700;
  opacity: 0.4;
  z-index: 2;
  border-radius: 15px;
}
.solution1 .c-box .c-ul .c-li .imgbox img {
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.8s;
}
.public-swpBtn {
  width: 0.55rem;
  height: 0.55rem;
  min-width: 40px;
  min-height: 40px;
  background: #fff;
  border: 1px solid #dfdfdf;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  top: 50%;
  border-radius: 1000px;
}
@media (max-width: 767px) {
  .public-swpBtn {
    width: 0.8rem;
    height: 0.8rem;
    min-width: 0.8rem;
    min-height: 0.8rem;
  }
}
.public-swpBtn svg {
  width: 0.2rem;
  min-width: 12px;
}
.public-swpBtn svg path {
  fill: #dfdfdf;
}
.public-swpBtn:hover {
  background: #ff7700;
  border-color: #ff7700;
}
.public-swpBtn:hover svg path {
  fill: #fff;
}
.solution2 {
  position: relative;
  padding: 1.05rem 0 1.1rem;
}
.solution2 .bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.solution2 .c-ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
@media (max-width: 767px) {
  .solution2 .c-ul {
    flex-direction: column;
  }
}
.solution2 .c-ul .c-li {
  width: 29.58%;
  margin-right: 5.63%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 45px;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .solution2 .c-ul .c-li {
    width: 100%;
    padding-bottom: 0.7rem;
    margin-bottom: 0.6rem;
  }
}
.solution2 .c-ul .c-li:hover {
  transform: translateY(-10px);
}
.solution2 .c-ul .c-li .c-mask {
  position: absolute;
  width: 100%;
  height: 75%;
  background: #fff;
  border-radius: 15px;
  bottom: 0;
  left: 0;
  z-index: 1;
  box-shadow: 4px 22px 76px rgba(219, 102, 0, 0.11);
}
@media (max-width: 767px) {
  .solution2 .c-ul .c-li .c-mask {
    height: 80%;
  }
}
.solution2 .c-ul .c-li:nth-of-type(3n+3) {
  margin-right: 0;
}
.solution2 .c-ul .c-li .c-icon {
  background-image: linear-gradient(to bottom, #ff7801, #ff7700);
  background-image: -o-linear-gradient(to bottom, #ff7801, #ff7700);
  background-image: -moz-linear-gradient(to bottom, #ff7801, #ff7700);
  background-image: -webkit-linear-gradient(to bottom, #ff7801, #ff7700);
  box-shadow: 2px 9px 20px rgba(249, 122, 9, 0.22);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1280px) {
  .solution2 .c-ul .c-li .c-icon {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .solution2 .c-ul .c-li .c-icon {
    margin-bottom: 0.4rem;
  }
}
.solution2 .c-ul .c-li .c-icon img,
.solution2 .c-ul .c-li .c-icon svg {
  width: auto;
  height: auto;
  max-width: 0.5rem;
  max-height: 0.5rem;
}
.solution2 .c-ul .c-li .c-text {
  position: relative;
  z-index: 2;
}
.solution2 .swpBox {
  background: #fff;
  box-shadow: 4px 22px 76px rgba(219, 102, 0, 0.11);
  border-radius: 15px;
  margin-top: 1.05rem;
  padding: 30px;
  display: flex;
}
@media (max-width: 767px) {
  .solution2 .swpBox {
    margin-top: 0.3rem;
    flex-direction: column;
    padding: 0.5rem 0.4rem;
  }
}
.solution2 .swpBox .c-left {
  width: 66.66%;
  padding: 0 0.75rem;
}
@media (max-width: 767px) {
  .solution2 .swpBox .c-left {
    width: 100%;
    order: 1;
    padding: 0;
  }
}
.solution2 .swpBox .c-left .swiper-slide .imgbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 61.3%;
}
.solution2 .swpBox .c-left .swiper-slide .imgbox > .img,
.solution2 .swpBox .c-left .swiper-slide .imgbox > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 1580px) {
  .solution2 .swpBox .c-left .swiper-slide .imgbox {
    padding-bottom: 50%;
  }
}
@media (max-width: 1024px) {
  .solution2 .swpBox .c-left .swiper-slide .imgbox {
    padding-bottom: 60%;
  }
}
@media (max-width: 767px) {
  .solution2 .swpBox .c-left .swiper-slide .imgbox {
    padding-bottom: 100%;
  }
}
.solution2 .swpBox .c-left .swiper-slide .imgbox img {
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
}
.solution2 .swpBox .c-left .swiper-slide .c-cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.solution2 .swpBox .c-left .swiper-slide .c-cont .c-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .solution2 .swpBox .c-left .swiper-slide .c-cont .c-title {
    margin-bottom: 0.3rem;
  }
}
.solution2 .swpBox .c-left .swiper-slide .c-cont .public-btn2 .hi-ico path {
  fill: #ff7700;
}
.solution2 .swpBox .c-right {
  width: 29.82%;
  background: #fff8f1;
  padding: 0.45rem 0.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .solution2 .swpBox .c-right {
    width: 100%;
    order: 0;
  }
}
.solution2 .swpBox .c-right .c-title {
  color: #333;
}
.solution2 .swpBox .c-right .c-box {
  color: #ff7700;
  display: flex;
  align-items: flex-end;
  margin-top: 0.15rem;
  margin-bottom: 5px;
}
.solution2 .swpBox .c-right .c-box .c-num {
  line-height: 1;
}
.solution2 .swpBox .c-right .c-text {
  color: #333;
}
.solution2 .swpBox .c-right .c-list2 {
  margin-top: 0.6rem;
}
.sysec2 {
  padding: 1.05rem 0 1rem;
}
.sysec2 .c-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.3rem;
}
.sysec2 .c-nav .c-a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 1rem;
  transition: all 0.4s;
  padding-bottom: 0.25rem;
}
.sysec2 .c-nav .c-a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff7700;
  transition: all 0.4s;
  left: 0;
  bottom: 0;
}
.sysec2 .c-nav .c-a .h3 {
  color: #333;
  transition: all 0.4s;
}
.sysec2 .c-nav .c-a:last-child {
  margin-right: 0;
}
.sysec2 .c-nav .c-a.on::before,
.sysec2 .c-nav .c-a:hover::before {
  width: 100%;
}
.sysec2 .c-nav .c-a.on .h3,
.sysec2 .c-nav .c-a:hover .h3 {
  color: #ff7700;
}
.sysec2 .c-box {
  position: relative;
}
.sysec2 .c-box .bgimg {
  position: absolute;
  z-index: 1;
}
.sysec2 .c-box .bgimg1 {
  right: -0.2rem;
  top: -0.45rem;
}
.sysec2 .c-box .bgimg2 {
  top: 1.25rem;
  left: -0.6rem;
}
.sysec2 .c-box .bgimg3 {
  bottom: -0.45rem;
  right: -0.3rem;
}
.sysec2 .c-list-box {
  position: relative;
  z-index: 2;
}
.sysec2 .c-list-box .c-list {
  display: none;
  background: #fff;
  border-radius: 10px;
  justify-content: space-between;
  align-items: flex-start;
}
.sysec2 .c-list-box .c-list:nth-of-type(1) {
  display: flex;
}
.sysec2 .c-list-box .zz-left {
  width: 39%;
  padding: 0.5rem 0rem 0.3rem 0.35rem;
}
.sysec2 .c-list-box .zz-left .c-ul .c-li {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.sysec2 .c-list-box .zz-left .c-ul .c-li:nth-of-type(1) {
  padding-top: 0;
}
.sysec2 .c-list-box .zz-left .c-ul .c-li:nth-of-type(1) .c-div2 {
  display: block;
}
.sysec2 .c-list-box .zz-left .c-ul .c-li .c-div1 {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.sysec2 .c-list-box .zz-left .c-ul .c-li .c-div1 div {
  transition: all 0.4s;
  color: #333;
}
.sysec2 .c-list-box .zz-left .c-ul .c-li .c-div1:hover div {
  color: #ff7700;
}
.sysec2 .c-list-box .zz-left .c-ul .c-li .c-div1 img,
.sysec2 .c-list-box .zz-left .c-ul .c-li .c-div1 svg {
  margin-right: 15px;
  max-width: 20px;
}
.sysec2 .c-list-box .zz-left .c-ul .c-li .c-div2 {
  color: #666;
  margin-top: 15px;
  margin-bottom: 10px;
  margin-left: 33px;
}
.sysec2 .c-list-box .zz-right {
  width: 50%;
  height: 100%;
  display: inline-flex;
  position: relative;
  width: 57.91%;
  height: 0;
  padding-bottom: 38.74%;
}
.sysec2 .c-list-box .zz-right > .img,
.sysec2 .c-list-box .zz-right > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.sysec2 .c-list-box .zz-right img {
  object-fit: cover;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
@media (max-width: 1580px) {
}
@media (max-width: 1260px) {
  .sysec2 .c-list-box .zz-left .c-ul .c-li .c-div2 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .sysec2 .c-nav {
    display: -webkit-box;
    flex-wrap: unset;
    overflow-x: auto;
  }
  .sysec2 .c-list-box .c-list {
    flex-direction: column;
    padding: 0.45rem 0.4rem 0.6rem;
  }
  .sysec2 .c-list-box .c-list .zz-right {
    order: 0;
    width: 100%;
    height: 0;
    padding-bottom: 70%;
    margin-top: 0;
  }
  .sysec2 .c-list-box .c-list .zz-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .sysec2 .c-list-box .c-list .zz-left {
    order: 1;
    width: 100%;
    margin-top: 0.3rem;
    padding: 0;
  }
  .sysec2 .c-list-box .c-list .zz-left .c-tips {
    margin-bottom: 0.2rem;
  }
  .sysec2 .c-list-box .c-list .zz-left .c-ul .c-li {
    padding: 0.4rem 0;
  }
  .sysec2 .c-list-box .c-list .zz-left .c-ul .c-li .c-div2 {
    margin-bottom: 0;
    display: block;
    padding-right: 0;
    margin-left: 0.7rem;
  }
  .sysec2 .c-nav {
    margin-top: 0.6rem;
    padding-bottom: 0rem;
    margin-bottom: 0rem;
  }
  .sysec2 .c-nav::-webkit-scrollbar {
    height: 0;
  }
  .sysec2 .c-nav .c-a {
    font-size: 0.28rem;
    padding: 0.1rem 0.25rem 0.3rem;
    margin-right: 0rem;
  }
  .sysec2 .c-list-box {
    margin-top: 0rem;
  }
}
.solution-bigBox {
  position: relative;
}
.solution-bigBox .bgimg1 {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: -1;
}
.solution-bigBox .bgimg2 {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: -1;
}
.solution5 {
  padding-bottom: 1.1rem;
}
.solution5 .c-ul {
  width: 84.16%;
  margin-left: 7.91%;
}
.solution5 .c-li {
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 767px) {
  .solution5 .c-li {
    padding: 0.4rem 0;
  }
}
.solution5 .c-li .c-que.on .c-text {
  color: #ff7700;
}
.solution5 .c-li .c-que.on .c-icon {
  transform: rotate(-180deg);
}
.solution5 .c-li .c-que.on .c-icon path {
  fill: #ff7700;
}
.solution5 .c-li .c-que,
.solution5 .c-li .c-ask {
  display: flex;
  align-items: flex-start;
}
.solution5 .c-li .c-que {
  width: 100%;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.solution5 .c-li .c-que .box {
  display: flex;
}
.solution5 .c-li .c-que .c-text {
  transition: all 0.4s;
  flex: 1;
}
.solution5 .c-li .c-que .c-icon {
  transition: all 0.4s;
}
.solution5 .c-li .c-que .c-icon path {
  transition: all 0.4s;
}
.solution5 .c-li .c-syb {
  background: #ff7700;
  width: 20px;
  height: 20px;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 20px;
  margin-top: 4px;
  transition: all 0.4s;
}
.solution5 .c-li .c-ask {
  display: none;
  margin-top: 0.2rem;
}
.solution5 .c-li .c-ask .box {
  display: flex;
}
.solution5 .c-li .c-ask .box .c-text {
  flex: 1;
}
.yd-errors {
  width: 100%;
  padding: 1.1rem 0 1.25rem;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.yd-errors .bgimg {
  width: 30.72%;
}
.yd-errors .c-text {
  margin-top: 0.65rem;
}
.yd-errors .c-text p {
  text-align: center;
  color: #999;
}
.yd-errors .c-text p span {
  color: #ff7700;
}
.yd-errors .c-btn {
  margin-top: 0.55rem;
}
.yd-errors .c-btn .public-btn3 {
  margin-left: 25px;
}
@media (max-width: 1260px) {
  .yd-errors .bgimg {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .yd-errors {
    padding: 1.2rem 0;
  }
  .yd-errors .bgimg {
    width: 70%;
  }
}
.yd-map {
  margin-top: 0.7rem;
  margin-bottom: 1.25rem;
}
.yd-map .c-box {
  width: 100%;
  margin: 0 auto;
}
.yd-map .map-ul .map-li {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #dedede;
  padding: 0.45rem 0 0;
}
.yd-map .map-ul .map-li .zz-left {
  padding-bottom: 0.5rem;
  min-width: 2.55rem;
}
.yd-map .map-ul .map-li .zz-left a {
  color: #333;
  padding-right: 20px;
  transition: all 0.4s;
  white-space: nowrap;
}
.yd-map .map-ul .map-li .zz-left a:hover {
  color: #ff7700;
}
.yd-map .map-ul .map-li .zz-right {
  width: calc(100% - 2.55rem);
  display: flex;
  flex-wrap: wrap;
  margin-top: 2px;
}
.yd-map .map-ul .map-li .zz-right li {
  margin-bottom: 0.4rem;
  padding-right: 1.25rem;
}
@media (max-width: 767px) {
}
.yd-map .map-ul .map-li .zz-right a {
  transition: all 0.4s;
  color: #666;
}
.yd-map .map-ul .map-li .zz-right a:hover {
  color: #ff7700;
}
@media (max-width: 767px) {
  .yd-map .map-ul {
    margin-top: 0.2rem;
  }
  .yd-map .c-box {
    width: 100%;
  }
  .yd-map .map-ul .map-li {
    flex-direction: column;
    padding-bottom: 0.2rem;
  }
  .yd-map .map-ul .map-li .zz-left {
    width: 100%;
    padding-bottom: 0.4rem;
  }
}
.newsDetail1 {
  padding-top: 0.6rem;
}
@media (max-width: 767px) {
  .newsDetail1 {
    padding-top: 0.4rem;
  }
}
.newsDetail1 .c-box {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box {
    flex-direction: column;
  }
}
.newsDetail1 .c-box .c-left {
  width: 67.08%;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-left {
    width: 100%;
  }
}
.newsDetail1 .c-box .c-left .h1 {
  color: #191919;
}
.newsDetail1 .c-box .c-left .box {
  margin-top: 0.35rem;
  color: #999;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-left .box {
    flex-direction: column;
    padding-bottom: 0.2rem;
  }
}
.newsDetail1 .c-box .c-left .box .c-syb {
  margin: 0 10px;
}
.newsDetail1 .c-box .c-left .box .c-div1,
.newsDetail1 .c-box .c-left .box .c-div2,
.newsDetail1 .c-box .c-left .box .c-div3 {
  display: flex;
  align-items: center;
}
.newsDetail1 .c-box .c-left .box .box2 {
  display: flex;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-left .box .c-div2 {
    margin-top: 0.2rem;
  }
}
.newsDetail1 .c-box .c-left .zz-cont {
  padding-top: 0.4rem;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-left .zz-cont {
    padding-top: 0.7rem;
  }
}
.newsDetail1 .c-box .c-left .c-text {
  color: #666;
  line-height: 1.87;
  padding-top: 0.45rem;
}
.newsDetail1 .c-box .c-left .c-tag {
  display: flex;
  margin-top: 0.8rem;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-left .c-tag {
    padding-bottom: 0.6rem;
  }
}
.newsDetail1 .c-box .c-left .c-tag .c-div {
  white-space: nowrap;
  color: #222;
}
.newsDetail1 .c-box .c-left .c-tag .c-ul {
  display: flex;
  flex-wrap: wrap;
}
.newsDetail1 .c-box .c-left .c-tag .c-ul .c-li {
  margin-right: 10px;
}
.newsDetail1 .c-box .c-left .c-tag .c-ul .c-li .c-a {
  color: #999;
  padding: 3px 15px;
  background: #fafafa;
  transition: all 0.4s;
  border-radius: 1000px;
  min-width: 85px;
}
.newsDetail1 .c-box .c-left .c-tag .c-ul .c-li .c-a:hover {
  background: #ff7700;
  color: #fff;
}
.newsDetail1 .c-box .c-left .c-atBtnBox {
  display: flex;
  justify-content: space-between;
  margin-top: 0.25rem;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-left .c-atBtnBox {
    margin-top: 0.5rem;
  }
}
.newsDetail1 .c-box .c-left .c-atBtnBox .box1 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-left .c-atBtnBox .box1 {
    flex-direction: column;
    flex: 1;
  }
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-left .c-atBtnBox .box2 {
    display: flex;
    align-items: center;
  }
}
.newsDetail1 .c-box .c-left .c-atBtnBox a {
  display: flex;
  align-items: center;
  color: #666;
  transition: all 0.4s;
}
.newsDetail1 .c-box .c-left .c-atBtnBox .c-span {
  max-width: 200px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-left .c-atBtnBox .c-span {
    max-width: unset;
    padding-right: 0.4rem;
  }
}
.newsDetail1 .c-box .c-left .c-atBtnBox .div-1:hover a {
  color: #ff7700;
}
.newsDetail1 .c-box .c-left .c-atBtnBox .div-1:hover a img path,
.newsDetail1 .c-box .c-left .c-atBtnBox .div-1:hover a svg path {
  fill: #ff7700;
}
.newsDetail1 .c-box .c-left .c-atBtnBox .div-1 img,
.newsDetail1 .c-box .c-left .c-atBtnBox .div-1 svg {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-left .c-atBtnBox .div-1 img,
  .newsDetail1 .c-box .c-left .c-atBtnBox .div-1 svg {
    display: none;
  }
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-left .c-atBtnBox .div-1 {
    margin-bottom: 0.1rem;
  }
}
.newsDetail1 .c-box .c-left .c-atBtnBox .div-2 a {
  color: #222;
}
.newsDetail1 .c-box .c-left .c-atBtnBox .div-2 a img,
.newsDetail1 .c-box .c-left .c-atBtnBox .div-2 a svg {
  margin-left: 10px;
  transition: all 0.4s;
}
.newsDetail1 .c-box .c-left .c-atBtnBox .div-2:hover a {
  color: #ff7700;
}
.newsDetail1 .c-box .c-left .c-atBtnBox .div-2:hover a img,
.newsDetail1 .c-box .c-left .c-atBtnBox .div-2:hover a svg {
  transform: rotate(90deg);
}
.newsDetail1 .c-box .c-left .c-atBtnBox .div-3 img,
.newsDetail1 .c-box .c-left .c-atBtnBox .div-3 svg {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-left .c-atBtnBox .div-3 img,
  .newsDetail1 .c-box .c-left .c-atBtnBox .div-3 svg {
    display: none;
  }
}
.newsDetail1 .c-box .c-left .c-atBtnBox .div-3:hover a {
  color: #ff7700;
}
.newsDetail1 .c-box .c-left .c-atBtnBox .div-3:hover a img path,
.newsDetail1 .c-box .c-left .c-atBtnBox .div-3:hover a svg path {
  fill: #ff7700;
}
.newsDetail1 .c-box .c-right {
  width: 22.91%;
  position: sticky;
  top: 1.2rem;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-right {
    width: 100%;
    position: relative;
    top: unset;
    margin-top: 1rem;
  }
}
.newsDetail1 .c-box .c-right .c-title {
  color: #191919;
}
.newsDetail1 .c-box .c-right .newsHotBox .c-ul {
  margin-top: 0.15rem;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-right .newsHotBox .c-ul {
    margin-top: 0.3rem;
  }
}
.newsDetail1 .c-box .c-right .newsHotBox .c-li {
  border-top: 1px solid #f0f0f0;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-right .newsHotBox .c-li {
    padding: 0.4rem 0;
  }
}
.newsDetail1 .c-box .c-right .newsHotBox .c-li:hover .c-t {
  color: #ff7700;
}
.newsDetail1 .c-box .c-right .newsHotBox .c-li .c-t {
  color: #333;
  transition: all 0.4s;
}
.newsDetail1 .c-box .c-right .newsHotBox .c-li .c-date {
  color: #999;
  margin-top: 0.15rem;
}
@media (max-width: 1366px) {
  .newsDetail1 .c-box .c-right .newsHotBox .c-li .c-date {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-right .newsHotBox .c-li .c-date {
    margin-top: 0.2rem;
    font-size: 0.26rem;
  }
}
.newsDetail1 .c-box .c-right .newsLabelBox {
  margin-top: 0.4rem;
}
.newsDetail1 .c-box .c-right .newsLabelBox .c-ul {
  margin-top: 0.15rem;
  padding-top: 0.2rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-wrap: wrap;
  padding-right: 0.25rem;
  align-items: stretch;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-right .newsLabelBox .c-ul {
    margin-top: 0.4rem;
    padding-top: 0.5rem;
    padding-right: 0.4rem;
  }
}
.newsDetail1 .c-box .c-right .newsLabelBox .c-ul .c-li {
  width: 46.93%;
  margin-right: 6.14%;
  margin-bottom: 10px;
  height: auto;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-right .newsLabelBox .c-ul .c-li {
    width: 40%;
    margin-bottom: 0.3rem;
  }
}
.newsDetail1 .c-box .c-right .newsLabelBox .c-ul .c-li:nth-of-type(2n+2) {
  margin-right: 0;
}
.newsDetail1 .c-box .c-right .newsLabelBox .c-ul .c-li .c-a {
  border: 1px solid #ddd;
  color: #999;
  border-radius: 5px;
  transition: all 0.4s;
  display: inline-flex;
  width: 100%;
  padding: 6px;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.newsDetail1 .c-box .c-right .newsLabelBox .c-ul .c-li .c-a:hover {
  color: #ff7700;
  border-color: #ff7700;
}
@media (max-width: 767px) {
  .newsDetail1 .c-box .c-right .newsLabelBox .c-ul .c-li .c-a {
    padding: 0.15rem 0.2rem;
  }
}
.social-share .social-share-icon {
  border-color: transparent;
  color: #999;
}
.social-share .social-share-icon:hover {
  background: transparent;
  color: #ff7700;
}
@media (max-width: 767px) {
  .social-share .social-share-icon {
    font-size: 0.32rem;
  }
}
.newsDetail2 {
  background: #f8f8f8;
  padding-top: 0.8rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .newsDetail2 {
    padding: 1rem 0 0.8rem;
  }
}
.newsDetail2 .c-title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .newsDetail2 .c-title {
    padding-bottom: 0.4rem;
  }
}
.newsDetail2 .c-ul {
  display: flex;
  flex-wrap: wrap;
  width: 77.5%;
  padding-top: 0.35rem;
}
@media (max-width: 767px) {
  .newsDetail2 .c-ul {
    padding-top: 0.5rem;
    width: 100%;
  }
}
.newsDetail2 .c-ul .c-li {
  width: 43.01%;
  margin-right: 13.98%;
  margin-bottom: 0.15rem;
}
.newsDetail2 .c-ul .c-li:nth-of-type(2n+2) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .newsDetail2 .c-ul .c-li {
    width: 46%;
    margin-right: 8%;
    margin-bottom: 0.3rem;
  }
}
.newsDetail2 .c-ul .c-li .c-a {
  position: relative;
  color: #333;
  padding-left: 0.25rem;
  transition: all 0.4s;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .newsDetail2 .c-ul .c-li .c-a {
    padding-left: 0.4rem;
  }
}
.newsDetail2 .c-ul .c-li .c-a:hover {
  color: #ff7700;
}
.newsDetail2 .c-ul .c-li .c-a:hover::before {
  background: #ff7700;
}
.newsDetail2 .c-ul .c-li .c-a::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  top: 9px;
  left: 5px;
  border-radius: 1000px;
  background: #999;
}
.x-zbl {
  position: fixed;
  right: 10px;
  bottom: 20%;
  z-index: 500;
}
.x-zbl .x-con {
  display: flex;
  flex-direction: column;
}
.x-zbl .x-con .x-conLi {
  border-radius: 5px;
  width: 0.55rem;
  height: 0.55rem;
  min-width: 40px;
  min-height: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-bottom: 2px;
  transition: all 0.3s;
  position: relative;
  margin-bottom: 5px;
}
.x-zbl .x-con .x-conLi a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.x-zbl .x-con .x-conLi a span {
  color: #fff;
}
.x-zbl .x-con .x-conLi:hover {
  background: #ff7700;
}
.x-zbl .x-con .x-conLi:hover img path,
.x-zbl .x-con .x-conLi:hover svg path {
  fill: #fff;
}
.x-zbl .x-con .x-conLi img,
.x-zbl .x-con .x-conLi svg {
  margin-bottom: 5px;
  width: 0.2rem;
  min-width: 15px;
}
.x-zbl .x-con .x-conLi img path,
.x-zbl .x-con .x-conLi svg path {
  fill: #ff7700;
  transition: all 0.4s;
}
@media (max-width: 1024px) {
  .x-zbl .x-con .x-conLi span {
    display: none;
  }
  .x-zbl .x-con .x-conLi {
    padding: 0.24rem;
  }
  .x-zbl .x-con .x-conLi img,
  .x-zbl .x-con .x-conLi svg {
    margin-bottom: 0;
  }
  .x-zbl {
    bottom: 20%;
  }
}
.labelbox-sec1-title {
  background: #f5f5f5;
  padding: 0.6rem 0;
}
.labelbox-sec1-title .zz-text {
  color: #666;
}
/* 标签页 */
.labelbox-sec1 {
  padding: 0.8rem 0 1.2rem;
}
.labelbox-sec1 .cont {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -0.32rem;
}
@media (max-width: 1260px) {
  .labelbox-sec1 .cont {
    margin: 0;
  }
}
.labelbox-sec1 .cont .lt,
.labelbox-sec1 .cont .gt {
  padding: 0 0.32rem;
}
@media (max-width: 1260px) {
  .labelbox-sec1 .cont .lt,
  .labelbox-sec1 .cont .gt {
    padding: 0;
  }
}
.labelbox-sec1 .cont .lt {
  width: 70.078%;
}
@media (max-width: 1260px) {
  .labelbox-sec1 .cont .lt {
    width: 100%;
  }
}
.labelbox-sec1 .cont .lt .fztitle {
  width: 100%;
  color: #4d4948;
  font-weight: bold;
  margin-bottom: 0.32rem;
}
.labelbox-sec1 .cont .lt .fzjut .item {
  margin-bottom: 0.4rem;
}
.labelbox-sec1 .cont .lt .fzjut .item:last-child {
  margin-bottom: 0;
}
.labelbox-sec1 .cont .lt .fzjut .item .list {
  display: flex;
}
@media (max-width: 767px) {
  .labelbox-sec1 .cont .lt .fzjut .item .list {
    align-items: center;
    flex-direction: column;
  }
}
.labelbox-sec1 .cont .lt .fzjut .item .list .img {
  overflow: hidden;
  width: 28.9%;
}
@media (max-width: 767px) {
  .labelbox-sec1 .cont .lt .fzjut .item .list .img {
    width: 100%;
  }
}
.labelbox-sec1 .cont .lt .fzjut .item .list .img img {
  transition: all 0.4s;
}
.labelbox-sec1 .cont .lt .fzjut .item .list .fznei {
  width: 71.1%;
  padding-left: 0.3rem;
}
@media (max-width: 767px) {
  .labelbox-sec1 .cont .lt .fzjut .item .list .fznei {
    width: 100%;
    padding-left: 0;
  }
}
.labelbox-sec1 .cont .lt .fzjut .item .list .fznei .font {
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #ebebeb;
  padding: 13px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.labelbox-sec1 .cont .lt .fzjut .item .list .fznei .font .tit {
  width: 100%;
  white-space: nowrap;
  color: #4d4948;
  display: block;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 0.24rem;
}
@media (max-width: 767px) {
  .labelbox-sec1 .cont .lt .fzjut .item .list .fznei .font .tit {
    font-size: 0.34rem;
    line-height: 0.4rem;
  }
}
.labelbox-sec1 .cont .lt .fzjut .item .list .fznei .font .label {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.labelbox-sec1 .cont .lt .fzjut .item .list .fznei .font .label .li {
  display: block;
  padding: 5px 10px;
  line-height: 1;
  color: #666666;
  font-size: 14px;
  background-color: #f4f4f4;
  border-radius: 5px;
  margin-right: 8px;
  transition: all 0.4s;
  margin-bottom: 10px;
}
.labelbox-sec1 .cont .lt .fzjut .item .list .fznei .font .label .li:hover {
  color: #fff;
  background-color: #ff7700;
  border-color: #ff7700;
}
.labelbox-sec1 .cont .lt .fzjut .item .list .fznei .font .text {
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  line-height: 24px;
  height: 50px;
  margin-bottom: 24px;
}
@media (max-width: 1580px) {
  .labelbox-sec1 .cont .lt .fzjut .item .list .fznei .font .text {
    height: 46px;
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 22px;
  }
}
@media (max-width: 1260px) {
  .labelbox-sec1 .cont .lt .fzjut .item .list .fznei .font .text {
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .labelbox-sec1 .cont .lt .fzjut .item .list .fznei .font .text {
    margin-bottom: 0.16rem;
  }
}
.labelbox-sec1 .cont .lt .fzjut .item .list .fznei .font .time {
  display: block;
  color: #666666;
  font-size: 16px;
}
@media (max-width: 1580px) {
  .labelbox-sec1 .cont .lt .fzjut .item .list .fznei .font .time {
    font-size: 14px;
  }
}
.labelbox-sec1 .cont .lt .fzjut .item .list:hover .img img {
  transform: scale(1.04);
}
.labelbox-sec1 .cont .lt .teambox_page {
  margin-top: 0.8rem;
}
.labelbox-sec1 .cont .lt .public-page {
  margin-top: 0.9rem;
}
.labelbox-sec1 .cont .gt {
  width: 29.922%;
}
@media (max-width: 1260px) {
  .labelbox-sec1 .cont .gt {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.labelbox-sec1 .cont .gt .fzjut {
  border: solid 1px #ebebeb;
  padding: 0.34rem 0.3rem 0.4rem;
  margin-bottom: 0.3rem;
}
@media (max-width: 991px) {
  .labelbox-sec1 .cont .gt .fzjut {
    padding: 0.46rem 0.3rem;
  }
}
.labelbox-sec1 .cont .gt .fzjut .fz_title {
  color: #333333;
  font-weight: bold;
  margin-bottom: 0.26rem;
}
.labelbox-sec1 .cont .gt .fzjut .item {
  width: 100%;
  margin-bottom: 0.3rem;
}
.labelbox-sec1 .cont .gt .fzjut .item:last-child {
  margin-bottom: 0;
}
.labelbox-sec1 .cont .gt .fzjut .item .list {
  display: flex;
  align-items: center;
}
.labelbox-sec1 .cont .gt .fzjut .item .list .img {
  overflow: hidden;
  width: 34.965%;
}
@media (max-width: 767px) {
  .labelbox-sec1 .cont .gt .fzjut .item .list .img {
    width: 100%;
    width: 30%;
  }
}
.labelbox-sec1 .cont .gt .fzjut .item .list .img img {
  transition: all 0.4s;
}
.labelbox-sec1 .cont .gt .fzjut .item .list .font {
  width: 65.035%;
  padding-left: 20px;
}
@media (max-width: 1580px) {
  .labelbox-sec1 .cont .gt .fzjut .item .list .font {
    padding-left: 14px;
  }
}
@media (max-width: 767px) {
  .labelbox-sec1 .cont .gt .fzjut .item .list .font {
    width: 70%;
  }
}
.labelbox-sec1 .cont .gt .fzjut .item .list .font .tit {
  color: #4d4948;
  font-size: 16px;
  line-height: 24px;
  height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.2rem;
}
@media (max-width: 1580px) {
  .labelbox-sec1 .cont .gt .fzjut .item .list .font .tit {
    font-size: 14px;
    line-height: 22px;
    height: 45px;
  }
}
.labelbox-sec1 .cont .gt .fzjut .item .list .font .time {
  color: #666666;
}
.labelbox-sec1 .cont .gt .fzjut .item .list:hover .img img {
  transform: scale(1.1);
}
@media (max-width: 1260px) {
  .labelbox-sec1 .cont .gt .fzjut .fz_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .labelbox-sec1 .cont .gt .fzjut .fz_list .item {
    width: calc(50% - 14px);
  }
}
@media (max-width: 1260px) and (max-width: 767px) {
  .labelbox-sec1 .cont .gt .fzjut .fz_list .item {
    width: 100%;
  }
}
.labelbox-sec1 .cont .gt .fzjut .fz_label {
  display: flex;
  flex-wrap: wrap;
}
.labelbox-sec1 .cont .gt .fzjut .fz_label .li {
  display: block;
  padding: 5px 14px;
  line-height: 1;
  color: #666666;
  font-size: 14px;
  transition: all 0.4s;
  background-color: #f4f4f4;
  border-radius: 5px;
  margin-right: 8px;
  margin-bottom: 10px;
}
.labelbox-sec1 .cont .gt .fzjut .fz_label .li:hover {
  color: #fff;
  background-color: #ff7700;
  border-color: #ff7700;
}
/* End */
/*# sourceMappingURL=./style.css.map */