@charset "utf-8";
:root {
  --color: #ff0000;
  --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;
}
@-moz-document url-prefix() {
  * {
    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: 50px;
  }
}
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;
  }
}
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 {
  color: inherit;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
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:not(.no-inherit) path,
svg:not(.no-inherit) circle,
svg:not(.no-inherit) rect {
  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: 80%;
  max-width: 1400px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
@media (max-width: 767px) {
  .padding {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .padding-top {
    padding-top: 60px !important;
  }
  .padding-bottom {
    padding-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .ico-32 {
    width: 32px !important;
    height: 32px !important;
  }
  .ico-24 {
    width: 24px !important;
    height: 24px !important;
  }
  .ico-16 {
    width: 16px !important;
    height: 16px !important;
  }
  .ico12 {
    width: 12px !important;
    height: 12px !important;
  }
}
@media (max-width: 767px) {
  .radius8 {
    border-radius: 8px !important;
  }
  .radius4 {
    border-radius: 4px !important;
  }
}
.font12 {
  font-size: 12px;
  line-height: calc(22/12);
}
.font14 {
  font-size: 14px;
  line-height: calc(24/14);
}
.font16 {
  font-size: 16px;
  line-height: calc(26/16);
}
.font18 {
  font-size: 18px;
  line-height: calc(26/18);
}
.font20 {
  font-size: 20px;
  line-height: calc(30/20);
}
.font22 {
  font-size: 22px;
  line-height: calc(32/22);
}
.font24 {
  font-size: 24px;
  line-height: calc(34/24);
}
.font26 {
  font-size: 26px;
  line-height: calc(36/26);
}
.font28 {
  font-size: 28px;
  line-height: calc(38/28);
}
.font30 {
  font-size: 30px;
  line-height: calc(40/30);
}
.font32 {
  font-size: 32px;
  line-height: calc(42/32);
}
.font34 {
  font-size: 34px;
  line-height: calc(44/34);
}
.font36 {
  font-size: 36px;
  line-height: calc(46/36);
}
.font38 {
  font-size: 38px;
  line-height: calc(48/38);
}
.font40 {
  font-size: 40px;
  line-height: calc(50/40);
}
.font42 {
  font-size: 42px;
  line-height: calc(52/42);
}
.font44 {
  font-size: 44px;
  line-height: calc(54/44);
}
.font46 {
  font-size: 46px;
  line-height: calc(56/46);
}
.font48 {
  font-size: 48px;
  line-height: calc(58/48);
}
.font50 {
  font-size: 50px;
  line-height: calc(60/50);
}
.font52 {
  font-size: 52px;
  line-height: calc(62/52);
}
.font54 {
  font-size: 54px;
  line-height: calc(64/54);
}
.font56 {
  font-size: 56px;
  line-height: calc(66/56);
}
.font58 {
  font-size: 58px;
  line-height: calc(68/58);
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
  .font18,
  .font20 {
    font-size: 16px;
  }
  .font22,
  .font24,
  .font26,
  .font28 {
    font-size: 18px;
  }
  .font30,
  .font32,
  .font34,
  .font36,
  .font38 {
    font-size: 24px;
  }
  .font40,
  .font42,
  .font44,
  .font46,
  .font48 {
    font-size: 36px;
  }
  .font50,
  .font52,
  .font54,
  .font56,
  .font58 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .font30,
  .font32,
  .font34,
  .font36,
  .font38 {
    font-size: 20px;
  }
  .font40,
  .font42,
  .font44,
  .font46,
  .font48 {
    font-size: 28px;
  }
  .font50,
  .font52,
  .font54,
  .font56,
  .font58 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .font12 {
    font-size: 10px;
    line-height: calc(15/10);
  }
  .font14 {
    font-size: 12px;
    line-height: calc(18/12);
  }
  .font16 {
    font-size: 14px;
    line-height: calc(21/14);
  }
  .font18,
  .font20 {
    font-size: 16px;
    line-height: calc(24/16);
  }
  .font22,
  .font24,
  .font26,
  .font28 {
    font-size: 18px;
    line-height: calc(27/18);
  }
  .font30,
  .font32,
  .font34,
  .font36,
  .font38 {
    font-size: 20px;
    line-height: calc(30/20);
  }
  .font40,
  .font42,
  .font44,
  .font46,
  .font48 {
    font-size: 24px;
    line-height: calc(34/24);
  }
  .font50,
  .font52,
  .font54,
  .font56,
  .font58 {
    font-size: 32px;
    line-height: calc(42/32);
  }
}
.public-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.25rem;
  min-width: 1rem;
  height: 42px;
  border-radius: 0.05rem;
  border: 1px solid #ffffff;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
}
.public-btn.style2 {
  border-color: var(--color);
  color: #fff;
  background: var(--color);
}
@media (max-width: 1580px) {
  .public-btn {
    height: 40px;
  }
}
.public-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 0.05rem;
  background-color: var(--color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.public-btn > span {
  position: relative;
  z-index: 10;
}
.public-btn .c-ico {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 7px;
  width: 20px;
  height: 20px;
  transition: all 0.4s;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .public-btn .c-ico {
    width: 18px;
    height: 18px;
  }
}
.public-btn .c-ico .c-svg {
  width: 100%;
  height: 100%;
}
.public-btn:hover {
  color: #fff;
  border-color: var(--color);
}
.public-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.public-btn:hover .c-ico {
  transform: translateX(0.1rem);
  color: #fff;
}
.public-btn:hover > span {
  color: #fff;
}
.public-btn.public-btn2 {
  border-color: #000;
  color: #000;
}
.public-btn.public-btn2:hover {
  border-color: var(--color);
}
.public-btn.public-btn3 {
  background: var(--color);
  border-color: var(--color);
  color: #fff;
}
.public-btn.public-btn3::before {
  background: #fff;
}
.public-btn.public-btn3:hover {
  border-color: var(--color);
}
.public-btn.public-btn3:hover > span {
  color: var(--color);
}
.public-btn.public-btn3:hover .c-ico {
  color: var(--color);
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.public-next,
.public-prev {
  margin-top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0.5;
  transition: 0.4s;
  color: #fff;
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%);
}
.public-next::after,
.public-prev::after {
  display: none;
}
.public-next .c-svg,
.public-prev .c-svg {
  width: 50%;
  height: 50%;
}
.public-next:hover,
.public-prev:hover {
  opacity: 1;
  background: #fff;
  color: var(--color);
}
.public-prev {
  transform: translateY(-50%) rotate(180deg);
}
.public-content {
  color: #666;
  line-height: calc(26/16);
}
@media (max-width: 991px) {
  .public-content {
    font-size: 14px;
    line-height: 1.5;
  }
  .public-content * {
    font-size: 14px !important;
  }
}
.public-content * {
  max-width: 100% !important;
  white-space: wrap !important;
}
.public-content a {
  color: var(--color);
}
.public-content a:hover {
  text-decoration: underline;
}
.public-content table {
  width: 100%;
}
.public-content table td,
.public-content table th {
  padding: 10px 15px;
  border: 1px solid #ddd;
}
.public-content ul,
.public-content ol {
  padding-left: revert;
}
.public-content li {
  list-style: revert;
}
.public-content dd {
  margin-left: revert;
}
.public-content img,
.public-content video,
.public-content iframe {
  max-width: 100%;
  height: auto !important;
}
.public-content h1,
.public-content h2,
.public-content h3,
.public-content h4,
.public-content h5,
.public-content h6 {
  color: #000;
  font-weight: revert;
}
.public-content h1:nth-child(1),
.public-content h2:nth-child(1),
.public-content h3:nth-child(1),
.public-content h4:nth-child(1),
.public-content h5:nth-child(1),
.public-content h6:nth-child(1) {
  margin-top: 0;
}
.public-content h1 {
  font-size: 1.75em;
}
.public-content h2 {
  font-size: 1.5em;
}
.public-content h3 {
  font-size: 1.25em;
}
.public-content h4 {
  font-size: 1em;
}
.public-content h5 {
  font-size: 0.875em;
}
.public-content h6 {
  font-size: 0.75em;
}
@media (max-width: 1580px) {
  .public-content h1 {
    font-size: 1.857em;
  }
  .public-content h2 {
    font-size: 1.571em;
  }
  .public-content h3 {
    font-size: 1.286em;
  }
  .public-content h4 {
    font-size: 1em;
  }
  .public-content h5 {
    font-size: 0.857em;
  }
  .public-content h6 {
    font-size: 0.714em;
  }
}
@media (max-width: 991px) {
  .public-content h1 {
    font-size: 1.571em !important;
  }
  .public-content h2 {
    font-size: 1.429em !important;
  }
  .public-content h3 {
    font-size: 1.286em !important;
  }
  .public-content h4 {
    font-size: 1em !important;
  }
  .public-content h5 {
    font-size: 0.857em !important;
  }
  .public-content h6 {
    font-size: 0.714em !important;
  }
  .public-content h1 *,
  .public-content h2 *,
  .public-content h3 *,
  .public-content h4 *,
  .public-content h5 *,
  .public-content h6 * {
    font-size: inherit !important;
  }
}
@keyframes width100 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes width0 {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
@keyframes arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(250%);
  }
  51% {
    transform: translateX(-250%);
  }
  100% {
    transform: translateX(0);
  }
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 75px;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 60px;
  }
}
/*头部*/
.c-head-move #c-header {
  top: -100px;
}
@media (max-width: 991px) {
  .c-head-move #c-header {
    top: -60px;
  }
}
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  /* border-bottom: 1px solid transparent; */
  line-height: 75px;
  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-style3 {
  color: #333;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
#c-header.c-style3 a {
  color: #333;
}
#c-header.c-style3 .c-nav > li > .c-title-box {
  color: #333;
}
#c-header.c-style3 .c-logo .c-img-box img {
  display: none;
}
#c-header.c-style3 .c-logo .c-img-box img:nth-child(2) {
  display: block;
}
#c-header.c-style3 .c-gn form {
  color: #333;
}
#c-header.c-style3 .c-gn .c-language {
  color: #333;
}
#c-header.c-style3 .c-switch i {
  background: #000;
}
#c-header.c-style2 {
  color: #333;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid transparent;
}
#c-header.c-style2 a {
  color: #333;
}
#c-header .c-logo {
  position: relative;
  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 {
  width: 0.94rem;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  #c-header .c-logo .c-img-box img {
    width: 1.2rem;
  }
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    width: 45px;
  }
}
@media (max-width: 767px) {
  #c-header .c-logo .c-img-box img {
    width: 70px;
  }
}
#c-header .c-logo .c-img-box img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
#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) {
  opacity: 0;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(2) {
  opacity: 1;
}
#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;
}
#c-header .c-gn .head_con a {
  transition: all 0.4s;
  display: inline-flex;
  align-items: center;
  height: 0.38rem;
  padding: 0 0.2rem;
  background: #000;
  border-radius: 0.05rem;
  color: #fff;
}
@media (max-width: 1580px) {
  #c-header .c-gn .head_con a {
    height: 0.5rem;
  }
}
#c-header .c-gn .head_con a:hover {
  opacity: 0.8;
}
#c-header .c-gn form {
  margin-right: 0.16rem;
  cursor: pointer;
}
#c-header .c-gn form .ico24 {
  padding: 0 0.17rem 0 0.41rem;
  position: relative;
}
#c-header .c-gn form .ico24::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 15px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ccc;
}
@media (max-width: 767px) {
  #c-header .c-gn form .ico24::after {
    display: none;
  }
}
#c-header .c-gn form .ico24 img,
#c-header .c-gn form .ico24 svg {
  width: 15px;
  height: 15px;
  transition: 0.4s;
  vertical-align: middle;
}
@media (min-width: 992px) {
  #c-header .c-gn form:hover > svg {
    color: var(--color);
  }
}
#c-header .c-gn form .c-pop {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding: 0.54rem 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  color: #333;
  text-align: left;
  cursor: auto;
}
#c-header .c-gn form .c-pop .container {
  max-width: 800px;
  line-height: calc(26/16);
}
#c-header .c-gn form .c-pop .container .c-box {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #eeeeee;
  background: #fff;
  border-radius: 125px;
  overflow: hidden;
}
@media (max-width: 991px) {
  #c-header .c-gn form .c-pop .container .c-box {
    border-radius: 20px;
  }
}
#c-header .c-gn form .c-pop .container .c-box input {
  padding: 0 22px;
  width: 100%;
  height: 60px;
  line-height: 60px;
}
@media (max-width: 991px) {
  #c-header .c-gn form .c-pop .container .c-box input {
    height: 40px;
    line-height: 40px;
  }
}
#c-header .c-gn form .c-pop .container .c-box button {
  float: left;
  margin-right: 0.3rem;
  color: #333;
  cursor: pointer;
  transition: all 0.4s;
}
#c-header .c-gn form .c-pop .container .c-box button:hover {
  color: var(--color);
}
#c-header .c-gn form .c-pop .container .c-box button img,
#c-header .c-gn form .c-pop .container .c-box button svg {
  width: 18px;
  color: #000;
}
#c-header .c-gn form .c-pop .container .g_lab2 {
  display: flex;
  margin-top: 0.16rem;
}
#c-header .c-gn form .c-pop .container .c-tag {
  margin: 0 0.15rem 0 0;
  color: #000;
}
#c-header .c-gn form .c-pop .container .c-list {
  display: flex;
  flex-wrap: wrap;
}
#c-header .c-gn form .c-pop .container .c-list li {
  margin-right: 0.2rem;
}
#c-header .c-gn form .c-pop .container .c-list li a {
  display: inline-flex;
  align-items: center;
  color: #999;
}
#c-header .c-gn form .c-pop .container .c-list li a .c-svg {
  margin-right: 5px;
  width: 18px;
  height: 18px;
}
#c-header .c-gn form .c-pop .container .c-list li a:hover {
  color: var(--color);
}
#c-header .c-gn .c-language {
  position: relative;
}
@media (max-width: 991px) {
  #c-header .c-gn .c-language {
    display: none;
  }
}
#c-header .c-gn .c-language .c-ico-text {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#c-header .c-gn .c-language .c-ico-text span {
  font-weight: bold;
  margin: 0 0.11rem 0 0;
  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: 8px;
  height: 8px;
  transition: 0.4s;
  vertical-align: middle;
  /* color: #a2a2a2; */
}
#c-header .c-gn .c-language .c-pop {
  display: none;
  position: absolute;
  top: 80%;
  left: 50%;
  padding: 5px 15px;
  min-width: 60px;
  line-height: 1.5;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 5px;
}
#c-header .c-gn .c-language .c-pop a {
  display: block;
  padding: 2px 0;
  color: #999;
  border-radius: 5px;
}
#c-header .c-gn .c-language .c-pop a:hover {
  color: #000;
}
#c-header .c-gn .c-language:hover .c-ico-text {
  color: var(--color);
}
#c-header .c-gn .c-language:hover .c-ico-text svg {
  transform: rotate(180deg);
  color: var(--color);
}
#c-header .c-gn .c-phone {
  display: flex;
  align-items: center;
}
@media (max-width: 1260px) {
  #c-header .c-gn .c-phone {
    display: none;
  }
}
#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 {
  position: absolute;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  position: relative;
  margin: 0 0.32rem;
}
#c-header .c-nav > li > .c-title-box {
  position: relative;
  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 {
  position: absolute;
  left: calc(100% + 0.11rem);
  width: 8px;
  height: 8px;
  transition: all 0.4s;
}
#c-header .c-nav > li > .c-title-box:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color);
  transition: 0.4s;
}
#c-header .c-nav > li > ul {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  padding: 10px;
  min-width: 100px;
  line-height: 40px;
  background: #fff;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 0 0 5px 5px;
}
#c-header .c-nav > li > ul li:last-child a::before {
  display: none;
}
#c-header .c-nav > li > ul li a {
  display: block;
  padding: 0 20px;
  color: #333;
  border-radius: 5px;
}
#c-header .c-nav > li > ul li a:hover {
  color: var(--color);
  background: #f8f9fc;
}
#c-header .c-nav .on2 {
  position: initial;
}
#c-header.c-style2 .c-nav li.on > .c-title-box,
#c-header .c-nav li:hover > .c-title-box,
#c-header.c-style2 .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:before,
#c-header .c-nav li:hover > .c-title-box:before,
#c-header.c-style2 .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,
#c-header.c-style2 .c-nav li.on > a svg,
#c-header .c-nav li:hover > a svg {
  transform: rotate(180deg);
}
#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-box {
  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-box .c-nav2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 5vw;
  border-top: 1px solid #f1f1f1;
  height: calc(100% - 80px);
  overflow-y: auto;
}
#c-header .c-nav2-box .c-nav2 ul {
  border-top: 1px solid #f1f1f1;
}
#c-header .c-nav2-box .c-nav2 li {
  margin: 0 0 0 5vw;
  border-top: 1px solid #f1f1f1;
}
#c-header .c-nav2-box .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2-box .c-nav2 li .c-title-box img,
#c-header .c-nav2-box .c-nav2 li .c-title-box svg {
  width: 14px;
  height: 14px;
  transition: all 0.4s;
}
#c-header .c-nav2-box .c-nav2 li .c-title-box.on img,
#c-header .c-nav2-box .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}
#c-header .c-nav2-box .c-nav2 li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: calc(100% - 40px);
}
#c-header .c-nav2-box .c-nav2 li a:hover,
#c-header .c-nav2-box .c-nav2 li.on > a {
  color: var(--color);
}
#c-header .c-nav2-box .c-nav2 li ul {
  display: none;
}
#c-header .c-nav2-box .c-nav2 > li {
  margin: 0;
}
#c-header .c-nav2-box .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2-box .c-nav2 li:first-child {
  border-top: 0;
}
#c-header .c-nav2-box .c-btn-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 5vw;
  width: 100%;
}
#c-header .c-nav2-box .c-btn-box .c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 15px;
  border-radius: 20px;
  background: #f4f4f4;
  color: #333;
  width: calc(50% - 8px);
  border: 1px solid #e4e4e4;
  cursor: pointer;
}
#c-header .c-nav2-box .c-btn-box .c-btn .c-svg {
  margin-right: 5px;
  width: 20px;
  height: auto;
}
#c-header .c-nav2-box .c-language2 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
}
#c-header .c-nav2-box .c-language2 .c-box {
  background: #fff;
  border-radius: 10px 10px 0 0;
  width: 100%;
  padding: 5vw;
  transform: translateY(100%);
  transition: all 0.4s;
}
#c-header .c-nav2-box .c-language2 .c-box .c-text {
  color: #666;
}
#c-header .c-nav2-box .c-language2 .c-box ul {
  max-height: 50vh;
  overflow-y: auto;
}
#c-header .c-nav2-box .c-language2 .c-box ul li {
  margin-top: 10px;
}
#c-header .c-nav2-box .c-language2 .c-box ul li:first-child {
  margin-top: 15px;
}
#c-header .c-nav2-box .c-language2 .c-box ul li a {
  color: #333;
}
#c-header .c-nav2-box.on .c-language2 {
  opacity: 1;
  pointer-events: auto;
}
#c-header .c-nav2-box.on .c-language2 .c-box {
  transform: translateY(0);
}
.c-open #c-header .c-nav2-box {
  height: calc(100vh - 1.2rem);
  height: calc(100svh - 1.2rem);
  height: calc(100dvh - 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 {
  background: #f2f2f5;
}
#c-footer a {
  color: #333;
  transition: 0.4s;
}
#c-footer a:hover {
  color: var(--color);
}
#c-footer .c-top-box {
  padding: 0.78rem 0 0.3rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box {
    padding: 1rem 0 0.8rem;
  }
}
#c-footer .c-top-box .container .g_tt {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#c-footer .c-top-box .container .foot_logo {
  height: auto;
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .foot_logo {
    width: 100%;
    margin-bottom: 0.3rem;
  }
}
#c-footer .c-top-box .container .foot_logo img {
  width: 1.8rem;
  height: auto;
  object-fit: contain;
}
#c-footer .c-top-box .container .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.22rem;
}
@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 {
  font-weight: bold;
}
#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;
  }
}
#c-footer .c-top-box .container a.c-title-box:hover {
  color: var(--color);
}
@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.4rem;
    display: none;
  }
}
#c-footer .c-top-box .container .c-list-box .c-list li {
  margin-bottom: 0.16rem;
}
#c-footer .c-top-box .container .c-list-box .c-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list li:last-child {
    margin-bottom: 0.2rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list li {
    margin-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;
  }
}
#c-footer .c-top-box .container .c-text-box p {
  display: flex;
  margin-bottom: 0.16rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-box p {
    margin-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-text-box p span {
  flex-shrink: 0;
}
#c-footer .c-top-box .container .c-text-wrap {
  width: 18.42857143%;
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-text-wrap {
    width: 28.57142857%;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-wrap {
    width: 100%;
    padding-top: 0.4rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-wrap .c-title-box {
    border: none;
  }
}
#c-footer .c-top-box .container .c-text-wrap .g_a {
  transition: all 0.4s;
  margin-top: 0.3rem;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid #7f7f7f;
}
#c-footer .c-top-box .container .c-text-wrap .g_a:hover {
  border-color: var(--color);
  color: var(--color);
}
#c-footer .c-top-box .container .c-text-wrap .g_a:hover i {
  color: var(--color);
  margin-left: 0.17rem;
}
#c-footer .c-top-box .container .c-text-wrap .g_a i {
  transition: all 0.4s;
  margin-left: 0.12rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.13rem;
  height: auto;
  color: #8c8c8c;
}
@media (max-width: 1260px) {
  #c-footer .c-top-box .container .c-text-wrap .g_a i {
    width: 0.16rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-text-wrap .g_a i {
    width: 0.22rem;
  }
}
#c-footer .c-top-box .container .c-text-wrap .g_a i svg,
#c-footer .c-top-box .container .c-text-wrap .g_a i img {
  width: 100%;
  height: auto;
}
#c-footer .c-top-box .container .c-text-wrap .g_a i svg path,
#c-footer .c-top-box .container .c-text-wrap .g_a i img path {
  fill: var(--color);
}
#c-footer .c-top-box .container .c-link {
  margin-top: 0.82rem;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-link {
    justify-content: flex-start;
  }
}
#c-footer .c-top-box .container .c-link .c-ico {
  display: flex;
  align-items: center;
}
#c-footer .c-top-box .container .c-link .c-ico a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.1rem;
  width: 40px;
  height: 40px;
  border-radius: 0.05rem;
  color: #c2c2c2;
  border: 1px solid #e4e4e6;
  transition: 0.4s;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-link .c-ico a {
    margin: 0 0.1rem 0 0;
  }
}
#c-footer .c-top-box .container .c-link .c-ico a img,
#c-footer .c-top-box .container .c-link .c-ico a svg {
  width: calc(25/38*100%);
  height: auto;
}
#c-footer .c-top-box .container .c-link .c-ico a:hover {
  color: #fff;
  background: var(--color);
}
#c-footer .c-bottom-box {
  padding: 0.25rem 0;
  border-top: 1px solid #eee;
  color: #7f7f7f;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box {
    padding: 0.4rem 0;
  }
}
#c-footer .c-bottom-box .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 991px) {
  #c-footer .c-bottom-box .container {
    flex-wrap: wrap;
  }
}
#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 {
  color: #999;
  margin-right: 0.4rem;
  word-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 991px) {
  #c-footer .c-bottom-box .container .c-copyright {
    margin-right: 0;
  }
}
#c-footer .c-bottom-box .container .c-copyright a {
  margin-left: 0.2rem;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box .container .c-policy-link {
    margin-top: 0.1rem;
  }
}
#c-footer .c-bottom-box .container .c-policy-link a {
  line-height: 1;
  position: relative;
  padding: 0 0.15rem;
}
#c-footer .c-bottom-box .container .c-policy-link a::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 12px;
  left: 0;
  background: #eee;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  #c-footer .c-bottom-box .container .c-policy-link a:first-child {
    padding-left: 0;
  }
}
#c-footer .c-bottom-box .container .c-policy-link a:first-child::after {
  display: none;
}
#c-footer .c-bottom-box .container .c-policy-link a:last-child {
  padding-right: 0;
}
#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;
}
.public-page {
  padding: 1.2rem 0;
  background: #f0f6ff;
  min-height: calc(100vh - 100px);
  min-height: calc(100svh - 100px);
  min-height: calc(100dvh - 100px);
}
@media (max-width: 991px) {
  .public-page {
    min-height: calc(100vh - 60px);
    min-height: calc(100svh - 60px);
    min-height: calc(100dvh - 60px);
  }
}
.public-page .container {
  max-width: 1400px;
}
.public-page .c-title-box {
  text-align: center;
}
.public-page .c-title-box .c-title {
  font-weight: bold;
}
.public-page .c-title-box .c-time {
  margin: 0.2rem 0 0.9rem;
  color: #888888;
}
.public-page .c-title-box .c-time span {
  margin: 0 0 -0.13rem;
}
.c-404 {
  display: flex;
  align-items: center;
  padding: 1.2rem 0;
  text-align: center;
  background: #f0f6ff;
  min-height: calc(100vh - 100px);
  min-height: calc(100svh - 100px);
  min-height: calc(100dvh - 100px);
}
@media (max-width: 991px) {
  .c-404 {
    min-height: calc(100vh - 60px);
    min-height: calc(100svh - 60px);
    min-height: calc(100dvh - 60px);
  }
}
.c-404 .container {
  position: relative;
}
.c-404 .c-num {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 5.12rem;
  color: #3f80e8;
  opacity: 0.05;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .c-404 .c-num {
    font-size: 50vw;
  }
}
.c-404 .c-title {
  position: relative;
  z-index: 5;
  font-weight: border;
}
.c-404 .public-btn {
  position: relative;
  z-index: 5;
  margin: 0.85rem 0 0;
}
.c-sitemap {
  padding: 1.2rem 0;
  background: #f0f6ff;
  min-height: calc(100vh - 100px);
  min-height: calc(100svh - 100px);
  min-height: calc(100dvh - 100px);
}
@media (max-width: 991px) {
  .c-sitemap {
    min-height: calc(100vh - 60px);
    min-height: calc(100svh - 60px);
    min-height: calc(100dvh - 60px);
  }
}
.c-sitemap .container {
  max-width: 1080px;
}
.c-sitemap .c-title {
  font-weight: bold;
  text-align: center;
}
.c-sitemap .c-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 1rem -0.2rem -0.4rem;
}
@media (max-width: 767px) {
  .c-sitemap .c-list {
    justify-content: flex-start;
    margin-bottom: -0.8rem;
  }
}
.c-sitemap .c-list a {
  transition: all 0.4s;
}
.c-sitemap .c-list a:hover {
  color: var(--color) !important;
  text-decoration: underline;
}
.c-sitemap .c-list > li {
  padding: 0 0.2rem 0.4rem;
}
@media (max-width: 767px) {
  .c-sitemap .c-list > li {
    width: 33.33%;
    padding-bottom: 0.8rem;
  }
}
.c-sitemap .c-list > li > a {
  font-weight: bold;
}
.c-sitemap .c-list > li ul li {
  margin-top: 0.1rem;
}
.c-sitemap .c-list > li ul li:first-child {
  margin-top: 0.25rem;
}
.c-sitemap .c-list > li ul li a {
  color: #888;
}
/*首页内容1*/
.c-home1 {
  overflow: hidden;
}
.c-home1 .swiper-slide {
  overflow: hidden;
  /* &::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            z-index: 5;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,.2);
        } */
}
.c-home1 .swiper-slide .c-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 7.25rem;
}
@media (max-width: 991px) {
  .c-home1 .swiper-slide .c-img {
    height: 10rem;
  }
}
.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 .c-wrap {
  padding-bottom: 0.55rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  width: 100%;
  transform: translateY(-50%);
  color: #fff;
}
.c-home1 .swiper-slide .c-wrap .c-title {
  line-height: calc(70/48);
  letter-spacing: 0.5em;
  transition: all 1.5s;
}
@media (max-width: 767px) {
  .c-home1 .swiper-slide .c-wrap .c-title {
    letter-spacing: 0;
  }
}
.c-home1 .swiper-slide .c-wrap .c-text {
  margin: 0.2rem 0 0.4rem;
}
.c-home1 .swiper-slide .c-wrap .public-btn {
  margin-top: 0.5rem;
}
.c-home1 .swiper-slide-active .c-wrap .c-title {
  letter-spacing: 0;
}
.c-home1 .swiper-button-next,
.c-home1 .swiper-button-prev {
  right: 0.6rem;
}
@media (max-width: 991px) {
  .c-home1 .swiper-button-next,
  .c-home1 .swiper-button-prev {
    display: none;
  }
}
.c-home1 .swiper-button-prev {
  left: 0.6rem;
}
.c-home1 .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0.45rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination {
    bottom: 0.6rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
  width: 0.44rem;
  height: 3px;
  vertical-align: top;
  margin: 0 0.05rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0.1rem;
    width: 0.6rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet div {
  border-radius: 1px;
  height: 100%;
  background: #fff;
  width: 0;
  animation-timing-function: linear;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet-active div {
  animation-name: width100;
}
/* 自己的公共样式 */
/*过渡*/
a {
  text-decoration: initial;
}
input::-webkit-input-placeholder {
  color: #999;
}
textarea::-webkit-input-placeholder {
  color: #999;
}
/* 字体 */
@font-face {
  font-family: 'pop-m';
  src: url(../font/POPPINS-MEDIUM.TTF);
}
.font-m {
  font-family: 'pop-m', '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 */
}
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*延迟*/
.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;
}
/* 普通移入效果 */
.hov_08 {
  transition: all 0.4s;
}
.hov_08:hover {
  opacity: 0.8;
}
/* 粘性布局调整 */
.sticky_top {
  top: 0 !important;
}
/* 移入图片切换 */
.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;
  }
}
.g_pc {
  display: block;
}
.g_md {
  display: none;
}
@media (max-width: 767px) {
  .g_pc {
    display: none;
  }
  .g_md {
    display: block;
  }
}
/* 图片移入效果 */
.img_hover:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
/* 使用swiper 出现闪屏问题 */
.swiper-slide {
  transform: translate3d(0, 0, 0);
  /* overflow: hidden; */
}
/* banner中间小图标 */
.banner_sb {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.5rem;
  width: 18px;
  height: auto;
  z-index: 100;
  object-fit: contain;
  animation: moveh 3s infinite linear;
  -webkit-animation: moveh 3s infinite linear;
}
@keyframes moveh {
  0% {
    bottom: 0.5rem;
  }
  50% {
    bottom: 0.3rem;
  }
  100% {
    bottom: 0.5rem;
  }
}
/* 子页面分隔 */
.gw {
  height: 100px;
  width: 100%;
  background: #fff;
}
.gw.on {
  height: 81px;
}
@media screen and (max-width: 1440px) {
  .gw {
    height: 60px;
  }
  .gw.on {
    height: 61px;
  }
}
.ceshi {
  -webkit-animation-name: fadeInRightSm;
  animation-name: fadeInRightSm;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/*延迟*/
.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颜色 */
/* 导航 */
/* 导航各种效果 */
.nav1_none {
  top: -100px !important;
}
.nav2_none {
  top: 100px !important;
}
@media (max-width: 1440px) {
  .nav1_none {
    top: -60px !important;
  }
  .nav2_none {
    top: 60px !important;
  }
}
/* 下拉导航 */
.g_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;
}
.g_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;
}
.g_nav2 > a:hover {
  background: #fff;
}
.g_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: 50px;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    margin-right: -1rem;
    padding-right: 1rem;
    box-sizing: content-box;
  }
}
#g-header .c-nav2 {
  position: absolute;
  right: -100%;
  left: auto;
  width: 100%;
  top: 100px;
  height: calc(var(--vh) - 100px);
  font-size: 14px;
  line-height: 50px;
  background: #F1F1F1;
  overflow-y: auto;
  transition: all 0.8s;
  text-align: left;
}
@media (max-width: 1260px) {
  #g-header .c-nav2 {
    height: calc(var(--vh) - 60px);
    top: 60px;
  }
}
#g-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#g-header .c-nav2 li {
  padding: 0 0.5rem;
  border-top: 1px solid #fff;
}
#g-header .c-nav2 li.on img,
#g-header .c-nav2 li.on svg {
  transform: rotate(0deg) !important;
}
@media (max-width: 767px) {
  #g-header .c-nav2 li {
    padding: 0 0.5rem;
  }
}
#g-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#g-header .c-nav2 li .c-title-box img,
#g-header .c-nav2 li .c-title-box svg {
  transform: rotate(-90deg);
  width: 0.3rem;
  height: auto;
  transition: all 0.3s;
  margin: 0 0 0 10px;
  float: right;
  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: 991px) {
  #g-header .c-switch {
    display: block;
  }
}
#g-header .c-switch i {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 1260px) {
  #g-header .c-switch i {
    background: #333;
  }
}
#g-header .c-switch i:nth-child(1) {
  top: 0;
}
#g-header .c-switch i:nth-child(2) {
  width: 18px;
  top: 50%;
}
#g-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#g-header .c-switch i .c-title-box img {
  width: 10px;
  height: auto;
  margin: 0 0 0 10px;
  float: right;
  display: block;
}
.c-title-con {
  display: none;
}
.c-open #g-header .c-nav2 {
  right: 0;
}
.c-open #g-header .c-nav2 .c-title-con {
  overflow: hidden;
  height: auto;
  display: none;
  padding-bottom: 0.25rem;
}
.c-open #g-header .c-nav2 .c-title-con > a {
  color: #999 !important;
  display: block;
  padding: 0.15rem 0 0.15rem 20px;
  line-height: 1.5;
}
.c-open #g-header .c-switch i:nth-child(2) {
  opacity: 0;
}
.c-open #g-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-open #g-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 网站地图 */
.g-mapon {
  padding: 0.6rem 0 3.7rem;
}
@media (max-width: 767px) {
  .g-mapon {
    padding: 0.6rem 0 1rem;
  }
}
.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 .container {
  padding: 0 1.4rem 0 1.6rem;
}
@media (max-width: 991px) {
  .g-mapon .container {
    padding: 0;
  }
}
.g-mapon .box {
  background: #fff;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .g-mapon .box {
    flex-direction: column;
  }
}
.g-mapon .box .item {
  padding: 0 0.25rem 0 0;
  position: relative;
}
@media (max-width: 767px) {
  .g-mapon .box .item {
    margin-bottom: 0.5rem;
  }
}
.g-mapon .box .item a:hover {
  color: var(--color) !important;
}
.g-mapon .box .item .g-la {
  font-weight: bold;
  margin-bottom: 0.15rem;
  flex-shrink: 0;
  color: #222;
}
@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%;
  margin-top: 0.35rem;
}
@media (max-width: 767px) {
  .g-mapon .box .item .g-twa {
    display: flex;
    flex-wrap: wrap;
  }
}
.g-mapon .box .item .g-twa a {
  display: block;
  margin-bottom: 0.12rem;
  padding-right: 0.2rem;
  color: #666;
}
@media (max-width: 767px) {
  .g-mapon .box .item .g-twa a {
    min-width: auto;
  }
}
.g-mapon2 {
  padding: 1.7rem 0 2.4rem;
}
@media (max-width: 991px) {
  .g-mapon2 {
    padding: 1rem 0;
  }
}
.g-mapon2 .g-tit {
  text-align: center;
}
.g-mapon2 .g-tit h2 {
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .g-mapon2 .g-tit h2 {
    font-size: 0.48rem;
  }
}
.g-mapon2 .box {
  display: flex;
  justify-content: space-between;
  background: #fff;
  margin-top: 1.14rem;
}
@media (max-width: 991px) {
  .g-mapon2 .box {
    flex-direction: column;
    margin-top: 0.5rem;
  }
}
.g-mapon2 .box .item {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 767px) {
  .g-mapon2 .box .item {
    flex-direction: column;
    margin-bottom: 0.25rem;
  }
}
.g-mapon2 .box .item a:hover {
  color: var(--color) !important;
}
.g-mapon2 .box .item .g-la {
  font-weight: bold;
  margin-bottom: 0.24rem;
  flex-shrink: 0;
  color: #222;
}
@media (max-width: 767px) {
  .g-mapon2 .box .item .g-la {
    margin-bottom: 0.2rem;
    font-size: 0.32rem;
  }
}
.g-mapon2 .box .item .g-twa {
  width: 100%;
}
@media (max-width: 991px) {
  .g-mapon2 .box .item .g-twa {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
  }
}
.g-mapon2 .box .item .g-twa > a {
  display: block;
  margin-bottom: 0.05rem;
  color: #777;
  margin-right: 0.52rem;
}
@media (max-width: 767px) {
  .g-mapon2 .box .item .g-twa > a {
    min-width: auto;
  }
}
.g-mapon2 .box .item .g-twa2 {
  display: flex;
}
@media (max-width: 991px) {
  .g-mapon2 .box .item .g-twa2 {
    flex-direction: column;
  }
}
.g-mapon2 .box .item .g-twa2 .g-twa-li .g-twtit {
  color: #3D3D3D;
  margin-bottom: 0.1rem;
}
.g-mapon2 .box .item .g-twa2 .g-twa-li .g-tha {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .g-mapon2 .box .item .g-twa2 .g-twa-li .g-tha {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
  }
}
.g-mapon2 .box .item .g-twa2 .g-twa-li .g-tha a {
  margin-bottom: 0.05rem;
  color: #777;
  margin-right: 0.52rem;
}
@media (max-width: 991px) {
  .g-mapon2 .box .item .g-twa2 .g-twa-li .g-tha a {
    margin-bottom: 0.1rem;
    margin-right: 0.3rem;
  }
}
/* 404 */
.notbox404 {
  padding: 1.5rem 0 2.3rem;
}
.notbox404 .notbox404_box {
  text-align: center;
  width: 90%;
  margin: auto;
}
.notbox404 .notbox404_box > img {
  margin-bottom: -0.25rem;
  width: 100%;
}
@media (max-width: 991px) {
  .notbox404 .notbox404_box > img {
    margin-bottom: 0rem;
  }
}
.notbox404 .notbox404_box .notbox404_con .public-btn {
  margin: 0.28rem 0 0.38rem;
}
.notbox404 .notbox404_box .notbox404_con .txt span {
  color: var(--color);
}
/* 免责声明 */
.g-pri {
  padding: 0.4rem 0 1.35rem;
}
.g-pri .box {
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .g-pri .box {
    padding: 0;
  }
}
.g-pri .box .tit {
  margin-bottom: 0.35rem;
  text-align: center;
}
.g-pri .box .tit h2 {
  font-weight: bold;
}
.g-pri .box .tit .g-p {
  margin-top: 0.1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: 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 .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 ul {
  padding: 0;
}
.g-pri .box .public-content .g-pritxt .g-pritxt-box ul li {
  list-style: none;
}
.pub_title {
  text-align: center;
}
.pub_title.pub_title2 {
  text-align: left;
}
.pub_title.pub_title3 h2 {
  color: #fff;
}
.pub_title.pub_title3 p {
  color: #fff;
}
.pub_title h2 {
  font-weight: bold;
  color: #000;
  line-height: 1.2;
}
.pub_title p {
  margin-top: 0.2rem;
  color: #999;
}
@media (max-width: 1260px) {
  .pub_title p br {
    display: none;
  }
}
.pub_btn {
  min-width: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 0.46rem;
  padding: 0.05rem;
  padding-left: 0.22rem;
  border-radius: 100px;
  /* border-radius: 100px; */
  overflow: hidden;
  background: #fff;
  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-left: 0.4rem;
  }
}
.pub_btn:hover {
  border-color: var(--color);
  background: var(--color);
}
.pub_btn:hover i {
  background: #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: 0.36rem;
  height: 0.36rem;
  background: var(--color);
  border-radius: 50%;
}
@media (max-width: 1580px) {
  .pub_btn i {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media (max-width: 767px) {
  .pub_btn i {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.pub_btn i svg,
.pub_btn i img {
  width: 16.667%;
  height: auto;
}
.pub_btn i svg path,
.pub_btn i img path {
  fill: #111;
  transition: all 0.4s;
}
.pub_btn p {
  position: relative;
  z-index: 5;
  transition: all 0.4s;
}
.pub_btn2 {
  background: none;
  border-color: #111;
}
.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;
}
/* #c-placeholder {
	@media screen and (max-width: 1440px) {
		height: 60px;
	}
} */
/* 轮播数量不够时隐藏按钮 */
.swiper-button-lock {
  display: none !important;
}
.g_tac {
  text-align: center;
}
/* 搜索结果 */
.headline {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.5rem;
}
.headline .title-box {
  width: 100%;
  min-width: 0;
  height: auto;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.headline .title-box .title {
  line-height: 1;
}
.headline .title-box .tips {
  margin-left: 1em;
  color: #666666;
  line-height: 1;
}
.headline .more-box {
  width: auto;
  height: auto;
  display: flex;
}
.headline .more-box .more {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  color: var(--color);
}
.headline .more-box .more:hover .icon {
  transform: translateX(5px);
}
.headline .more-box .more .icon {
  margin-left: 10px;
  transition: all 0.4s;
}
.hi-nav1 .swiper-slide {
  width: auto;
}
/* 二级 */
/* .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;} */
/* 开始 */
.hon {
  margin: 0.85rem 0 1.55rem;
}
.hon .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.hon .box .item {
  margin-bottom: 0.3rem;
  background: #f8f8f8;
  overflow: hidden;
  border-radius: 0.08rem;
}
@media (max-width: 767px) {
  .hon .box .item {
    width: 100% !important;
  }
}
.hon .box .item:hover .img {
  /* .public-img{
						.img1{
							top: -100%;
						}
						.img2{
							top: 0;
						} 
					} */
}
.hon .box .item:hover .img::after {
  width: 100%;
}
.hon .box .item:hover .txt h3 {
  color: var(--color);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 93%, var(--color) 0%);
  background-size: 100% 100%;
}
.hon .box .item .img {
  position: relative;
}
.hon .box .item .img::after {
  content: '';
  position: absolute;
  width: 0;
  height: 5px;
  background: var(--color);
  top: 100%;
  left: 0;
  transition: all 0.4s;
}
.hon .box .item .img .public-img .img2 {
  top: 100%;
}
.hon .box .item .img .public-img img {
  transition: all 0.4s;
}
.hon .box .item .img .g_new {
  position: absolute;
  padding: 4px 9px;
  background: var(--color);
  border-radius: 3px;
  color: #fff;
  left: 0.1rem;
  top: 0.1rem;
  z-index: 10;
  font-size: 12px;
}
.hon .box .item .txt {
  padding: 0.28rem 0.3rem 0.46rem;
}
.hon .box .item .txt h3 {
  color: #333;
  font-weight: bold;
  display: inline;
  transition: all 0.4s;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 93%, #333 0%);
  background-size: 0 100%;
  background-repeat: no-repeat;
}
.hon .box .item .txt p {
  color: #666;
  margin-top: 0.15rem;
}
.hon .box .item1 {
  width: 57.14285714%;
}
.hon .box .item1 .img .public-img:before {
  padding-top: 42.25%;
}
.hon .box .item2 {
  width: 40.71428571%;
}
.hon .box .item2 .img .public-img:before {
  padding-top: 59.29824561%;
}
.hon .g_tac {
  margin-top: 0.2rem;
}
.htw {
  margin: 1.55rem 0;
}
.htw .g_tac {
  margin-top: 0.5rem;
}
.newspub {
  margin-top: 0.54rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .newspub {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .newspub {
    grid-template-columns: repeat(1, 1fr);
  }
}
.newspub .item {
  overflow: hidden;
  border-radius: 0.08rem;
}
.newspub .item:hover .public-img img {
  transform: scale(1.05);
}
.newspub .item:hover .public-img:after {
  width: 100%;
}
.newspub .item:hover .txt h3 {
  color: var(--color) !important;
}
.newspub .item .public-img:before {
  padding-top: 62.78026906%;
}
.newspub .item .public-img:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0.05rem;
  background: var(--color);
  transition: all 0.4s;
  left: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
}
.newspub .item .txt {
  background: #f8f8f8;
  padding: 0.44rem 0.28rem 0.56rem;
}
.newspub .item .txt h3 {
  transition: all 0.4s;
  margin-top: 0.16rem;
}
.newspub .item .txt span {
  display: flex;
  margin-top: 0.32rem;
  color: #999;
}
.hth {
  background: #e1e1e1;
  padding: 0.86rem 0 0.74rem;
}
.hth .pub_title p {
  color: #666;
}
.hth .box {
  text-align: center;
  margin-top: 0.38rem;
}
/* 右侧栏 */
.gpop {
  position: fixed;
  right: 0.4rem;
  bottom: 2rem;
  z-index: 1000;
  display: none;
}
@media (max-width: 767px) {
  .gpop {
    right: 10px;
  }
}
.gpop > * {
  transition: all 0.4s;
}
.gpop .gpop_t {
  border-radius: 0.05rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.gpop .gpop_t .pop_a {
  border-bottom: 2px solid #151c52;
}
.gpop .gpop_t .pop_a:last-child {
  border: none;
}
.gpop .pop_a {
  transition: all 0.4s;
  border-radius: 0.05rem;
  padding: 0.12rem 0;
  cursor: pointer;
  width: 40px;
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #09080f;
}
@media (max-width: 767px) {
  .gpop .pop_a {
    width: 30px;
    height: 30px;
  }
}
.gpop .pop_a.on {
  background: var(--color);
}
.gpop .pop_a.on .pop_text {
  transform: scale(1);
  -webkit-transform: scale(1);
}
.gpop .pop_a.on .pop_a_img svg {
  color: #fff;
}
.gpop .pop_a.on .pop_a_img p {
  color: #fff;
}
.gpop .pop_a img {
  z-index: 100;
}
.gpop .pop_a .pop_a_img {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.gpop .pop_a .pop_a_img svg {
  color: #fff;
  width: 14px;
  height: 14px;
}
.gpop .pop_a .pop_a_img svg path {
  fill: #969696;
}
.gpop .pop_a .pop_a_img p {
  color: #fff;
  width: 1em;
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_a_img p {
    display: none;
  }
}
.gpop .pop_a .pop_text {
  position: absolute;
  top: 0;
  right: 100%;
  min-width: 220px;
  transition: all 0.4s;
  z-index: 1;
  transform: scale(0);
  -webkit-transform: scale(0);
  padding-right: 0.2rem;
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text {
    width: 170px;
    top: auto;
    bottom: 0;
  }
}
.gpop .pop_a .pop_text .pop_text_box {
  background: #fff;
  padding: 3px 0.2rem 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
.gpop .pop_a .pop_text .pop_text_box .gt .item {
  border-bottom: 1px solid #eeeeee;
  padding: 0.16rem 0;
  display: flex;
  align-items: flex-start;
}
.gpop .pop_a .pop_text .pop_text_box .gt .item.pub_curon:hover i {
  color: var(--color);
}
.gpop .pop_a .pop_text .pop_text_box .gt .item.pub_curon:hover p {
  color: var(--color);
}
.gpop .pop_a .pop_text .pop_text_box .gt .item i {
  margin-right: 0.14rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 24px;
  color: #333;
  transition: all 0.4s;
}
.gpop .pop_a .pop_text .pop_text_box .gt .item i svg,
.gpop .pop_a .pop_text .pop_text_box .gt .item i img {
  width: 100%;
  height: auto;
}
.gpop .pop_a .pop_text .pop_text_box .gt .item i svg path,
.gpop .pop_a .pop_text .pop_text_box .gt .item i img path {
  fill: var(--color);
}
.gpop .pop_a .pop_text .pop_text_box .gt .item .txt p {
  transition: all 0.4s;
}
.gpop .pop_a .pop_text .pop_text_box .gt .item .txt span {
  color: #666;
}
.gpop .pop_a .pop_text .pop_text_box .gb {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.gpop .pop_a .pop_text .pop_text_box .gb:hover p,
.gpop .pop_a .pop_text .pop_text_box .gb.on p {
  color: var(--color);
}
.gpop .pop_a .pop_text .pop_text_box .gb:hover i,
.gpop .pop_a .pop_text .pop_text_box .gb.on i {
  color: var(--color);
}
.gpop .pop_a .pop_text .pop_text_box .gb p {
  transition: all 0.4s;
}
.gpop .pop_a .pop_text .pop_text_box .gb i {
  margin-left: 0.1rem;
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: auto;
  color: #333;
}
@media (max-width: 1260px) {
  .gpop .pop_a .pop_text .pop_text_box .gb i {
    width: 12px;
  }
}
@media (max-width: 767px) {
  .gpop .pop_a .pop_text .pop_text_box .gb i {
    width: 10px;
  }
}
.gpop .pop_a .pop_text .pop_text_box .gb i svg,
.gpop .pop_a .pop_text .pop_text_box .gb i img {
  width: 100%;
  height: auto;
}
.gpop .pop_a .pop_text .pop_text_box .gb i svg path,
.gpop .pop_a .pop_text .pop_text_box .gb i img path {
  fill: var(--color);
}
.gpop .cur_top {
  width: 40px;
  height: 40px;
  margin-top: 0.1rem;
  background: #fff;
  border-radius: 0.05rem;
  border: 1px solid #eee;
  /* box-shadow: 0 2px 5.6px 0 rgba(0, 0, 0, 0.15); */
}
@media (max-width: 767px) {
  .gpop .cur_top {
    width: 30px;
    height: 30px;
  }
}
.gpop .cur_top.on {
  background: var(--color);
}
.gpop .cur_top.on .pop_a_img svg {
  color: #fff;
}
.gpop .cur_top .pop_a_img {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.gpop .cur_top .pop_a_img svg {
  color: #333;
}
.crumbs_box {
  padding: 0.4rem 0;
}
.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .crumbs {
    flex-wrap: initial;
  }
}
.crumbs p {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .crumbs p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .crumbs p:last-child {
    flex-shrink: initial;
  }
}
.crumbs p:last-child svg,
.crumbs p:last-child i,
.crumbs p:last-child img {
  display: none;
}
.crumbs p svg,
.crumbs p img {
  color: #666;
  width: 5px;
  height: auto;
  margin-right: 0.1rem;
}
.crumbs p svg path,
.crumbs p img path {
  fill: #666;
}
.crumbs p a {
  color: #666;
  margin-right: 0.07rem;
}
.crumbs p .g_sy {
  display: inline-flex;
  align-items: center;
  width: 17px;
  height: auto;
  margin-right: 0.1rem;
}
@media (max-width: 767px) {
  .crumbs p .g_sy {
    width: 14px;
    margin-bottom: 2px;
  }
}
.crumbs p .g_sy svg,
.crumbs p .g_sy img {
  color: #666;
  width: 100%;
  margin-right: 0;
}
.crumbs p i {
  font-style: initial;
  opacity: 0.7;
  color: #fff;
  margin-right: 0.1rem;
}
/* 产品比较 */
.compon {
  margin: 0.15rem 0 1.6rem;
}
@media (max-width: 767px) {
  .compon {
    margin: 0.15rem 0 1.2rem;
  }
}
.compon .g_lab {
  margin-top: 0.15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.compon .g_lab i {
  margin-right: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.18rem;
  height: auto;
  color: #333;
}
@media (max-width: 1260px) {
  .compon .g_lab i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  .compon .g_lab i {
    width: 0.26rem;
  }
}
.compon .g_lab i svg,
.compon .g_lab i img {
  width: 100%;
  height: auto;
}
.compon .g_lab i svg path,
.compon .g_lab i img path {
  fill: var(--color);
}
.compon .g_lab p {
  color: var(--color);
}
.compon .box {
  margin-top: 0.5rem;
}
.compon .box .g_tit {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .compon .box .g_tit {
    flex-direction: column;
  }
}
.compon .box .g_tit .gl {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .compon .box .g_tit .gl {
    margin-bottom: 0.2rem;
  }
}
.compon .box .g_tit .gl p {
  margin-right: 0.16rem;
}
.compon .box .g_tit .gl .g_a {
  display: flex;
  align-items: center;
}
.compon .box .g_tit .gl .g_a a {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 0.05rem;
  height: 0.42rem;
  min-width: 1.2rem;
  margin-right: 0.1rem;
  padding: 0 0.2rem;
  transition: all 0.4s;
}
@media (max-width: 1900px) {
  .compon .box .g_tit .gl .g_a a {
    height: 0.54rem;
  }
}
@media (max-width: 767px) {
  .compon .box .g_tit .gl .g_a a {
    height: 0.6rem;
    padding: 0 0.3rem;
  }
}
.compon .box .g_tit .gl .g_a a.on {
  background: var(--color);
  border-color: var(--color);
  color: #fff;
}
.compon .box .g_tit .gr {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .compon .box .g_tit .gr {
    margin-bottom: 0.2rem;
  }
}
.compon .box .g_tit .gr .item {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .compon .box .g_tit .gr .item {
    margin: 0 0.3rem 0 0;
  }
}
.compon .box .g_tit .gr .item i {
  margin-right: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.22rem;
  height: auto;
  color: var(--color);
}
@media (max-width: 1260px) {
  .compon .box .g_tit .gr .item i {
    width: 0.26rem;
  }
}
@media (max-width: 767px) {
  .compon .box .g_tit .gr .item i {
    width: 0.34rem;
  }
}
.compon .box .g_tit .gr .item i svg,
.compon .box .g_tit .gr .item i img {
  width: 100%;
  height: auto;
}
.compon .box .g_tit .gr .item i svg path,
.compon .box .g_tit .gr .item i img path {
  fill: var(--color);
}
@media (max-width: 767px) {
  .compon .box .g_table {
    font-size: 12px;
  }
}
.compon .box .g_table .g_th .p2 {
  font-size: 12px;
  color: #666;
}
.compon .box .g_table .g_th .p2 span {
  color: var(--color);
}
.compon .box .g_table .img {
  cursor: pointer;
  display: inline-block;
}
.compon .box .g_table .img img {
  max-width: 2rem;
}
.compon .box .g_table table {
  border-color: #e5e5e5;
  width: 100%;
}
.compon .box .g_table table th {
  padding: 0.15rem;
  background: #f8f8f8;
}
.compon .box .g_table table th:first-child {
  width: 14.28571429%;
}
@media (max-width: 991px) {
  .compon .box .g_table table th:first-child {
    width: 21.42857143%;
  }
}
@media (max-width: 767px) {
  .compon .box .g_table table th:first-child {
    width: 35%;
    padding: 0.2rem;
  }
}
.compon .box .g_table table td {
  text-align: center;
  padding: 0.25rem;
}
@media (max-width: 767px) {
  .compon .box .g_table table td {
    padding: 0.2rem;
  }
}
/* 产品聚合页 */
.sub_banner {
  overflow: hidden;
  height: 7.25rem;
  width: 100%;
  position: relative;
}
.sub_banner .mob_pc {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub_banner .mob_pc .g_img {
  width: 100%;
  height: 100%;
}
.sub_banner .mob_pc .g_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub_banner .mob_pc .g_video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.sub_banner .sub_banner_txt {
  /* padding-top: 0.88rem; */
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}
.sub_banner .sub_banner_txt .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.sub_banner .sub_banner_txt .container .ban_l {
  width: 100%;
  text-align: center;
}
.sub_banner .sub_banner_txt .container .ban_l .tit h3 {
  font-weight: 900;
  line-height: 1.45833333;
}
.sub_banner .sub_banner_txt .container .ban_l .sub_banner_p {
  width: 5.4rem;
  margin-top: 0.44rem;
}
.sub_banner .sub_banner_txt .container .ban_l .pub_btn {
  margin-top: 0.77rem;
}
.proon {
  margin: 0.4rem 0 1.3rem;
}
.proon .g_p {
  padding: 0 2.05rem;
  text-align: center;
  margin-bottom: 1.45rem;
}
@media (max-width: 1260px) {
  .proon .g_p {
    padding: 0;
  }
}
.proon .box .gcon {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .proon .box .gcon {
    grid-template-columns: repeat(1, 1fr);
  }
}
.proon .box .gcon .item {
  position: relative;
  border-radius: 0.08rem;
  border: 1px solid #e5e5e5;
  padding: 0.26rem 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
}
.proon .box .gcon .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  border-radius: 0.08rem;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.proon .box .gcon .item:hover h3 {
  color: var(--color);
}
.proon .box .gcon .item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.proon .box .gcon .item h3 {
  position: relative;
  z-index: 10;
  font-weight: bold;
  transition: all 0.4s;
}
.proon .box .gcon .item i {
  position: relative;
  z-index: 10;
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: auto;
  color: #333;
}
@media (max-width: 1260px) {
  .proon .box .gcon .item i {
    width: 5px;
  }
}
.proon .box .gcon .item i svg,
.proon .box .gcon .item i img {
  width: 100%;
  height: auto;
}
.proon .box .gcon .item i svg path,
.proon .box .gcon .item i img path {
  fill: var(--color);
}
.protw {
  margin: 1.3rem 0 1.6rem;
}
.protw .box {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1260px) {
  .protw .box {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .protw .box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .protw .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.protw .box .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s;
  background: #f8f8f8;
  border-radius: 0.08rem;
  padding: 0.53rem 0.2rem 0.33rem 0.2rem;
}
.protw .box .item:hover {
  transform: translateY(-0.1rem);
}
.protw .box .item .txt h3 {
  font-weight: bold;
}
.protw .box .item .txt p {
  color: #666;
  margin-top: 0.12rem;
}
.protw .box .item .g_b {
  margin-top: 0.32rem;
  display: flex;
  align-items: center;
}
.protw .box .item .g_b i {
  margin-right: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.18rem;
  height: auto;
  color: #333;
}
@media (max-width: 1260px) {
  .protw .box .item .g_b i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  .protw .box .item .g_b i {
    width: 0.26rem;
  }
}
.protw .box .item .g_b i svg,
.protw .box .item .g_b i img {
  width: 100%;
  height: auto;
}
.protw .box .item .g_b i svg path,
.protw .box .item .g_b i img path {
  fill: var(--color);
}
.protw .box .item .g_b p {
  color: var(--color);
}
/* 产品详情 */
.pinfotop {
  padding: 0.3rem 0;
}
.pinfotop .g_tit h1 {
  color: #000;
  font-weight: bold;
}
.pinfotop .g_tit .g_p {
  margin-top: 0.22rem;
}
.pinfotop .g_tit .g_p p {
  line-height: 1.875;
  color: #666;
}
.pinfotop .g_data {
  display: flex;
  margin-top: 0.5rem;
  padding-top: 0.2rem;
  border-top: 1px solid #e5e5e5;
}
.pinfotop .g_data h3 {
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 0.3rem;
}
.pinfotop .g_data .gbox a {
  display: flex;
  align-items: center;
  margin-bottom: 0.1rem;
}
.pinfotop .g_data .gbox a:hover p {
  text-decoration: underline;
}
.pinfotop .g_data .gbox a img {
  width: 14px;
  margin-right: 0.1rem;
}
.pinfobox .pinfobox_nav {
  transition: 0.4s;
  padding: 0.3rem 0;
  background: #fff;
  position: sticky;
  position: -webkit-sticky;
  top: 75px;
  z-index: 100;
  font-weight: bold;
}
@media (max-width: 991px) {
  .pinfobox .pinfobox_nav {
    top: 60px;
  }
}
.pinfobox .pinfobox_nav .container {
  display: flex;
}
.pinfobox .pinfobox_nav .container a {
  cursor: pointer;
  /* transition: all 0.4s; */
  height: 0.6rem;
  border-radius: 0.05rem;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 0.4rem)/5);
  margin-right: 0.1rem;
}
@media (max-width: 767px) {
  .pinfobox .pinfobox_nav .container a {
    font-size: 12px;
  }
}
.pinfobox .pinfobox_nav .container a:last-child {
  margin-right: 0;
}
.pinfobox .pinfobox_nav .container a.on {
  background: var(--color);
  color: #fff;
}
.pinfoon {
  margin: 0.7rem 0 1.1rem;
}
.pinfoon h2 {
  color: #000;
  font-weight: bold;
}
.pinfoon .pinfoon_nav {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.35rem;
  border-bottom: 1px solid #e5e5e5;
}
.pinfoon .pinfoon_nav a {
  cursor: pointer;
  transition: all 0.4s;
  margin-right: 0.6rem;
  font-weight: bold;
  padding-bottom: 0.17rem;
  position: relative;
}
.pinfoon .pinfoon_nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: transparent;
  left: 0;
  bottom: -1px;
  transition: all 0.4s;
}
.pinfoon .pinfoon_nav a.on {
  color: var(--color);
}
.pinfoon .pinfoon_nav a.on::after {
  background: var(--color);
}
.pinfoon .pinfoon_box {
  display: flex;
  justify-content: space-between;
  margin-top: 0.3rem;
}
@media (max-width: 767px) {
  .pinfoon .pinfoon_box {
    flex-direction: column;
  }
}
.pinfoon .pinfoon_box .gl {
  width: 48.92857143%;
}
@media (max-width: 767px) {
  .pinfoon .pinfoon_box .gl {
    width: 100%;
  }
}
.pinfoon .pinfoon_box .gl .item {
  display: none;
}
.pinfoon .pinfoon_box .gl .item.on {
  display: block;
}
.pinfoon .pinfoon_box .gl .item .public-content {
  color: #333;
}
.pinfoon .pinfoon_box .gl .item .public-content table {
  text-align: center;
  border-color: #E5E5E5;
}
.pinfoon .pinfoon_box .gl .item .public-content table th {
  font-weight: bold;
  width: 29.2%;
  background: #f8f8f8;
  padding: 0.2rem 0.2rem;
}
@media (max-width: 767px) {
  .pinfoon .pinfoon_box .gl .item .public-content table th {
    width: auto;
  }
}
.pinfoon .pinfoon_box .gl .item .public-content ul li {
  margin-bottom: 0.1rem;
}
.pinfoon .pinfoon_box .gr {
  width: 48.92857143%;
}
@media (max-width: 767px) {
  .pinfoon .pinfoon_box .gr {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.pinfoon .pinfoon_box .gr .gallery-thumbs .public-img:before {
  padding-top: 56.56167979%;
}
.pinfoon .pinfoon_box .gr .gallery-thumbs .g_qie .pub_prev {
  left: 0.2rem;
}
.pinfoon .pinfoon_box .gr .gallery-thumbs .g_qie .pub_next {
  right: 0.2rem;
}
.pinfoon .pinfoon_box .gr .g_gallery {
  margin-top: 0.29rem;
  display: flex;
  transition: all 0s;
  justify-content: space-between;
}
.pinfoon .pinfoon_box .gr .g_gallery .pub_nav {
  transition: all 0.4s;
  width: 24px;
  height: initial;
  background: #f8f8f8;
  position: initial;
  margin-top: 0;
}
.pinfoon .pinfoon_box .gr .g_gallery .pub_nav:hover {
  background: var(--color);
}
.pinfoon .pinfoon_box .gr .g_gallery .pub_nav:hover svg {
  color: #fff;
}
.pinfoon .pinfoon_box .gr .g_gallery .pub_nav::after {
  display: none;
}
.pinfoon .pinfoon_box .gr .g_gallery .pub_nav svg {
  transition: all 0.4s;
  color: #333;
  width: 5px;
  height: auto;
}
.pinfoon .pinfoon_box .gr .g_gallery .pub_prev svg {
  transform: rotate(180deg);
}
.pinfoon .pinfoon_box .gr .g_gallery .gallery-top {
  width: 100%;
  transition: all 0s;
  margin: 0 0.24rem;
}
.pinfoon .pinfoon_box .gr .g_gallery .gallery-top .swiper-wrapper {
  transition: all 0s;
}
.pinfoon .pinfoon_box .gr .g_gallery .gallery-top .swiper-wrapper .swiper-slide {
  display: block;
  transition: all 0s;
}
.pinfoon .pinfoon_box .gr .g_gallery .gallery-top .public-img {
  width: 100%;
  /* transition: all 0.4s; */
  opacity: 0.5;
  border: 1px solid #e8e9eb;
  transition: all 0s;
}
.pinfoon .pinfoon_box .gr .g_gallery .gallery-top .public-img:before {
  padding-top: 58.57142857%;
}
.pinfoon .pinfoon_box .gr .g_gallery .gallery-top .swiper-slide-thumb-active .public-img {
  opacity: 1;
  border: 1px solid var(--color);
}
.pinfoon .g_b {
  margin-top: 0.26rem;
  display: flex;
  align-items: center;
}
.pinfoon .g_b i {
  margin-right: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.18rem;
  height: auto;
  color: #333;
}
@media (max-width: 1260px) {
  .pinfoon .g_b i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  .pinfoon .g_b i {
    width: 0.26rem;
  }
}
.pinfoon .g_b i svg,
.pinfoon .g_b i img {
  width: 100%;
  height: auto;
}
.pinfoon .g_b i svg path,
.pinfoon .g_b i img path {
  fill: var(--color);
}
.pinfoon .g_b p {
  color: var(--color);
}
.pinfotw {
  margin: 1.1rem 0 1.2rem;
}
.pinfotw .box {
  margin-top: 0.4rem;
}
.pinfotw .box .g_t {
  padding: 0.12rem 0.4rem 0.19rem;
  border: 1px solid #E5E5E5;
  background: #f8f8f8;
}
.pinfotw .box .g_t .layui-form {
  display: flex;
}
.pinfotw .box .g_t .layui-form .layui-input:focus,
.pinfotw .box .g_t .layui-form .layui-textarea:focus {
  border-color: var(--color) !important;
}
.pinfotw .box .g_t .layui-form .layui-input-block {
  margin-left: 0;
  margin-right: 0;
}
.pinfotw .box .g_t .layui-form .layui-form-select {
  width: 160px;
}
@media (max-width: 767px) {
  .pinfotw .box .g_t .layui-form .layui-form-select {
    width: 140px;
  }
}
.pinfotw .box .g_t .layui-form .layui-form-select dl {
  top: 100%;
  bottom: auto;
}
.pinfotw .box .g_t .layui-form .layui-form-select dl dd.layui-this {
  background: var(--color);
  color: #fff;
}
.pinfotw .box .g_t .layui-form .layui-form-select .layui-input {
  height: 32px;
  border-radius: 4px;
  border: 1px solid #cccccc;
  color: #444;
  padding: 0 0.1rem;
}
@media (max-width: 767px) {
  .pinfotw .box .g_t .layui-form .layui-form-select .layui-input {
    height: 0.7rem;
  }
}
.pinfotw .box .g_t .layui-form .layui-form-select .layui-edge {
  right: 0.15rem;
  background: url(../images/b2.svg) no-repeat;
  background-size: contain;
  width: 8px;
  height: 5px;
  border: none;
  margin: 0;
  margin-top: -4px;
}
.pinfotw .box .g_t .layui-form .item {
  margin-right: 0.2rem;
}
.pinfotw .box .g_t .layui-form .item h3 {
  margin-bottom: 0.08rem;
}
.pinfotw .box .g_t .layui-form .item .search_box {
  width: 2.62rem;
  height: 32px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .pinfotw .box .g_t .layui-form .item .search_box {
    height: 0.7rem;
    width: 3rem;
  }
}
.pinfotw .box .g_t .layui-form .item .search_box input {
  padding: 0 0.1rem;
  width: 100%;
  color: #333;
}
.pinfotw .box .g_t .layui-form .item .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.14rem;
  width: 15px;
  height: auto;
}
@media (max-width: 767px) {
  .pinfotw .box .g_t .layui-form .item .search_box button {
    width: 11px;
  }
}
.pinfotw .box .g_t .layui-form .item .search_box button svg {
  color: #7d7d7d;
  width: 100%;
  height: auto;
}
.pinfotw .box .g_t .layui-form .item .search_box button svg path {
  fill: #9a9a9a;
}
.pinfotw .box .g_b .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.24rem 0.5rem 0.24rem 0.4rem;
  border-bottom: 1px solid #E5E5E5;
}
@media (max-width: 767px) {
  .pinfotw .box .g_b .item {
    padding: 0.34rem 0.2rem;
  }
}
.pinfotw .box .g_b .item:hover .gr a,
.pinfotw .box .g_b .item:hover .gr p {
  background: var(--color);
  color: #fff;
}
.pinfotw .box .g_b .item .gl {
  width: 83.96946565%;
  display: flex;
  flex-wrap: wrap;
}
.pinfotw .box .g_b .item .gl .g_tw {
  padding-right: 0.15rem;
  width: 18.18181818%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .pinfotw .box .g_b .item .gl .g_tw {
    /* display: none; */
    width: 36.36363636%;
  }
}
.pinfotw .box .g_b .item .gl .g_tw .imgsm {
  flex-shrink: 0;
  margin-right: 0.09rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pinfotw .box .g_b .item .gl .g_tw .imgsm img,
.pinfotw .box .g_b .item .gl .g_tw .imgsm svg {
  color: #ff5562;
  max-height: 100%;
}
.pinfotw .box .g_b .item .gl .g_tw p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pinfotw .box .g_b .item .gl .g_p {
  width: 62.72727273%;
  padding-right: 0.2rem;
}
.pinfotw .box .g_b .item .gl .g_p p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pinfotw .box .g_b .item .gl .g_time {
  display: flex;
  align-items: center;
  width: 16.36363636%;
}
@media (max-width: 767px) {
  .pinfotw .box .g_b .item .gl .g_time {
    display: none;
  }
}
.pinfotw .box .g_b .item .gr p,
.pinfotw .box .g_b .item .gr a {
  padding: 0.05rem 0.25rem;
  border-radius: 0.05rem;
  background: #f8f8f8;
  transition: all 0.4s;
}
.pinfoth {
  padding: 1.2rem 0;
  background: #fafafa;
}
.pinfoth .box .pinfoth_nav {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.35rem;
  border-bottom: 1px solid #e5e5e5;
}
.pinfoth .box .pinfoth_nav a {
  cursor: pointer;
  transition: all 0.4s;
  margin-right: 0.6rem;
  font-weight: bold;
  padding-bottom: 0.17rem;
  position: relative;
}
.pinfoth .box .pinfoth_nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: transparent;
  left: 0;
  bottom: -1px;
  transition: all 0.4s;
}
.pinfoth .box .pinfoth_nav a.on {
  color: var(--color);
}
.pinfoth .box .pinfoth_nav a.on::after {
  background: var(--color);
}
.pinfoth .box .pinfoth_box {
  margin-top: 0.3rem;
}
.pinfoth .box .pinfoth_box .item {
  display: none;
}
.pinfoth .box .pinfoth_box .item.on {
  display: block;
}
.pinfoth .box .pinfoth_box .item .pinfoth_con {
  background: #fff;
  border-radius: 0.08rem;
  padding: 0.3rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .pinfoth .box .pinfoth_box .item .pinfoth_con {
    flex-direction: column;
  }
}
.pinfoth .box .pinfoth_box .item .pinfoth_con .public-img {
  margin-right: 0.4rem;
  flex-shrink: 0;
  border-radius: 0.08rem;
  width: 17.91044776%;
}
@media (max-width: 767px) {
  .pinfoth .box .pinfoth_box .item .pinfoth_con .public-img {
    width: 50%;
    margin-right: 0;
  }
}
.pinfoth .box .pinfoth_box .item .pinfoth_con .txt {
  width: 57.46268657%;
}
@media (max-width: 767px) {
  .pinfoth .box .pinfoth_box .item .pinfoth_con .txt {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.pinfoth .box .pinfoth_box .item .pinfoth_con .txt .txt_box span {
  color: #999;
}
.pinfoth .box .pinfoth_box .item .pinfoth_con .txt .txt_box h3 {
  margin: 5px 0 0.16rem;
  font-weight: bold;
}
.pinfoth .box .pinfoth_box .item .pinfoth_con .txt .g_zn {
  margin-top: 0.52rem;
}
.pinfoth .box .pinfoth_box .item .pinfoth_con .txt .g_zn p span {
  color: var(--color);
}
.pinfoth .box .pinfoth_box .item table {
  width: 100%;
  text-align: center;
  border-color: #E5E5E5;
}
.pinfoth .box .pinfoth_box .item table th {
  font-weight: bold;
  background: #f8f8f8;
  padding: 0.12rem 0.2rem;
}
.pinfoth .box .pinfoth_box .item table td {
  padding: 0.12rem 0.2rem;
}
.pinfofo {
  margin: 1.2rem 0 1.1rem;
}
.pinfofo .box1 {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .pinfofo .box1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .pinfofo .box1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pinfofo .box1 .item:hover img {
  transform: scale(1.05);
}
.pinfofo .box1 .item .img {
  position: relative;
}
.pinfofo .box1 .item .img .public-img {
  border-radius: 0.08rem;
}
.pinfofo .box1 .item .img .public-img:before {
  padding-top: 58.29596413%;
}
.pinfofo .box1 .item .img .vid_on {
  cursor: pointer;
  z-index: 10;
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pinfofo .box1 .item .img .vid_on .vid_on_box {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: var(--color);
  background: #fff;
}
.pinfofo .box1 .item .img .vid_on .vid_on_box svg {
  margin-left: 0.03rem;
  width: 24%;
  height: auto;
}
.pinfofo .box1 .item .img .vid_on .vid_on_box svg path {
  fill: #fff;
}
.pinfofo .box1 .item .txt {
  margin-top: 0.28rem;
}
.pinfofo .box1 .item .txt h3 {
  font-weight: bold;
}
.pinfofo .box1 .item .txt span {
  display: block;
  margin-top: 0.08rem;
  color: #999;
}
.g_pubfaq {
  margin-top: 0.55rem;
  border-bottom: 1px solid #e5e5e5;
}
.g_pubfaq li {
  border-top: 1px solid #e5e5e5;
}
.g_pubfaq li:first-child .g_xia {
  display: block;
}
.g_pubfaq li.on .g_top .g_gb .i2 {
  transform: translate(-50%, -50%) rotate(0deg);
}
.g_pubfaq li .g_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0;
  position: relative;
  cursor: pointer;
}
.g_pubfaq li .g_top .g_top_l {
  display: flex;
  align-items: center;
  width: 80%;
}
.g_pubfaq li .g_top .g_top_l .g_ico {
  flex-shrink: 0;
  margin-right: 7px;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/pinfo_svg.svg) no-repeat;
  background-size: contain;
  padding: 0 3px 3px 0;
}
.g_pubfaq li .g_top .g_top_l .g_ico span {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}
.g_pubfaq li .g_top .g_top_l p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.g_pubfaq li .g_top .g_gb {
  position: relative;
  transition: 0.4s all;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.2rem;
  width: 0.2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .g_pubfaq li .g_top .g_gb {
    width: 16px;
  }
}
.g_pubfaq li .g_top .g_gb i {
  width: 13px;
  height: 3px;
  background: #000;
  display: block;
  position: absolute;
  transition: all 0.4s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .g_pubfaq li .g_top .g_gb i {
    width: 10px;
    height: 1px;
  }
}
.g_pubfaq li .g_top .g_gb .i2 {
  transform: translate(-50%, -50%) rotate(90deg);
}
.g_pubfaq li .g_xia {
  padding-bottom: 0.25rem;
  display: none;
}
.g_pubfaq li .g_xia .g_bjq {
  color: #666;
  line-height: 1.875;
  padding: 0 1.9rem 0 30px;
}
@media (max-width: 991px) {
  .g_pubfaq li .g_xia .g_bjq {
    padding: 0 0.5rem 0 30px;
  }
}
.pinfofi {
  background: #fafafa;
  padding: 1.2rem 0 1.4rem;
}
@media (max-width: 767px) {
  .pinfofi {
    padding: 1.2rem 0 1rem;
  }
}
.pinfofi .box {
  position: relative;
  margin-top: 0.35rem;
}
@media (max-width: 767px) {
  .pinfofi .box .swiper {
    padding-bottom: 0.9rem;
  }
}
.pinfofi .box .swiper .swiper-slide .item {
  margin-bottom: 0.3rem;
  background: #f8f8f8;
  overflow: hidden;
  border-radius: 0.08rem;
}
@media (max-width: 767px) {
  .pinfofi .box .swiper .swiper-slide .item {
    width: 100% !important;
  }
}
.pinfofi .box .swiper .swiper-slide .item:hover .img::after {
  width: 100%;
}
.pinfofi .box .swiper .swiper-slide .item:hover .txt h3 {
  color: var(--color);
  /* background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 93%, @color1 0%);
								background-size: 100% 100%; */
}
.pinfofi .box .swiper .swiper-slide .item .img {
  position: relative;
}
.pinfofi .box .swiper .swiper-slide .item .img::after {
  content: '';
  position: absolute;
  width: 0;
  height: 5px;
  background: var(--color);
  top: 100%;
  left: 0;
  transition: all 0.4s;
}
.pinfofi .box .swiper .swiper-slide .item .img .public-img:before {
  padding-top: 58.39416058%;
}
.pinfofi .box .swiper .swiper-slide .item .img .g_new {
  position: absolute;
  padding: 4px 9px;
  background: var(--color);
  border-radius: 3px;
  color: #fff;
  left: 0.1rem;
  top: 0.1rem;
  z-index: 10;
  font-size: 12px;
}
.pinfofi .box .swiper .swiper-slide .item .txt {
  background: #fff;
  padding: 0.24rem 0.18rem 0.3rem 0.28rem;
}
.pinfofi .box .swiper .swiper-slide .item .txt > span {
  display: block;
  color: #666;
  margin-bottom: 0.15rem;
}
.pinfofi .box .swiper .swiper-slide .item .txt h3 {
  color: #333;
  font-weight: bold;
  display: inline;
  transition: all 0.4s;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 93%, #333 0%);
  background-size: 0 100%;
  background-repeat: no-repeat;
}
.pinfofi .box .swiper .swiper-slide .item .txt .p1 {
  color: #999;
  margin-top: 0.07rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.pinfofi .box .swiper .swiper-slide .item .txt .p2 {
  margin-top: 0.4rem;
}
.pinfofi .box .swiper .swiper-pagination {
  display: none;
}
@media (max-width: 767px) {
  .pinfofi .box .swiper .swiper-pagination {
    display: block;
  }
}
.g_qie .pub_nav {
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border-radius: 50%;
  border: 1px solid #9c9c9c;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
  cursor: pointer;
  transition: all 0.4s;
}
.g_qie .pub_nav:after {
  display: none;
}
@media (max-width: 991px) {
  .g_qie .pub_nav {
    display: none;
  }
}
.g_qie .pub_nav:hover {
  background: #000;
}
.g_qie .pub_nav:hover svg {
  color: #fff;
}
.g_qie .pub_nav:hover svg path {
  fill: #fff;
}
.g_qie .pub_nav svg {
  color: #000;
  width: 14%;
  height: auto;
}
.g_qie .pub_nav svg path {
  fill: #999;
  opacity: 1;
  transition: all 0.4s;
}
.g_qie .pub_prev {
  left: -0.8rem;
}
@media (max-width: 1260px) {
  .g_qie .pub_prev {
    left: -0.6rem;
  }
}
.g_qie .pub_prev svg {
  transform: rotate(180deg);
}
.g_qie .pub_next {
  right: -0.8rem;
}
@media (max-width: 1260px) {
  .g_qie .pub_next {
    right: -0.6rem;
  }
}
.g_qie.g_qie2 {
  display: flex;
}
.g_qie.g_qie2 .pub_nav {
  position: initial;
  transform: translateY(0%);
  margin-left: 0.17rem;
}
/* 产品一级分类页 */
.poneon .g_t {
  margin: 0.5rem 0 1.15rem;
}
.poneon .g_t .poneon_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .poneon .g_t .poneon_box {
    flex-direction: column;
  }
}
.poneon .g_t .poneon_box .public-img {
  border-radius: 0.08rem;
  width: 48.92857143%;
}
@media (max-width: 767px) {
  .poneon .g_t .poneon_box .public-img {
    width: 100%;
  }
}
.poneon .g_t .poneon_box .public-img:before {
  padding-top: 58.39416058%;
}
.poneon .g_t .poneon_box .txt {
  padding-right: 1.38rem;
  width: 44.14285714%;
}
@media (max-width: 991px) {
  .poneon .g_t .poneon_box .txt {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .poneon .g_t .poneon_box .txt {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.poneon .g_t .poneon_box .txt .txt_box h2 {
  margin-bottom: 0.08rem;
  font-weight: bold;
  line-height: 1.25;
}
.poneon .g_t .poneon_box .txt .txt_box p {
  margin-bottom: 0.3rem;
  line-height: 1.875;
  color: #666;
}
@media (max-width: 767px) {
  .poneon .g_t .poneon_box .txt .txt_box p {
    line-height: 1.5;
  }
}
.poneon .g_t .g_lab {
  margin-top: 0.75rem;
  padding: 0 0.6rem;
  text-align: center;
}
@media (max-width: 991px) {
  .poneon .g_t .g_lab {
    padding: 0;
  }
}
.poneon .g_t .g_lab p {
  line-height: 1.875;
  color: #666;
}
@media (max-width: 767px) {
  .poneon .g_t .g_lab p {
    line-height: 1.5;
  }
}
.poneon .box {
  margin: 1.15rem 0 1.2rem;
}
.poneon .box .gcon {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .poneon .box .gcon {
    grid-template-columns: repeat(1, 1fr);
  }
}
.poneon .box .gcon .item {
  position: relative;
  border-radius: 0.08rem;
  border: 1px solid #e5e5e5;
  padding: 0.26rem 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
}
.poneon .box .gcon .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  border-radius: 0.08rem;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.poneon .box .gcon .item:hover h3 {
  color: var(--color);
}
.poneon .box .gcon .item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.poneon .box .gcon .item h3 {
  position: relative;
  z-index: 10;
  font-weight: bold;
  transition: all 0.4s;
}
.poneon .box .gcon .item i {
  position: relative;
  z-index: 10;
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: auto;
  color: #333;
}
@media (max-width: 1260px) {
  .poneon .box .gcon .item i {
    width: 5px;
  }
}
.poneon .box .gcon .item i svg,
.poneon .box .gcon .item i img {
  width: 100%;
  height: auto;
}
.poneon .box .gcon .item i svg path,
.poneon .box .gcon .item i img path {
  fill: var(--color);
}
.ponetw {
  padding: 1.2rem 0;
  background: #fafafa;
}
.ponetw .box {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .ponetw .box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .ponetw .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ponetw .box .item {
  box-shadow: 0 4px 0.24rem rgba(0, 0, 0, 0.06);
  background: #fff;
  border-radius: 0.08rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.7rem;
  text-align: center;
}
.ponetw .box .item .g_icon {
  width: 0.58rem;
  height: 0.58rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .ponetw .box .item .g_icon {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.ponetw .box .item .txt {
  margin-top: 0.35rem;
}
.ponetw .box .item .txt h3 {
  font-weight: bold;
}
.ponetw .box .item .txt p {
  margin-top: 0.12rem;
  color: #666;
}
.ponetw .box .item .txt span {
  color: #999;
  display: block;
  margin-top: 0.35rem;
}
.poneth {
  margin: 1.25rem 0 1.35rem;
}
.poneth .box .poneth_nav {
  display: flex;
  margin-top: 0.35rem;
  border-bottom: 1px solid #e5e5e5;
  overflow: auto;
}
.poneth .box .poneth_nav::-webkit-scrollbar {
  width: 0;
  display: none;
}
.poneth .box .poneth_nav a {
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.4s;
  margin-right: 0.6rem;
  font-weight: bold;
  padding-bottom: 0.17rem;
  position: relative;
}
.poneth .box .poneth_nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: transparent;
  left: 0;
  bottom: -1px;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .poneth .box .poneth_nav a::after {
    bottom: 0;
    height: 1px;
  }
}
.poneth .box .poneth_nav a.on {
  color: var(--color);
}
.poneth .box .poneth_nav a.on::after {
  background: var(--color);
}
.poneth .box .poneth_box .item {
  display: none;
}
.poneth .box .poneth_box .item.on {
  display: block;
}
.poneth .box .poneth_box .item .poneth_con {
  background: #fff;
  border-radius: 0.08rem;
  padding: 0.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .poneth .box .poneth_box .item .poneth_con {
    flex-direction: column;
  }
}
.poneth .box .poneth_box .item .poneth_con .public-img {
  flex-shrink: 0;
  border-radius: 0.08rem;
  width: 48.92857143%;
}
@media (max-width: 767px) {
  .poneth .box .poneth_box .item .poneth_con .public-img {
    width: 100%;
    margin-right: 0;
  }
}
.poneth .box .poneth_box .item .poneth_con .public-img:before {
  padding-top: 58.39416058%;
}
.poneth .box .poneth_box .item .poneth_con .public-img:hover img {
  transform: scale(1.05);
}
.poneth .box .poneth_box .item .poneth_con .txt {
  width: 48.92857143%;
}
@media (max-width: 767px) {
  .poneth .box .poneth_box .item .poneth_con .txt {
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.poneth .box .poneth_box .item .poneth_con .txt .txt_box {
  padding-right: 1.6rem;
}
@media (max-width: 767px) {
  .poneth .box .poneth_box .item .poneth_con .txt .txt_box {
    padding: 0;
  }
}
.poneth .box .poneth_box .item .poneth_con .txt .txt_box h3 {
  margin: 0 0 0.16rem;
  font-weight: bold;
}
.poneth .box .poneth_box .item .poneth_con .txt .txt_box p {
  color: #666;
}
.poneth .box .poneth_box .item .poneth_con .txt .txt_ys {
  margin-top: 0.46rem;
}
.poneth .box .poneth_box .item .poneth_con .txt .txt_ys h4 {
  font-weight: bold;
}
.poneth .box .poneth_box .item .poneth_con .txt .txt_ys .g_p {
  font-weight: bold;
}
.poneth .box .poneth_box .item .poneth_con .txt .txt_ys .g_p p {
  color: #666;
  margin-top: 0.06rem;
}
.poneth .box .poneth_box .item .poneth_con .txt .txt_ys .g_p p span {
  color: #333;
}
.poneth .g_b {
  border-top: 1px solid #e5e5e5;
  padding-top: 0.26rem;
}
.poneth .g_b h3 {
  font-weight: bold;
}
.poneth .g_b .g_bcon {
  margin-top: 0.24rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .poneth .g_b .g_bcon {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .poneth .g_b .g_bcon {
    grid-template-columns: repeat(1, 1fr);
  }
}
.poneth .g_b .g_bcon .item {
  display: flex;
  align-items: center;
}
.poneth .g_b .g_bcon .item:hover .public-img img {
  transform: scale(1.05);
}
.poneth .g_b .g_bcon .item:hover .txt h4 {
  color: var(--color);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 93%, var(--color) 0%);
  background-size: 100% 100%;
}
.poneth .g_b .g_bcon .item .public-img {
  margin-right: 0.2rem;
  flex-shrink: 0;
  border-radius: 0.08rem;
  width: 42.60089686%;
}
.poneth .g_b .g_bcon .item .public-img:before {
  padding-top: 63.15789474%;
}
.poneth .g_b .g_bcon .item .txt {
  padding-right: 0.3rem;
}
.poneth .g_b .g_bcon .item .txt h4 {
  font-weight: bold;
  display: inline;
  transition: all 0.4s;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 93%, #333 0%);
  background-size: 0 100%;
  background-repeat: no-repeat;
}
.poneth .g_b .g_bcon .item .txt p {
  color: #999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.07rem;
  line-height: 1.42857143;
}
.ponefo {
  margin: 1.35rem 0 1.6rem;
}
.gpub_box1 {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .gpub_box1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .gpub_box1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gpub_box1 .item {
  border-radius: 0.08rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 0.24rem rgba(0, 0, 0, 0.06);
}
.gpub_box1 .item:hover .public-img img {
  transform: scale(1.05);
}
.gpub_box1 .item:hover .txt h3 {
  color: var(--color) !important;
}
.gpub_box1 .item .img {
  position: relative;
}
.gpub_box1 .item .img .public-img:before {
  padding-top: 58.29596413%;
}
.gpub_box1 .item .img .vid_on {
  cursor: pointer;
  z-index: 10;
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gpub_box1 .item .img .vid_on .vid_on_box {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: #fff;
  transition: all 0.4s;
  background: rgba(255, 255, 255, 0.2);
}
.gpub_box1 .item .img .vid_on .vid_on_box:hover {
  color: var(--color);
  background: #fff;
}
.gpub_box1 .item .img .vid_on .vid_on_box svg {
  margin-left: 0.03rem;
  width: 24%;
  height: auto;
}
.gpub_box1 .item .img .vid_on .vid_on_box svg path {
  fill: #fff;
}
.gpub_box1 .item .txt {
  padding: 0.26rem 0.2rem 0.4rem;
}
.gpub_box1 .item .txt h3 {
  font-weight: bold;
  transition: all 0.4s;
}
.gpub_box1 .item .txt span {
  display: block;
  margin-top: 0.08rem;
  color: #999;
}
/* 常见问题 */
.faqon {
  margin: 0.26rem 0 1.2rem;
}
.faqon .g_t {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .faqon .g_t {
    flex-direction: column;
    align-items: flex-start;
  }
}
.faqon .g_t .faqon_nav {
  display: flex;
  overflow: auto;
}
.faqon .g_t .faqon_nav::-webkit-scrollbar {
  width: 0;
  display: none;
}
.faqon .g_t .faqon_nav a {
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.4s;
  margin-right: 0.6rem;
  font-weight: bold;
  padding-bottom: 0.17rem;
  position: relative;
}
@media (max-width: 767px) {
  .faqon .g_t .faqon_nav a {
    margin-right: 0.4rem;
  }
}
.faqon .g_t .faqon_nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: transparent;
  left: 0;
  bottom: -1px;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .faqon .g_t .faqon_nav a::after {
    bottom: 0;
    height: 1px;
  }
}
.faqon .g_t .faqon_nav a.on {
  color: var(--color);
}
.faqon .g_t .faqon_nav a.on::after {
  background: var(--color);
}
.faqon .g_t form {
  display: flex;
  width: 31.25%;
}
@media (max-width: 767px) {
  .faqon .g_t form {
    width: 100%;
    margin-top: 0.3rem;
  }
}
.faqon .g_t .g_sea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eeeeee;
  border-radius: 100px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .faqon .g_t .g_sea {
    border-radius: 20px;
  }
}
.faqon .g_t .g_sea input {
  padding: 0 20px;
  width: 100%;
  height: 60px;
  line-height: 50px;
}
@media (max-width: 1580px) {
  .faqon .g_t .g_sea input {
    height: 50px;
  }
}
@media (max-width: 991px) {
  .faqon .g_t .g_sea input {
    height: 40px;
    line-height: 40px;
  }
}
.faqon .g_t .g_sea button {
  display: flex;
  align-items: center;
  margin-right: 0.3rem;
  float: left;
  color: #333;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .faqon .g_t .g_sea button {
    height: 40px;
  }
}
.faqon .g_t .g_sea button:hover {
  color: var(--color);
}
.faqon .g_t .g_sea button img,
.faqon .g_t .g_sea button svg {
  width: 18px;
  height: auto;
}
@media (max-width: 991px) {
  .faqon .g_t .g_sea button img,
  .faqon .g_t .g_sea button svg {
    width: 14px;
  }
}
.faqon .gpub_box1 {
  margin-top: 0.64rem;
}
.page {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page form {
  display: flex;
  align-items: center;
}
.page a {
  height: 0.5rem;
  width: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.13rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: none;
  border-radius: 50%;
  border: 1px solid #eeeeee;
  color: #000;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page a {
    font-size: 0.28rem;
    height: 0.7rem;
    min-width: 0.7rem;
  }
}
.page a.prev {
  margin: 0 0.08rem;
  border-radius: 0.25rem;
  width: auto;
  padding: 0 0.24rem;
}
.page a.prev img,
.page a.prev svg {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .page a.prev {
    display: none;
  }
}
.page a.next {
  margin: 0 0.08rem;
  border-radius: 0.25rem;
  width: auto;
  padding: 0 0.24rem;
}
@media (max-width: 767px) {
  .page a.next {
    display: none;
  }
}
.page a:hover {
  color: #fff;
  background: var(--color);
  border: 1px solid var(--color);
}
.page a:hover p {
  color: #fff;
}
.page a img,
.page a svg {
  width: 8px;
  height: auto;
}
@media (max-width: 1580px) {
  .page a img,
  .page a svg {
    width: 7px;
  }
}
@media (max-width: 767px) {
  .page a img,
  .page a svg {
    width: 6px;
  }
}
.page a .img2 {
  display: none;
}
.page a svg path {
  fill: #999999;
}
.page .active {
  color: #fff;
  background: var(--color);
  border: 1px solid var(--color);
}
.page .active p {
  color: #fff;
}
.page > p {
  color: #000;
  margin: 0 0.05rem;
}
@media (max-width: 767px) {
  .page > p {
    display: none;
  }
}
.page .p1 {
  margin-left: 0.22rem;
}
@media (max-width: 767px) {
  .page .p2 {
    display: block;
  }
}
.page input {
  border-radius: 50%;
  margin: 0 0.1rem;
  border: 1px solid #eeeeee;
  width: 0.5rem;
  height: 0.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .page input {
    display: none;
  }
}
.faqtw {
  margin: 1.2rem 0 1.6rem;
}
.faqtw .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .faqtw .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.faqtw .box .item {
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
}
.faqtw .box .item .public-img:before {
  padding-top: 46.37681159%;
}
@media (max-width: 767px) {
  .faqtw .box .item .public-img:before {
    padding-top: 66%;
  }
}
.faqtw .box .item .gcon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0.4rem;
  color: #fff;
}
.faqtw .box .item .gcon .txt {
  margin-bottom: 0.36rem;
}
.faqtw .box .item .gcon .txt h3 {
  margin-bottom: 0.1rem;
}
.faqtw .box .item .gcon .public-btn {
  flex-shrink: 0;
}
/* 技术支持-资源中心 */
/* 加入我们 */
.joinon .item {
  padding: 1rem 0;
}
@media (max-width: 767px) {
  .joinon .item {
    padding: 0.6rem 0;
  }
}
.joinon .item:nth-child(2n) {
  background: #fafafa;
}
.joinon .item:nth-child(2n) .container {
  flex-direction: row-reverse;
}
.joinon .item:nth-child(2n) .container .gl {
  padding-right: 0.6rem;
}
.joinon .item .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .joinon .item .container {
    flex-direction: column-reverse !important;
  }
}
.joinon .item .container .gl {
  width: 39.28571429%;
}
@media (max-width: 767px) {
  .joinon .item .container .gl {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0 !important;
  }
}
.joinon .item .container .gl h3 {
  color: #333;
  font-weight: bold;
}
.joinon .item .container .gl p {
  margin-top: 0.28rem;
  line-height: 1.875;
  color: #666;
}
@media (max-width: 767px) {
  .joinon .item .container .gl p {
    margin-top: 0.1rem;
  }
}
.joinon .item .container .gr {
  width: 50%;
}
@media (max-width: 767px) {
  .joinon .item .container .gr {
    width: 100%;
  }
}
.joinon .item .container .gr .public-img {
  border-radius: 0.08rem;
}
.joinon .item .container .gr .public-img:before {
  padding-top: 70%;
}
.jointw {
  margin: 1.18rem 0 1.2rem;
}
.jointw .box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.55rem;
}
.jointw .box .item {
  position: relative;
}
@media (max-width: 767px) {
  .jointw .box .item {
    width: 100% !important;
  }
}
.jointw .box .item .public-img {
  width: 100%;
}
@media (max-width: 767px) {
  .jointw .box .item .public-img:before {
    padding-top: 60% !important;
  }
}
.jointw .box .item .txt {
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0.32rem 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.jointw .box .item .txt h3 {
  margin-bottom: 6px;
}
.jointw .box .item .txt p {
  display: none;
  width: 6.6rem;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.875;
  overflow: auto;
  max-height: calc((30/16)*4em);
}
@media (max-width: 767px) {
  .jointw .box .item .txt p {
    display: block;
  }
}
.jointw .box .item1 {
  width: 66.66666667%;
}
.jointw .box .item1 .public-img:before {
  padding-top: 28.125%;
}
.jointw .box .item2 {
  width: 33.33333333%;
}
.jointw .box .item2 .public-img:before {
  padding-top: 56.25%;
}
.jointw .box .item3 {
  width: 23.95833333%;
}
.jointw .box .item3 .public-img:before {
  padding-top: 78.26086957%;
}
.jointw .box .item4 {
  width: 52.08333333%;
}
.jointw .box .item4 .public-img:before {
  padding-top: 36%;
}
.jointh {
  margin: 1.2rem 0 1.4rem;
}
.jointh .box {
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.jointh .box .public-img {
  height: 100%;
  width: 100%;
}
.jointh .box .public-img:before {
  padding-top: 35.71428571%;
}
@media (max-width: 767px) {
  .jointh .box .public-img:before {
    padding-top: 70%;
  }
}
.jointh .box .txt {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.jointh .box .txt .pub_title h2 {
  color: #fff;
}
.jointh .box .txt .pub_title p {
  color: #fff;
}
.jointh .box .txt .public-btn {
  margin-top: 0.4rem;
}
/* 联系我们 */
.conon .box {
  display: flex;
  justify-content: space-between;
  margin: 0.26rem 0 1.4rem;
}
@media (max-width: 767px) {
  .conon .box {
    flex-direction: column;
  }
}
.conon .box .gl {
  padding-bottom: 2.1rem;
  width: 48.21428571%;
}
@media (max-width: 767px) {
  .conon .box .gl {
    padding-bottom: 0.8rem;
    width: 100%;
  }
}
.conon .box .gl .g_t h2 {
  font-weight: bold;
  padding-bottom: 0.4rem;
  margin-bottom: 0.24rem;
  border-bottom: 1px solid #e7e7e7;
}
.conon .box .gl .g_t .p1 {
  color: #666;
  margin-bottom: 0.05rem;
}
.conon .box .gl .g_t .g_p1 {
  margin-bottom: 0.35rem;
}
.conon .box .gl .g_t .g_p1 .p2 {
  font-weight: bold;
  color: #ff0000;
  line-height: 1;
}
.conon .box .gl .g_t .g_p2 {
  margin-bottom: 0.35rem;
}
.conon .box .gl .g_t .g_p2 .p2 {
  font-weight: bold;
}
.conon .box .gl .g_t .g_p3 {
  margin-bottom: 0.35rem;
}
.conon .box .gl .g_t .g_p3 .p2 {
  margin-bottom: 0.05rem;
  font-weight: bold;
}
.conon .box .gl .g_t .g_p3 .p3 {
  color: #999;
  font-weight: bold;
}
.conon .box .gl .g_b {
  padding-top: 0.45rem;
  border-top: 1px solid #e7e7e7;
}
.conon .box .gl .g_b h2 {
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.conon .box .gl .g_b .gico {
  display: flex;
}
.conon .box .gl .g_b .gico .ico_it {
  position: relative;
  margin: 0 0.2rem 0 0;
}
.conon .box .gl .g_b .gico .ico_it:hover .img {
  background: var(--color);
  opacity: 1;
}
.conon .box .gl .g_b .gico .ico_it:hover .img svg {
  color: #fff;
}
.conon .box .gl .g_b .gico .ico_it:hover .img svg path {
  fill: #fff;
}
.conon .box .gl .g_b .gico .ico_it:hover .hovbox {
  opacity: 1;
  pointer-events: initial;
}
.conon .box .gl .g_b .gico .ico_it .img {
  transition: all 0.4s;
  width: 0.42rem;
  height: 0.42rem;
  padding: 0;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1260px) {
  .conon .box .gl .g_b .gico .ico_it .img {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media (max-width: 767px) {
  .conon .box .gl .g_b .gico .ico_it .img {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.conon .box .gl .g_b .gico .ico_it .img svg {
  transition: all 0.4s;
  color: #999;
  width: calc(25/42*100%);
  height: auto;
  pointer-events: none;
}
.conon .box .gl .g_b .gico .ico_it .img svg path {
  fill: #fff;
  opacity: 1;
}
.conon .box .gl .g_b .gico .ico_it .hovbox {
  position: absolute;
  top: calc(100% + 11px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .conon .box .gl .g_b .gico .ico_it .hovbox {
    left: 0;
    top: 110%;
    transform: translateX(0%);
    background: #fff;
  }
}
.conon .box .gl .g_b .gico .ico_it .hovbox .g_ewm {
  background: #fff url(../images/contact3.png) no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1.61rem;
  padding: 0.19rem;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .conon .box .gl .g_b .gico .ico_it .hovbox .g_ewm {
    background: #fff;
    padding: 0;
    width: 1.8rem;
    height: 1.8rem;
  }
}
.conon .box .gl .g_b .gico .ico_it .hovbox .g_ewm img {
  width: 100%;
  height: auto;
}
.conon .box .gl .g_b .gico .ico_it .hovbox h4 {
  font-weight: bold;
  margin-top: 0.16rem;
  text-align: center;
}
@media (max-width: 767px) {
  .conon .box .gl .g_b .gico .ico_it .hovbox h4 {
    font-size: 10px;
    padding-bottom: 0.15rem;
  }
}
.conon .box .gr {
  width: 48.21428571%;
}
@media (max-width: 767px) {
  .conon .box .gr {
    width: 100%;
  }
}
.conon .box .gr h2 {
  font-weight: bold;
  padding-bottom: 0.4rem;
  margin-bottom: 0.24rem;
  border-bottom: 1px solid #e7e7e7;
}
.conon .box .gr form {
  /* 下拉 */
}
.conon .box .gr form .inp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .conon .box .gr form .inp {
    flex-direction: column;
  }
}
.conon .box .gr form .inp .inp_box {
  width: calc(50% - 0.1rem);
  margin-bottom: 0.26rem;
}
@media (max-width: 767px) {
  .conon .box .gr form .inp .inp_box {
    width: 100% !important;
    margin-bottom: 0.4rem;
  }
}
.conon .box .gr form .inp .inp_box .inp_txt {
  margin-bottom: 0.1rem;
}
.conon .box .gr form .inp .inp_box .inp_txt p {
  color: #333;
  font-weight: bold;
}
.conon .box .gr form .inp .inp_box .inp_txt p span {
  color: var(--color);
}
.conon .box .gr form .inp .inp_box input {
  padding: 0 0.2rem;
  width: 100%;
  height: 0.58rem;
  border: 1px solid #eeeeee;
  border-radius: 0.05rem;
}
@media (max-width: 767px) {
  .conon .box .gr form .inp .inp_box input {
    height: 0.8rem;
  }
}
.conon .box .gr form .inp .inp_box .sot_select_nr .sel_text_x {
  height: 0.5rem;
}
@media (max-width: 767px) {
  .conon .box .gr form .inp .inp_box .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.conon .box .gr form .inp2 .inp_box {
  width: 100%;
}
.conon .box .gr form .inptext .inp_box .inptext_box {
  position: relative;
  border: 1px solid #eeeeee;
  border-radius: 0.05rem;
  width: 100%;
  height: 1.6rem;
  padding: 0.13rem 0.18rem;
}
@media (max-width: 767px) {
  .conon .box .gr form .inptext .inp_box .inptext_box {
    height: 2.2rem;
  }
}
.conon .box .gr form .inptext .inp_box .inptext_box textarea {
  width: 100%;
  height: 100%;
}
.conon .box .gr form .inptext .inp_box .inptext_box .gsvg {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .conon .box .gr form .inptext .inp_box .inptext_box .gsvg {
    width: 14px;
    height: 14px;
  }
}
.conon .box .gr form .inptext .inp_box .inptext_box .g_num {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 0.05rem;
  right: 0.15rem;
}
.conon .box .gr form .inptext .inp_box .inptext_box .g_num .p1 {
  color: var(--color);
}
.conon .box .gr form .inptext .inp_box .inptext_box .g_num .p2 {
  color: #999;
}
.conon .box .gr form .g_lab {
  margin-top: -0.05rem;
  color: #999999;
}
.conon .box .gr form .g_lab label {
  display: flex;
}
.conon .box .gr form .g_lab label.on i {
  border-color: var(--color);
  background: var(--color);
}
.conon .box .gr form .g_lab label.on i svg,
.conon .box .gr form .g_lab label.on i img {
  color: #fff;
  opacity: 1;
}
.conon .box .gr form .g_lab i {
  margin-top: 3px;
  flex-shrink: 0;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  color: transparent;
  margin-right: 0.05rem;
}
@media (max-width: 1580px) {
  .conon .box .gr form .g_lab i {
    width: 14px;
    height: 14px;
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  .conon .box .gr form .g_lab i {
    margin-top: 2px;
  }
}
.conon .box .gr form .g_lab i svg,
.conon .box .gr form .g_lab i img {
  opacity: 0;
  width: 8px;
  height: auto;
}
.conon .box .gr form .g_lab i svg path,
.conon .box .gr form .g_lab i img path {
  filter: none;
}
@media (max-width: 1580px) {
  .conon .box .gr form .g_lab br {
    display: none;
  }
}
.conon .box .gr form .g_lab a {
  color: var(--color);
  text-decoration: underline;
}
.conon .box .gr form .pub_btn {
  width: 100%;
  border-radius: 5px;
  background: var(--color);
  margin-top: 0.32rem;
  height: 0.58rem;
  padding: 0 0.65rem;
}
@media (max-width: 767px) {
  .conon .box .gr form .pub_btn {
    height: 0.8rem;
  }
}
.conon .box .gr form .pub_btn p {
  color: #fff;
}
.conon .box .gr form .pub_btn:hover {
  opacity: 0.8;
}
.conon .box .gr form .layui-input:focus,
.conon .box .gr form .layui-textarea:focus {
  border-color: var(--color) !important;
}
.conon .box .gr form .layui-input-block {
  margin-left: 0;
  margin-right: 0;
}
.conon .box .gr form .layui-form-select dl {
  top: 100%;
  bottom: auto;
  padding: 0;
}
.conon .box .gr form .layui-form-select dl dd.layui-this {
  background: var(--color);
  color: #fff;
}
.conon .box .gr form .layui-form-select .layui-input {
  height: 0.5rem;
  border: 1px solid #cccccc;
  color: #444;
  padding: 0 0.2rem;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .conon .box .gr form .layui-form-select .layui-input {
    height: 0.8rem;
  }
}
.conon .box .gr form .layui-form-select .layui-edge {
  right: 0.24rem;
  background: url(../images/b3.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 7px;
  border: none;
  margin: 0;
  margin-top: -4px;
}
.afton {
  padding: 0.42rem 0 1.2rem;
  background: #fff;
}
.afton .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .afton .box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .afton .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.afttw {
  padding: 1.2rem 0 1.4rem;
}
.afttw .box {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 20px;
  justify-content: center;
}
@media (max-width: 991px) {
  .afttw .box {
    grid-template-columns: repeat(2, max-content);
  }
}
@media (max-width: 767px) {
  .afttw .box {
    grid-template-columns: repeat(1, max-content);
  }
}
.afttw .box .item {
  box-shadow: none;
  padding: 0.5rem 0.4rem;
}
/* 新闻动态 */
.newson {
  margin: 0.5rem 0 0.8rem;
}
.newson .container {
  position: relative;
}
.newson .swiper .newson_box {
  border-radius: 0.08rem;
  overflow: hidden;
  display: flex;
}
@media (max-width: 767px) {
  .newson .swiper .newson_box {
    flex-direction: column;
  }
}
.newson .swiper .newson_box .gl {
  width: 50%;
}
@media (max-width: 767px) {
  .newson .swiper .newson_box .gl {
    width: 100%;
  }
}
.newson .swiper .newson_box .gl .public-img:before {
  padding-top: 68.57142857%;
}
.newson .swiper .newson_box .gr {
  width: 50%;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.3rem 0.6rem;
}
@media (max-width: 767px) {
  .newson .swiper .newson_box .gr {
    width: 100%;
    padding: 0.4rem;
  }
}
.newson .swiper .newson_box .gr .txt h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 0.2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .newson .swiper .newson_box .gr .txt h3 {
    font-size: 18px;
  }
}
.newson .swiper .newson_box .gr .txt p {
  color: #999;
}
.newson .swiper .newson_box .gr .public-btn {
  margin-top: 0.56rem;
}
.gpub_lab {
  margin: 0.3rem 0 0;
  display: flex;
}
.gpub_lab p {
  flex-shrink: 0;
  margin-top: 3px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .gpub_lab p {
    margin-top: 0;
  }
}
.gpub_lab .gpub_lab_a {
  display: flex;
  flex-wrap: wrap;
}
.gpub_lab .gpub_lab_a a {
  margin-right: 0.1rem;
  margin-bottom: 0.1rem;
  background: #f8f8f8;
  padding: 3px 13px;
  border-radius: 0.05rem;
  transition: all 0.4s;
}
.gpub_lab .gpub_lab_a a:hover {
  color: var(--color);
}
.ntagon {
  margin: 0.5rem 0 1.6rem;
}
/* 新闻动态-详情 */
.ninfo_cru .container {
  padding: 0 0.7rem;
}
@media (max-width: 1260px) {
  .ninfo_cru .container {
    padding: 0;
  }
}
.ninfo {
  margin: 0.55rem 0 1.5rem;
}
.ninfo .container {
  padding: 0 0.7rem;
}
@media (max-width: 1260px) {
  .ninfo .container {
    padding: 0;
  }
}
.ninfo .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .ninfo .box {
    flex-direction: column;
  }
}
.ninfo .box .gl {
  width: 65.87301587%;
}
@media (max-width: 767px) {
  .ninfo .box .gl {
    width: 100%;
  }
}
.ninfo .box .gl h1 {
  font-weight: bold;
  padding-right: 0.4rem;
}
.ninfo .box .gl .g_lab {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  color: #999;
}
.ninfo .box .gl .g_lab p {
  margin-right: 0.54rem;
}
.ninfo .box .gl .public-content {
  margin-top: 0.36rem;
}
.ninfo .box .gl .g_fy {
  margin-top: 0.5rem;
  padding-top: 0.4rem;
  border-top: 1px solid #e7e7e7;
}
.ninfo .box .gl .g_fy .g_it {
  display: flex;
  align-items: center;
  margin: 0.07rem 0;
}
.ninfo .box .gl .g_fy .g_it a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.4s;
}
.ninfo .box .gl .g_fy .g_it a:hover {
  color: var(--color);
  text-decoration: underline;
}
.ninfo .box .gl .g_fy .g_it p {
  flex-shrink: 0;
}
.ninfo .box .gr {
  border-radius: 4px;
  width: 27.3015873%;
  position: sticky;
  position: -webkit-sticky;
  top: 90px;
  padding: 0.28rem 0.3rem 0.35rem 0.22rem;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .ninfo .box .gr {
    width: 100%;
    margin-top: 1rem;
  }
}
.ninfo .box .gr h2 {
  font-weight: bold;
  padding-bottom: 0.16rem;
  border-bottom: 1px dashed #e5e5e5;
}
.ninfo .box .gr .r_more .g_a {
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .ninfo .box .gr .r_more .g_a {
    margin-top: 0.4rem;
  }
}
.ninfo .box .gr .r_more .g_a:hover .public-img img {
  transform: scale(1.05);
}
.ninfo .box .gr .r_more .g_a:hover h3 {
  color: var(--color);
  text-decoration: underline;
}
.ninfo .box .gr .r_more .g_a .public-img {
  margin-right: 0.14rem;
  flex-shrink: 0;
  border-radius: 0.04rem;
  width: calc(94/292*100%);
}
.ninfo .box .gr .r_more .g_a .public-img:before {
  padding-top: 62.76595745%;
}
.ninfo .box .gr .r_more .g_a .txt h3 {
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: all 0.4s;
}
.ninfo .box .gr .r_more .g_a .txt span {
  line-height: 1;
  margin-top: 0.05rem;
  color: #888;
  display: block;
}
/* 走进联研国芯 */
.enter {
  position: relative;
}
.enter .enter_nav {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}
.enter .enter_nav .enter_nav_box {
  position: sticky;
  position: -webkit-sticky;
  top: 90px;
  z-index: 100;
  padding: 0 0.2rem 0.5rem;
}
.enter .enter_nav .enter_nav_box .enter_nav_it {
  cursor: pointer;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1260px) {
  .enter .enter_nav .enter_nav_box .enter_nav_it {
    display: none;
  }
}
.enter .enter_nav .enter_nav_box .enter_nav_it.on i {
  border-color: var(--color);
}
.enter .enter_nav .enter_nav_box .enter_nav_it.on p {
  background: var(--color);
}
.enter .enter_nav .enter_nav_box .enter_nav_it i {
  margin-right: 0.08rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  border: 1px solid #3d3d3d;
}
.enter .enter_nav .enter_nav_box .enter_nav_it p {
  color: #fff;
  padding: 1px 0.17rem;
  border-radius: 100px;
  background: #b8b8b8;
}
.enton {
  padding: 0.4rem 0 0;
}
.enton .box {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .enton .box {
    flex-direction: column-reverse;
  }
}
.enton .box .gl {
  width: 39.28571429%;
}
@media (max-width: 991px) {
  .enton .box .gl {
    width: 100%;
  }
}
.enton .box .gl .item {
  padding: 0.34rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.enton .box .gl .item:last-child {
  border: none;
}
.enton .box .gl .item .tit {
  margin-bottom: 0.13rem;
  display: flex;
  align-items: center;
}
.enton .box .gl .item .tit img {
  width: 0.25rem;
  height: auto;
  margin-right: 10px;
}
@media (max-width: 991px) {
  .enton .box .gl .item .tit img {
    width: 0.4rem;
  }
}
.enton .box .gl .item .tit h3 {
  font-weight: bold;
}
.enton .box .gl .item .txt p {
  line-height: 1.875;
  color: #666;
}
.enton .box .gr {
  width: 50%;
}
@media (max-width: 991px) {
  .enton .box .gr {
    width: 100%;
  }
}
.enton .box .gr img {
  width: 100%;
  border-radius: 0.08rem;
}
.enttw {
  padding: 1.4rem 0 1.22rem;
}
.enttw .box {
  position: relative;
}
.enttw .box .public-img {
  border-radius: 0.08rem;
}
.enttw .box .public-img:before {
  padding-top: 40%;
}
@media (max-width: 767px) {
  .enttw .box .public-img:before {
    padding-top: 90%;
  }
}
.enttw .box .gcon {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
  top: 0;
  left: 0;
  padding-top: 0.4rem;
}
@media (max-width: 767px) {
  .enttw .box .gcon {
    padding: 0.5rem 0.4rem;
  }
}
.enttw .box .gcon .pub_title h2 {
  color: #fff;
}
.enttw .box .gcon .pub_title p {
  color: #fff;
}
.enttw .box .gcon .public-btn {
  margin-top: 0.47rem;
}
.entth {
  background: #fafafa;
  padding: 1.2rem 0;
}
.entth .box {
  margin-top: 0.52rem;
  display: flex;
}
@media (max-width: 767px) {
  .entth .box {
    flex-direction: column;
  }
}
.entth .box .item {
  width: 50%;
  height: 6rem;
  position: relative;
  border-radius: 0.08rem;
  overflow: hidden;
  margin-right: 0.2rem;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .entth .box .item {
    height: 8rem;
  }
}
@media (max-width: 991px) {
  .entth .box .item {
    height: 6rem;
  }
}
@media (max-width: 767px) {
  .entth .box .item {
    width: 100% !important;
    margin-bottom: 0.4rem;
  }
}
.entth .box .item:last-child {
  margin-right: 0;
}
.entth .box .item.on {
  width: 65.71428571%;
  flex-shrink: 0;
}
.entth .box .item.on .txt .gxs {
  opacity: 0;
}
.entth .box .item.on .txt .gyr {
  opacity: 1;
}
.entth .box .item.on .txt .gyr .txt_box {
  opacity: 1;
}
.entth .box .item .img {
  width: 100%;
  height: 100%;
}
.entth .box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.entth .box .item .txt {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/enter12.png) no-repeat;
  background-size: 100% auto;
  background-position: bottom center ;
  display: flex;
  align-items: flex-end;
}
.entth .box .item .txt .gxs {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  background: rgba(2, 54, 130, 0.3);
  padding: 0.6rem 0.4rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .entth .box .item .txt .gxs {
    padding: 0.5rem 0.18rem;
  }
}
@media (max-width: 767px) {
  .entth .box .item .txt .gxs {
    display: none;
  }
}
.entth .box .item .txt .gxs h3 {
  line-height: 1.3;
  text-align: center;
}
.entth .box .item .txt .gyr {
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0.56rem 0.28rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .entth .box .item .txt .gyr {
    padding: 0.5rem 0.18rem;
  }
}
@media (max-width: 767px) {
  .entth .box .item .txt .gyr {
    padding: 0.5rem 0.4rem;
  }
}
@media (max-width: 767px) {
  .entth .box .item .txt .gyr {
    opacity: 1;
  }
}
.entth .box .item .txt .gyr i {
  margin-bottom: 0.34rem;
  flex-shrink: 0;
  display: flex;
  width: 0.3rem;
  height: auto;
}
.entth .box .item .txt .gyr i svg,
.entth .box .item .txt .gyr i img {
  width: 100%;
  height: auto;
}
.entth .box .item .txt .gyr i svg path,
.entth .box .item .txt .gyr i img path {
  fill: #fff;
}
.entth .box .item .txt .gyr .txt_box {
  transition: all 0.4s;
  opacity: 0;
  transition-delay: 0.4s;
}
@media (max-width: 767px) {
  .entth .box .item .txt .gyr .txt_box {
    opacity: 1;
  }
}
.entth .box .item .txt .gyr .txt_box h3 {
  margin-bottom: 0.12rem;
}
.entfo {
  color: #fff;
  position: relative;
}
.entfo .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.entfo .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.entfo .box {
  position: relative;
  z-index: 10;
  padding: 1.55rem 0 1.05rem;
}
.entfo .box .gcon {
  margin-top: 0.74rem;
  display: flex;
  justify-content: center;
}
.entfo .box .gcon .item {
  border-radius: 0.08rem;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-height: 2rem;
  width: 21.42857143%;
  padding: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1260px) {
  .entfo .box .gcon .item {
    min-height: 3rem;
    width: 35.71428571%;
  }
}
@media (max-width: 767px) {
  .entfo .box .gcon .item {
    width: 45%;
  }
}
.entfo .box .gcon .item p {
  margin-top: 0.12rem;
  text-align: center;
}
.entfi {
  background: #fafafa;
  padding: 1.2rem 0 1rem;
}
.entfi .box {
  margin-top: 0.56rem;
}
.entfi .box .g_t {
  position: relative;
}
.entfi .box .gallery-thumbs .swiper-slide .thumbs_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .entfi .box .gallery-thumbs .swiper-slide .thumbs_box {
    flex-direction: column;
  }
}
.entfi .box .gallery-thumbs .swiper-slide .thumbs_box .public-img {
  border-radius: 0.08rem;
  width: 50%;
}
@media (max-width: 767px) {
  .entfi .box .gallery-thumbs .swiper-slide .thumbs_box .public-img {
    width: 100%;
  }
}
.entfi .box .gallery-thumbs .swiper-slide .thumbs_box .public-img:before {
  padding-top: 63.1276901%;
}
.entfi .box .gallery-thumbs .swiper-slide .thumbs_box .txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .entfi .box .gallery-thumbs .swiper-slide .thumbs_box .txt {
    width: 100%;
    padding: 0.6rem 0 0;
  }
}
.entfi .box .gallery-thumbs .swiper-slide .thumbs_box .txt .year {
  display: flex;
  color: rgba(0, 0, 0, 0.2);
  line-height: 1.1;
}
.entfi .box .gallery-thumbs .swiper-slide .thumbs_box .txt h3 {
  font-weight: bold;
  margin-top: 0.26rem;
}
.entfi .box .gallery-thumbs .swiper-slide .thumbs_box .txt p {
  margin-top: 0.1rem;
  line-height: 1.875;
  color: #666;
}
@media (max-width: 767px) {
  .entfi .box .gallery-thumbs .swiper-slide .thumbs_box .txt p {
    line-height: 1.5;
  }
}
.entfi .box .gallery-top {
  padding: 0.7rem 0;
  position: relative;
}
.entfi .box .gallery-top::after {
  content: '';
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: 1px solid #e1e1e1;
}
.entfi .box .gallery-top .swiper-slide .gallery_box {
  cursor: pointer;
  position: relative;
}
.entfi .box .gallery-top .swiper-slide .gallery_box .g_i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.entfi .box .gallery-top .swiper-slide .gallery_box .g_i .i1 {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #999;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: all 0.4s;
}
.entfi .box .gallery-top .swiper-slide .gallery_box .g_i .i2 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color);
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s;
}
.entfi .box .gallery-top .swiper-slide .gallery_box p {
  position: absolute;
  top: 0.28rem;
  left: 50%;
  transform: translateX(-50%);
  color: #999;
  transition: all 0.4s;
}
.entfi .box .gallery-top .swiper-slide-thumb-active .gallery_box .g_i .i1 {
  background: var(--color);
}
.entfi .box .gallery-top .swiper-slide-thumb-active .gallery_box .g_i .i2 {
  opacity: 0.2;
  transform: translate(-50%, -50%) scale(2);
}
.entfi .box .gallery-top .swiper-slide-thumb-active .gallery_box p {
  color: #000;
  transform: translateX(-50%) scale(1.2);
}
.entsi {
  padding: 1.2rem 0 1.6rem;
}
.entsi .box .entsi_nav {
  border-bottom: 1px solid #e5e5e5;
  margin-top: 0.35rem;
  text-align: center;
  display: flex;
  justify-content: center;
}
.entsi .box .entsi_nav a {
  transition: all 0.4s;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  padding-bottom: 0.18rem;
  margin: 0 0.29rem;
  position: relative;
}
.entsi .box .entsi_nav a.on {
  color: var(--color);
}
.entsi .box .entsi_nav a.on::after {
  opacity: 1;
}
.entsi .box .entsi_nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--color);
  left: 0;
  bottom: -1px;
  opacity: 0;
  transition: all 0.4s;
}
.entsi .box .gcon {
  margin-top: 0.3rem;
}
.entsi .box .gcon .entsi_it {
  display: none;
}
.entsi .box .gcon .entsi_it.on {
  display: block;
}
.entsi .box .gcon .entsi_it .entsi_con {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .entsi .box .gcon .entsi_it .entsi_con {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .entsi .box .gcon .entsi_it .entsi_con {
    grid-template-columns: repeat(2, 1fr);
  }
}
.entsi .box .gcon .entsi_it .entsi_con .item .public-img {
  width: 100%;
  background: #f8f8f8;
}
.entsi .box .gcon .entsi_it .entsi_con .item .public-img:before {
  padding-top: 119.40298507%;
}
.entsi .box .gcon .entsi_it .entsi_con .item .txt {
  text-align: center;
  margin-top: 0.28rem;
}
.entsi .box .gcon .entsi_it .entsi_con .item .txt h3 {
  font-weight: bold;
}
@media (max-width: 767px) {
  .entsi .box .gcon .entsi_it .entsi_con .item .txt h3 {
    font-size: 14px;
  }
}
/* 为什么选择联研国芯 */
.whyon {
  background: #fff;
  padding: 0.42rem 0 1.2rem;
}
.whyon .g_pt {
  margin-bottom: 0.88rem;
  padding: 0 2rem;
  text-align: center;
}
@media (max-width: 1260px) {
  .whyon .g_pt {
    padding: 0;
  }
}
.whyon .g_pt p {
  line-height: 1.55555556;
}
@media (max-width: 767px) {
  .whyon .g_pt p {
    font-size: 14px;
  }
}
.whyon .box .item .txt {
  /* background: none; */
}
.whyon .box .item .txt .gyr {
  padding: 0.35rem 0.3rem;
}
.whyon .box .item .txt .gxs {
  padding: 0.35rem 0.3rem;
}
@media (max-width: 1260px) {
  .whyon .box .item .txt .gxs h3 br {
    display: none;
  }
}
.whytw {
  background: #f5f5f5;
  padding: 1rem 0 0.65rem;
}
.whytw .box {
  margin-top: 0.56rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.whytw .box .gl {
  border: 1px solid #dedede;
  width: 19.28571429%;
}
@media (max-width: 767px) {
  .whytw .box .gl {
    width: 20%;
  }
}
.whytw .box .gl .gnav {
  cursor: pointer;
  transition: all 0.4s;
  padding: 0 0.25rem;
}
@media (max-width: 767px) {
  .whytw .box .gl .gnav {
    padding: 0 0.1rem;
  }
}
.whytw .box .gl .gnav:hover p {
  color: var(--color);
}
.whytw .box .gl .gnav.on {
  background: var(--color);
}
.whytw .box .gl .gnav.on p {
  color: #fff;
  border-color: var(--color);
}
.whytw .box .gl .gnav:last-child p {
  border: none;
}
.whytw .box .gl .gnav p {
  transition: all 0.4s;
  border-bottom: 1px solid #dedede;
  padding: 0.1rem 0;
  min-height: 0.76rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .whytw .box .gl .gnav p {
    font-size: 10px;
  }
}
.whytw .box .gr {
  position: relative;
  width: 75%;
}
@media (max-width: 767px) {
  .whytw .box .gr {
    width: 77%;
  }
}
.whytw .box .gr .item {
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
}
.whytw .box .gr .item.on {
  position: relative;
  opacity: 1;
}
.whytw .box .gr .item .img {
  display: flex;
  flex-wrap: wrap;
}
.whytw .box .gr .item .img img {
  border-radius: 0.08rem;
  margin-right: 0.17rem;
}
.whytw .box .gr .item .img img:last-child {
  margin-right: 0;
}
.whytw .box .gr .item .txt {
  margin-top: 0.7rem;
}
.whytw .box .gr .item .txt h3 {
  font-weight: bold;
}
.whytw .box .gr .item .txt .g_p {
  margin-top: 0.2rem;
}
.whytw .box .gr .item .txt .g_p p {
  color: #666;
  margin-bottom: 0.1rem;
  display: block;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .whytw .box .gr .item .txt .g_p p {
    font-size: 12px;
    padding-left: 10px;
  }
}
.whytw .box .gr .item .txt .g_p p:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 9px;
}
@media (max-width: 1580px) {
  .whytw .box .gr .item .txt .g_p p:after {
    top: 8px;
    width: 5px;
    height: 5px;
  }
}
@media (max-width: 767px) {
  .whytw .box .gr .item .txt .g_p p:after {
    top: 6px;
  }
}
.whyth {
  background: #fafafa;
  padding: 1.2rem 0 1.1rem;
}
.whyth .box {
  margin-top: 0.4rem;
}
.whyth .box .item {
  margin-bottom: 0.3rem;
  border-radius: 0.08rem;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
.whyth .box .item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .whyth .box .item {
    flex-direction: column !important;
  }
}
.whyth .box .item .public-img {
  width: 50%;
}
@media (max-width: 767px) {
  .whyth .box .item .public-img {
    width: 100%;
  }
}
.whyth .box .item .public-img:before {
  padding-top: 62.85714286%;
}
.whyth .box .item .txt {
  background: #fff;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.2rem 0.9rem;
}
@media (max-width: 767px) {
  .whyth .box .item .txt {
    width: 100%;
    padding: 0.3rem;
  }
}
.whyth .box .item .txt h3 {
  font-weight: bold;
}
.whyth .box .item .txt .g_p {
  margin-top: 0.2rem;
}
.whyth .box .item .txt .g_p p {
  color: #666;
  margin-bottom: 0.1rem;
  display: block;
  position: relative;
  padding-left: 20px;
}
.whyth .box .item .txt .g_p p:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 9px;
}
@media (max-width: 1580px) {
  .whyth .box .item .txt .g_p p:after {
    top: 8px;
    width: 5px;
    height: 5px;
  }
}
@media (max-width: 767px) {
  .whyth .box .item .txt .g_p p:after {
    top: 7px;
  }
}
.whyfo {
  padding: 1.2rem 0 1.3rem;
}
@media (max-width: 1260px) {
  .whyfo {
    padding: 1.2rem 0;
  }
}
.whyfo .box {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  .whyfo .box {
    flex-direction: column;
  }
}
.whyfo .box .gl {
  margin-top: 1rem;
  padding-right: 0.5rem;
  width: 50%;
}
@media (max-width: 1260px) {
  .whyfo .box .gl {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .whyfo .box .gl {
    width: 100%;
  }
}
.whyfo .box .gl .swiper {
  width: 100%;
  min-height: 260px;
}
@media (max-width: 1260px) {
  .whyfo .box .gl .swiper {
    min-height: auto;
  }
}
.whyfo .box .gl .swiper .whyfo_lbox h3 {
  font-weight: bold;
}
.whyfo .box .gl .swiper .whyfo_lbox .g_p {
  margin-top: 0.2rem;
}
.whyfo .box .gl .swiper .whyfo_lbox .g_p p {
  color: #666;
  margin-bottom: 0.1rem;
  display: block;
  position: relative;
  padding-left: 20px;
}
.whyfo .box .gl .swiper .whyfo_lbox .g_p p:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  left: 0;
  top: 9px;
}
@media (max-width: 1580px) {
  .whyfo .box .gl .swiper .whyfo_lbox .g_p p:after {
    top: 8px;
    width: 5px;
    height: 5px;
  }
}
.whyfo .box .gl .g_qie {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
}
.whyfo .box .gl .g_qie .pub_nav {
  margin-top: 0;
  transform: none;
  position: initial;
}
.whyfo .box .gl .g_qie .gpagination {
  margin: 0 0.3rem;
  display: flex;
  align-items: center;
}
.whyfo .box .gl .g_qie .gpagination .gnum1 {
  margin-right: 5px;
  line-height: 1;
  font-weight: bold;
  color: #333;
}
.whyfo .box .gl .g_qie .gpagination .gline {
  margin-right: 5px;
  color: #999;
  line-height: 1;
}
.whyfo .box .gl .g_qie .gpagination .gnum2 {
  color: #999;
  line-height: 1;
  margin-bottom: 1px;
}
.whyfo .box .gr {
  width: 50%;
}
@media (max-width: 767px) {
  .whyfo .box .gr {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.whyfo .box .gr .swiper {
  background: #fafafa;
}
.whyfo .box .gr .swiper .public-img:before {
  padding-top: 71.42857143%;
}
.whyfo .box .gr .swiper .public-img::after {
  background: url(../images/why11.png) no-repeat;
  background-size: 100% 100%;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  pointer-events: none;
}
.whyfo .box .gr .swiper .swip2_pag .swiper-pagination-bullet {
  width: 0.29rem;
  height: 3px;
  background: #fff;
  margin: 0 0.05rem;
  opacity: 1;
  border-radius: 0;
  transition: all 0.4s;
}
.whyfo .box .gr .swiper .swip2_pag .swiper-pagination-bullet-active {
  background: var(--color);
}
/* 应用聚合页 */
.app {
  padding: 0.68rem 0 1.2rem;
}
.app .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .app .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .app .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.app .box .item {
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
  display: block;
}
.app .box .item:hover img {
  transform: scale(1.05);
}
.app .box .item .public-img:before {
  padding-top: 56.23188406%;
}
.app .box .item .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/enter12.png) no-repeat;
  background-size: 100% auto;
  background-position: bottom center ;
  top: 0;
  left: 0;
  z-index: 10;
  color: #fff;
  padding: 0.28rem 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.app .box .item .txt h3 {
  font-weight: bold;
  margin-bottom: 0.1rem;
}
/* 应用详情页 */
.ainfoon {
  padding: 5px 0 0.6rem;
}
.ainfoon .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .ainfoon .box {
    flex-direction: column-reverse;
  }
}
.ainfoon .box .gl {
  width: 39.28571429%;
}
@media (max-width: 767px) {
  .ainfoon .box .gl {
    width: 100%;
  }
}
.ainfoon .box .gl .txt h1 {
  font-weight: bold;
}
.ainfoon .box .gl .txt p {
  margin-top: 0.15rem;
}
.ainfoon .box .gl .public-btn {
  margin-top: 0.4rem;
}
.ainfoon .box .gr {
  width: 50%;
}
@media (max-width: 767px) {
  .ainfoon .box .gr {
    width: 100%;
    margin-bottom: 0.6rem;
  }
}
.ainfoon .box .gr .public-img {
  border-radius: 0.08rem;
}
.ainfoon .box .gr .public-img:before {
  padding-top: 62.85714286%;
}
.ainfotw {
  padding: 0.8rem 0 1.2rem;
  background: #f8f8f8;
}
.ainfotw .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .ainfotw .box {
    flex-direction: column;
  }
}
.ainfotw .box .gl {
  width: 68.57142857%;
  border-radius: 0.08rem;
  background: #fff;
  padding: 0.4rem 0.4rem 1.7rem;
}
@media (max-width: 767px) {
  .ainfotw .box .gl {
    width: 100%;
    padding: 0.4rem;
  }
}
.ainfotw .box .gl .public-content h2,
.ainfotw .box .gl .public-content h3,
.ainfotw .box .gl .public-content h4,
.ainfotw .box .gl .public-content h5,
.ainfotw .box .gl .public-content h6 {
  margin-bottom: 0.15rem;
  font-weight: bold;
}
.ainfotw .box .gl .public-content p {
  line-height: 1.875;
}
@media (max-width: 767px) {
  .ainfotw .box .gl .public-content p {
    line-height: 1.5;
  }
}
.ainfotw .box .gl .public-content img {
  border-radius: 0.08rem;
}
.ainfotw .box .gr {
  width: 30%;
}
@media (max-width: 767px) {
  .ainfotw .box .gr {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.ainfotw .box .gr .gr_box {
  margin-bottom: 0.2rem;
  border-radius: 0.08rem;
  background-color: #fff;
  padding: 0.26rem 0.2rem 0.1rem;
}
.ainfotw .box .gr .gr_box h2 {
  font-weight: bold;
  margin-bottom: 0.15rem;
}
.ainfotw .box .gr .box1 .box1_con .item {
  margin-bottom: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ainfotw .box .gr .box1 .box1_con .item:hover .public-img img {
  transform: scale(1.05);
}
.ainfotw .box .gr .box1 .box1_con .item:hover .txt h3 span {
  color: var(--color) !important;
  background-size: 100% 100%;
}
.ainfotw .box .gr .box1 .box1_con .item .public-img {
  border-radius: 0.08rem;
  width: 47.36842105%;
}
.ainfotw .box .gr .box1 .box1_con .item .public-img:before {
  padding-top: 70%;
}
.ainfotw .box .gr .box1 .box1_con .item .txt {
  width: 47.36842105%;
}
.ainfotw .box .gr .box1 .box1_con .item .txt h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ainfotw .box .gr .box1 .box1_con .item .txt h3 span {
  color: #000;
  display: inline;
  transition: all 0.4s;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 93%, #ff0000 0%);
  background-size: 0 100%;
  background-repeat: no-repeat;
}
.ainfotw .box .gr .box1 .box1_con .item .txt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #999;
  line-height: 1.57142857;
  margin-top: 0.1rem;
}
.ainfotw .box .gr .box2 .box2_con .item {
  margin-bottom: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ainfotw .box .gr .box2 .box2_con .item:hover .public-img img {
  transform: scale(1.05);
}
.ainfotw .box .gr .box2 .box2_con .item:hover .txt h3 span {
  color: var(--color) !important;
  background-size: 100% 100%;
}
.ainfotw .box .gr .box2 .box2_con .item .img {
  cursor: pointer;
  width: 47.36842105%;
  position: relative;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ainfotw .box .gr .box2 .box2_con .item .img .public-img:before {
  padding-top: 70%;
}
.ainfotw .box .gr .box2 .box2_con .item .img .vid_on_box {
  position: absolute;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.ainfotw .box .gr .box2 .box2_con .item .img .vid_on_box svg {
  margin-left: 0.03rem;
  width: 12px;
  height: auto;
  color: #fff;
}
.ainfotw .box .gr .box2 .box2_con .item .img .vid_on_box svg path {
  fill: #fff;
}
.ainfotw .box .gr .box2 .box2_con .item .txt {
  width: 47.36842105%;
}
.ainfotw .box .gr .box2 .box2_con .item .txt h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ainfotw .box .gr .box2 .box2_con .item .txt h3 span {
  color: #000;
  display: inline;
  transition: all 0.4s;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 93%, #ff0000 0%);
  background-size: 0 100%;
  background-repeat: no-repeat;
}
.ainfotw .box .gr .box2 .box2_con .item .txt p {
  color: #999;
  line-height: 1.57142857;
  margin-top: 0.1rem;
}
.ainfoth {
  padding: 1.2rem 0 2.25rem;
}
.ainfoth .box {
  position: relative;
  padding: 0 60px;
  margin-top: 0.35rem;
}
@media (max-width: 991px) {
  .ainfoth .box {
    padding: 0;
  }
}
.ainfoth .box .swiper .swiper-slide {
  opacity: 0;
  background: #fff;
  overflow: hidden;
  border-radius: 0.08rem;
  width: 8.9rem;
}
@media (max-width: 1580px) {
  .ainfoth .box .swiper .swiper-slide {
    width: 10rem;
  }
}
@media screen and (max-width: 1380px) {
  .ainfoth .box .swiper .swiper-slide {
    width: 9rem;
  }
}
@media (max-width: 991px) {
  .ainfoth .box .swiper .swiper-slide {
    width: 76%;
  }
}
.ainfoth .box .swiper .swiper-slide .ainfoth_box {
  position: relative;
  transition: all 0.4s;
  opacity: 0.2;
}
.ainfoth .box .swiper .swiper-slide .ainfoth_box .public-img:before {
  padding-top: 56.17977528%;
}
.ainfoth .box .swiper .swiper-slide .ainfoth_box .txt {
  opacity: 0;
  transition: all 0.4s;
  background: url(../images/ainfo5.png) no-repeat;
  background-size: 100% auto;
  background-position: bottom center ;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.25rem;
}
.ainfoth .box .swiper .swiper-slide .ainfoth_box .txt h3 {
  font-weight: bold;
  text-align: center;
}
.ainfoth .box .swiper .swiper-slide-active {
  opacity: 1;
}
.ainfoth .box .swiper .swiper-slide-active .ainfoth_box {
  opacity: 1;
}
.ainfoth .box .swiper .swiper-slide-active .ainfoth_box .txt {
  opacity: 1;
}
.ainfoth .box .swiper .swiper-slide-prev,
.ainfoth .box .swiper .swiper-slide-next {
  opacity: 1;
}
.ainfoth .box .g_qie .pub_prev {
  left: 0rem;
}
.ainfoth .box .g_qie .pub_next {
  right: 0rem;
}
.ainfoth .box .swip2_pag {
  bottom: -0.66rem;
}
.ainfoth .box .swip2_pag .swiper-pagination-bullet {
  width: 0.29rem;
  height: 3px;
  background: #888888;
  margin: 0 0.05rem;
  opacity: 1;
  border-radius: 0;
  transition: all 0.4s;
}
.ainfoth .box .swip2_pag .swiper-pagination-bullet-active {
  background: #111;
}
/* 搜索结果 */
.public_search_box {
  padding: 0.6rem 0 1.4rem;
}
.public_search_box .public_search_t h1,
.public_search_box .public_search_t h2 {
  text-align: center;
  font-weight: bold;
}
.public_search_box .public_search_t .g_sea {
  margin: 0.28rem auto 0;
  display: flex;
  width: 42.85714286%;
  border: 1px solid #eeeeee;
  border-radius: 100px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .public_search_box .public_search_t .g_sea {
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .public_search_box .public_search_t .g_sea {
    width: 100%;
    margin-top: 0.3rem;
  }
}
.public_search_box .public_search_t .g_sea input {
  padding: 0 20px;
  width: 100%;
  height: 60px;
  line-height: 50px;
}
@media (max-width: 1580px) {
  .public_search_box .public_search_t .g_sea input {
    height: 50px;
  }
}
@media (max-width: 991px) {
  .public_search_box .public_search_t .g_sea input {
    height: 40px;
    line-height: 40px;
  }
}
.public_search_box .public_search_t .g_sea button {
  display: flex;
  align-items: center;
  margin-right: 0.3rem;
  float: left;
  color: #333;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .public_search_box .public_search_t .g_sea button {
    height: 40px;
  }
}
.public_search_box .public_search_t .g_sea button:hover {
  color: var(--color);
}
.public_search_box .public_search_t .g_sea button img,
.public_search_box .public_search_t .g_sea button svg {
  width: 18px;
  height: auto;
}
@media (max-width: 991px) {
  .public_search_box .public_search_t .g_sea button img,
  .public_search_box .public_search_t .g_sea button svg {
    width: 14px;
  }
}
.public_search_box .public_search_not {
  padding: 1.4rem 0 1.9rem;
  text-align: center;
}
.public_search_box .public_search_not p {
  font-weight: bold;
  margin-top: 0.45rem;
  color: #999;
}
.public_search_box .public_search_con {
  margin-top: 0.35rem;
}
.public_search_box .public_search_con .public_search_nav {
  display: flex;
  justify-content: center;
}
.public_search_box .public_search_con .public_search_nav a {
  cursor: pointer;
  transition: all 0.4s;
  padding: 0 0.04rem 0.18rem;
  border-bottom: 3px solid transparent;
  font-weight: bold;
  margin: 0 0.56rem;
}
@media (max-width: 991px) {
  .public_search_box .public_search_con .public_search_nav a {
    margin: 0 0.1rem;
    font-size: 12px;
    border-bottom: 1px solid transparent;
    padding: 0 0.04rem 0.1rem;
  }
}
@media (max-width: 767px) {
  .public_search_box .public_search_con .public_search_nav a {
    font-size: 10px;
  }
}
.public_search_box .public_search_con .public_search_nav a.on {
  color: var(--color);
  border-color: var(--color);
}
.public_search_box .public_search_con .public_search_nr .public_search_item {
  margin-top: 0.8rem;
}
.public_search_box .public_search_con .public_search_nr .public_search_item .public_search_tit {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.public_search_box .public_search_con .public_search_nr .public_search_item .public_search_tit .gl {
  align-items: center;
  display: flex;
}
.public_search_box .public_search_con .public_search_nr .public_search_item .public_search_tit .gl h2 {
  font-weight: bold;
}
.public_search_box .public_search_con .public_search_nr .public_search_item .public_search_tit .gl p {
  color: #999;
  margin-left: 0.2rem;
  font-weight: bold;
}
.public_search_box .public_search_con .public_search_nr .public_search_item .public_search_tit .gr a {
  transition: all 0.4s;
  display: flex;
  align-items: center;
}
.public_search_box .public_search_con .public_search_nr .public_search_item .public_search_tit .gr a:hover {
  color: var(--color);
}
.public_search_box .public_search_con .public_search_nr .public_search_item .public_search_tit .gr a:hover i {
  color: var(--color);
}
.public_search_box .public_search_con .public_search_nr .public_search_item .public_search_tit .gr a i {
  transition: all 0.4s;
  margin-left: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: auto;
  color: #333;
}
@media (max-width: 767px) {
  .public_search_box .public_search_con .public_search_nr .public_search_item .public_search_tit .gr a i {
    width: 5px;
  }
}
.public_search_box .public_search_con .public_search_nr .public_search_item .public_search_tit .gr a i svg,
.public_search_box .public_search_con .public_search_nr .public_search_item .public_search_tit .gr a i img {
  width: 100%;
  height: auto;
}
.public_search_box .public_search_con .public_search_nr .public_search_item .public_search_tit .gr a i svg path,
.public_search_box .public_search_con .public_search_nr .public_search_item .public_search_tit .gr a i img path {
  fill: var(--color);
}
.prosea .item {
  width: 65%;
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .prosea .item {
    width: 100%;
  }
}
.prosea .item .g_t:hover h3 {
  color: var(--color);
}
.prosea .item .g_t h3 {
  transition: all 0.4s;
  color: #111;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prosea .item .g_t p {
  margin-top: 0.12rem;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 3.75em;
  line-height: 1.875;
}
@media (max-width: 767px) {
  .prosea .item .g_t p {
    height: 3em;
    line-height: 1.5;
  }
}
.crumbs2 {
  margin-top: 0.18rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .crumbs2 {
    flex-wrap: initial;
  }
}
.crumbs2 p {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .crumbs2 p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex-shrink: 0;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .crumbs2 p:last-child {
    flex-shrink: initial;
  }
}
@media (max-width: 767px) {
  .crumbs2 p > a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.crumbs2 p:last-child svg,
.crumbs2 p:last-child i,
.crumbs2 p:last-child img {
  display: none;
}
.crumbs2 p svg,
.crumbs2 p img {
  color: #666;
  width: 5px;
  height: auto;
  margin-right: 0.1rem;
}
.crumbs2 p svg path,
.crumbs2 p img path {
  fill: #666;
}
.crumbs2 p .gp {
  transition: all 0.4s;
  color: #666;
  margin-right: 0.07rem;
  /* &:hover{
				color: @color1;
			} */
}
.appsea {
  margin-top: 0.28rem;
}
.appsea .item {
  margin-bottom: 0.55rem;
  display: flex;
  align-items: flex-start;
  width: 78.57142857%;
}
@media (max-width: 991px) {
  .appsea .item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .appsea .item {
    align-items: center;
  }
}
.appsea .item .gl {
  display: flex;
  width: 13.63636364%;
  flex-shrink: 0;
  margin-right: 0.4rem;
}
@media (max-width: 767px) {
  .appsea .item .gl {
    width: 31.81818182%;
  }
}
.appsea .item .gl .public-img {
  border-radius: 0.08rem;
  width: 100%;
}
.appsea .item .gl .public-img:before {
  padding-top: 62.66666667%;
}
.appsea .item .gr .txt h3 {
  line-height: 1.1;
  transition: all 0.4s;
  color: #111;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.appsea .item .gr .txt p {
  margin-top: 0.12rem;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 3.75em;
  line-height: 1.875;
}
@media (max-width: 767px) {
  .appsea .item .gr .txt p {
    height: 3em;
    line-height: 1.5;
  }
}
.g_pubfaq2 {
  margin-top: -1px;
}
/* 留资表单 */
.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: 991px) {
  .curtain1 .curtain_box {
    width: 90%;
  }
}
.curtain1 .curtain_box .curtain_title {
  position: relative;
  padding: 0 30px;
}
.curtain1 .curtain_box .curtain_title .close_tc {
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
  width: 0.4rem;
  height: 0.4rem;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.4s;
}
.curtain1 .curtain_box .curtain_title .close_tc:hover::before,
.curtain1 .curtain_box .curtain_title .close_tc:hover::after {
  background: var(--color);
}
@media screen and (max-width: 767px) {
  .curtain1 .curtain_box .curtain_title .close_tc {
    top: 0.1rem;
    right: 0.1rem;
  }
}
.curtain1 .curtain_box .curtain_title .close_tc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -14px;
  width: 26px;
  height: 2px;
  background: #666;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .curtain1 .curtain_box .curtain_title .close_tc::before {
    width: 16px;
    height: 1px;
  }
}
.curtain1 .curtain_box .curtain_title .close_tc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -14px;
  width: 26px;
  height: 2px;
  background: #666;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .curtain1 .curtain_box .curtain_title .close_tc::after {
    width: 16px;
    height: 1px;
  }
}
.mess {
  background: #fff;
  width: 12rem;
  display: flex;
  justify-content: space-between;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .mess {
    width: 15rem;
  }
}
@media (max-width: 1260px) {
  .mess {
    width: 90vw;
  }
}
.mess .gl {
  background: url(../images/pop.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  width: 33.33333333%;
  padding: 0.4rem 0.4rem 0.65rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  .mess .gl {
    display: none;
  }
}
.mess .gl .gt .pop_logo {
  display: block;
  width: 1.28rem;
  height: auto;
}
.mess .gl .gt .pop_logo img {
  width: 100%;
}
.mess .gl .gt .lop {
  margin-top: 0.14rem;
}
.mess .gl .gt .lop p {
  font-weight: bold;
}
.mess .gl .gt .g_lab {
  margin-top: 0.58rem;
}
.mess .gl .gt .g_lab .g_lab_li {
  margin-bottom: 0.14rem;
  display: flex;
  align-items: center;
}
.mess .gl .gt .g_lab .g_lab_li i {
  margin-right: 0.08rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.19rem;
  height: 0.19rem;
  border-radius: 50%;
  background: var(--color);
  color: #fff;
}
@media (max-width: 767px) {
  .mess .gl .gt .g_lab .g_lab_li i {
    width: 0.26rem;
    height: 0.26rem;
  }
}
.mess .gl .gt .g_lab .g_lab_li i svg,
.mess .gl .gt .g_lab .g_lab_li i img {
  width: calc(10/19*100%);
  height: auto;
}
.mess .gl .gt .g_lab .g_lab_li i svg path,
.mess .gl .gt .g_lab .g_lab_li i img path {
  fill: var(--color);
}
.mess .gl .gt .g_lab .g_lab_li p {
  font-weight: bold;
}
.mess .gl .gb {
  margin-top: 0.4rem;
}
.mess .gl .gb .g_lab {
  margin-top: 0.58rem;
}
.mess .gl .gb .g_lab .g_lab_li {
  margin-top: 0.14rem;
  display: flex;
  align-items: center;
}
.mess .gl .gb .g_lab .g_lab_li i {
  margin-right: 0.12rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.17rem;
  height: 0.17rem;
  color: #fff;
}
@media (max-width: 1260px) {
  .mess .gl .gb .g_lab .g_lab_li i {
    width: 0.2rem;
    height: 0.2rem;
  }
}
@media (max-width: 767px) {
  .mess .gl .gb .g_lab .g_lab_li i {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.mess .gl .gb .g_lab .g_lab_li i svg,
.mess .gl .gb .g_lab .g_lab_li i img {
  width: 100%;
  height: auto;
}
.mess .gl .gb .g_lab .g_lab_li i svg path,
.mess .gl .gb .g_lab .g_lab_li i img path {
  fill: var(--color);
}
.mess .gl .gb .g_lab .g_lab_li p {
  font-weight: bold;
}
.mess .gr {
  max-height: 90vh;
  overflow: auto;
  padding: 0.55rem 0.4rem;
  width: 66.66666667%;
}
@media (max-width: 1260px) {
  .mess .gr {
    width: 100%;
  }
}
.mess .gr .gr_tit .p1 {
  font-weight: bold;
}
@media (max-width: 767px) {
  .mess .gr .gr_tit .p1 {
    font-size: 16px;
  }
}
.mess .gr .gr_tit .p2 {
  color: #666;
  margin-top: 0.1rem;
}
.mess .gr form {
  margin-top: 0.4rem;
  /* 下拉 */
}
.mess .gr form .inp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .mess .gr form .inp {
    flex-direction: column;
  }
}
.mess .gr form .inp .inp_box {
  width: calc(50% - 0.1rem);
  margin-bottom: 0.26rem;
}
@media (max-width: 767px) {
  .mess .gr form .inp .inp_box {
    width: 100% !important;
    margin-bottom: 0.4rem;
  }
}
.mess .gr form .inp .inp_box .inp_txt {
  margin-bottom: 0.1rem;
}
.mess .gr form .inp .inp_box .inp_txt p {
  color: #333;
  font-weight: bold;
}
.mess .gr form .inp .inp_box .inp_txt p span {
  color: var(--color);
}
.mess .gr form .inp .inp_box input {
  font-size: 14px;
  padding: 0 0.2rem;
  width: 100%;
  height: 0.56rem;
  background: #f6f6f6;
  border-radius: 0.05rem;
}
@media (max-width: 767px) {
  .mess .gr form .inp .inp_box input {
    height: 0.8rem;
    font-size: 12px;
  }
}
.mess .gr form .inp .inp_box .sot_select_nr .sel_text_x {
  height: 0.5rem;
}
@media (max-width: 767px) {
  .mess .gr form .inp .inp_box .sot_select_nr .sel_text_x {
    height: 0.8rem;
  }
}
.mess .gr form .inp .inp2 {
  width: 100%;
}
.mess .gr form .inp .inp3 {
  width: calc((100% - 0.4rem)/3);
}
.mess .gr form .inptext .inptext_box {
  position: relative;
  background: #f6f6f6;
  border-radius: 0.05rem;
  width: 100%;
  height: 1rem;
  padding: 0.13rem 0.18rem;
}
@media (max-width: 767px) {
  .mess .gr form .inptext .inptext_box {
    height: 1.6rem;
  }
}
.mess .gr form .inptext .inptext_box textarea {
  width: 100%;
  height: 100%;
}
.mess .gr form .g_lab {
  margin-top: -0.05rem;
  color: #999999;
}
.mess .gr form .g_lab label {
  display: flex;
}
.mess .gr form .g_lab label.on i {
  border-color: var(--color);
  background: var(--color);
}
.mess .gr form .g_lab label.on i svg,
.mess .gr form .g_lab label.on i img {
  color: #fff;
  opacity: 1;
}
.mess .gr form .g_lab i {
  margin-top: 3px;
  flex-shrink: 0;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  color: transparent;
  margin-right: 0.05rem;
}
@media (max-width: 1580px) {
  .mess .gr form .g_lab i {
    width: 14px;
    height: 14px;
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  .mess .gr form .g_lab i {
    margin-top: 2px;
  }
}
.mess .gr form .g_lab i svg,
.mess .gr form .g_lab i img {
  opacity: 0;
  width: 8px;
  height: auto;
}
.mess .gr form .g_lab i svg path,
.mess .gr form .g_lab i img path {
  filter: none;
}
@media (max-width: 1580px) {
  .mess .gr form .g_lab br {
    display: none;
  }
}
.mess .gr form .g_lab a {
  color: #333;
}
.mess .gr form .public-btn {
  margin: 0.55rem auto 0;
  min-width: 140px;
}
.mess .gr form .public-btn .c-ico {
  margin-left: 0.24rem;
}
.mess .gr form .layui-input:focus,
.mess .gr form .layui-textarea:focus {
  border-color: var(--color) !important;
}
.mess .gr form .layui-input-block {
  margin-left: 0;
  margin-right: 0;
}
.mess .gr form .layui-form-select dl {
  top: 100%;
  bottom: auto;
  padding: 0;
}
.mess .gr form .layui-form-select dl dd.layui-this {
  background: var(--color);
  color: #fff;
}
.mess .gr form .layui-form-select .layui-input {
  height: 0.5rem;
  border: 1px solid transparent;
  color: #444;
  padding: 0 0.2rem;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .mess .gr form .layui-form-select .layui-input {
    height: 0.8rem;
  }
}
.mess .gr form .layui-form-select .layui-edge {
  right: 0.24rem;
  background: url(../images/b3.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 7px;
  border: none;
  margin: 0;
  margin-top: -4px;
}
/* 导航 */
.navyr {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  min-width: 100px;
  width: 100vw;
  line-height: 40px;
  background: #fff;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 0 0 5px 5px;
}
.navyr .gnav_a {
  margin-top: 0.3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .navyr .gnav_a {
    grid-template-columns: repeat(1, 1fr);
  }
}
.navyr .gnav_a .item {
  border-radius: 0.08rem;
  border: 1px solid #e5e5e5;
  padding: 0.23rem 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
  position: relative;
}
.navyr .gnav_a .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  border-radius: 0.08rem;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.navyr .gnav_a .item:hover {
  border-color: #f8f8f8;
}
.navyr .gnav_a .item:hover h3 {
  color: var(--color);
}
.navyr .gnav_a .item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.navyr .gnav_a .item h3 {
  position: relative;
  z-index: 10;
  font-weight: bold;
  transition: all 0.4s;
}
.navyr .gnav_a .item i {
  position: relative;
  z-index: 10;
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: auto;
  color: #333;
}
@media (max-width: 1260px) {
  .navyr .gnav_a .item i {
    width: 5px;
  }
}
.navyr .gnav_a .item i svg,
.navyr .gnav_a .item i img {
  width: 100%;
  height: auto;
}
.navyr .gnav_a .item i svg path,
.navyr .gnav_a .item i img path {
  fill: var(--color);
}
.pronav .pronav_box {
  display: flex;
  justify-content: space-between;
}
.pronav .pronav_box .gl {
  padding: 0.48rem 0 1.15rem;
  width: 23.57142857%;
  box-shadow: 0.1rem 0 0.1rem rgba(0, 0, 0, 0.03);
}
.pronav .pronav_box .gl .gt a {
  padding-right: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.28rem;
}
.pronav .pronav_box .gl .gt a:hover p,
.pronav .pronav_box .gl .gt a.on p {
  color: var(--color);
}
.pronav .pronav_box .gl .gt a:hover i,
.pronav .pronav_box .gl .gt a.on i {
  color: var(--color);
}
.pronav .pronav_box .gl .gt a p {
  transition: all 0.4s;
}
.pronav .pronav_box .gl .gt a i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: auto;
  color: #333;
}
@media (max-width: 1260px) {
  .pronav .pronav_box .gl .gt a i {
    width: 5px;
  }
}
.pronav .pronav_box .gl .gt a i svg,
.pronav .pronav_box .gl .gt a i img {
  width: 100%;
  height: auto;
}
.pronav .pronav_box .gl .gt a i svg path,
.pronav .pronav_box .gl .gt a i img path {
  fill: var(--color);
}
.pronav .pronav_box .gl .gb {
  margin-top: 1.1rem;
}
.pronav .pronav_box .gl .gb a {
  padding-right: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pronav .pronav_box .gl .gb a:hover p,
.pronav .pronav_box .gl .gb a.on p {
  color: var(--color);
}
.pronav .pronav_box .gl .gb a:hover i,
.pronav .pronav_box .gl .gb a.on i {
  color: var(--color);
}
.pronav .pronav_box .gl .gb a p {
  transition: all 0.4s;
}
.pronav .pronav_box .gl .gb a i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: auto;
  color: #333;
}
@media (max-width: 1260px) {
  .pronav .pronav_box .gl .gb a i {
    width: 12px;
  }
}
@media (max-width: 767px) {
  .pronav .pronav_box .gl .gb a i {
    width: 10px;
  }
}
.pronav .pronav_box .gl .gb a i svg,
.pronav .pronav_box .gl .gb a i img {
  width: 100%;
  height: auto;
}
.pronav .pronav_box .gl .gb a i svg path,
.pronav .pronav_box .gl .gb a i img path {
  fill: var(--color);
}
.pronav .pronav_box .gr {
  padding: 0.5rem;
  width: 76.42857143%;
}
.pronav .pronav_box .gr .gr_li {
  display: none;
}
.pronav .pronav_box .gr .gr_li.on {
  display: block;
}
.pronav .pronav_box .gr .gr_li h3 {
  text-align: left;
  font-weight: bold;
}
.abonav {
  padding: 0.5rem 0 2.3rem;
}
.abonav .gnav_a {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .abonav .gnav_a {
    grid-template-columns: repeat(1, 1fr);
  }
}
.appnav {
  padding: 0.52rem 0 1.15rem;
}
.appnav .appnav_box {
  text-align: left;
}
.appnav .appnav_box .appnav_con {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .appnav .appnav_box .appnav_con {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .appnav .appnav_box .appnav_con {
    grid-template-columns: repeat(2, 1fr);
  }
}
.appnav .appnav_box .appnav_con .item {
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
  display: block;
}
.appnav .appnav_box .appnav_con .item:hover img {
  transform: scale(1.05);
}
.appnav .appnav_box .appnav_con .item .public-img:before {
  padding-top: 56.06060606%;
}
.appnav .appnav_box .appnav_con .item .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/enter12.png) no-repeat;
  background-size: 100% auto;
  background-position: bottom center ;
  top: 0;
  left: 0;
  z-index: 10;
  color: #fff;
  padding: 0.15rem 0.1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.appnav .appnav_box .appnav_con .item .txt h3 {
  font-weight: bold;
}
.appnav .appnav_box .a_more {
  margin-top: 0.58rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.appnav .appnav_box .a_more:hover p,
.appnav .appnav_box .a_more.on p {
  color: var(--color);
}
.appnav .appnav_box .a_more:hover i,
.appnav .appnav_box .a_more.on i {
  color: var(--color);
}
.appnav .appnav_box .a_more p {
  margin-right: 0.48rem;
  transition: all 0.4s;
}
.appnav .appnav_box .a_more i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: auto;
  color: #333;
}
@media (max-width: 1260px) {
  .appnav .appnav_box .a_more i {
    width: 12px;
  }
}
@media (max-width: 767px) {
  .appnav .appnav_box .a_more i {
    width: 10px;
  }
}
.appnav .appnav_box .a_more i svg,
.appnav .appnav_box .a_more i img {
  width: 100%;
  height: auto;
}
.appnav .appnav_box .a_more i svg path,
.appnav .appnav_box .a_more i img path {
  fill: var(--color);
}
/* Cookie */
#c-home-tips {
  display: none;
  position: fixed;
  z-index: 890;
  bottom: 20px;
  left: 20px;
  border-radius: 0.1rem;
  width: calc(100% - 40px);
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
  background: #fff;
}
#c-home-tips .c-wrap {
  padding: 0.27rem 0.4rem;
  padding-right: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  #c-home-tips .c-wrap {
    flex-direction: column;
    padding: 0.5rem 0.3rem;
  }
}
#c-home-tips .c-wrap .c-left {
  width: 60%;
  text-align: left;
}
@media (max-width: 767px) {
  #c-home-tips .c-wrap .c-left {
    width: 100%;
    margin-bottom: 0.3rem;
  }
}
#c-home-tips .c-wrap .c-left h2 {
  font-weight: bold;
  color: #000;
}
#c-home-tips .c-wrap .c-left p {
  color: #777;
  margin-top: 0.1rem;
}
#c-home-tips .c-wrap .c-wrapr {
  width: 30%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  #c-home-tips .c-wrap .c-wrapr {
    width: 100%;
  }
}
#c-home-tips .c-wrap .c-wrapr .public-btn {
  margin-left: 0.2rem;
}
#c-home-tips .c-wrap .c-wrapr .c-close {
  color: var(--color);
  height: 0.52rem;
  padding: 0 0.33rem;
  border: 1px solid var(--color);
  margin-left: 10px;
  display: flex;
  align-items: center;
  font-weight: bold;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  #c-home-tips .c-wrap .c-wrapr .c-close {
    height: 0.8rem;
    padding: 0 0.45rem;
  }
}
#c-home-tips .c-wrap .c-wrapr .c-close1:hover {
  background: var(--color);
  color: #fff;
}
#c-home-tips .c-wrap .c-wrapr .c-close2 {
  background: var(--color);
  color: #fff;
}
#c-home-tips .c-wrap .c-wrapr .c-close2:hover {
  opacity: 0.8;
}
.protwo {
  padding: 0.1rem 0 1.9rem;
}
.protwo .box {
  margin-top: 0.5rem;
  padding: 0 0.6rem;
}
@media (max-width: 767px) {
  .protwo .box {
    padding: 0 0.2rem;
  }
}
.protwo .box .g_t {
  margin-bottom: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .protwo .box .g_t {
    flex-direction: column;
  }
}
.protwo .box .g_t .gl {
  display: flex;
  align-items: center;
  width: 310px;
  margin-right: 0.2rem;
  flex-shrink: 0;
}
@media (max-width: 1260px) {
  .protwo .box .g_t .gl {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .protwo .box .g_t .gl {
    width: 100%;
  }
}
.protwo .box .g_t .gl .gfilter {
  height: 0.42rem;
  padding: 0 0.2rem;
  min-width: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.05rem;
  border: 1px solid #000;
  margin-right: 0.1rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .protwo .box .g_t .gl .gfilter {
    height: 0.7rem;
    padding: 0 0.4rem;
  }
}
.protwo .box .g_t .gl .gfilter.on {
  background: var(--color);
  border-color: var(--color);
}
.protwo .box .g_t .gl .gfilter.on p,
.protwo .box .g_t .gl .gfilter.on i {
  color: #fff;
}
.protwo .box .g_t .gl .gfilter i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.18rem;
  height: auto;
  color: #000;
}
@media (max-width: 1260px) {
  .protwo .box .g_t .gl .gfilter i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  .protwo .box .g_t .gl .gfilter i {
    width: 0.26rem;
  }
}
.protwo .box .g_t .gl .gfilter i svg,
.protwo .box .g_t .gl .gfilter i img {
  width: 100%;
  height: auto;
}
.protwo .box .g_t .gl .gfilter i svg path,
.protwo .box .g_t .gl .gfilter i img path {
  fill: var(--color);
}
.protwo .box .g_t .gl .gfilter p {
  transition: all 0.4s;
  margin-left: 0.1rem;
  color: #000;
}
@media (max-width: 1260px) {
  .protwo .box .g_t .gl .gfilter p {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .protwo .box .g_t .gl .gfilter p {
    font-size: 12px;
  }
}
.protwo .box .g_t .gr {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 310px);
}
@media (max-width: 1260px) {
  .protwo .box .g_t .gr {
    width: calc(100% - 200px);
  }
}
@media (max-width: 767px) {
  .protwo .box .g_t .gr {
    width: 100%;
    flex-direction: column;
    margin-top: 0.2rem;
  }
}
.protwo .box .g_t .gr .g_p {
  display: flex;
}
@media (max-width: 767px) {
  .protwo .box .g_t .gr .g_p {
    margin-bottom: 0.2rem;
  }
}
.protwo .box .g_t .gr .g_p a {
  cursor: pointer;
  margin-right: 0.21rem;
  color: var(--color);
}
.protwo .box .g_t .gr .gr_box {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .protwo .box .g_t .gr .gr_box {
    margin-bottom: 0.2rem;
  }
}
.protwo .box .g_t .gr .gr_box .item {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .protwo .box .g_t .gr .gr_box .item {
    margin: 0 0.3rem 0 0;
  }
}
.protwo .box .g_t .gr .gr_box .item i {
  margin-right: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.22rem;
  height: auto;
  color: var(--color);
}
@media (max-width: 1260px) {
  .protwo .box .g_t .gr .gr_box .item i {
    width: 0.26rem;
  }
}
@media (max-width: 767px) {
  .protwo .box .g_t .gr .gr_box .item i {
    width: 0.34rem;
  }
}
.protwo .box .g_t .gr .gr_box .item i svg,
.protwo .box .g_t .gr .gr_box .item i img {
  width: 100%;
  height: auto;
}
.protwo .box .g_t .gr .gr_box .item i svg path,
.protwo .box .g_t .gr .gr_box .item i img path {
  fill: var(--color);
}
.protwo .box .g_b {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.protwo .box .g_b.on .gl {
  width: 0;
  margin-right: 0;
}
.protwo .box .g_b.on .gr {
  width: 100%;
}
.protwo .box .g_b .gl {
  background: #fafafa;
  width: 310px;
  flex-shrink: 0;
  margin-right: 0.2rem;
}
@media (max-width: 1260px) {
  .protwo .box .g_b .gl {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .protwo .box .g_b .gl {
    width: 100px;
  }
}
.protwo .box .g_b .gl .gl_it {
  border: 1px solid #e5e5e5;
  display: none;
}
.protwo .box .g_b .gl .gl_it.on {
  display: block;
}
.protwo .box .g_b .gl .g_sea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.16rem 0.24rem;
}
.protwo .box .g_b .gl .g_sea_box {
  padding: 0 15px 0 10px;
  width: 100%;
  height: 32px;
  border-radius: 0.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cccccc;
}
.protwo .box .g_b .gl .g_sea_box input {
  width: 100%;
}
.protwo .box .g_b .gl .g_sea_box .ga {
  display: flex;
  align-items: center;
}
.protwo .box .g_b .gl .g_sea_box .ga img,
.protwo .box .g_b .gl .g_sea_box .ga svg {
  width: 15px;
  height: auto;
}
.protwo .box .g_b .gl .fil_box .fil_it.on .gl_box_tit {
  background: #333;
}
.protwo .box .g_b .gl .fil_box .fil_it.on .gl_box_tit p {
  color: #fff;
}
.protwo .box .g_b .gl .fil_box .fil_it.on .gl_box_tit i {
  color: #fff;
  transform: rotate(180deg);
}
.protwo .box .g_b .gl .fil_box .fil_it .gl_box_tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem 0.24rem;
  border-bottom: 1px solid #e5e5e5;
  background: #ededed;
}
.protwo .box .g_b .gl .fil_box .fil_it .gl_box_tit p {
  transition: all 0.4s;
}
.protwo .box .g_b .gl .fil_box .fil_it .gl_box_tit i {
  transition: all 0.4s;
  margin-left: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: auto;
  color: #000;
}
@media (max-width: 1260px) {
  .protwo .box .g_b .gl .fil_box .fil_it .gl_box_tit i {
    width: 7px;
  }
}
@media (max-width: 767px) {
  .protwo .box .g_b .gl .fil_box .fil_it .gl_box_tit i {
    width: 6px;
  }
}
.protwo .box .g_b .gl .fil_box .fil_it .gl_box_tit i svg,
.protwo .box .g_b .gl .fil_box .fil_it .gl_box_tit i img {
  width: 100%;
  height: auto;
}
.protwo .box .g_b .gl .fil_box .fil_it .gl_box_tit i svg path,
.protwo .box .g_b .gl .fil_box .fil_it .gl_box_tit i img path {
  fill: var(--color);
}
.protwo .box .g_b .gl .fil_box .filter-container {
  display: none;
}
.protwo .box .g_b .gl .g_chec {
  margin-top: 0.1rem;
  /* border-top: 1px solid #e6e6e6; */
  display: flex;
  flex-direction: column;
}
.protwo .box .g_b .gl .g_chec .layui-form-checkbox {
  margin-top: 0.15rem;
}
@media (max-width: 767px) {
  .protwo .box .g_b .gl .g_chec .layui-form-checkbox > div {
    white-space: initial;
    font-size: 12px;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .protwo .box .g_b .gl .g_chec .layui-form-checkbox > i {
    width: 14px;
    height: 14px;
    font-size: 10px;
  }
}
.protwo .box .g_b .gl .glie_sx {
  padding: 0.06rem 0.24rem 0.22rem;
}
.protwo .box .g_b .gl .glie_sx .g_chec {
  border: none;
  margin-top: 0;
}
.protwo .box .g_b .gr {
  border: 1px solid #e5e5e5;
  width: calc(100% - 310px);
  /* width: 100%; */
}
@media (max-width: 1260px) {
  .protwo .box .g_b .gr {
    width: calc(100% - 200px);
  }
}
@media (max-width: 767px) {
  .protwo .box .g_b .gr {
    width: calc(100% - 100px);
  }
}
.protwo .box .g_b .gr .ptwobox {
  width: 100%;
  display: flex;
  position: relative;
}
.protwo .box .g_b .gr .ptwobox .ptwlt {
  background: #fafafa;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 50;
}
.protwo .box .g_b .gr .ptwobox .ptwlt:last-child .ttit::after {
  display: none;
}
.protwo .box .g_b .gr .ptwobox .ptwlt .ttit {
  height: 65px;
  padding: 0.05rem 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
  position: relative;
}
.protwo .box .g_b .gr .ptwobox .ptwlt .ttit::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 50%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #e9e9e9;
}
.protwo .box .g_b .gr .ptwobox .ptwlt .ttit p {
  line-height: 1.4;
}
.protwo .box .g_b .gr .ptwobox .ptwlt .ttit2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  transition: all 0.4s;
}
.protwo .box .g_b .gr .ptwobox .ptwlt .ttit2:hover {
  background: #e8e8e8;
}
.protwo .box .g_b .gr .ptwobox .ptwlt .ttit2 .ptwoicon {
  cursor: pointer;
  padding: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_l {
  width: 200px;
  border-right: 1px solid #e5e5e5;
  box-shadow: 0.1rem 0 0.1rem rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 100;
}
@media (max-width: 1260px) {
  .protwo .box .g_b .gr .ptwobox .ptwobox_l {
    width: 150px;
  }
}
@media (max-width: 1260px) {
  .protwo .box .g_b .gr .ptwobox .ptwobox_l {
    width: 115px;
  }
}
.protwo .box .g_b .gr .ptwobox .ptwobox_l .ptwlt .ttit::after {
  display: none;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_l .ptwlb .item {
  min-height: 70px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: flex-start;
  padding: 0.1rem 0.12rem;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_l .ptwlb .item:hover .txt a {
  text-decoration: underline;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_l .ptwlb .item .layui-form-checkbox {
  margin-top: 4px;
  margin-right: 4px;
}
@media (max-width: 767px) {
  .protwo .box .g_b .gr .ptwobox .ptwobox_l .ptwlb .item .layui-form-checkbox {
    padding-left: 20px;
  }
}
.protwo .box .g_b .gr .ptwobox .ptwobox_l .ptwlb .item .txt {
  max-width: 80%;
  text-align: center;
}
@media (max-width: 767px) {
  .protwo .box .g_b .gr .ptwobox .ptwobox_l .ptwlb .item .txt {
    text-align: left;
  }
}
.protwo .box .g_b .gr .ptwobox .ptwobox_l .ptwlb .item .txt a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_l .ptwlb .item .txt p {
  font-size: 12px;
  color: #999;
}
@media (max-width: 767px) {
  .protwo .box .g_b .gr .ptwobox .ptwobox_l .ptwlb .item .txt p {
    font-size: 10px;
  }
}
.protwo .box .g_b .gr .ptwobox .ptwobox_l .ptwlb .item .txt p a {
  color: var(--color);
}
.protwo .box .g_b .gr .ptwobox .ptwobox_r {
  width: calc(100% - 200px);
}
@media (max-width: 1260px) {
  .protwo .box .g_b .gr .ptwobox .ptwobox_r {
    width: calc(100% - 150px);
  }
}
@media (max-width: 767px) {
  .protwo .box .g_b .gr .ptwobox .ptwobox_r {
    width: calc(100% - 115px);
  }
}
.protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlt_box {
  background: #fafafa;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 50;
  overflow: auto;
  display: flex;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlt_box::-webkit-scrollbar {
  width: 0;
  display: none;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlt_box::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 42px;
  left: 0;
  background: #e5e5e5;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlt_box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #e5e5e5;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlt_box .ptwlt_con {
  display: flex;
  flex-shrink: 0;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlt_box .ptwlt {
  flex-shrink: 0;
  /* border-right: 1px solid #e5e5e5; */
  width: 127px;
}
@media (max-width: 991px) {
  .protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlt_box .ptwlt {
    width: 80px;
  }
}
.protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlb_con {
  height: calc(100% - 107px);
  overflow: auto;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlb_con::-webkit-scrollbar {
  width: 0;
  display: none;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlb_con .item {
  display: flex;
  min-height: 70px;
  position: relative;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlb_con .item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #e5e5e5;
}
.protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlb_con .item .g_li {
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
  padding: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 127px;
}
@media (max-width: 991px) {
  .protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlb_con .item .g_li {
    width: 80px;
  }
}
.protwo .box .g_b .gr .ptwobox .ptwobox_r .ptwlb_con .item .g_li .tabimg {
  cursor: pointer;
  width: 24px;
}
.protwo .box .g_b .gr .probj {
  position: sticky;
  position: -webkit-sticky;
  bottom: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  /* border: 1px solid #e5e5e5; */
}
.protwo .box .g_b .gr .probj .g_atou {
  width: 100%;
  height: 15px;
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid #e5e5e5;
}
.protwo .box .g_b .gr .probj .g_atou .g_atou_line {
  overflow: auto;
  margin-bottom: 3px;
  width: calc(100% - 200px);
}
@media (max-width: 1260px) {
  .protwo .box .g_b .gr .probj .g_atou .g_atou_line {
    width: calc(100% - 150px);
  }
}
@media (max-width: 767px) {
  .protwo .box .g_b .gr .probj .g_atou .g_atou_line {
    width: calc(100% - 115px);
  }
}
.protwo .box .g_b .gr .probj .g_atou .g_atou_line .line_gdt {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.protwo .box .g_b .gr .probj .probj_box {
  /* display: none; */
  padding: 0.28rem 0.2rem;
}
.protwo .box .g_b .gr .probj .probj_box .probj_con {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .protwo .box .g_b .gr .probj .probj_box .probj_con {
    flex-direction: column;
    align-items: flex-start;
  }
}
.protwo .box .g_b .gr .probj .probj_box .g_a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 0.2rem;
}
.protwo .box .g_b .gr .probj .probj_box .g_a a {
  height: 0.42rem;
  padding: 0 0.2rem;
  min-width: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.05rem;
  border: 1px solid #000;
  margin-right: 0.1rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .protwo .box .g_b .gr .probj .probj_box .g_a a {
    margin-bottom: 0.1rem;
  }
}
.protwo .box .g_b .gr .probj .probj_box .g_a a.a1 {
  background: var(--color);
  border-color: var(--color);
}
.protwo .box .g_b .gr .probj .probj_box .g_a a.a1 p,
.protwo .box .g_b .gr .probj .probj_box .g_a a.a1 i {
  color: #fff;
}
.protwo .box .g_b .gr .probj .probj_box .g_a a i {
  transition: all 0.4s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.18rem;
  height: auto;
  color: #000;
}
@media (max-width: 1260px) {
  .protwo .box .g_b .gr .probj .probj_box .g_a a i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  .protwo .box .g_b .gr .probj .probj_box .g_a a i {
    width: 0.26rem;
  }
}
.protwo .box .g_b .gr .probj .probj_box .g_a a i svg,
.protwo .box .g_b .gr .probj .probj_box .g_a a i img {
  width: 100%;
  height: auto;
}
.protwo .box .g_b .gr .probj .probj_box .g_a a i svg path,
.protwo .box .g_b .gr .probj .probj_box .g_a a i img path {
  fill: var(--color);
}
.protwo .box .g_b .gr .probj .probj_box .g_a a p {
  transition: all 0.4s;
  margin-left: 0.1rem;
  color: #000;
}
.protwo .box .g_b .gr .probj .probj_box .g_sel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.protwo .box .g_b .gr .probj .probj_box .g_sel .g_sel_li {
  margin: 0.1rem 0.2rem 0.1rem 0;
  position: relative;
}
.protwo .box .g_b .gr .probj .probj_box .g_sel .g_sel_li p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #f9f9f9;
  border-radius: 0.05rem;
  padding: 0.08rem 0.18rem;
  font-size: 12px;
  max-width: 2rem;
}
.protwo .box .g_b .gr .probj .probj_box .g_sel .g_sel_li i {
  cursor: pointer;
  position: absolute;
  right: -7px;
  top: -7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #333;
  color: #fff;
}
.protwo .box .g_b .gr .probj .probj_box .g_sel .g_sel_li i:hover {
  background: var(--color);
}
@media (max-width: 767px) {
  .protwo .box .g_b .gr .probj .probj_box .g_sel .g_sel_li i {
    width: 12px;
    height: 12px;
  }
}
.protwo .box .g_b .gr .probj .probj_box .g_sel .g_sel_li i svg,
.protwo .box .g_b .gr .probj .probj_box .g_sel .g_sel_li i img {
  width: 50%;
  height: auto;
}
.protwo .box .g_b .gr .probj .probj_box .g_sel .g_sel_li i svg path,
.protwo .box .g_b .gr .probj .probj_box .g_sel .g_sel_li i img path {
  fill: var(--color);
}
.g_atou_line::-webkit-scrollbar-thumb {
  background: #e5e5e5;
  border-radius: 25px;
}
.g_atou_line::-webkit-scrollbar {
  height: 9px;
}
.g_atou_line::-webkit-scrollbar-track {
  border-radius: 12px;
  background: #fafafa;
}
.jqyc {
  position: absolute;
  min-width: 300px;
  display: none;
  top: 0;
  left: 0;
  z-index: 200;
  background: #f5f5f5;
}
@media (max-width: 767px) {
  .jqyc {
    min-width: 150px;
  }
}
.filter-container {
  /* overflow: hidden; */
  max-width: 300px;
  padding: 0.26rem 0.24rem 0.22rem;
}
.filter-container .g_sea_box {
  padding: 0 15px 0 10px;
  width: 100%;
  height: 32px;
  border-radius: 0.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cccccc;
}
.filter-container .g_sea_box input {
  width: 100%;
}
.filter-container .g_sea_box .ga {
  display: flex;
  align-items: center;
}
.filter-container .g_sea_box .ga img,
.filter-container .g_sea_box .ga svg {
  width: 15px;
  height: auto;
}
.filter-container .tdel {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.filter-container .tdel img,
.filter-container .tdel svg {
  cursor: pointer;
  width: 14px;
  height: auto;
}
.filter-container .gslider .layui-slider-bar {
  background: #999 !important;
}
.filter-container .gslider .layui-slider-wrap-btn {
  border-color: #999 !important;
  background: #999 url(../images/lr_ico.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.filter-container .g_num {
  margin-top: 0.2rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .filter-container .g_num {
    flex-direction: column;
  }
}
.filter-container .g_num .g_num_it {
  display: flex;
  border: 1px solid #cccccc;
  border-radius: 0.05rem;
  background: #fff;
  padding: 0.05rem 0.1rem;
  max-width: 40%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .filter-container .g_num .g_num_it {
    max-width: 100%;
    margin-bottom: 0.1rem;
  }
}
.filter-container .g_num .g_num_it p,
.filter-container .g_num .g_num_it input {
  margin: 0 0.13rem;
  width: -webkit-fill-available;
}
.filter-container .reset-btn {
  cursor: pointer;
  color: var(--color);
  margin-top: 0.18rem;
  display: inline-block;
}
.filter-container .g_rad {
  margin-top: 0.16rem;
  display: flex;
  align-items: center;
}
.filter-container .g_rad .layui-form-radio {
  margin: 0 0.2rem 0 0;
  padding: 0;
  color: #333333;
}
.filter-container .g_rad .layui-form-radio .layui-anim {
  font-size: 16px;
  color: #333333;
}
.filter-container .g_chec {
  position: relative;
  margin-top: 0.1rem;
  padding-top: 0.14rem;
}
.filter-container .g_chec::after {
  content: '';
  position: absolute;
  width: calc(100% + 0.48rem);
  height: 1px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #ccc;
}
.pub_curon {
  cursor: pointer;
}
