@charset "utf-8";
:root {
  --color: #0ca59c;
  --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;
  scrollbar-width: thin;
}
* ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 5px;
}
* ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--color);
}
* ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
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;
}
@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;
}
video,
video:focus {
  display: block;
  font-size: 0;
  border: 0;
  outline: none;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
}
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  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 !important;
  opacity: 1 !important;
}
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: 75%;
  max-width: 1280px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.container2 {
  margin: 0 auto;
  width: 85%;
  max-width: 1600px;
}
@media (max-width: 1260px) {
  .container2 {
    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-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,
.public-img > video {
  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: 80px;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 60px;
  }
}
/*头部*/
#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: 100px;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}
@media (max-width: 991px) {
  #c-header {
    line-height: 60px;
  }
}
#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: 60px;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-head-move {
  top: -100px;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -60px;
  }
}
#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;
}
#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: 30px;
  }
}
#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;
}
#c-header .c-switch {
  position: relative;
  display: none;
  width: 24px;
  height: 20px;
  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;
}
#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: var(--color);
}
#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;
  color: #666;
}
#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: var(--color);
  cursor: pointer;
}
#c-header .c-gn .c-language {
  margin: 0 0.3rem;
  position: relative;
  cursor: pointer;
}
#c-header .c-gn .c-language .c-ico-text {
  display: flex;
  align-items: center;
}
#c-header .c-gn .c-language .c-ico-text span {
  margin: 0 0.05rem;
  transition: all 0.4s;
}
#c-header .c-gn .c-language .c-ico-text img,
#c-header .c-gn .c-language .c-ico-text svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  vertical-align: middle;
}
#c-header .c-gn .c-language .c-ico-text img:nth-child(3),
#c-header .c-gn .c-language .c-ico-text svg:nth-child(3) {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
}
#c-header .c-gn .c-language .c-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  line-height: 50px;
}
#c-header .c-gn .c-language .c-box a {
  position: relative;
  display: block;
  padding: 0 20px;
  transition: all 0.4s;
}
#c-header .c-gn .c-language .c-box a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(100% - 40px) !important;
  left: 20px !important;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
