@charset "utf-8";
:root {
  --color: #005CE6;
  --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: #e83624;
}
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: 'rbt-r', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
  word-wrap: break-word;
  word-break: keep-all;
}
@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: #e83624;
}
.public-scrollbar ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
.public-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.2rem;
  min-width: 1rem;
}
.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: #e83624;
}
#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: #e83624;
}
#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: #e83624;
}
#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: 1.1rem;
}
@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: 1.1rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
@media (max-width: 991px) {
  #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;
  height: 100%;
}
@media (max-width: 991px) {
  #c-header .container {
    height: 1.2rem;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-head-move {
  top: -1.1rem;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -1.2rem;
  }
}
#c-header.c-style2 {
  color: #333;
  background: #fff;
}
#c-header.c-style2 a {
  color: #333;
}
/*顶部logo*/
#c-header .c-logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#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.68rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img,
  #c-header .c-logo .c-img-box svg {
    height: 0.7rem;
  }
}
#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;
  }
}
/*顶部pc导航*/
#c-header .c-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #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 {
  margin-left: 0.05rem;
  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 a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e83624;
  transition: 0.3s;
}
#c-header .c-nav li a {
  position: relative;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#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: #e83624;
}
#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: #e83624 !important;
}
#c-header.c-style2 .c-nav li .c-title-box svg path {
  fill: #333;
}
/*顶部移动端导航*/
#c-header .c-nav2 {
  position: absolute;
  top: 1.1rem;
  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: #e83624;
}
#c-header .c-nav2 li ul {
  display: none;
}
#c-header .c-nav2 li:hover > .c-title-box > a {
  color: #e83624;
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 1.1rem);
}
/*顶部导航开关*/
#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;
  width: 60%;
}
#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 {
  height: 1.1rem;
}
#c-header .c-gn {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  #c-header .c-gn {
    display: none;
  }
}
#c-header .c-gn .zz-li {
  display: flex;
  align-items: center;
  margin-left: 0.3rem;
}
#c-header .c-gn .zz-li img,
#c-header .c-gn .zz-li svg {
  width: 25px;
  cursor: pointer;
}
@media (max-width: 1580px) {
  #c-header .c-gn .zz-li img,
  #c-header .c-gn .zz-li svg {
    width: 18px !important;
    height: auto !important;
  }
}
#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: #e83624 !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: #e83624;
  cursor: pointer;
}
#c-header .c-gn .c-phone {
  display: flex;
  align-items: center;
}
#c-header .c-gn .c-phone img,
#c-header .c-gn .c-phone svg {
  margin: 0 0.1rem 0 0.3rem;
  width: 20px;
  height: 20px;
  fill: #fff;
}
#c-header .c-gn .c-phone span {
  font-weight: bold;
}
#c-header.c-style2 .c-gn form > svg path {
  fill: #333;
}
#c-header.c-style2 .c-gn .c-phone svg path {
  fill: #e83624;
}
#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: #e83624;
  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: #e83624;
}
#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-header .head-nav {
  width: 35px;
  height: 30px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1024px) {
  #c-header .head-nav {
    display: none;
  }
}
#c-header .head-nav:hover i {
  background-color: #e83624 !important;
}
#c-header .head-nav:hover i:nth-of-type(1) {
  width: 71.42%;
}
#c-header .head-nav:hover i:nth-of-type(3) {
  width: 100%;
}
#c-header .head-nav i {
  border-radius: 1000px;
  cursor: pointer;
  transition: all 0.2s;
}
#c-header .head-nav i:nth-of-type(1) {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  top: 0;
  left: 0;
}
#c-header .head-nav i:nth-of-type(2) {
  position: absolute;
  width: 51.42%;
  height: 3px;
  background: #333;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
