@charset "utf-8";
:root {
  --color: #144e99;
  --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: 2px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 2px;
}
html ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  background: #fbd26a;
}
html ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  border-radius: 3px;
  background: #e8e8e8;
}
@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: #333;
  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: #333;
  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: 80%;
  max-width: 1400px;
}
@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: #144e99;
}
.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: 1.68rem;
}
@media (max-width: 1260px) {
  #c-placeholder {
    height: 60px;
  }
}
.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: #144e99;
  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: #144e99;
}
#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: #144e99;
}
/*顶部移动端导航*/
#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: #144e99;
}
#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: #144e99;
}
#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: #144e99;
  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: #144e99;
}
#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: #144e99;
  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: #144e99;
}
#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: #144e99;
}
#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: #144e99;
}
#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: #144e99;
}
@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: #144e99;
}
#c-footer .c-bottom-box .container .c-copyright {
  word-wrap: break-word;
  word-break: break-all;
}
/*首页内容1*/
.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-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 .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0.4rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination {
    bottom: 0.6rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  width: 0.6rem;
  height: 3px;
  vertical-align: top;
  margin: 0 0.1rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0.1rem;
    width: 0.3rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet div {
  height: 100%;
  background: #144e99;
  width: 0%;
  transition-delay: 0s;
  transition-timing-function: linear;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active div {
  width: 100%;
}
/* 自己的公共样式 */
/*过渡*/
a {
  text-decoration: initial;
}
input::-webkit-input-placeholder {
  color: #999;
}
textarea::-webkit-input-placeholder {
  color: #999;
}
/* 字体 */
@font-face {
  font-family: 'pop';
  src: url(../font/POPPINS-REGULAR.ttf);
}
.font-pop {
  font-family: 'pop', '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: #fff;
  /* border-bottom: 1px solid rgba(222,229,236,0.5); */
  /* show_nav 子页面导航class */
  /* nav_on 导航不在顶部后移入加上移除去掉的class */
  /* nav_on2 导航不在顶部后固定的class */
  /* 搜索下拉 */
}
nav.show_nav {
  background: none;
}
nav.show_nav .nav_top {
  background: none;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_top {
    background: #144e99;
  }
}
@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: #fff !important;
}
@media (max-width: 1260px) {
  nav.show_nav svg path {
    fill: #fff !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: #fff !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path {
  fill: #fff !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p {
  color: #144e99 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after {
  background: #144e99 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path {
  fill: #144e99 !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: #144e99;
  }
}
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: #144e99;
  }
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #fff !important;
}
nav.nav_on,
nav.nav_on2 {
  background: #fff !important;
}
nav.nav_on svg path,
nav.nav_on2 svg path {
  fill: #333 !important;
}
nav.nav_on .nav_top,
nav.nav_on2 .nav_top {
  background: #144e99;
}
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: #333 !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: #333 !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: #fbd26a !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: #fbd26a !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: #fbd26a !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: #fbd26a !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: #144e99;
}
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: #144e99;
}
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: #144e99;
  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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 1.68rem;
  position: relative;
  margin: auto;
  /* .g_only{
			display: none;
			position: absolute;
			
			left: 50%;
			top: 0;
			transform: translateX(-50%);
			height: 70px;
			@media @max-lg{
				height: 60px;
			}
			@media @max-xs{
				width: 46vw;
			}
			.g_only_box{
				height: 100%;
				display: flex;
				align-items: center;
				justify-content: center;
			}
			p{
				color: #666;
				@media @max-xs{
					font-size: 12px;
					text-align: center;
				}
			}
			i{
				cursor: pointer;
				margin-left: 0.4rem;
				flex-shrink: 0;
				display: flex;
				align-items: center;
				justify-content: center;
				width: 11px;
				height: auto;
				color: #666;
				@media @max-md{
					width: 9px;
				}
				@media @max-xs{
					width: 8px;
					margin-left: 12px;
				}
				svg,img{
					width: 100%;
					height: auto;
					path{
						fill: #666;
					}
				}
			}
			
		} */
  /* logo */
  /* 导航右侧 */
}
@media (max-width: 1260px) {
  nav .nav_ljbox {
    height: 60px;
    width: 100%;
    padding: 0 5%;
  }
}
nav .nav_ljbox .nav_l_box {
  display: flex;
  align-items: flex-end;
  transition: all 0.4s;
}
nav .nav_ljbox .nav_l_box .logo {
  /* margin-bottom: 0.33rem; */
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_l_box .logo {
    margin-bottom: 0;
  }
  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.15rem;
  height: auto;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_l_box .logo img {
    width: 1rem;
  }
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo img {
    width: 1.4rem;
  }
}
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_l_box .g_only_box {
  margin-left: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .nav_ljbox .nav_l_box .g_only_box p {
  color: #666;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .g_only_box p {
    font-size: 12px;
    /* text-align: center; */
  }
}
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;
  flex-direction: column-reverse;
  align-items: flex-end;
  /* 导航右边内容 */
}
nav .nav_ljbox .nav_r_box .nav_r .navbox {
  margin-top: 0.19rem;
  height: 100%;
}
@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 {
  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: #fbd26a !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: 100%;
}
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: #fbd26a !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: #333;
  margin: 0 0 0 0.62rem;
  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: #333;
}
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 {
  transition: all 0.4s;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: #333;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p::after {
  transition: all 0.4s;
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  left: 50%;
  background: #fbd26a;
  transform: translateX(-50%);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr {
  height: 70px;
}
@media (max-width: 1580px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr {
    height: 60px;
  }
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr {
    height: 100%;
  }
}
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-right: 0.26rem;
  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.19rem;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg path {
  fill: #333;
}
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: #333;
}
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: #333;
}
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: #144e99;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search {
  position: relative;
  width: 2rem;
  /* background: #fff; */
  /* border-radius: 5px; */
  margin-top: 0.37rem;
}
@media (max-width: 1580px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search {
    width: 3rem;
  }
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  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 .nav_search_a {
  display: flex;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_a svg {
  width: 15px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_a svg path {
  fill: #333;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form {
  padding: 0 0 0.1rem 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #b2b2b2;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form button {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form button svg {
  margin-left: 0.1rem;
  width: 19px;
  height: auto;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form button svg {
    width: 15px;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form button svg path {
  fill: #164f9a;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search form input {
  width: 100%;
}
nav .g_navsearch {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100%);
  width: 100%;
  box-shadow: 0 0 0.24rem rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
  padding: 0.76rem 2rem 1rem;
  color: #222222;
  display: none;
}
nav .g_navsearch .sea_tit {
  margin-bottom: 0.56rem;
  display: flex;
  justify-content: space-between;
}
nav .g_navsearch .sea_tit h2 {
  line-height: 1.2;
  color: #4b5053;
  font-weight: bold;
}
nav .g_navsearch .f_close {
  display: block;
  width: 0.2rem;
  height: 0.2rem;
  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: #999999;
}
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.2rem;
  border-bottom: 1px solid #e5e5e5;
}
@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;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form input {
    width: calc(100% - 0.36rem);
  }
}
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: #FBD26A !important;
}
nav .g_navsearch .f_cont .f_form .f_sub:hover svg path {
  fill: #144e99;
}
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;
  color: #999;
}
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 {
  height: 0.4rem;
  margin-bottom: 10px;
  color: #999;
  border: 1px solid #b2b2b2;
  background-color: #fff;
  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: #fbd26a;
  border-color: #fbd26a;
}
/* 导航各种效果 */
.nav1_none {
  top: -0.88rem !important;
}
.nav1_none .nav_l_box {
  opacity: 0;
}
.nav2_none {
  top: 100px !important;
}
.nav2_none .nav_l_box {
  opacity: 0;
}
@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;
  /* display: block !important; */
  position: absolute;
  width: 100%;
  height: auto;
  top: calc(100%);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  z-index: 100;
}
.pro_nav3 .pro_nav3_box {
  background: #fff;
  display: flex;
  justify-content: space-between;
}
.pro_nav3 .pro_nav3_box.selcon .gl .gl_fl {
  padding-bottom: 1.26rem;
}
.pro_nav3 .pro_nav3_box .gl {
  width: 90%;
  display: flex;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 0.55rem;
  background: #f8f8f8;
  width: 33.33333333%;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box {
  width: 100%;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a {
  width: 100%;
  display: block;
  padding: 0 0.4rem;
  transition: all 0.4s;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a:hover .g_a p {
  color: #FBD26A;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a:hover .g_a i svg path,
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a:hover .g_a i img path {
  fill: #FBD26A !important;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a.on {
  background: #fbd26a;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a.on .g_a p {
  color: #fff;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a.on .g_a i {
  transform: rotate(-45deg);
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a.on .g_a i svg path,
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a.on .g_a i img path {
  fill: #fff !important;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a .g_a {
  padding: 0.1rem 0.14rem 0.1rem 0;
  min-height: 0.78rem;
  height: 100%;
  border-bottom: 1px solid #dfdfdf;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a .g_a p {
  transition: all 0.4s;
  color: #999;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a .g_a i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  width: 0.14rem;
  height: auto;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a .g_a i svg,
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a .g_a i img {
  width: 100%;
  height: auto;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a .g_a i svg path,
.pro_nav3 .pro_nav3_box .gl .gl_fl .gl_fl_box a .g_a i img path {
  transition: all 0.4s;
  fill: #999999 !important;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .procon_more {
  margin-top: 1.22rem;
  padding: 0 0.4rem;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .procon_more .pub_btn p {
  color: #FBD26A;
}
.pro_nav3 .pro_nav3_box .gl .gl_fl .procon_more .pub_btn i svg path {
  fill: #FBD26A !important;
}
.pro_nav3 .pro_nav3_box .gl .selbox {
  width: 66.66666667%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
}
.pro_nav3 .pro_nav3_box .gl .selbox .selbox_con {
  padding: 0.25rem 0.6rem;
}
.pro_nav3 .pro_nav3_box .gl .selbox .selbox_con .seleng_a .ttit {
  margin-bottom: 0.3rem;
  padding-bottom: 0.26rem;
  border-bottom: 1px solid #e5e5e5;
}
.pro_nav3 .pro_nav3_box .gl .selbox .selbox_con .seleng_a .ttit h2 {
  font-weight: bold;
}
.pro_nav3 .pro_nav3_box .gl .selbox .selbox_con .seleng_a .txt:hover .public-img img {
  transform: scale(1.05);
}
.pro_nav3 .pro_nav3_box .gl .selbox .selbox_con .seleng_a .txt:hover .txt h3 {
  color: #144e99 !important;
}
.pro_nav3 .pro_nav3_box .gl .selbox .selbox_con .seleng_a .txt .public-img:before {
  padding-top: 36.11111111%;
}
.pro_nav3 .pro_nav3_box .gl .selbox .selbox_con .seleng_a .txt .g_p {
  margin-top: 0.22rem;
}
.pro_nav3 .pro_nav3_box .gl .selbox .selbox_con .seleng_a .txt .g_p p {
  color: #666;
  /* overflow: hidden;
									display: -webkit-box;
									-webkit-box-orient: vertical;
									-webkit-line-clamp: 2;
									height: 3em; */
}
.pro_nav3 .pro_nav3_box .gl .selbox .selnews .seleng_a .txt .pub_btn {
  margin: 0.3rem 0 0.4rem;
}
.pro_nav3 .pro_nav3_box .gl .selbox .selbox_b {
  width: 100%;
  margin-top: 0.36rem;
  /* padding: 0 0.6rem 0.96rem; */
}
.pro_nav3 .pro_nav3_box .gl .selbox .selbox_b .selbox_b_h3 {
  margin-bottom: 0.22rem;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid #e5e5e5;
}
.pro_nav3 .pro_nav3_box .gl .selbox .selbox_b .selbox_b_lab {
  display: flex;
  flex-wrap: wrap;
}
.pro_nav3 .pro_nav3_box .gl .selbox .selbox_b .selbox_b_lab a {
  transition: all 0.4s;
  margin: 0 0.35rem 0.2rem 0;
  min-width: 9em;
  color: #666;
}
.pro_nav3 .pro_nav3_box .gl .selbox .selbox_b .selbox_b_lab a:hover {
  color: #FBD26A;
  text-decoration: underline;
}
.pro_nav3 .pro_nav3_box .gr {
  width: 10%;
  background: #f8f8f8;
  padding: 0 0.3rem;
}
.pro_nav3 .pro_nav3_box .gr .git {
  padding-bottom: 0.26rem;
  border-bottom: 1px solid #dfdfdf;
  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pro_nav3 .pro_nav3_box .gr .git i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  background: #dfdfdf;
  border-radius: 50%;
}
.pro_nav3 .pro_nav3_box .gr .git i svg,
.pro_nav3 .pro_nav3_box .gr .git i img {
  width: 52%;
  height: auto;
}
.pro_nav3 .pro_nav3_box .gr .git i svg path,
.pro_nav3 .pro_nav3_box .gr .git i img path {
  fill: #a5a5a5;
}
.pro_nav3 .pro_nav3_box .gr .git p {
  margin-top: 0.1rem;
  color: #666;
}
/* 移动端导航 */
#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: #144e99;
}
#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);
}
.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: 1.68rem;
}
.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.2rem;
}
.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.12rem;
}
.foot_nav ul li a {
  color: #999;
}
/* 网站地图 */
.g-mapon {
  padding: 0.7rem 0 1.26rem;
}
.g-mapon .g-tit {
  text-align: center;
}
.g-mapon .g-tit h2 {
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .g-mapon .g-tit h2 {
    font-size: 0.48rem;
  }
}
.g-mapon .box {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-top: 2px solid #e7e7e7;
  margin-top: 0.58rem;
}
@media (max-width: 767px) {
  .g-mapon .box {
    flex-direction: column;
  }
}
.g-mapon .box .item {
  max-width: 5em;
  padding: 0.45rem 0 0.3rem;
  position: relative;
}
@media (max-width: 1580px) {
  .g-mapon .box .item {
    max-width: 6em;
  }
}
@media (max-width: 767px) {
  .g-mapon .box .item {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
  }
}
.g-mapon .box .item a {
  transition: all 0.4s;
}
.g-mapon .box .item a:hover {
  color: #FBD26A !important;
}
.g-mapon .box .item .g-la {
  font-weight: bold;
  display: block;
  margin-bottom: 0.3rem;
  flex-shrink: 0;
  color: #231815;
}
@media (max-width: 767px) {
  .g-mapon .box .item .g-la {
    margin-bottom: 0.2rem;
    font-size: 0.32rem;
  }
}
.g-mapon .box .item .g-twa {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.g-mapon .box .item .g-twa a {
  white-space: nowrap;
  min-width: 1.8rem;
  margin-right: 0.2rem;
  margin-bottom: 0.3rem;
  padding-right: 0.2rem;
  color: #666;
}
@media (max-width: 1260px) {
  .g-mapon .box .item .g-twa a {
    white-space: normal;
  }
}
@media (max-width: 767px) {
  .g-mapon .box .item .g-twa a {
    min-width: auto;
  }
}
/* 免责声明 */
.g-pri {
  padding: 0.65rem 0 1.6rem;
}
.g-pri .box .tit {
  margin-bottom: 0.35rem;
  text-align: center;
}
.g-pri .box .tit h2 {
  font-weight: bold;
  margin-bottom: 0.15rem;
}
.g-pri .box .tit .g-p {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.g-pri .box .tit .g-p p {
  color: #666;
  margin: 0 0.18rem;
}
.g-pri .box .public-content {
  overflow: hidden;
}
.g-pri .box .public-content span {
  word-break: break-all;
}
.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 {
  margin-top: 0.2rem;
  color: #999;
}
.pub_btn {
  min-width: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 0.5rem;
  padding: 0 0.28rem;
  /* border-radius: 100px; */
  overflow: hidden;
  background: #fbd26a;
  border: 1px solid transparent;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .pub_btn {
    height: 0.8rem;
    padding: 0 0.4rem;
  }
}
.pub_btn:hover {
  background: #144e99;
}
.pub_btn:hover i svg path,
.pub_btn:hover i img path {
  fill: #fff;
}
.pub_btn:hover p {
  color: #fff;
}
.pub_btn i {
  margin-left: 0.16rem;
  flex-shrink: 0;
  display: flex;
  width: 0.17rem;
  height: auto;
}
@media (max-width: 767px) {
  .pub_btn i {
    width: 0.28rem;
  }
}
.pub_btn i svg,
.pub_btn i img {
  width: 100%;
  height: auto;
}
.pub_btn i svg path,
.pub_btn i img path {
  fill: #fff;
}
.pub_btn p {
  color: #fff;
  position: relative;
  z-index: 5;
  transition: all 0.4s;
}
.pub_btn2 {
  padding: 0 0.25rem;
}
.pub_btn3 {
  min-width: auto;
  background: none;
  height: auto;
  padding: 0;
  overflow: initial;
}
.pub_btn3:hover {
  background: none;
}
.pub_btn3:hover p {
  color: #999;
}
.pub_btn3:hover i {
  right: -5px;
}
.pub_btn3:hover i svg path {
  fill: #999;
}
.pub_btn3 p {
  color: #999;
}
.pub_btn3 i {
  transition: all 0.4s;
  margin-left: 0.12rem;
  position: relative;
  right: 0;
}
.pub_btn3 i svg path {
  fill: #999 !important;
}
/* 二级 */
/* .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;} */
/* 开始 */
.h_banner {
  margin-top: 0.4rem;
}
.h_banner .box {
  position: relative;
  padding-bottom: 0.5rem;
}
.h_banner .box .public-img:before {
  padding-top: 34.85714286%;
}
@media (max-width: 767px) {
  .h_banner .box .public-img:before {
    padding-top: 50%;
  }
}
.h_banner .box .swip2_pag {
  bottom: 0;
}
.h_banner .box .swip2_pag .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 0.11rem;
  background: #9e9e9e;
  opacity: 1;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .h_banner .box .swip2_pag .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}
.h_banner .box .swip2_pag .swiper-pagination-bullet-active {
  background: #fbd26a;
}
.g_title h2 {
  line-height: 1.1;
  color: #4b5053;
  font-weight: bold;
}
.g_title2 {
  text-align: center;
}
.hon {
  padding: 1.34rem 0 0.96rem;
}
@media (max-width: 767px) {
  .hon {
    padding: 1rem 0 ;
  }
}
.hon .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .hon .box {
    flex-direction: column;
  }
}
.hon .box .gl {
  width: 44%;
}
@media (max-width: 991px) {
  .hon .box .gl {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.hon .box .gl .hon_p {
  overflow: auto;
  height: calc((0.24rem + 0.15rem) * 7);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.42rem;
}
.hon .box .gl .hon_p .g_p {
  display: flex;
  margin-bottom: 0.15rem;
  width: calc(50% - 4px);
}
.hon .box .gl .hon_p .g_p:hover p {
  color: #fbd26a;
}
.hon .box .gl .hon_p .g_p:hover p:after {
  background: #fbd26a;
}
.hon .box .gl .hon_p .g_p:hover p:before {
  background: #fbd26a;
}
.hon .box .gl .hon_p .g_p p {
  transition: all 0.4s;
  display: block;
  position: relative;
  padding-left: 0.24rem;
}
.hon .box .gl .hon_p .g_p p:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #898989;
  left: 0;
  top: 9px;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .hon .box .gl .hon_p .g_p p:after {
    top: 8px;
    width: 5px;
    height: 5px;
  }
}
.hon .box .gl .hon_p .g_p p::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -0.06rem;
  left: 0;
  background: transparent;
  transition: all 0.4s;
}
.hon .box .gl .g_txt {
  margin-top: 0.42rem;
}
.hon .box .gl .g_txt p {
  color: #444;
}
.hon .box .gr {
  width: 47.85714286%;
}
@media (max-width: 991px) {
  .hon .box .gr {
    width: 100%;
  }
}
.hon .box .gr .public-img {
  opacity: 0.44;
  border-radius: 6px;
}
.hon .box .gr .public-img:before {
  padding-top: 63.26530612%;
}
.hon .hon_con {
  margin-top: 0.8rem;
}
.hon .hon_con img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.g_qie .pub_nav {
  width: 0.55rem;
  height: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  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;
}
.g_qie .pub_nav:hover {
  background: #fbd26a;
}
.g_qie .pub_nav:hover svg path {
  fill: #fff;
}
.g_qie .pub_nav svg {
  width: 14.545%;
  height: auto;
}
.g_qie .pub_nav svg path {
  fill: #fff;
  opacity: 1;
  transition: all 0.4s;
}
.g_qie .pub_prev {
  left: 0.25rem;
}
.g_qie .pub_prev svg {
  transform: rotate(180deg);
}
.g_qie .pub_next {
  right: 0.25rem;
}
.probox {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.13rem;
  margin-top: 0.6rem;
}
.probox .item {
  width: 25%;
  margin-bottom: 0.3rem;
  padding: 0 0.13rem;
}
@media (max-width: 991px) {
  .probox .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .probox .item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.probox .item .itembox {
  box-shadow: 0 0 0.18rem rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}
.probox .item .itembox:hover .public-img img {
  transform: scale(1.05);
}
.probox .item .itembox:hover .txt h3 {
  color: #FBD26A !important;
}
.probox .item .itembox .public-img:before {
  padding-top: 80%;
}
.probox .item .itembox .txt {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 1.42rem;
  padding: 0 0.32rem 0.38rem;
}
.probox .item .itembox .txt p {
  color: #444444;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.probox .item .itembox .txt h3 {
  transition: all 0.4s;
}
.probox .item .itembox .txt i {
  margin-left: 0.1rem;
  flex-shrink: 0;
  display: flex;
  width: 9px;
  height: auto;
}
@media (max-width: 767px) {
  .probox .item .itembox .txt i {
    width: 6px;
  }
}
.probox .item .itembox .txt i svg,
.probox .item .itembox .txt i img {
  width: 100%;
  height: auto;
}
.probox .item .itembox .txt i svg path,
.probox .item .itembox .txt i img path {
  fill: #141617;
}
.htw {
  padding: 0 0 1.2rem;
}
.htw .probox {
  margin-top: 0.65rem;
}
.htw .htw_con {
  margin-top: 0.7rem;
}
.htw .htw_con ul {
  border-top: 2px solid #d4d6d8;
  border-bottom: 2px solid #d4d6d8;
}
.htw .htw_con ul li {
  border-top: 1px solid #d4d6d8;
}
.htw .htw_con ul li:first-child {
  border-top: none;
}
.htw .htw_con ul li.on .g_top .g_gb .i2 {
  transform: translate(-50%, -50%) rotate(0deg);
}
.htw .htw_con ul li .g_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.12rem 0.25rem 0.12rem 0.16rem;
  position: relative;
  cursor: pointer;
}
.htw .htw_con ul li .g_top .g_top_l {
  width: 80%;
}
.htw .htw_con 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: 6px;
  transform: rotate(90deg);
  flex-shrink: 0;
}
.htw .htw_con ul li .g_top .g_gb svg,
.htw .htw_con ul li .g_top .g_gb img {
  width: 100%;
  height: auto;
}
.htw .htw_con ul li .g_top .g_gb svg path,
.htw .htw_con ul li .g_top .g_gb img path {
  fill: #5171a1;
}
.htw .htw_con ul li .g_xia {
  margin-top: 0.2rem;
  display: none;
}
.htw .htw_con ul li .g_xia .g_bjq {
  padding: 0 0.25rem 0.3rem 0.16rem;
}
.htw .htw_con ul li .g_xia .g_bjq a,
.htw .htw_con ul li .g_xia .g_bjq p {
  transition: all 0.4s;
  display: block;
}
.htw .htw_con ul li .g_xia .g_bjq a:hover,
.htw .htw_con ul li .g_xia .g_bjq p:hover {
  color: #144e99;
}
.htw_b {
  margin-top: 1.2rem;
  position: relative;
}
@media (max-width: 767px) {
  .htw_b {
    margin-top: 0.8rem;
  }
}
.htw_b .img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.htw_b .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.htw_b .txt {
  position: relative;
  z-index: 10;
  color: #fff;
  min-height: 3.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0.4rem;
}
.htw_b .txt h3 {
  text-align: center;
}
.htw_b .txt .htw_b_box {
  display: flex;
  margin-top: 0.22rem;
}
@media (max-width: 767px) {
  .htw_b .txt .htw_b_box {
    margin-top: 0.36rem;
  }
}
.htw_b .txt .htw_b_box .item {
  transition: all 0.4s;
  height: 0.52rem;
  padding: 0 0.22rem;
  border: 1px solid #f7f8f9;
  display: flex;
  align-items: center;
  margin: 0 0.1rem;
}
@media (max-width: 767px) {
  .htw_b .txt .htw_b_box .item {
    height: 0.8rem;
    padding: 0 0.3rem;
  }
}
.htw_b .txt .htw_b_box .item:hover {
  background: #fbd26a;
  border-color: #fbd26a;
}
.htw_b .txt .htw_b_box .item i {
  margin-right: 0.08rem;
  flex-shrink: 0;
  display: flex;
  width: 0.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .htw_b .txt .htw_b_box .item i {
    width: 0.3rem;
  }
}
.htw_b .txt .htw_b_box .item i svg,
.htw_b .txt .htw_b_box .item i img {
  width: 100%;
  height: auto;
}
.htw_b .txt .htw_b_box .item i svg path,
.htw_b .txt .htw_b_box .item i img path {
  fill: #fff;
}
.htw_b .txt .htw_b_box .item p {
  font-weight: bold;
  color: #fff;
}
.hth {
  padding: 0 0 1.2rem;
}
.hth .hth_tit {
  display: flex;
  justify-content: space-between;
}
.hth .hth_tit .gr {
  display: flex;
  align-items: center;
}
.hth .hth_tit .gr .swip2_pag {
  margin-right: 0.1rem;
  width: 1.14rem;
  position: initial;
  height: 2px;
  background: #e5e5e5;
}
@media (max-width: 767px) {
  .hth .hth_tit .gr .swip2_pag {
    width: 1.8rem;
  }
}
.hth .hth_tit .gr .swip2_pag .swiper-pagination-progressbar-fill {
  background: #fbd26a;
}
.hth .hth_tit .gr .g_qie {
  display: flex;
  align-items: center;
}
.hth .hth_tit .gr .g_qie .pub_nav {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 0;
  border: 1px solid #999999;
  background: none;
  margin-left: 0.2rem;
  position: initial;
  transform: translateY(0%);
}
@media (max-width: 767px) {
  .hth .hth_tit .gr .g_qie .pub_nav {
    width: 0.56rem;
    height: 0.56rem;
  }
}
.hth .hth_tit .gr .g_qie .pub_nav:hover {
  border-color: #fbd26a;
  background: #fbd26a;
}
.hth .hth_tit .gr .g_qie .pub_nav:hover svg path {
  fill: #fff;
}
.hth .hth_tit .gr .g_qie .pub_nav svg {
  width: 8px;
  height: auto;
}
@media (max-width: 767px) {
  .hth .hth_tit .gr .g_qie .pub_nav svg {
    width: 6px;
  }
}
.hth .hth_tit .gr .g_qie .pub_nav svg path {
  fill: #999;
}
.hth .box {
  overflow: hidden;
  margin-top: 0.4rem;
  height: 480px;
}
@media (max-width: 767px) {
  .hth .box {
    height: 6rem;
  }
}
.hth .box .swiper {
  width: calc(100% + 60px);
  height: 100%;
  margin-left: -30px;
  margin-right: auto;
}
.hth .box .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: calc((100% - 30px) / 2) !important;
  /* Center slide text vertically */
}
.hth .box .swiper-slide:nth-child(2n) .img .i1 {
  display: none;
}
.hth .box .swiper-slide > .img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .hth .box .swiper-slide > .img {
    padding: 0.2rem 0.8rem;
  }
}
.hth .box .swiper-slide > .img .i1 {
  position: absolute;
  width: calc(100% - 60px);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #e5e5e5;
  height: 1px;
}
@media (max-width: 767px) {
  .hth .box .swiper-slide > .img .i1 {
    width: calc(100% - 30px);
  }
}
.hth .box .swiper-slide > .img .i2 {
  position: absolute;
  height: calc(100% - 60px);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #e5e5e5;
  width: 1px;
}
@media (max-width: 767px) {
  .hth .box .swiper-slide > .img .i2 {
    height: calc(100% - 30px);
  }
}
.hth .box .swiper-slide > .img .i3 {
  position: absolute;
  width: calc(100% - 60px);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #e5e5e5;
  height: 1px;
}
@media (max-width: 767px) {
  .hth .box .swiper-slide > .img .i3 {
    width: calc(100% - 30px);
  }
}
.hth .box .swiper-slide > .img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.abofi2 .box .swiper {
  width: 100%;
  margin-left: 0;
}
.abofi2 .box .swiper-slide {
  height: auto !important;
}
.abofi2 .box .swiper-slide .itembox {
  display: block;
  width: 100%;
  height: 100%;
  /* padding: 0 0 0.58rem; */
  background: #f8f8f8;
}
.abofi2 .box .swiper-slide .itembox .img {
  padding: 0.6rem 0.7rem 0;
}
.abofi2 .box .swiper-slide .itembox .img .public-img img {
  object-fit: contain;
}
.abofi2 .box .swiper-slide .itembox .txt {
  padding: 0 0.2rem;
  margin-top: 0.35rem;
  text-align: center;
}
.abofi2 .box .swiper-slide .itembox .txt p {
  color: #4b5053;
}
.hfo {
  padding: 0 0 1.4rem;
}
.hfo .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.14rem;
  margin-top: 0.4rem;
}
.hfo .box .item {
  width: 33.33%;
  margin-bottom: 0.3rem;
  padding: 0 0.14rem;
}
@media (max-width: 991px) {
  .hfo .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .hfo .box .item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.hfo .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.hfo .box .item .itembox:hover .public-img img {
  transform: scale(1.05);
}
.hfo .box .item .itembox:hover .txt h3 {
  color: #FBD26A !important;
}
.hfo .box .item .itembox .public-img {
  border-radius: 6px;
}
.hfo .box .item .itembox .public-img:before {
  padding-top: 62.5%;
}
.hfo .box .item .itembox .txt .txt_t {
  padding: 0.16rem 0 0.22rem;
}
.hfo .box .item .itembox .txt .txt_t h3 {
  transition: all 0.4s;
  color: #222;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hfo .box .item .itembox .txt .txt_t span {
  color: #999;
}
.hfo .box .item .itembox .txt .g_p {
  padding-right: 0.44rem;
  line-height: 1.75;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  height: 8.75em;
}
@media (max-width: 767px) {
  .hfo .box .item .itembox .txt .g_p {
    padding: 0;
  }
}
.hfi {
  padding: 0 0 1.4rem;
}
@media (max-width: 991px) {
  .hfi {
    padding: 0 0 0.6rem;
  }
}
.hfi .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .hfi .box {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .hfi .box .item {
    width: 100% !important;
    margin-bottom: 0.5rem;
  }
}
.hfi .box .item .public-img {
  border-radius: 6px;
}
.hfi .box .item:hover .public-img img {
  transform: scale(1.05);
}
.hfi .box .item:hover .txt h3 {
  color: #144e99;
}
.hfi .box .item .txt {
  margin-top: 0.26rem;
}
.hfi .box .item .txt .txt_t {
  padding-right: 0.4rem;
  display: flex;
  justify-content: space-between;
}
.hfi .box .item .txt .txt_t .g_h3 {
  width: 100%;
}
.hfi .box .item .txt .txt_t .g_h3 h3 {
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.hfi .box .item .txt .txt_b {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.26rem;
}
.hfi .box .item .txt .txt_b span {
  margin-right: 0.1rem;
  margin-bottom: 0.1rem;
  border-radius: 100px;
  padding: 5px 24px;
  background: #f8f8f8;
  color: #666;
}
.hfi .box .item .txt .txt_b .span1 {
  border: 1px solid #d2d2d2;
}
.hfi .box .item1 {
  width: 44.28571429%;
}
.hfi .box .item1 .public-img:before {
  padding-top: 59.83870968%;
}
.hfi .box .item1 .txt .txt_t {
  padding-right: 0;
}
@media (max-width: 767px) {
  .hfi .box .item1 .txt .txt_t {
    flex-direction: column;
  }
}
.hfi .box .item1 .txt .txt_t .g_h3 {
  width: 53.22580645%;
}
@media (max-width: 767px) {
  .hfi .box .item1 .txt .txt_t .g_h3 {
    width: 100%;
    margin-bottom: 0.1rem;
  }
}
.hfi .box .item1 .txt .txt_t .g_h3 h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
}
@media (max-width: 767px) {
  .hfi .box .item1 .txt .txt_t .g_h3 h3 {
    height: auto;
  }
}
.hfi .box .item1 .txt .txt_t .g_p {
  width: 35.48387097%;
}
@media (max-width: 767px) {
  .hfi .box .item1 .txt .txt_t .g_p {
    width: 100%;
  }
}
.hfi .box .item1 .txt .txt_t .g_p p {
  opacity: 0.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.5em;
}
@media (max-width: 767px) {
  .hfi .box .item1 .txt .txt_t .g_p p {
    height: auto;
  }
}
.hfi .box .item1 .txt .txt_b {
  margin-top: 0.6rem;
}
.hfi .box .item2 {
  width: 25.57142857%;
}
.hfi .box .item2 .public-img:before {
  padding-top: 60.05586592%;
}
.hfi .box .item3 {
  width: 25.85714286%;
}
.hfi .box .item3 .public-img:before {
  padding-top: 100%;
}
.hsi {
  padding-bottom: 1.6rem;
}
.hsi .box {
  position: relative;
}
.hsi .box .img {
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.hsi .box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hsi .box .txt {
  position: relative;
  z-index: 10;
  color: #fff;
  min-height: 3.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hsi .box .txt .htw_b_box {
  display: flex;
  margin-top: 0.4rem;
}
.hsi .box .txt .htw_b_box .item {
  transition: all 0.4s;
  height: 0.52rem;
  padding: 0 0.36rem;
  border: 1px solid #fff;
  background: none;
  display: flex;
  align-items: center;
  margin: 0 0.1rem;
}
@media (max-width: 767px) {
  .hsi .box .txt .htw_b_box .item {
    height: 0.8rem;
    padding: 0 0.4rem;
  }
}
.hsi .box .txt .htw_b_box .item:hover {
  opacity: 0.8;
}
.hsi .box .txt .htw_b_box .item i {
  margin-left: 0.18rem;
  flex-shrink: 0;
  display: flex;
  width: 0.18rem;
  height: auto;
}
@media (max-width: 767px) {
  .hsi .box .txt .htw_b_box .item i {
    width: 0.24rem;
  }
}
.hsi .box .txt .htw_b_box .item i svg,
.hsi .box .txt .htw_b_box .item i img {
  width: 100%;
  height: auto;
}
.hsi .box .txt .htw_b_box .item i svg path,
.hsi .box .txt .htw_b_box .item i img path {
  fill: #fff;
}
.hsi .box .txt .htw_b_box .item p {
  font-weight: bold;
  color: #fff;
}
/* 底部 */
footer {
  color: #fff;
}
footer a {
  transition: all 0.4s;
  color: #fff;
}
footer a:hover {
  color: #fff !important;
}
footer .gt {
  padding: 0.4rem 0 0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 991px) {
  footer .gt {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) {
  footer .gt .blogo {
    margin-bottom: 0.3rem;
  }
}
footer .gt .blogo svg,
footer .gt .blogo img {
  width: 1.3rem;
  height: auto;
}
@media (max-width: 991px) {
  footer .gt .blogo svg,
  footer .gt .blogo img {
    width: 1.8rem;
  }
}
footer .gt .blogo svg path,
footer .gt .blogo img path {
  fill: #fff;
}
footer .gt .foot_tel {
  display: flex;
}
@media (max-width: 991px) {
  footer .gt .foot_tel {
    flex-wrap: wrap;
  }
}
footer .gt .foot_tel .item {
  margin-left: 0.8rem;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  footer .gt .foot_tel .item {
    flex-wrap: wrap;
    margin: 0 0.4rem 0.1rem 0;
  }
}
footer .gt .foot_tel .item i {
  margin-right: 0.25rem;
  flex-shrink: 0;
  display: flex;
  width: 0.2rem;
  height: auto;
}
@media (max-width: 991px) {
  footer .gt .foot_tel .item i {
    width: 0.3rem;
  }
}
footer .gt .foot_tel .item i svg,
footer .gt .foot_tel .item i img {
  width: 100%;
  height: auto;
}
footer .gt .foot_tel .item i svg path,
footer .gt .foot_tel .item i img path {
  fill: #fff;
}
footer .gt .foot_tel .item p {
  opacity: 0.6;
  margin-right: 0.58rem;
}
@media (max-width: 991px) {
  footer .gt .foot_tel .item p {
    font-size: 12px;
  }
}
footer .gt .foot_tel .item p:last-child {
  margin-right: 0;
}
footer .gm {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
  footer .gm {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
footer .gm a {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  footer .gm a {
    flex-wrap: wrap;
    margin: 0 0.6rem 0.1rem 0;
  }
}
footer .gm a i {
  margin-left: 0.15rem;
  flex-shrink: 0;
  display: flex;
  width: 9px;
  height: auto;
}
@media (max-width: 991px) {
  footer .gm a i {
    width: 6px;
  }
}
footer .gm a i svg,
footer .gm a i img {
  width: 100%;
  height: auto;
}
footer .gm a i svg path,
footer .gm a i img path {
  fill: #fff;
}
footer .gb {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.25rem 0 0.32rem;
}
@media (max-width: 991px) {
  footer .gb {
    flex-direction: column;
  }
}
footer .gb .gl {
  display: flex;
}
@media (max-width: 991px) {
  footer .gb .gl {
    flex-wrap: wrap;
    margin-bottom: 0.1rem;
  }
}
footer .gb .gl p,
footer .gb .gl a {
  color: rgba(255, 255, 255, 0.4);
}
footer .gb .gl a {
  margin-left: 0.2rem;
}
@media (max-width: 991px) {
  footer .gb .gl a {
    margin: 0 0.2rem 0 0;
  }
}
footer .gb .gr {
  display: flex;
}
footer .gb .gr a {
  color: rgba(255, 255, 255, 0.4);
  margin-left: 0.35rem;
}
@media (max-width: 991px) {
  footer .gb .gr a {
    margin: 0 0.3rem 0 0;
  }
}
/* 细分商城 */
.sub_banner {
  height: 5rem;
  width: 100%;
}
@media (max-width: 767px) {
  .sub_banner {
    margin-top: 0.4rem;
  }
}
.sub_banner .container {
  height: 100%;
  position: relative;
}
.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%;
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
  padding: 0.48rem 0.56rem;
}
.sub_banner .sub_banner_txt .ban_l {
  /* padding: 0 1rem; */
  display: flex;
  align-items: flex-end;
  width: 100%;
}
@media (max-width: 991px) {
  .sub_banner .sub_banner_txt .ban_l {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sub_banner .sub_banner_txt .ban_l .tit h1 {
  line-height: 1.2;
  font-weight: bold;
}
.sub_banner .sub_banner_txt .ban_l .sub_banner_p {
  margin-left: 0.58rem;
}
@media (max-width: 991px) {
  .sub_banner .sub_banner_txt .ban_l .sub_banner_p {
    margin: 0.3rem 0 0;
  }
}
.sub_banner .sub_banner_txt .ban_r {
  margin-left: 0.4rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sub_banner .sub_banner_txt .ban_r svg,
.sub_banner .sub_banner_txt .ban_r img {
  width: 26.19047619%;
  height: auto;
  color: #fff;
}
.sub_banner .sub_banner_txt .ban_r svg path,
.sub_banner .sub_banner_txt .ban_r img path {
  fill: #fff;
}
.sub_banner_case {
  height: auto;
}
.sub_banner_case .container {
  /* display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px; */
}
.sub_banner_case .container .mob_pc {
  position: initial;
}
.shoon {
  padding: 1rem 0 1.3rem;
}
.shoon .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
}
.shoon .box .item {
  width: 33.33%;
  margin-bottom: 0.3rem;
  padding: 0 0.15rem;
}
@media (max-width: 991px) {
  .shoon .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .shoon .box .item {
    width: 100%;
  }
}
.shoon .box .item .itembox {
  border-radius: 6px;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.shoon .box .item .itembox:hover .public-img img {
  transform: scale(1.05);
}
.shoon .box .item .itembox .txt {
  z-index: 10;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0.36rem 0.4rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.shoon .box .item .itembox .txt .txt_box {
  display: flex;
  align-items: center;
}
.shoon .box .item .itembox .txt .txt_box h3 {
  color: #fff;
  font-weight: bold;
}
.shoon .box .item .itembox .txt .txt_box i {
  margin-left: 0.11rem;
  flex-shrink: 0;
  display: flex;
  width: 7px;
  height: auto;
}
.shoon .box .item .itembox .txt .txt_box i svg,
.shoon .box .item .itembox .txt .txt_box i img {
  width: 100%;
  height: auto;
}
.shoon .box .item .itembox .txt .txt_box i svg path,
.shoon .box .item .itembox .txt .txt_box i img path {
  fill: #fff;
}
/* 产品 */
.pronav .box {
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .pronav .box {
    overflow: auto;
    justify-content: flex-start;
  }
}
.pronav .box a {
  margin: 0 0.38rem;
  height: 0.7rem;
  display: inline-flex;
  align-items: center;
  color: #222;
  position: relative;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .pronav .box a {
    flex-shrink: 0;
    margin: 0 0.2rem 0 0;
  }
}
.pronav .box a.on,
.pronav .box a:hover {
  color: #fbd26a;
}
.pronav .box a.on::after,
.pronav .box a:hover::after {
  background: #fbd26a;
}
.pronav .box a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: transparent;
  bottom: -1px;
  left: 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .pronav .box a::after {
    bottom: 0;
    height: 0;
  }
}
.proon {
  padding: 0 0 1.6rem;
}
.proon .g_tac {
  margin-top: 0.5rem;
}
/* 产品详情页 */
.crumbs {
  padding: 0.32rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #b2b2b2;
}
.crumbs p {
  display: flex;
  align-items: center;
}
.crumbs p > a {
  margin-right: 0.07rem;
  color: #999;
}
@media (max-width: 767px) {
  .crumbs p > a {
    font-size: 14px;
    margin-bottom: 0.05rem;
  }
}
.crumbs p:last-child a {
  color: #666;
}
.crumbs p:last-child svg,
.crumbs p:last-child i {
  display: none;
}
.crumbs p svg {
  width: 5px;
  height: auto;
  margin-right: 0.07rem;
}
.crumbs p svg path {
  fill: #999;
}
.crumbs p i {
  font-style: initial;
  opacity: 0.7;
  color: #999999;
  margin-right: 0.07rem;
}
.proinfoon {
  padding: 0.64rem 0 1.15rem;
}
.proinfoon .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .proinfoon .box {
    flex-direction: column-reverse;
  }
}
.proinfoon .box .gl {
  width: 50%;
  padding-right: 1.04rem;
}
@media (max-width: 991px) {
  .proinfoon .box .gl {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0;
  }
}
.proinfoon .box .gl .g_tit h1 {
  line-height: 1.1;
  color: #4b5053;
  font-weight: bold;
}
.proinfoon .box .gl .g_tit p {
  margin-top: 0.24rem;
}
.proinfoon .box .gl .g_p {
  margin-top: 0.2rem;
}
.proinfoon .box .gl .g_p p {
  color: #666;
  margin-bottom: 0.1rem;
}
.proinfoon .box .gl .g_lab {
  margin-top: 0.16rem;
}
.proinfoon .box .gl .g_lab p {
  font-weight: bold;
  margin-bottom: 0.12rem;
  display: block;
  position: relative;
  padding-left: 20px;
}
.proinfoon .box .gl .g_lab p:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 9px;
}
@media (max-width: 1580px) {
  .proinfoon .box .gl .g_lab p:after {
    top: 8px;
    width: 5px;
    height: 5px;
  }
}
.proinfoon .box .gl .g_a {
  margin-top: 0.56rem;
}
.proinfoon .box .gr {
  width: 50%;
}
@media (max-width: 991px) {
  .proinfoon .box .gr {
    width: 100%;
  }
}
.proinfoon .box .gr .gallery-thumbs .public-img {
  background: #eeeeee;
}
.proinfoon .box .gr .gallery-thumbs .public-img:before {
  padding-top: 80%;
}
.proinfoon .box .gr .gr_bot {
  margin-top: 0.4rem;
  padding: 0.2rem 0;
  border-top: 1px solid #b2b2b2;
  border-bottom: 1px solid #b2b2b2;
}
.proinfoon .box .gr .gallery-top .public-img {
  transition: all 0.4s;
  opacity: 0.5;
  /* border: 1px solid #e8e9eb; */
  background: #eee;
}
.proinfoon .box .gr .gallery-top .public-img:before {
  padding-top: 79.54545455%;
}
.proinfoon .box .gr .gallery-top .public-img img {
  mix-blend-mode: multiply;
}
.proinfoon .box .gr .gallery-top .swiper-slide-thumb-active .public-img {
  opacity: 1;
  /* border: 1px solid @color1; */
}
.proinfotw {
  padding: 0 0 1.2rem;
}
.proinfotw .htw_con {
  margin-top: 0.35rem;
}
.proinfotw .htw_con ul {
  border-top: 2px solid #d4d6d8;
  border-bottom: 2px solid #d4d6d8;
}
.proinfotw .htw_con ul li {
  border-top: 1px solid #d4d6d8;
}
.proinfotw .htw_con ul li:first-child {
  border-top: none;
}
.proinfotw .htw_con ul li.on .g_top .g_gb {
  transform: rotate(270deg);
}
.proinfotw .htw_con ul li .g_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.12rem 0.25rem 0.12rem 0.16rem;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .proinfotw .htw_con ul li .g_top {
    padding: 0.2rem 0.25rem 0.2rem 0.16rem;
  }
}
.proinfotw .htw_con ul li .g_top .g_top_l {
  width: 80%;
}
.proinfotw .htw_con ul li .g_top .g_top_l p {
  color: #222;
  font-weight: bold;
}
.proinfotw .htw_con 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: 6px;
  transform: rotate(90deg);
  flex-shrink: 0;
}
.proinfotw .htw_con ul li .g_top .g_gb svg,
.proinfotw .htw_con ul li .g_top .g_gb img {
  width: 100%;
  height: auto;
}
.proinfotw .htw_con ul li .g_top .g_gb svg path,
.proinfotw .htw_con ul li .g_top .g_gb img path {
  fill: #999999;
}
.proinfotw .htw_con ul li .g_xia {
  display: none;
}
.proinfotw .htw_con ul li .g_xia .g_bjq {
  padding: 0.04rem 0.25rem 0.3rem 0.16rem;
}
.proinfotw .htw_con ul li .g_xia .g_bjq .item {
  color: #666;
  border-bottom: 1px solid #e5e5e5;
  padding: 0.16rem 0 0.11rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .proinfotw .htw_con ul li .g_xia .g_bjq .item {
    flex-direction: column;
    padding: 0.2rem 0;
  }
}
.proinfotw .htw_con ul li .g_xia .g_bjq .item .gl {
  display: flex;
  justify-content: space-between;
  width: 48.38709677%;
}
@media (max-width: 767px) {
  .proinfotw .htw_con ul li .g_xia .g_bjq .item .gl {
    width: 100%;
  }
}
.proinfotw .htw_con ul li .g_xia .g_bjq .item .gr {
  width: 14.29618768%;
}
@media (max-width: 767px) {
  .proinfotw .htw_con ul li .g_xia .g_bjq .item .gr {
    width: 100%;
  }
}
.proinfotw .htw_b {
  margin-top: 1.07rem;
}
.proinfoth {
  padding: 0 0 0.85rem;
}
.proinfoth .g_tit {
  display: flex;
  justify-content: space-between;
}
.proinfofo {
  padding: 0 0 1.6rem;
}
.proinfofo .box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.36rem;
}
.proinfofo .box .item {
  height: 4.6rem;
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .proinfofo .box .item {
    height: auto;
  }
}
@media (max-width: 767px) {
  .proinfofo .box .item {
    width: 100%;
    flex-direction: column;
  }
}
.proinfofo .box .item .itembox {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .proinfofo .box .item .itembox {
    height: auto !important;
  }
}
.proinfofo .box .item .itembox:hover .public-img img {
  transform: scale(1.05);
}
.proinfofo .box .item .itembox .txt {
  z-index: 10;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0.26rem 0.4rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.proinfofo .box .item .itembox .txt .txt_box {
  display: flex;
  align-items: center;
}
.proinfofo .box .item .itembox .txt .txt_box h3 {
  color: #fff;
  font-weight: bold;
}
.proinfofo .box .item .itembox .txt .txt_box i {
  margin-left: 0.11rem;
  flex-shrink: 0;
  display: flex;
  width: 7px;
  height: auto;
}
.proinfofo .box .item .itembox .txt .txt_box i svg,
.proinfofo .box .item .itembox .txt .txt_box i img {
  width: 100%;
  height: auto;
}
.proinfofo .box .item .itembox .txt .txt_box i svg path,
.proinfofo .box .item .itembox .txt .txt_box i img path {
  fill: #fff;
}
.proinfofo .box .item .itembox_l {
  width: 4.6rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .proinfofo .box .item .itembox_l {
    width: 50% !important;
  }
}
@media (max-width: 767px) {
  .proinfofo .box .item .itembox_l {
    width: 100% !important;
  }
}
.proinfofo .box .item .itembox_l .txt {
  width: 100%;
}
@media (max-width: 991px) {
  .proinfofo .box .item .itembox_r {
    width: 50% !important;
  }
}
@media (max-width: 767px) {
  .proinfofo .box .item .itembox_r {
    width: 100% !important;
  }
}
.proinfofo .box .item .itembox_r .public-img:before {
  padding-top: 48.93617021%;
}
@media (max-width: 991px) {
  .proinfofo .box .item .itembox_r .public-img:before {
    padding-top: 100%;
  }
}
.proinfofo .box .item2 .itembox {
  width: 50% !important;
}
@media (max-width: 767px) {
  .proinfofo .box .item2 .itembox {
    width: 100% !important;
  }
}
.proinfofo .box .item2 .itembox .public-img:before {
  padding-top: 65.71428571%;
}
@media (max-width: 991px) {
  .proinfofo .box .item2 .itembox .public-img:before {
    padding-top: 100%;
  }
}
/* 项目案例 */
.case_sel {
  padding: 0.3rem 0 0.55rem;
}
@media (max-width: 767px) {
  .case_sel {
    padding: 0.8rem 0 0.6rem;
  }
}
.case_sel .box .layui-form {
  display: flex;
  flex-wrap: wrap;
}
.case_sel .box .layui-form .layui-input-block {
  width: 2.64rem;
  margin: 0 0.2rem 0.2rem 0;
}
@media (max-width: 767px) {
  .case_sel .box .layui-form .layui-input-block {
    width: 46%;
  }
}
.case_sel .box .layui-form .layui-input-block .layui-form-select dl dd.layui-this {
  background: #fbd26a;
}
.case_sel .box .layui-form .layui-input-block .layui-form-select .layui-input {
  height: 0.5rem;
  border: 1px solid #cccccc;
  color: #444;
  padding: 0 0.24rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .case_sel .box .layui-form .layui-input-block .layui-form-select .layui-input {
    height: 0.8rem;
  }
}
.case_sel .box .layui-form .layui-input-block .layui-form-select .layui-edge {
  right: 0.24rem;
  background: url(../images/b2.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 7px;
  border: none;
  margin: 0;
  margin-top: -4px;
}
.caseon {
  padding: 0 0 1.6rem;
}
.caseon .box {
  margin-top: 0;
}
.caseon .box .item {
  margin-bottom: 1.25rem;
}
/* 案例详情页 */
.cinfoon {
  padding: 0 0 1.2rem;
}
.cinfoon .cinfoon_txt {
  padding: 0.95rem 0 1.15rem;
}
.cinfoon .cinfoon_txt h1 {
  font-weight: bold;
  margin-bottom: 0.16rem;
}
.cinfoon .cinfoon_txt .public-content p {
  margin-bottom: 0.1rem;
}
.cinfoon .cinfoon_par .g_title h2 {
  font-weight: 400;
}
.cinfoon .cinfoon_par .box {
  margin-top: 0.34rem;
}
.cinfoon .cinfoon_par .box .item {
  display: flex;
  border-top: 1px solid #b2b2b2;
  padding: 0.18rem 0.2rem;
}
@media (max-width: 767px) {
  .cinfoon .cinfoon_par .box .item {
    padding: 0.2rem 0;
  }
}
.cinfoon .cinfoon_par .box .item:last-child {
  border-bottom: 1px solid #b2b2b2;
}
.cinfoon .cinfoon_par .box .item .p1 {
  color: #4b5053;
  width: 22.42647059%;
}
@media (max-width: 767px) {
  .cinfoon .cinfoon_par .box .item .p1 {
    width: 30%;
  }
}
.cinfoon .cinfoon_par .box .item .p2 {
  color: #666;
  width: 77.57352941%;
}
@media (max-width: 767px) {
  .cinfoon .cinfoon_par .box .item .p2 {
    width: 70%;
  }
}
.cinfoon .cinfoon_img {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .cinfoon .cinfoon_img {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .cinfoon .cinfoon_img {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cinfoon .cinfoon_img .public-img:before {
  padding-top: 75.05518764%;
}
.cinfoontw .probox {
  margin-top: 0.36rem;
}
/* 关于我们 */
.aboon {
  padding: 0.95rem 0;
}
.aboon .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .aboon .box {
    flex-direction: column;
  }
}
.aboon .box .gl {
  width: 33.92857143%;
}
@media (max-width: 767px) {
  .aboon .box .gl {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .aboon .box .gl .g_title {
    margin-bottom: 0.4rem;
  }
}
.aboon .box .gr {
  position: relative;
  width: 66.07142857%;
}
@media (max-width: 767px) {
  .aboon .box .gr {
    width: 100%;
  }
}
.aboon .box .gr.on .aboon_con {
  height: 3.68rem;
}
.aboon .box .gr.on .more {
  background: linear-gradient(to top, #fff 50%, hsla(0, 0%, 100%, 0));
}
.aboon .box .gr.on2 .aboon_con {
  height: auto;
}
.aboon .box .gr.on2 .more {
  background: none;
}
.aboon .box .gr .aboon_con {
  overflow: hidden;
  padding-bottom: 1rem;
}
.aboon .box .gr .aboon_con h3 {
  font-weight: bold;
  margin-bottom: 0.24rem;
}
.aboon .box .gr .aboon_con p {
  color: #666;
  margin-bottom: 0.1rem;
}
.aboon .box .gr .more {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  height: 2rem;
}
.aboon .box .gr .more.on2 {
  background: none;
}
.aboon .box .gr .more .pub_btn {
  cursor: pointer;
}
.aboon .box .gr .more .pub_btn svg {
  transform: rotate(90deg);
}
.abotw {
  padding: 0 0 1.92rem;
}
@media (max-width: 767px) {
  .abotw {
    padding: 0 0 1.2rem;
  }
}
.abotw .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .abotw .box {
    flex-direction: column;
  }
}
.abotw .box .gl {
  width: 33.92857143%;
}
@media (max-width: 767px) {
  .abotw .box .gl {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.abotw .box .gr {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0.36rem;
  border-bottom: 1px solid #b2b2b2;
  position: relative;
  width: 66.07142857%;
}
@media (max-width: 767px) {
  .abotw .box .gr {
    width: 100%;
    padding: 0;
  }
}
.abotw .box .gr .item {
  margin-bottom: 0.3rem;
  margin-right: 1.6rem;
}
@media (max-width: 991px) {
  .abotw .box .gr .item {
    margin-right: 0.6rem;
  }
}
@media (max-width: 767px) {
  .abotw .box .gr .item {
    margin-right: 1rem;
  }
}
.abotw .box .gr .item:last-child {
  margin-right: 0;
}
.abotw .box .gr .item .item_t {
  align-items: flex-start;
  display: flex;
}
.abotw .box .gr .item .item_t p {
  line-height: 1;
  font-weight: bold;
}
.abotw .box .gr .item .item_t p em {
  font-style: initial;
}
.abotw .box .gr .item .item_t span {
  margin-left: 0.07rem;
  font-weight: bold;
  line-height: 1;
}
.abotw .box .gr .item .item_b {
  margin-top: 0.1rem;
}
.aboth {
  padding: 0 0 1.35rem;
}
.aboth .box {
  padding: 0 0 1.2rem;
  border-bottom: 1px solid #c7c7c7;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .aboth .box {
    flex-direction: column;
  }
}
.aboth .box .gl {
  width: 33.92857143%;
}
@media (max-width: 767px) {
  .aboth .box .gl {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.aboth .box .gl .g_title h3 {
  color: #4b5053;
}
.aboth .box .gl .g_title p {
  color: #666;
  margin-top: 0.26rem;
}
.aboth .box .gl .gl_year {
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .aboth .box .gl .gl_year {
    margin-top: 0.6rem;
  }
}
.aboth .box .gl .gl_year p {
  display: none;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.3);
}
.aboth .box .gl .gl_year p.on {
  display: block;
}
.aboth .box .gr {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 66.07142857%;
}
@media (max-width: 767px) {
  .aboth .box .gr {
    width: 100%;
  }
}
.aboth .box .gr .left {
  position: relative;
  width: 65.2972973%;
}
@media (max-width: 767px) {
  .aboth .box .gr .left {
    width: 75%;
  }
}
.aboth .box .gr .left::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.7) 50%, hsla(0, 0%, 100%, 0));
  bottom: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}
.aboth .box .gr .left .gallery-thumbs {
  height: 478px;
}
.aboth .box .gr .left .gallery-thumbs .swiper-slide {
  height: auto;
  margin-bottom: 0.32rem;
}
.aboth .box .gr .left .gallery-thumbs .swiper-slide-active .aboth_box p {
  color: #fbd26a;
}
.aboth .box .gr .left .gallery-thumbs .swiper-slide-active .aboth_box h3 {
  color: #666;
}
.aboth .box .gr .left .gallery-thumbs .aboth_box {
  border-bottom: 1px solid #c7c7c7;
  padding-bottom: 0.16rem;
}
.aboth .box .gr .left .gallery-thumbs .aboth_box h3 {
  margin-top: 0.2rem;
  color: #999;
}
.aboth .box .gr .right {
  position: relative;
  width: 9.2972973%;
}
@media (max-width: 991px) {
  .aboth .box .gr .right {
    width: 13%;
  }
}
@media (max-width: 767px) {
  .aboth .box .gr .right {
    width: 17%;
  }
}
.aboth .box .gr .right .gallery-top {
  height: 470px;
  padding: 45px 0;
}
.aboth .box .gr .right .gallery-top .swiper-slide-thumb-active p {
  color: #fbd26a;
}
.aboth .box .gr .right .gallery-top .swiper-slide-thumb-active p::after {
  opacity: 1;
}
.aboth .box .gr .right .gallery-top p {
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
}
.aboth .box .gr .right .gallery-top p::after {
  position: absolute;
  content: '';
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fbd26a;
  opacity: 0;
  transition: all 0.4s;
}
.aboth .box .gr .right .right_line {
  height: 100%;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.aboth .box .gr .right .right_line em {
  height: calc(100% - 32px);
  width: 1px;
  border-right: 1px dashed #999999;
}
.aboth .box .gr .right .right_line i {
  flex-shrink: 0;
  display: flex;
  width: 13px;
  height: auto;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.aboth .box .gr .right .right_line i svg,
.aboth .box .gr .right .right_line i img {
  width: 100%;
  height: auto;
}
.aboth .box .gr .right .right_line i svg path,
.aboth .box .gr .right .right_line i img path {
  fill: #999;
}
.aboth .box .gr .right .right_line .i1 {
  transform: rotate(180deg);
  margin-bottom: 8px;
}
.aboth .box .gr .right .right_line .i2 {
  margin-top: 8px;
}
.abofo {
  padding: 0 0 1.2rem;
}
.abofo .box {
  margin-top: 0.4rem;
  position: relative;
}
.abofo .box .img {
  position: relative;
}
@media (max-width: 991px) {
  .abofo .box .img {
    display: none;
  }
}
.abofo .box .img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0.1);
}
.abofo .box .img .public-img {
  /* transition: all 0.4s; */
  top: 0;
  position: absolute;
  opacity: 0;
}
.abofo .box .img .public-img.on {
  position: relative;
  opacity: 1;
}
.abofo .box .img .public-img:before {
  padding-top: 40%;
}
.abofo .box .gnav {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 10;
  display: flex;
}
@media (max-width: 991px) {
  .abofo .box .gnav {
    position: relative;
    flex-direction: column;
  }
}
.abofo .box .gnav .public-img {
  display: none;
}
@media (max-width: 991px) {
  .abofo .box .gnav .public-img {
    display: block;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .abofo .box .gnav .public-img:before {
    padding-top: 60% !important;
  }
}
.abofo .box .gnav .public-img:before {
  padding-top: 50.52083333%;
}
.abofo .box .gnav .item {
  width: calc(100%/3);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
  transition: all 0.4s;
  position: relative;
}
@media (max-width: 991px) {
  .abofo .box .gnav .item {
    width: 100%;
    padding: 0;
    margin-bottom: 0.6rem;
  }
}
.abofo .box .gnav .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
  background: url(../images/about3.png) no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 0.4s;
}
.abofo .box .gnav .item.on::after {
  opacity: 1;
}
@media (min-width: 992px) {
  .abofo .box .gnav .item.on {
    background: rgba(255, 255, 255, 0.12);
  }
  .abofo .box .gnav .item.on .txt p {
    top: 0;
    opacity: 1;
  }
}
.abofo .box .gnav .item .txt_box {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 991px) {
  .abofo .box .gnav .item .txt_box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
  }
}
.abofo .box .gnav .item .g_svg {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  width: 0.8rem;
  height: 0.8rem;
}
.abofo .box .gnav .item .g_svg svg,
.abofo .box .gnav .item .g_svg img {
  width: 57.5%;
  height: auto;
}
.abofo .box .gnav .item .txt {
  text-align: center;
  color: #fff;
}
.abofo .box .gnav .item .txt h3 {
  margin-top: 0.38rem;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .abofo .box .gnav .item .txt h3 {
    margin-top: 0.3rem;
  }
}
.abofo .box .gnav .item .txt p {
  position: relative;
  top: 0;
  display: none;
  margin-top: 0.16rem;
}
@media (max-width: 991px) {
  .abofo .box .gnav .item .txt p {
    opacity: 1;
    top: 0;
  }
}
@media (max-width: 767px) {
  .abofo .box .gnav .item .txt p {
    font-size: 0.24rem;
    margin-top: 0.2rem;
  }
}
.abofi {
  padding: 0 0 1.6rem;
}
.abofi .g_tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .abofi .g_tit {
    flex-direction: column;
    align-items: flex-start;
  }
}
.abofi .g_tit .g_title {
  margin-bottom: 0.3rem;
}
.abofi .g_tit .g_tit_a a {
  height: 0.5rem;
  min-width: 1.46rem;
  border: 1px solid #b4b4b4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 0.2rem;
  padding: 0 0.25rem;
  color: #999;
  transition: all 0.4s;
  position: relative;
}
@media (max-width: 1260px) {
  .abofi .g_tit .g_tit_a a {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .abofi .g_tit .g_tit_a a {
    margin: 0 0.2rem 0 0;
  }
}
.abofi .g_tit .g_tit_a a:hover {
  border-color: #fbd26a;
  color: #fbd26a;
}
.abofi .g_tit .g_tit_a a.on {
  color: #fff;
  background: #fbd26a;
  border-color: #fbd26a;
}
.abofi .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
  margin-top: 0.4rem;
}
.abofi .box .item {
  width: 33.33%;
  margin-bottom: 0.3rem;
  padding: 0 0.15rem;
}
@media (max-width: 991px) {
  .abofi .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .abofi .box .item {
    width: 100%;
  }
}
.abofi .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0 0.58rem;
  background: #f8f8f8;
}
.abofi .box .item .itembox .img {
  padding: 0.6rem 1rem 0;
}
.abofi .box .item .itembox .img .public-img:before {
  padding-top: 143.27731092%;
}
.abofi .box .item .itembox .img .public-img img {
  object-fit: contain;
}
.abofi .box .item .itembox .txt {
  padding: 0 0.2rem;
  margin-top: 0.35rem;
  text-align: center;
}
.abofi .box .item .itembox .txt p {
  color: #4b5053;
}
.abofi .g_tac {
  margin-top: 0.3rem;
}
/* 联系我们 */
.conon {
  padding: 0.95rem 0 1.15rem;
}
.conon .box {
  margin-top: 0.38rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .conon .box {
    flex-direction: column;
  }
}
.conon .box:hover img {
  transform: scale(1.05);
}
.conon .box .gl {
  overflow: hidden;
  width: 59.78571429%;
}
@media (max-width: 991px) {
  .conon .box .gl {
    width: 100%;
  }
}
.conon .box .gl img {
  transition: all 0.4s;
}
.conon .box .gr {
  width: 40.21428571%;
  background: #f8f8f8;
  padding: 0.2rem 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .conon .box .gr {
    width: 100%;
    padding: 0.4rem;
  }
}
.conon .box .gr .g_h1 {
  margin-bottom: 0.36rem;
  position: relative;
  padding-bottom: 0.33rem;
}
.conon .box .gr .g_h1::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #fbd26a;
}
.conon .box .gr .g_con .item {
  margin-bottom: 0.26rem;
}
.conon .box .gr .g_con .item:last-child {
  margin-bottom: 0;
}
.conon .box .gr .g_con .item span {
  margin-bottom: 0.12rem;
  display: block;
  color: rgba(153, 153, 153, 0.8);
}
.conon .box .gr .g_con .item p {
  font-weight: bold;
  color: #666;
  margin-bottom: 0.07rem;
}
.contw {
  padding: 0 0 1.2rem;
}
.contw .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
  margin-top: 0.38rem;
}
.contw .box .item {
  width: 33.33%;
  margin-bottom: 0.3rem;
  padding: 0 0.15rem;
}
@media (max-width: 991px) {
  .contw .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .contw .box .item {
    width: 100%;
  }
}
.contw .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  padding: 0.44rem 0.4rem;
}
.contw .box .item .itembox h3 {
  color: #4b5053;
  font-weight: bold;
}
.contw .box .item .itembox .g_lab {
  margin-top: 0.28rem;
}
.contw .box .item .itembox .g_lab .g_it {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.16rem;
}
.contw .box .item .itembox .g_lab .g_it:last-child {
  margin-bottom: 0;
}
.contw .box .item .itembox .g_lab .g_it i {
  margin-top: 0.04rem;
  margin-right: 0.09rem;
  flex-shrink: 0;
  display: flex;
  width: 16px;
  height: auto;
}
@media (max-width: 767px) {
  .contw .box .item .itembox .g_lab .g_it i {
    width: 13px;
    margin-top: 3px;
  }
}
.contw .box .item .itembox .g_lab .g_it i svg,
.contw .box .item .itembox .g_lab .g_it i img {
  width: 100%;
  height: auto;
}
.contw .box .item .itembox .g_lab .g_it i svg path,
.contw .box .item .itembox .g_lab .g_it i img path {
  fill: #999999;
}
.contw .box .item .itembox .g_lab .g_it p {
  color: #999;
}
.contw .g_tac {
  margin-top: 0.3rem;
}
.conth {
  padding: 0 0 0.4rem;
}
.conth .box .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
@media (max-width: 991px) {
  .conth .box .item {
    flex-direction: column;
  }
}
.conth .box .item .gl {
  width: 50%;
}
@media (max-width: 991px) {
  .conth .box .item .gl {
    width: 100%;
  }
}
.conth .box .item .gl .public-img:before {
  padding-top: 66.85714286%;
}
.conth .box .item .gr {
  width: 50%;
  padding: 0 0.58rem 0 0.8rem;
}
@media (max-width: 991px) {
  .conth .box .item .gr {
    width: 100%;
    padding: 0.4rem 0 0;
  }
}
.conth .box .item .gr .txt .txt_box h3 {
  margin-bottom: 0.2rem;
  font-weight: bold;
  line-height: 1.1;
}
.conth .box .item .gr .txt .txt_box p {
  color: #666666;
  line-height: 1.75;
}
.conth .box .item .gr .txt .g_it {
  display: flex;
  align-items: flex-start;
  margin-top: 0.25rem;
}
.conth .box .item .gr .txt .g_it:last-child {
  margin-bottom: 0;
}
.conth .box .item .gr .txt .g_it i {
  margin-top: 0.04rem;
  margin-right: 0.09rem;
  flex-shrink: 0;
  display: flex;
  width: 16px;
  height: auto;
}
@media (max-width: 767px) {
  .conth .box .item .gr .txt .g_it i {
    width: 13px;
    margin-top: 3px;
  }
}
.conth .box .item .gr .txt .g_it i svg,
.conth .box .item .gr .txt .g_it i img {
  width: 100%;
  height: auto;
}
.conth .box .item .gr .txt .g_it i svg path,
.conth .box .item .gr .txt .g_it i img path {
  fill: #fbd26a;
}
.conth .box .item .gr .txt .g_it p {
  color: #666;
}
.conth .box .item .gr .pub_btn {
  margin-top: 0.6rem;
  border: 1px solid #b4b4b4;
  background: none;
}
.conth .box .item .gr .pub_btn:hover {
  border-color: #fbd26a;
  background: #fbd26a;
}
.conth .box .item .gr .pub_btn:hover p {
  color: #fff;
}
.conth .box .item .gr .pub_btn p {
  color: #999;
}
/* 职位列表页 */
.joinon {
  padding: 0.66rem 0 1.6rem;
}
.joinon .box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .joinon .box {
    flex-direction: column;
  }
}
.joinon .box .gl {
  width: 22.85714286%;
  background: #f8f8f8;
  padding: 0.36rem 0.3rem;
}
@media (max-width: 767px) {
  .joinon .box .gl {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.joinon .box .gl .g_h2 {
  margin-bottom: 0.2rem;
  position: relative;
  padding-bottom: 0.18rem;
}
.joinon .box .gl .g_h2::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 3px;
  bottom: 0;
  left: 0;
  background: #fbd26a;
}
.joinon .box .gl .g_h2 h2 {
  font-weight: bold;
}
.joinon .box .gl ul {
  overflow: hidden;
  border-radius: 0.06rem;
}
.joinon .box .gl ul li {
  margin-bottom: 0.2rem;
  transition: all 0.4s;
}
.joinon .box .gl ul li:first-child .g_xia {
  /* display: block; */
}
.joinon .box .gl ul li.on .g_top .g_gb svg {
  transform: rotate(-90deg);
}
.joinon .box .gl ul li .g_top {
  border-bottom: 1px solid #adadad;
  padding-right: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 0.56rem;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .joinon .box .gl ul li .g_top {
    height: 0.8rem;
  }
}
.joinon .box .gl ul li .g_top .g_top_l {
  width: 80%;
}
.joinon .box .gl ul li .g_top .g_top_l p {
  color: #27253d;
  font-weight: bold;
}
.joinon .box .gl 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.2rem;
  flex-shrink: 0;
}
.joinon .box .gl ul li .g_top .g_gb svg {
  transition: all 0.4s;
  transform: rotate(90deg);
}
.joinon .box .gl ul li .g_top .g_gb svg path {
  fill: #656773;
}
.joinon .box .gl ul li .g_xia {
  display: none;
}
.joinon .box .gl ul li .g_xia .g_bjq {
  padding: 0.25rem 0 0;
}
.joinon .box .gl ul li .g_xia .g_bjq .atwo {
  display: flex;
  padding: 0;
  margin-bottom: 0.12rem;
  align-items: center;
  transition: all 0.4s;
}
.joinon .box .gl ul li .g_xia .g_bjq .atwo:last-child {
  margin-bottom: 0;
}
.joinon .box .gl ul li .g_xia .g_bjq .atwo.on i {
  border-color: #fbd26a;
  background: #fbd26a;
}
.joinon .box .gl ul li .g_xia .g_bjq .atwo.on p {
  color: #fbd26a;
}
.joinon .box .gl ul li .g_xia .g_bjq .atwo:hover p {
  /* color: #fbd26a; */
}
.joinon .box .gl ul li .g_xia .g_bjq .atwo:hover i svg path {
  /* fill: #9366a6; */
}
.joinon .box .gl ul li .g_xia .g_bjq .atwo p {
  transition: all 0.4s;
  color: #222;
}
.joinon .box .gl ul li .g_xia .g_bjq .atwo i {
  margin-right: 0.12rem;
  border: 1px solid #adadad;
  flex-shrink: 0;
  display: block;
  width: 14px;
  height: 14px;
}
.joinon .box .gl ul li .g_xia .g_bjq .atwo i svg,
.joinon .box .gl ul li .g_xia .g_bjq .atwo i img {
  display: none;
  width: 100%;
  height: auto;
}
.joinon .box .gl ul li .g_xia .g_bjq .atwo i svg path,
.joinon .box .gl ul li .g_xia .g_bjq .atwo i img path {
  fill: rgba(255, 255, 255, 0.5);
}
.joinon .box .gr {
  width: 71.42857143%;
}
@media (max-width: 767px) {
  .joinon .box .gr {
    width: 100%;
  }
}
.joinon .box .gr .g_tit {
  padding: 0 0 0.2rem 0.1rem;
  border-bottom: 1px solid #b2b2b2;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .joinon .box .gr .g_tit {
    flex-direction: column;
    padding: 0 0 0.3rem;
  }
}
.joinon .box .gr .g_tit .left {
  display: flex;
  align-items: center;
}
.joinon .box .gr .g_tit .left i {
  margin-right: 0.16rem;
  flex-shrink: 0;
  display: flex;
  width: 0.18rem;
  height: auto;
}
@media (max-width: 767px) {
  .joinon .box .gr .g_tit .left i {
    width: 0.26rem;
  }
}
.joinon .box .gr .g_tit .left i svg,
.joinon .box .gr .g_tit .left i img {
  width: 100%;
  height: auto;
}
.joinon .box .gr .g_tit .left i svg path,
.joinon .box .gr .g_tit .left i img path {
  fill: #333;
}
.joinon .box .gr .g_tit .left p {
  color: #666666;
}
.joinon .box .gr .g_tit .left p span {
  color: #fbd26a;
}
@media (max-width: 767px) {
  .joinon .box .gr .g_tit .right {
    width: 100%;
    margin-top: 0.2rem;
  }
}
.joinon .box .gr .join_jy_box {
  margin-top: 0.3rem;
}
.joinon .box .gr .join_jy_box ul {
  margin-bottom: 0.8rem;
}
.joinon .box .gr .join_jy_box ul li {
  margin-bottom: 0.2rem;
  border: 1px solid #b2b2b2;
}
.joinon .box .gr .join_jy_box ul li .g_top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.26rem 0.58rem 0.26rem 0.28rem;
  position: relative;
  cursor: pointer;
}
.joinon .box .gr .join_jy_box ul li .g_top.on .joingr .g_svg {
  transform: rotate(90deg);
}
.joinon .box .gr .join_jy_box ul li .g_top .joingl {
  flex-shrink: 0;
  width: 34.72527473%;
}
@media (max-width: 1260px) {
  .joinon .box .gr .join_jy_box ul li .g_top .joingl {
    width: 27.47252747%;
  }
}
@media (max-width: 767px) {
  .joinon .box .gr .join_jy_box ul li .g_top .joingl {
    width: 50%;
  }
}
.joinon .box .gr .join_jy_box ul li .g_top .joingl h3 {
  font-weight: bold;
  transition: all 0.4s;
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991px) {
  .joinon .box .gr .join_jy_box ul li .g_top .joingr {
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .joinon .box .gr .join_jy_box ul li .g_top .joingr {
    justify-content: flex-end;
  }
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_lab {
  margin-right: 0.1rem;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .joinon .box .gr .join_jy_box ul li .g_top .joingr .g_lab {
    display: none;
  }
}
@media (max-width: 767px) {
  .joinon .box .gr .join_jy_box ul li .g_top .joingr .g_lab {
    display: none;
  }
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_lab .g_it {
  margin-right: 0.4rem;
  display: flex;
  align-items: center;
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_lab .g_it:last-child {
  margin-right: 0;
}
@media (max-width: 991px) {
  .joinon .box .gr .join_jy_box ul li .g_top .joingr .g_lab .g_it {
    width: 50%;
    margin: 0.1rem 0;
  }
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_lab .g_it i {
  margin-right: 0.08rem;
  flex-shrink: 0;
  display: flex;
  width: auto;
  height: 0.2rem;
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_lab .g_it i svg,
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_lab .g_it i img {
  width: 100%;
  height: auto;
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_lab .g_it i svg path,
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_lab .g_it i img path {
  transition: all 0.4s;
  fill: #666;
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_lab .g_it p {
  flex-shrink: 0;
  transition: all 0.4s;
  color: #666;
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_svg {
  transition: all 0.4s;
  transform: rotate(-90deg);
  flex-shrink: 0;
  display: flex;
  width: 8px;
  height: auto;
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_svg svg,
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_svg img {
  width: 100%;
  height: auto;
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_svg svg path,
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_svg img path {
  transition: all 0.4s;
  fill: #000;
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_gb {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s all;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.36rem;
  height: 0.36rem;
  background: #231815;
  border-radius: 50%;
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_gb i {
  width: 0.14rem;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  transition: all 0.4s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .joinon .box .gr .join_jy_box ul li .g_top .joingr .g_gb i {
    width: 6px;
    height: 1px;
  }
}
.joinon .box .gr .join_jy_box ul li .g_top .joingr .g_gb .i2 {
  transform: translate(-50%, -50%) rotate(90deg);
}
.joinon .box .gr .join_jy_box ul li .g_xia {
  padding: 0 0.29rem 0 0.28rem;
  display: none;
}
@media (max-width: 991px) {
  .joinon .box .gr .join_jy_box ul li .g_xia {
    padding: 0.4rem;
  }
}
.joinon .box .gr .join_jy_box ul li .g_xia .g_bjq {
  border-top: 1px solid #b2b2b2;
  padding: 0.25rem 0 0.4rem 0;
}
@media (max-width: 991px) {
  .joinon .box .gr .join_jy_box ul li .g_xia .g_bjq {
    padding-right: 0.4rem;
  }
}
@media (max-width: 767px) {
  .joinon .box .gr .join_jy_box ul li .g_xia .g_bjq {
    max-height: initial;
    overflow-y: initial;
    padding-right: 0;
  }
  .joinon .box .gr .join_jy_box ul li .g_xia .g_bjq p {
    font-size: 0.28rem !important;
  }
  .joinon .box .gr .join_jy_box ul li .g_xia .g_bjq span {
    font-size: 0.28rem !important;
  }
  .joinon .box .gr .join_jy_box ul li .g_xia .g_bjq h1,
  .joinon .box .gr .join_jy_box ul li .g_xia .g_bjq h2,
  .joinon .box .gr .join_jy_box ul li .g_xia .g_bjq h3,
  .joinon .box .gr .join_jy_box ul li .g_xia .g_bjq h4,
  .joinon .box .gr .join_jy_box ul li .g_xia .g_bjq h5,
  .joinon .box .gr .join_jy_box ul li .g_xia .g_bjq h6 {
    font-size: 0.32rem !important;
  }
}
.joinon .box .gr .join_jy_box ul li .g_xia .g_bjq::-webkit-scrollbar {
  width: 3px;
}
.joinon .box .gr .join_jy_box ul li .g_xia .g_bjq::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 2px;
}
.joinon .box .gr .join_jy_box ul li .g_xia .g_bjq::-webkit-scrollbar-thumb {
  background: #339cd8;
  border-radius: 25px;
}
.joinon .box .gr .join_jy_box ul li .g_xia .g_bjq::-webkit-scrollbar-corner {
  background: #339cd8;
}
.joinon .box .gr .join_jy_box ul li .g_xia .pub_btn {
  margin-top: 0.55rem;
}
.search_box {
  width: 3.2rem;
  height: 0.5rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .search_box {
    width: 100%;
    height: 0.8rem;
  }
}
.search_box input {
  height: 100%;
  padding: 0 0.15rem;
  width: 100%;
  color: #333;
  border: 1px solid #b2b2b2;
  border-right: none;
}
.search_box button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 0.5rem;
  height: 100%;
  background: #fbd26a;
}
@media (max-width: 767px) {
  .search_box button {
    width: 0.8rem;
  }
}
.search_box button svg {
  width: 36%;
  height: auto;
}
.search_box button svg path {
  fill: #fff;
}
.page {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page a {
  height: 0.5rem;
  min-width: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.1rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: none;
  border: 1px solid #999999;
  color: #999;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page a {
    font-size: 0.28rem;
    height: 0.7rem;
    min-width: 0.7rem;
  }
}
.page a.prev img,
.page a.prev svg {
  transform: rotate(180deg);
}
.page a:hover {
  color: #fff;
  border-color: #fbd26a;
  background: #fbd26a;
}
.page a:hover p {
  color: #fff;
}
.page a:hover svg path {
  fill: #fff;
}
.page a img,
.page a svg {
  width: 8px;
  height: auto;
}
@media (max-width: 767px) {
  .page a img,
  .page a svg {
    width: 6px;
  }
}
.page a .img2 {
  display: none;
}
.page a svg path {
  fill: #999999;
}
.page .active {
  color: #fff;
  border-color: #fbd26a;
  background: #fbd26a;
}
.page .active p {
  color: #fff;
}
.page > p {
  color: #999;
  margin: 0 0.1rem;
}
@media (max-width: 767px) {
  .page > p {
    display: none;
  }
}
.page input {
  margin: 0 0.1rem;
  border: 1px solid #999999;
  width: 0.5rem;
  height: 0.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .page input {
    display: none;
  }
}
/* 企业动态 */
.news_hot {
  padding: 0.4rem 0 0.5rem;
}
.news_hot .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .news_hot .box {
    flex-direction: column;
  }
}
.news_hot .box:hover .public-img img {
  transform: scale(1.05);
}
.news_hot .box:hover .txt h2 {
  color: #144e99 !important;
}
.news_hot .box .gl {
  width: 60%;
}
@media (max-width: 991px) {
  .news_hot .box .gl {
    width: 100%;
  }
}
.news_hot .box .gl .public-img:before {
  padding-top: 66.66666667%;
}
.news_hot .box .gr {
  width: 40%;
  background: #f8f8f8;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 0.2rem 0.6rem;
}
@media (max-width: 991px) {
  .news_hot .box .gr {
    width: 100%;
    padding: 0.4rem;
  }
}
.news_hot .box .gr .txt span {
  color: #999;
}
.news_hot .box .gr .txt h2 {
  transition: all 0.4s;
  margin: 0.28rem 0 0.18rem;
  line-height: 1.4;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news_hot .box .gr .txt p {
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.75;
  height: 5.25em;
}
.news_hot .box .gr .pub_btn {
  margin-top: 1.1rem;
}
.newson {
  padding: 0 0 1.6rem;
}
.newson .layui-form {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .newson .layui-form {
    flex-direction: column;
  }
}
.newson .layui-form .layui-input-block {
  width: 2.64rem;
  margin: 0 0.2rem 0.2rem 0;
}
@media (max-width: 767px) {
  .newson .layui-form .layui-input-block {
    width: 100%;
  }
}
.newson .layui-form .layui-input-block .layui-form-select dl dd.layui-this {
  background: #fbd26a;
}
.newson .layui-form .layui-input-block .layui-form-select .layui-input {
  height: 0.5rem;
  border: 1px solid #cccccc;
  color: #444;
  padding: 0 0.24rem;
}
@media (max-width: 767px) {
  .newson .layui-form .layui-input-block .layui-form-select .layui-input {
    height: 0.8rem;
  }
}
.newson .layui-form .layui-input-block .layui-form-select .layui-edge {
  right: 0.24rem;
  background: url(../images/b2.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 7px;
  border: none;
  margin: 0;
  margin-top: -4px;
}
.newson .layui-form .search_box {
  width: 5.4rem;
}
@media (max-width: 767px) {
  .newson .layui-form .search_box {
    width: 100%;
  }
}
.newson .layui-form .search_box input {
  border: 1px solid #dededf;
}
.newson .page {
  margin-top: 0.4rem;
}
.newson_box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.14rem;
  margin-top: 0.2rem;
}
.newson_box .item {
  width: 33.33%;
  margin-bottom: 0.38rem;
  padding: 0 0.14rem;
}
@media (max-width: 991px) {
  .newson_box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .newson_box .item {
    width: 100%;
  }
}
.newson_box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.newson_box .item .itembox:hover .public-img img {
  transform: scale(1.05);
}
.newson_box .item .itembox:hover .txt h3 {
  color: #fbd26a !important;
}
.newson_box .item .itembox .public-img {
  border-radius: 6px;
}
.newson_box .item .itembox .public-img:before {
  padding-top: 62.5%;
}
.newson_box .item .itembox .txt {
  margin-top: 0.16rem;
}
.newson_box .item .itembox .txt .txt_box {
  margin-bottom: 0.5rem;
}
.newson_box .item .itembox .txt .txt_box h3 {
  transition: all 0.4s;
  color: #222222;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
}
.newson_box .item .itembox .txt .txt_box p {
  margin-top: 0.2rem;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 4.5em;
}
.newson_box .item .itembox .txt .txt_b {
  display: flex;
  justify-content: space-between;
}
.newson_box .item .itembox .txt .txt_b .g_time {
  color: #999;
}
/* 企业动态详情页 */
.ninfo {
  padding: 0.65rem 0 1.1rem;
}
.ninfo .box {
  padding: 0 2rem;
}
@media (max-width: 991px) {
  .ninfo .box {
    padding: 0;
  }
}
.ninfo .box h1 {
  font-weight: bold;
}
.ninfo .box .ninfo_tit {
  margin-top: 0.34rem;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #b2b2b2;
}
@media (max-width: 991px) {
  .ninfo .box .ninfo_tit {
    flex-direction: column;
  }
}
.ninfo .box .ninfo_tit .gl {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .ninfo .box .ninfo_tit .gl {
    margin-bottom: 0.1rem;
  }
}
.ninfo .box .ninfo_tit .gl .g_it {
  display: flex;
  align-items: flex-start;
  margin-right: 0.6rem;
}
.ninfo .box .ninfo_tit .gl .g_it:last-child {
  margin-bottom: 0;
}
.ninfo .box .ninfo_tit .gl .g_it i {
  margin-top: 0.04rem;
  margin-right: 0.09rem;
  flex-shrink: 0;
  display: flex;
  width: 16px;
  height: auto;
}
@media (max-width: 767px) {
  .ninfo .box .ninfo_tit .gl .g_it i {
    width: 15px;
    margin-top: 3px;
  }
}
.ninfo .box .ninfo_tit .gl .g_it i svg,
.ninfo .box .ninfo_tit .gl .g_it i img {
  width: 100%;
  height: auto;
}
.ninfo .box .ninfo_tit .gl .g_it i svg path,
.ninfo .box .ninfo_tit .gl .g_it i img path {
  fill: #999999;
}
.ninfo .box .ninfo_tit .gl .g_it p {
  color: #999;
}
.ninfo .box .ninfo_tit .gr .ins_det_fxr_box {
  display: flex;
  align-items: center;
}
.ninfo .box .ninfo_tit .gr .ins_det_fxr_box * {
  transition: all 0.6s;
}
.ninfo .box .ninfo_tit .gr .ins_det_fxr_box > p {
  color: #999;
}
.ninfo .box .ninfo_tit .gr .ins_det_fxr_box .bshare-custom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ninfo .box .ninfo_tit .gr .ins_det_fxr_box .bshare-custom a {
  width: 0.46rem;
  height: 0.46rem;
  padding: 0;
  background: none;
  border-radius: 50%;
  margin: 0 0 0 0.2rem;
  border: 1px solid #b2b2b2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ninfo .box .ninfo_tit .gr .ins_det_fxr_box .bshare-custom a:hover {
  border-color: #fbd26a;
  background: #fbd26a;
  opacity: 1;
}
.ninfo .box .ninfo_tit .gr .ins_det_fxr_box .bshare-custom a:hover svg path {
  fill: #fff;
}
.ninfo .box .ninfo_tit .gr .ins_det_fxr_box .bshare-custom a::before {
  content: '' !important;
}
@media (max-width: 767px) {
  .ninfo .box .ninfo_tit .gr .ins_det_fxr_box .bshare-custom a {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.ninfo .box .ninfo_tit .gr .ins_det_fxr_box .bshare-custom a svg {
  width: 55%;
  height: auto;
  pointer-events: none;
}
.ninfo .box .ninfo_tit .gr .ins_det_fxr_box .bshare-custom a svg path {
  fill: #999999;
  opacity: 1;
}
.ninfo .box .ninfo_tit .gr .social-share .icon-wechat .wechat-qrcode {
  top: 120% !important;
  left: 50% !important;
  transform: translateX(-50%);
}
.ninfo .box .ninfo_tit .gr .social-share .icon-wechat .wechat-qrcode:after {
  display: none !important;
}
.ninfo .box .ninfo_tit .gr .bsBox {
  box-sizing: initial;
}
.ninfo .box .public-content {
  padding: 0.36rem 0 0.6rem;
}
.ninfo .box .public-content p {
  margin-bottom: 0.1rem;
}
.ninfo .box .g_pag {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 0.26rem;
  border-top: 2px solid #e1e1e1;
}
.ninfo .box .g_pag .fh {
  display: flex;
  align-items: center;
}
.ninfo .box .g_pag .fh:hover p {
  color: #fbd26a;
}
.ninfo .box .g_pag .fh:hover svg path {
  fill: #fbd26a;
}
.ninfo .box .g_pag .fh p {
  color: #666;
  transition: all 0.4s;
}
.ninfo .box .g_pag .fh svg {
  width: 14px;
  height: 14px;
  margin-right: 0.12rem;
}
.ninfo .box .g_pag .fh svg path {
  transition: all 0.4s;
  fill: #999999;
}
.ninfo .box .g_pag .pag_l,
.ninfo .box .g_pag .pag_r {
  display: flex;
  align-items: center;
  width: 40%;
}
@media (max-width: 767px) {
  .ninfo .box .g_pag .pag_l,
  .ninfo .box .g_pag .pag_r {
    width: 30%;
  }
}
.ninfo .box .g_pag .pag_l:hover span,
.ninfo .box .g_pag .pag_r:hover span {
  color: #fbd26a;
}
.ninfo .box .g_pag .pag_l:hover p,
.ninfo .box .g_pag .pag_r:hover p {
  color: #fbd26a;
}
.ninfo .box .g_pag .pag_l:hover i svg path,
.ninfo .box .g_pag .pag_r:hover i svg path {
  fill: #fbd26a;
}
.ninfo .box .g_pag .pag_l span,
.ninfo .box .g_pag .pag_r span {
  flex-shrink: 0;
  color: #666;
  transition: all 0.4s;
}
.ninfo .box .g_pag .pag_l p,
.ninfo .box .g_pag .pag_r p {
  transition: all 0.4s;
  width: 100%;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ninfo .box .g_pag .pag_l i,
.ninfo .box .g_pag .pag_r i {
  margin: 0 0.12rem;
  flex-shrink: 0;
  display: flex;
  width: 0.18rem;
  height: auto;
}
.ninfo .box .g_pag .pag_l i svg,
.ninfo .box .g_pag .pag_r i svg,
.ninfo .box .g_pag .pag_l i img,
.ninfo .box .g_pag .pag_r i img {
  width: 100%;
  height: auto;
}
.ninfo .box .g_pag .pag_l i svg path,
.ninfo .box .g_pag .pag_r i svg path,
.ninfo .box .g_pag .pag_l i img path,
.ninfo .box .g_pag .pag_r i img path {
  transition: all 0.4s;
  fill: #9c9c9c;
}
.ninfo .box .g_pag .pag_l {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.ninfo .box .g_pag .pag_l i {
  transform: rotate(180deg);
}
.ninfo .box .g_pag .pag_r {
  text-align: right;
  justify-content: flex-end;
}
.ninfotw {
  padding: 0 0 1.15rem;
}
.ninfotw .newson_box {
  margin-top: 0.55rem;
}
.gpop {
  position: fixed;
  right: 0.4rem;
  bottom: 1.5rem;
  z-index: 100;
  display: none;
}
@media (max-width: 767px) {
  .gpop {
    right: 10px;
  }
}
.gpop > * {
  transition: all 0.4s;
}
.gpop .pop_a {
  width: 0.64rem;
  height: 0.64rem;
  position: relative;
  display: block;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.1rem 0;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .gpop .pop_a {
    margin-top: 10px;
  }
}
.gpop .pop_a.on {
  opacity: 0.8;
  background: #fbd26a;
}
.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: #fff;
}
.gpop .pop_a.on .pop_a_img p {
  color: #fff;
}
.gpop .pop_a img {
  z-index: 100;
}
.gpop .pop_a .pop_a_img {
  width: 52%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.gpop .pop_a .pop_a_img svg {
  width: 100%;
  height: auto;
}
.gpop .pop_a .pop_a_img svg path {
  fill: #000000;
}
.gpop .pop_a .pop_a_img p {
  font-size: 12px;
  margin-top: 5px;
}
.gpop .pop_a .pop_text {
  position: absolute;
  top: 50%;
  right: 130%;
  background: #fff;
  padding: 0.15rem 0.3rem;
  transition: all 0.6s;
  -moz-transition: all 0.6s;
  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);
  border-radius: 5px;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text {
    width: 220px;
  }
}
.gpop .pop_a .pop_text p {
  color: #666;
  margin-bottom: 0.02rem;
  white-space: nowrap;
  font-size: 14px;
}
.gpop .pop_a .pop_text img {
  height: 20px;
  width: 20px;
  margin-right: 0.1rem;
}
.gpop .pop_a .pop_text::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid dashed dashed;
  border-color: #fff transparent transparent;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  position: absolute;
  top: 50%;
  right: -20px;
  margin-top: -10px;
  border-width: 10px;
  border-top-color: #fff;
  -webkit-transform: rotate(-90deg);
}
.gpop .cur1 {
  background: #fbd26a;
}
.gpop .cur1 .pop_a_img svg path {
  fill: #fff;
}
/* 搜索结果 */
.sub_banner_search .sub_banner_txt .ban_l form {
  display: flex;
  justify-content: center;
  text-align: center;
}
.sub_banner_search .sub_banner_txt .ban_l form .search_box {
  margin-top: 0.25rem;
  width: 3.6rem;
}
@media (max-width: 767px) {
  .sub_banner_search .sub_banner_txt .ban_l form .search_box {
    width: 5rem;
  }
}
.sub_banner_search .sub_banner_txt .ban_l form .search_box input {
  border: none;
}
.seaon .container {
  height: 100%;
}
.seaon .seaon_not {
  min-height: 5.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}
.seaon .seaon_box {
  padding: 1.25rem 0 0.3rem;
}
.seaon .seaon_box .proinfoth .probox {
  margin-top: 0.4rem;
}
.seaon .hfo {
  padding: 0 0 0.9rem;
}
.seaon .hfo .g_tit {
  display: flex;
  justify-content: space-between;
}
.seaon .ninfotw {
  padding: 0 0 0.9rem;
}
.seaon .ninfotw .g_tit {
  display: flex;
  justify-content: space-between;
}
.seaon_pro {
  padding: 0 0 1.6rem;
}
.seaon_pro .g_tit {
  display: flex;
  justify-content: space-between;
}
.seaon_pro .page {
  margin-top: 0.5rem;
}
.public-windows99 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  /* display: block !important; */
  display: none;
}
.public-windows99 .cnclose {
  position: absolute;
  right: -0.44rem;
  top: 0.1rem;
  width: 28px;
  height: 28px;
  transform: rotate(45deg);
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .public-windows99 .cnclose {
    right: 0.36rem;
    top: 0.2rem;
    width: 22px;
    height: 22px;
    z-index: 10;
  }
}
.public-windows99 .cnclose span {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
.public-windows99 .cnclose span:nth-child(1) {
  width: 100%;
  height: 2px;
}
.public-windows99 .cnclose span:nth-child(2) {
  width: 2px;
  height: 100%;
}
@media (max-width: 767px) {
  .public-windows99 .cnclose span {
    background-color: #021e4a;
  }
}
.public-windows99 .cnclose:hover {
  transform: rotate(-135deg);
}
.public-windows99.shenqingggangwei .cn41 {
  margin-top: 0.3rem;
}
.public-windows99.shenqingggangwei .formlab {
  margin-top: 0.1rem;
}
.public-windows99.shenqingggangwei .formlab p {
  color: #999;
}
.public-windows99.shenqingggangwei .formlab p a {
  color: #FBD26A;
}
.public-windows99.shenqingggangwei .box10 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.public-windows99.shenqingggangwei .box10 .box2 {
  width: calc(50% - 0.2rem);
  margin-bottom: 0.16rem;
}
@media (max-width: 767px) {
  .public-windows99.shenqingggangwei .box10 .box2 {
    width: 100%;
  }
}
.public-windows99.shenqingggangwei .box10 .box2 .g_top {
  margin-bottom: 0.1rem;
  display: flex;
  align-items: center;
}
.public-windows99.shenqingggangwei .box10 .box2 .g_top span {
  color: #FBD26A;
  margin-right: 0.06rem;
}
.public-windows99.shenqingggangwei .box10 .box2.box12 {
  width: 100%;
}
.public-windows99.shenqingggangwei .box10 .cn13 {
  margin-left: 0.12rem;
  font-size: 12px;
  color: #c7c5c5;
}
@media (max-width: 767px) {
  .public-windows99.shenqingggangwei .box10 .cn13 {
    display: none;
  }
}
.public-windows99.shenqingggangwei .box10 .box11 {
  width: 100%;
  border: 1px solid #ededed;
  padding: 0.18rem;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_t {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_t .g_p .p1 {
  color: #000;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_t .g_p .p2 {
  color: #999;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_t .box11_inp {
  position: relative;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_t .box11_inp .pub_btn {
  height: 0.36rem;
  min-width: 1.2rem;
}
@media (max-width: 767px) {
  .public-windows99.shenqingggangwei .box10 .box11 .box11_t .box11_inp .pub_btn {
    min-width: 1.8rem;
    padding: 0 0.3rem;
    height: 0.6rem;
  }
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_t .box11_inp input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_b {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 0.54rem;
  min-width: 2rem;
  padding: 0.06rem;
  margin-top: 0.15rem;
  background: #fbfbfb;
  position: relative;
}
@media (max-width: 767px) {
  .public-windows99.shenqingggangwei .box10 .box11 .box11_b {
    height: 0.8rem;
  }
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_b .box11_b_box {
  position: relative;
  border: 1px dashed #dcdcdc;
  width: 100%;
  height: 100%;
  padding: 0 48px 0 0.12rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_b .box11_b_box .lsvg {
  margin-right: 0.1rem;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_b .box11_b_box .lsvg i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.2rem;
  height: 0.21rem;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_b .box11_b_box .lsvg i svg,
.public-windows99.shenqingggangwei .box10 .box11 .box11_b .box11_b_box .lsvg i img {
  width: 100%;
  height: auto;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_b .box11_b_box .lsvg i svg path,
.public-windows99.shenqingggangwei .box10 .box11 .box11_b .box11_b_box .lsvg i img path {
  fill: #FBD26A;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_b p {
  color: #333;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_b .g_del {
  cursor: pointer;
  top: 50%;
  right: 0.11rem;
  transform: translateY(-50%);
  position: absolute;
  flex-shrink: 0;
  display: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FBD26A;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_b .g_del i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_b .g_del i svg,
.public-windows99.shenqingggangwei .box10 .box11 .box11_b .g_del i img {
  width: 50%;
  height: auto;
}
.public-windows99.shenqingggangwei .box10 .box11 .box11_b .g_del i svg path,
.public-windows99.shenqingggangwei .box10 .box11 .box11_b .g_del i img path {
  fill: #fff;
}
.public-windows99.shenqingggangwei .box10 .box11 .cn4 {
  padding: 0 0.23rem;
  min-width: 1rem;
  height: 0.4rem;
  color: #fff;
  background: #007f41;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .public-windows99.shenqingggangwei .box10 .box11 .cn4 {
    height: 0.7rem;
    padding: 0 0.4rem;
    white-space: nowrap;
  }
}
.public-windows99.shenqingggangwei .box10 .box11 .box12 {
  width: 100%;
  border-radius: 6px;
  position: relative;
  padding: 0.28rem 0.2rem 0.24rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .public-windows99.shenqingggangwei .box10 .box11 .box12 {
    height: auto;
  }
}
.public-windows99 .g_pop {
  width: 8rem;
  background-color: #Fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0.68rem rgba(0, 0, 0, 0.58);
  padding: 0.36rem 0.6rem;
  max-height: 94vh;
}
@media (max-width: 1580px) {
  .public-windows99 .g_pop {
    width: 11rem;
  }
}
@media (max-width: 991px) {
  .public-windows99 .g_pop {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .public-windows99 .g_pop {
    width: 90%;
  }
}
.public-windows99 .box {
  width: 100%;
  max-height: 94vh;
  overflow: auto;
  background: #fff;
}
@media (max-width: 991px) {
  .public-windows99 .box {
    padding: 0.5rem 0.3rem;
  }
}
.public-windows99 .box .cn1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.35rem;
}
.public-windows99 .box .cn1 .cn2 {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 0.06rem;
  background-color: #e5f4fb;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 0.2rem;
}
.public-windows99 .box .cn1 .cn2 img {
  width: 0.19rem;
}
.public-windows99 .box .cn1 .cn3 {
  font-weight: bold;
  color: #333333;
  line-height: 1.1;
}
.public-windows99 .box .cn1 .cn3a {
  text-align: left;
  width: 100%;
  display: block;
  margin-top: 0.1rem;
  color: #999;
}
.public-windows99 .box .cn1 .cn3a em {
  margin-left: 5px;
  font-style: normal;
  color: #FBD26A;
  /* text-decoration: underline; */
}
.public-windows99 .box .g_box2 {
  width: 100%;
  margin-top: 0.05rem;
}
.public-windows99 .box .g_box2 input {
  padding: 0 0.2rem;
  width: 100%;
  line-height: 0.5rem;
  height: 0.4rem;
  background-color: #f5f5f7;
  border-radius: 6px;
  border: 1px solid #ededed;
  color: #999999;
}
@media (max-width: 767px) {
  .public-windows99 .box .g_box2 input {
    height: 0.8rem;
  }
}
.public-windows99 .box .g_box2 .g_top {
  margin-bottom: 0.1rem;
  display: flex;
  align-items: center;
}
.public-windows99 .box .g_box2 .g_top span {
  color: #FBD26A;
  margin-right: 0.06rem;
}
.public-windows99 .box .g_box2 .g_box2_con {
  border: 1px solid #ededed;
  padding: 0.1rem 0.18rem;
  letter-spacing: -0.01em;
}
.public-windows99 .box .g_box2 .g_box2_con .p2 {
  color: #999;
  margin: 3px 0 0.16rem;
}
.public-windows99 .box .g_box2 .g_box2_con .g_box2_nr {
  padding: 5px;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-color: #e5e5e5;
  border: 1px solid #ededed;
}
.public-windows99 .box .g_box2 .g_box2_con .g_box2_nr input {
  border-radius: 0;
  background: #fff;
  border: none;
}
.public-windows99 .box .g_box2 .g_box2_con .g_box2_nr p {
  color: #999;
  flex-shrink: 0;
  margin: 0 0.18rem;
}
.public-windows99 .box .g_box2 .p1 {
  margin-top: 0.1rem;
  color: #000;
}
.public-windows99 .box .box2 {
  width: 100%;
}
.public-windows99 .box .box2 .cn4 {
  color: #222222;
  line-height: 0.5rem;
}
@media (max-width: 991px) {
  .public-windows99 .box .box2 .cn4 {
    line-height: 0.6rem;
  }
}
.public-windows99 .box .box2 .cn4 .cn5 {
  color: #ff0000;
  margin-right: 5px;
}
.public-windows99 .box .box2 .cn6 {
  width: 100%;
}
.public-windows99 .box .box2 .cn6.on input,
.public-windows99 .box .box2 .cn6.on textarea {
  border: 1px solid #144e99;
}
.public-windows99 .box .box2 .cn6.on input::placeholder,
.public-windows99 .box .box2 .cn6.on textarea::placeholder {
  color: #144e99;
}
.public-windows99 .box .box2 .cn6 input {
  padding: 0 0.18rem;
  width: 100%;
  line-height: 0.5rem;
  height: 0.52rem;
  border: 1px solid #e5e5e5;
  color: #999999;
}
@media (max-width: 991px) {
  .public-windows99 .box .box2 .cn6 input {
    line-height: 0.76rem;
    height: 0.76rem;
  }
}
.public-windows99 .box .box2 .cn6 input::placeholder {
  color: #b6b6b6;
}
.public-windows99 .box .box2 .cn6 textarea {
  padding: 0 0.2rem;
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  height: 1.3rem;
  background-color: #fafafa;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  color: #999;
}
@media (max-width: 991px) {
  .public-windows99 .box .box2 .cn6 textarea {
    line-height: 0.76rem;
    height: 0.76rem;
  }
}
.public-windows99 .box .box2 .cn6 textarea::placeholder {
  color: #999;
}
.curtain1 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
}
.curtain1 .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
}
.curtain1 .curtain_box {
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  left: 50%;
  top: 50%;
  /* overflow: hidden; */
  z-index: 10000;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .curtain1 .curtain_box {
    width: 90%;
  }
}
.curtain1 .curtain_box .curtain_title {
  position: relative;
  padding: 0 30px;
  background: #1c4798;
}
.curtain1 .curtain_box .curtain_title .cnclose {
  position: absolute;
  right: -0.44rem;
  top: 0.1rem;
  width: 28px;
  height: 28px;
  transform: rotate(45deg);
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .curtain1 .curtain_box .curtain_title .cnclose {
    right: 0.36rem;
    top: 0.2rem;
    width: 22px;
    height: 22px;
    z-index: 10;
  }
}
.curtain1 .curtain_box .curtain_title .cnclose span {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
.curtain1 .curtain_box .curtain_title .cnclose span:nth-child(1) {
  width: 100%;
  height: 2px;
}
.curtain1 .curtain_box .curtain_title .cnclose span:nth-child(2) {
  width: 2px;
  height: 100%;
}
@media (max-width: 767px) {
  .curtain1 .curtain_box .curtain_title .cnclose span {
    background-color: #021e4a;
  }
}
.curtain1 .curtain_box .curtain_title .cnclose:hover {
  transform: rotate(-135deg);
}
.curtain1 .curtain_box .curtain_con {
  max-height: 92vh;
  overflow: auto;
}
.gkeep {
  width: 12.4rem;
  display: flex;
}
@media (max-width: 991px) {
  .gkeep {
    width: 100%;
  }
}
.gkeep .gl {
  background: url(../images/popimg.jpg) no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.8rem 0.4rem 0.58rem;
  color: #fff;
  width: 35.48387097%;
}
@media (max-width: 991px) {
  .gkeep .gl {
    display: none;
  }
}
.gkeep .gl .pop_logo {
  display: block;
  width: 1.15rem;
  height: auto;
  margin-bottom: 0.55rem;
}
.gkeep .gl .gl_txt .g_p {
  margin-bottom: 0.33rem;
}
.gkeep .gl .gl_txt .g_p .p2 {
  margin-top: 0.03rem;
  font-weight: bold;
}
.gkeep .gl .gl_txt .g_gou .g_it {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.16rem;
}
.gkeep .gl .gl_txt .g_gou .g_it:last-child {
  margin-bottom: 0;
}
.gkeep .gl .gl_txt .g_gou .g_it i {
  margin-top: 0.04rem;
  margin-right: 0.09rem;
  flex-shrink: 0;
  display: flex;
  width: 16px;
  height: auto;
}
@media (max-width: 767px) {
  .gkeep .gl .gl_txt .g_gou .g_it i {
    width: 13px;
    margin-top: 3px;
  }
}
.gkeep .gl .gl_txt .g_gou .g_it i svg,
.gkeep .gl .gl_txt .g_gou .g_it i img {
  width: 100%;
  height: auto;
}
.gkeep .gl .gl_txt .g_gou .g_it i svg path,
.gkeep .gl .gl_txt .g_gou .g_it i img path {
  fill: #f5f7f9;
}
.gkeep .gl .gl_txt .g_gou .g_it p {
  color: #fff;
  font-weight: bold;
}
.gkeep .gl .gl_b {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
}
.gkeep .gl .gl_b a {
  transition: all 0.4s;
  color: #fff;
  margin-right: 0.28rem;
  position: relative;
}
.gkeep .gl .gl_b a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -3px;
  left: 0;
  opacity: 0;
  transition: all 0.4s;
}
.gkeep .gl .gl_b a:hover::after {
  opacity: 1;
}
.gkeep .gr {
  width: 64.51612903%;
}
@media (max-width: 991px) {
  .gkeep .gr {
    width: 100%;
  }
}
.gkeep .gr .g_pop {
  width: 100%;
  background-color: #Fff;
  box-shadow: 0 0 0.68rem rgba(0, 0, 0, 0.58);
  padding: 0.36rem 0.6rem;
  padding-right: 0.3rem;
  position: relative;
}
@media (max-width: 767px) {
  .gkeep .gr .g_pop {
    padding: 0.26rem 0.3rem;
    padding-right: 0.15rem;
  }
}
.gkeep .gr .g_pop .cnclose {
  position: absolute;
  right: -0.44rem;
  top: 0.1rem;
  width: 28px;
  height: 28px;
  transform: rotate(45deg);
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .gkeep .gr .g_pop .cnclose {
    right: 0.36rem;
    top: 0.36rem;
    width: 22px;
    height: 22px;
    z-index: 10;
  }
}
.gkeep .gr .g_pop .cnclose span {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
.gkeep .gr .g_pop .cnclose span:nth-child(1) {
  width: 100%;
  height: 2px;
}
.gkeep .gr .g_pop .cnclose span:nth-child(2) {
  width: 2px;
  height: 100%;
}
@media (max-width: 767px) {
  .gkeep .gr .g_pop .cnclose span {
    background-color: #021e4a;
  }
}
.gkeep .gr .g_pop .cnclose:hover {
  transform: rotate(-135deg);
}
.gkeep .gr .box {
  width: 100%;
  padding-right: 0.3rem;
  max-height: 83vh;
  overflow: auto;
  background: #fff;
}
.gkeep .gr .box .cn1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.35rem;
}
.gkeep .gr .box .cn1 .cn2 {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 0.06rem;
  background-color: #e5f4fb;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 0.2rem;
}
.gkeep .gr .box .cn1 .cn2 img {
  width: 0.19rem;
}
.gkeep .gr .box .cn1 .cn3 {
  font-weight: bold;
  color: #333333;
  line-height: 1.1;
}
.gkeep .gr .box .cn1 .cn3a {
  text-align: left;
  width: 100%;
  display: block;
  margin-top: 0.1rem;
  color: #999;
}
.gkeep .gr .box .cn1 .cn3a em {
  margin-left: 5px;
  font-style: normal;
  color: #FBD26A;
  /* text-decoration: underline; */
}
.gkeep .gr .box .g_box2 {
  width: 100%;
  margin-top: 0.05rem;
}
.gkeep .gr .box .g_box2 input {
  padding: 0 0.2rem;
  width: 100%;
  line-height: 0.5rem;
  height: 0.4rem;
  background-color: #f5f5f7;
  border-radius: 6px;
  border: 1px solid #ededed;
  color: #999999;
}
@media (max-width: 767px) {
  .gkeep .gr .box .g_box2 input {
    height: 0.8rem;
  }
}
.gkeep .gr .box .g_box2 .g_top {
  margin-bottom: 0rem;
  display: flex;
  align-items: center;
}
.gkeep .gr .box .g_box2 .g_top span {
  color: #FBD26A;
  margin-right: 0.06rem;
}
.gkeep .gr .box .g_box2 .g_box2_con {
  border: 1px solid #ededed;
  padding: 0.1rem 0.18rem;
  letter-spacing: -0.01em;
}
.gkeep .gr .box .g_box2 .g_box2_con .p2 {
  color: #999;
  margin: 3px 0 0.16rem;
}
.gkeep .gr .box .g_box2 .g_box2_con .g_box2_nr {
  padding: 5px;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-color: #e5e5e5;
  border: 1px solid #ededed;
}
.gkeep .gr .box .g_box2 .g_box2_con .g_box2_nr input {
  border-radius: 0;
  background: #fff;
  border: none;
}
.gkeep .gr .box .g_box2 .g_box2_con .g_box2_nr p {
  color: #999;
  flex-shrink: 0;
  margin: 0 0.18rem;
}
.gkeep .gr .box .g_box2 .p1 {
  margin-top: 0.1rem;
  color: #000;
}
.gkeep .gr .box .box2 {
  width: 100%;
}
.gkeep .gr .box .box2 .cn4 {
  color: #222222;
  line-height: 0.5rem;
}
@media (max-width: 991px) {
  .gkeep .gr .box .box2 .cn4 {
    line-height: 0.6rem;
  }
}
.gkeep .gr .box .box2 .cn4 .cn5 {
  color: #ff0000;
  margin-right: 5px;
}
.gkeep .gr .box .box2 .cn6 {
  width: 100%;
}
.gkeep .gr .box .box2 .cn6.on input,
.gkeep .gr .box .box2 .cn6.on textarea {
  border: 1px solid #144e99;
}
.gkeep .gr .box .box2 .cn6.on input::placeholder,
.gkeep .gr .box .box2 .cn6.on textarea::placeholder {
  color: #144e99;
}
.gkeep .gr .box .box2 .cn6 input {
  padding: 0 0.18rem;
  width: 100%;
  line-height: 0.5rem;
  border-radius: 4px;
  height: 0.5rem;
  border: 1px solid #e5e5e5;
  color: #999999;
}
@media (max-width: 991px) {
  .gkeep .gr .box .box2 .cn6 input {
    line-height: 0.76rem;
    height: 0.76rem;
  }
}
.gkeep .gr .box .box2 .cn6 input::placeholder {
  color: #b6b6b6;
}
.gkeep .gr .box .box2 .cn6 textarea {
  padding: 0 0.2rem;
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  height: 1rem;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  color: #999;
}
@media (max-width: 991px) {
  .gkeep .gr .box .box2 .cn6 textarea {
    line-height: 0.76rem;
    height: 1.2rem;
  }
}
.gkeep .gr .box .box2 .cn6 textarea::placeholder {
  color: #999;
}
.gkeep .gr .box .box2 .cn6 .layui-input-block {
  width: 100%;
  margin: 0;
}
.gkeep .gr .box .box2 .cn6 .layui-input-block .layui-form-select dl dd.layui-this {
  background: #fbd26a;
}
.gkeep .gr .box .box2 .cn6 .layui-input-block .layui-form-select .layui-input {
  height: 0.5rem;
  border: 1px solid #e5e5e5;
  color: #444;
  padding: 0 0.24rem;
}
@media (max-width: 767px) {
  .gkeep .gr .box .box2 .cn6 .layui-input-block .layui-form-select .layui-input {
    height: 0.76rem;
  }
}
.gkeep .gr .box .box2 .cn6 .layui-input-block .layui-form-select .layui-edge {
  right: 0.24rem;
  background: url(../images/b3.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 7px;
  border: none;
  margin: 0;
  margin-top: -4px;
}
.gkeep .gr .cn41 {
  margin-top: 0.3rem;
  /* margin-bottom: 0.3rem; */
}
.gkeep .gr .formlab {
  margin-top: -0.1rem;
}
.gkeep .gr .formlab p {
  color: #999;
}
.gkeep .gr .formlab p a {
  color: #FBD26A;
}
.gkeep .gr .box10 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gkeep .gr .box10 .box2 {
  width: calc(50% - 0.2rem);
  margin-bottom: 0.16rem;
}
@media (max-width: 767px) {
  .gkeep .gr .box10 .box2 {
    width: 100%;
  }
}
.gkeep .gr .box10 .box2 .g_top {
  margin-bottom: 0.05rem;
  display: flex;
  align-items: center;
}
.gkeep .gr .box10 .box2 .g_top span {
  color: #FBD26A;
  margin-right: 0.06rem;
}
.gkeep .gr .box10 .box2.box12 {
  width: 100%;
}
.gkeep .gr .box10 .cn13 {
  margin-left: 0.12rem;
  font-size: 12px;
  color: #c7c5c5;
}
@media (max-width: 767px) {
  .gkeep .gr .box10 .cn13 {
    display: none;
  }
}
.gkeep .gr .box10 .box11 {
  width: 100%;
  border: 1px solid #ededed;
  padding: 0.18rem;
}
.gkeep .gr .box10 .box11 .box11_t {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.gkeep .gr .box10 .box11 .box11_t .g_p .p1 {
  color: #000;
}
.gkeep .gr .box10 .box11 .box11_t .g_p .p2 {
  color: #999;
}
.gkeep .gr .box10 .box11 .box11_t .box11_inp {
  position: relative;
}
.gkeep .gr .box10 .box11 .box11_t .box11_inp .pub_btn {
  height: 0.36rem;
  min-width: 1.2rem;
}
@media (max-width: 767px) {
  .gkeep .gr .box10 .box11 .box11_t .box11_inp .pub_btn {
    min-width: 1.8rem;
    padding: 0 0.3rem;
    height: 0.6rem;
  }
}
.gkeep .gr .box10 .box11 .box11_t .box11_inp input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}
.gkeep .gr .box10 .box11 .box11_b {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 0.54rem;
  min-width: 2rem;
  padding: 0.06rem;
  margin-top: 0.15rem;
  background: #fbfbfb;
  position: relative;
}
@media (max-width: 767px) {
  .gkeep .gr .box10 .box11 .box11_b {
    height: 0.8rem;
  }
}
.gkeep .gr .box10 .box11 .box11_b .box11_b_box {
  position: relative;
  border: 1px dashed #dcdcdc;
  width: 100%;
  height: 100%;
  padding: 0 48px 0 0.12rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.gkeep .gr .box10 .box11 .box11_b .box11_b_box .lsvg {
  margin-right: 0.1rem;
}
.gkeep .gr .box10 .box11 .box11_b .box11_b_box .lsvg i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.2rem;
  height: 0.21rem;
}
.gkeep .gr .box10 .box11 .box11_b .box11_b_box .lsvg i svg,
.gkeep .gr .box10 .box11 .box11_b .box11_b_box .lsvg i img {
  width: 100%;
  height: auto;
}
.gkeep .gr .box10 .box11 .box11_b .box11_b_box .lsvg i svg path,
.gkeep .gr .box10 .box11 .box11_b .box11_b_box .lsvg i img path {
  fill: #FBD26A;
}
.gkeep .gr .box10 .box11 .box11_b p {
  color: #333;
}
.gkeep .gr .box10 .box11 .box11_b .g_del {
  cursor: pointer;
  top: 50%;
  right: 0.11rem;
  transform: translateY(-50%);
  position: absolute;
  flex-shrink: 0;
  display: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FBD26A;
}
.gkeep .gr .box10 .box11 .box11_b .g_del i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.gkeep .gr .box10 .box11 .box11_b .g_del i svg,
.gkeep .gr .box10 .box11 .box11_b .g_del i img {
  width: 50%;
  height: auto;
}
.gkeep .gr .box10 .box11 .box11_b .g_del i svg path,
.gkeep .gr .box10 .box11 .box11_b .g_del i img path {
  fill: #fff;
}
.gkeep .gr .box10 .box11 .cn4 {
  padding: 0 0.23rem;
  min-width: 1rem;
  height: 0.4rem;
  color: #fff;
  background: #007f41;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .gkeep .gr .box10 .box11 .cn4 {
    height: 0.7rem;
    padding: 0 0.4rem;
    white-space: nowrap;
  }
}
.gkeep .gr .box10 .box11 .box12 {
  width: 100%;
  border-radius: 6px;
  position: relative;
  padding: 0.28rem 0.2rem 0.24rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .gkeep .gr .box10 .box11 .box12 {
    height: auto;
  }
}
.gnot {
  text-align: center;
  margin: 2.2rem 0 1.8rem;
  color: #666;
}