#c-header .c-gn .c-language .c-box a:hover {
  color: var(--color);
}
#c-header .c-gn .c-language:hover .c-ico-text {
  color: var(--color);
}
#c-header .c-gn .c-language:hover .c-ico-text svg {
  color: var(--color);
}
#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;
  width: 20px;
  height: 20px;
}
#c-header .c-gn .c-phone span {
  font-weight: bold;
}
#c-header.c-style2 .c-gn .c-phone svg {
  color: var(--color);
}
#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: var(--color);
  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: 50px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#c-header .c-nav ul li: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 {
  color: #333;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#c-header.c-style2 a {
  color: #333;
}
#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;
}
#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: var(--color);
}
#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: var(--color);
}
#c-header .c-nav2 {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 50px;
  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 5vw;
  border-top: 1px solid #f1f1f1;
}
#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: 14px;
  height: 14px;
  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: var(--color);
}
#c-header .c-nav2 li ul {
  display: none;
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 1.2rem);
}
.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 底部 */
#c-footer {
  color: #fff;
}
#c-footer a {
  color: #a9a9a9;
  transition: 0.4s;
}
#c-footer a:hover {
  color: var(--color);
}
#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: var(--color);
}
#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: 14px;
  height: 14px;
}
@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: 40px;
    height: 40px;
  }
}
#c-footer .c-top-box .container .c-ico a img,
#c-footer .c-top-box .container .c-ico a svg {
  width: 50%;
  height: 50%;
}
#c-footer .c-top-box .container .c-ico a:hover {
  background: var(--color);
}
@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: var(--color);
}
#c-footer .c-bottom-box .container .c-copyright {
  word-wrap: break-word;
  word-break: break-all;
}
#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: var(--color);
  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: var(--color);
}
#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;
}
/*首页内容1*/
.c-home1 .swiper-slide {
  overflow: hidden;
}
.c-home1 .swiper-slide .c-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--vh);
}
.c-home1 .swiper-slide .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .c-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  color: #fff;
}
@media (max-width: 767px) {
  .c-home1 .swiper-slide .txt {
    background: rgba(0, 0, 0, 0.2);
  }
}
.c-home1 .swiper-slide .txt .container2 {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.c-home1 .swiper-slide .txt .container2 .txt_box {
  padding: 0 0 1.2rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-slide .txt .container2 .txt_box {
    padding: 0 0 3rem;
  }
}
.c-home1 .swiper-slide .txt .container2 .txt_box .g_p .p1 {
  /* font-weight: bold; */
  line-height: 1.15;
}
.c-home1 .swiper-slide .txt .container2 .txt_box .g_p .p2 {
  margin-top: 0.1rem;
}
.c-home1 .swiper-slide .txt .container2 .txt_box .pub_btn {
  margin-top: 0.45rem;
}
.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 .g_pag {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.83rem;
  z-index: 10;
}
.c-home1 .swiper-pagination {
  position: initial;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  bottom: 0.4rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination {
    bottom: 0.6rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  opacity: 1;
  background: rgba(255, 255, 255, 0.71);
  border-radius: 0;
  width: 2rem;
  height: 2px;
  color: rgba(255, 255, 255, 0.71);
  vertical-align: top;
  margin: 0 0 0 0.28rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0 0 0.28rem;
    width: 30%;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet div {
  position: relative;
  height: 100%;
  background: #f9be00;
  width: 0%;
  transition-delay: 0s;
  transition-timing-function: linear;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet i {
  font-style: initial;
  display: flex;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  z-index: 10;
  width: 100%;
  text-align: left;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active div {
  width: 100%;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active i {
  color: #f9be00;
}
/* 自己的公共样式 */
/*过渡*/
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: 80px;
  width: 100%;
  background: #fff;
}
.gw.on {
  height: 81px;
}
@media screen and (max-width: 1440px) {
  .gw {
    height: 60px;
  }
  .gw.on {
    height: 61px;
  }
}
.ceshi {
  -webkit-animation-name: fadeInRightSm;
  animation-name: fadeInRightSm;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.font14 {
  font-size: 14px;
}
.font16 {
  font-size: 16px;
}
.font18 {
  font-size: 18px;
}
.font20 {
  font-size: 20px;
}
.font22 {
  font-size: 22px;
}
.font24 {
  font-size: 24px;
}
.font26 {
  font-size: 26px;
}
.font28 {
  font-size: 28px;
}
.font30 {
  font-size: 30px;
}
.font32 {
  font-size: 32px;
}
.font34 {
  font-size: 34px;
}
.font36 {
  font-size: 36px;
}
.font38 {
  font-size: 38px;
}
.font40 {
  font-size: 40px;
}
.font42 {
  font-size: 42px;
}
.font44 {
  font-size: 44px;
}
.font46 {
  font-size: 46px;
}
.font48 {
  font-size: 48px;
}
.font50 {
  font-size: 50px;
}
.font52 {
  font-size: 52px;
}
.font54 {
  font-size: 54px;
}
.font56 {
  font-size: 56px;
}
.font60 {
  font-size: 60px;
}
.font80 {
  font-size: 80px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 26px;
  }
  .font30 {
    font-size: 28px;
  }
  .font32 {
    font-size: 30px;
  }
  .font34 {
    font-size: 32px;
  }
  .font36 {
    font-size: 34px;
  }
  .font38 {
    font-size: 36px;
  }
  .font40 {
    font-size: 38px;
  }
  .font42,
  .font44 {
    font-size: 40px;
  }
  .font46 {
    font-size: 42px;
  }
  .font48 {
    font-size: 44px;
  }
  .font50 {
    font-size: 46px;
  }
  .font52 {
    font-size: 48px;
  }
  .font54 {
    font-size: 50px;
  }
  .font56 {
    font-size: 52px;
  }
  .font60,
  .font80 {
    font-size: 56px;
  }
}
@media (max-width: 1260px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font22 {
    font-size: 20px;
  }
  .font24 {
    font-size: 22px;
  }
  .font26 {
    font-size: 24px;
  }
  .font28 {
    font-size: 24px;
  }
  .font30 {
    font-size: 26px;
  }
  .font32 {
    font-size: 28px;
  }
  .font34 {
    font-size: 28px;
  }
  .font36,
  .font38,
  .font40 {
    font-size: 30px;
  }
  .font42,
  .font44 {
    font-size: 32px;
  }
  .font46 {
    font-size: 36px;
  }
  .font48,
  .font50,
  .font52,
  .font54,
  .font56 {
    font-size: 38px;
  }
  .font60,
  .font80 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .font14,
  .font16 {
    font-size: 0.28rem;
  }
  .font18,
  .font20 {
    font-size: 0.3rem;
  }
  .font22,
  .font24,
  .font26,
  .font28 {
    font-size: 0.32rem;
  }
  .font30,
  .font32,
  .font34 {
    font-size: 0.34rem;
  }
  .font36,
  .font38,
  .font40 {
    font-size: 0.4rem;
  }
  .font42,
  .font44,
  .font46 {
    font-size: 0.46rem;
  }
  .font48,
  .font50,
  .font52,
  .font54,
  .font56,
  .font60,
  .font80 {
    font-size: 0.48rem;
  }
}
/*延迟*/
.yanchi1 {
  animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
  /* Safari 和 Chrome */
}
.yanchi2 {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}
.yanchi3 {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}
.yanchi4 {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}
.yanchi5 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}
.yanchi6 {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}
.yanchi7 {
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
}
.yanchi8 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}
.yanchi9 {
  animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
}
.yanchi10 {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
.yanchi11 {
  animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
}
.yanchi12 {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}
.yanchi13 {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}
.yanchi14 {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}
.yanchi15 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}
.yanchi16 {
  animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
}
.yanchi17 {
  animation-delay: 1.7s;
  -webkit-animation-delay: 1.7s;
}
.yanchi18 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}
.yanchi19 {
  animation-delay: 1.9s;
  -webkit-animation-delay: 1.9s;
}
.yanchi20 {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}
/* 缓动效果 */
@-webkit-keyframes slideInUp200 {
  from {
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp200 {
  from {
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp200 {
  -webkit-animation-name: slideInUp200;
  animation-name: slideInUp200;
}
@-webkit-keyframes slideInUp100 {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp100 {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp100 {
  -webkit-animation-name: slideInUp100;
  animation-name: slideInUp100;
}
@-webkit-keyframes slideInUp50 {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp50 {
  from {
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp50 {
  -webkit-animation-name: slideInUp50;
  animation-name: slideInUp50;
}
@-webkit-keyframes slideInUp40 {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp40 {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp40 {
  -webkit-animation-name: slideInUp40;
  animation-name: slideInUp40;
}
@-webkit-keyframes slideInUp30 {
  from {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp30 {
  from {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp30 {
  -webkit-animation-name: slideInUp30;
  animation-name: slideInUp30;
}
@-webkit-keyframes slideInUp20 {
  from {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp20 {
  from {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp20 {
  -webkit-animation-name: slideInUp20;
  animation-name: slideInUp20;
}
@keyframes fadeInDown20 {
  from {
    opacity: 0;
    transform: translate3d(0%, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown20 {
  animation-name: fadeInDown20;
}
.ptb140 {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ptb120 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.ptb110 {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.ptb90 {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.ptb80 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ptb60 {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .ptb140 {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .ptb120 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .ptb110 {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .ptb100 {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .ptb90 {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .ptb80 {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
}
/* 导航设置 */
/* 默认导航栏颜色 */
/* 默认字体颜色 */
/* 默认svg颜色 */
/* 移入导航栏颜色 */
/* 移入导航栏字体和svg颜色 */
/* 移入文字字体和svg颜色 */
/* 移入文字下划线颜色 */
/* 子页面导航栏颜色 show_nav */
/* 子页面字体颜色 */
/* 子页面svg颜色 */
/* 导航 */
nav {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  background: none;
  /* border-bottom: 1px solid rgba(222,229,236,0.5); */
  /* show_nav 子页面导航class */
  /* nav_on 导航不在顶部后移入加上移除去掉的class */
  /* nav_on2 导航不在顶部后固定的class */
  /* 搜索下拉 */
}
@media (max-width: 1260px) {
  nav {
    background: #fff;
  }
}
nav.show_nav {
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}
nav.show_nav .nav_top {
  background: none;
}
@media (max-width: 1260px) {
  nav.show_nav .nav_top {
    background: var(--color);
  }
}
@media (max-width: 1260px) {
  nav.show_nav .xs {
    display: block;
  }
}
@media (max-width: 1260px) {
  nav.show_nav .yc {
    display: none;
  }
}
nav.show_nav svg {
  color: #999;
}
nav.show_nav svg path {
  fill: #999;
}
@media (max-width: 1260px) {
  nav.show_nav svg path {
    fill: #999;
  }
}
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: #999;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg {
  color: #999;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg path {
  fill: #999;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p {
  color: var(--color) !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a > p::after {
  background: var(--color) !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg {
  color: var(--color) !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a svg path {
  fill: var(--color) !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: var(--color);
  }
}
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: var(--color);
  }
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan::after {
  background: #cccccc;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg {
  color: #999 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p,
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg {
  color: #999 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_on::after {
  background: #cccccc;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_on > svg {
  color: #999 !important;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on svg {
  color: #999;
}
nav.show_nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on p {
  color: #222;
}
nav.nav_on,
nav.nav_on2 {
  background: #fff;
}
nav.nav_on svg,
nav.nav_on2 svg {
  color: #333;
}
nav.nav_on svg path,
nav.nav_on2 svg path {
  fill: #333;
}
nav.nav_on .nav_top,
nav.nav_on2 .nav_top {
  background: var(--color);
}
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,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a svg {
  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: #333;
}
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: var(--color) !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: var(--color) !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover， > a svg,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover， > a svg {
  color: var(--color) !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: var(--color) !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: var(--color);
}
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: var(--color);
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan::after,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan::after {
  background: #cccccc;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg {
  color: #999 !important;
}
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,
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg {
  color: #999 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_on::after,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_on::after {
  background: #cccccc;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_on > svg,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_on > svg {
  color: #999 !important;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on svg,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on svg {
  color: #999;
}
nav.nav_on .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on p,
nav.nav_on2 .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on p {
  color: #222;
}
@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: var(--color);
  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: 80px;
  padding: 0 1.18rem 0 1.39rem;
  margin: auto;
  /* logo */
  /* 导航右侧 */
}
@media screen and (max-width: 1440px) {
  nav .nav_ljbox {
    height: 60px;
  }
}
@media (max-width: 1260px) {
  nav .nav_ljbox {
    width: 100%;
    padding: 0 5%;
  }
}
nav .nav_ljbox .nav_l_box .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_l_box .logo .xs {
    display: none;
  }
  nav .nav_ljbox .nav_l_box .logo .yc {
    display: block;
  }
}
nav .nav_ljbox .nav_l_box .logo img {
  width: 1.84rem;
  height: auto;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_l_box .logo img {
    width: 2.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_r_box {
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box {
    display: flex;
  }
}
nav .nav_ljbox .nav_r_box .nav_r {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  /* 导航右边内容 */
}
nav .nav_ljbox .nav_r_box .nav_r .navbox {
  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: var(--color) !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,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a svg {
  color: var(--color) !important;
}
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: var(--color) !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .xs,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .xs {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .yc,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .yc {
  display: block;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .img1,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .img1 {
  display: none !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li:hover > a .img2,
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li.on > a .img2 {
  display: block !important;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a {
  color: #fff;
  margin: 0 0.23rem;
  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;
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > img {
  width: 8px;
  height: auto;
  margin-left: 10px;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a .img2 {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p {
  transition: all 0.4s;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .navbox > ul > li > a > p::after {
  transition: all 0.4s;
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  left: 50%;
  background: var(--color);
  transform: translateX(-50%);
}
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;
  padding-right: 0.2rem;
  height: 100%;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan {
    /* flex-direction: column; */
    justify-content: center;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan:hover .nav_lan_box p,
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan:hover .nav_lan_box svg {
  color: var(--color);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.27);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan::after {
    background: #ccc;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg {
  width: 20px;
  height: auto;
  color: #fff;
  margin-right: 0.11rem;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg {
    color: #333 !important;
  }
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg {
    margin: 0 4px 0 0;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan > svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box {
  display: flex;
  align-items: center;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
  color: #fff;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
    color: #333 !important;
  }
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box p {
    font-size: 12px;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg {
  color: #fff;
  flex-shrink: 0;
  width: 6px;
  height: auto;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg {
    color: #333 !important;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_box svg path {
  fill: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.05);
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box {
  width: 100%;
  height: 100%;
  border-top: 2px solid var(--color);
  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 {
  transition: all 0.4s;
  width: 100%;
  min-height: 0.48rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.2rem;
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a {
    min-height: 0.7rem;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_lan .nav_lan_sel .nav_lan_sel_box a:hover {
  background: #e6f6f5;
  color: var(--color);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search {
  position: relative;
  /* background: #fff; */
  /* border-radius: 5px; */
}
@media (max-width: 767px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search {
    /* display: none; */
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_on {
  cursor: pointer;
  margin-right: 0.17rem;
  padding-right: 0.22rem;
  display: flex;
  align-items: center;
  position: relative;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_on:hover svg {
  color: var(--color) !important;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_on::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.27);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_on::after {
    background: #ccc;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_on svg {
  transition: all 0.4s;
  color: #fff;
  width: 18px;
  height: auto;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_on svg {
    color: #333 !important;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_search .nav_search_on svg path {
  fill: #333;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu {
  height: 100%;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu {
    display: none;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on.on .img1 {
  opacity: 0;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on.on .img2 {
  opacity: 1;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on svg {
  left: 0;
  position: absolute;
  color: #fff;
  width: 15px;
  height: auto;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on svg {
    color: #333 !important;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on svg path {
  fill: #333;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on .img1 {
  position: relative;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on .img2 {
  opacity: 0;
  transform: rotate(45deg);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on p {
  text-transform: uppercase;
  color: #fff;
  margin-left: 0.14rem;
}
@media (max-width: 1260px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_on p {
    color: #333 !important;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  background: rgba(0, 0, 0, 0.62);
}
@media screen and (max-width: 1440px) {
  nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box {
    height: 100vh;
  }
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con {
  padding: 0.6rem 0;
  background: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container {
  display: flex;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_l {
  border-right: 1px solid #e8e8e8;
  padding-bottom: 0.6rem;
  padding-right: 0.8rem;
  width: 32.8125%;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_l a {
  transition: all 0.4s;
  border-radius: 0 0.1rem 0 0.1rem;
  min-height: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0.26rem 0.2rem 0.3rem;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_l a.on {
  background: var(--color);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_l a.on p {
  color: #fff;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_l a.on i svg {
  color: #fff !important;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_l a p {
  color: #666;
  transition: all 0.4s;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_l a i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: auto;
  margin-left: 0.1rem;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_l a i svg,
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_l a i img {
  transition: all 0.4s;
  color: #cccccc;
  width: 100%;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_l a i svg path,
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_l a i img path {
  fill: var(--color);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_m {
  padding: 0 0.8rem;
  border-right: 1px solid #e8e8e8;
  width: 28.59375%;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_m .menu_m_it {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_m .menu_m_it:first-child {
  display: block;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_m .menu_m_it a {
  border-radius: 0 0.1rem 0 0.1rem;
  min-height: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.14rem 0 0.14rem 0;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_m .menu_m_it a:hover p {
  font-weight: bold;
  color: var(--color);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_m .menu_m_it a:hover i {
  opacity: 1;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_m .menu_m_it a:hover i svg {
  color: var(--color) !important;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_m .menu_m_it a p {
  color: #999;
  transition: all 0.4s;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_m .menu_m_it a i {
  transition: all 0.4s;
  opacity: 0;
  margin-left: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_m .menu_m_it a i svg,
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_m .menu_m_it a i img {
  transition: all 0.4s;
  color: #cccccc;
  width: 100%;
  height: auto;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_m .menu_m_it a i svg path,
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_m .menu_m_it a i img path {
  fill: var(--color);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_r {
  padding-left: 0.8rem;
  width: 38.59375%;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_r .menu_r_it {
  display: none;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_r .menu_r_it:first-child {
  display: block;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_r .menu_r_it:hover img {
  transform: scale(1.05);
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_r .menu_r_it .public-img:before {
  padding-top: 65.61743341%;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_r .menu_r_it .txt {
  margin-top: 0.24rem;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_r .menu_r_it .txt .g_p p {
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
nav .nav_ljbox .nav_r_box .nav_r .nav_othr .nav_rr_box .nav_menu .nav_menu_box .nav_menu_con .container .menu_r .menu_r_it .txt .pub_btn {
  margin-top: 0.5rem;
}
nav .g_navsearch {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #ffffff;
  color: #222222;
  border-top: 1px solid #e5e5e5;
  display: none;
}
nav .g_navsearch .container {
  padding: 0.95rem 0 1.05rem;
  position: relative;
}
@media (max-width: 767px) {
  nav .g_navsearch .container {
    padding-bottom: 0.6rem;
  }
}
nav .g_navsearch .f_close {
  position: absolute;
  right: 0.8rem;
  top: 0.96rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  nav .g_navsearch .f_close {
    right: 0;
    top: 0.3rem;
    width: 16px;
    height: 16px;
  }
}
nav .g_navsearch .f_close img {
  width: 100%;
  float: left;
}
nav .g_navsearch .f_close img:nth-child(2) {
  display: none;
}
nav .g_navsearch .f_close svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  color: #808080;
}
nav .g_navsearch .f_close svg path {
  fill: #808080;
}
nav .g_navsearch .f_close:hover {
  transform: rotate(90deg);
}
nav .g_navsearch .f_cont {
  max-width: 760px;
  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.1rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid rgba(194, 194, 194, 0.15);
}
@media (max-width: 767px) {
  nav .g_navsearch .f_cont .f_form {
    padding-bottom: 0.3rem;
  }
}
nav .g_navsearch .f_cont .f_form input {
  width: 100%;
  padding-right: 0.26rem;
}
nav .g_navsearch .f_cont .f_form input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
}
nav .g_navsearch .f_cont .f_form input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
}
nav .g_navsearch .f_cont .f_form input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
}
nav .g_navsearch .f_cont .f_form .g_del {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 16px;
  height: auto;
}
nav .g_navsearch .f_cont .f_form .g_del:hover svg {
  color: var(--color);
}
nav .g_navsearch .f_cont .f_form .g_del:hover svg path {
  fill: var(--color);
}
nav .g_navsearch .f_cont .f_form .g_del svg,
nav .g_navsearch .f_cont .f_form .g_del img {
  color: #999;
  width: 100%;
  transition: all 0.4s;
}
nav .g_navsearch .f_cont .f_form .f_sub {
  margin-left: 0.18rem;
  padding-left: 0.18rem;
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
nav .g_navsearch .f_cont .f_form .f_sub::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #e7edf1;
}
nav .g_navsearch .f_cont .f_form .f_sub svg {
  width: 19px;
  height: auto;
  float: left;
  transition: all 0.4s;
}
nav .g_navsearch .f_cont .f_form .f_sub svg path {
  fill: #444444;
}
nav .g_navsearch .f_cont .f_form .f_sub:hover svg {
  color: var(--color);
}
nav .g_navsearch .f_cont .f_form .f_sub:hover svg path {
  fill: var(--color);
}
nav .g_navsearch .f_cont .f_jut {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@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;
    align-items: center;
  }
}
nav .g_navsearch .f_cont .f_jut .name {
  margin-bottom: 0.15rem;
  fill: 0 0 auto;
  display: block;
}
nav .g_navsearch .f_cont .f_jut .f_list {
  fill: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
}
nav .g_navsearch .f_cont .f_jut .f_list .li {
  margin: 0 0.24rem 0.1rem 0;
  color: #999;
  padding-right: 0.24rem;
  display: block;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  position: relative;
}
nav .g_navsearch .f_cont .f_jut .f_list .li:last-child::after {
  display: none;
}
@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: var(--color);
}
nav .g_navsearch .f_cont .f_jut .f_list .li::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 15px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #e7edf1;
}
/* 导航各种效果 */
.nav1_none {
  top: -80px !important;
}
.nav2_none {
  top: 80px !important;
}
@media (max-width: 1440px) {
  .nav1_none {
    top: -60px !important;
  }
  .nav2_none {
    top: 60px !important;
  }
}
/* 下拉导航 */
.pro_nav2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: #f8f8f8;
  border-radius: 0 0 0.2rem 0.2rem;
  box-shadow: 0 6px 29px rgba(211, 211, 211, 0.08);
  padding: 10px 0;
  display: none;
  width: auto;
  white-space: nowrap;
}
.pro_nav2 > a {
  min-height: 0.6rem;
  padding: 0.07rem 0.2rem 0.07rem 0.3rem;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  margin: 5px 10px;
  border-radius: 0.15rem;
  -webkit-transition: all 0.6s;
}
.pro_nav2 > a:hover {
  background: #fff;
}
.pro_nav3 {
  display: none;
  position: absolute;
  width: 100%;
  height: calc(100vh);
  top: calc(100% + 1px);
  left: 0;
  background: #fff;
}
/* 移动端导航 */
#g-header {
  display: none;
}
@media (max-width: 1260px) {
  #g-header {
    display: flex;
    width: 80px;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    margin-right: -1rem;
    padding-right: 1rem;
    box-sizing: content-box;
  }
}
@media (max-width: 767px) {
  #g-header {
    width: auto;
  }
}
#g-header .c-nav2 {
  position: absolute;
  right: -100%;
  left: auto;
  width: 100%;
  top: 80px;
  height: calc(var(--vh) - 80px);
  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;
  color: #333;
  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: var(--color);
}
#g-header .c-nav2 li ul {
  display: none;
}
#g-header .c-switch {
  position: relative;
  width: 24px;
  height: 22px;
  cursor: pointer;
}
@media (max-width: 1260px) {
  #g-header .c-switch {
    width: 60px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  #g-header .c-switch {
    height: 100%;
    justify-content: center;
  }
}
@media (max-width: 1260px) {
  #g-header .c-switch .g_i {
    position: relative;
    width: 24px;
    height: 22px;
  }
}
@media (max-width: 767px) {
  #g-header .c-switch .g_i {
    width: 19px;
    height: 15px;
    margin: 0 4px 0 0;
  }
}
@media (max-width: 1260px) {
  #g-header .c-switch p {
    margin-left: 0.1rem;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  #g-header .c-switch p {
    margin-left: 0;
    font-size: 12px;
  }
}
#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%;
}
@media (max-width: 767px) {
  #g-header .c-switch i:nth-child(2) {
    width: 14px;
  }
}
#g-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#g-header .c-switch i .c-title-box img {
  width: 10px;
  height: auto;
  margin: 0 0 0 10px;
  float: right;
  display: block;
}
.c-title-con {
  display: none;
}
.c-open #g-header .c-nav2 {
  right: 0;
}
.c-open #g-header .c-nav2 .c-title-con {
  overflow: hidden;
  height: auto;
  display: none;
  padding-bottom: 0.25rem;
}
.c-open #g-header .c-nav2 .c-title-con > a {
  color: #999 !important;
  display: block;
  padding: 0.15rem 0 0.15rem 20px;
  line-height: 1.5;
}
.c-open #g-header .c-switch i:nth-child(2) {
  opacity: 0;
}
.c-open #g-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-open #g-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* banner */
@media (max-width: 1260px) {
  .h_banner .h_banner_swi {
    height: 100%;
  }
}
.h_banner .swiper-slide {
  overflow: hidden;
}
.h_banner .h_b_box {
  position: relative;
  width: 100%;
  height: var(--vh);
}
@media (max-width: 1260px) {
  .h_banner .h_b_box {
    height: calc(var(--vh) - 60px);
  }
}
@media (max-width: 767px) {
  .h_banner .h_b_box {
    height: 10rem;
  }
}
.h_banner .h_b_box .h_b_txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.h_banner .h_b_box .h_b_txt .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0.6rem;
}
.h_banner .h_b_box .h_b_txt .container .txt_t .p1 {
  visibility: hidden;
  color: #fff;
  line-height: 1.2;
  font-weight: bold;
}
.h_banner .h_b_box .h_b_txt .container .txt_t .p2 {
  visibility: hidden;
  margin-top: 0.15rem;
  color: #fff;
}
.h_banner .h_b_box .h_b_txt .container .public-btn {
  visibility: hidden;
  margin-top: 0.56rem;
}
.h_banner .home_pag {
  bottom: 0.66rem;
}
.h_banner .home_pag .swiper-pagination-bullet {
  min-width: 1.8rem;
  height: auto;
  color: #fff;
  background: none;
  border-radius: 0;
  opacity: 1;
  padding-top: 0.16rem;
  position: relative;
  margin: 0 0.1rem;
}
.h_banner .home_pag .swiper-pagination-bullet span {
  opacity: 0.64;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet span {
    font-size: 0.24rem;
  }
}
.h_banner .home_pag .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet::after {
    height: 1px;
  }
}
.h_banner .home_pag .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  width: 0;
  transition: all 0s;
  height: 3px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .h_banner .home_pag .swiper-pagination-bullet::before {
    height: 1px;
  }
}
.h_banner .home_pag .swiper-pagination-bullet-active span {
  opacity: 1;
}
.h_banner .home_pag .swiper-pagination-bullet-active::before {
  width: 100%;
  transition: all 5.8s;
}
.h_b_img {
  width: 100%;
  height: 100%;
  position: relative;
}
.h_b_img > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.h_b_img .img1 {
  z-index: 1;
}
@media (max-width: 767px) {
  .h_b_img .img1 {
    z-index: 1;
    display: none;
  }
}
.h_b_img .img2 {
  z-index: 2;
  display: none;
}
@media (max-width: 767px) {
  .h_b_img .img2 {
    z-index: 2;
    display: block;
  }
}
.h_b_img > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
/* 网站地图 */
.g-mapon {
  padding: 1.1rem 0 3.14rem;
}
.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 {
  background: #fff;
  margin-top: 0.1rem;
}
.g-mapon .box .item {
  display: flex;
  padding: 0.45rem 0 0.3rem;
  border-bottom: 1px solid #eeeeee;
  position: relative;
}
@media (max-width: 767px) {
  .g-mapon .box .item {
    flex-direction: column;
  }
}
.g-mapon .box .item a:hover {
  color: var(--color) !important;
}
.g-mapon .box .item .g-la {
  font-weight: bold;
  width: 2.5rem;
  margin-bottom: 0.15rem;
  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 {
  min-width: 1.8rem;
  margin-right: 0.2rem;
  margin-bottom: 0.15rem;
  padding-right: 0.2rem;
  color: #000;
}
@media (max-width: 767px) {
  .g-mapon .box .item .g-twa a {
    min-width: auto;
  }
}
/* 404 */
.notbox404 {
  padding: 0.5rem 0 1.2rem;
}
.notbox404 .notbox404_box {
  text-align: center;
  width: 90%;
  margin: auto;
}
.notbox404 .notbox404_box > img {
  margin-bottom: 0.75rem;
  width: 6rem;
}
@media (max-width: 991px) {
  .notbox404 .notbox404_box > img {
    width: 90%;
  }
}
.notbox404 .notbox404_box .notbox404_con .txt {
  margin: 0.25rem 0 0.6rem;
}
.notbox404 .notbox404_box .notbox404_con .txt span {
  color: var(--color);
}
/* 免责声明 */
.g-pri {
  padding: 1.1rem 0 3rem;
}
.g-pri .box .tit {
  margin-bottom: 0.35rem;
  text-align: center;
}
.g-pri .box .tit h2 {
  font-weight: bold;
  margin-bottom: 0.35rem;
}
.g-pri .box .tit .g-p {
  display: flex;
  justify-content: center;
}
.g-pri .box .tit .g-p p {
  color: #999;
  margin: 0 0.18rem;
}
.g-pri .box .public-content h3 {
  font-size: 24px;
}
.g-pri .box .public-content .p1 {
  display: block;
  position: relative;
  padding-left: 20px;
}
.g-pri .box .public-content .p1:after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 12px;
}
@media (max-width: 1580px) {
  .g-pri .box .public-content .p1:after {
    top: 14px;
  }
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box {
  display: flex;
}
@media (max-width: 767px) {
  .g-pri .box .public-content .g-pritxt .g-pritxt-box {
    flex-direction: column;
  }
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box span {
  flex-shrink: 0;
  color: #222;
  display: block;
  position: relative;
  padding-left: 20px;
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box span:after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 12px;
}
@media (max-width: 1580px) {
  .g-pri .box .public-content .g-pritxt .g-pritxt-box span:after {
    top: 14px;
  }
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box ul {
  padding: 0;
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box ul li {
  list-style: none;
}
.pub_title {
  text-align: left;
}
.pub_title h2 {
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  font-weight: bold;
  color: var(--color);
  line-height: 1.2;
  font-size: 16px;
}
@media (max-width: 1580px) {
  .pub_title h2 {
    font-size: 14px;
  }
}
.pub_title h2 i {
  margin-right: 0.16rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: auto;
  color: #f9be00;
}
@media (max-width: 1580px) {
  .pub_title h2 i {
    width: 12px;
  }
}
@media (max-width: 1260px) {
  .pub_title h2 i {
    width: 10px;
  }
}
@media (max-width: 767px) {
  .pub_title h2 i {
    width: 8px;
  }
}
.pub_title h2 i svg,
.pub_title h2 i img {
  width: 100%;
  height: auto;
}
.pub_title h2 i svg path,
.pub_title h2 i img path {
  fill: var(--color);
}
.pub_title .p1 {
  /* font-weight: bold; */
  color: var(--color);
  line-height: 1.22727273;
}
.pub_title .p2 {
  color: rgba(34, 34, 34, 0.7);
  margin-top: 0.2rem;
  line-height: 1.72222222;
}
.pub_title2 h2,
.pub_title2 .p1,
.pub_title2 .p2 {
  color: #fff;
}
.pub_btn {
  min-width: 1.42rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 0.48rem;
  padding: 0 0.2rem;
  border-radius: 0 0.1rem 0 0.1rem;
  /* border-radius: 100px; */
  overflow: hidden;
  background: #f9be00;
  border: 1px solid transparent;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .pub_btn {
    height: 0.6rem;
    padding-left: 0.3rem;
  }
}
@media (max-width: 767px) {
  .pub_btn {
    height: 0.8rem;
    padding: 0 0.4rem;
  }
}
.pub_btn:hover {
  border-color: var(--color);
  background: var(--color);
}
.pub_btn:hover i {
  left: 5px;
  color: #fff;
}
.pub_btn:hover i svg path,
.pub_btn:hover i img path {
  fill: var(--color);
}
.pub_btn:hover p {
  color: #fff;
}
.pub_btn i {
  margin-left: 0.13rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9px;
  height: auto;
  left: 0;
  position: relative;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .pub_btn i {
    width: 7px;
  }
}
@media (max-width: 767px) {
  .pub_btn i {
    width: 8px;
  }
}
.pub_btn i svg,
.pub_btn i img {
  color: #fff;
  width: 100%;
  height: auto;
}
.pub_btn i svg path,
.pub_btn i img path {
  fill: #111;
  transition: all 0.4s;
}
.pub_btn p {
  color: #fff;
  position: relative;
  z-index: 5;
  transition: all 0.4s;
}
.pub_btn_homeb {
  background: none;
  border: 2px solid #c8c7c7;
}
.pub_btn2 {
  background: var(--color);
}
.pub_btn2:hover {
  opacity: 0.8;
}
.pub_btn3 {
  padding-bottom: 4px;
  border-bottom: 1px solid #111;
  display: flex;
  align-items: center;
}
.pub_btn3.pub_btn3_2 {
  padding-bottom: 0;
  border: none;
}
.pub_btn3.pub_btn3_2 p {
  color: #fff;
}
.pub_btn3.pub_btn3_2 i svg path {
  fill: #fff;
}
.pub_btn3 i {
  margin-left: 0.09rem;
  flex-shrink: 0;
  display: flex;
  width: 6px;
  height: auto;
}
.pub_btn3 i svg,
.pub_btn3 i img {
  width: 100%;
  height: auto;
}
.pub_btn3 i svg path,
.pub_btn3 i img path {
  fill: #111;
}
.pub_btn4 {
  min-width: auto;
  background: none;
  border: none;
  padding: 0;
  height: auto;
  overflow: initial;
}
.pub_btn4:hover {
  background: none;
  border: none;
}
.pub_btn4:hover p {
  color: var(--color);
}
.pub_btn4 p {
  color: var(--color);
}
.pub_btn4 i svg {
  color: var(--color);
}
@media screen and (max-width: 1440px) {
  #c-placeholder {
    height: 60px;
  }
}
/* 二级 */
/* .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;color: #666;}
.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;} */
/* 开始 */
.homeow {
  padding: 0.8rem 0 0;
}
.hon {
  padding: 0 0 0.53rem;
}
.hon .g_tit {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .hon .g_tit {
    flex-direction: column;
  }
}
.hon .g_tit .pub_title {
  width: calc(600/1280*100%);
}
@media (max-width: 991px) {
  .hon .g_tit .pub_title {
    width: 100%;
  }
}
.hon .g_tit .hon_rtxt {
  padding-top: 0.45rem;
  width: calc(666/1280*100%);
}
@media (max-width: 991px) {
  .hon .g_tit .hon_rtxt {
    width: 100%;
  }
}
.hon .g_tit .hon_rtxt .g_p p {
  color: #666;
  font-size: 16px;
}
@media (max-width: 1580px) {
  .hon .g_tit .hon_rtxt .g_p p {
    font-size: 14px;
  }
}
.hon .g_tit .hon_rtxt .pub_btn {
  margin-top: 0.42rem;
}
.hon .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.05rem;
  margin-top: 0.67rem;
}
.hon .box .item {
  width: calc(1/3*100%);
  margin-bottom: 0.1rem;
  padding: 0 0.05rem;
}
.hon .box .item:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .hon .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .hon .box .item {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.hon .box .item:nth-child(3n-2) .itembox {
  border-radius: 0 0 0 0.2rem;
}
.hon .box .item:nth-child(3n) .itembox {
  border-radius: 0 0.2rem 0 0;
}
.hon .box .item .itembox {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .hon .box .item .itembox {
    border-radius: 0 0.2rem 0 0.2rem !important;
  }
}
.hon .box .item .itembox .public-img:before {
  padding-top: 76.19047619%;
}
.hon .box .item .itembox .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  color: #fff;
  padding: 0.22rem 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-weight: bold;
}
.hon .box .item .itembox .txt h3 {
  line-height: 1.1;
}
.hon .box .item .itembox .txt p {
  line-height: 2;
}
.htw {
  padding-bottom: 0.92rem;
}
.htw .box {
  position: relative;
  margin-top: 0.45rem;
}
.htw .box .img {
  width: calc(790/1280*100%);
}
@media (max-width: 991px) {
  .htw .box .img {
    width: 100%;
  }
}
.htw .box .img .public-img {
  border-radius: 0.2rem 0 0 0.3rem;
}
.htw .box .img .public-img:before {
  padding-top: 63.29113924%;
}
.htw .box .bbox {
  border-radius: 0 0.2rem 0.2rem 0;
  position: absolute;
  width: calc(565/1280*100%);
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 0.3rem 0.5rem 0.67rem 0.4rem;
  background: #fff;
}
@media (max-width: 991px) {
  .htw .box .bbox {
    position: initial;
    width: 100%;
    padding: 0.4rem;
  }
}
.htw .box .bbox .g_pic {
  display: flex;
  align-items: center;
}
.htw .box .bbox .g_pic .g_pic_img {
  margin-right: 0.2rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  padding: 5px;
}
@media (max-width: 767px) {
  .htw .box .bbox .g_pic .g_pic_img {
    width: 1rem;
    height: 1rem;
  }
}
.htw .box .bbox .g_pic .g_pic_img .public-img {
  width: 100%;
}
.htw .box .bbox .g_pic .txt {
  line-height: 1.3;
}
.htw .box .bbox .g_pic .txt .p1 {
  color: var(--color);
}
.htw .box .bbox .g_pic .txt .p2 {
  color: #999;
}
.htw .box .bbox .g_p {
  position: relative;
  padding-left: 0.3rem;
  margin-top: 0.28rem;
}
.htw .box .bbox .g_p span {
  position: absolute;
  color: var(--color);
  line-height: 1;
}
.htw .box .bbox .g_p .span1 {
  left: -0.2rem;
  top: 0.05rem;
}
.htw .box .bbox .g_p .span2 {
  right: -0.2rem;
  top: calc(100% - 3px);
}
.htw .box .bbox .pub_btn {
  margin-top: 0.6rem;
}
.hth {
  position: relative;
}
.hth .img {
  height: 8.12rem;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .hth .img {
    height: 9rem;
  }
}
.hth .img img {
  position: absolute;
  opacity: 0;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.hth .img img.on {
  position: relative;
  opacity: 1;
}
.hth .img img:first-child {
  display: block;
}
.hth .box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hth .box {
    background: rgba(0, 0, 0, 0.3);
  }
}
.hth .box .container2 {
  padding: 0.68rem 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hth .box .container2 {
    flex-direction: column-reverse;
  }
}
.hth .box .container2 .g_tit {
  padding-top: 0.14rem;
  width: 36.25%;
  color: #fff;
}
@media (max-width: 991px) {
  .hth .box .container2 .g_tit {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .hth .box .container2 .g_tit {
    width: 100%;
  }
}
.hth .box .container2 .g_tit .txt .txt_it {
  display: none;
}
.hth .box .container2 .g_tit .txt .txt_it:first-child {
  display: block;
}
.hth .box .container2 .g_tit .txt .txt_it .p1 {
  font-weight: bold;
  line-height: 1.22727273;
}
.hth .box .container2 .g_tit .txt .txt_it .p2 {
  margin-top: 0.2rem;
  line-height: 2;
}
.hth .box .container2 .g_tit .txt .pub_btn {
  margin-top: 0.75rem;
}
@media (max-width: 767px) {
  .hth .box .container2 .hth_sea {
    margin-bottom: 0.4rem;
  }
}
.hth .box .container2 .hth_sea form .search_box {
  width: 162px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.33);
  padding: 0 4px 0.08rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hth .box .container2 .hth_sea form .search_box {
    width: 100%;
  }
}
.hth .box .container2 .hth_sea form .search_box input {
  padding: 0 10px 0 0;
  width: 100%;
  color: #fff;
}
.hth .box .container2 .hth_sea form .search_box input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hth .box .container2 .hth_sea form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  width: 0.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .hth .box .container2 .hth_sea form .search_box button {
    width: 0.3rem;
  }
}
.hth .box .container2 .hth_sea form .search_box button svg {
  color: #fff;
  width: 100%;
  height: auto;
}
.hth .box .container2 .hth_sea form .search_box button svg path {
  fill: #9a9a9a;
}
.hth .box .box_nav {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
}
.hth .box .box_nav .item {
  background: rgba(0, 0, 0, 0.2);
  width: 25%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.2rem;
  transition: all 0.4s;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .hth .box .box_nav .item {
    justify-content: center;
  }
}
.hth .box .box_nav .item.on {
  background: var(--color);
}
.hth .box .box_nav .item .public-img {
  border-radius: 5px;
  width: 27.27272727%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .hth .box .box_nav .item .public-img {
    display: none;
  }
}
.hth .box .box_nav .item .txt {
  padding-left: 0.27rem;
}
@media (max-width: 767px) {
  .hth .box .box_nav .item .txt {
    padding-left: 0;
  }
}
.hth .box .box_nav .item .txt h3 {
  font-weight: bold;
  color: #fff;
}
@media (max-width: 767px) {
  .hth .box .box_nav .item .txt h3 {
    font-size: 0.28rem;
  }
}
.hth .box .box_nav .item .txt p {
  margin-top: 0.12rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 991px) {
  .hth .box .box_nav .item .txt p {
    display: none;
  }
}
.hfo {
  padding: 0.86rem 0 1rem;
}
.hfo .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .hfo .box {
    flex-direction: column-reverse;
  }
}
.hfo .box .gl {
  padding: 0.42rem 0.96rem 0 0;
  width: 45.78125%;
}
@media (max-width: 991px) {
  .hfo .box .gl {
    width: 100%;
    padding: 0.5rem 0 0;
  }
}
.hfo .box .gl .pub_btn {
  margin-top: 0.95rem;
}
@media (max-width: 991px) {
  .hfo .box .gl .pub_btn {
    margin-top: 0.6rem;
  }
}
.hfo .box .gr {
  width: 54.21875%;
}
@media (max-width: 991px) {
  .hfo .box .gr {
    width: 100%;
  }
}
.hfo .box .gr .public-img {
  border-radius: 0 0.2rem 0 0.2rem;
}
.hfo .box .gr .public-img:before {
  padding-top: 63.26530612%;
}
.hfi {
  padding: 0.58rem 0 0.68rem;
}
.hfi .hfi_tit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .hfi .hfi_tit {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .hfi .hfi_tit .pub_btn {
    margin-top: 0.4rem;
  }
}
.newsbox {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem;
  margin-top: 0.44rem;
}
.newsbox .item {
  width: calc(1/3*100%);
  margin-bottom: 0.2rem;
  padding: 0 0.1rem;
}
@media (max-width: 991px) {
  .newsbox .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .newsbox .item {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.newsbox .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
.newsbox .item .itembox .public-img:before {
  padding-top: 65.61743341%;
}
.newsbox .item .itembox:hover .public-img img {
  transform: scale(1.07);
}
.newsbox .item .itembox:hover .txt h3 {
  color: var(--color) !important;
}
.newsbox .item .itembox .txt {
  overflow: hidden;
  border-radius: 0 0 0.2rem 0.2rem;
  box-shadow: 0 4px 0.46rem rgba(25, 73, 73, 0.07);
  padding: 0.32rem;
  padding-bottom: 0.46rem;
}
.newsbox .item .itembox .txt .span1 {
  color: var(--color);
}
.newsbox .item .itembox .txt h3 {
  margin-top: 0.06rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
  transition: all 0.4s;
}
.newsbox .item .itembox .txt .time {
  margin-top: 0.48rem;
  display: block;
  color: #999;
}
/* 底部 */
footer {
  color: #fff;
  background: #0a847d;
}
footer .gt {
  padding: 0.39rem 0 1.35rem;
}
@media (max-width: 767px) {
  footer .gt {
    padding: 0.4rem 0;
  }
}
footer .gt .footle {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .gt .footle {
    flex-direction: column;
  }
}
footer .gt .footle .font_logo {
  width: 1.85rem;
}
@media (max-width: 767px) {
  footer .gt .footle .font_logo {
    width: 3.4rem;
    margin-bottom: 0.3rem;
  }
}
footer .gt .footle .font_logo img {
  width: 100%;
  height: auto;
}
footer .gt .footle .g_tel {
  display: flex;
  align-items: center;
  color: #fff;
}
footer .gt .footle .g_tel p {
  opacity: 0.6;
}
footer .gt .footle form .search_box {
  width: 4.12rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding: 0 0 0.18rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .gt .footle form .search_box {
    width: 100%;
  }
}
footer .gt .footle form .search_box input {
  padding: 0 10px 0 0;
  width: 100%;
  color: #fff;
}
footer .gt .footle form .search_box input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
footer .gt .footle form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}
footer .gt .footle form .search_box button:hover svg {
  left: 5px;
}
footer .gt .footle form .search_box button svg {
  position: relative;
  left: 0;
  transition: all 0.4s;
  margin-left: 0.12rem;
  color: #fff;
  width: 11px;
  height: auto;
}
footer .gt .footle form .search_box button svg path {
  fill: #9a9a9a;
}
footer .gt .foot_a {
  margin-top: 0.7rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .gt .foot_a {
    flex-direction: column;
  }
}
footer .gt .foot_nav {
  padding-right: 0.2rem;
}
@media (max-width: 767px) {
  footer .gt .foot_nav {
    padding: 0;
  }
}
footer .gt .foot_nav a {
  transition: all 0.4s;
}
footer .gt .foot_nav a:hover {
  color: #f9be00;
}
@media (max-width: 767px) {
  footer .gt .foot_nav {
    margin: 0 ;
  }
}
footer .gt .foot_nav:last-child {
  padding-right: 0;
}
footer .gt .foot_nav .a_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}
footer .gt .foot_nav .a_tit.on svg,
footer .gt .foot_nav .a_tit.on img {
  transform: rotate(90deg);
}
footer .gt .foot_nav .a_tit a {
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.6;
}
footer .gt .foot_nav .a_tit svg,
footer .gt .foot_nav .a_tit img {
  transition: all 0.4s;
  width: 5px;
  height: auto;
  display: none;
  color: #fff;
}
@media (max-width: 767px) {
  footer .gt .foot_nav .a_tit svg,
  footer .gt .foot_nav .a_tit img {
    display: block;
  }
}
footer .gt .foot_nav .a_tit svg path,
footer .gt .foot_nav .a_tit img path {
  fill: #fff;
}
@media (max-width: 767px) {
  footer .gt .foot_nav ul {
    display: none;
    padding-bottom: 0.2rem;
  }
}
footer .gt .foot_nav ul li {
  margin-bottom: 0.12rem;
}
footer .gt .foot_nav ul li a {
  color: #fff;
}
footer .gb .foot_wl {
  padding-bottom: 0.2rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
@media (max-width: 991px) {
  footer .gb .foot_wl {
    flex-direction: column;
  }
}
footer .gb .foot_wl .gl {
  color: #7eb6af;
  display: flex;
}
@media (max-width: 767px) {
  footer .gb .foot_wl .gl {
    margin-bottom: 0.1rem;
  }
}
footer .gb .foot_wl .gl p {
  flex-shrink: 0;
}
footer .gb .foot_wl .gl .g_a {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0.1rem;
}
footer .gb .foot_wl .gl .g_a a {
  margin: 0 0.2rem 0.1rem 0;
  transition: all 0.4s;
}
footer .gb .foot_wl .gl .g_a a:hover {
  color: #fff;
}
footer .gb .foot_wl .gr {
  color: #7eb6af;
}
footer .gb .foot_wl .gr a {
  margin-left: 1px;
  padding-left: 6px;
  position: relative;
  transition: all 0.4s;
}
footer .gb .foot_wl .gr a:hover {
  color: #fff;
}
footer .gb .foot_wl .gr a::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 10px;
  background: #7eb6af;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
footer .gb .foot_wl .gr a:first-child {
  padding: 0;
}
footer .gb .foot_wl .gr a:first-child::after {
  display: none;
}
footer .gb .foot_ba {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0 0.17rem;
  color: #7eb6af;
}
@media (max-width: 991px) {
  footer .gb .foot_ba {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.4rem 0;
  }
}
@media (max-width: 767px) {
  footer .gb .foot_ba {
    font-size: 11px;
  }
}
footer .gb .foot_ba .gl .foot_ba_box {
  margin-bottom: 0.1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  footer .gb .foot_ba .gl .foot_ba_box {
    line-height: 1.8;
  }
}
footer .gb .foot_ba .gl .foot_ba_box img {
  width: 24px;
  height: auto;
  margin-right: 2px;
}
@media (max-width: 767px) {
  footer .gb .foot_ba .gl .foot_ba_box img {
    width: 18px;
  }
}
footer .gb .foot_ba .gl .foot_ba_box a {
  margin-left: 6px;
  transition: all 0.4s;
}
footer .gb .foot_ba .gl .foot_ba_box a:hover {
  color: #fff;
}
@media (max-width: 767px) {
  footer .gb .foot_ba .gl .foot_ba_box a:last-child {
    margin-left: 4px;
    margin-top: 4px;
  }
}
@media (max-width: 767px) {
  footer .gb .foot_ba .gl .foot_ba_box p {
    margin-top: 4px;
  }
}
footer .gb .foot_ba .gl .foot_ba_box i {
  margin-left: 0.2rem;
}
footer .gb .foot_ba .gr .b_ewm {
  margin-right: -0.13rem;
  display: flex;
}
footer .gb .foot_ba .gr .b_ewm .foot_t_r_box {
  position: relative;
}
footer .gb .foot_ba .gr .b_ewm .foot_t_r_box.on .foot_t_r_ewm {
  transform: translateX(-50%) scale(1);
}
@media (max-width: 991px) {
  footer .gb .foot_ba .gr .b_ewm .foot_t_r_box.on .foot_t_r_ewm {
    transform: scale(1);
  }
}
footer .gb .foot_ba .gr .b_ewm .foot_t_r_box.on .foot_t_r_con svg path {
  fill: #fff;
}
footer .gb .foot_ba .gr .b_ewm .foot_t_r_box .foot_t_r_ewm {
  position: absolute;
  bottom: 200%;
  left: 50%;
  background: #fff;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  z-index: 1;
  transform: translateX(-50%) scale(0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  width: 160px;
  height: 160px;
  padding: 5px;
}
@media (max-width: 991px) {
  footer .gb .foot_ba .gr .b_ewm .foot_t_r_box .foot_t_r_ewm {
    left: 0;
    transform: scale(0);
  }
}
footer .gb .foot_ba .gr .b_ewm .foot_t_r_box .foot_t_r_ewm img {
  object-fit: contain;
}
footer .gb .foot_ba .gr .b_ewm .foot_t_r_box .foot_t_r_ewm svg {
  width: 9px;
  height: 5px;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}
footer .gb .foot_ba .gr .b_ewm .foot_t_r_box .foot_t_r_ewm svg path {
  fill: #fff;
}
footer .gb .foot_ba .gr .b_ewm .foot_t_r_box .foot_t_r_con {
  display: inline-flex;
  width: 26px;
  height: 26px;
  margin: 0 0.13rem;
}
@media (max-width: 1580px) {
  footer .gb .foot_ba .gr .b_ewm .foot_t_r_box .foot_t_r_con {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 1260px) {
  footer .gb .foot_ba .gr .b_ewm .foot_t_r_box .foot_t_r_con {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  footer .gb .foot_ba .gr .b_ewm .foot_t_r_box .foot_t_r_con {
    margin: 0 18px 0 0;
  }
}
footer .gb .foot_ba .gr .b_ewm .foot_t_r_box .foot_t_r_con svg {
  color: #fff;
  width: 100%;
  height: 100%;
}
footer .gb .foot_ba .gr .b_ewm .foot_t_r_box .foot_t_r_con svg path {
  fill: #fff;
}
/* 内页 */
/* 不良反应上报 */
.advon {
  padding: 0.7rem 0 1.5rem;
}
@media (max-width: 991px) {
  .advon {
    padding: 0.7rem 0 1rem;
  }
}
.advon .item {
  margin-bottom: 0.4rem;
}
.advon .item .g_tit {
  border-bottom: 1px solid #e5e5e5;
  padding: 0 0 0.26rem 0;
  position: relative;
}
.advon .item .g_tit::after {
  content: '';
  position: absolute;
  width: 0.42rem;
  height: 2px;
  background: var(--color);
  bottom: -2px;
  left: 0;
}
.advon .item .g_tit h2 {
  font-weight: bold;
}
.advon .item .g_p {
  padding-right: 1.55rem;
  margin-top: 0.25rem;
  color: #666666;
}
@media (max-width: 991px) {
  .advon .item .g_p {
    padding: 0;
  }
}
.advon .item .g_iframe {
  overflow: auto;
  padding: 0.2rem 0 0.05rem;
}
.advon .item .g_iframe iframe {
  border: none;
  width: 900px;
  height: 1085px;
  margin-left: -55px;
}
@media (max-width: 991px) {
  .advon .item .g_iframe iframe {
    width: 100%;
    margin-left: 0;
  }
}
.advon .item .advon_box p {
  color: #666;
  line-height: 1.625;
  margin-bottom: 0.26rem;
}
.advon .item .advon_box .g_a {
  margin-bottom: 0.2rem;
  border-radius: 100px;
  height: 0.5rem;
  padding: 0 0.36rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color);
}
@media (max-width: 991px) {
  .advon .item .advon_box .g_a {
    height: 0.8rem;
  }
}
@media (max-width: 767px) {
  .advon .item .advon_box .g_a {
    margin: 0 auto 0.2rem;
    display: flex;
  }
}
.advon .item .advon_box .g_a p {
  color: #fff;
  margin-bottom: 0;
}
.advon .item .advon_box .g_a a {
  text-decoration: underline;
}
.advon .item .advon_box .advon_ul .g_li h3 {
  margin-bottom: 0.1rem;
  font-weight: bold;
  display: block;
  position: relative;
  padding-left: 26px;
}
@media (max-width: 991px) {
  .advon .item .advon_box .advon_ul .g_li h3 {
    padding-left: 20px;
  }
}
.advon .item .advon_box .advon_ul .g_li h3:after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 10px;
}
@media (max-width: 1580px) {
  .advon .item .advon_box .advon_ul .g_li h3:after {
    top: 8px;
  }
}
.advon .item .advon_box .advon_ul .g_li p {
  padding-left: 26px;
}
@media (max-width: 991px) {
  .advon .item .advon_box .advon_ul .g_li p {
    padding-left: 20px;
  }
}
/* 用药指南 */
.guide_box .item {
  display: flex;
  flex-wrap: wrap;
  padding: 0.28rem 0 0.28rem 0.16rem;
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 767px) {
  .guide_box .item {
    padding: 0 0 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .guide_box .item:first-child {
    border-top: 1px solid #e5e5e5;
  }
}
@media (max-width: 767px) {
  .guide_box .item:first-child {
    padding-top: 0;
  }
}
.guide_box .item .f_img {
  width: 21%;
  border-radius: 0 0.1rem 0 0.1rem;
}
@media (max-width: 767px) {
  .guide_box .item .f_img {
    width: 100%;
  }
}
.guide_box .item .f_img:before {
  padding-top: 65.71428571%;
}
.guide_box .item .font {
  width: 100%;
  padding: 0 0.46rem 0 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .guide_box .item .font {
    width: 100%;
    padding: 0.36rem 0 0;
  }
}
.guide_box .item .font .f_tit {
  font-weight: bold;
  width: 100%;
  color: #222222;
  transition: all 0.4s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 767px) {
  .guide_box .item .font .f_tit {
    margin-bottom: 0.12rem;
  }
}
.guide_box .item .font .f_text {
  color: #666666;
  margin-bottom: 0.24rem;
  line-height: 1.625;
  width: 100%;
  height: 3.25em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.guide_box .item .font .f_time {
  display: block;
  color: #999999;
  margin-top: auto;
}
.guide_box .item:hover .f_img img {
  transform: scale(1.1);
}
.guide_box .item:hover .font .f_tit {
  color: var(--color);
}
/* 产品质量安全 */
.quaon {
  padding: 1.05rem 0 0.75rem;
}
.quaon .g_tit {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 0.46rem;
}
.quaon .g_tit h2 {
  font-weight: bold;
  color: var(--color);
}
.quaon .g_tit p {
  margin-top: 0.15rem;
  color: #444;
}
.quaon .box .item {
  border-bottom: 1px solid #ebebeb;
  padding: 0.36rem 4.2rem 0.36rem 0;
}
@media (max-width: 767px) {
  .quaon .box .item {
    padding: 0.36rem 0;
  }
}
.quaon .box .item h3 {
  font-weight: bold;
}
.quaon .box .item p {
  margin-top: 0.15rem;
  color: #444;
}
.quatw {
  background: #f9f9fa;
  padding: 1.05rem 0 0.8rem;
}
.quatw .g_tit {
  padding-bottom: 0.46rem;
}
.quatw .g_tit h2 {
  font-weight: bold;
  color: var(--color);
}
.quatw .g_tit p {
  margin-top: 0.15rem;
  color: #444;
}
.quatw .box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem;
}
@media (max-width: 767px) {
  .quatw .box {
    margin: 0 ;
  }
}
.quatw .box .item {
  width: calc(1/2*100%);
  margin-bottom: 0.2rem;
  padding: 0 0.1rem;
}
@media (max-width: 991px) {
  .quatw .box .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .quatw .box .item {
    width: 100%;
    padding: 0;
  }
}
.quatw .box .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #ecedef;
  background: #fff;
  border-radius: 0.2rem 0 0.2rem 0;
  padding: 0.5rem;
}
.quatw .box .item .itembox .g_h3 {
  font-weight: bold;
  color: #222;
}
.quatw .box .item .itembox .g_h3 span {
  color: var(--color);
}
.quatw .box .item .itembox .g_p {
  margin-top: 0.2rem;
  color: #444;
}
.dowon {
  padding: 34px 0 0.42rem !important;
}
.dowon .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .dowon .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.dowon .container .bidbox1_nav {
  margin: 0;
}
@media (max-width: 767px) {
  .dowon .container form {
    width: 100%;
    margin-top: 0.1rem;
  }
}
.dowon .container form .search_box {
  width: 4.12rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .dowon .container form .search_box {
    height: 0.8rem;
    width: 100%;
  }
}
.dowon .container form .search_box input {
  padding: 0 0.3rem 0 5px;
  width: 100%;
  color: #333;
}
.dowon .container form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.15rem;
  width: 0.17rem;
  height: auto;
}
@media (max-width: 767px) {
  .dowon .container form .search_box button {
    width: 0.3rem;
  }
}
.dowon .container form .search_box button svg {
  width: 100%;
  height: auto;
}
.dowon .container form .search_box button svg path {
  fill: #9a9a9a;
}
.dowtw {
  padding: 0 0 1.85rem;
}
.dowtw .container ul li {
  border-top: 1px solid #e5e5e5;
}
.dowtw .container ul li:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.dowtw .container ul li:first-child .g_xia {
  display: block;
}
.dowtw .container ul li:hover .g_top .g_gb svg {
  color: var(--color);
}
.dowtw .container ul li:hover .g_top .g_top_l > div {
  color: var(--color);
}
.dowtw .container ul li.on {
  border-top: 1px solid transparent;
}
.dowtw .container ul li.on .g_top {
  padding: 0.14rem 0.32rem;
  background: var(--color);
}
@media (max-width: 767px) {
  .dowtw .container ul li.on .g_top {
    padding: 0.26rem 0.32rem;
  }
}
.dowtw .container ul li.on .g_top .g_top_l > div {
  color: #fff;
}
.dowtw .container ul li.on .g_top .g_gb {
  border-color: #fff;
  transform: rotate(180deg);
}
.dowtw .container ul li.on .g_top .g_gb svg {
  color: #fff !important;
}
.dowtw .container ul li .g_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0.1rem 0 0.1rem;
  padding: 0.26rem 0.32rem;
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
}
.dowtw .container ul li .g_top .g_top_l {
  width: 86%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .dowtw .container ul li .g_top .g_top_l {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 40px);
  }
}
.dowtw .container ul li .g_top .g_top_l > div {
  transition: all 0.4s;
  color: #999;
  padding-right: 0.2rem;
}
.dowtw .container ul li .g_top .g_top_l > div p,
.dowtw .container ul li .g_top .g_top_l > div h3 {
  transition: all 0.4s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .dowtw .container ul li .g_top .g_top_l > div p,
  .dowtw .container ul li .g_top .g_top_l > div h3 {
    overflow: initial;
    white-space: initial;
  }
}
.dowtw .container ul li .g_top .g_top_l .g_p1 {
  color: #222;
  width: 47.46494067%;
}
@media (max-width: 767px) {
  .dowtw .container ul li .g_top .g_top_l .g_p1 {
    width: 100%;
    font-size: 14px;
  }
}
.dowtw .container ul li .g_top .g_top_l .g_p2 {
  width: 35.16720604%;
}
@media (max-width: 767px) {
  .dowtw .container ul li .g_top .g_top_l .g_p2 {
    width: 100%;
    font-size: 12px;
  }
}
.dowtw .container ul li .g_top .g_top_l .g_p3 {
  width: 17.36785329%;
}
@media (max-width: 767px) {
  .dowtw .container ul li .g_top .g_top_l .g_p3 {
    display: none;
  }
}
.dowtw .container 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.32rem;
  height: 0.32rem;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .dowtw .container ul li .g_top .g_gb {
    width: 0.46rem;
    height: 0.46rem;
  }
}
.dowtw .container ul li .g_top .g_gb svg,
.dowtw .container ul li .g_top .g_gb img {
  transition: all 0.4s;
  width: 40.625%;
  color: #000;
}
.dowtw .container ul li .g_xia {
  display: none;
  padding: 0.32rem 1.55rem 0.58rem 0.3rem;
}
@media (max-width: 991px) {
  .dowtw .container ul li .g_xia {
    padding: 0.32rem 0.3rem 0.58rem 0.3rem;
  }
}
.dowtw .container ul li .g_xia .g_txt h3 {
  margin-bottom: 0.1rem;
  color: #222222;
}
.dowtw .container ul li .g_xia .g_txt p {
  color: #666;
}
.dowtw .container ul li .g_xia .pub_btn {
  min-width: 1.2rem;
  margin-top: 0.3rem;
}
.dowtw .container ul li .g_xia .pub_btn i {
  left: 0 !important;
  width: 0.16rem;
  height: auto;
}
@media (max-width: 767px) {
  .dowtw .container ul li .g_xia .pub_btn i {
    width: 0.24rem;
  }
}
.dowtw .container .g_b {
  text-align: center;
  margin-top: 0.78rem;
}
.dowtw .container .g_b img,
.dowtw .container .g_b svg {
  width: 0.5rem;
  height: auto;
}
/* 患者故事 */
.stoon {
  padding: 0.84rem 0 1.58rem;
}
.stoon .stoon_box .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 767px) {
  .stoon .stoon_box .item {
    flex-direction: column;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 767px) {
  .stoon .stoon_box .item:first-child {
    padding-top: 0;
  }
}
.stoon .stoon_box .item .public-img {
  width: 38.75%;
}
@media (max-width: 767px) {
  .stoon .stoon_box .item .public-img {
    width: 100%;
  }
}
.stoon .stoon_box .item .public-img:before {
  padding-top: 60.48387097%;
}
.stoon .stoon_box .item .fr {
  width: 56.25%;
  padding: 0 1.2rem 0 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .stoon .stoon_box .item .fr {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .stoon .stoon_box .item .fr {
    width: 100%;
    padding: 0.36rem 0 0;
  }
}
.stoon .stoon_box .item .font .f_tit {
  font-weight: bold;
  width: 100%;
  color: #222222;
  line-height: 1.33333333;
  margin-bottom: 0.15rem;
  transition: all 0.4s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .stoon .stoon_box .item .font .f_tit {
    margin-bottom: 0.12rem;
  }
}
.stoon .stoon_box .item .font .f_text {
  color: #666666;
  line-height: 1.625;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.stoon .stoon_box .item .font .f_time {
  margin-bottom: 0.35rem;
  display: block;
  color: #222;
  margin-top: auto;
}
.stoon .stoon_box .item .pub_btn {
  margin-top: 0.56rem;
}
.stoon .stoon_box .item:hover .public-img img {
  transform: scale(1.05);
}
.stoon .stoon_box .item:hover .font .f_tit {
  color: var(--color);
}
/* 患者关爱 */
.caron {
  padding: 0.95rem 0 0.45rem;
}
.caron .g_tit {
  text-align: center;
  padding: 0 2.05rem;
}
@media (max-width: 991px) {
  .caron .g_tit {
    padding: 0 ;
  }
}
.caron .g_tit h2 {
  font-weight: bold;
  color: var(--color);
}
.caron .g_tit p {
  margin-top: 0.1rem;
  color: #666;
}
.caron .box {
  margin-top: 0.94rem;
}
.caron .box .item {
  margin-bottom: 0.73rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.caron .box .item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .caron .box .item {
    flex-direction: column !important;
  }
}
.caron .box .item .public-img {
  border-radius: 0 0.2rem 0 0.2rem;
  width: 49.765625%;
}
@media (max-width: 767px) {
  .caron .box .item .public-img {
    width: 100%;
  }
}
.caron .box .item .public-img:before {
  padding-top: 62.95133438%;
}
.caron .box .item .txt {
  width: 44.921875%;
}
@media (max-width: 767px) {
  .caron .box .item .txt {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.caron .box .item .txt h3 {
  margin-bottom: 0.2rem;
  font-weight: bold;
  color: var(--color);
}
.caron .box .item .txt p {
  color: #666;
}
.cartw {
  padding: 0 0 0.6rem;
}
.cartw .box .item {
  margin-bottom: 0.8rem;
}
.cartw .box .item h3 {
  font-weight: bold;
  color: var(--color);
  margin-bottom: 0.24rem;
}
.cartw .box .item .g_p {
  color: #666;
}
.cartw .box .item .g_p a {
  color: var(--color);
  font-weight: bold;
  transition: all 0.4s;
}
.cartw .box .item .g_p a:hover {
  text-decoration: underline;
}
.gliston {
  padding: 0.64rem 0 1.37rem;
}
.gliston .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .gliston .container {
    flex-direction: column;
  }
}
.gliston .gliston_l {
  width: 18.59375%;
}
@media (max-width: 767px) {
  .gliston .gliston_l {
    width: 100%;
    margin-bottom: 0.46rem;
  }
}
.gliston .gliston_l .f_tit {
  font-weight: bold;
  background: var(--color);
  border-radius: 0.1rem 0.1rem 0 0;
  color: #fff;
  padding: 0.12rem 0.27rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .gliston .gliston_l .f_tit {
    font-size: 0.36rem;
  }
}
.gliston .gliston_l .proInfo_r_con {
  overflow: hidden;
  border-radius: 0.1rem;
}
.gliston .gliston_l .proInfo_r_con .g_it {
  margin-bottom: 2px;
}
.gliston .gliston_l .proInfo_r_con .g_it:last-child {
  margin-bottom: 0;
}
.gliston .gliston_l .proInfo_r_con .g_it.on .proInfo_r_title svg {
  transform: rotate(0deg);
}
.gliston .gliston_l .proInfo_r_con .proInfo_r_title {
  background: #f3f3f3;
  padding: 0.14rem 0.53rem 0.14rem 0.24rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 991px) {
  .gliston .gliston_l .proInfo_r_con .proInfo_r_title {
    padding: 0.14rem 0.2rem 0.14rem 0.24rem;
  }
}
.gliston .gliston_l .proInfo_r_con .proInfo_r_title span {
  font-weight: bold;
}
.gliston .gliston_l .proInfo_r_con .proInfo_r_title svg {
  transform: rotate(-90deg);
  width: 14px;
  height: auto;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .gliston .gliston_l .proInfo_r_con .proInfo_r_title svg {
    width: 10px;
  }
}
.gliston .gliston_l .proInfo_r_con .proInfo_r_title svg path {
  fill: #333;
  opacity: 1;
}
.gliston .gliston_l .proInfo_r_con .join_l_box .join_l_con {
  display: none;
}
.gliston .gliston_l .proInfo_r_con .join_l_box .join_l_con ul {
  display: flex;
  flex-wrap: wrap;
}
.gliston .gliston_l .proInfo_r_con .join_l_box .join_l_con ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
}
.gliston .gliston_l .proInfo_r_con .join_l_box .join_l_con ul li:hover a,
.gliston .gliston_l .proInfo_r_con .join_l_box .join_l_con ul li.on a {
  color: var(--color);
}
.gliston .gliston_l .proInfo_r_con .join_l_box .join_l_con ul li:last-child {
  margin-right: 0;
}
.gliston .gliston_l .proInfo_r_con .join_l_box .join_l_con ul li a {
  padding: 0.14rem 0.53rem 0.14rem 0.24rem;
  transition: all 0.4s;
}
.gliston .gliston_l form {
  margin-top: 0.36rem;
}
.gliston .gliston_l form .search_box {
  width: 100%;
  height: 0.6rem;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .gliston .gliston_l form .search_box {
    height: 0.8rem;
  }
}
.gliston .gliston_l form .search_box input {
  padding: 0 0.2rem 0 0;
  width: 100%;
  color: #333;
}
.gliston .gliston_l form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.16rem;
  width: 0.17rem;
  height: auto;
}
@media (max-width: 767px) {
  .gliston .gliston_l form .search_box button {
    width: 0.3rem;
  }
}
.gliston .gliston_l form .search_box button svg {
  width: 100%;
  height: auto;
}
.gliston .gliston_l form .search_box button svg path {
  fill: #9a9a9a;
}
.gliston .gliston_r {
  width: 77.8125%;
  position: relative;
}
@media (max-width: 767px) {
  .gliston .gliston_r {
    width: 100%;
  }
}
.gliston .gliston_r .hi-pagination2 {
  margin-top: 0.76rem;
}
.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.5);
  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: 767px) {
  .curtain1 .curtain_box {
    width: 90%;
  }
}
.curtain1 .curtain_box .curtain_title {
  position: relative;
  padding: 0 30px;
  background: #1c4798;
}
.curtain1 .curtain_box .curtain_title .close_tc {
  position: absolute;
  top: 0;
  right: 0.1rem;
  width: 80px;
  height: 1.06rem;
  cursor: pointer;
  z-index: 10000;
}
@media screen and (max-width: 767px) {
  .curtain1 .curtain_box .curtain_title .close_tc {
    width: 40px;
  }
}
.curtain1 .curtain_box .curtain_title .close_tc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -10px;
  width: 20px;
  height: 2px;
  background: #999999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.curtain1 .curtain_box .curtain_title .close_tc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -10px;
  width: 20px;
  height: 2px;
  background: #999999;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.curtain1 .curtain_box .curtain_con {
  max-height: 90vh;
  overflow: auto;
}
.curtain1 .curtain_box .g_leave {
  width: 7.6rem;
  background: #fff;
  border-radius: 0 0.2rem 0 0.2rem;
}
@media (max-width: 767px) {
  .curtain1 .curtain_box .g_leave {
    width: 100%;
  }
}
.curtain1 .curtain_box .g_leave .g_top {
  padding: 0 0.6rem;
  height: 1.06rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
}
.curtain1 .curtain_box .g_leave .g_top a {
  display: block;
  height: 0.45rem;
  width: auto;
}
@media (max-width: 767px) {
  .curtain1 .curtain_box .g_leave .g_top a {
    height: 0.6rem;
  }
}
.curtain1 .curtain_box .g_leave .g_top a img {
  width: auto;
  height: 100%;
}
.curtain1 .curtain_box .g_leave .lea_box {
  padding: 0.4rem 0.6rem 1rem;
}
.curtain1 .curtain_box .g_leave .lea_box .lea2 {
  display: none;
}
.curtain1 .curtain_box .g_leave .lea_box .p1 {
  margin-bottom: 0.2rem;
  font-weight: bold;
}
.curtain1 .curtain_box .g_leave .lea_box .p2 {
  color: #666;
  padding-right: 0.96rem;
}
@media (max-width: 767px) {
  .curtain1 .curtain_box .g_leave .lea_box .p2 {
    padding: 0;
  }
  .curtain1 .curtain_box .g_leave .lea_box .p2 br {
    display: none;
  }
}
.curtain1 .curtain_box .g_leave .lea_b {
  border-top: 1px solid #e5e5e5;
  padding: 0.3rem 0.6rem 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.curtain1 .curtain_box .g_leave .lea_b .lea_b2 {
  width: 100%;
  display: none;
}
.curtain1 .curtain_box .g_leave .lea_b .lea_b2 .lea_b_a {
  float: right;
}
.curtain1 .curtain_box .g_leave .lea_b .lea_b1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .curtain1 .curtain_box .g_leave .lea_b .lea_b1 {
    flex-direction: column;
    align-items: flex-start;
  }
}
.curtain1 .curtain_box .g_leave .lea_b .gl a {
  transition: all 0.4s;
  cursor: pointer;
  color: #999;
  text-decoration: underline;
}
.curtain1 .curtain_box .g_leave .lea_b .gl a:hover {
  opacity: 0.8;
}
.curtain1 .curtain_box .g_leave .lea_b .gr {
  display: flex;
  align-items: center;
}
.curtain1 .curtain_box .g_leave .lea_b .gr .lea_b_a {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .curtain1 .curtain_box .g_leave .lea_b .gr .lea_b_a {
    margin-top: 0.2rem;
  }
}
.curtain1 .curtain_box .g_leave .lea_b .puba {
  transition: all 0.4s;
  cursor: pointer;
  margin-left: 0.2rem;
  height: 0.48rem;
  min-width: 1.4rem;
  padding: 0 0.24rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 0 0.1rem 0 0.1rem;
}
@media (max-width: 767px) {
  .curtain1 .curtain_box .g_leave .lea_b .puba {
    height: 0.7rem;
    margin: 0 0.3rem 0 0;
  }
}
.curtain1 .curtain_box .g_leave .lea_b .puba:hover {
  opacity: 0.8;
}
.curtain1 .curtain_box .g_leave .lea_b .a1 {
  background: #0ca59c;
}
.curtain1 .curtain_box .g_leave .lea_b .a2 {
  background: #f9be00;
}
.curtain1 .curtain_box .g_leave .lea_b .a2 i {
  margin-left: 0.09rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9px;
  height: auto;
  color: #fff;
}
@media (max-width: 1260px) {
  .curtain1 .curtain_box .g_leave .lea_b .a2 i {
    width: 8px;
  }
}
@media (max-width: 767px) {
  .curtain1 .curtain_box .g_leave .lea_b .a2 i {
    width: 7px;
  }
}
.curtain1 .curtain_box .g_leave .lea_b .a2 i svg,
.curtain1 .curtain_box .g_leave .lea_b .a2 i img {
  width: 100%;
  height: auto;
}
.curtain1 .curtain_box .g_leave .lea_b .a2 i svg path,
.curtain1 .curtain_box .g_leave .lea_b .a2 i img path {
  fill: var(--color);
}