#c-header .head-nav i:nth-of-type(3) {
  position: absolute;
  width: 71.42%;
  height: 3px;
  background: #333;
  bottom: 0;
  left: 0;
}
/* 底部 */
#c-footer {
  position: relative;
  color: #fff;
}
#c-footer a {
  color: #a9a9a9;
  transition: 0.3s;
}
#c-footer a:hover {
  color: #e83624;
}
#c-footer .c-top-box {
  padding: 0.8rem 0;
  background: #333;
}
@media (max-width: 767px) {
  #c-footer .c-top-box {
    padding: 1rem 0 1.2rem;
  }
}
#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-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.4rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-title-box {
    padding: 0.3rem 0;
    border-bottom: 1px solid #666;
  }
}
#c-footer .c-top-box .container .c-title-box .c-title {
  color: #fff;
}
#c-footer .c-top-box .container .c-title-box a {
  color: #fff;
}
#c-footer .c-top-box .container .c-title-box a:hover {
  color: #e83624;
}
#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: #fff;
}
@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%;
  }
}
@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;
}
#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: 0.1rem;
}
@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: #e83624;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-wrap {
    width: 100%;
    padding-top: 0.4rem;
  }
}
#c-footer .c-bottom-box {
  padding: 0.25rem 0;
  border-top: 1px solid #999;
  color: #7f7f7f;
  background: #333;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box {
    padding: 0.6rem 0;
  }
}
#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: #e83624;
}
#c-footer .c-bottom-box .container .c-copyright {
  word-wrap: break-word;
  word-break: break-all;
}
@font-face {
  font-family: "rbt-m";
  src: url("../font/Roboto-Medium-12.ttf") format("truetype");
}
@font-face {
  font-family: "rbt-r";
  src: url("../font/Roboto-Regular-14.ttf") format("opentype");
}
@font-face {
  font-family: "rbt-b";
  src: url("../font/Roboto-Bold-3.ttf") format("opentype");
}
.rbt-m {
  font-family: "rbt-m";
}
.rbt-r {
  font-family: "rbt-r";
}
.rbt-b {
  font-family: "rbt-b";
}
.font12 {
  font-size: 12px;
}
@media (max-width: 767px) {
  .font12 {
    font-size: 0.24rem;
  }
}
.font64 {
  font-size: 0.64rem;
}
.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.28rem;
  }
  .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;
}
.public-title1 .h2 {
  text-align: center;
  font-family: "rbt-b";
  line-height: 1.171875em;
}
@media (max-width: 767px) {
  .public-title1 .h2 {
    font-size: 0.48rem;
  }
}
.public-title1.public-title2 .h2 {
  text-align: left;
}
.fd {
  overflow: hidden;
}
.fd img {
  transition: all 0.8s;
}
.fd:hover img {
  transform: scale(1.05);
}
.public-btn {
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 60px;
  height: 60px;
  border-radius: 30px;
  min-width: 130px;
  border: 1px solid #e83624;
  position: relative;
  overflow: hidden;
  padding: 0 0.4rem 0 0.5rem;
}
@media (max-width: 1680px) {
  .public-btn {
    height: 50px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .public-btn {
    width: auto;
    line-height: 0.8rem;
    height: 0.8rem;
    min-width: 2.6rem;
  }
}
.public-btn .public-btncn1 {
  color: #e83624;
  transition: all 0.7s;
  position: relative;
  font-family: "rbt-m";
}
.public-btn svg {
  position: relative;
  width: 15px;
  height: 11px;
  margin-left: 10px;
}
.public-btn svg path {
  transition: all 0.7s;
  fill: #e83624;
  opacity: 1;
}
.public-btn::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 100px;
  height: 100px;
  background-color: #e83624;
  border-radius: 50%;
  transition: all 0.7s;
}
.public-btn:hover .public-btncn1,
.public-btn.on .public-btncn1 {
  color: #Fff;
}
.public-btn:hover svg path,
.public-btn.on svg path {
  fill: #Fff;
}
.public-btn:hover::before,
.public-btn.on::before {
  transform: scale(7);
}
.public-btn.public-btn2 {
  border-color: #fff;
  transition: all 0.4s;
  height: 55px;
  line-height: 55px;
  border: 2px solid #fff;
}
@media (max-width: 1680px) {
  .public-btn.public-btn2 {
    height: 50px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .public-btn.public-btn2 {
    width: auto;
    line-height: 0.8rem;
    height: 0.8rem;
    min-width: 2.6rem;
  }
}
.public-btn.public-btn2 .public-btncn1 {
  color: #fff;
}
.public-btn.public-btn2 svg path {
  fill: #fff;
}
.public-btn.public-btn2:hover,
.public-btn.public-btn2.on {
  border-color: #e83624;
}
.zz-textb {
  font-family: "rbt-b";
}
.pc {
  display: block;
}
.wap {
  display: none;
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .wap {
    display: block;
  }
}
@-webkit-keyframes tds-keyframe--bounce {
  0%,
  20%,
  50%,
  80%,
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  60% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
}
@keyframes tds-keyframe--bounce {
  0%,
  20%,
  50%,
  80%,
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  60% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
}
.tcl-animate-chevron {
  -webkit-animation-duration: 2s !important;
  animation-duration: 2s !important;
  -webkit-animation-iteration-count: infinite !important;
  animation-iteration-count: infinite !important;
  -webkit-animation-name: tds-keyframe--bounce !important;
  animation-name: tds-keyframe--bounce !important;
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.sy-sec1 .zz_w {
  position: relative;
  height: 230vh;
  width: 100%;
}
.sy-sec1 .zz_w .zz-mask {
  height: 1rem;
  background: #f8f8f8;
  width: 100%;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
}
.sy-sec1 .zz-contBox {
  height: 100vh;
  position: sticky;
  top: 0;
}
.sy-sec1 .swiper-container {
  height: 100%;
}
.sy-sec1 .swiper-slide .zz-title-box {
  position: absolute;
  z-index: 2;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 1580px) {
  .sy-sec1 .swiper-slide .zz-title-box {
    top: 0.75rem;
  }
}
@media (max-width: 767px) {
  .sy-sec1 .swiper-slide .zz-title-box {
    top: 0.85rem;
  }
}
.sy-sec1 .swiper-slide .zz-imgbox {
  width: 93.75%;
  border-radius: 0.8rem;
  position: absolute;
  top: 4.15rem;
  left: 50%;
  transform: translateX(-50%);
  height: 100vh;
}
@media (max-width: 767px) {
  .sy-sec1 .swiper-slide .zz-imgbox {
    width: 90%;
  }
}
.sy-sec1 .swiper-slide .zz-imgbox .public-img {
  width: 100%;
  border-radius: inherit;
  height: 100%;
}
.sy-sec1 .swiper-slide .zz-imgbox .public-img::before {
  padding-top: 100%;
}
.sy-sec1 .swiper-slide .zz-imgbox .public-img .zz-mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 0;
}
.sy-sec1 .swiper-slide .zz-imgbox .public-img .zz-mask.on {
  opacity: 1;
}
@media (max-width: 767px) {
  .sy-sec1 .swiper-slide .zz-imgbox .public-img img:nth-of-type(1) {
    display: none;
  }
}
.sy-sec1 .swiper-slide .zz-imgbox .public-img img:nth-of-type(2) {
  display: none;
}
@media (max-width: 767px) {
  .sy-sec1 .swiper-slide .zz-imgbox .public-img img:nth-of-type(2) {
    display: block;
  }
}
.sy-sec1 .zz-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0.3rem;
}
@media (max-width: 767px) {
  .sy-sec1 .zz-btn {
    margin-top: 0.5rem;
  }
}
.sy-sec1 .swpBtn-box {
  position: absolute;
  bottom: 75px;
  left: 0.6rem;
  height: 1px;
}
@media (max-width: 767px) {
  .sy-sec1 .swpBtn-box {
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    bottom: 18%;
  }
}
.sy-sec1 .zz-syb {
  position: absolute;
  height: 1px;
  transition: all 0.4s;
  background: #e83624;
  bottom: -23px;
  left: 0;
  z-index: 100;
  opacity: 0;
}
.sy-sec1 .zz-syb.on {
  opacity: 1;
}
.sy-sec1 .swiper-pagination {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  position: relative;
  opacity: 0;
}
.sy-sec1 .swiper-pagination.on {
  opacity: 1;
}
.sy-sec1 .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 0.4rem;
  background: transparent;
  border: 1px solid #c3c2c1;
  opacity: 1;
  position: relative;
  display: block;
  transition: all 0.4s;
}
.sy-sec1 .swiper-pagination .swiper-pagination-bullet-active {
  border-color: #e83624;
  background: #e83624;
}
.sy-sec1 .zz-tips {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 35px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .sy-sec1 .zz-tips {
    display: none;
  }
}
.sy-sec1 .zz-tips.on {
  opacity: 1;
}
.sy-sec1 .zz-tips .zz-text {
  color: #fff;
}
.sy-sec1 .zz-tips .zz-link {
  height: 0.75rem;
  margin-top: 5px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  width: 1px;
}
.sy-sec1 .zz-tips .zz-link.on::before {
  height: 100%;
  -webkit-animation: scroll 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation: scroll 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.sy-sec1 .zz-tips .zz-link::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0;
  background: #e83624;
  transition: all 0.8s;
}
.sy-sec2 {
  background: #f8f8f8;
  padding: 0 0 2.35rem;
  position: relative;
}
.sy-sec2::before {
  content: '';
  height: 1rem;
  background: #f8f8f8;
  width: 100%;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
  position: absolute;
  top: -1rem;
  left: 0;
  z-index: 2;
}
.sy-sec2 .zz-mask {
  position: absolute;
  width: 100%;
  height: 1rem;
  bottom: 0;
  left: 0;
  background: #fff;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
}
.sy-sec2 .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 770px) {
  .sy-sec2 .container {
    flex-direction: column;
  }
}
.sy-sec2 .zz-left {
  width: 43.75%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.2rem 0 0.3rem;
}
@media (max-width: 1290px) {
  .sy-sec2 .zz-left {
    width: 46%;
  }
}
@media (max-width: 1024px) {
  .sy-sec2 .zz-left {
    width: 50%;
  }
}
@media (max-width: 770px) {
  .sy-sec2 .zz-left {
    width: 100%;
    padding-bottom: 0.7rem;
  }
}
.sy-sec2 .zz-left .h2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.sy-sec2 .zz-left .zz-text {
  color: #666;
  line-height: 1.5em;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-top: 0.25rem;
  word-wrap: break-word;
  word-break: keep-all;
}
@media (max-width: 1024px) {
  .sy-sec2 .zz-left .zz-text {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.sy-sec2 .zz-left .public-btn {
  margin-top: 0.65rem;
}
@media (max-width: 1024px) {
  .sy-sec2 .zz-left .public-btn {
    margin-top: 0.4rem;
  }
}
.sy-sec2 .zz-left .zz-box2 {
  display: flex;
}
@media (max-width: 770px) {
  .sy-sec2 .zz-left .zz-box2 {
    margin-top: 0.7rem;
  }
}
.sy-sec2 .zz-left .zz-box2 li {
  margin-right: 0.7rem;
}
@media (max-width: 770px) {
  .sy-sec2 .zz-left .zz-box2 li {
    margin-right: 0rem;
    width: 33.33%;
    padding: 0 0.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.sy-sec2 .zz-left .zz-box2 li:last-child {
  margin-right: 0;
}
.sy-sec2 .zz-left .zz-box2 li .zz-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin-bottom: 0.15rem;
}
@media (max-width: 770px) {
  .sy-sec2 .zz-left .zz-box2 li .zz-icon {
    width: 0.5rem;
    height: 0.5rem;
    margin-bottom: 0.25rem;
  }
}
.sy-sec2 .zz-left .zz-box2 li .zz-icon img,
.sy-sec2 .zz-left .zz-box2 li .zz-icon svg {
  width: 100%;
  height: 100%;
}
.sy-sec2 .zz-left .zz-box2 li .zz-div1 {
  line-height: 1.2;
}
@media (max-width: 767px) {
  .sy-sec2 .zz-left .zz-box2 li .zz-div1 {
    text-align: center;
  }
}
.sy-sec2 .zz-left .zz-box2 li .zz-div2 {
  color: #666;
}
@media (max-width: 1024px) {
  .sy-sec2 .zz-left .zz-box2 li .zz-div2 {
    font-size: 14px;
  }
}
@media (max-width: 770px) {
  .sy-sec2 .zz-left .zz-box2 li .zz-div2 {
    text-align: center;
    margin-top: 0.2rem;
  }
}
.sy-sec2 .zz-right {
  width: 43.75%;
}
@media (max-width: 770px) {
  .sy-sec2 .zz-right {
    order: 0;
    width: 100%;
  }
}
.sy-sec2 .zz-right .public-img {
  width: 100%;
  overflow: hidden;
  border-radius: 0.45rem;
}
.sy-sec2 .zz-right .public-img img {
  transition: all 0.8s;
}
.sy-sec2 .zz-right .public-img:hover img {
  transform: scale(1.05);
}
.sy-sec2 .zz-right .public-img img {
  border-radius: inherit;
}
.sy-sec3 {
  overflow: hidden;
  padding: 0rem 0 0.75rem;
}
@media (max-width: 767px) {
  .sy-sec3 {
    padding-bottom: 1.2rem;
  }
}
.sy-sec3 .zz-title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .sy-sec3 .zz-title-box {
    flex-direction: column;
  }
}
.sy-sec3 .zz-title-box .h2 {
  flex: 1;
}
.sy-sec3 .zz-title-box .zz-btnUl {
  display: flex;
  position: relative;
}
@media (max-width: 767px) {
  .sy-sec3 .zz-title-box .zz-btnUl {
    margin-top: 0.5rem;
  }
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli {
  position: relative;
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli::before {
  content: '';
  position: absolute;
  height: 80px;
  width: 160px;
  top: 0px;
  right: 0;
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .public-btn {
  padding: 0 0.15rem;
  min-width: 160px;
  margin-left: 0.3rem;
  height: 55px;
  line-height: 55px;
}
@media (max-width: 767px) {
  .sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .public-btn {
    height: 0.8rem;
    line-height: 0.8rem;
    min-width: 2.6rem;
  }
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs {
  position: absolute;
  right: 0;
  top: 80px;
  display: none;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  padding: 0.35rem 0.2rem 5px 0.4rem;
  width: 480%;
  z-index: 10;
  height: 6.1rem;
}
@media (max-width: 1024px) {
  .sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs {
    width: 420%;
  }
}
@media (max-width: 770px) {
  .sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs {
    width: 90%;
    position: fixed;
    top: 1.1rem;
    height: calc(100vh - 1.2rem);
    border-radius: 0;
  }
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-scroll {
  height: 97%;
  overflow-y: auto;
  /*定义滚动条的轨道颜色、内阴影及圆角*/
  /*定义滑块颜色、内阴影及圆角*/
  padding-right: 0.2rem;
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-scroll::-webkit-scrollbar {
  width: 2px;
  /*对垂直流动条有效*/
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #ddd;
  background-color: #ddd;
  border-radius: 3px;
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-scroll::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background-color: #e83624;
}
@media (max-width: 770px) {
  .sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-scroll {
    height: 90%;
  }
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-list {
  margin-bottom: 0.25rem;
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-list:last-child {
  margin-bottom: 0;
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-list h3 img,
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-list h3 svg {
  height: 20px;
  margin-left: 0.2rem;
  margin-right: 0.1rem;
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-list ul {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-list ul li {
  margin-right: 1.33%;
  margin-bottom: 10px;
  width: 24%;
}
@media (max-width: 770px) {
  .sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-list ul li {
    width: 48%;
    margin-right: 2%;
  }
  .sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-list ul li:nth-of-type(4n+4) {
    margin-right: 2%;
  }
  .sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-list ul li:nth-of-type(2n+2) {
    margin-right: 0;
  }
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-list ul li:nth-of-type(4n+4) {
  margin-right: 0;
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-list ul li a {
  background: #f8f8f8;
  border-radius: 1000px;
  color: #333;
  padding: 10px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-content: center;
  transition: all 0.4s;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: center;
  height: 45px;
  line-height: 1.8;
}
@media (max-width: 770px) {
  .sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-list ul li a {
    line-height: 2;
  }
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-list ul li a:hover {
  background: #e83624;
  color: #fff;
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-close {
  height: 10%;
  align-items: center;
  display: none;
}
@media (max-width: 770px) {
  .sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-close {
    display: flex;
  }
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-close img,
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-close svg {
  width: 0.4rem;
  height: 0.4rem;
}
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-close img path,
.sy-sec3 .zz-title-box .zz-btnUl .zz-btnli .zz-boxs .zz-close svg path {
  fill: #666;
}
.sy-sec3 .swiper-container {
  overflow: unset;
  margin-top: 0.6rem;
}
@media (max-width: 767px) {
  .sy-sec3 .swiper-container {
    margin-top: 0.8rem;
  }
}
.sy-sec3 .swiper-slide:hover .public-img img {
  transform: scale(1.05);
}
.sy-sec3 .swiper-slide:hover .zz-cont .zz-a img,
.sy-sec3 .swiper-slide:hover .zz-cont .zz-a svg {
  transform: translateX(5px);
}
.sy-sec3 .swiper-slide .zz-bgimg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.sy-sec3 .swiper-slide .zz-cont {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0.6rem;
}
.sy-sec3 .swiper-slide .zz-cont .h3 {
  font-family: "rbt-m";
  line-height: 1.2;
}
@media (max-width: 767px) {
  .sy-sec3 .swiper-slide .zz-cont .h3 {
    font-size: 0.32rem;
  }
}
.sy-sec3 .swiper-slide .zz-cont .zz-a {
  margin-top: 15px;
  display: flex;
  align-items: center;
  color: #fff;
}
@media (max-width: 767px) {
  .sy-sec3 .swiper-slide .zz-cont .zz-a {
    font-size: 0.28rem;
    margin-top: 0.3rem;
  }
}
.sy-sec3 .swiper-slide .zz-cont .zz-a img,
.sy-sec3 .swiper-slide .zz-cont .zz-a svg {
  margin-left: 10px;
  transition: all 0.4s;
}
.sy-sec3 .swiper-slide .public-img {
  width: 100%;
  overflow: hidden;
  border-radius: 0.4rem;
}
.sy-sec3 .swiper-slide .public-img img {
  transition: all 0.8s;
}
.sy-sec3 .swiper-slide .public-img:hover img {
  transform: scale(1.05);
}
.sy-sec3 .swiper-slide .public-img img {
  border-radius: inherit;
}
.sy-sec3 .swiper-slide .public-img::before {
  padding-top: 55.38%;
}
.sy-sec3 .swiper-button-next,
.sy-sec3 .swiper-button-prev {
  width: 25px;
  height: 40px;
  background-size: 25px 40px;
  background: unset;
  opacity: 1;
}
@media (max-width: 770px) {
  .sy-sec3 .swiper-button-next,
  .sy-sec3 .swiper-button-prev {
    width: 15px;
    height: 30px;
    background-size: 15px 30px;
  }
}
@media (max-width: 767px) {
  .sy-sec3 .swiper-button-next,
  .sy-sec3 .swiper-button-prev {
    margin-top: 0;
  }
}
.sy-sec3 .swiper-button-next svg,
.sy-sec3 .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}
.sy-sec3 .swiper-button-next svg path,
.sy-sec3 .swiper-button-prev svg path {
  transition: all 0.4s;
  fill: rgba(235, 235, 235, 0.9);
}
.sy-sec3 .swiper-button-next:hover svg path,
.sy-sec3 .swiper-button-prev:hover svg path {
  fill: #e83624;
}
.sy-sec3 .swiper-button-prev {
  left: 1.8rem;
}
.sy-sec3 .swiper-button-prev svg {
  transform: rotate(180deg);
}
@media (max-width: 770px) {
  .sy-sec3 .swiper-button-prev {
    left: 0.4rem;
  }
}
.sy-sec3 .swiper-button-next {
  left: unset;
  right: 1.8rem;
}
@media (max-width: 770px) {
  .sy-sec3 .swiper-button-next {
    right: 0.4rem;
  }
}
.sy-sec4 {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 6.05rem;
  position: relative;
}
@media (max-width: 767px) {
  .sy-sec4 {
    height: 65vh;
    background-image: unset !important;
  }
}
.sy-sec4 .zz-bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.sy-sec4 .zz-mask {
  position: absolute;
  width: 100%;
  height: 1rem;
  bottom: 0;
  left: 0;
  background: #f8f8f8;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
}
.sy-sec4 .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.sy-sec4 .zz-cont {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 57.5%;
  text-align: center;
  top: 38%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .sy-sec4 .zz-cont {
    width: 71%;
  }
}
@media (max-width: 767px) {
  .sy-sec4 .zz-cont {
    width: 100%;
    top: 40%;
  }
}
.sy-sec4 .zz-cont .h2,
.sy-sec4 .zz-cont .zz-text {
  color: #fff;
}
.sy-sec4 .zz-cont .zz-text {
  line-height: 1.5em;
  margin-top: 0.2rem;
}
.sy-sec4 .zz-cont .zz-btn {
  margin-top: 0.35rem;
}
@media (max-width: 767px) {
  .sy-sec4 .zz-cont .zz-btn {
    margin-top: 0.7rem;
  }
}
.sy-sec4 .zz-cont .zz-btn .public-btn {
  min-width: 160px;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .sy-sec4 .zz-cont .zz-btn .public-btn {
    min-width: 2.6rem;
  }
}
.sy-sec5 {
  overflow: hidden;
  background: #f8f8f8;
  padding: 0.3rem 0 2.35rem;
  position: relative;
}
@media (max-width: 767px) {
  .sy-sec5 {
    padding-bottom: 1.95rem;
  }
}
.sy-sec5 .zz-mask {
  position: absolute;
  width: 100%;
  height: 1rem;
  bottom: 0;
  left: 0;
  background: #fff;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
}
.sy-sec5 .swiper-container {
  overflow: unset;
  margin-top: 0.7rem;
}
.sy-sec5 .swiper-wrapper {
  align-items: stretch;
  padding-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .sy-sec5 .swiper-wrapper {
    padding-bottom: 1.2rem;
  }
}
.sy-sec5 .swiper-slide {
  display: flex;
  border-radius: 15px;
  box-shadow: 0 14px 28px rgba(35, 35, 35, 0.06);
  padding: 0.75rem 0.6rem;
  background: #fff;
  height: auto;
}
@media (max-width: 767px) {
  .sy-sec5 .swiper-slide {
    flex-direction: column;
  }
}
.sy-sec5 .swiper-slide .zz-left {
  width: 1.65rem;
}
.sy-sec5 .swiper-slide .zz-left img {
  width: auto;
  max-width: 100%;
  object-fit: cover;
}
.sy-sec5 .swiper-slide .zz-right {
  flex: 1;
  position: relative;
  margin-left: 0.6rem;
}
@media (max-width: 767px) {
  .sy-sec5 .swiper-slide .zz-right {
    margin-top: 0.6rem;
  }
}
.sy-sec5 .swiper-slide .zz-right .zz-img1,
.sy-sec5 .swiper-slide .zz-right .zz-img2 {
  width: 0.55rem;
  position: absolute;
}
.sy-sec5 .swiper-slide .zz-right .zz-img1 {
  left: -0.4rem;
  top: -0.25rem;
}
.sy-sec5 .swiper-slide .zz-right .zz-img2 {
  bottom: -0.2rem;
  right: -0.15rem;
}
.sy-sec5 .swiper-slide .zz-right .zz-cont {
  color: #666;
  line-height: 1.6em;
}
.sy-sec5 .swiper-slide .zz-right .zz-tips {
  display: flex;
  align-items: center;
  color: #e83624;
  justify-content: flex-end;
  margin-top: 0.6rem;
  margin-right: 0.2rem;
}
.sy-sec5 .swiper-slide .zz-right .zz-tips img,
.sy-sec5 .swiper-slide .zz-right .zz-tips svg {
  margin-right: 0.2rem;
}
.sy-sec5 .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sy-sec5 .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #cccccc;
  opacity: 1;
  margin: 0 6px !important;
}
.sy-sec5 .swiper-pagination-bullet-active {
  background: transparent;
  border: 2px solid #e83624;
  width: 12px;
  height: 12px;
}
.sy-sec6 {
  padding: 0.25rem 0 1.7rem;
  position: relative;
}
.sy-sec6 .zz-mask {
  position: absolute;
  width: 100%;
  height: 1rem;
  bottom: 0;
  left: 0;
  background: #f8f8f8;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
}
.sy-sec6 .zz-cont {
  display: flex;
  position: relative;
  margin-top: 0.55rem;
}
@media (max-width: 767px) {
  .sy-sec6 .zz-cont {
    flex-direction: column;
  }
}
.sy-sec6 .zz-cont .zz-left {
  width: 61.25%;
}
@media (max-width: 767px) {
  .sy-sec6 .zz-cont .zz-left {
    width: 100%;
    margin-bottom: 0.7rem;
  }
}
.sy-sec6 .zz-cont .zz-left .public-img {
  width: 100%;
}
.sy-sec6 .zz-cont .zz-left .public-img::before {
  padding-top: 67.17%;
}
.sy-sec6 .zz-cont .zz-right {
  position: absolute;
  background: #e83624;
  top: 0;
  right: 0;
  z-index: 2;
  width: 45.31%;
  padding: 0.6rem 0.8rem 0.75rem 0.8rem;
  border-radius: 0.3rem;
}
@media (max-width: 767px) {
  .sy-sec6 .zz-cont .zz-right {
    width: 100%;
    position: relative;
  }
}
.sy-sec6 .zz-cont .zz-right .h3,
.sy-sec6 .zz-cont .zz-right .zz-text {
  color: #fff;
}
.sy-sec6 .zz-cont .zz-right .zz-text {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.6em;
  margin-top: 0.15rem;
}
.sy-sec6 .zz-cont .zz-right .zz-btn {
  margin-top: 0.8rem;
}
.sy-sec6 .zz-cont .zz-right .zz-btn .public-btn::before {
  background: #fff;
}
.sy-sec6 .zz-cont .zz-right .zz-btn .public-btn:hover .public-btncn1 {
  color: #e83624;
}
.sy-sec6 .zz-cont .zz-right .zz-btn .public-btn:hover svg path {
  fill: #e83624;
}
.sy-sec7 {
  background: #f8f8f8;
  padding-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .sy-sec7 {
    padding-bottom: 1.2rem;
  }
}
.sy-sec7 .zz-title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sy-sec7 .swpBox {
  position: relative;
  margin-top: 0.65rem;
}
@media (max-width: 767px) {
  .sy-sec7 .swiper-container {
    padding-bottom: 1.2rem;
  }
}
.sy-sec7 .swiper-pagination {
  display: none;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .sy-sec7 .swiper-pagination {
    display: flex;
  }
}
.sy-sec7 .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #cccccc;
  opacity: 1;
  margin: 0 6px !important;
}
.sy-sec7 .swiper-pagination-bullet-active {
  background: transparent;
  border: 2px solid #e83624;
  width: 12px;
  height: 12px;
}
.sy-sec7 .swiper-wrapper {
  align-items: stretch;
}
.sy-sec7 .swiper-slide {
  height: auto;
}
.sy-sec7 .swiper-slide:hover .h3 {
  color: #e83624;
}
.sy-sec7 .swiper-slide:hover .public-img img {
  transform: scale(1.05);
}
.sy-sec7 .swiper-slide .zz-a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sy-sec7 .swiper-slide:nth-of-type(even) .zz-imgbox {
  order: 1;
}
@media (max-width: 767px) {
  .sy-sec7 .swiper-slide:nth-of-type(even) .zz-imgbox {
    order: 0;
  }
}
.sy-sec7 .swiper-slide:nth-of-type(even) .zz-imgbox .public-img {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
@media (max-width: 767px) {
  .sy-sec7 .swiper-slide:nth-of-type(even) .zz-imgbox .public-img {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0rem;
    border-bottom-right-radius: 0rem;
  }
}
.sy-sec7 .swiper-slide:nth-of-type(even) .zz-cont {
  order: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
@media (max-width: 767px) {
  .sy-sec7 .swiper-slide:nth-of-type(even) .zz-cont {
    order: 1;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }
}
.sy-sec7 .swiper-slide .public-img {
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.sy-sec7 .swiper-slide .public-img img {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  transition: all 0.8s;
}
.sy-sec7 .swiper-slide .public-img::before {
  padding-top: 54%;
}
.sy-sec7 .swiper-slide .zz-cont {
  background: #fff;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  padding: 0.4rem 0.4rem 0.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sy-sec7 .swiper-slide .h3 {
  line-height: 1.06666667em;
  color: #333;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.4s;
  font-family: "rbt-m";
}
.sy-sec7 .swiper-slide .zz-text {
  color: #666;
  line-height: 1.6em;
  margin-top: 0.3rem;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sy-sec7 .swiper-slide .zz-date {
  color: #999;
  width: 100%;
  text-align: right;
  margin-top: 0.35rem;
}
.sy-sec7 .swiper-button-next,
.sy-sec7 .swiper-button-prev {
  width: 25px;
  height: 40px;
  background-size: 25px 40px;
  background: unset;
  opacity: 1;
}
@media (max-width: 770px) {
  .sy-sec7 .swiper-button-next,
  .sy-sec7 .swiper-button-prev {
    width: 15px;
    height: 30px;
    background-size: 15px 30px;
  }
}
@media (max-width: 767px) {
  .sy-sec7 .swiper-button-next,
  .sy-sec7 .swiper-button-prev {
    display: none;
  }
}
.sy-sec7 .swiper-button-next svg,
.sy-sec7 .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}
.sy-sec7 .swiper-button-next svg path,
.sy-sec7 .swiper-button-prev svg path {
  transition: all 0.4s;
  fill: rgba(235, 235, 235, 0.9);
}
.sy-sec7 .swiper-button-next:hover svg path,
.sy-sec7 .swiper-button-prev:hover svg path {
  fill: #e83624;
}
.sy-sec7 .swiper-button-prev {
  left: -0.65rem;
}
.sy-sec7 .swiper-button-prev svg {
  transform: rotate(180deg);
}
@media (max-width: 770px) {
  .sy-sec7 .swiper-button-prev {
    left: -0.45rem;
  }
}
.sy-sec7 .swiper-button-next {
  left: unset;
  right: -0.65rem;
}
@media (max-width: 770px) {
  .sy-sec7 .swiper-button-next {
    right: -0.45rem;
  }
}
.public-ftbn {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .public-ftbn {
    flex-direction: column;
  }
}
.public-ftbn .zz-left,
.public-ftbn .zz-right {
  width: 50%;
}
@media (max-width: 767px) {
  .public-ftbn .zz-left,
  .public-ftbn .zz-right {
    width: 100%;
  }
}
.public-ftbn .zz-left .bgimg,
.public-ftbn .zz-right .bgimg {
  position: absolute;
  width: 43.22%;
  bottom: -144%;
  left: 0;
}
@media (max-width: 1580px) {
  .public-ftbn .zz-left .bgimg,
  .public-ftbn .zz-right .bgimg {
    bottom: -153%;
  }
}
@media (max-width: 767px) {
  .public-ftbn .zz-left .bgimg,
  .public-ftbn .zz-right .bgimg {
    bottom: -100%;
  }
}
.public-ftbn .zz-left,
.public-ftbn .zz-right {
  background: #e83624;
  padding: 0.65rem 1.6rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .public-ftbn .zz-left,
  .public-ftbn .zz-right {
    padding: 0.65rem 0.6rem;
  }
}
@media (max-width: 767px) {
  .public-ftbn .zz-left,
  .public-ftbn .zz-right {
    padding: 0.6rem 0.4rem;
  }
}
.public-ftbn .zz-left .zz-title,
.public-ftbn .zz-right .zz-title {
  color: #fff;
  font-family: "rbt-m";
  position: relative;
  z-index: 2;
}
@media (max-width: 770px) {
  .public-ftbn .zz-left .zz-title,
  .public-ftbn .zz-right .zz-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .public-ftbn .zz-left .zz-title,
  .public-ftbn .zz-right .zz-title {
    font-size: 0.32rem;
  }
}
.public-ftbn .zz-left .zz-btn,
.public-ftbn .zz-right .zz-btn {
  position: relative;
  z-index: 2;
  margin-top: 0.3rem;
}
@media (max-width: 767px) {
  .public-ftbn .zz-left .zz-btn,
  .public-ftbn .zz-right .zz-btn {
    margin-top: 0.6rem;
  }
}
.public-ftbn .zz-left .zz-btn .public-btn::before {
  background: #fff;
}
.public-ftbn .zz-left .zz-btn .public-btn:hover .public-btncn1 {
  color: #e83624;
}
.public-ftbn .zz-left .zz-btn .public-btn:hover svg path {
  fill: #e83624;
}
.public-ftbn .zz-right {
  background: #fff;
}
.public-ftbn .zz-right .bgimg {
  left: unset;
  width: auto;
  height: 83.33%;
  bottom: -6%;
  right: -13%;
}
@media (max-width: 1580px) {
  .public-ftbn .zz-right .bgimg {
    right: -8%;
    height: 90%;
  }
}
@media (max-width: 991px) {
  .public-ftbn .zz-right .bgimg {
    height: 75%;
  }
}
@media (max-width: 767px) {
  .public-ftbn .zz-right .bgimg {
    height: 85%;
    right: -15%;
  }
}
.public-ftbn .zz-right .zz-title {
  color: #333;
}
#c-footer {
  background: #111;
}
#c-footer .zz-top-box .container {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding: 0.55rem 0;
}
@media (max-width: 767px) {
  #c-footer .zz-top-box .container {
    padding: 0.7rem 0;
  }
}
#c-footer .zz-top-box .container .zz-lg {
  width: 1.1rem;
}
@media (max-width: 767px) {
  #c-footer .zz-top-box .container .zz-lg {
    width: 1.3rem;
    display: flex;
    align-items: center;
  }
}
#c-footer .zz-top-box .container .zz-lg .zz-a {
  width: 100%;
}
#c-footer .zz-top-box .container .zz-lg .zz-a img,
#c-footer .zz-top-box .container .zz-lg .zz-a svg {
  width: 100%;
}
#c-footer .zz-top-box .container .zz-lg .zz-a img path,
#c-footer .zz-top-box .container .zz-lg .zz-a svg path {
  fill: #fff;
}
#c-footer .zz-top-box .container .zz-lg .zz-a .cls-2 {
  fill: #fff;
}
#c-footer .zz-top-box .container .zz-ico {
  display: flex;
  align-items: center;
}
@media (max-width: 1366px) {
}
@media (max-width: 767px) {
}
#c-footer .zz-top-box .container .zz-ico a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.2rem;
  min-width: 45px;
  min-height: 45px;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  color: #fff;
  background: #1e1e1e;
  transition: 0.4s;
}
@media (max-width: 767px) {
  #c-footer .zz-top-box .container .zz-ico a {
    width: 0.8rem;
    height: 0.8rem;
    min-width: 0.8rem;
    min-height: 0.8rem;
  }
}
#c-footer .zz-top-box .container .zz-ico a img,
#c-footer .zz-top-box .container .zz-ico a svg {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 15px;
  min-height: 15px;
}
@media (max-width: 767px) {
  #c-footer .zz-top-box .container .zz-ico a img,
  #c-footer .zz-top-box .container .zz-ico a svg {
    width: 0.3rem;
    height: 0.3rem;
  }
}
#c-footer .zz-top-box .container .zz-ico a img path,
#c-footer .zz-top-box .container .zz-ico a svg path {
  fill: #999;
  transition: all 0.4s;
  opacity: 1;
}
#c-footer .zz-top-box .container .zz-ico a:hover {
  background: #e83624;
}
#c-footer .zz-top-box .container .zz-ico a:hover img path,
#c-footer .zz-top-box .container .zz-ico a:hover svg path {
  fill: #fff;
}
#c-footer .zz-text-wrap {
  padding: 0.5rem 0;
  border-bottom: 1px solid #333;
}
@media (max-width: 767px) {
  #c-footer .zz-text-wrap {
    padding: 0.7rem 0;
  }
}
#c-footer .zz-text-wrap .zz-box1 {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  #c-footer .zz-text-wrap .zz-box1 {
    flex-direction: column;
  }
}
#c-footer .zz-text-wrap .zz-box1 .zz-left {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  #c-footer .zz-text-wrap .zz-box1 .zz-left {
    flex-direction: column;
  }
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
  flex-direction: column;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form {
    padding-right: 0rem;
    margin-top: 0.3rem;
    width: 100%;
  }
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form .zz-inputBox {
  display: flex;
  margin-bottom: 10px;
  width: 100%;
  position: relative;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form .zz-tips {
  color: #999;
  margin-bottom: 10px;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form .zz-selectBox {
  width: 100%;
  position: relative;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form .zz-selectBox img {
  position: absolute;
  width: 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 0.15rem;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 767px) {
  #c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form .zz-selectBox img {
    width: 0.2rem;
    right: 0.3rem;
  }
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form input {
  padding: 0 0.25rem;
  height: 40px;
  flex: 1;
  color: #666;
  /* WebKit browsers */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10+ */
  display: flex;
  background: #fff;
  border-radius: 5px;
  margin-right: 10px;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form input::-webkit-input-placeholder {
  color: #666;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form input:-moz-placeholder {
  color: #666;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form input::-moz-placeholder {
  color: #666;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form input:-ms-input-placeholder {
  color: #666;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form input:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  #c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form input {
    padding: 0 0.4rem;
    height: 0.8rem;
    width: 50%;
  }
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form select {
  padding: 0 0.25rem;
  height: 40px;
  flex: 1;
  color: #666;
  /* WebKit browsers */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10+ */
  background: #fff;
  border-radius: 5px;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form select::-webkit-input-placeholder {
  color: #666;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form select:-moz-placeholder {
  color: #666;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form select::-moz-placeholder {
  color: #666;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form select:-ms-input-placeholder {
  color: #666;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form textarea {
  height: 80px;
  padding: 10px 0.25rem;
  background: #fff;
  border-radius: 5px;
  width: 100%;
  color: #666;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form .public-icon {
  background: #e83624;
  width: 45px;
  height: 45px;
  border-radius: 1000px;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form .public-icon img,
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form .public-icon svg {
  transition: all 0.4s;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form .public-icon:hover img,
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form .public-icon:hover svg {
  transform: translateX(5px);
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form .public-btn {
  height: 45px;
  width: 100%;
  border-radius: 5px;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form .public-btn:hover::before,
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-form .public-btn.on::before {
  transform: scale(12);
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-boxs1 {
  width: 48%;
}
@media (max-width: 767px) {
  #c-footer .zz-text-wrap .zz-box1 .zz-left .zz-boxs1 {
    width: 100%;
  }
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-boxs2 {
  margin-left: 1.5rem;
  width: 38.5%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  #c-footer .zz-text-wrap .zz-box1 .zz-left .zz-boxs2 {
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-boxs2 li {
  width: 50%;
  margin-bottom: 0.25rem;
}
@media (max-width: 767px) {
  #c-footer .zz-text-wrap .zz-box1 .zz-left .zz-boxs2 li {
    margin-bottom: 0.3rem;
  }
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-boxs2 li a {
  color: #999;
}
#c-footer .zz-text-wrap .zz-box1 .zz-left .zz-boxs2 li a:hover {
  color: #e83624;
}
#c-footer .zz-text-wrap .zz-box1 .zz-right {
  width: 25%;
}
@media (max-width: 1024px) {
  #c-footer .zz-text-wrap .zz-box1 .zz-right {
    width: 55%;
    margin-top: 0.2rem;
  }
}
@media (max-width: 767px) {
  #c-footer .zz-text-wrap .zz-box1 .zz-right {
    width: 100%;
    margin-top: 0.4rem;
  }
}
#c-footer .zz-text-wrap .zz-box1 .zz-right li {
  line-height: 1.2;
  display: flex;
  margin-bottom: 0.25rem;
}
#c-footer .zz-text-wrap .zz-box1 .zz-right li:nth-of-type(1) {
  align-items: center;
}
@media (max-width: 1024px) {
  #c-footer .zz-text-wrap .zz-box1 .zz-right li:nth-of-type(1) {
    margin-bottom: 0.3rem;
    display: flex;
  }
}
#c-footer .zz-text-wrap .zz-box1 .zz-right li a:hover .zz-p1,
#c-footer .zz-text-wrap .zz-box1 .zz-right li a:hover .zz-p2 {
  color: #e83624;
}
@media (max-width: 1024px) {
  #c-footer .zz-text-wrap .zz-box1 .zz-right li:nth-of-type(2) {
    margin-bottom: 0.3rem;
  }
}
#c-footer .zz-text-wrap .zz-box1 .zz-right li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #c-footer .zz-text-wrap .zz-box1 .zz-right li:last-child {
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 1024px) {
  #c-footer .zz-text-wrap .zz-box1 .zz-right li {
    margin-bottom: 0.3rem;
  }
}
#c-footer .zz-text-wrap .zz-box1 .zz-right li .zz-p1 {
  color: #666;
  transition: all 0.4s;
}
#c-footer .zz-text-wrap .zz-box1 .zz-right li .zz-p2 {
  color: #fff;
  color: #999;
  margin-left: 5px;
  transition: all 0.4s;
}
#c-footer .zz-text-wrap .zz-box2 {
  display: flex;
  flex-wrap: wrap;
  color: #666;
}
#c-footer .zz-text-wrap .zz-box2 li:last-child span {
  display: none;
}
#c-footer .zz-text-wrap .zz-box2 li a {
  color: #666;
}
#c-footer .zz-text-wrap .zz-box2 li a:hover {
  color: #e83624;
}
#c-footer .zz-text-wrap .zz-box2 li span {
  margin: 0 10px;
}
#c-footer .zz-bottom-box .container {
  display: flex;
  justify-content: space-between;
  color: #626262;
  padding: 0.25rem 0 0.35rem;
}
@media (max-width: 767px) {
  #c-footer .zz-bottom-box .container {
    flex-direction: column;
    padding: 0.5rem 0;
  }
}
#c-footer .zz-bottom-box .container a {
  color: inherit;
}
#c-footer .zz-bottom-box .container .zz-support {
  margin-left: 0.2rem;
}
@media (max-width: 767px) {
  #c-footer .zz-bottom-box .container .zz-support {
    margin-left: 0;
  }
}
#c-footer .zz-bottom-box .zz-right {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  #c-footer .zz-bottom-box .zz-right {
    margin-top: 0.2rem;
  }
}
#c-footer .zz-bottom-box .zz-right li {
  margin-left: 0.3rem;
}
#c-footer .zz-bottom-box .zz-right li:nth-of-type(1) {
  margin-left: 0;
}
#c-footer .zz-bottom-box .zz-right li a:hover {
  color: #e83624;
}
/*# sourceMappingURL=./style.css.map */

#solutionAjaxBox .public-conteng img{
    width: 100% !important;
    height: auto !important;
}
.solutioninfo2 ul li {
    list-style: disc;
}