@charset "utf-8";
:root {
  --color: #f39800;
  --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: #f39800;
}
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: #111;
  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 {
  color: #111;
  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;
}
svg path {
  fill: currentColor;
}
picture,
section,
main {
  display: block;
}
.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: #f39800;
}
.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.8s;
}
.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;
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 1rem;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 1.2rem;
  }
}
.g_tac {
  text-align: center;
}
/*顶部*/
#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: 1rem;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}
@media (max-width: 991px) {
  #c-header {
    line-height: 1.2rem;
  }
}
#c-header a {
  color: #fff;
  transition: 0.4s;
}
#c-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@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;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#c-header.c-style2 a {
  color: #333;
}
/*顶部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 {
  height: 0.56rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    height: 0.6rem;
  }
}
#c-header .c-logo .c-img-box img: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: 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);
  transition: all 0.4s;
}
#c-header .c-nav > li a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #f39800;
  transition: 0.4s;
}
#c-header .c-nav li a {
  position: relative;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#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%);
  border-radius: 0 0 10px 10px;
}
#c-header .c-nav ul li:last-child a::before {
  display: none;
}
#c-header .c-nav ul li a {
  padding: 0 20px;
  color: #333;
}
#c-header .c-nav ul li a::before {
  bottom: 0;
  width: calc(100% - 40px) !important;
  left: 20px !important;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
#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: #f39800;
}
#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 {
  left: 0;
  width: 100%;
}
#c-header.c-style2 .c-nav li.on > .c-title-box svg,
#c-header .c-nav li:hover > .c-title-box svg {
  color: #f39800;
}
/*顶部移动端导航*/
#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.4s;
  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.4s;
}
#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.4s;
  transition: all 0.4s;
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: #f39800;
}
#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: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
}
#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: 1260px) {
  #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.4s;
  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:hover > svg {
  color: #f39800;
}
#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: #f39800;
  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;
}
#c-header .c-gn .c-phone span {
  font-weight: bold;
}
#c-header.c-style2 .c-gn .c-phone svg {
  color: #f39800;
}
#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: #f39800;
  cursor: pointer;
}
@media (max-width: 767px) {
  #c-go-top {
    display: none !important;
  }
}
#c-go-top img,
#c-go-top svg {
  width: 50%;
  height: 50%;
  color: #fff;
  transform: rotate(-90deg);
}
#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.4s;
  color: #333;
}
#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:hover {
  color: #fff;
  background-color: #f39800;
}
#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: #fff;
}
#c-footer a {
  color: #a9a9a9;
  transition: 0.4s;
}
#c-footer a:hover {
  color: #f39800;
}
#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: #f39800;
}
#c-footer .c-top-box .container .c-title-box img,
#c-footer .c-top-box .container .c-title-box svg {
  display: none;
  transition: 0.4s;
  width: 0.3rem;
  height: 0.3rem;
}
@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.4s;
}
@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:hover {
  background: #f39800;
}
@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: #f39800;
}
#c-footer .c-bottom-box .container .c-copyright {
  word-wrap: break-word;
  word-break: break-all;
}
/*首页内容1*/
.c-home1 {
  height: 100vh;
}
.c-home1 .swiper-slide {
  overflow: hidden;
}
.c-home1 .swiper-slide .c-img {
  width: 100%;
  height: 100%;
}
.c-home1 .swiper-slide .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .c-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .home1_box {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/home2.png) no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-home1 .swiper-slide .home1_box .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.c-home1 .swiper-slide .home1_box .container .txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}
@media (max-width: 767px) {
  .c-home1 .swiper-slide .home1_box .container .txt {
    width: 100%;
  }
}
.c-home1 .swiper-slide .home1_box .container .txt .p1 {
  margin-bottom: 0.22rem;
  line-height: 1.33;
  position: relative;
}
.c-home1 .swiper-slide .home1_box .container .txt .p1::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 8px;
  background: #f39800;
  left: 0;
  bottom: 0.1666em;
  z-index: -1;
}
.c-home1 .swiper-slide .home1_box .container .pub_btn {
  margin-top: 0.54rem;
}
.c-home1 .swiper-slide .home1_box .container .pub_btn i {
  margin-left: 0.3rem;
}
.c-home1 .swiper-slide .home1_box .container .pub_btn p {
  font-size: 14px;
}
@media (max-width: 1260px) {
  .c-home1 .swiper-slide .home1_box .container .pub_btn p {
    font-size: 12px;
  }
}
.c-home1 .swiper-button-next,
.c-home1 .swiper-button-prev {
  margin-top: -0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  opacity: 0.2;
  transition: 0.4s;
  right: 0.6rem;
  background: transparent;
}
@media (max-width: 991px) {
  .c-home1 .swiper-button-next,
  .c-home1 .swiper-button-prev {
    display: none;
  }
}
.c-home1 .swiper-button-next::after,
.c-home1 .swiper-button-prev::after {
  display: none;
}
.c-home1 .swiper-button-next img,
.c-home1 .swiper-button-prev img,
.c-home1 .swiper-button-next svg,
.c-home1 .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
.c-home1 .swiper-button-prev {
  left: 0.6rem;
  transform: rotate(180deg);
}
.c-home1 .swiper-button-next:hover,
.c-home1 .swiper-button-prev:hover {
  opacity: 1;
}
.c-home1 .home1_pag {
  z-index: 10;
  width: 100%;
  bottom: 0.55rem;
  position: absolute;
}
.c-home1 .home1_pag::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.c-home1 .home1_pag .container {
  position: relative;
  z-index: 10;
}
.c-home1 .home1_pag .container .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: initial;
}
@media (max-width: 767px) {
  .c-home1 .home1_pag .container .swiper-pagination {
    bottom: 0.6rem;
  }
}
.c-home1 .home1_pag .container .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  display: flex;
  align-items: center;
  border-radius: 0;
  width: auto;
  height: auto;
  background: none;
  vertical-align: top;
  margin: 0;
}
@media (max-width: 767px) {
  .c-home1 .home1_pag .container .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0.1rem;
  }
}
.c-home1 .home1_pag .container .swiper-pagination .swiper-pagination-bullet i {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  display: inline-flex;
  background: #264cb3;
}
.c-home1 .home1_pag .container .swiper-pagination .swiper-pagination-bullet span {
  pointer-events: none;
  opacity: 0;
  width: 0;
  color: #fff;
  padding: 0 0.05rem;
  white-space: nowrap;
  font-size: 14px;
  height: 1.5em;
}
.c-home1 .home1_pag .container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active i {
  background: #fff;
}
.c-home1 .home1_pag .container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span {
  width: 100%;
  opacity: 1;
  padding: 0 0.1rem;
}
/* 自己的公共样式 */
/*过渡*/
a {
  text-decoration: initial;
}
input::-webkit-input-placeholder {
  color: #999;
}
textarea::-webkit-input-placeholder {
  color: #999;
}
/* 字体 */
@font-face {
  font-family: 'pop-r';
  src: url(../font/Poppins-Regular.ttf);
}
.font-pop {
  font-family: 'pop-r', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.img_hover img {
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  /* Firefox 4 */
  -webkit-transition: all 0.8s;
  /* Safari 和 Chrome */
  -o-transition: all 0.8s;
  /* Opera */
}
.pro_show_js_con * {
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  /* Firefox 4 */
  -webkit-transition: all 0.4s;
  /* Safari 和 Chrome */
  -o-transition: all 0.4s;
  /* Opera */
}
/*延迟*/
.sy_t_box:nth-child(2),
.xinw_nr_box:nth-child(2) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(3),
.xinw_nr_box:nth-child(3) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(4),
.xinw_nr_box:nth-child(4) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(5) {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  /* Safari 和 Chrome */
}
.sy_t_box:nth-child(6) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  /* Safari 和 Chrome */
}
.team_box:hover {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.wow_up {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* 普通移入效果 */
.mov_08 {
  transition: all 0.4s;
}
.mov_08:hover {
  opacity: 0.8;
}
/* 粘性布局调整 */
.sticky_top {
  top: 0 !important;
}
@media screen and (max-width: 1440px) {
  .sticky_top {
    top: 60px;
  }
}
/* 移入图片切换 */
.img_qh .img2 {
  display: none;
}
.img_qh:hover .img1 {
  display: none;
}
.img_qh:hover .img2 {
  display: block;
}
/* pc和移动端的隐藏显示 */
.xs,
.xs2 {
  display: block;
}
.yc,
.yc2 {
  display: none;
}
@media (max-width: 767px) {
  .xs,
  .xs2 {
    display: none;
  }
  .yc,
  .yc2 {
    display: block;
  }
}
.g_xs {
  display: block;
}
.g_yc {
  display: none;
}
@media (max-width: 767px) {
  .g_xs {
    display: none;
  }
  .g_yc {
    display: block;
  }
}
/* 图片移入效果 */
.img_hover:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
/* 使用swiper 出现闪屏问题 */
.swiper-slide {
  transform: translate3d(0, 0, 0);
  /* overflow: hidden; */
}
/* banner中间小图标 */
.banner_sb {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.5rem;
  width: 18px;
  height: auto;
  z-index: 100;
  object-fit: contain;
  animation: moveh 3s infinite linear;
  -webkit-animation: moveh 3s infinite linear;
}
@keyframes moveh {
  0% {
    bottom: 0.5rem;
  }
  50% {
    bottom: 0.3rem;
  }
  100% {
    bottom: 0.5rem;
  }
}
/* 子页面分隔 */
.gw {
  height: 100px;
  width: 100%;
  background: #fff;
}
.gw.on {
  height: 81px;
}
@media screen and (max-width: 1440px) {
  .gw {
    height: 60px;
  }
  .gw.on {
    height: 61px;
  }
}
.ceshi {
  -webkit-animation-name: fadeInRightSm;
  animation-name: fadeInRightSm;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.font14 {
  font-size: 14px;
}
.font16 {
  font-size: 16px;
}
.font18 {
  font-size: 18px;
}
.font20 {
  font-size: 20px;
}
.font22 {
  font-size: 22px;
}
.font24 {
  font-size: 24px;
}
.font26 {
  font-size: 26px;
}
.font28 {
  font-size: 28px;
}
.font30 {
  font-size: 30px;
}
.font32 {
  font-size: 32px;
}
.font34 {
  font-size: 34px;
}
.font36 {
  font-size: 36px;
}
.font38 {
  font-size: 38px;
}
.font40 {
  font-size: 40px;
}
.font42 {
  font-size: 42px;
}
.font44 {
  font-size: 44px;
}
.font46 {
  font-size: 46px;
}
.font48 {
  font-size: 48px;
}
.font50 {
  font-size: 50px;
}
.font52 {
  font-size: 52px;
}
.font54 {
  font-size: 54px;
}
.font56 {
  font-size: 56px;
}
.font60 {
  font-size: 60px;
}
.font80 {
  font-size: 80px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 26px;
  }
  .font30 {
    font-size: 28px;
  }
  .font32 {
    font-size: 30px;
  }
  .font34 {
    font-size: 32px;
  }
  .font36 {
    font-size: 34px;
  }
  .font38 {
    font-size: 36px;
  }
  .font40 {
    font-size: 38px;
  }
  .font42,
  .font44 {
    font-size: 40px;
  }
  .font46 {
    font-size: 42px;
  }
  .font48 {
    font-size: 44px;
  }
  .font50 {
    font-size: 46px;
  }
  .font52 {
    font-size: 48px;
  }
  .font54 {
    font-size: 50px;
  }
  .font56 {
    font-size: 52px;
  }
  .font60,
  .font80 {
    font-size: 56px;
  }
}
@media (max-width: 1260px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 24px;
  }
  .font30 {
    font-size: 26px;
  }
  .font32 {
    font-size: 28px;
  }
  .font34 {
    font-size: 28px;
  }
  .font36,
  .font38,
  .font40 {
    font-size: 30px;
  }
  .font42,
  .font44 {
    font-size: 32px;
  }
  .font46 {
    font-size: 36px;
  }
  .font48,
  .font50,
  .font52,
  .font54,
  .font56 {
    font-size: 38px;
  }
  .font60,
  .font80 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .font14,
  .font16 {
    font-size: 0.28rem;
  }
  .font18,
  .font20 {
    font-size: 0.3rem;
  }
  .font22,
  .font24,
  .font26,
  .font28 {
    font-size: 0.32rem;
  }
  .font30,
  .font32,
  .font34 {
    font-size: 0.34rem;
  }
  .font36,
  .font38,
  .font40 {
    font-size: 0.4rem;
  }
  .font42,
  .font44,
  .font46 {
    font-size: 0.46rem;
  }
  .font48,
  .font50,
  .font52,
  .font54,
  .font56,
  .font60,
  .font80 {
    font-size: 0.48rem;
  }
}
/*延迟*/
.yanchi1 {
  animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
  /* Safari 和 Chrome */
}
.yanchi2 {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}
.yanchi3 {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}
.yanchi4 {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}
.yanchi5 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}
.yanchi6 {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}
.yanchi7 {
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
}
.yanchi8 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}
.yanchi9 {
  animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
}
.yanchi10 {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
.yanchi11 {
  animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
}
.yanchi12 {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}
.yanchi13 {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}
.yanchi14 {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}
.yanchi15 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}
.yanchi16 {
  animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
}
.yanchi17 {
  animation-delay: 1.7s;
  -webkit-animation-delay: 1.7s;
}
.yanchi18 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}
.yanchi19 {
  animation-delay: 1.9s;
  -webkit-animation-delay: 1.9s;
}
.yanchi20 {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}
/* 缓动效果 */
@-webkit-keyframes slideInUp200 {
  from {
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp200 {
  from {
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp200 {
  -webkit-animation-name: slideInUp200;
  animation-name: slideInUp200;
}
@-webkit-keyframes slideInUp100 {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp100 {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp100 {
  -webkit-animation-name: slideInUp100;
  animation-name: slideInUp100;
}
@-webkit-keyframes slideInUp50 {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp50 {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp50 {
  -webkit-animation-name: slideInUp50;
  animation-name: slideInUp50;
}
@-webkit-keyframes slideInUp40 {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp40 {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp40 {
  -webkit-animation-name: slideInUp40;
  animation-name: slideInUp40;
}
@-webkit-keyframes slideInUp30 {
  from {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp30 {
  from {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp30 {
  -webkit-animation-name: slideInUp30;
  animation-name: slideInUp30;
}
@-webkit-keyframes slideInUp20 {
  from {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp20 {
  from {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp20 {
  -webkit-animation-name: slideInUp20;
  animation-name: slideInUp20;
}
@keyframes fadeInDown20 {
  from {
    opacity: 0;
    transform: translate3d(0%, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown20 {
  animation-name: fadeInDown20;
}
.ptb140 {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ptb120 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.ptb110 {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.ptb90 {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.ptb80 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ptb60 {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .ptb140 {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .ptb120 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .ptb110 {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .ptb100 {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .ptb90 {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .ptb80 {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
}
/* 导航设置 */
/* 默认导航栏颜色 */
/* 默认字体颜色 */
/* 默认svg颜色 */
/* 移入导航栏颜色 */
/* 移入导航栏字体和svg颜色 */
/* 移入文字字体和svg颜色 */
/* 移入文字下划线颜色 */
/* 子页面导航栏颜色 show_nav */
/* 子页面字体颜色 */
/* 子页面svg颜色 */
/* 导航 */
nav {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  background: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* show_nav 子页面导航class */
  /* nav_on 导航不在顶部后移入加上移除去掉的class */
  /* nav_on2 导航不在顶部后固定的class */
  /* 搜索下拉 */
}
@media (max-width: 1260px) {
  nav {
    background: #fff;
  }
}
nav.show_nav {
  background: #fff;
  border-bottom: 1px solid #ddd;
}
nav.show_nav .nav_top {
  background: none;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_top {
    background: #f39800;
  }
}
@media (max-width: 1260px) {
  nav.show_nav .xs {
    display: block;
  }
}
@media (max-width: 1260px) {
  nav.show_nav .yc {
    display: none;
  }
}
nav.show_nav svg path {
  fill: #111 !important;
}
@media (max-width: 1260px) {
  nav.show_nav svg path {
    fill: #111 !important;
  }
}
nav.show_nav .nav_ljbox .nav_l_box .logo .xs {
  display: none;
}
nav.show_nav .nav_ljbox .nav_l_box .logo .yc {
  display: block;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  color: #111 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path {
  fill: #111 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p {
  color: #f39800 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after {
  background: #f39800 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path {
  fill: #f39800 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box {
  /* 语言 */
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn {
  border-color: #fff;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn {
    border-color: #f39800;
  }
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn p {
  color: #fff;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn p {
    color: #f39800;
  }
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #111 !important;
}
nav.nav_on,
nav.nav_on2 {
  background: #fff !important;
}
nav.nav_on svg path,
nav.nav_on2 svg path {
  fill: #111 !important;
}
nav.nav_on .nav_top,
nav.nav_on2 .nav_top {
  background: #f39800;
}
nav.nav_on .nav_ljbox .nav_l_box .logo .xs,
nav.nav_on2 .nav_ljbox .nav_l_box .logo .xs {
  display: none;
}
nav.nav_on .nav_ljbox .nav_l_box .logo .yc,
nav.nav_on2 .nav_ljbox .nav_l_box .logo .yc {
  display: block;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
  color: #111 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  color: #111 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path {
  fill: #f39800 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p {
  color: #f39800 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after {
  background: #f39800 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path {
  fill: #f39800 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box {
  /* 语言 */
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn {
  border-color: #f39800;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl .public-btn p {
  color: #f39800;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #333;
}
@media (max-width: 1260px) {
  nav.nav_on #g-header .c-switch i,
  nav.nav_on2 #g-header .c-switch i {
    background: #333;
  }
}
nav .nav_top {
  transition: all 0.4s;
  background: #f39800;
  height: 40px;
}
nav .nav_top .container {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav .nav_top .container a {
  color: #fff;
  margin-left: 0.4rem;
}
nav .nav_ljbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 100px;
  padding: 0 0.6rem;
  margin: auto;
  /* logo */
  /* 导航右侧 */
}
@media screen and (max-width: 1440px) {
  nav .nav_ljbox {
    height: 60px;
  }
}
@media (max-width: 1260px) {
  nav .nav_ljbox {
    width: 100%;
    padding: 0 5%;
  }
}
nav .nav_ljbox .nav_l_box .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_l_box .logo .xs {
    display: none;
  }
  nav .nav_ljbox .nav_l_box .logo .yc {
    display: block;
  }
}
nav .nav_ljbox .nav_l_box .logo img {
  width: 1.4rem;
  height: auto;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo img {
    width: 2rem;
  }
}
nav .nav_ljbox .nav_l_box .logo p {
  color: #333;
  margin-left: 20px;
  padding-left: 15px;
  border-left: 1px solid #01c390;
  width: 2.2rem;
  line-height: 1;
}
@media (max-width: 1580px) {
  nav .nav_ljbox .nav_l_box .logo p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo p {
    width: auto;
    padding-left: 10px;
    margin-left: 10px;
    font-size: 12px;
  }
}
nav .nav_ljbox .nav_r_box {
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box {
    display: flex;
  }
}
nav .nav_ljbox .nav_r_box .nav_r {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  /* 导航右边内容 */
}
nav .nav_ljbox .nav_r_box .nav_r .navbox {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  transform: translateX(-50%);
  height: 100%;
  pointer-events: none;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul {
  pointer-events: initial;
  display: flex;
  align-items: center;
  height: 100%;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li {
  height: 100%;
  position: relative;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on2 {
  position: initial;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p {
  color: #f39800 !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a > p::after {
  width: calc(100% + 0.56rem);
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a svg path {
  fill: #f39800 !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .xs,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .xs {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .yc,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .yc {
  display: block;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .img1,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .img1 {
  display: none !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .img2,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .img2 {
  display: block !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
  color: #fff;
  padding: 0 0.3rem;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
    margin: 0 0.1rem;
    color: #333;
  }
}
@media (max-width: 991px) {
  nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
    font-size: 12px;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > svg {
  width: 6px;
  height: auto;
  position: absolute;
  right: -11px;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > img {
  width: 8px;
  height: auto;
  margin-left: 10px;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a .img2 {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  left: 50%;
  background: #f39800;
  transform: translateX(-50%);
  transition: all 0.4s;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box {
  height: 100%;
  display: flex;
  align-items: center;
  /* 语言 */
  /* 搜索 */
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl {
  margin: 0 0.43rem 0 0.73rem;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_rr_wl {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan {
  margin-left: 0.6rem;
  height: 100%;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg {
  margin-right: 0.1rem;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box {
  display: flex;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg {
  flex-shrink: 0;
  width: 6px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.05);
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box {
  width: 100%;
  height: 100%;
  padding: 0.05rem 0.2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a {
  margin: 3px 0;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a:hover {
  color: #f39800;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search {
  display: flex;
  align-items: center;
  position: relative;
  /* background: #fff; */
  /* border-radius: 5px; */
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search img,
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search svg {
  width: 0.18rem;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search img path,
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search svg path {
  fill: #fff;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search img path,
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search svg path {
    fill: #111;
  }
}
nav .g_navsearch {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  color: #222222;
  display: none;
}
nav .g_navsearch .container {
  padding: 0.6rem 0 1rem;
  position: relative;
}
@media (max-width: 767px) {
  nav .g_navsearch .container {
    padding-bottom: 0.6rem;
  }
}
nav .g_navsearch .f_close {
  position: absolute;
  right: 0.8rem;
  top: 0.96rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_close {
    right: 0;
    top: 0.3rem;
    width: 16px;
    height: 16px;
  }
}
nav .g_navsearch .f_close img {
  width: 100%;
  float: left;
}
nav .g_navsearch .f_close img:nth-child(2) {
  display: none;
}
nav .g_navsearch .f_close svg {
  width: 100%;
  height: auto;
  max-height: 100%;
}
nav .g_navsearch .f_close svg path {
  fill: #808080;
}
nav .g_navsearch .f_close:hover {
  transform: rotate(90deg);
}
nav .g_navsearch .f_cont {
  max-width: 1000px;
  margin: 0 auto;
}
nav .g_navsearch .f_cont .fz_title {
  margin-bottom: 1.36rem;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .fz_title {
    margin-bottom: 0.6rem;
  }
}
nav .g_navsearch .f_cont .f_form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.2rem;
  margin-bottom: 0.36rem;
  border-bottom: 1px solid rgba(194, 194, 194, 0.15);
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form {
    padding-bottom: 0.3rem;
  }
}
nav .g_navsearch .f_cont .f_form input {
  width: calc(100% - 26px);
  padding-right: 0.26rem;
  padding-left: 10px;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form input {
    width: calc(100% - 0.36rem);
  }
}
nav .g_navsearch .f_cont .f_form input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555555;
}
nav .g_navsearch .f_cont .f_form input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555555;
}
nav .g_navsearch .f_cont .f_form input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555555;
}
nav .g_navsearch .f_cont .f_form .f_sub {
  overflow: hidden;
  width: 26px;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form .f_sub {
    width: 0.36rem;
  }
}
nav .g_navsearch .f_cont .f_form .f_sub img {
  float: left;
  width: 100%;
}
nav .g_navsearch .f_cont .f_form .f_sub svg {
  width: 100%;
}
nav .g_navsearch .f_cont .f_form .f_sub svg path {
  fill: #444444;
}
nav .g_navsearch .f_cont .f_form .f_sub:hover svg path {
  fill: #f39800;
}
nav .g_navsearch .f_cont .f_jut {
  display: flex;
  line-height: 24px;
  align-items: flex-start;
  line-height: 36px;
}
@media (max-width: 1580px) {
  nav .g_navsearch .f_cont .f_jut {
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  nav .g_navsearch .f_cont .f_jut {
    line-height: 26px;
  }
}
nav .g_navsearch .f_cont .f_jut .name {
  fill: 0 0 auto;
  margin-top: 1px;
  display: block;
  padding-right: 0.2rem;
}
nav .g_navsearch .f_cont .f_jut .f_list {
  fill: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
}
nav .g_navsearch .f_cont .f_jut .f_list .li {
  margin-bottom: 10px;
  color: #555555;
  background-color: #f1f1f1;
  border-radius: 18px;
  display: block;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  padding: 0 0.22rem;
  margin-right: 0.16rem;
}
@media (max-width: 1580px) {
  nav .g_navsearch .f_cont .f_jut .f_list .li {
    border-radius: 16px;
  }
}
@media (max-width: 991px) {
  nav .g_navsearch .f_cont .f_jut .f_list .li {
    border-radius: 13px;
  }
}
nav .g_navsearch .f_cont .f_jut .f_list .li:hover {
  color: #ffffff;
  background-color: #f39800;
}
/* 导航各种效果 */
.nav1_none {
  top: -100px !important;
}
.nav2_none {
  top: 100px !important;
}
@media (max-width: 1440px) {
  .nav1_none {
    top: -60px !important;
  }
  .nav2_none {
    top: 60px !important;
  }
}
/* 下拉导航 */
.pro_nav2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: #f8f8f8;
  border-radius: 0 0 0.2rem 0.2rem;
  box-shadow: 0 6px 29px rgba(211, 211, 211, 0.08);
  padding: 10px 0;
  display: none;
  width: auto;
  white-space: nowrap;
}
.pro_nav2 > a {
  min-height: 0.6rem;
  padding: 0.07rem 0.2rem 0.07rem 0.3rem;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  margin: 5px 10px;
  border-radius: 0.15rem;
  -webkit-transition: all 0.6s;
}
.pro_nav2 > a:hover {
  background: #fff;
}
.pro_nav3 {
  display: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: calc(100% + 1px);
  left: 0;
  background: #fff;
}
.pro_nav3 .pro_nav3_nr {
  display: flex;
  /* align-items: flex-start; */
  justify-content: space-between;
}
.pro_nav3 .pro_nav3_nr .gl {
  width: 50%;
  background: #fff;
  display: flex;
  align-items: flex-start;
  padding-top: 0.75rem;
  padding-left: calc((100% - 1600px)/2);
}
@media (max-width: 1580px) {
  .pro_nav3 .pro_nav3_nr .gl {
    padding-left: 8%;
  }
}
@media (max-width: 1260px) {
  .pro_nav3 .pro_nav3_nr .gl {
    padding-left: 5%;
  }
}
@media (max-width: 767px) {
  .pro_nav3 .pro_nav3_nr .gl {
    padding: 0 5%;
  }
}
.pro_nav3 .pro_nav3_nr .gl .left {
  width: calc(136/800*100%);
}
.pro_nav3 .pro_nav3_nr .gl .left h3 {
  color: #f39800;
}
.pro_nav3 .pro_nav3_nr .gl .right {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0.95rem;
  width: calc(664/800*100%);
}
.pro_nav3 .pro_nav3_nr .gl .right::after {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 0.3rem);
  background: #ddd;
  left: 0;
  top: 0;
}
.pro_nav3 .pro_nav3_nr .gl .right::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0.28rem;
  background: #f39800;
  left: 0;
  top: 0;
  z-index: 10;
}
.pro_nav3 .pro_nav3_nr .gl .right a {
  transition: all 0.4s;
  min-width: 1.55rem;
  padding-right: 0.2rem;
  color: #666;
  margin-bottom: 0.3rem;
  width: 100%;
}
.pro_nav3 .pro_nav3_nr .gl .right a:hover {
  color: #f39800;
}
.pro_nav3 .pro_nav3_nr .gr {
  width: 50%;
  background: #F9F9F9;
  padding: 0.75rem 0 0.75rem 1.4rem;
  position: relative;
  padding-right: calc((100% - 1600px)/2);
}
@media (max-width: 1580px) {
  .pro_nav3 .pro_nav3_nr .gr {
    padding-right: 8%;
  }
}
@media (max-width: 1260px) {
  .pro_nav3 .pro_nav3_nr .gr {
    padding-right: 5%;
  }
}
@media (max-width: 767px) {
  .pro_nav3 .pro_nav3_nr .gr {
    padding: 0 5%;
  }
}
.pro_nav3 .pro_nav3_nr .gr .g_del {
  cursor: pointer;
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  width: 14px;
  height: auto;
}
.pro_nav3 .pro_nav3_nr .gr .g_del svg,
.pro_nav3 .pro_nav3_nr .gr .g_del img {
  width: 100%;
  height: auto;
}
.pro_nav3 .pro_nav3_nr .gr .g_del svg path,
.pro_nav3 .pro_nav3_nr .gr .g_del img path {
  fill: #000;
}
.pro_nav3 .pro_nav3_nr .gr .txt h3 {
  margin-bottom: 0.18rem;
}
.pro_nav3 .pro_nav3_nr .gr .txt p {
  color: #666;
  line-height: 1.7;
}
.pro_nav3 .pro_nav3_nr .gr .pub_btn {
  margin-top: 0.4rem;
}
.pro_nav3 .pro_nav3_nr .gr .pub_btn svg,
.pro_nav3 .pro_nav3_nr .gr .pub_btn img {
  width: 100%;
  height: auto;
}
.pro_nav3 .pro_nav3_nr .gr .pub_btn svg path,
.pro_nav3 .pro_nav3_nr .gr .pub_btn img path {
  fill: #fff !important;
}
.pro_nav3 .pro_nav3_nr .gr .b_ln {
  margin-top: 0.78rem;
}
.pro_nav3 .pro_nav3_nr .gr .b_ln span {
  color: #f39800;
}
.pro_nav3 .pro_nav3_nr .gr .b_ln p {
  margin-top: 0.05rem;
  white-space: nowrap;
}
/* 移动端导航 */
#g-header {
  display: none;
}
@media (max-width: 1260px) {
  #g-header {
    display: flex;
    width: 50px;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    margin-right: -1rem;
    padding-right: 1rem;
    box-sizing: content-box;
  }
}
#g-header .c-nav2 {
  position: absolute;
  right: -100%;
  left: auto;
  width: 100%;
  top: 100px;
  height: calc(var(--vh) - 100px);
  font-size: 14px;
  line-height: 50px;
  background: #F1F1F1;
  overflow-y: auto;
  transition: all 0.8s;
  text-align: left;
}
@media (max-width: 1260px) {
  #g-header .c-nav2 {
    height: calc(var(--vh) - 60px);
    top: 60px;
  }
}
#g-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#g-header .c-nav2 li {
  padding: 0 0.5rem;
  border-top: 1px solid #fff;
}
#g-header .c-nav2 li.on img,
#g-header .c-nav2 li.on svg {
  transform: rotate(0deg) !important;
}
@media (max-width: 767px) {
  #g-header .c-nav2 li {
    padding: 0 0.5rem;
  }
}
#g-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#g-header .c-nav2 li .c-title-box img,
#g-header .c-nav2 li .c-title-box svg {
  transform: rotate(-90deg);
  width: 0.3rem;
  height: auto;
  transition: all 0.3s;
  margin: 0 0 0 10px;
  float: right;
  display: block;
}
@media (max-width: 1260px) {
  #g-header .c-nav2 li .c-title-box img,
  #g-header .c-nav2 li .c-title-box svg {
    width: 12px;
    height: auto;
  }
}
@media (max-width: 767px) {
  #g-header .c-nav2 li .c-title-box img,
  #g-header .c-nav2 li .c-title-box svg {
    width: 9px;
  }
}
#g-header .c-nav2 li .c-title-box img path,
#g-header .c-nav2 li .c-title-box svg path {
  fill: #333;
}
#g-header .c-nav2 li a {
  color: #333;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: block;
}
#g-header .c-nav2 li a i {
  font-size: 20px;
}
#g-header .c-nav2 li a:hover,
#g-header .c-nav2 li.on > a {
  color: #f39800;
}
#g-header .c-nav2 li ul {
  display: none;
}
#g-header .c-switch {
  position: relative;
  width: 24px;
  height: 22px;
  cursor: pointer;
}
@media (max-width: 991px) {
  #g-header .c-switch {
    display: block;
  }
}
#g-header .c-switch i {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 1260px) {
  #g-header .c-switch i {
    background: #333;
  }
}
#g-header .c-switch i:nth-child(1) {
  top: 0;
}
#g-header .c-switch i:nth-child(2) {
  width: 18px;
  top: 50%;
}
#g-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#g-header .c-switch i .c-title-box img {
  width: 10px;
  height: auto;
  margin: 0 0 0 10px;
  float: right;
  display: block;
}
.c-title-con {
  display: none;
}
.c-open #g-header .c-nav2 {
  right: 0;
}
.c-open #g-header .c-nav2 .c-title-con {
  overflow: hidden;
  height: auto;
  display: none;
  padding-bottom: 0.25rem;
}
.c-open #g-header .c-nav2 .c-title-con > a {
  color: #999 !important;
  display: block;
  padding: 0.15rem 0 0.15rem 20px;
  line-height: 1.5;
}
.c-open #g-header .c-switch i:nth-child(2) {
  opacity: 0;
}
.c-open #g-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-open #g-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* banner */
@media (max-width: 1260px) {
  .h_banner .h_banner_swi {
    height: 100%;
  }
}
.h_banner .swiper-slide {
  overflow: hidden;
}
.h_banner .h_b_box {
  position: relative;
  width: 100%;
  height: var(--vh);
}
@media (max-width: 1260px) {
  .h_banner .h_b_box {
    height: calc(var(--vh) - 60px);
  }
}
@media (max-width: 767px) {
  .h_banner .h_b_box {
    height: 10rem;
  }
}
.h_banner .h_b_box .h_b_txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.h_banner .h_b_box .h_b_txt .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0.6rem;
}
.h_banner .h_b_box .h_b_txt .container .txt_t .p1 {
  visibility: hidden;
  color: #fff;
  line-height: 1.2;
  font-weight: bold;
}
.h_banner .h_b_box .h_b_txt .container .txt_t .p2 {
  visibility: hidden;
  margin-top: 0.15rem;
  color: #fff;
}
.h_banner .h_b_box .h_b_txt .container .public-btn {
  visibility: hidden;
  margin-top: 0.56rem;
}
.h_banner .home_pag {
  bottom: 0.66rem;
}
.h_banner .home_pag .swiper-pagination-bullet {
  min-width: 1.8rem;
  height: auto;
  color: #fff;
  background: none;
  border-radius: 0;
  opacity: 1;
  padding-top: 0.16rem;
  position: relative;
  margin: 0 0.1rem;
}
.h_banner .home_pag .swiper-pagination-bullet span {
  opacity: 0.64;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet span {
    font-size: 0.24rem;
  }
}
.h_banner .home_pag .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet::after {
    height: 1px;
  }
}
.h_banner .home_pag .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  width: 0;
  transition: all 0s;
  height: 3px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet::before {
    height: 1px;
  }
}
.h_banner .home_pag .swiper-pagination-bullet-active span {
  opacity: 1;
}
.h_banner .home_pag .swiper-pagination-bullet-active::before {
  width: 100%;
  transition: all 5.8s;
}
.h_b_img {
  width: 100%;
  height: 100%;
  position: relative;
}
.h_b_img > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.h_b_img .img1 {
  z-index: 1;
}
@media (max-width: 767px) {
  .h_b_img .img1 {
    z-index: 1;
    display: none;
  }
}
.h_b_img .img2 {
  z-index: 2;
  display: none;
}
@media (max-width: 767px) {
  .h_b_img .img2 {
    z-index: 2;
    display: block;
  }
}
.h_b_img > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
/* 底部导航 */
.foot_nav {
  margin-right: 0.7rem;
}
.foot_nav a {
  transition: all 0.4s;
}
.foot_nav a:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .foot_nav {
    margin: 0 ;
  }
}
.foot_nav:last-child {
  margin-right: 0;
}
.foot_nav .a_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.24rem;
}
.foot_nav .a_tit.on svg,
.foot_nav .a_tit.on img {
  transform: rotate(90deg);
}
.foot_nav .a_tit a {
  text-transform: uppercase;
  color: #fff;
}
.foot_nav .a_tit svg,
.foot_nav .a_tit img {
  transition: all 0.4s;
  width: 5px;
  height: auto;
  display: none;
}
@media (max-width: 767px) {
  .foot_nav .a_tit svg,
  .foot_nav .a_tit img {
    display: block;
  }
}
.foot_nav .a_tit svg path,
.foot_nav .a_tit img path {
  fill: #fff;
}
@media (max-width: 767px) {
  .foot_nav ul {
    display: none;
    padding-bottom: 0.2rem;
  }
}
.foot_nav ul li {
  margin-bottom: 0.08rem;
}
@media (max-width: 1260px) {
  .foot_nav ul li {
    max-width: 2.8rem;
  }
}
.foot_nav ul li a {
  color: #999;
}
/* 免责声明 */
.g-pri {
  padding: 1.1rem 0 3rem;
}
.g-pri .box .tit {
  margin-bottom: 0.35rem;
  text-align: center;
}
.g-pri .box .tit h2 {
  font-weight: bold;
  margin-bottom: 0.35rem;
}
.g-pri .box .tit .g-p {
  display: flex;
  justify-content: center;
}
.g-pri .box .tit .g-p p {
  color: #999;
  margin: 0 0.18rem;
}
.g-pri .box .public-content h3 {
  font-size: 24px;
}
.g-pri .box .public-content .p1 {
  display: block;
  position: relative;
  padding-left: 20px;
}
.g-pri .box .public-content .p1:after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 12px;
}
@media (max-width: 1580px) {
  .g-pri .box .public-content .p1:after {
    top: 14px;
  }
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box {
  display: flex;
}
@media (max-width: 767px) {
  .g-pri .box .public-content .g-pritxt .g-pritxt-box {
    flex-direction: column;
  }
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box span {
  flex-shrink: 0;
  color: #222;
  display: block;
  position: relative;
  padding-left: 20px;
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box span:after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 12px;
}
@media (max-width: 1580px) {
  .g-pri .box .public-content .g-pritxt .g-pritxt-box span:after {
    top: 14px;
  }
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box ul {
  padding: 0;
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box ul li {
  list-style: none;
}
.pub_title {
  text-align: center;
}
.pub_title h2 {
  font-weight: bold;
  color: #1e304a;
  line-height: 1.2;
}
.pub_title p {
  color: #999;
}
.pub_title2 {
  text-align: center;
}
.pub_title2 p {
  margin-bottom: 0.1rem;
  color: #f39800;
  text-transform: uppercase;
}
@media (max-width: 1260px) {
  .pub_title2 p br {
    display: none;
  }
}
.pub_title2 h2,
.pub_title2 h1,
.pub_title2 h3 {
  color: #f39800;
  line-height: 1.2;
}
@media (max-width: 1260px) {
  .pub_title2 h2 br,
  .pub_title2 h1 br,
  .pub_title2 h3 br {
    display: none;
  }
}
.pub_title2.pub_title2_2 {
  text-align: left;
}
.pub_title2.pub_title2_2 p {
  margin-bottom: 0.15rem;
}
.pub_btn {
  min-width: 1.16rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 0.44rem;
  padding: 0 0.1rem 0 0.3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .pub_btn {
    height: 0.66rem;
  }
}
@media (max-width: 767px) {
  .pub_btn {
    height: 0.8rem;
  }
}
.pub_btn:hover {
  border: 1px solid #f39800;
  background: #f39800;
}
.pub_btn:hover i svg path {
  fill: #fff;
}
.pub_btn:hover p {
  color: #fff;
}
.pub_btn p {
  color: #fff;
  position: relative;
  z-index: 5;
  transition: all 0.4s;
  font-size: 14px;
}
@media (max-width: 1260px) {
  .pub_btn p {
    font-size: 12px;
  }
}
.pub_btn i {
  margin-left: 0.3rem;
  width: 14px;
  height: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 1580px) {
  .pub_btn i {
    width: 12px;
  }
}
.pub_btn i svg {
  width: 100%;
  height: auto;
}
.pub_btn i svg path {
  transition: all 0.4s;
  fill: #fff;
}
.pub_btn2 {
  border-color: #f39800;
}
.pub_btn2 p {
  color: #f39800;
}
.pub_btn2 i svg path {
  fill: #f39800;
}
.pub_btn3 {
  border-color: #fff;
}
.pub_btn3 p {
  color: #fff;
}
.pub_btn3 i svg path {
  fill: #fff;
}
.pub_btn4 {
  border: none;
  background: #fff;
}
.pub_btn4:hover {
  border: none;
  background: #fff;
}
.pub_btn4:hover i svg path {
  fill: #f39800;
}
.pub_btn4:hover p {
  color: #f39800;
}
.pub_btn4 p {
  color: #333;
}
.pub_btn4 i svg path {
  fill: #333;
}
.pub_btn5 {
  border-color: #333;
}
.pub_btn5 p {
  color: #333;
}
.pub_btn5 i svg path {
  fill: #333;
}
.pub_btn6 {
  background: #f39800;
  border-color: #f39800;
}
.pub_btn6 p {
  color: #fff;
}
.pub_btn6 i svg path {
  fill: #fff;
}
/* 二级 */
/* .nav_two_tit{display: flex;align-items: center;justify-content: space-between;}
.nav_two_tit>a{color: #666 !important;display: block;padding-left: 20px;line-height: 40px;}
.nav_two_tit svg{width: 8px;height: auto;}
.nav_two_tit svg path{fill: #666;}
.nav_three{display: none;}
.nav_three>a{color: #999 !important;display: block;padding-left: 30px;line-height: 36px;} */
/* 开始 */
.home_title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home_title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.home_title .gl h2 {
  text-transform: uppercase;
  color: #f39800;
}
.home_title .gl p {
  margin-top: 0.24rem;
  line-height: 1.2;
  color: #111;
}
.home_title .gr {
  flex-shrink: 0;
  margin-left: 0.3rem;
  display: flex;
  justify-content: flex-end;
  /* padding-bottom: 7px; */
}
@media (max-width: 767px) {
  .home_title .gr {
    margin-left: 0;
    margin-top: 0.4rem;
  }
}
.hon {
  padding: 1.35rem 0 1.8rem;
}
.hon .home_title .gl p {
  color: #111;
}
.hon .box {
  padding-right: 0.4rem;
  position: relative;
  margin-top: 0.72rem;
}
.hon .box .bj_i .i1 {
  border: 1px solid #dddddd;
  left: 0.5rem;
  top: -0.4rem;
  position: absolute;
  width: calc(100% - 0.5rem);
  height: 100%;
}
.hon .box .bj_i .i2 {
  z-index: 5;
  background: #f39800;
  right: 0;
  bottom: -0.4rem;
  position: absolute;
  width: calc(100% - 3rem);
  height: 1.35rem;
}
@media (max-width: 1900px) {
  .hon .box .bj_i .i2 {
    height: 1.45rem;
  }
}
@media (max-width: 1580px) {
  .hon .box .bj_i .i2 {
    height: 1.8rem;
    width: calc(100% - 2rem);
  }
}
.hon .box .bbox {
  position: relative;
  z-index: 10;
}
.hon .box .bbox .thumbs_box {
  position: relative;
}
.hon .box .bbox .thumbs_box::before {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 0.96rem;
  height: 0.96rem;
  background-color: #f39800;
  /* 切割后的颜色 */
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  /* 斜对角剪切 */
  z-index: 10;
}
@media (max-width: 1900px) {
  .hon .box .bbox .thumbs_box::before {
    width: 1.06rem;
    height: 1.06rem;
  }
}
@media (max-width: 1580px) {
  .hon .box .bbox .thumbs_box::before {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.hon .box .bbox .thumbs_box .imgbj {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  pointer-events: none;
  width: 4.44rem;
  height: auto;
}
@media (max-width: 767px) {
  .hon .box .bbox .thumbs_box .imgbj {
    width: 2rem;
  }
}
.hon .box .bbox .thumbs_box .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hon .box .bbox .thumbs_box .hon_box {
  position: relative;
}
@media (max-width: 767px) {
  .hon .box .bbox .thumbs_box .hon_box .public-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.hon .box .bbox .thumbs_box .hon_box .public-img:before {
  padding-top: 44.87179487%;
}
.hon .box .bbox .thumbs_box .hon_box .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: #fff;
  z-index: 10;
  padding: 0.88rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 991px) {
  .hon .box .bbox .thumbs_box .hon_box .txt {
    padding: 0.3rem 0.3rem 0;
  }
}
@media (max-width: 767px) {
  .hon .box .bbox .thumbs_box .hon_box .txt {
    position: relative;
    height: 5rem;
  }
}
.hon .box .bbox .thumbs_box .hon_box .txt .txt_box {
  text-align: center;
}
.hon .box .bbox .thumbs_box .hon_box .txt .txt_box p {
  margin-top: 0.2rem;
  /* text-transform: uppercase; */
}
@media (max-width: 991px) {
  .hon .box .bbox .thumbs_box .hon_box .txt .txt_box p {
    display: none;
  }
}
.hon .box .bbox .thumbs_box .hon_box .txt .txt_box h3 {
  margin-top: 0.14rem;
  line-height: 1.2;
}
.hon .box .bbox .thumbs_box .hon_box .txt .pub_btn {
  margin-top: 0.35rem;
}
.hon .box .bbox .thumbs_box .g_qie .pub_nav:hover {
  border-color: #f39800;
  background: none;
}
.hon .box .bbox .thumbs_box .g_qie .pub_nav:hover svg path,
.hon .box .bbox .thumbs_box .g_qie .pub_nav:hover img path {
  fill: #f39800;
}
.hon .box .bbox .thumbs_box .g_qie .pub_prev {
  left: 0.55rem;
}
.hon .box .bbox .thumbs_box .g_qie .pub_next {
  right: 0.55rem;
}
.hon .box .bbox .gallery_box {
  color: #fff;
  width: 100%;
  padding: 0 1.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .hon .box .bbox .gallery_box {
    padding: 0 0.4rem;
  }
}
.hon .box .bbox .gallery_box .line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  bottom: calc(0.26rem + 1.5em + 0.06rem + 4px);
  z-index: 5;
}
@media (max-width: 1900px) {
  .hon .box .bbox .gallery_box .line {
    font-size: 12px;
    bottom: calc(0.12rem + 4.5em + 0.06rem + 4px);
  }
}
@media (max-width: 1580px) {
  .hon .box .bbox .gallery_box .line {
    font-size: 10px;
    bottom: calc(0.26rem + 4.5em + 0.06rem + 4px);
  }
}
.hon .box .bbox .gallery_box .gallery_con {
  position: relative;
  z-index: 10;
}
.hon .box .bbox .gallery_box .gallery_con .gallery_nr {
  cursor: pointer;
  padding-bottom: 0.12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hon .box .bbox .gallery_box .gallery_con .gallery_nr i {
  margin-bottom: 0.18rem;
  flex-shrink: 0;
  display: flex;
  width: 0.36rem;
  height: auto;
}
@media (max-width: 767px) {
  .hon .box .bbox .gallery_box .gallery_con .gallery_nr i {
    width: 0.56rem;
  }
}
.hon .box .bbox .gallery_box .gallery_con .gallery_nr i svg,
.hon .box .bbox .gallery_box .gallery_con .gallery_nr i img {
  width: 100%;
  height: auto;
}
.hon .box .bbox .gallery_box .gallery_con .gallery_nr i svg path,
.hon .box .bbox .gallery_box .gallery_con .gallery_nr i img path {
  fill: #80aad5;
  transition: all 0.4s;
}
.hon .box .bbox .gallery_box .gallery_con .gallery_nr .blo {
  width: 8px;
  height: 8px;
  background: #81a9d2;
  margin-bottom: 0.06rem;
  transition: all 0.4s;
}
.hon .box .bbox .gallery_box .gallery_con .gallery_nr h3 {
  text-align: center;
  color: #80aad3;
  transition: all 0.4s;
  font-size: 12px;
  padding: 0 0.1rem;
}
@media (max-width: 1580px) {
  .hon .box .bbox .gallery_box .gallery_con .gallery_nr h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: 4.5em;
  }
}
.hon .box .bbox .gallery_box .gallery_con .swiper-slide-thumb-active .gallery_nr i svg path,
.hon .box .bbox .gallery_box .gallery_con .swiper-slide-thumb-active .gallery_nr i img path {
  fill: #f39800;
}
.hon .box .bbox .gallery_box .gallery_con .swiper-slide-thumb-active .gallery_nr .blo {
  background: #f39800;
}
.hon .box .bbox .gallery_box .gallery_con .swiper-slide-thumb-active .gallery_nr h3 {
  color: #f39800;
}
.hon .sm_p {
  display: none;
  margin-top: 0.9rem;
}
@media (max-width: 991px) {
  .hon .sm_p {
    display: block;
  }
}
.hon .sm_p p {
  display: none;
}
.hon .sm_p p.on {
  display: block;
}
.htw {
  position: relative;
}
.htw .imgbj {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.htw .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.htw .container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  padding: 1.42rem 0 1.48rem 0;
}
@media (max-width: 1260px) {
  .htw .container {
    padding: 1.42rem 0.6rem 1.48rem 0;
  }
}
@media (max-width: 767px) {
  .htw .container {
    padding: 1.2rem 0;
  }
}
.htw .container .box {
  max-width: 9rem;
  text-align: center;
  color: #fff;
}
.htw .container .box .txt {
  margin-bottom: 0.58rem;
}
.htw .container .box .txt h2 {
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.htw .container .box .txt p {
  opacity: 0.8;
}
.hth {
  padding: 1.38rem 0 1.4rem;
}
.hth .box {
  margin-top: 0.72rem;
  overflow: hidden;
}
.hth .box .swiper {
  overflow: initial;
}
.hth .box .swiper .hth_box {
  display: block;
  background: url(../images/home14.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
.hth .box .swiper .hth_box:hover .imgbj {
  opacity: 1;
}
.hth .box .swiper .hth_box:hover .hth_con .txt .txt_box .g_p p {
  color: #826739;
}
.hth .box .swiper .hth_box:hover .hth_con .txt .g_a {
  border-color: #d8972c;
}
.hth .box .swiper .hth_box:hover .hth_con .txt .g_a p {
  color: #111;
}
.hth .box .swiper .hth_box .imgbj {
  transition: all 0.4s;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hth .box .swiper .hth_box .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hth .box .swiper .hth_box .hth_con {
  position: relative;
  z-index: 10;
  padding: 0.6rem 0.3rem 0.27rem;
}
.hth .box .swiper .hth_box .hth_con .img {
  text-align: center;
  height: 2.35rem;
}
@media (max-width: 767px) {
  .hth .box .swiper .hth_box .hth_con .img {
    height: 4rem;
  }
}
.hth .box .swiper .hth_box .hth_con .img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hth .box .swiper .hth_box .hth_con .txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.hth .box .swiper .hth_box .hth_con .txt .txt_box {
  width: 100%;
  /* word-break: break-all; */
}
.hth .box .swiper .hth_box .hth_con .txt .txt_box h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.5em;
}
.hth .box .swiper .hth_box .hth_con .txt .g_p {
  margin-top: 0.1rem;
  display: none;
}
.hth .box .swiper .hth_box .hth_con .txt .g_p p {
  transition: all 0.4s;
  line-height: 1.71;
  color: #999;
}
.hth .box .swiper .hth_box .hth_con .txt .g_a {
  transition: all 0.4s;
  width: 100%;
  padding-bottom: 0.08rem;
  border-bottom: 1px solid #dddddd;
  margin-top: 0.32rem;
  display: flex;
  justify-content: space-between;
}
.hth .box .swiper .hth_box .hth_con .txt .g_a p {
  transition: all 0.4s;
  color: #f39800;
}
.hth .box .swiper .hth_box .hth_con .txt .g_a i {
  width: 12px;
  height: auto;
  display: flex;
  align-items: center;
}
.hth .box .swiper .hth_box .hth_con .txt .g_a i svg {
  width: 100%;
  height: auto;
}
.hth .box .swiper .hth_box .hth_con .txt .g_a i svg path {
  fill: #111;
}
.hfo {
  position: relative;
}
.hfo .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hfo .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hfo .box {
  position: relative;
  z-index: 10;
  color: #fff;
  padding: 1.65rem 0 0;
}
.hfo .box .box_t {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .hfo .box .box_t {
    flex-direction: column;
  }
}
.hfo .box .box_t .gl {
  width: 100%;
  margin-top: -0.5rem;
}
.hfo .box .box_t .gl h2 {
  color: #f39800;
  /* text-align: center; */
}
.hfo .box .box_t .gl p {
  text-align: center;
  margin-top: 0.24rem;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .hfo .box .box_t .gl p br {
    display: none;
  }
}
.hfo .box .box_t .gr {
  width: 100%;
  flex-shrink: 0;
  margin-top: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .hfo .box .box_t .gr {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hfo .box .box_t .gr {
    width: 100%;
    margin-top: 0.4rem;
    margin-left: 0;
    flex-direction: column;
  }
}
.hfo .box .box_t .gr .g_p {
  /* text-align: center; */
  width: 50%;
  margin-right: 1.6rem;
}
@media (max-width: 767px) {
  .hfo .box .box_t .gr .g_p {
    margin-right: 0;
    width: 100%;
  }
}
.hfo .box .box_t .gr .g_p p {
  margin-bottom: 0.12rem;
  opacity: 0.8;
  line-height: 1.71;
}
.hfo .box .box_t .gr .pub_btn {
  /* margin-top: 0.5rem; */
}
@media (max-width: 767px) {
  .hfo .box .box_t .gr .pub_btn {
    margin-top: 0.3rem;
  }
}
.hfo .box .box_b {
  height: 2rem;
  margin-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .hfo .box .box_b {
    height: auto;
  }
}
.hfo .box .box_b .box_b_con {
  display: flex;
  height: 100%;
}
@media (max-width: 991px) {
  .hfo .box .box_b .box_b_con {
    flex-wrap: wrap;
  }
}
.hfo .box .box_b .box_b_con .item {
  position: relative;
  width: calc(100%/4);
  display: flex;
  justify-content: space-between;
  height: 100%;
  padding: 0.3rem 0.6rem 0.26rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  .hfo .box .box_b .box_b_con .item {
    padding: 0.3rem 0.2rem 0.26rem;
    width: 50%;
    border: none;
  }
}
.hfo .box .box_b .box_b_con .item:last-child {
  border: none;
}
.hfo .box .box_b .box_b_con .item:hover .imgbj {
  opacity: 1;
}
.hfo .box .box_b .box_b_con .item:hover .gl i {
  opacity: 1;
}
.hfo .box .box_b .box_b_con .item .imgbj {
  opacity: 0;
  transition: all 0.4s;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hfo .box .box_b .box_b_con .item .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hfo .box .box_b .box_b_con .item .g_box {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hfo .box .box_b .box_b_con .item .g_box {
    flex-direction: column;
  }
}
.hfo .box .box_b .box_b_con .item .gl i {
  transition: all 0.4s;
  opacity: 0.4;
  flex-shrink: 0;
  display: flex;
  width: 0.44rem;
  height: auto;
}
@media (max-width: 767px) {
  .hfo .box .box_b .box_b_con .item .gl i {
    width: 0.56rem;
  }
}
.hfo .box .box_b .box_b_con .item .gl i svg,
.hfo .box .box_b .box_b_con .item .gl i img {
  width: 100%;
  height: auto;
}
.hfo .box .box_b .box_b_con .item .gl i svg path,
.hfo .box .box_b .box_b_con .item .gl i img path {
  fill: #fff;
}
.hfo .box .box_b .box_b_con .item .gr {
  align-self: flex-end;
}
@media (max-width: 767px) {
  .hfo .box .box_b .box_b_con .item .gr {
    margin-top: 0.4rem;
    align-self: flex-start;
  }
}
.hfo .box .box_b .box_b_con .item .gr .item_t {
  align-items: flex-end;
  display: flex;
}
.hfo .box .box_b .box_b_con .item .gr .item_t p {
  line-height: 0.8;
  font-size: 0.8rem;
}
@media (max-width: 767px) {
  .hfo .box .box_b .box_b_con .item .gr .item_t p {
    font-size: 0.6rem;
  }
}
.hfo .box .box_b .box_b_con .item .gr .item_t span {
  margin-left: 0.07rem;
  margin-top: 0.05rem;
  line-height: 1;
}
.hfo .box .box_b .box_b_con .item .gr .item_b {
  margin-top: 0.14rem;
}
.hfo .box .box_b .box_b_con .item .gr .item_b p {
  opacity: 0.3;
}
.hfi {
  padding: 1.35rem 0 0.1rem;
}
.hfi .box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 0.74rem;
}
@media (max-width: 991px) {
  .hfi .box {
    flex-direction: column;
  }
}
.hfi .box .gl {
  position: relative;
  width: 33.125%;
}
@media (max-width: 991px) {
  .hfi .box .gl {
    width: 100%;
  }
}
.hfi .box .gl:hover .txt::after {
  opacity: 1;
}
.hfi .box .gl .public-img:before {
  padding-top: 118.86792453%;
}
.hfi .box .gl::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 0.85rem;
  height: 0.85rem;
  background-color: #fff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 10;
}
@media (max-width: 1900px) {
  .hfi .box .gl::after {
    width: 0.96rem;
    height: 0.96rem;
  }
}
@media (max-width: 1580px) {
  .hfi .box .gl::after {
    width: 1.11rem;
    height: 1.11rem;
  }
}
.hfi .box .gl .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  color: #fff;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.hfi .box .gl .txt::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3.3rem;
  background: url(../images/gbj.png) no-repeat;
  background-size: 100% 100%;
  background-position: bottom center;
  bottom: 0;
  left: 0;
  transition: all 0.4s;
  opacity: 0;
}
.hfi .box .gl .txt .txt_box {
  position: relative;
  z-index: 10;
  margin-bottom: 0.54rem;
}
.hfi .box .gl .txt .txt_box h3 {
  margin-top: 0.13rem;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 2.7em;
}
.hfi .box .gl .txt .pub_btn {
  position: relative;
  z-index: 10;
}
.hfi .box .gr {
  width: 61.625%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .hfi .box .gr {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media (max-width: 767px) {
  .hfi .box .gr {
    flex-direction: column;
  }
}
.hfi .box .gr .item {
  margin-bottom: 0.15rem;
  border-bottom: 1px solid #dddddd;
  width: 100%;
  padding: 0rem 0 0.2rem;
}
@media (max-width: 1580px) {
  .hfi .box .gr .item {
    margin-bottom: 0.08rem;
    padding: 0rem 0 0.12rem;
  }
}
.hfi .box .gr .item:last-child {
  border: none;
}
@media (max-width: 767px) {
  .hfi .box .gr .item:nth-last-child(2) {
    /* border-bottom: 1px solid #dddddd; */
  }
}
@media (max-width: 767px) {
  .hfi .box .gr .item {
    width: 100%;
  }
}
.hfi .box .gr .item .txt {
  margin-bottom: 0.15rem;
}
.hfi .box .gr .item .txt span {
  color: #f39800;
}
.hfi .box .gr .item .txt h3 {
  margin-top: 0.13rem;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  /* height: 2.7em; */
}
.hsi {
  padding: 0.7rem 0 1.4rem;
}
.hsi .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .hsi .box {
    flex-direction: column;
  }
}
.hsi .box .item {
  position: relative;
  width: calc(50% - 4px);
}
@media (max-width: 991px) {
  .hsi .box .item {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.hsi .box .item:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .hsi .box .item .public-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.hsi .box .item .public-img:before {
  padding-top: 40.20100503%;
}
.hsi .box .item .public-img .img1 {
  opacity: 0;
}
.hsi .box .item .public-img .img2 {
  opacity: 1;
}
.hsi .box .item .txt {
  padding: 0.56rem 0.4rem 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .hsi .box .item .txt {
    position: relative;
  }
}
.hsi .box .item .txt .txt_box h3 {
  transition: all 0.4s;
  margin-bottom: 0.22rem;
  line-height: 1.2;
  color: #111;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hsi .box .item .txt .txt_box p {
  transition: all 0.4s;
  color: #777;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  height: 6em;
}
.hsi .box .item .txt .g_a {
  transition: all 0.4s;
  width: 100%;
  padding-bottom: 0.08rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 0.32rem;
  display: flex;
  justify-content: space-between;
}
.hsi .box .item .txt .g_a p {
  transition: all 0.4s;
  opacity: 0.6;
  color: #111;
}
.hsi .box .item .txt .g_a i {
  width: 12px;
  height: auto;
  display: flex;
  align-items: center;
}
.hsi .box .item .txt .g_a i svg {
  width: 100%;
  height: auto;
}
.hsi .box .item .txt .g_a i svg path {
  opacity: 0.6;
  fill: #111;
  transition: all 0.4s;
}
.hsi .box .item .public-img .img1 {
  opacity: 1;
}
.hsi .box .item .public-img .img2 {
  opacity: 0;
}
.hsi .box .item .txt .txt_box h3 {
  color: #fff;
}
.hsi .box .item .txt .txt_box p {
  color: #fff;
}
.hsi .box .item .txt .g_a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.hsi .box .item .txt .g_a p {
  opacity: 1;
  color: #f39800;
}
.hsi .box .item .txt .g_a i svg path {
  opacity: 1;
  fill: #f39800;
}
/* 底部 */
footer {
  overflow: hidden;
  background: url(../images/foot.jpg) no-repeat;
  background-size: cover;
  color: #fff;
}
footer .foot_t {
  border-bottom: 1px solid #23282d;
  padding: 1rem 0 0.46rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  footer .foot_t {
    flex-direction: column;
  }
}
footer .foot_t .gl a {
  display: block;
  margin-top: -0.45rem;
  width: 1.4rem;
  height: auto;
}
@media (max-width: 991px) {
  footer .foot_t .gl a {
    width: 1.8rem;
  }
}
footer .foot_t .gl a img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
footer .foot_t .gl p {
  margin-top: 0.3rem;
}
footer .foot_t .gr {
  flex-shrink: 0;
  margin-left: 0.2rem;
  display: flex;
  margin-top: 0.15rem;
}
@media (max-width: 991px) {
  footer .foot_t .gr {
    margin-left: 0;
    margin-top: 0.4rem;
  }
}
@media (max-width: 767px) {
  footer .foot_t .gr {
    flex-direction: column;
  }
}
footer .foot_b {
  padding: 0.58rem 0 0.45rem;
}
footer .foot_b .g_wl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}
footer .foot_b .g_wl .item {
  cursor: pointer;
  width: 0.46rem;
  height: 0.46rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.1rem 0.1rem 0;
  background: #333;
}
@media (max-width: 991px) {
  footer .foot_b .g_wl .item {
    width: 0.74rem;
    height: 0.74rem;
  }
}
footer .foot_b .g_wl .item svg,
footer .foot_b .g_wl .item img {
  width: 34.8%;
  height: auto;
}
footer .foot_b .g_wl .item svg path,
footer .foot_b .g_wl .item img path {
  fill: #fff;
}
@media (max-width: 991px) {
  footer .foot_b .gl {
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 767px) {
  footer .foot_b .gl {
    margin: 0.4rem 0 0;
  }
}
footer .foot_b .gl .g_p {
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  footer .foot_b .gl .g_p {
    margin-top: 0.4rem;
  }
}
footer .foot_b .gl .g_p p {
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 0.1rem;
}
footer .foot_b .gl .g_p a {
  color: #444444;
}
footer .foot_b .gr {
  display: flex;
}
@media (max-width: 767px) {
  footer .foot_b .gr {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .foot_b .gr .g_add {
  color: #888;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  footer .foot_b .gr .g_add {
    margin-right: 0;
  }
}
footer .foot_b .gr .g_add .tel p {
  line-height: 1.2;
  color: #fff;
  margin: 0rem 0 0.18rem;
}
footer .foot_b .gr .g_add .g_p p {
  margin-bottom: 0.08rem;
}
footer .foot_b .gr .g_ema {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  footer .foot_b .gr .g_ema {
    margin-top: 0.3rem;
  }
}
footer .foot_b .gr .g_ema > span {
  color: #888;
  display: block;
  margin-bottom: 0.18rem;
}
footer .foot_b .gr .g_ema .pub_btn {
  cursor: pointer;
  border: none !important;
  background: #f39800;
}
footer .foot_b .gr .g_ema .pub_btn .pub_btn_foot {
  align-items: center;
  display: flex;
}
footer .foot_b .gr .g_ema .pub_btn .pub_btn_foot i {
  width: 14px;
  margin-left: 0;
  margin-right: 0.06rem;
}
footer .foot_b .gr .g_ema .pub_btn .pub_btn_foot p {
  color: #000;
  white-space: nowrap;
}
footer .foot_b .gr .g_ema .pub_btn i {
  flex-shrink: 0;
  margin-left: 0.3rem;
}
footer .foot_b .gr .g_ema .pub_btn i svg path {
  fill: #000;
}
/* Cookies政策 */
.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.crumbs p {
  display: flex;
  align-items: center;
}
.crumbs p > a {
  text-transform: uppercase;
  margin-right: 0.06rem;
  color: #999999;
}
@media (max-width: 767px) {
  .crumbs p > a {
    font-size: 14px;
    margin-bottom: 0.05rem;
  }
}
.crumbs p:last-child {
  /* a{
				color: #333;
			} */
}
.crumbs p:last-child svg,
.crumbs p:last-child i {
  display: none;
}
.crumbs p svg {
  width: 5px;
  height: auto;
  margin-right: 0.16rem;
}
.crumbs p svg path {
  fill: #666;
}
.crumbs p i {
  font-style: initial;
  opacity: 0.7;
  color: #999999;
  margin-right: 0.08rem;
}
.crumbs_box {
  background: #fff;
  padding: 0.18rem 0;
}
.cook {
  padding: 0.75rem 0 1.34rem;
}
.cook .tit {
  margin-bottom: 0.54rem;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 0.36rem;
}
.cook .tit h1 {
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.26rem;
}
.cook .tit .g_lab {
  display: flex;
}
.cook .tit .g_lab p {
  margin-right: 0.33rem;
  color: #666;
}
.cook .public-content p {
  color: #666;
}
.cook .public-content h3 {
  color: #333;
}
@media (max-width: 767px) {
  .cook .public-content h3 {
    font-size: 18px !important;
  }
}
/* OEMODM */
.sub_banner {
  height: 7.2rem;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .sub_banner {
    margin-top: 60px;
  }
}
.sub_banner .mob_pc {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub_banner .mob_pc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub_banner .sub_banner_txt {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}
.sub_banner .sub_banner_txt .container {
  height: 100%;
  padding-bottom: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
}
.sub_banner .sub_banner_txt .container .ban_l {
  width: 100%;
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_l {
    width: 100%;
  }
}
.sub_banner .sub_banner_txt .container .ban_l .tit {
  text-transform: capitalize;
}
.sub_banner .sub_banner_txt .container .ban_l .tit h2,
.sub_banner .sub_banner_txt .container .ban_l .tit h1,
.sub_banner .sub_banner_txt .container .ban_l .tit h3 {
  line-height: 1.3;
  margin-bottom: 0.15rem;
  font-size: 18px;
}
@media (max-width: 1580px) {
  .sub_banner .sub_banner_txt .container .ban_l .tit h2,
  .sub_banner .sub_banner_txt .container .ban_l .tit h1,
  .sub_banner .sub_banner_txt .container .ban_l .tit h3 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .sub_banner .sub_banner_txt .container .ban_l .tit h2,
  .sub_banner .sub_banner_txt .container .ban_l .tit h1,
  .sub_banner .sub_banner_txt .container .ban_l .tit h3 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_l .tit h2,
  .sub_banner .sub_banner_txt .container .ban_l .tit h1,
  .sub_banner .sub_banner_txt .container .ban_l .tit h3 {
    font-size: 0.28rem;
  }
}
.sub_banner .sub_banner_txt .container .ban_l .tit span {
  display: block;
  line-height: 1.20833333;
  font-size: 48px;
}
@media (max-width: 1580px) {
  .sub_banner .sub_banner_txt .container .ban_l .tit span {
    font-size: 44px;
  }
}
@media (max-width: 1260px) {
  .sub_banner .sub_banner_txt .container .ban_l .tit span {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .sub_banner .sub_banner_txt .container .ban_l .tit span {
    font-size: 0.48rem;
  }
}
.sub_banner .sub_banner_txt .container .ban_l .sub_banner_p {
  margin-top: 0.6rem;
}
.sub_banner .sub_banner_txt .container .ban_l .sub_banner_p p {
  opacity: 0.6;
}
.oemon {
  padding: 1.2rem 0 1.35rem;
}
.oemon .box {
  position: relative;
  margin-top: 0.72rem;
}
.oemon .box .swiper-slide:nth-child(2n) .oemon_box {
  flex-direction: column-reverse;
}
.oemon .box .swiper-slide:nth-child(2n) .oemon_box .oemon_t {
  margin-top: 0;
  margin-bottom: -12px;
}
.oemon .box .swiper-slide:nth-child(2n) .oemon_box .oemon_b {
  margin: 0 0 0.4rem;
}
.oemon .box .oemon_box {
  display: flex;
  flex-direction: column;
  padding-right: 0.15rem;
  width: 100%;
  height: 1px;
  margin: 3.8rem 0;
  position: relative;
}
@media (max-width: 1900px) {
  .oemon .box .oemon_box {
    margin: 4.2rem 0;
  }
}
@media (max-width: 1580px) {
  .oemon .box .oemon_box {
    margin: 5.4rem 0;
  }
}
@media (max-width: 1260px) {
  .oemon .box .oemon_box {
    margin: 5rem 0;
  }
}
@media (max-width: 767px) {
  .oemon .box .oemon_box {
    height: auto;
    margin: 0;
    flex-direction: column !important;
  }
}
.oemon .box .oemon_box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ddd;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .oemon .box .oemon_box::after {
    display: none;
  }
}
.oemon .box .oemon_box .oemon_t {
  margin-top: -12px;
}
@media (max-width: 767px) {
  .oemon .box .oemon_box .oemon_t {
    margin: 0 !important;
  }
}
.oemon .box .oemon_box .oemon_t p {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #999999;
  color: #fff;
}
.oemon .box .oemon_box .oemon_b {
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  .oemon .box .oemon_box .oemon_b {
    margin: 0.4rem 0 0 !important;
  }
}
.oemon .box .oemon_box .oemon_b i {
  margin-bottom: 0.16rem;
  flex-shrink: 0;
  display: flex;
  width: auto;
  height: 0.4rem;
}
@media (max-width: 767px) {
  .oemon .box .oemon_box .oemon_b i {
    height: 0.6rem;
  }
}
.oemon .box .oemon_box .oemon_b i svg,
.oemon .box .oemon_box .oemon_b i img {
  width: auto;
  height: 100%;
}
.oemon .box .oemon_box .oemon_b i svg path,
.oemon .box .oemon_box .oemon_b i img path {
  fill: #f39800;
}
.oemon .box .oemon_box .oemon_b .txt h3 {
  margin-bottom: 0.1rem;
  color: #111;
  /* overflow: hidden;
						white-space: nowrap;
						text-overflow:ellipsis; */
  /* text-align: justify; */
}
.oemon .box .oemon_box .oemon_b .txt p {
  line-height: 1.7;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  /* height: 5.1em; */
  /* text-align: justify; */
}
.oemon .box .g_qie2 {
  pointer-events: none;
  position: absolute;
  width: 5.7rem;
  height: 100%;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: -webkit-linear-gradient(to right, rgba(0, 0, 0, 0), #fff);
  background: linear-gradient(to right, rgba(0, 0, 0, 0), #fff);
  z-index: 100;
}
@media (max-width: 767px) {
  .oemon .box .g_qie2 {
    display: none;
  }
}
.oemon .box .g_qie2 .pub_nav {
  pointer-events: initial;
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 50%; */
  background: #dddddd;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
  top: 50%;
  margin-left: 0.1rem;
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s;
}
.oemon .box .g_qie2 .pub_nav:hover {
  background: #f39800;
}
.oemon .box .g_qie2 .pub_nav:hover svg path {
  fill: #fff;
}
.oemon .box .g_qie2 .pub_nav svg {
  width: 22%;
  height: auto;
}
.oemon .box .g_qie2 .pub_nav svg path {
  fill: #fff;
  opacity: 1;
  transition: all 0.4s;
}
.oemon .box .g_qie2 .pub_prev {
  left: 0.8rem;
}
.oemon .box .g_qie2 .pub_prev svg {
  transform: rotate(180deg);
}
.oemon .box .g_qie2 .pub_next {
  right: 0.8rem;
}
.oemtw {
  position: relative;
  background: #024097;
}
@media (max-width: 767px) {
  .oemtw {
    padding: 1rem 0;
  }
}
.oemtw .imgbj {
  position: sticky;
  position: -webkit-sticky;
  height: 100vh;
  top: 0;
}
.oemtw .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oemtw .container {
  margin-top: -100vh;
}
.oemtw .box {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .oemtw .box {
    flex-direction: column;
  }
}
.oemtw .box .gl {
  width: 56.25%;
  position: sticky;
  position: -webkit-sticky;
  height: 100vh;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .oemtw .box .gl {
    height: auto;
    margin: 0.2rem 0 0.5rem;
    width: 100%;
    position: initial;
  }
}
.oemtw .box .gl h2 {
  color: #f39800;
}
.oemtw .box .gl p {
  margin-top: 0.14rem;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 1380px) {
  .oemtw .box .gl p br {
    display: none;
  }
}
.oemtw .box .gr {
  width: 43.75%;
  padding-top: 1.54rem;
}
@media (max-width: 767px) {
  .oemtw .box .gr {
    width: 100%;
    padding-top: 0.8rem;
  }
}
.oemtw .box .gr .item {
  position: relative;
  margin: 0 0 1.2rem;
}
.oemtw .box .gr .item .span1 {
  position: absolute;
  bottom: calc(100% - 0.28rem);
  left: 0;
  line-height: 0.8;
  font-size: 1rem;
  opacity: 0.1;
  background-image: linear-gradient(180deg, #fff 0%, #024097 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.oemtw .box .gr .item .public-img:before {
  padding-top: 65.71428571%;
}
.oemtw .box .gr .item .txt {
  margin-top: 0.35rem;
  color: #fff;
}
.oemtw .box .gr .item .txt .txt_t p {
  margin-top: 0.08rem;
}
.oemtw .box .gr .item .txt .g_p {
  margin-top: 0.24rem;
}
.oemtw .box .gr .item .txt .g_p p {
  margin-bottom: 0.1rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  position: relative;
  padding-left: 16px;
}
.oemtw .box .gr .item .txt .g_p p:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f39800;
  left: 0;
  top: 9px;
}
@media (max-width: 1580px) {
  .oemtw .box .gr .item .txt .g_p p:after {
    top: 8px;
    width: 5px;
    height: 5px;
  }
}
.oemth {
  padding: 1.35rem 0;
}
.oemth .box {
  margin-top: 0.75rem;
}
.oemth .box .bbox {
  width: 51.875%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.05rem;
}
@media (max-width: 991px) {
  .oemth .box .bbox {
    width: 100%;
  }
}
.oemth .box .bbox .item {
  width: 50%;
  margin-bottom: 0.1rem;
  padding: 0 0.05rem;
}
@media (max-width: 991px) {
  .oemth .box .bbox .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .oemth .box .bbox .item {
    width: 100%;
  }
}
.oemth .box .bbox .item .itembox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 0.6rem 0.45rem 0.35rem;
}
.oemth .box .bbox .item .itembox .oemth_box {
  margin-right: 0.1rem;
}
.oemth .box .bbox .item .itembox .oemth_box .item_t {
  align-items: flex-end;
  display: flex;
}
.oemth .box .bbox .item .itembox .oemth_box .item_t p {
  line-height: 0.8;
  font-size: 0.7rem;
}
.oemth .box .bbox .item .itembox .oemth_box .item_t span {
  line-height: 1.3;
  margin-left: 0.07rem;
  margin-top: 0.05rem;
  font-weight: bold;
}
.oemth .box .bbox .item .itembox .oemth_box .item_b {
  margin-top: 0.08rem;
}
.oemth .box .bbox .item .itembox .oemth_box .item_b p {
  color: #666;
}
.oemth .box .bbox .item .itembox i {
  flex-shrink: 0;
  display: flex;
  width: 0.6rem;
  height: auto;
}
@media (max-width: 767px) {
  .oemth .box .bbox .item .itembox i {
    width: 0.8rem;
  }
}
.oemth .box .bbox .item .itembox i svg,
.oemth .box .bbox .item .itembox i img {
  width: 100%;
  height: auto;
}
.oemth .box .bbox .item .itembox i svg path,
.oemth .box .bbox .item .itembox i img path {
  fill: #f39800;
}
.oemth .oemth_b {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .oemth .oemth_b {
    margin-top: 1.5rem;
  }
}
.oemth .oemth_b_box {
  position: relative;
}
.oemth .oemth_b_box .item {
  display: flex;
  white-space: initial;
  line-height: 1.5;
}
.oemth .oemth_b_box .item .img {
  width: 140px;
  height: 45px;
  display: inline-block;
  margin-right: 1rem;
}
.oemth .oemth_b_box .item .img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.oemfo {
  display: flex;
}
@media (max-width: 1260px) {
  .oemfo {
    flex-direction: column;
  }
}
.oemfo .gl {
  padding: 1.25rem 0.85rem 0 0;
  color: #fff;
  width: 50%;
  padding-left: calc((100vw - 1600px)/2);
}
@media (max-width: 1580px) {
  .oemfo .gl {
    padding-left: 8%;
  }
}
@media (max-width: 1260px) {
  .oemfo .gl {
    padding-left: 5%;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .oemfo .gl {
    padding: 0.5rem 5%;
  }
}
.oemfo .gl .tit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .oemfo .gl .tit {
    flex-direction: column;
    align-items: flex-start;
  }
}
.oemfo .gl .tit .right p {
  opacity: 0.4;
}
.oemfo .gl .tit .left {
  position: relative;
}
@media (max-width: 767px) {
  .oemfo .gl .tit .left {
    margin-bottom: 0.4rem;
  }
}
.oemfo .gl .tit .left::after {
  content: '';
  position: absolute;
  width: 2.88rem;
  height: 1px;
  background: #f39800;
  left: 0;
  bottom: -0.29rem;
}
@media (max-width: 767px) {
  .oemfo .gl .tit .left::after {
    bottom: 0;
  }
}
.oemfo .gl .tit .left span {
  text-transform: uppercase;
}
.oemfo .gl .tit .left h2 {
  margin-right: 0.3rem;
  margin-top: 0.15rem;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
}
.oemfo .gl .box .item {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0;
}
@media (max-width: 767px) {
  .oemfo .gl .box .item {
    flex-direction: column;
    border: none;
    padding: 0;
  }
}
.oemfo .gl .box .item:last-child {
  border: none;
}
.oemfo .gl .box .item .g_it {
  width: 49%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .oemfo .gl .box .item .g_it {
    width: 100%;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.oemfo .gl .box .item .g_it:hover i {
  background: #f39800;
}
.oemfo .gl .box .item .g_it:hover .txt p {
  color: #f39800;
}
.oemfo .gl .box .item .g_it i {
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 0.28rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
}
@media (max-width: 1260px) {
  .oemfo .gl .box .item .g_it i {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.oemfo .gl .box .item .g_it i svg,
.oemfo .gl .box .item .g_it i img {
  width: 32%;
  height: auto;
}
@media (max-width: 767px) {
  .oemfo .gl .box .item .g_it i svg,
  .oemfo .gl .box .item .g_it i img {
    width: 40%;
  }
}
.oemfo .gl .box .item .g_it i svg path,
.oemfo .gl .box .item .g_it i img path {
  fill: #fff;
}
.oemfo .gl .box .item .g_it .txt span {
  opacity: 0.3;
}
.oemfo .gl .box .item .g_it .txt a {
  color: #fff;
}
.oemfo .gl .box .item .g_it .txt p {
  transition: all 0.4s;
}
.oemfo .gl .box .item .g_it .txt .g_svg {
  margin-top: 3px;
  display: flex;
  flex-wrap: wrap;
}
.oemfo .gl .box .item .g_it .txt .g_svg .g_svg_box {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.2rem;
}
@media (max-width: 1580px) {
  .oemfo .gl .box .item .g_it .txt .g_svg .g_svg_box {
    width: 14px;
    height: 14px;
  }
}
.oemfo .gl .box .item .g_it .txt .g_svg .g_svg_box img,
.oemfo .gl .box .item .g_it .txt .g_svg .g_svg_box svg {
  width: 100%;
  height: auto;
}
.oemfo .gl .box .item2 .g_it {
  width: 100%;
}
.oemfo .gr {
  padding: 1.25rem 0 1.4rem 0.85rem;
  background: #fff;
  width: 50%;
  padding-right: calc((100vw - 1600px)/2);
}
@media (max-width: 1580px) {
  .oemfo .gr {
    padding-right: 8%;
  }
}
@media (max-width: 1260px) {
  .oemfo .gr {
    padding-right: 5%;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .oemfo .gr {
    padding: 0.5rem 5%;
  }
}
.oemfo .gr .tit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid #ddd;
}
.oemfo .gr .tit .right p {
  opacity: 0.4;
}
.oemfo .gr .tit .left {
  position: relative;
}
.oemfo .gr .tit .left::after {
  content: '';
  position: absolute;
  width: 2.88rem;
  height: 1px;
  background: #f39800;
  left: 0;
  bottom: -0.29rem;
}
.oemfo .gr .tit .left span {
  color: #f39800;
  text-transform: uppercase;
}
.oemfo .gr .tit .left h2 {
  margin-top: 0.15rem;
  line-height: 1;
}
.oemfo .gr .box {
  padding-top: 0.46rem;
}
.oemfo .gr .box form .inp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .oemfo .gr .box form .inp {
    flex-direction: column;
  }
}
.oemfo .gr .box form .inp .inp_box {
  width: calc(50% - 0.3rem);
  margin-bottom: 0.44rem;
}
@media (max-width: 767px) {
  .oemfo .gr .box form .inp .inp_box {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.oemfo .gr .box form .inp .inp_box .inp_txt {
  margin-bottom: 0.1rem;
}
.oemfo .gr .box form .inp .inp_box .inp_txt p {
  color: #111;
  font-weight: bold;
}
.oemfo .gr .box form .inp .inp_box .inp_txt p span {
  color: #f39800;
}
.oemfo .gr .box form .inp .inp_box input {
  width: 100%;
  height: 0.5rem;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 767px) {
  .oemfo .gr .box form .inp .inp_box input {
    height: 0.8rem;
  }
}
.oemfo .gr .box form .inp .inp_box .sot_select_nr .sel_text_x {
  height: 0.5rem;
}
@media (max-width: 767px) {
  .oemfo .gr .box form .inp .inp_box .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.oemfo .gr .box form .inp .inp_box .g_file .join_txt_b .hi-input-box {
  position: relative;
  display: flex;
  margin-right: 10px;
  flex-shrink: 0;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.4s all;
  width: 100%;
  height: 0.48rem;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 767px) {
  .oemfo .gr .box form .inp .inp_box .g_file .join_txt_b .hi-input-box {
    height: 0.8rem;
  }
}
.oemfo .gr .box form .inp .inp_box .g_file .join_txt_b .hi-input-box i {
  margin-right: 0.1rem;
  flex-shrink: 0;
  display: flex;
  width: 0.18rem;
  height: auto;
}
.oemfo .gr .box form .inp .inp_box .g_file .join_txt_b .hi-input-box i svg,
.oemfo .gr .box form .inp .inp_box .g_file .join_txt_b .hi-input-box i img {
  width: 100%;
  height: auto;
}
.oemfo .gr .box form .inp .inp_box .g_file .join_txt_b .hi-input-box i svg path,
.oemfo .gr .box form .inp .inp_box .g_file .join_txt_b .hi-input-box i img path {
  fill: #f39800;
}
.oemfo .gr .box form .inp .inp_box .g_file .join_txt_b .hi-input-box input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}
.oemfo .gr .box form .inp .inp_box .g_file .join_txt_b .hi-input-box .hi-text {
  color: #999999;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.oemfo .gr .box form .inp2 .inp_box {
  width: 100%;
}
.oemfo .gr .box form .inptext .inp_box textarea {
  border-bottom: 1px solid #eeeeee;
  width: 100%;
  height: 0.87rem;
  padding: 0.13rem 0;
}
@media (max-width: 767px) {
  .oemfo .gr .box form .inptext .inp_box textarea {
    height: 2.2rem;
  }
}
.oemfo .gr .box form .g_lab {
  margin-bottom: 0.25rem;
  padding-right: 0.1rem;
  color: #999999;
}
.oemfo .gr .box form .pub_btn {
  position: relative;
  border-color: #f39800;
  background: #f39800;
  width: 3.2rem;
  padding: 0 0.65rem;
}
.oemfo .gr .box form .pub_btn:hover {
  opacity: 0.8;
}
.oemfo .gr .box form .pub_btn p {
  color: #fff;
}
.oemfo .gr .box form .pub_btn i {
  position: absolute;
  right: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
}
.oemfo .gr .box form .pub_btn i svg path,
.oemfo .gr .box form .pub_btn i img path {
  fill: #fff;
}
.sot_select_nr {
  position: relative;
  min-width: 1.8rem;
}
.sot_select_nr .sel_text_x {
  width: 100%;
  height: 0.4rem;
  border-bottom: 1px solid #ddd;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.sot_select_nr .sel_text_x svg,
.sot_select_nr .sel_text_x img {
  width: 9px;
  height: auto;
  flex-shrink: 0;
  z-index: 100;
  margin: 0 7px;
}
@media (max-width: 767px) {
  .sot_select_nr .sel_text_x svg,
  .sot_select_nr .sel_text_x img {
    width: 7px;
  }
}
.sot_select_nr .sel_text_x svg path,
.sot_select_nr .sel_text_x img path {
  fill: #333;
}
.sot_select_nr .sel_text_box {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  position: absolute;
  left: 0;
  text-align: left;
  overflow: hidden;
  top: 100%;
  border: 1px solid #d2d2d2;
  z-index: 200;
  display: none;
  max-height: 160px;
  overflow-y: auto;
}
.sot_select_nr .sel_text_box a {
  transition: all 0.4s;
  color: #000;
  padding: 7px 0 7px 0.2rem;
  display: block;
  cursor: pointer;
}
.sot_select_nr .sel_text_box a:hover {
  background: #f39800;
  color: #fff;
}
/* 案例详情 */
.caseinfoon {
  background: #fff;
  padding: 1.15rem 0 1.4rem;
}
@media (max-width: 767px) {
  .caseinfoon {
    padding: 0.8rem 0 1.1rem;
  }
}
.caseinfoon .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .caseinfoon .box {
    flex-direction: column;
  }
}
.caseinfoon .box .gr {
  /* margin-top: 0.36rem; */
  width: 53.125%;
}
@media (max-width: 767px) {
  .caseinfoon .box .gr {
    width: 100%;
  }
}
.caseinfoon .box .gr p {
  margin-bottom: 0.1rem;
  color: #666;
}
.caseinfoon .box .gr p:last-child {
  margin-bottom: 0;
}
.caseinfotw {
  background: #f7f7f7;
  padding: 1.4rem 0;
}
.caseinfotw .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .caseinfotw .box {
    flex-direction: column-reverse;
  }
}
.caseinfotw .box .gl {
  padding-right: 1.25rem;
  width: 46.875%;
}
@media (max-width: 767px) {
  .caseinfotw .box .gl {
    width: 100%;
    padding: 0;
  }
}
.caseinfotw .box .gl .g_p {
  margin-top: 0.45rem;
}
.caseinfotw .box .gl .g_p p {
  color: #666666;
  margin-bottom: 0.1rem;
}
.caseinfotw .box .gl .pub_btn {
  margin-top: 0.62rem;
}
.caseinfotw .box .gr {
  width: 53.125%;
}
@media (max-width: 767px) {
  .caseinfotw .box .gr {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.caseinfotw .box .gr .public-img:before {
  padding-top: 67.76470588%;
}
.caseinfoth {
  padding: 1.35rem 0 0.7rem;
  background: #fff;
}
.caseinfoth .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.3rem;
  margin-top: 0.75rem;
}
.caseinfoth .box .item {
  width: 50%;
  margin-bottom: 0.6rem;
  padding: 0 0.3rem;
}
@media (max-width: 991px) {
  .caseinfoth .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .caseinfoth .box .item {
    width: 100%;
  }
}
.caseinfoth .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.caseinfoth .box .item .itembox .public-img:before {
  padding-top: 70.12987013%;
}
.caseinfoth .box .item .itembox .txt {
  margin-top: 0.35rem;
}
.caseinfoth .box .item .itembox .txt p {
  color: #666;
  margin-top: 0.1rem;
}
.pub_btn_two {
  display: flex;
  align-items: center;
}
.pub_btn_two:hover i {
  transform: translateX(5px);
}
.pub_btn_two p {
  color: #fff;
  position: relative;
  z-index: 5;
  transition: all 0.4s;
}
.pub_btn_two i {
  transition: all 0.4s;
  margin-left: 0.1rem;
  width: 14px;
  height: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 1580px) {
  .pub_btn_two i {
    width: 12px;
  }
}
@media (max-width: 767px) {
  .pub_btn_two i {
    width: 10px;
  }
}
.pub_btn_two i svg {
  width: 100%;
  height: auto;
}
.pub_btn_two i svg path {
  transition: all 0.4s;
  fill: #fff;
}
.pub_btn_two2 p {
  color: #f39800;
}
.pub_btn_two2 i svg path {
  fill: #f39800;
}
.pub_btn_two3 p {
  color: #333;
}
.pub_btn_two3 i svg path {
  fill: #333;
}
.caseinfofo .tit {
  background: #fff;
}
.caseinfofo .pub_title2 {
  padding-bottom: 0.7rem;
}
.caseinfofo .box {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .caseinfofo .box {
    flex-direction: column;
  }
}
.caseinfofo .box .gl {
  width: 50%;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: -1;
  opacity: 0;
}
@media (max-width: 991px) {
  .caseinfofo .box .gl {
    width: 100%;
    position: initial;
    height: auto;
    opacity: 1;
  }
}
.caseinfofo .box .gl.on {
  opacity: 1;
}
.caseinfofo .box .gl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseinfofo .box .gr {
  width: 50%;
  background: url(../images/caseinfo6.jpg) no-repeat;
  background-size: cover;
  height: 100vh;
}
@media (max-width: 991px) {
  .caseinfofo .box .gr {
    width: 100%;
    height: auto;
    padding: 1rem 0;
  }
}
.caseinfofo .box .gr .swiper {
  height: 100%;
}
.caseinfofo .box .gr .caseinfofo_box {
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.82rem 1.5rem 0;
  text-align: center;
}
@media (max-width: 1580px) {
  .caseinfofo .box .gr .caseinfofo_box {
    height: 100%;
    padding: 0 1.5rem;
  }
}
@media (max-width: 1260px) {
  .caseinfofo .box .gr .caseinfofo_box {
    padding: 0 0.5rem;
  }
}
.caseinfofo .box .gr .caseinfofo_box .img {
  width: 5rem;
  height: 3.55rem;
  display: flex;
  justify-content: center;
}
.caseinfofo .box .gr .caseinfofo_box .img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.caseinfofo .box .gr .caseinfofo_box .txt {
  margin-top: 0.3rem;
}
.caseinfofo .box .gr .caseinfofo_box .txt span {
  line-height: 1.2;
}
.caseinfofo .box .gr .caseinfofo_box .txt h3 {
  margin-top: 0.5rem;
  line-height: 1.1;
}
.caseinfofo .box .gr .caseinfofo_box .txt p {
  margin-top: 0.22rem;
}
.caseinfofo .box .gr .caseinfofo_box .pub_btn_two {
  margin-top: 0.55rem;
}
.caseinfofo .box .gr .caseinfofo_box .pub_btn_two p {
  color: #f39800;
}
.caseinfofo .box .gr .caseinfofo_box .pub_btn_two i svg path {
  fill: #f39800;
}
.caseinfofi {
  background: #fff;
  padding: 1.35rem 0 1.4rem;
}
.caseinfofi .box {
  margin-top: 0.75rem;
}
.caseinfofi .box .caseinfofi_box {
  position: relative;
}
.caseinfofi .box .caseinfofi_box:hover .public-img img {
  transform: scale(1.05);
}
.caseinfofi .box .caseinfofi_box:hover .txt h3 {
  color: #f39800;
}
.caseinfofi .box .caseinfofi_box::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  left: calc(100% + 40px);
  top: 0;
  background: #eeeeee;
}
@media (max-width: 991px) {
  .caseinfofi .box .caseinfofi_box::after {
    display: none;
  }
}
.caseinfofi .box .caseinfofi_box .public-img:before {
  padding-top: 66.66666667%;
}
.caseinfofi .box .caseinfofi_box .txt {
  margin-top: 0.35rem;
}
.caseinfofi .box .caseinfofi_box .txt .txt_t h3 {
  transition: all 0.4s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
}
.caseinfofi .box .caseinfofi_box .txt .txt_t p {
  color: #999;
  margin-top: 0.1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
}
.caseinfofi .box .caseinfofi_box .txt .pub_btn_two {
  margin-top: 0.5rem;
}
.caseinfofi .swip2_pag {
  position: initial;
  margin-top: 0.54rem;
}
.caseinfofi .swip2_pag .swiper-pagination-bullet {
  background: #dddddd;
  opacity: 1;
  border-radius: 0;
}
.caseinfofi .swip2_pag .swiper-pagination-bullet-active {
  background: #f39800;
}
.pub_bot {
  position: relative;
}
.pub_bot .imgbj {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.pub_bot .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pub_bot .box {
  padding: 0.75rem 0 0.95rem;
}
@media (max-width: 767px) {
  .pub_bot .box {
    padding: 0.95rem 0 0.85rem;
  }
}
.pub_bot .box .home_title {
  position: relative;
  z-index: 10;
  align-items: center;
}
.pub_bot .box .home_title .gl {
  width: 70%;
}
@media (max-width: 767px) {
  .pub_bot .box .home_title .gl {
    width: 100%;
  }
}
.pub_bot .box .home_title .gl p {
  color: #fff;
  margin-top: 0.05rem;
}
/* 产品聚合页 */
.sub_banner_pro .sub_banner_txt .container .ban_l .tit h1 {
  color: #f39800;
  margin-bottom: 0.05rem;
}
.sub_banner_pro .crumbs_box {
  position: absolute;
  bottom: 0;
  z-index: 10;
  background: none;
  width: 100%;
}
.sub_banner_pro .crumbs_box .crumbs p > a {
  opacity: 0.6;
  color: #fff;
}
.sub_banner_pro .crumbs_box .crumbs p > i {
  opacity: 0.6;
  color: #fff;
}
.proon {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .proon {
    flex-direction: column;
  }
}
.proon .gl {
  /* top: 0; */
  background: #fff;
  /* position: sticky; */
  /* position: -webkit-sticky; */
  width: 31.25%;
  padding-left: calc((100% - 1600px)/2);
}
@media (max-width: 1580px) {
  .proon .gl {
    padding-left: 8%;
  }
}
@media (max-width: 1260px) {
  .proon .gl {
    padding-left: 5%;
  }
}
@media (max-width: 991px) {
  .proon .gl {
    position: initial;
    padding: 0 5%;
    width: 100%;
  }
}
.proon .gl .gl_box {
  padding: 0.95rem 0.6rem 0.5rem 0;
}
@media (max-width: 767px) {
  .proon .gl .gl_box {
    padding: 0.95rem 0 0.9rem;
  }
}
.proon .gl .gl_box .proon_nav {
  margin-top: 0.32rem;
}
.proon .gl .gl_box .proon_nav .proon_nav_box {
  /* padding: 6px 0; */
  border-bottom: 1px solid #dddddd;
}
.proon .gl .gl_box .proon_nav .proon_nav_box.on .gbox {
  display: block;
}
.proon .gl .gl_box .proon_nav .proon_nav_box.on .proon_nav_tit {
  background: #f39800;
}
.proon .gl .gl_box .proon_nav .proon_nav_box.on .proon_nav_tit .left i {
  background: #fff;
}
.proon .gl .gl_box .proon_nav .proon_nav_box.on .proon_nav_tit .left h3 {
  color: #fff;
}
.proon .gl .gl_box .proon_nav .proon_nav_box.on .proon_nav_tit .g_gb i {
  background: #fff;
}
.proon .gl .gl_box .proon_nav .proon_nav_box.on .proon_nav_tit .g_gb .i2 {
  transform: translate(-50%, -50%) rotate(0deg);
}
.proon .gl .gl_box .proon_nav .proon_nav_box .proon_nav_tit {
  transition: all 0.4s;
  padding: 0.2rem 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .proon_nav_tit .left {
  display: flex;
  align-items: center;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .proon_nav_tit .left i {
  flex-shrink: 0;
  transition: all 0.4s;
  margin-right: 0.1rem;
  width: 8px;
  height: 8px;
  background: #f39800;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .proon_nav_tit .left h3 {
  color: #999;
  transition: all 0.4s;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .proon_nav_tit .g_gb {
  position: relative;
  transition: 0.4s all;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.2rem;
  width: 0.2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .proon .gl .gl_box .proon_nav .proon_nav_box .proon_nav_tit .g_gb {
    width: 16px;
  }
}
.proon .gl .gl_box .proon_nav .proon_nav_box .proon_nav_tit .g_gb i {
  width: 0.12rem;
  height: 2px;
  background: #f39800;
  display: block;
  position: absolute;
  transition: all 0.4s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .proon .gl .gl_box .proon_nav .proon_nav_box .proon_nav_tit .g_gb i {
    width: 8px;
    height: 1px;
  }
}
.proon .gl .gl_box .proon_nav .proon_nav_box .proon_nav_tit .g_gb .i2 {
  transform: translate(-50%, -50%) rotate(90deg);
}
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox {
  display: none;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox .gbox_con {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #f39800;
  padding: 0.15rem;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a {
  transition: all 0.4s;
  padding: 0.1rem 0.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a:hover,
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a.on {
  background: #fff;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a:hover p,
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a.on p {
  color: #f39800;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a:hover i,
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a.on i {
  opacity: 1;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a:hover i svg path,
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a.on i svg path {
  fill: #f39800;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a p {
  color: #fff;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a i {
  transition: all 0.4s;
  opacity: 0.3;
  flex-shrink: 0;
  display: flex;
  width: 0.13rem;
  height: auto;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a i svg,
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a i img {
  width: 100%;
  height: auto;
}
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a i svg path,
.proon .gl .gl_box .proon_nav .proon_nav_box .gbox a i img path {
  transition: all 0.4s;
  fill: #fff;
}
.proon .gr {
  background: #f7f7f7;
  width: 68.75%;
  padding-bottom: 1.5rem;
  padding-right: calc((100% - 1600px)/2);
}
@media (max-width: 1580px) {
  .proon .gr {
    padding-right: 8%;
  }
}
@media (max-width: 1260px) {
  .proon .gr {
    padding-right: 5%;
  }
}
@media (max-width: 991px) {
  .proon .gr {
    padding: 0 5%;
    width: 100%;
  }
}
.proon .gr .gr_box {
  padding: 0.7rem 0 0 1rem;
}
@media (max-width: 991px) {
  .proon .gr .gr_box {
    padding: 1rem 0;
  }
}
.propub .proon_con {
  border-top: 1px solid #dddddd;
}
.propub .proon_con .item {
  padding: 0.3rem 0;
  border-bottom: 1px solid #dddddd;
  transition: all 0.4s;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .propub .proon_con .item {
    flex-direction: column;
    margin-bottom: 0.4rem;
    align-items: center;
  }
}
.propub .proon_con .item:hover {
  border-color: #f39800;
}
.propub .proon_con .item:hover .public-img img {
  transform: scale(1.05);
}
.propub .proon_con .item:hover .txt h3 {
  color: #f39800;
}
.propub .proon_con .item:hover .txt .pub_btn_two p {
  color: #f39800;
}
.propub .proon_con .item:hover .txt .pub_btn_two i path {
  fill: #f39800;
}
.propub .proon_con .item .public-img {
  width: 37.73584906%;
}
@media (max-width: 767px) {
  .propub .proon_con .item .public-img {
    width: 100%;
  }
}
.propub .proon_con .item .public-img:before {
  padding-top: 75%;
}
.propub .proon_con .item .txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  /* height: 100%; */
  width: 62.26415094%;
  padding: 0 0.6rem;
}
@media (max-width: 767px) {
  .propub .proon_con .item .txt {
    padding: 0 0 0 0.5rem;
    width: 100%;
    padding: 0.5rem 0 0 0;
  }
}
.propub .proon_con .item .txt .txt_box h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.propub .proon_con .item .txt .txt_box p {
  margin-top: 0.17rem;
  color: #999;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  height: 9em;
}
.propub .proon_con .item .txt .pub_btn_two {
  margin-top: 0.22rem;
}
@media (max-width: 991px) {
  .propub .proon_con .item .txt .pub_btn_two {
    margin-top: 0.3rem;
  }
}
.propub .page {
  margin-top: 0.8rem;
}
.page {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page a {
  height: 0.48rem;
  min-width: 0.48rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.05rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: none;
  color: #999;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page a {
    font-size: 0.28rem;
    height: 0.6rem;
    min-width: 0.6rem;
  }
}
.page a.prev {
  border: 1px solid #ddd;
}
.page a.prev img,
.page a.prev svg {
  transform: rotate(180deg);
}
.page a.next {
  border: 1px solid #ddd;
}
.page a:hover {
  color: #fff;
  background: #f39800;
}
.page a:hover p {
  color: #fff;
}
.page a:hover svg path {
  fill: #fff;
}
.page a img,
.page a svg {
  width: 6px;
  height: auto;
}
@media (max-width: 767px) {
  .page a img,
  .page a svg {
    width: 5px;
  }
}
.page a .img2 {
  display: none;
}
.page a svg path {
  fill: #a2a2a2;
}
.page .active {
  color: #fff;
  border-color: #f39800;
  background: #f39800;
}
.page .active p {
  color: #fff;
}
.proinfoon .box {
  padding: 0.7rem 0 0.97rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .proinfoon .box {
    flex-direction: column;
  }
}
.proinfoon .box .gl {
  width: 46.25%;
}
@media (max-width: 991px) {
  .proinfoon .box .gl {
    width: 100%;
  }
}
.proinfoon .box .gl .gallery-thumbs .public-img:before {
  padding-top: 75.67567568%;
}
.proinfoon .box .gl .proinfoon_gallery {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.proinfoon .box .gl .proinfoon_gallery .gallery-top {
  width: 4.5rem;
  margin: 0.1rem 0 0;
}
.proinfoon .box .gl .proinfoon_gallery .gallery-top .public-img {
  transition: all 0.4s;
  opacity: 0.5;
  border: 1px solid #e8e9eb;
}
.proinfoon .box .gl .proinfoon_gallery .gallery-top .public-img:before {
  padding-top: 75.67567568%;
}
.proinfoon .box .gl .proinfoon_gallery .gallery-top .swiper-slide-thumb-active .public-img {
  opacity: 1;
  border: 1px solid #f39800;
}
.proinfoon .box .gl .proinfoon_gallery .g_qie {
  display: flex;
}
.proinfoon .box .gl .proinfoon_gallery .g_qie .pub_nav {
  border-color: #ddd;
  margin-left: 0.1rem;
  position: initial;
  transform: translateY(0%);
}
.proinfoon .box .gl .proinfoon_gallery .g_qie .pub_nav:hover {
  background: none;
  border-color: #f39800;
}
.proinfoon .box .gl .proinfoon_gallery .g_qie .pub_nav:hover svg path {
  fill: #f39800;
}
.proinfoon .box .gl .proinfoon_gallery .g_qie .pub_nav svg path {
  fill: #9e9e9e;
}
.proinfoon .box .gr {
  padding: 0.56rem 0 0;
  width: 43.25%;
}
@media (max-width: 991px) {
  .proinfoon .box .gr {
    width: 100%;
  }
}
.proinfoon .box .gr .gr_tit {
  margin-bottom: 0.7rem;
}
.proinfoon .box .gr .gr_tit h1 {
  line-height: 1.1;
}
.proinfoon .box .gr .gr_box .item {
  margin-bottom: 0.53rem;
}
.proinfoon .box .gr .gr_box .item .g_t {
  margin-bottom: 0.26rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid #dfdfdf;
  position: relative;
}
.proinfoon .box .gr .gr_box .item .g_t::after {
  content: '';
  position: absolute;
  width: 0.96rem;
  height: 1px;
  background: #f39800;
  bottom: -1px;
  left: 0;
}
@media (max-width: 1260px) {
  .g_qie {
    display: none;
  }
}
.g_qie .pub_nav {
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  /* box-shadow: 0 0 0.2rem rgba(0,0,0,0.05); */
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .g_qie .pub_nav {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.g_qie .pub_nav:hover {
  border-color: #f39800;
  background: #f39800;
}
.g_qie .pub_nav:hover svg path {
  fill: #fff;
}
.g_qie .pub_nav svg {
  width: 20%;
  height: auto;
}
.g_qie .pub_nav svg path {
  fill: #fff;
  opacity: 1;
  transition: all 0.4s;
}
.g_qie .pub_prev {
  left: -1rem;
}
.g_qie .pub_prev svg {
  transform: rotate(180deg);
}
.g_qie .pub_next {
  right: -1rem;
}
.proinfotw {
  padding: 0.38rem 0 1.4rem;
}
.proinfotw .twbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .proinfotw .twbox {
    flex-direction: column;
  }
}
.proinfotw .twbox .gl {
  width: 68.75%;
}
@media (max-width: 991px) {
  .proinfotw .twbox .gl {
    width: 100%;
  }
}
.proinfotw .twbox .gl .pro_spe {
  margin-bottom: 1.35rem;
}
.proinfotw .twbox .gl .pro_spe .box {
  margin-top: 1.15rem;
}
.proinfotw .twbox .gl .pro_spe .box table {
  text-align: left;
  border-color: #ddd;
  width: 100%;
}
.proinfotw .twbox .gl .pro_spe .box table .g_p {
  display: flex;
  align-items: center;
  min-height: 0.74rem;
  padding: 0.1rem 0.3rem 0.1rem 0.8rem;
}
@media (max-width: 991px) {
  .proinfotw .twbox .gl .pro_spe .box table .g_p {
    padding: 0.1rem 0.3rem 0.1rem 0.5rem;
  }
}
.proinfotw .twbox .gl .pro_spe .box table th {
  background: #f5f5f5;
}
.proinfotw .twbox .gl .pro_spe .box table th:first-child {
  width: 4.55rem;
}
@media (max-width: 991px) {
  .proinfotw .twbox .gl .pro_spe .box table th:first-child {
    width: 50%;
  }
}
.proinfotw .twbox .gl .pro_spe .box table td .p1 {
  color: #999;
}
.proinfotw .twbox .gl .pro_spe .box table td .p2 {
  color: #222;
}
.proinfotw .twbox .gl .app_are .box {
  padding-bottom: 0.6rem;
  position: relative;
  margin-top: 0.72rem;
}
.proinfotw .twbox .gl .app_are .box .app_are_box {
  position: relative;
}
.proinfotw .twbox .gl .app_are .box .app_are_box .public-img:before {
  padding-top: 63.26530612%;
}
.proinfotw .twbox .gl .app_are .box .app_are_box .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  color: #fff;
  padding: 0.34rem 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.proinfotw .twbox .gl .app_are .box .app_are_box .txt p {
  margin-top: 0.1rem;
  display: none;
}
.proinfotw .twbox .gl .app_are .box .swip2_pag {
  bottom: 0;
  left: 0;
  width: auto;
}
.proinfotw .twbox .gl .app_are .box .swip2_pag .swiper-pagination-bullet {
  background: #dddddd;
  opacity: 1;
  border-radius: 0;
  margin: 0 8px 0 0;
}
.proinfotw .twbox .gl .app_are .box .swip2_pag .swiper-pagination-bullet-active {
  background: #f39800;
}
.proinfotw .twbox .gr {
  width: 23.875%;
  position: sticky;
  position: -webkit-sticky;
  top: 110px;
  margin-top: 2rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 1580px) {
  .proinfotw .twbox .gr {
    margin-top: 2.35rem;
  }
}
@media (max-width: 991px) {
  .proinfotw .twbox .gr {
    width: 100%;
    position: initial;
    margin-top: 0.5rem;
  }
}
.proinfotw .twbox .gr .gr_box {
  position: relative;
}
.proinfotw .twbox .gr .gr_box .public-img:before {
  padding-top: 52.63157895%;
}
.proinfotw .twbox .gr .gr_box .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  color: #fff;
  padding: 0.2rem 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 1260px) {
  .proinfotw .twbox .gr .gr_box .txt .p2 {
    font-size: 16px;
  }
}
.proinfotw .twbox .gr .gr_con {
  padding: 0.1rem 0.3rem 0.25rem;
}
.proinfotw .twbox .gr .gr_con .gr_nr .item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 0.2rem 0;
}
.proinfotw .twbox .gr .gr_con .gr_nr .item:last-child {
  border: none;
}
.proinfotw .twbox .gr .gr_con .gr_nr .item .g_svg {
  flex-shrink: 0;
  margin-right: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #f39800;
}
.proinfotw .twbox .gr .gr_con .gr_nr .item .g_svg svg,
.proinfotw .twbox .gr .gr_con .gr_nr .item .g_svg img {
  width: 36%;
  height: auto;
}
.proinfotw .twbox .gr .gr_con .gr_nr .item .g_svg svg path,
.proinfotw .twbox .gr .gr_con .gr_nr .item .g_svg img path {
  fill: #f39800;
}
.proinfotw .twbox .gr .gr_con .gr_nr .item .txt p {
  word-break: break-all;
}
.proinfotw .twbox .gr .gr_con .gr_nr .item .txt .p1 {
  color: #999;
}
.proinfotw .twbox .gr .gr_con .gr_nr .item .txt .p2 {
  color: #111;
}
@media (max-width: 1260px) {
  .proinfotw .twbox .gr .gr_con .gr_nr .item .txt .p2 {
    font-size: 12px;
  }
}
.proinfotw .twbox .gr .gr_con .g_a {
  margin-top: 0.08rem;
  display: flex;
  justify-content: flex-end;
}
/* 常见问题 */
.faqon {
  padding: 0.8rem 0 1.5rem;
}
.faqon .pub_title2 {
  margin-bottom: 0.65rem;
}
.faqon .faqon_box {
  margin-top: 0.16rem;
  border-top: 1px solid #ddd;
  padding-top: 0.2rem;
}
.faqon .faqon_box .faqon_sea {
  display: flex;
  justify-content: space-between;
}
.faqon .faqon_box .faqon_sea .gl a {
  height: 0.52rem;
  padding: 0 0.28rem;
  background: #f39800;
  display: flex;
  align-items: center;
  color: #fff;
}
.faqon .faqon_box .faqon_sea .gr form .search_box {
  width: 2.94rem;
  height: 0.6rem;
  background: #fff;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faqon .faqon_box .faqon_sea .gr form .search_box input {
  width: 100%;
  color: #333;
}
.faqon .faqon_box .faqon_sea .gr form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  width: 0.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .faqon .faqon_box .faqon_sea .gr form .search_box button {
    width: 0.3rem;
  }
}
.faqon .faqon_box .faqon_sea .gr form .search_box button svg {
  width: 100%;
  height: auto;
}
.faqon .faqon_box .faqon_sea .gr form .search_box button svg path {
  fill: #f39800;
}
.faqon .faqon_box .box {
  margin-top: 0.8rem;
}
.faqon .faqon_box .box ul li {
  border: 1px solid #ddd;
  margin-bottom: 0.2rem;
}
.faqon .faqon_box .box ul li:first-child .g_xia {
  display: block;
}
.faqon .faqon_box .box ul li.on .g_top .g_gb .i2 {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faqon .faqon_box .box ul li .g_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f7f7f7;
  padding: 0.35rem 0.4rem;
  position: relative;
  cursor: pointer;
}
.faqon .faqon_box .box ul li .g_top .g_top_l {
  width: 80%;
  align-items: center;
  display: flex;
}
.faqon .faqon_box .box ul li .g_top .g_top_l .g_qa {
  flex-shrink: 0;
  margin-right: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #f39800;
}
@media (max-width: 767px) {
  .faqon .faqon_box .box ul li .g_top .g_top_l .g_qa {
    width: 20px;
    height: 20px;
  }
}
.faqon .faqon_box .box ul li .g_top .g_top_l .g_qa span {
  color: #fff;
}
.faqon .faqon_box .box ul li .g_top .g_top_l h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.faqon .faqon_box .box ul li .g_top .g_gb {
  position: relative;
  transition: 0.4s all;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.2rem;
  width: 0.3rem;
  height: 0.3rem;
  border: 2px solid #999999;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .faqon .faqon_box .box ul li .g_top .g_gb {
    width: 20px;
    height: 20px;
    border: 1px solid #999999;
  }
}
.faqon .faqon_box .box ul li .g_top .g_gb i {
  width: calc(100%/3);
  height: 2px;
  background: #999999;
  display: block;
  position: absolute;
  transition: all 0.4s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .faqon .faqon_box .box ul li .g_top .g_gb i {
    width: 40%;
    height: 1px;
  }
}
.faqon .faqon_box .box ul li .g_top .g_gb .i2 {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faqon .faqon_box .box ul li .g_xia {
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 0.35rem 0.4rem;
  display: none;
}
.faqon .faqon_box .box ul li .g_xia .g_xia_box {
  display: flex;
}
.faqon .faqon_box .box ul li .g_xia .g_xia_box .g_qa {
  flex-shrink: 0;
  margin-right: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #111111;
}
@media (max-width: 767px) {
  .faqon .faqon_box .box ul li .g_xia .g_xia_box .g_qa {
    width: 20px;
    height: 20px;
  }
}
.faqon .faqon_box .box ul li .g_xia .g_xia_box .g_qa span {
  color: #fff;
}
.faqon .faqon_box .box ul li .g_xia .g_xia_box .g_bjq {
  color: #666;
}
.faqon .faqon_box .box .page {
  margin-top: 0.6rem;
}
/* 关于我们 */
.sub_banner_about {
  height: 100vh;
}
@media (max-width: 767px) {
  .sub_banner_about {
    height: 10rem;
  }
}
.sub_banner_about .aboutban_vid {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
@media (max-width: 767px) {
  .sub_banner_about .aboutban_vid {
    width: 1rem;
    height: 1rem;
  }
}
.sub_banner_about .aboutban_vid svg {
  width: 100%;
  height: auto;
}
.sub_banner_about .aboutban_vid svg path {
  fill: #fff;
}
.aboon {
  padding: 1.4rem 0;
}
.aboon .pub_title2 h2 {
  color: #333;
}
.aboon .box {
  margin-top: 0.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .aboon .box {
    flex-direction: column;
  }
}
.aboon .box .gl {
  width: 53.125%;
  position: sticky;
  position: -webkit-sticky;
  top: 110px;
}
@media (max-width: 991px) {
  .aboon .box .gl {
    width: 100%;
    position: initial;
  }
}
.aboon .box .gr {
  width: 37.5%;
  /* padding-top: 0.75rem; */
}
@media (max-width: 991px) {
  .aboon .box .gr {
    width: 100%;
  }
}
.aboon .box .gr .tit {
  padding-top: 0.85rem;
}
.aboon .box .gr .tit h1 {
  color: #111;
  margin-bottom: 0.3rem;
  line-height: 1;
}
.aboon .box .gr .tit .g_p p {
  color: #666666;
  line-height: 1.66;
  margin-bottom: 0.1rem;
}
.aboon .box .gr .g_num {
  margin-top: 0.75rem;
}
.aboon .box .gr .g_num .item {
  border-top: 1px solid #ddd;
  padding: 0.2rem 0 0.56rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aboon .box .gr .g_num .item .left {
  color: #f39800;
  display: flex;
  align-items: flex-end;
}
.aboon .box .gr .g_num .item .left p {
  line-height: 0.8;
  font-size: 0.8rem;
}
.aboon .box .gr .g_num .item .left span {
  margin-left: 0.1rem;
  line-height: 1.2;
}
.aboon .box .gr .g_num .item .left span i {
  font-style: initial;
}
.aboon .box .gr .g_num .item .right p {
  color: #999;
}
.aboon .box .gr .pub_btn {
  margin-top: 0.2rem;
}
.abotw {
  height: 9.7rem;
  background: url(../images/about3.jpg) no-repeat;
  background-size: cover;
}
.abotw .box {
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.abotw .box .gl {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: calc((100% - 1600px)/2);
  padding-right: 2rem;
}
@media (max-width: 1580px) {
  .abotw .box .gl {
    padding-left: 8%;
  }
}
@media (max-width: 1260px) {
  .abotw .box .gl {
    padding-left: 5%;
  }
}
@media (max-width: 991px) {
  .abotw .box .gl {
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .abotw .box .gl {
    padding: 0 5%;
  }
}
.abotw .box .gl .pub_title2 h2 {
  color: #fff;
}
@media screen and (max-width: 1380px) {
  .abotw .box .gl .pub_title2 h2 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .abotw .box .gl .pub_title2 h2 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .abotw .box .gl .pub_title2 p {
    font-size: 14px;
  }
}
.abotw .box .gl .g_p {
  margin-top: 0.46rem;
}
.abotw .box .gl .g_p p {
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767px) {
  .abotw .box .gl .g_p p {
    line-height: 1.3;
    font-size: 10px;
  }
}
.abotw .box .gr {
  width: 50%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.abotw .box .gr .swiper {
  height: 100%;
  padding: 0.8rem 0 0.1rem;
}
.abotw .box .gr .abotw_swi {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.6rem;
  height: 100%;
}
@media (max-width: 767px) {
  .abotw .box .gr .abotw_swi {
    padding: 0.2rem 0.3rem;
  }
}
.abotw .box .gr .abotw_swi::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #f39800;
  left: 0;
  top: -4px;
  position: absolute;
}
@media (max-width: 767px) {
  .abotw .box .gr .abotw_swi::after {
    top: -3px;
  }
}
.abotw .box .gr .abotw_swi span {
  display: block;
  line-height: 0.8;
}
.abotw .box .gr .abotw_swi .g_p {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767px) {
  .abotw .box .gr .abotw_swi .g_p p {
    font-size: 12px;
  }
}
.aboth {
  padding: 1.4rem 0;
}
.aboth .pub_title2 h2 {
  color: #333;
}
.aboth .box {
  margin-top: 0.75rem;
  display: flex;
}
@media (max-width: 767px) {
  .aboth .box {
    flex-direction: column;
  }
}
.aboth .box .item {
  width: 50%;
  height: 5.26rem;
  position: relative;
  overflow: hidden;
  margin-right: 0.1rem;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .aboth .box .item {
    height: 6.25rem;
  }
}
@media (max-width: 767px) {
  .aboth .box .item {
    width: 100% !important;
    margin-bottom: 0.4rem;
  }
}
.aboth .box .item:last-child {
  margin-right: 0;
}
.aboth .box .item.on {
  width: 43.75%;
  flex-shrink: 0;
}
.aboth .box .item.on .txt {
  background: url(../images/about4.png) no-repeat;
  background-size: contain;
  background-position: bottom center ;
}
.aboth .box .item.on .txt .gxs {
  opacity: 0;
}
.aboth .box .item.on .txt .gyr {
  animation: mov1 0.4s 1 forwards;
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}
.aboth .box .item .img {
  width: 100%;
  height: 100%;
}
.aboth .box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboth .box .item .txt {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.aboth .box .item .txt .gxs {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  background: rgba(2, 54, 130, 0.3);
  padding: 0.32rem 0.4rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 1260px) {
  .aboth .box .item .txt .gxs {
    padding: 0.32rem 0.2rem;
  }
}
.aboth .box .item .txt .gxs h3 {
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 1580px) {
  .aboth .box .item .txt .gxs h3 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .aboth .box .item .txt .gxs h3 br {
    display: none;
  }
}
.aboth .box .item .txt .gyr {
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0.32rem 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.aboth .box .item .txt .gyr i {
  margin-bottom: 0.34rem;
  flex-shrink: 0;
  display: flex;
  width: 0.3rem;
  height: auto;
}
@media (max-width: 767px) {
  .aboth .box .item .txt .gyr i {
    width: 0.5rem;
  }
}
.aboth .box .item .txt .gyr i svg,
.aboth .box .item .txt .gyr i img {
  width: 100%;
  height: auto;
}
.aboth .box .item .txt .gyr i svg path,
.aboth .box .item .txt .gyr i img path {
  fill: #fff;
}
.aboth .box .item .txt .gyr .txt_box h3 {
  line-height: 1.2;
  margin-bottom: 0.12rem;
}
@media (max-width: 1580px) {
  .aboth .box .item .txt .gyr .txt_box h3 {
    font-size: 20px;
  }
}
@keyframes mov1 {
  0% {
    transform: translate3d(0px, 0.4rem, 0px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0px, 0, 0px);
    opacity: 1;
  }
}
.abofo {
  padding: 1.4rem 0;
}
.abofo .pub_title2 h2 {
  color: #fff;
}
.abofo .box {
  position: relative;
  margin-top: 0.74rem;
}
.abofo .box .swiper {
  padding-bottom: 0.4rem;
}
.abofo .box .abofo_swi {
  background: #fff;
  position: relative;
}
.abofo .box .abofo_swi:hover .imgbj {
  opacity: 1;
}
.abofo .box .abofo_swi:hover .abofo_box .txt span {
  color: #fff;
}
.abofo .box .abofo_swi:hover .abofo_box .txt h3 {
  color: #fff;
}
.abofo .box .abofo_swi:hover .abofo_box i svg path {
  fill: #fff;
}
.abofo .box .abofo_swi:hover .img {
  background: #fff;
}
.abofo .box .abofo_swi .imgbj {
  transition: all 0.4s;
  opacity: 0;
}
.abofo .box .abofo_swi .imgbj:before {
  padding-top: 109.75609756%;
}
.abofo .box .abofo_swi .abofo_box {
  z-index: 10;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.58rem 0.4rem 0.28rem;
}
.abofo .box .abofo_swi .abofo_box .txt span {
  color: #f39800;
  transition: all 0.4s;
}
.abofo .box .abofo_swi .abofo_box .txt h3 {
  transition: all 0.4s;
  margin-top: 0.05rem;
  line-height: 1.28;
}
.abofo .box .abofo_swi .abofo_box i {
  transition: all 0.4s;
  opacity: 0.6;
  flex-shrink: 0;
  display: flex;
  width: 0.4rem;
  height: auto;
}
@media (max-width: 767px) {
  .abofo .box .abofo_swi .abofo_box i {
    width: 0.6rem;
  }
}
.abofo .box .abofo_swi .abofo_box i svg,
.abofo .box .abofo_swi .abofo_box i img {
  width: 100%;
  height: auto;
}
.abofo .box .abofo_swi .abofo_box i svg path,
.abofo .box .abofo_swi .abofo_box i img path {
  fill: #f39800;
  transition: all 0.4s;
}
.abofo .box .abofo_swi .img {
  z-index: 20;
  transition: all 0.4s;
  position: absolute;
  width: 2.7rem;
  height: auto;
  bottom: -0.4rem;
  right: 0.4rem;
  background: #ffe1b8;
  padding: 0.15rem;
}
@media (max-width: 1580px) {
  .abofo .box .abofo_swi .img {
    width: 3.2rem;
  }
}
@media screen and (max-width: 1380px) {
  .abofo .box .abofo_swi .img {
    width: 2.8rem;
  }
}
@media (max-width: 1260px) {
  .abofo .box .abofo_swi .img {
    width: 2rem;
  }
}
@media (max-width: 991px) {
  .abofo .box .abofo_swi .img {
    width: 2.7rem;
  }
}
@media (max-width: 767px) {
  .abofo .box .abofo_swi .img {
    width: 4rem;
  }
}
.abofo .box .abofo_swi .img .public-img:before {
  padding-top: 142.5%;
}
.abofo .box .g_qie .pub_nav:hover {
  border-color: #f39800;
  background: none;
}
.abofo .box .g_qie .pub_nav:hover svg path,
.abofo .box .g_qie .pub_nav:hover img path {
  fill: #f39800;
}
.abofi {
  padding: ;
}
.abofi .box .bbox1 {
  display: flex;
  flex-wrap: wrap;
}
.abofi .box .bbox1 > div {
  width: 25%;
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 991px) {
  .abofi .box .bbox1 > div {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .abofi .box .bbox1 > div {
    width: 100%;
  }
}
.abofi .box .bbox1 > div::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
@media (max-width: 767px) {
  .abofi .box .bbox1 > div::before {
    padding-top: 70%;
  }
}
.abofi .box .bbox1 > div .abofi_box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.abofi .box .bbox1 .pub_title2 {
  text-align: left;
  text-align: center;
}
@media (max-width: 767px) {
  .abofi .box .bbox1 .pub_title2 {
    margin-bottom: 0.7rem;
  }
}
@media (max-width: 767px) {
  .abofi .box .bbox1 .pub_title2::before {
    display: none;
  }
}
.abofi .box .bbox1 .pub_title2 .abofi_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
@media (max-width: 767px) {
  .abofi .box .bbox1 .pub_title2 .abofi_box {
    position: initial;
  }
}
.abofi .box .bbox1 .item_txt .abofi_box {
  background: #f5f6f7;
}
.abofi .box .bbox1 .item_txt .abofi_box:hover {
  background: #f39800;
}
.abofi .box .bbox1 .item_txt .abofi_box:hover .txt span,
.abofi .box .bbox1 .item_txt .abofi_box:hover .txt h3,
.abofi .box .bbox1 .item_txt .abofi_box:hover .txt p {
  color: #fff;
}
.abofi .box .bbox1 .item_txt .abofi_box:hover .txt i svg path {
  fill: #fff;
}
.abofi .box .bbox1 .item_txt .abofi_box .txt {
  overflow: hidden;
  position: relative;
  height: 100%;
  padding: 0.56rem 0.6rem;
}
@media (max-width: 1260px) {
  .abofi .box .bbox1 .item_txt .abofi_box .txt {
    padding: 0.4rem;
  }
}
.abofi .box .bbox1 .item_txt .abofi_box .txt span {
  color: #f39800;
}
.abofi .box .bbox1 .item_txt .abofi_box .txt h3 {
  margin-top: 0.3rem;
}
.abofi .box .bbox1 .item_txt .abofi_box .txt p {
  color: #666666;
  margin-top: 0.08rem;
}
.abofi .box .bbox1 .item_txt .abofi_box .txt i {
  opacity: 0.2;
  position: absolute;
  right: 0;
  bottom: -0.03rem;
  flex-shrink: 0;
  display: flex;
  width: auto;
  height: 1.24rem;
}
.abofi .box .bbox1 .item_txt .abofi_box .txt i svg,
.abofi .box .bbox1 .item_txt .abofi_box .txt i img {
  width: auto;
  height: 100%;
}
.abofi .box .bbox1 .item_txt .abofi_box .txt i svg path,
.abofi .box .bbox1 .item_txt .abofi_box .txt i img path {
  fill: #f39800;
}
.abofi .box .bbox1 .item_img {
  text-align: left;
}
.abofi .box .bbox1 .item_img:hover img {
  transform: scale(1.05);
}
.abofi .box .bbox1 .item_img .abofi_box img {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .abofi .box .bbox1 .item_txt2 {
    order: 9;
  }
}
.abofi .box .bbox1 .item_tw {
  width: 50%;
}
@media (max-width: 991px) {
  .abofi .box .bbox1 .item_tw {
    width: 100%;
    order: 10;
  }
}
.abofi .box .bbox1 .item_tw:hover img {
  transform: scale(1.05);
}
.abofi .box .bbox1 .item_tw::before {
  padding-top: 50%;
}
@media (max-width: 767px) {
  .abofi .box .bbox1 .item_tw::before {
    padding-top: 80%;
  }
}
.abofi .box .bbox1 .item_tw .abofi_box .img {
  width: 100%;
  height: 100%;
}
.abofi .box .bbox1 .item_tw .abofi_box .img img {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.abofi .box .bbox1 .item_tw .abofi_box .txt {
  position: absolute;
  width: 60%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  color: #fff;
  padding: 0.56rem 0.6rem;
}
@media (max-width: 1260px) {
  .abofi .box .bbox1 .item_tw .abofi_box .txt {
    padding: 0.4rem;
  }
}
.abofi .box .bbox1 .item_tw .abofi_box .txt h3 {
  margin-top: 0.3rem;
}
.abofi .box .bbox1 .item_tw .abofi_box .txt p {
  margin-top: 0.08rem;
}
.abosi {
  padding: 1.35rem 0 1.18rem;
  background: #f7f7f7;
}
.abosi .home_title .gl p {
  margin-top: 0.05rem;
}
.abosi .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.16rem;
  margin-top: 0.7rem;
}
.abosi .box .item {
  width: 25%;
  margin-bottom: 0.32rem;
  padding: 0 0.16rem;
}
@media (max-width: 991px) {
  .abosi .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .abosi .box .item {
    width: 100%;
  }
}
.abosi .box .item:hover .public-img img {
  transform: scale(1.05);
}
.abosi .box .item:hover .txt h3 {
  color: #f39800;
}
.abosi .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.abosi .box .item .itembox .public-img:before {
  padding-top: 69.14893617%;
}
.abosi .box .item .itembox .txt {
  background: #fff;
  padding: 0.26rem 0.3rem 0.24rem;
}
.abosi .box .item .itembox .txt span {
  color: #f39800;
}
.abosi .box .item .itembox .txt h3 {
  transition: all 0.4s;
  margin-top: 0.1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
}
/* 关于我们详情 */
.aboutinfo {
  padding: 0.8rem 0 1.5rem;
}
.aboutinfo .pub_title2 {
  margin-bottom: 0.65rem;
}
.aboutinfo .box {
  margin-top: 0.16rem;
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .aboutinfo .box {
    flex-direction: column;
    padding-top: 0.8rem;
  }
}
.aboutinfo .box .gl {
  width: 33.125%;
}
@media (max-width: 991px) {
  .aboutinfo .box .gl {
    width: 100%;
  }
}
.aboutinfo .box .gr {
  width: 66.875%;
  padding: 0.4rem 0 0;
}
@media (max-width: 991px) {
  .aboutinfo .box .gr {
    width: 100%;
    padding: 0;
  }
}
.aboutinfo .box .gr .txt {
  margin-bottom: 0.52rem;
}
.aboutinfo .box .gr .txt p {
  margin-bottom: 0.1rem;
  color: #666;
}
.aboutinfo .box .gr .img img {
  width: 100%;
}
/* 技术支持 */
.tecon {
  padding: 1.2rem 0 1.4rem;
}
.tecon .box {
  position: relative;
  margin-top: 0.75rem;
}
.tecon .box .tecon_swi {
  position: relative;
}
.tecon .box .tecon_swi:hover .public-img {
  background: #f39800;
}
.tecon .box .tecon_swi:hover .txt::after {
  opacity: 1;
}
.tecon .box .tecon_swi:hover .txt .txt_t p {
  color: #fff;
}
.tecon .box .tecon_swi .public-img {
  transition: all 0.4s;
  background: #f7f7f7;
}
.tecon .box .tecon_swi .public-img:before {
  padding-top: 105.46875%;
}
.tecon .box .tecon_swi .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 0.38rem 0.5rem 0.3rem 0.4rem;
}
.tecon .box .tecon_swi .txt::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1.3rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(255, 0, 0, 0));
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s;
  z-index: 10;
}
.tecon .box .tecon_swi .txt .txt_t {
  position: relative;
  z-index: 20;
}
.tecon .box .tecon_swi .txt .txt_t p {
  transition: all 0.4s;
  color: #f39800;
}
.tecon .box .tecon_swi .txt .txt_b {
  position: relative;
  z-index: 20;
  color: #fff;
}
.tecon .box .tecon_swi .txt .txt_b .g_h3 {
  display: flex;
  align-items: flex-end;
}
.tecon .box .tecon_swi .txt .txt_b .g_h3 h3 {
  line-height: 1.1;
  margin-right: 0.1rem;
}
.tecon .box .tecon_swi .txt .txt_b .g_p {
  display: none;
  margin-top: 0.1rem;
}
.tecon .box .tecon_swi .txt .txt_b .g_p p {
  line-height: 1.8;
  opacity: 0.6;
}
.tecon .box .g_qie .pub_nav {
  border: none;
  background: #dddddd;
}
.tecon .box .g_qie .pub_nav:hover {
  background: #f39800;
}
.tectw {
  padding: 1.35rem 0 1.3rem;
}
.tectw .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.05rem;
  margin-top: 0.75rem;
}
.tectw .box .item {
  width: 25%;
  margin-bottom: 0.1rem;
  padding: 0 0.05rem;
}
@media (max-width: 991px) {
  .tectw .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .tectw .box .item {
    width: 100%;
  }
}
.tectw .box .item .itembox {
  background: #fff;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  /* align-items: center; */
  padding: 0.5rem 0.35rem;
}
.tectw .box .item .itembox .gl .num {
  margin-bottom: 0.12rem;
  display: flex;
  align-items: flex-end;
}
.tectw .box .item .itembox .gl .num p {
  margin-right: 0.1rem;
  line-height: 0.8;
}
@media (max-width: 1260px) {
  .tectw .box .item .itembox .gl .num p {
    font-size: 0.44rem;
  }
}
@media (max-width: 767px) {
  .tectw .box .item .itembox .gl .num p {
    font-size: 0.52rem;
  }
}
.tectw .box .item .itembox .gl .num span {
  line-height: 1.2;
}
.tectw .box .item .itembox .gl .g_p {
  color: #666;
}
.tectw .box .item .itembox .gr {
  flex-shrink: 0;
}
.tectw .box .item .itembox .gr i {
  flex-shrink: 0;
  display: flex;
  width: auto;
  height: 0.6rem;
}
.tectw .box .item .itembox .gr i svg,
.tectw .box .item .itembox .gr i img {
  height: 100%;
  width: auto;
}
.tectw .box .item .itembox .gr i svg path,
.tectw .box .item .itembox .gr i img path {
  fill: #f39800;
}
.tecth {
  padding: 1.35rem 0;
}
.tecth .box {
  overflow: hidden;
  margin-top: 0.75rem;
}
.tecth .box .bbox .swiper {
  overflow: initial;
}
.tecth .box .bbox .swiper .tecth_swi {
  position: relative;
}
.tecth .box .bbox .swiper .tecth_swi .public-img:before {
  padding-top: 64.1025641%;
}
.tecth .box .bbox .swiper .tecth_swi .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  color: #fff;
  padding: 0.32rem 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.tecth .box .bbox .swiper .tecth_swi .txt p {
  opacity: 0.6;
  margin-top: 0.1rem;
  display: none;
}
.tecth .swip2_pag {
  position: initial;
  margin-top: 0.54rem;
}
.tecth .swip2_pag .swiper-pagination-bullet {
  background: #dddddd;
  opacity: 1;
  border-radius: 0;
}
.tecth .swip2_pag .swiper-pagination-bullet-active {
  background: #f39800;
}
.tecfo {
  padding: 1.1rem 0 2.2rem;
}
.tecfo .pub_title2 h2 {
  color: #fff;
}
.tecfo .box {
  color: #fff;
  padding: 1rem 0 0;
}
.tecfo .box .bbox {
  position: relative;
  margin: auto;
  width: 87.5%;
}
@media (max-width: 767px) {
  .tecfo .box .bbox {
    width: 100%;
  }
}
.tecfo .box .bbox .swiper {
  padding-top: 0.8rem;
}
.tecfo .box .bbox .swiper .swiper-slide {
  transition: all 0.4s;
}
.tecfo .box .bbox .swiper .swiper-slide-active {
  transform: translateY(-0.7rem);
}
.tecfo .box .bbox .swiper .swiper-slide-prev,
.tecfo .box .bbox .swiper .swiper-slide-next {
  transform: translateY(-0.4rem);
}
@media (max-width: 1260px) {
  .tecfo .box .bbox .g_qie {
    display: block;
  }
}
@media (max-width: 767px) {
  .tecfo .box .bbox .g_qie {
    display: none;
  }
}
.tecfo .box .bbox .g_qie .pub_nav {
  top: 84%;
  width: 1rem;
  height: 1rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border: none;
}
@media (max-width: 991px) {
  .tecfo .box .bbox .g_qie .pub_nav {
    top: 70%;
  }
}
.tecfo .box .bbox .g_qie .pub_nav:hover {
  background: #f39800;
}
.tecfo .box .bbox .g_qie .pub_nav svg,
.tecfo .box .bbox .g_qie .pub_nav img {
  width: 9%;
}
.tecfo .box .bbox .g_qie .pub_prev {
  left: -1.45rem;
}
.tecfo .box .bbox .g_qie .pub_next {
  right: -1.45rem;
}
.tecfo .box .tecfo_swi {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tecfo .box .tecfo_swi .img {
  width: 1rem;
  height: 1rem;
}
.tecfo .box .tecfo_swi .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tecfo .box .tecfo_swi .txt {
  padding: 0 0.1rem;
  margin-top: 0.16rem;
  text-align: center;
}
.tecfo .box .tecfo_swi .txt h3 {
  margin-top: 3px;
}
@media screen and (max-width: 1460px) {
  .tecfo .box .tecfo_swi .txt h3 {
    font-size: 14px;
  }
}
@media screen and (max-width: 1380px) {
  .tecfo .box .tecfo_swi .txt h3 {
    font-size: 12px;
  }
}
.conon {
  padding: 0.8rem 0 0;
}
.conon .pub_title2 {
  margin-bottom: 0.65rem;
}
.conon .pub_title2 p {
  margin-bottom: 0.05rem;
}
.conon .box {
  position: relative;
  margin-top: 0.16rem;
}
.conon .box .imgbj {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.conon .box .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conon .box .bbox {
  color: #fff;
  padding: 1.22rem 0 1.35rem;
  position: relative;
  z-index: 10;
}
.conon .box .bbox .conon_box {
  width: 44.0625%;
}
@media (max-width: 991px) {
  .conon .box .bbox .conon_box {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .conon .box .bbox .conon_box {
    width: 100%;
  }
}
.conon .box .bbox .conon_box .tit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .conon .box .bbox .conon_box .tit {
    flex-direction: column;
    align-items: flex-start;
  }
}
.conon .box .bbox .conon_box .tit .left {
  position: relative;
}
@media (max-width: 767px) {
  .conon .box .bbox .conon_box .tit .left {
    margin-bottom: 0.4rem;
  }
}
.conon .box .bbox .conon_box .tit .left::after {
  content: '';
  position: absolute;
  width: 2.88rem;
  height: 1px;
  background: #f39800;
  left: 0;
  bottom: -0.29rem;
}
.conon .box .bbox .conon_box .tit .left span {
  text-transform: uppercase;
}
.conon .box .bbox .conon_box .tit .left h2 {
  margin-top: 0.15rem;
  line-height: 1;
}
.conon .box .bbox .conon_box .box .item {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0;
}
@media (max-width: 767px) {
  .conon .box .bbox .conon_box .box .item {
    flex-direction: column;
    border: none;
    padding: 0;
  }
}
.conon .box .bbox .conon_box .box .item:last-child {
  border: none;
}
.conon .box .bbox .conon_box .box .item .g_it {
  color: #fff;
  width: 49%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .conon .box .bbox .conon_box .box .item .g_it {
    width: 100%;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.conon .box .bbox .conon_box .box .item .g_it:hover i {
  background: #f39800;
}
.conon .box .bbox .conon_box .box .item .g_it:hover .txt p {
  color: #f39800;
}
.conon .box .bbox .conon_box .box .item .g_it i {
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 0.28rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
}
@media (max-width: 1260px) {
  .conon .box .bbox .conon_box .box .item .g_it i {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.conon .box .bbox .conon_box .box .item .g_it i svg,
.conon .box .bbox .conon_box .box .item .g_it i img {
  width: 32%;
  height: auto;
}
@media (max-width: 767px) {
  .conon .box .bbox .conon_box .box .item .g_it i svg,
  .conon .box .bbox .conon_box .box .item .g_it i img {
    width: 40%;
  }
}
.conon .box .bbox .conon_box .box .item .g_it i svg path,
.conon .box .bbox .conon_box .box .item .g_it i img path {
  fill: #fff;
}
.conon .box .bbox .conon_box .box .item .g_it .txt span {
  opacity: 0.3;
}
.conon .box .bbox .conon_box .box .item .g_it .txt a {
  color: #fff;
}
.conon .box .bbox .conon_box .box .item .g_it .txt p {
  transition: all 0.4s;
}
.conon .box .bbox .conon_box .box .item .g_it .txt .g_svg {
  margin-top: 3px;
  display: flex;
  flex-wrap: wrap;
}
.conon .box .bbox .conon_box .box .item .g_it .txt .g_svg .g_svg_box {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.2rem;
}
@media (max-width: 1580px) {
  .conon .box .bbox .conon_box .box .item .g_it .txt .g_svg .g_svg_box {
    width: 14px;
    height: 14px;
  }
}
.conon .box .bbox .conon_box .box .item .g_it .txt .g_svg .g_svg_box img,
.conon .box .bbox .conon_box .box .item .g_it .txt .g_svg .g_svg_box svg {
  width: 100%;
  height: auto;
}
.conon .box .bbox .conon_box .box .item2 .g_it {
  width: 100%;
}
.contw {
  position: relative;
}
.contw .imgpng {
  position: absolute;
  width: 7.22rem;
  height: auto;
  bottom: 1.6rem;
  left: -0.3rem;
}
.contw .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .contw .box {
    flex-direction: column;
  }
}
.contw .box .tit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0.28rem;
}
@media (max-width: 991px) {
  .contw .box .tit {
    width: 100%;
  }
}
.contw .box .tit .left {
  position: relative;
}
.contw .box .tit .left span {
  color: #f39800;
  text-transform: uppercase;
}
.contw .box .tit .left h2 {
  margin-top: 0.15rem;
  line-height: 1;
}
.contw .box .gr {
  width: 53.75%;
  padding-top: 0.46rem;
}
@media (max-width: 991px) {
  .contw .box .gr {
    width: 100%;
  }
}
.contw .box .gr form .inp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contw .box .gr form .inp {
    flex-direction: column;
  }
}
.contw .box .gr form .inp .inp_box {
  width: calc(50% - 0.3rem);
  margin-bottom: 0.44rem;
}
@media (max-width: 767px) {
  .contw .box .gr form .inp .inp_box {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.contw .box .gr form .inp .inp_box .inp_txt {
  margin-bottom: 0.1rem;
}
.contw .box .gr form .inp .inp_box .inp_txt p {
  color: #111;
  font-weight: bold;
}
.contw .box .gr form .inp .inp_box .inp_txt p span {
  color: #f39800;
}
.contw .box .gr form .inp .inp_box input {
  width: 100%;
  height: 0.5rem;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 767px) {
  .contw .box .gr form .inp .inp_box input {
    height: 0.8rem;
  }
}
.contw .box .gr form .inp .inp_box .sot_select_nr .sel_text_x {
  height: 0.5rem;
}
@media (max-width: 767px) {
  .contw .box .gr form .inp .inp_box .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.contw .box .gr form .inp .inp_box .g_file .join_txt_b .hi-input-box {
  position: relative;
  display: flex;
  margin-right: 10px;
  flex-shrink: 0;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.4s all;
  width: 100%;
  height: 0.48rem;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 767px) {
  .contw .box .gr form .inp .inp_box .g_file .join_txt_b .hi-input-box {
    height: 0.8rem;
  }
}
.contw .box .gr form .inp .inp_box .g_file .join_txt_b .hi-input-box i {
  margin-right: 0.1rem;
  flex-shrink: 0;
  display: flex;
  width: 0.18rem;
  height: auto;
}
.contw .box .gr form .inp .inp_box .g_file .join_txt_b .hi-input-box i svg,
.contw .box .gr form .inp .inp_box .g_file .join_txt_b .hi-input-box i img {
  width: 100%;
  height: auto;
}
.contw .box .gr form .inp .inp_box .g_file .join_txt_b .hi-input-box i svg path,
.contw .box .gr form .inp .inp_box .g_file .join_txt_b .hi-input-box i img path {
  fill: #f39800;
}
.contw .box .gr form .inp .inp_box .g_file .join_txt_b .hi-input-box input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}
.contw .box .gr form .inp .inp_box .g_file .join_txt_b .hi-input-box .hi-text {
  color: #999999;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.contw .box .gr form .inp2 .inp_box {
  width: 100%;
}
.contw .box .gr form .inptext .inp_box textarea {
  border-bottom: 1px solid #eeeeee;
  width: 100%;
  height: 0.87rem;
  padding: 0.13rem 0;
}
@media (max-width: 767px) {
  .contw .box .gr form .inptext .inp_box textarea {
    height: 2.2rem;
  }
}
.contw .box .gr form .g_lab {
  margin-bottom: 0.25rem;
  padding-right: 0.1rem;
  color: #999999;
}
.contw .box .gr form .pub_btn {
  position: relative;
  border-color: #f39800;
  background: #f39800;
  width: calc(50% - 0.3rem);
  padding: 0 0.65rem;
}
.contw .box .gr form .pub_btn:hover {
  opacity: 0.8;
}
.contw .box .gr form .pub_btn p {
  color: #fff;
}
.contw .box .gr form .pub_btn i {
  position: absolute;
  right: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
}
.contw .box .gr form .pub_btn i svg path,
.contw .box .gr form .pub_btn i img path {
  fill: #fff;
}
/* 搜索结果页 */
.sea_top {
  background: #f5f5f5;
}
.sea_top .crumbs_box {
  background: none;
}
.sea_top .box {
  margin-top: 0.5rem;
}
.sea_top .box .g_h2 {
  text-align: center;
}
.sea_top .box .g_h2 h2 {
  line-height: 1;
}
.sea_top .box .sea_top_box {
  width: 48.75%;
  margin: 0.6rem auto 0;
}
@media (max-width: 991px) {
  .sea_top .box .sea_top_box {
    width: 100%;
  }
}
.sea_top .box .sea_top_box form .search_box {
  width: 100%;
  height: 0.6rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sea_top .box .sea_top_box form .search_box {
    height: 0.8rem;
  }
}
.sea_top .box .sea_top_box form .search_box input {
  padding: 0 0.4rem;
  width: 100%;
  color: #333;
}
.sea_top .box .sea_top_box form .search_box button {
  background: #f39800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.38rem;
  height: 100%;
}
@media (max-width: 767px) {
  .sea_top .box .sea_top_box form .search_box button {
    width: 1.8rem;
  }
}
.sea_top .box .sea_top_box form .search_box button svg {
  margin-right: 0.1rem;
  width: 0.16rem;
  height: auto;
}
@media (max-width: 767px) {
  .sea_top .box .sea_top_box form .search_box button svg {
    width: 0.24rem;
  }
}
.sea_top .box .sea_top_box form .search_box button svg path {
  fill: #fff;
}
.sea_top .box .sea_top_box form .search_box button p {
  color: #fff;
}
.sea_top .box .sea_top_box .sea_top_his {
  margin: 0.26rem 0 0.75rem;
  display: inline-flex;
  position: relative;
  padding-right: 0.4rem;
}
.sea_top .box .sea_top_box .sea_top_his .txt {
  display: flex;
  color: #999;
}
.sea_top .box .sea_top_box .sea_top_his .txt p {
  flex-shrink: 0;
}
.sea_top .box .sea_top_box .sea_top_his .txt .g_a a {
  color: #999;
  margin-right: 0.16rem;
}
.sea_top .box .sea_top_box .sea_top_his .g_del {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .sea_top .box .sea_top_box .sea_top_his .g_del {
    top: 3px;
  }
}
.sea_top .box .sea_top_box .sea_top_his .g_del svg,
.sea_top .box .sea_top_box .sea_top_his .g_del img {
  width: 13px;
  height: auto;
}
.sea_top .box .sea_top_box .sea_top_his .g_del svg path,
.sea_top .box .sea_top_box .sea_top_his .g_del img path {
  fill: #a4a4a4;
}
.seaon {
  padding: 0.6rem 0 0.5rem;
}
.seaon .seaon_tnav {
  margin-bottom: 0.45rem;
  display: flex;
  flex-wrap: wrap;
}
.seaon .seaon_tnav a {
  cursor: pointer;
  align-items: center;
  display: flex;
  height: 0.52rem;
  padding: 0 0.28rem;
  border: 1px solid #999999;
  margin: 0 0.2rem 0.1rem 0;
  color: #999;
}
@media (max-width: 767px) {
  .seaon .seaon_tnav a {
    height: 0.8rem;
    padding: 0 0.4rem;
  }
}
.seaon .seaon_tnav a.on {
  background: #f39800;
  border-color: #f39800;
  color: #fff;
}
.seaon .seaon_box .seaon_it {
  margin-bottom: 1rem;
}
.seaon .seaon_box .seaon_it .g_tit {
  padding-bottom: 0.22rem;
  /* border-bottom: 1px solid #ddd; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.seaon .seaon_box .seaon_it .g_tit .gl {
  display: flex;
  align-items: center;
}
.seaon .seaon_box .seaon_it .g_tit .gl span {
  color: #f39800;
}
.seaon .seaon_box .seaon_it .propub .proon_con .item .public-img {
  width: 25%;
}
@media (max-width: 767px) {
  .seaon .seaon_box .seaon_it .propub .proon_con .item .public-img {
    width: 32%;
  }
}
.seaon .seaon_box .seaon_it .propub .proon_con .item .txt {
  width: 75%;
}
@media (max-width: 767px) {
  .seaon .seaon_box .seaon_it .propub .proon_con .item .txt {
    width: 68%;
  }
}
.newspub .newspub_box {
  border-top: 1px solid #ddd;
}
.newspub .newspub_box .item {
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
  padding: 0.58rem 0 0.74rem;
}
@media (max-width: 767px) {
  .newspub .newspub_box .item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.newspub .newspub_box .item:hover {
  border-color: #f39800;
}
.newspub .newspub_box .item:hover .public-img img {
  transform: scale(1.05);
}
.newspub .newspub_box .item:hover .txt h3 {
  color: #f39800;
}
.newspub .newspub_box .item:hover .txt .pub_btn_two p {
  color: #f39800;
}
.newspub .newspub_box .item:hover .txt .pub_btn_two i path {
  fill: #f39800;
}
.newspub .newspub_box .item .gl {
  width: 72%;
}
@media (max-width: 767px) {
  .newspub .newspub_box .item .gl {
    width: 100%;
  }
}
.newspub .newspub_box .item .gl .txt span {
  color: #f39800;
}
.newspub .newspub_box .item .gl .txt h3 {
  transition: all 0.4s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.newspub .newspub_box .item .gl .g_tab {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
}
.newspub .newspub_box .item .gl .g_tab span {
  border: 1px solid #ddd;
  color: #999;
  padding: 0.03rem 0.2rem;
  margin: 0 0.1rem 0.05rem 0;
}
.newspub .newspub_box .item .gr {
  flex-shrink: 0;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .newspub .newspub_box .item .gr {
    margin: 0.3rem 0 0;
  }
}
.newspub .page {
  margin-top: 0.8rem;
}
.seaon_not .box {
  min-height: 3.64rem;
  padding: 0.4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
/* 网站地图 */
.site {
  padding: 0.75rem 0 1rem;
}
.site .tit {
  margin-bottom: 0.58rem;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 0.36rem;
}
.site .box {
  background: #fff;
}
.site .box .item {
  display: flex;
  padding: 0 0 0.3rem;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 767px) {
  .site .box .item {
    flex-direction: column;
  }
}
.site .box .item a:hover {
  color: #f39800 !important;
}
.site .box .item .g-la {
  font-weight: bold;
  margin-bottom: 0.15rem;
  flex-shrink: 0;
  color: #231815;
}
@media (max-width: 767px) {
  .site .box .item .g-la {
    margin-bottom: 0.2rem;
    font-size: 0.32rem;
  }
}
.site .box .item .g-twa {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.site .box .item .g-twa a {
  margin-right: 0.45rem;
  margin-bottom: 0.15rem;
  color: #666;
}
@media (max-width: 767px) {
  .site .box .item .g-twa a {
    min-width: auto;
  }
}
/* 新闻标签页 */
.newstab {
  padding: 0.78rem 0 1.4rem;
}
.newstab .box {
  margin-top: 0.32rem;
}
.newstab .box .g_num {
  margin-bottom: 0.35rem;
}
.newstab .box .g_num p {
  color: #999;
}
.newstab .box .g_num p span {
  color: #f39800;
}
.newstab .box .newspub .newspub_box .item {
  padding: 0.54rem 0;
}
/* 新闻聚合页 */
.news {
  padding: 0.78rem 0 1.4rem;
}
.news .crumbs {
  margin-top: 0.72rem;
}
.news .box .g_tit {
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  border-top: 1px solid #ddd;
}
.news .box .g_tit .g_sea {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .news .box .g_tit .g_sea {
    flex-direction: column;
    margin-bottom: 0.4rem;
  }
}
.news .box .g_tit .g_sea .gl {
  margin-bottom: 0.45rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .news .box .g_tit .g_sea .gl {
    margin-bottom: 0.3rem;
  }
}
.news .box .g_tit .g_sea .gl a {
  cursor: pointer;
  align-items: center;
  display: flex;
  height: 0.52rem;
  padding: 0 0.28rem;
  border: 1px solid #999999;
  margin: 0 0.2rem 0.1rem 0;
  color: #999;
}
@media (max-width: 767px) {
  .news .box .g_tit .g_sea .gl a {
    height: 0.8rem;
    padding: 0 0.4rem;
  }
}
.news .box .g_tit .g_sea .gl a.on {
  background: #f39800;
  border-color: #f39800;
  color: #fff;
}
.news .box .g_tit .g_sea .gr form .search_box {
  width: 2.94rem;
  height: 0.6rem;
  background: #fff;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .news .box .g_tit .g_sea .gr form .search_box {
    width: 100%;
  }
}
.news .box .g_tit .g_sea .gr form .search_box input {
  width: 100%;
  color: #333;
}
.news .box .g_tit .g_sea .gr form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  width: 0.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .news .box .g_tit .g_sea .gr form .search_box button {
    width: 0.3rem;
  }
}
.news .box .g_tit .g_sea .gr form .search_box button svg {
  width: 100%;
  height: auto;
}
.news .box .g_tit .g_sea .gr form .search_box button svg path {
  fill: #f39800;
}
.news .box .g_tit .g_tab {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .news .box .g_tit .g_tab {
    flex-direction: column;
    margin-bottom: 0.4rem;
  }
}
.news .box .g_tit .g_tab .gl {
  display: flex;
  align-items: flex-start;
  color: #999;
}
@media (max-width: 767px) {
  .news .box .g_tit .g_tab .gl {
    margin-bottom: 0.3rem;
  }
}
.news .box .g_tit .g_tab .gl p {
  margin-right: 0.14rem;
  margin-top: 0.04rem;
  flex-shrink: 0;
}
.news .box .g_tit .g_tab .gl .g_tab_box {
  display: flex;
  flex-wrap: wrap;
}
.news .box .g_tit .g_tab .gl .g_tab_box span {
  border: 1px solid #ddd;
  color: #999;
  padding: 0.03rem 0.2rem;
  margin: 0 0.1rem 0.05rem 0;
}
.news .box .g_tit .g_tab .gl .g_tab_box a {
  color: #999;
}
.news .box .g_tit .g_tab .gr p {
  color: #999;
}
.news .box .g_tit .g_tab .gr p span {
  color: #f39800;
}
.news .news_hot {
  margin: 0.8rem 0;
}
@media (max-width: 767px) {
  .news .news_hot {
    margin: 0.8rem 0 0.4rem;
  }
}
.news .news_hot .news_hot_swi {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .news .news_hot .news_hot_swi {
    flex-direction: column;
  }
}
.news .news_hot .news_hot_swi .public-img {
  width: 40%;
}
@media (max-width: 991px) {
  .news .news_hot .news_hot_swi .public-img {
    width: 100%;
  }
}
.news .news_hot .news_hot_swi .public-img:before {
  padding-top: 63.26530612%;
}
.news .news_hot .news_hot_swi .gr {
  padding-bottom: 0.56rem;
  width: 55%;
}
@media (max-width: 991px) {
  .news .news_hot .news_hot_swi .gr {
    width: 100%;
  }
}
.news .news_hot .news_hot_swi .gr .txt {
  padding-top: 0.56rem;
}
.news .news_hot .news_hot_swi .gr .txt span {
  color: #f39800;
}
.news .news_hot .news_hot_swi .gr .txt h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 0.14rem;
  line-height: 1.2;
}
.news .news_hot .news_hot_swi .gr .txt p {
  margin-top: 0.3rem;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.5em;
}
.news .news_hot .news_hot_swi .gr .pub_btn {
  margin-top: 0.45rem;
}
.news .news_hot .swip2_pag {
  right: 0;
  bottom: 0;
  left: auto;
  text-align: left;
  width: 55%;
}
@media (max-width: 991px) {
  .news .news_hot .swip2_pag {
    width: 100%;
    text-align: center;
  }
}
.news .news_hot .swip2_pag .swiper-pagination-bullet {
  background: #dddddd;
  opacity: 1;
  border-radius: 0;
  margin: 0 0.1rem 0 0;
}
@media (max-width: 991px) {
  .news .news_hot .swip2_pag .swiper-pagination-bullet {
    margin: 0 0.1rem;
  }
}
.news .news_hot .swip2_pag .swiper-pagination-bullet-active {
  background: #f39800;
}
.news .newspub .newspub_box .item {
  padding: 0.54rem 0;
}
/* 新闻详情 */
.newsinfo {
  padding: 0.8rem 0 1.45rem;
}
.newsinfo .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .newsinfo .box {
    flex-direction: column;
  }
}
.newsinfo .box .gl {
  width: 68.75%;
}
@media (max-width: 767px) {
  .newsinfo .box .gl {
    width: 100%;
  }
}
.newsinfo .box .gl h1 {
  line-height: 1.2;
}
.newsinfo .box .gl .g_lab {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.24rem;
}
.newsinfo .box .gl .g_lab p {
  color: #666;
  margin-right: 0.32rem;
}
.newsinfo .box .gl .public-content {
  padding: 0.54rem 0;
}
.newsinfo .box .gl .g_tab {
  margin-bottom: 0.15rem;
  display: flex;
  flex-wrap: wrap;
}
.newsinfo .box .gl .g_tab span {
  border: 1px solid #999999;
  color: #666;
  padding: 0.03rem 0.2rem;
  margin: 0 0.1rem 0.05rem 0;
}
.newsinfo .box .gl .g_pag {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 0.38rem;
  border-top: 1px solid #e1e1e1;
}
.newsinfo .box .gl .g_pag .fh {
  display: flex;
  align-items: center;
}
.newsinfo .box .gl .g_pag .fh:hover p {
  color: #f39800;
}
.newsinfo .box .gl .g_pag .fh p {
  color: #222;
  transition: all 0.4s;
}
.newsinfo .box .gl .g_pag .fh svg {
  width: 14px;
  height: 14px;
  margin-left: 0.15rem;
}
.newsinfo .box .gl .g_pag .fh svg path {
  fill: #f39800;
}
.newsinfo .box .gl .g_pag .pag_l,
.newsinfo .box .gl .g_pag .pag_r {
  display: flex;
  align-items: center;
  width: 40%;
}
@media (max-width: 767px) {
  .newsinfo .box .gl .g_pag .pag_l,
  .newsinfo .box .gl .g_pag .pag_r {
    width: 30%;
  }
}
.newsinfo .box .gl .g_pag .pag_l:hover span,
.newsinfo .box .gl .g_pag .pag_r:hover span {
  color: #f39800;
}
.newsinfo .box .gl .g_pag .pag_l:hover p,
.newsinfo .box .gl .g_pag .pag_r:hover p {
  color: #f39800;
}
.newsinfo .box .gl .g_pag .pag_l:hover i svg path,
.newsinfo .box .gl .g_pag .pag_r:hover i svg path {
  fill: #f39800;
}
.newsinfo .box .gl .g_pag .pag_l span,
.newsinfo .box .gl .g_pag .pag_r span {
  flex-shrink: 0;
  color: #333;
  transition: all 0.4s;
}
.newsinfo .box .gl .g_pag .pag_l p,
.newsinfo .box .gl .g_pag .pag_r p {
  transition: all 0.4s;
  width: 100%;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.newsinfo .box .gl .g_pag .pag_l i,
.newsinfo .box .gl .g_pag .pag_r i {
  flex-shrink: 0;
  display: flex;
  width: 0.13rem;
  height: auto;
}
@media (max-width: 767px) {
  .newsinfo .box .gl .g_pag .pag_l i,
  .newsinfo .box .gl .g_pag .pag_r i {
    width: 0.18rem;
  }
}
.newsinfo .box .gl .g_pag .pag_l i svg,
.newsinfo .box .gl .g_pag .pag_r i svg,
.newsinfo .box .gl .g_pag .pag_l i img,
.newsinfo .box .gl .g_pag .pag_r i img {
  width: 100%;
  height: auto;
}
.newsinfo .box .gl .g_pag .pag_l i svg path,
.newsinfo .box .gl .g_pag .pag_r i svg path,
.newsinfo .box .gl .g_pag .pag_l i img path,
.newsinfo .box .gl .g_pag .pag_r i img path {
  transition: all 0.4s;
  fill: #333;
}
.newsinfo .box .gl .g_pag .pag_l i {
  margin-right: 0.2rem;
  transform: rotate(180deg);
}
.newsinfo .box .gl .g_pag .pag_r {
  text-align: right;
  justify-content: flex-end;
}
.newsinfo .box .gl .g_pag .pag_r i {
  margin-left: 0.2rem;
}
.newsinfo .box .gr {
  width: 25%;
  position: sticky;
  position: -webkit-sticky;
  top: 110px;
  border: 1px solid #ddd;
}
@media (max-width: 767px) {
  .newsinfo .box .gr {
    width: 100%;
    position: initial;
    margin-top: 0.7rem;
  }
}
.newsinfo .box .gr .g_h3 {
  padding: 0.24rem 0.4rem;
  border-bottom: 1px solid #ddd;
}
.newsinfo .box .gr .gr_box {
  padding: 0.35rem 0.4rem 0.1rem;
}
.newsinfo .box .gr .gr_box .item {
  display: block;
  margin-bottom: 0.3rem;
}
.newsinfo .box .gr .gr_box .item span {
  color: #f39800;
}
.newsinfo .box .gr .gr_box .item h4 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* 研发创新 */
.sub_banner_rd {
  height: 6.6rem;
}
.rdon {
  padding: 1.2rem 0 1.4rem;
}
.rdon .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .rdon .box {
    flex-direction: column;
  }
}
.rdon .box .gl {
  width: 50%;
}
@media (max-width: 991px) {
  .rdon .box .gl {
    width: 100%;
  }
}
.rdon .box .gl .public-img:before {
  padding-top: 70%;
}
.rdon .box .gr {
  width: 50%;
  padding: 0 0 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .rdon .box .gr {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0;
  }
}
.rdon .box .gr .pub_title2 h2 {
  color: #111;
}
.rdon .box .gr .pub_title2 p {
  margin-bottom: 0.05rem;
}
.rdon .box .gr .txt {
  margin-top: 0.3rem;
}
.rdon .box .gr .txt .g_p {
  margin-top: 0.2rem;
}
.rdon .box .gr .txt .g_p p {
  margin-bottom: 0.1rem;
  color: #666;
}
.rdtw {
  background: #f7f7f7;
  padding: 1.2rem 0 1.4rem;
}
.rdtw .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .rdtw .box {
    flex-direction: column-reverse;
  }
}
.rdtw .box .gl {
  width: 50%;
  padding: 0 1.35rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1260px) {
  .rdtw .box .gl {
    padding-right: 0.6rem;
  }
}
@media (max-width: 991px) {
  .rdtw .box .gl {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.rdtw .box .gl .pub_title2 h2 {
  color: #111;
}
.rdtw .box .gl .pub_title2 p {
  margin-bottom: 0.05rem;
}
.rdtw .box .gl .txt {
  margin-top: 0.5rem;
}
.rdtw .box .gl .txt .g_p p {
  margin-bottom: 0.1rem;
  color: #666;
}
.rdtw .box .gl .rdtw_num {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1rem;
}
.rdtw .box .gl .rdtw_num .item {
  margin-bottom: 0.4rem;
  margin-right: 0.5rem;
}
@media (max-width: 1260px) {
  .rdtw .box .gl .rdtw_num .item {
    margin-right: 0.3rem;
  }
}
.rdtw .box .gl .rdtw_num .item:last-child {
  margin-right: 0;
}
.rdtw .box .gl .rdtw_num .item .item_t {
  color: #f39800;
  align-items: flex-end;
  display: flex;
}
.rdtw .box .gl .rdtw_num .item .item_t p {
  line-height: 0.8;
  font-size: 0.64rem;
}
@media (max-width: 1260px) {
  .rdtw .box .gl .rdtw_num .item .item_t p {
    font-size: 0.5rem;
  }
}
.rdtw .box .gl .rdtw_num .item .item_t span {
  margin-left: 0.07rem;
  margin-top: 0.05rem;
}
.rdtw .box .gl .rdtw_num .item .item_b {
  margin-top: 0.13rem;
}
.rdtw .box .gl .rdtw_num .item .item_b p {
  color: #999;
  font-size: 14px;
}
@media (max-width: 767px) {
  .rdtw .box .gl .rdtw_num .item .item_b p {
    font-size: 12px;
  }
}
.rdtw .box .gr {
  width: 50%;
}
@media (max-width: 991px) {
  .rdtw .box .gr {
    width: 100%;
  }
}
.rdtw .box .gr .public-img:before {
  padding-top: 62.5%;
}
@media (max-width: 767px) {
  .rdth {
    padding-bottom: 0.8rem;
  }
}
.rdth .box {
  margin-top: 0.75rem;
  position: relative;
}
.rdth .box .img {
  width: 100%;
  height: 7.6rem;
  position: relative;
}
@media (max-width: 767px) {
  .rdth .box .img {
    display: none;
  }
}
.rdth .box .img img {
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
  object-fit: cover;
}
.rdth .box .img img.on {
  opacity: 1;
}
.rdth .box .bbox {
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  overflow: hidden;
  display: flex;
}
@media (max-width: 767px) {
  .rdth .box .bbox {
    position: initial;
    flex-direction: column;
    background: none;
  }
}
.rdth .box .bbox .item {
  position: relative;
  height: 100%;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  width: calc(100%/3);
}
@media (max-width: 767px) {
  .rdth .box .bbox .item {
    width: 100%;
    margin-bottom: 0.6rem;
    color: #333;
    display: flex;
    flex-direction: column-reverse;
  }
}
.rdth .box .bbox .item.on .gxs {
  opacity: 0;
  transform: translateY(0.5rem);
}
.rdth .box .bbox .item.on .gyc {
  opacity: 1;
  transform: translateY(0rem);
}
.rdth .box .bbox .item .gxs {
  height: 100%;
  padding: 0.56rem 0.65rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: all 0.4s;
  text-align: center;
}
@media (max-width: 991px) {
  .rdth .box .bbox .item .gxs {
    padding: 0.3rem 0.2rem;
  }
}
@media (max-width: 767px) {
  .rdth .box .bbox .item .gxs {
    display: none;
  }
}
.rdth .box .bbox .item .gyc {
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(0.5rem);
  padding: 0.56rem 0.65rem;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 991px) {
  .rdth .box .bbox .item .gyc {
    padding: 0.3rem 0.2rem;
  }
}
@media (max-width: 767px) {
  .rdth .box .bbox .item .gyc {
    opacity: 1;
    transform: translateY(0);
    position: initial;
    padding: 0.3rem 0 0;
  }
}
.rdth .box .bbox .item .gyc h3 {
  line-height: 1.2;
}
.rdth .box .bbox .item .gyc p {
  margin-top: 0.2rem;
  opacity: 0.6;
}
.rdth .box .bbox .item .public-img {
  display: none;
}
@media (max-width: 767px) {
  .rdth .box .bbox .item .public-img {
    display: block;
  }
}
.rdth .box .bbox .item .public-img:before {
  padding-top: 47.5%;
}
/* 应用领域 */
.sub_banner_area {
  height: 6.6rem;
}
@media (max-width: 767px) {
  .sub_banner_area {
    height: 7.2rem;
  }
}
.areaon {
  background: #fff;
}
.areaon .g_nav {
  padding-top: 0.2rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .areaon .g_nav {
    margin-bottom: 0.3rem;
  }
}
.areaon .g_nav a {
  transition: all 0.4s;
  cursor: pointer;
  align-items: center;
  display: flex;
  height: 0.52rem;
  padding: 0 0.28rem;
  border: 1px solid #999999;
  margin: 0 0.2rem 0.1rem 0;
  color: #999;
}
@media (max-width: 767px) {
  .areaon .g_nav a {
    height: 0.8rem;
    padding: 0 0.4rem;
  }
}
.areaon .g_nav a.on,
.areaon .g_nav a:hover {
  background: #f39800;
  border-color: #f39800;
  color: #fff;
}
.areaontw {
  position: relative;
  background: #f5f5f5;
}
@media (max-width: 767px) {
  .areaontw {
    background: none;
  }
}
.areaontw .imgbj {
  position: sticky;
  position: -webkit-sticky;
  height: 100vh;
  top: 0;
}
.areaontw .imgbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.areaontw .container {
  margin-top: -100vh;
}
.areaontw .box {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .areaontw .box {
    flex-direction: column;
  }
}
.areaontw .box .gl {
  width: 46.875%;
  position: sticky;
  position: -webkit-sticky;
  height: 100vh;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.54rem 0.5rem 0 0;
}
@media (max-width: 767px) {
  .areaontw .box .gl {
    height: auto;
    padding: 1rem 0 0.5rem;
    width: 100%;
    position: relative;
  }
}
.areaontw .box .gl h2 {
  color: #f39800;
}
.areaontw .box .gl p {
  margin-top: 0.14rem;
  line-height: 1.2;
}
@media screen and (max-width: 1380px) {
  .areaontw .box .gl p br {
    display: none;
  }
}
.areaontw .box .gr {
  padding: 1.54rem 0 0.6rem;
  width: 53.125%;
}
@media (max-width: 767px) {
  .areaontw .box .gr {
    width: 100%;
    padding: 0.54rem 0 0.6rem;
  }
}
.areaontw .box .gr .item {
  position: relative;
  margin: 0 0 0.75rem;
}
.areaontw .box .gr .item .public-img:before {
  padding-top: 67.64705882%;
}
.areaontw .box .gr .item .public-img .span1 {
  position: absolute;
  bottom: -0.25rem;
  left: -3px;
  line-height: 0.8;
  font-size: 1rem;
  color: #fff;
  z-index: 100;
}
.areaontw .box .gr .item .txt {
  margin-top: 0.35rem;
}
.areaontw .box .gr .item .txt .txt_t p {
  color: #666;
  margin-top: 0.08rem;
}
.areaonth {
  padding: 1.35rem 0 1.4rem;
}
.areaonth .pub_title2 h2 {
  /* color: #fff; */
}
.areaonth .box {
  margin-top: 0.75rem;
}
.areaonth .box .swiper .swip2_pag {
  position: initial;
  margin-top: 0.54rem;
}
.areaonth .box .swiper .swip2_pag .swiper-pagination-bullet {
  background: #dddddd;
  opacity: 1;
  border-radius: 0;
}
.areaonth .box .swiper .swip2_pag .swiper-pagination-bullet-active {
  background: #f39800;
}
.areaonth .box .areaonth_box {
  background: #fff;
  padding: 0.6rem 0.4rem 0.34rem;
  transition: all 0.4s;
}
.areaonth .box .areaonth_box:hover {
  background: #f39800;
}
.areaonth .box .areaonth_box:hover i svg path,
.areaonth .box .areaonth_box:hover i img path {
  fill: #fff;
}
.areaonth .box .areaonth_box:hover .txt h3,
.areaonth .box .areaonth_box:hover .txt p {
  color: #fff;
}
.areaonth .box .areaonth_box i {
  margin-bottom: 0.4rem;
  flex-shrink: 0;
  display: flex;
  width: 0.6rem;
  height: auto;
}
@media (max-width: 767px) {
  .areaonth .box .areaonth_box i {
    width: 1rem;
  }
}
.areaonth .box .areaonth_box i svg,
.areaonth .box .areaonth_box i img {
  width: 100%;
  height: auto;
}
.areaonth .box .areaonth_box i svg path,
.areaonth .box .areaonth_box i img path {
  transition: all 0.4s;
  fill: #f39800;
}
.areaonth .box .areaonth_box .txt h3 {
  transition: all 0.4s;
  margin-bottom: 0.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.5em;
}
.areaonth .box .areaonth_box .txt p {
  transition: all 0.4s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
  color: #666;
}
.areaonfo {
  background: #fff;
  padding: 1.4rem 0 0;
}
.areaonfo .box {
  position: relative;
  margin-top: 0.75rem;
}
.areaonfo .box .img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
@media (max-width: 767px) {
  .areaonfo .box .img {
    display: none;
  }
}
.areaonfo .box .img img {
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
  object-fit: cover;
}
.areaonfo .box .img img.on {
  opacity: 1;
}
.areaonfo .box .bbox {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
}
.areaonfo .box .bbox .item {
  transition: all 0.4s;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: calc(100%/3);
  height: 3.8rem;
}
@media (max-width: 991px) {
  .areaonfo .box .bbox .item {
    height: 3.2rem;
  }
}
@media (max-width: 767px) {
  .areaonfo .box .bbox .item {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    width: 100%;
    background: none;
    margin-bottom: 0.5rem;
  }
}
.areaonfo .box .bbox .item.on {
  background: #f39800;
}
@media (max-width: 767px) {
  .areaonfo .box .bbox .item.on {
    background: none;
  }
}
.areaonfo .box .bbox .item .txt {
  height: 100%;
  padding: 0.55rem 0.4rem;
}
@media (max-width: 767px) {
  .areaonfo .box .bbox .item .txt {
    position: relative;
    z-index: 10;
    height: 3rem ;
    background: #f39800;
  }
}
.areaonfo .box .bbox .item .txt i {
  margin-bottom: 0.15rem;
  flex-shrink: 0;
  display: flex;
  width: 0.46rem;
  height: auto;
}
@media (max-width: 767px) {
  .areaonfo .box .bbox .item .txt i {
    width: 0.68rem;
  }
}
.areaonfo .box .bbox .item .txt i svg,
.areaonfo .box .bbox .item .txt i img {
  width: 100%;
  height: auto;
}
.areaonfo .box .bbox .item .txt i svg path,
.areaonfo .box .bbox .item .txt i img path {
  fill: #fff;
}
.areaonfo .box .bbox .item .txt .g_txt h3 {
  color: #fff;
}
.areaonfo .box .bbox .item .public-img {
  display: none;
}
@media (max-width: 767px) {
  .areaonfo .box .bbox .item .public-img {
    display: block;
  }
}
.areaonfo .box .bbox .item .public-img:before {
  padding-top: 47.5%;
}
.areaonfi .tit {
  padding: 1.4rem 0 0;
}
@media (max-width: 767px) {
  .areaonfi .tit {
    padding: 1rem 0 0;
  }
}
.areaonsi {
  margin: 0.4rem 0;
  /* background: #f9faf9 url(../images/area9.png) no-repeat;
	background-position: center bottom;
	padding: 1.4rem 0 2.8rem;
	@media @max-xs{
		padding: 1.4rem 0 ;
	}
	.box{
		display: flex;
		flex-wrap: wrap;
		margin: 0 -0.05rem;
		margin-top: 0.55rem;
		.item{
			width: calc(100%/5);
			margin-bottom: 0.1rem;
			padding: 0 0.05rem;
			@media @max-sm{
				width: 25%;
			}
			@media @max-xs{
				width: 50%;
			}
			&:hover{
				img{
					transform: scale(1.05);
				}
			}
			.itembox{
				border: 1px solid #ddd;
				display: block;
				width: 100%;
				height: 100%;
				.public-img{
					&:before{
						.bfb(padding-top,10,22)
					}
				}
			}
		}
	} */
}
.areaonsi img {
  width: 100%;
  height: auto;
}
.areaonse {
  border-top: 1px solid #ddd;
  background: #f9faf9;
}
.areaonse .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .areaonse .box {
    flex-direction: column;
  }
}
.areaonse .box .gl {
  padding: 1.35rem 0.4rem 0.4rem 0;
  width: 32.625%;
}
@media (max-width: 767px) {
  .areaonse .box .gl {
    width: 100%;
    padding: 1.2rem 0 0;
  }
}
.areaonse .box .gl .pub_title2 {
  margin-bottom: 0.74rem;
}
.areaonse .box .gl .pub_title2 p {
  margin-bottom: 0.05rem;
}
.areaonse .box .gl .g_qie {
  display: flex;
}
@media (max-width: 767px) {
  .areaonse .box .gl .g_qie {
    display: none;
  }
}
.areaonse .box .gl .g_qie .pub_nav {
  margin-right: 0.1rem;
  position: initial;
  border-color: #ddd;
}
.areaonse .box .gl .g_qie .pub_nav:hover {
  border-color: #f39800;
  background: none;
}
.areaonse .box .gl .g_qie .pub_nav:hover svg path,
.areaonse .box .gl .g_qie .pub_nav:hover img path {
  fill: #f39800;
}
.areaonse .box .gl .g_qie .pub_nav svg path,
.areaonse .box .gl .g_qie .pub_nav img path {
  fill: #9d9d9d;
}
.areaonse .box .gr {
  width: 67.375%;
}
@media (max-width: 767px) {
  .areaonse .box .gr {
    width: 100%;
  }
}
.areaonse .box .gr .swiper {
  padding-left: 5px;
}
.areaonse .box .gr .areaonse_box {
  border-left: 1px solid #ddd;
  padding: 1.56rem 0.6rem 0.3rem;
  position: relative;
}
@media (max-width: 767px) {
  .areaonse .box .gr .areaonse_box {
    border: none;
    padding: 0.7rem 0 1rem;
  }
}
.areaonse .box .gr .areaonse_box .gyh {
  position: absolute;
  width: 0.89rem;
  height: auto;
  right: 0.6rem;
  top: 0.6rem;
  display: none;
}
@media (max-width: 767px) {
  .areaonse .box .gr .areaonse_box .gyh {
    top: 0.3rem;
  }
}
.areaonse .box .gr .areaonse_box .g_head {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  margin-bottom: 0.15rem;
  position: relative;
}
.areaonse .box .gr .areaonse_box .g_head::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 0.47rem;
  background: #f39800;
  left: calc(-0.6rem - 2px);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .areaonse .box .gr .areaonse_box .g_head::after {
    display: none;
  }
}
.areaonse .box .gr .areaonse_box .txt h3 {
  margin-bottom: 0.24rem;
}
.areaonse .box .gr .areaonse_box .txt .g_p {
  overflow: auto;
  padding-right: 0.2rem;
  height: 2.7rem;
}
@media (max-width: 1580px) {
  .areaonse .box .gr .areaonse_box .txt .g_p {
    height: 3.4rem;
  }
}
@media (max-width: 767px) {
  .areaonse .box .gr .areaonse_box .txt .g_p {
    height: auto;
  }
}
.areaonse .box .gr .areaonse_box .txt .g_p p {
  color: #666;
  margin-bottom: 0.1rem;
}
.areaonen {
  background: #fff;
}
.areaonen .box .item .itembox .txt {
  background: #f7f7f7;
}
/* 责任供应链 */
.chain {
  padding: 0.78rem 0 0;
}
.chain .crumbs {
  margin-top: 0.72rem;
}
.chain .box {
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  border-top: 1px solid #ddd;
}
.chainon {
  padding: 1rem 0 ;
  overflow: hidden;
}
.chainon .g_tit {
  display: flex;
  position: relative;
}
@media (max-width: 767px) {
  .chainon .g_tit {
    flex-direction: column;
  }
}
.chainon .g_tit .chainon_you {
  position: absolute;
  right: -1.6rem;
  top: -0.6rem;
}
@media (max-width: 767px) {
  .chainon .g_tit .chainon_you {
    position: relative;
    right: auto;
    top: auto;
    display: none;
  }
}
.chainon .g_tit .chainon_you .item {
  cursor: pointer;
  position: absolute;
  display: flex;
}
.chainon .g_tit .chainon_you .item:hover p {
  color: #f39800;
}
.chainon .g_tit .chainon_you .item i {
  width: 10px;
  height: 10px;
  background: #f39800;
  display: block;
}
.chainon .g_tit .chainon_you .item p {
  transition: all 0.4s;
  position: absolute;
  top: calc(100% + 0.06rem);
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
}
.chainon .g_tit .chainon_you .item1 {
  top: 13.2%;
  left: 53%;
}
.chainon .g_tit .chainon_you .item2 {
  top: 24.2%;
  left: 70%;
}
.chainon .g_tit .chainon_you .item3 {
  top: 32.2%;
  left: 84%;
}
.chainon .box {
  margin: 0 -0.2rem;
  margin-top: 0.72rem;
}
.chainon .box .box_it {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.chainon .box .item {
  height: 5rem;
  width: 50%;
  margin-bottom: 0.4rem;
  padding: 0 0.2rem;
}
@media (max-width: 991px) {
  .chainon .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .chainon .box .item {
    width: 100%;
  }
}
.chainon .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.chainon .box .item .itembox .img {
  width: 100%;
  height: 5rem;
}
.chainon .box .item .itembox .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chainon .box .item .itembox .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  color: #fff;
  padding: 0.32rem 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.chainon .box .item .itembox .txt p {
  margin-top: 0.1rem;
  display: none;
}
.chaintw .g_tit {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .chaintw .g_tit {
    flex-direction: column;
  }
}
.chaintw .g_tit .g_p {
  /* padding-top: 0.36rem; */
  width: 65.3125%;
}
@media (max-width: 767px) {
  .chaintw .g_tit .g_p {
    width: 100%;
  }
}
.chaintw .g_tit .g_p p {
  color: #fff;
  opacity: 0.6;
}
.chainth {
  background: url(../images/supplyChain4.jpg) no-repeat;
  background-size: cover;
  padding: 1.4rem 0 1.3rem;
}
.chainth .box {
  margin-top: 0.7rem;
}
.chainth .box .chainth_box {
  margin: auto;
  width: 7rem;
  height: 7rem;
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  padding: 0.5rem;
  position: relative;
}
.chainth .box .chainth_box .imgbj {
  position: absolute;
  width: 11rem;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: initial;
  pointer-events: none;
}
@media (max-width: 767px) {
  .chainth .box .chainth_box .imgbj {
    display: none;
  }
}
.chainth .box .chainth_box .chainth_posi .item {
  width: 1px;
  height: 1px;
  position: absolute;
  display: flex;
  align-items: center;
}
.chainth .box .chainth_box .chainth_posi .item.on .g_svg {
  background: #f39800;
}
.chainth .box .chainth_box .chainth_posi .item.on .g_svg svg path,
.chainth .box .chainth_box .chainth_posi .item.on .g_svg img path {
  fill: #fff;
}
.chainth .box .chainth_box .chainth_posi .item .g_svg {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #dddddd;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .chainth .box .chainth_box .chainth_posi .item .g_svg {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.chainth .box .chainth_box .chainth_posi .item .g_svg svg,
.chainth .box .chainth_box .chainth_posi .item .g_svg img {
  width: auto;
  height: 50%;
}
.chainth .box .chainth_box .chainth_posi .item .g_svg svg path,
.chainth .box .chainth_box .chainth_posi .item .g_svg img path {
  transition: all 0.4s;
  fill: #999999;
}
.chainth .box .chainth_box .chainth_posi .item .txt {
  white-space: nowrap;
  position: absolute;
  left: calc(0.6rem + 0.2rem);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .chainth .box .chainth_box .chainth_posi .item .txt {
    display: none;
  }
}
.chainth .box .chainth_box .chainth_posi .item .txt span {
  color: #f39800;
}
.chainth .box .chainth_box .chainth_posi .item1 {
  right: 21%;
  top: 13%;
}
@media (max-width: 767px) {
  .chainth .box .chainth_box .chainth_posi .item1 {
    right: 18%;
  }
}
.chainth .box .chainth_box .chainth_posi .item2 {
  right: 21%;
  top: 88%;
}
@media (max-width: 767px) {
  .chainth .box .chainth_box .chainth_posi .item2 {
    right: 18%;
  }
}
.chainth .box .chainth_box .chainth_posi .item3 {
  right: 88%;
  top: 13%;
}
@media (max-width: 767px) {
  .chainth .box .chainth_box .chainth_posi .item3 {
    right: 93%;
  }
}
.chainth .box .chainth_box .chainth_posi .item3 .txt {
  right: 0.2rem;
  left: auto;
  text-align: right;
}
.chainth .box .chainth_box .chainth_posi .item4 {
  right: 88%;
  top: 88%;
}
@media (max-width: 767px) {
  .chainth .box .chainth_box .chainth_posi .item4 {
    right: 93%;
  }
}
.chainth .box .chainth_box .chainth_posi .item4 .txt {
  right: 0.2rem;
  left: auto;
  text-align: right;
}
.chainth .box .chainth_box .chainth_con {
  padding: 0.45rem;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.4rem solid rgba(0, 0, 0, 0.05);
}
.chainth .box .chainth_box .chainth_con .chainth_nr {
  background: url(../images/supplyChain6.jpg) no-repeat;
  background-size: cover;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 0 0.3rem rgba(243, 152, 0, 0.6);
  position: relative;
  width: 100%;
  height: 100%;
}
.chainth .box .chainth_box .chainth_con .chainth_nr .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.6rem 0.44rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 1260px) {
  .chainth .box .chainth_box .chainth_con .chainth_nr .item {
    padding: 0.5rem 0.4rem 0.2rem;
  }
}
@media (max-width: 767px) {
  .chainth .box .chainth_box .chainth_con .chainth_nr .item {
    padding: 0.2rem 0.3rem 0.2rem;
  }
}
.chainth .box .chainth_box .chainth_con .chainth_nr .item.on {
  position: relative;
  opacity: 1;
}
.chainth .box .chainth_box .chainth_con .chainth_nr .item h3 {
  line-height: 1.285;
  margin-top: 0.2rem;
}
@media (max-width: 767px) {
  .chainth .box .chainth_box .chainth_con .chainth_nr .item h3 {
    margin-top: 0.15rem;
  }
}
.chainth .box .chainth_box .chainth_con .chainth_nr .item p {
  margin-top: 0.2rem;
  line-height: 1.75;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media (max-width: 767px) {
  .chainth .box .chainth_box .chainth_con .chainth_nr .item p {
    line-height: 1.5;
  }
}
.chainfo {
  color: #fff;
  padding: 1.35rem 0 1.4rem;
}
.chainfo .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .chainfo .box {
    flex-direction: column;
  }
}
.chainfo .box .gl {
  width: 34.375%;
}
@media (max-width: 991px) {
  .chainfo .box .gl {
    width: 100%;
  }
}
.chainfo .box .gl .pub_title2 h2 {
  color: #fff;
}
.chainfo .box .gl .g_p {
  margin-top: 0.3rem;
}
.chainfo .box .gl .g_p p {
  opacity: 0.6;
}
.chainfo .box .gr {
  width: 53.75%;
  padding-top: 0.4rem;
}
@media (max-width: 991px) {
  .chainfo .box .gr {
    width: 100%;
  }
}
.chainfo .box .gr form .inp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .chainfo .box .gr form .inp {
    flex-direction: column;
  }
}
.chainfo .box .gr form .inp .inp_box {
  width: calc(50% - 0.3rem);
  margin-bottom: 0.44rem;
}
@media (max-width: 767px) {
  .chainfo .box .gr form .inp .inp_box {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.chainfo .box .gr form .inp .inp_box .inp_txt {
  margin-bottom: 0.1rem;
}
.chainfo .box .gr form .inp .inp_box .inp_txt p {
  color: #fff;
  /* font-weight: bold; */
}
.chainfo .box .gr form .inp .inp_box .inp_txt p span {
  color: #f39800;
}
.chainfo .box .gr form .inp .inp_box input {
  width: 100%;
  height: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.chainfo .box .gr form .inp .inp_box input::-webkit-input-placeholder {
  color: #7185a5;
}
@media (max-width: 767px) {
  .chainfo .box .gr form .inp .inp_box input {
    height: 0.8rem;
  }
}
.chainfo .box .gr form .inp2 .inp_box {
  width: 100%;
}
.chainfo .box .gr form .inptext .inp_box textarea {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 0.87rem;
  padding: 0.13rem 0;
}
.chainfo .box .gr form .inptext .inp_box textarea::-webkit-input-placeholder {
  color: #7185a5;
}
@media (max-width: 767px) {
  .chainfo .box .gr form .inptext .inp_box textarea {
    height: 2.2rem;
  }
}
.chainfo .box .gr form .pub_btn {
  position: relative;
  border-color: #f39800;
  background: #f39800;
}
.chainfo .box .gr form .pub_btn:hover {
  opacity: 0.8;
}
.chainfo .box .gr form .pub_btn p {
  color: #fff;
}
.chainfo .box .gr form .pub_btn i svg path,
.chainfo .box .gr form .pub_btn i img path {
  fill: #fff;
}
/* 新增2024.12.2 */
.gpop {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  /* display: none; */
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.gpop > * {
  transition: all 0.4s;
}
.gpop .pop_a {
  width: 48px;
  height: 48px;
  position: relative;
  display: block;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f39800;
}
.gpop .pop_a:last-child {
  border: none;
}
@media (max-width: 767px) {
  .gpop .pop_a {
    /* margin-top: 10px; */
  }
}
.gpop .pop_a.on {
  background: #fff;
}
.gpop .pop_a.on .pop_text {
  transform: translateY(-50%) scale(1);
  -webkit-transform: translateY(-50%) scale(1);
}
.gpop .pop_a.on .pop_a_img svg path {
  fill: #969696;
}
.gpop .pop_a.on .pop_a_img p {
  color: #969696;
}
.gpop .pop_a img {
  z-index: 100;
}
.gpop .pop_a .pop_a_img {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gpop .pop_a .pop_a_img svg {
  width: calc(100%/3);
  height: auto;
}
.gpop .pop_a .pop_a_img svg path {
  fill: #fff;
}
.gpop .pop_a .pop_a_img p {
  font-size: 12px;
  margin-top: 5px;
}
.gpop .pop_a .pop_text {
  position: absolute;
  top: 50%;
  right: 100%;
  background: #fff;
  transition: all 0.4s;
  z-index: 1;
  transform: translateY(-50%) scale(0);
  -webkit-transform: translateY(-50%) scale(0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  width: 460px;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text {
    width: 82vw;
    top: -1rem;
    max-height: 80vh;
    overflow: auto;
  }
}
.gpop .pop_a .pop_text .gpopbox {
  width: 100%;
}
.gpop .pop_a .pop_text .gpopbox .gpop_t {
  position: relative;
  background: url(../images/popr.jpg) no-repeat;
  background-size: cover;
  padding: 0.34rem 0.2rem 0.85rem;
}
.gpop .pop_a .pop_text .gpopbox .gpop_t h2 {
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}
.gpop .pop_a .pop_text .gpopbox .gpop_t p {
  color: #fff;
}
.gpop .pop_a .pop_text .gpopbox .gpop_t .gdel {
  position: absolute;
  width: 14px;
  height: 14px;
  right: 0.1rem;
  top: 0.1rem;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gpop .pop_a .pop_text .gpopbox .gpop_t .gdel svg {
  width: 100%;
}
.gpop .pop_a .pop_text .gpopbox .gpop_t .gdel svg path {
  fill: #fff;
}
.gpop .pop_a .pop_text .gpopbox .gpop_b {
  position: relative;
  z-index: 10;
  width: calc(100% - 0.4rem);
  margin: 0 0.2rem;
  background: #fff;
  margin-top: -0.6rem;
  padding: 0 0 0.2rem;
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .ginpbox {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 0.14rem;
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .inp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text .gpopbox .gpop_b form .inp {
    flex-direction: column;
  }
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .inp .inp_box {
  width: calc(50% - 0.2rem);
  margin-bottom: 0.11rem;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text .gpopbox .gpop_b form .inp .inp_box {
    width: 100%;
  }
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .inp .inp_box .inp_txt {
  margin-bottom: 0.08rem;
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .inp .inp_box .inp_txt p {
  color: #021d49;
  font-weight: bold;
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .inp .inp_box .inp_txt p span {
  color: #f39800;
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .inp .inp_box input {
  padding: 0 0.13rem;
  width: 100%;
  height: 40px;
  border: 1px solid #dddddd;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text .gpopbox .gpop_b form .inp .inp_box input {
    height: 0.8rem;
  }
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .inp .inp_box .sot_select_nr .sel_text_x {
  height: 0.5rem;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text .gpopbox .gpop_b form .inp .inp_box .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .inp2 .inp_box {
  width: 100%;
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .inptext .inp_box textarea {
  border: 1px solid #eeeeee;
  border-radius: 0.1rem;
  width: 100%;
  height: 1.02rem;
  padding: 0.13rem 0.18rem;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text .gpopbox .gpop_b form .inptext .inp_box textarea {
    height: 2.2rem;
  }
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .g_lab {
  margin-bottom: 0.25rem;
  padding-right: 0.1rem;
  color: #999999;
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .pub_btn {
  position: relative;
  width: 100%;
  margin-top: 0.2rem;
  height: 40px;
  padding: 0 0.65rem;
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .pub_btn:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text .gpopbox .gpop_b form .pub_btn {
    height: 0.8rem;
  }
}
.gpop .pop_a .pop_text .gpopbox .gpop_b form .pub_btn i {
  position: absolute;
  right: 0.14rem;
  top: 50%;
  transform: translateY(-50%);
}
