@charset "utf-8";
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 1rem;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 1.2rem;
  }
}
/*顶部*/
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  line-height: 1.38rem;
  text-align: center;
  color: var(--color1);
  transition: 0.2s all;
}
@media (max-width: 991px) {
  #c-header {
    line-height: 1.2rem;
  }
}
#c-header a {
  color: var(--color1);
  transition: 0.4s;
}
#c-header .container1400 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  #c-header .container1400 {
    height: 1.2rem;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
}
@media (max-width: 991px) {
  #c-header .c-right-box {
    width: auto;
  }
}
#c-header.c-head-move {
  top: -1.4rem;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -1.2rem;
  }
}
#c-header.c-style2 {
  color: var(--color2);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  line-height: 1rem;
}
#c-header.c-style2 a {
  color: var(--color2);
}
/*顶部logo*/
#c-header .c-logo {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
  margin-right: 0.4rem;
}
#c-header .c-logo .c-img-box img {
  height: 0.44rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    height: 0.6rem;
  }
}
@media (max-width: 767px) {
  #c-header .c-logo .c-img-box img {
    height: 0.6rem;
  }
}
#c-header .c-logo .c-img-box img:nth-child(2) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(1) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(2) {
  display: inline-block;
}
/*顶部pc导航*/
#c-header .c-nav {
  display: flex;
  align-items: center;
  padding-left: 0.4rem;
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  position: relative;
  margin-right: 0.56rem;
}
#c-header .c-nav > li:last-child {
  margin-right: 0;
}
#c-header .c-nav > li > .c-title-box {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: var(--font-size7);
}
#c-header .c-nav > li > .c-title-box img,
#c-header .c-nav > li > .c-title-box svg {
  margin-left: 0.05rem;
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: all 0.4s;
}
#c-header .c-nav > li a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color);
  transition: 0.4s;
}
#c-header .c-nav li a {
  position: relative;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#c-header .c-nav ul {
  position: absolute;
  top: 99%;
  left: 50%;
  display: none;
  min-width: 1.5rem;
  line-height: 0.5rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
}
#c-header .c-nav ul li:last-child a::before {
  display: none;
}
#c-header .c-nav ul li a {
  padding: 0 20px;
  color: var(--color2);
}
#c-header .c-nav ul li a::before {
  bottom: 0;
  width: calc(100% - 40px) !important;
  left: 20px !important;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a,
#c-header .c-nav li:hover > .c-title-box > a,
#c-header .c-nav li.on .c-title-box > a,
#c-header .c-nav li:hover .c-title-box > a {
  color: var(--color);
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a:before,
#c-header .c-nav li:hover > .c-title-box > a:before,
#c-header .c-nav li.on .c-title-box > a:before,
#c-header .c-nav li:hover .c-title-box > a:before {
  left: 0;
  width: 100%;
}
#c-header.c-style2 .c-nav li.on > .c-title-box svg,
#c-header .c-nav li:hover > .c-title-box svg {
  color: var(--color);
}
/*顶部移动端导航*/
#c-header .c-nav2 {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 1rem;
  color: var(--color2);
  background: #fff;
  overflow-y: auto;
  transition: 0.4s;
  text-align: left;
}
#c-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2 li {
  padding: 0 0.5rem;
  border-top: 1px solid #f1f1f1;
}
@media (max-width: 767px) {
  #c-header .c-nav2 li {
    padding: 0 0.5rem;
  }
}
#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
  width: 0.3rem;
  height: 0.3rem;
  transition: all 0.4s;
}
#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}
#c-header .c-nav2 li a {
  color: var(--color2);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: var(--color);
}
#c-header .c-nav2 li ul {
  display: none;
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 1.2rem);
}
/*顶部导航开关*/
#c-header .c-switch {
  position: relative;
  display: none;
  width: 0.48rem;
  height: 0.4rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--color2);
  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: var(--color2);
}
body.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
body.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 顶部功能区 */
#c-header .c-gn {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #c-header .c-gn {
    padding-right: 0.4rem;
  }
}
#c-header .c-gn .c-language {
  margin: 0 0.3rem;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  #c-header .c-gn .c-language {
    margin-right: 0;
  }
}
#c-header .c-gn .c-language .c-ico-text {
  display: flex;
  align-items: center;
}
#c-header .c-gn .c-language .c-ico-text span {
  margin: 0 0.05rem;
}
#c-header .c-gn .c-language .c-ico-text img,
#c-header .c-gn .c-language .c-ico-text svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  vertical-align: middle;
  color: var(--color1) 0;
}
#c-header .c-gn .c-language .c-ico-text img:nth-child(3),
#c-header .c-gn .c-language .c-ico-text svg:nth-child(3) {
  width: 8px;
  height: 8px;
  color: var(--color4) 999;
}
#c-header .c-gn .c-language .c-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  line-height: 50px;
}
#c-header .c-gn .c-language .c-box a {
  position: relative;
  display: block;
  padding: 0 20px;
  transition: all 0.4s;
}
#c-header .c-gn .c-language .c-box a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(100% - 40px) !important;
  left: 20px !important;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
#c-header .c-gn .c-language .c-box a:hover {
  color: var(--color);
}
#c-header .c-gn .c-language:hover .c-ico-text {
  color: var(--color);
}
#c-header .c-gn .c-language:hover .c-ico-text svg {
  color: var(--color);
}
#c-header .c-gn .c-phone {
  display: flex;
  align-items: center;
  margin-right: 0.4rem;
  margin-left: 0.2rem;
}
@media (max-width: 767px) {
  #c-header .c-gn .c-phone {
    display: none;
  }
}
#c-header .c-gn .c-phone a {
  transition: 0.4s ease-in-out;
}
#c-header .c-gn .c-phone:hover a {
  color: var(--color);
}
@media (max-width: 767px) {
  #c-header .c-gn .x-lx {
    display: none;
  }
}
#c-header .c-gn .x-lx a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.2rem;
  border-radius: 100px;
  background-color: var(--color1);
  height: 0.58rem;
  min-width: 1.6rem;
  color: var(--color10);
  transition: 0s;
  background: var(--color);
}
#c-header.c-style2 .c-gn .c-phone svg {
  color: var(--color);
}
@media (max-width: 767px) {
  #c-header.c-style2 .c-gn .x-yy svg path {
    fill: var(--color1);
  }
}

 
@charset "utf-8";
/* 底部 */
#c-footer {
  color: var(--color1);
}
#c-footer a {
  color: var(--color4);
  transition: 0.4s;
}
#c-footer a:hover {
  color: var(--color1);
}
#c-footer .c-top-box {
  padding: 0.8rem 0 1.5rem;
  background: #f0f5f7;
}
@media (max-width: 767px) {
  #c-footer .c-top-box {
    padding: 1rem 0 0.2rem;
  }
}
#c-footer .c-top-box .container1400 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#c-footer .c-top-box .container1400 .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.3rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-title-box {
    padding: 0.3rem 0;
    border-bottom: 1px solid #dddddd;
  }
}
#c-footer .c-top-box .container1400 .c-title-box .c-title {
  color: var(--color1);
  font-size: var(--font-size6);
}
#c-footer .c-top-box .container1400 .c-title-box a {
  color: var(--color1);
}
#c-footer .c-top-box .container1400 .c-title-box img,
#c-footer .c-top-box .container1400 .c-title-box svg {
  display: none;
  transition: 0.4s;
  width: 0.3rem;
  height: 0.3rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-title-box img,
  #c-footer .c-top-box .container1400 .c-title-box svg {
    display: inline-block;
  }
}
#c-footer .c-top-box .container1400 .x-ri {
  width: 78.75%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 1260px) {
  #c-footer .c-top-box .container1400 .x-ri {
    width: 71.75%;
  }
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container1400 .x-ri {
    width: 100%;
    justify-content: flex-start;
    margin-top: 0.4rem;
  }
}
#c-footer .c-top-box .container1400 .c-list-box {
  margin-right: 2.27rem;
}
#c-footer .c-top-box .container1400 .c-list-box:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-list-box:last-child {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-list-box {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-list-box .c-list {
    padding-top: 0.2rem;
    display: none;
  }
}
#c-footer .c-top-box .container1400 .c-list-box .c-list li {
  padding-bottom: 0.1rem;
}
#c-footer .c-top-box .container1400 .c-list-box .c-list li:last-child {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-list-box .c-list li:last-child {
    padding-bottom: 0.2rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-list-box .c-list li {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container1400 .c-list-box .c-list li a {
  position: relative;
}
#c-footer .c-top-box .container1400 .c-list-box .c-list li a:hover::before {
  width: 100%;
}
#c-footer .c-top-box .container1400 .c-list-box .c-list li a::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--color1);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.4s ease-in-out;
}
#c-footer .c-top-box .container1400 .c-list-box.on .c-title-box img,
#c-footer .c-top-box .container1400 .c-list-box.on .c-title-box svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-list-box.on .c-title-box img,
  #c-footer .c-top-box .container1400 .c-list-box.on .c-title-box svg {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-list-box .x-text {
    margin-top: 0.2rem;
  }
}
#c-footer .c-top-box .container1400 .c-list-box .x-text p {
  color: var(--color4);
  padding-bottom: 0.1rem;
}
#c-footer .c-top-box .container1400 .c-text-wrap {
  width: 21.25%;
}
@media (max-width: 1260px) {
  #c-footer .c-top-box .container1400 .c-text-wrap {
    width: 28.25%;
  }
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container1400 .c-text-wrap {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-text-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#c-footer .c-top-box .container1400 .c-text-wrap .x-lo {
  display: block;
  width: auto;
  height: 0.6rem;
  margin-bottom: 0.2rem;
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container1400 .c-text-wrap .x-lo {
    height: 0.6rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-text-wrap .x-lo {
    height: 0.7rem;
  }
}
#c-footer .c-top-box .container1400 .c-text-wrap .x-lo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
#c-footer .c-top-box .container1400 .c-text-wrap p {
  color: var(--color1) 0;
  font-weight: bold;
  margin-top: 0.42rem;
}
#c-footer .c-top-box .container1400 .c-text-wrap .x-fx {
  margin-top: 0.7rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-text-wrap .x-fx {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
#c-footer .c-top-box .container1400 .c-text-wrap .x-fx a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  position: relative;
  margin-right: 0.25rem;
}
@media (max-width: 1580px) {
  #c-footer .c-top-box .container1400 .c-text-wrap .x-fx a {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-text-wrap .x-fx a {
    width: 24px;
    height: 24px;
    margin-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container1400 .c-text-wrap .x-fx a:hover svg path {
  fill: #a90000;
}
#c-footer .c-top-box .container1400 .c-text-wrap .x-fx a:hover .x-ewm {
  visibility: initial;
}
#c-footer .c-top-box .container1400 .c-text-wrap .x-fx a svg {
  width: 100%;
  height: 100%;
}
#c-footer .c-top-box .container1400 .c-text-wrap .x-fx a svg path {
  fill: var(--color4);
  transition: 0.4s ease-in-out;
}
#c-footer .c-top-box .container1400 .c-text-wrap .x-fx a .x-ewm {
  width: 1.2rem;
  height: 1.2rem;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.05rem;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  visibility: hidden;
  transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-text-wrap .x-fx a .x-ewm {
    width: 1.7rem;
    height: 1.7rem;
  }
}
#c-footer .c-top-box .container1400 .c-text-wrap .x-fx a .x-ewm img {
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container1400 .c-text-wrap .x-fx a .x-ewm img {
    width: 1.6rem;
    height: 1.6rem;
  }
}
#c-footer .c-bottom-box {
  color: var(--color4);
  background: #f0f5f7;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box {
    padding: 0.4rem 0 0 0;
  }
}
#c-footer .c-bottom-box .container1400 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0;
  border-top: 1px solid #dddddd;
}
#c-footer .c-bottom-box .container1400 a {
  color: var(--color4);
  transition: 0.4s ease-in-out;
}
#c-footer .c-bottom-box .container1400 a:hover {
  color: var(--color1);
}
#c-footer .c-bottom-box .container1400 .c-copyright {
  word-wrap: break-word;
  word-break: break-all;
  font-size: var(--font-size8);
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box .container1400 .c-copyright a {
    display: block;
  }
}
#c-footer .c-bottom-box .container1400 .c-copyright .g_beian {
  margin-top: 0.05rem;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box .container1400 .c-support {
    width: 100%;
    margin-top: 0.1rem;
  }
}
#c-footer .c-bottom-box .container1400 .c-support a {
  color: var(--color4);
  transition: 0.4s ease-in-out;
}
#c-footer .c-bottom-box .container1400 .c-support a:hover {
  color: var(--color1);
}
#c-footer .c-bottom-box .container1400 .c-support i {
  font-style: initial;
  color: var(--color4);
  display: inline-block;
  margin: 0 0.24rem 0 0.3rem;
}
#c-footer .c-bottom-box .container1400 .c-support i:last-child {
  display: none;
}
#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;
}

 
@charset "utf-8";
/* 
.container {
    margin: 0 auto;
    width: 84%;
    max-width: 1600px; 
    @media @max-lg{
        width:84%;
    }
    @media @max-md{
        width:90%;
    }
}
 */
.g_yc {
  display: none !important;
}
@media (max-width: 767px) {
  .g_yc {
    display: flex !important;
  }
}
.gs-rightColumn-1 {
  display: none;
}
.fixedgt {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 60px;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 5px;
  z-index: 666;
  box-shadow: -1px 3px 16px 0 rgba(148, 180, 255, 0.16);
}
@media (max-width: 1580px) {
  .fixedgt {
    width: 54px;
    right: 16px;
  }
}
@media (max-width: 767px) {
  .fixedgt {
    top: 66%;
    width: 0.8rem;
  }
}
.fixedgt .item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixedgt .item .f_tit {
  color: #ffffff;
  width: 100%;
  display: block;
  background-color: #0024FF;
  text-align: center;
  border-radius: 26px;
  font-weight: bold;
  padding: 14px;
}
@media (max-width: 1580px) {
  .fixedgt .item .f_tit {
    padding: 10px 12px;
  }
}
@media (max-width: 767px) {
  .fixedgt .item .f_tit {
    padding: 8px 0.12rem;
  }
}
.fixedgt .item .f_icon {
  width: 22px;
  height: 22px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1580px) {
  .fixedgt .item .f_icon {
    width: 18px;
    height: 18px;
  }
}
.fixedgt .item .f_icon svg {
  width: auto;
  max-width: 100%;
  height: 100%;
}
.fixedgt .item .f_icon svg path {
  fill: #333333;
  transition: all 0.4s;
}
.fixedgt .item .f_tel_hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
  padding-right: 16px;
  display: none;
  box-shadow: -1px 3px 16px 0px rgba(148, 180, 255, 0.2);
}
.fixedgt .item .f_tel_hover .font {
  width: 100%;
  color: #333333;
  background-color: #ffffff;
  border-radius: 5px;
  font-size: var(--font-size4);
  color: var(--color);
  font-weight: bold;
  line-height: 1.1;
  padding: 0.26rem 0.2rem;
  white-space: nowrap;
}
.fixedgt .item .qrcode-box {
  width: auto;
  height: auto;
  position: absolute;
  right: 100%;
  top: 25%;
  padding-right: 16px;
  /* display: flex; opacity: 0; visibility: hidden; */
  display: none;
  transition: all 0.5s ease;
}
.fixedgt .item .qrcode-box .img {
  width: 140px;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background: #FFFFFF;
  overflow: hidden;
}
.fixedgt .item .qrcode-box .img img {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .fixedgt .item:hover .f_icon svg path {
    fill: var(--color);
  }
  .fixedgt .item:hover .f_tel_hover {
    display: block;
  }
  .fixedgt .item:hover .qrcode-box {
    display: block;
  }
}
.fixedgt .f_tel1 {
  padding: 20px 0;
  position: relative;
}
@media (max-width: 1580px) {
  .fixedgt .f_tel1 {
    padding: 16px 0;
  }
}
.fixedgt .f_tel1:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 33.33%;
  height: 2px;
  background-color: #000000;
  opacity: 0.1;
}
.fixedgt .f_message {
  padding: 20px 0 15px;
}
@media (max-width: 1580px) {
  .fixedgt .f_message {
    padding: 16px 0 10px;
  }
}
.fixedgt .f_top {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.22rem;
  width: 60px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  height: 60px;
  border-radius: 50%;
  box-shadow: -1px 3px 16px 0px rgba(148, 180, 255, 0.16);
  background-color: #ffffff;
}
@media (max-width: 1580px) {
  .fixedgt .f_top {
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 767px) {
  .fixedgt .f_top {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.fixedgt .f_top .f_icon svg {
  width: 100%;
  height: 100%;
}

 
@charset "utf-8";
/* 
.container {
    margin: 0 auto;
    width: 84%;
    max-width: 1600px; 
    @media @max-lg{
        width:84%;
    }
    @media @max-md{
        width:90%;
    }
}
 */
.ptb120 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.proinfo-sec6 {
  position: relative;
  padding: 0.52rem 0 0.55rem;
}
@media (max-width: 767px) {
  .proinfo-sec6 {
    padding: 0.66rem 0;
  }
}
.proinfo-sec6 .public-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  /* border: 1px solid transparent; */
  border-radius: 100px;
  padding: 0 0.1rem 0 0.45rem;
  height: 0.66rem;
  overflow: hidden;
  transition: 0.4s all;
  background: -webkit-linear-gradient(to right, #0024FF, #5cd7ff);
  background: linear-gradient(to right, #0024FF, #5cd7ff);
  position: relative;
}
@media (max-width: 767px) {
  .proinfo-sec6 .public-btn {
    height: 0.8rem;
  }
}
.proinfo-sec6 .public-btn.public-btn2 {
  border-color: #dddddd;
}
.proinfo-sec6 .public-btn:hover {
  border-color: transparent;
}
.proinfo-sec6 .public-btn:hover span {
  color: var(--color2);
}
.proinfo-sec6 .public-btn:hover i::before {
  width: 900%;
  height: 900%;
}
.proinfo-sec6 .public-btn:hover i svg {
  transform: rotate(45deg);
}
.proinfo-sec6 .public-btn span {
  font-size: var(--font-size6);
  display: inline-block;
  color: #fff;
  margin-right: 0.29rem;
  position: relative;
  z-index: 2;
  transition: 0.4s all;
}
.proinfo-sec6 .public-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  background: #fff;
  position: relative;
}
@media (max-width: 1580px) {
  .proinfo-sec6 .public-btn i {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 767px) {
  .proinfo-sec6 .public-btn i {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.proinfo-sec6 .public-btn i::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: 0.4s ease-in-out;
  background: #fff;
  border-radius: 100%;
}
.proinfo-sec6 .public-btn i svg {
  width: 12px;
  height: 12px;
  position: relative;
  z-index: 2;
  transition: 0.4s all;
  color: #3487FE;
}
@media (max-width: 1580px) {
  .proinfo-sec6 .public-btn i svg {
    width: 12px;
    height: 12px;
  }
}
.proinfo-sec6 .hm_but {
  width: 1.7rem;
  height: 0.5rem;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: url(/static/home/images/buticonimg1.png) no-repeat left top / 100% 100%;
}
@media (max-width: 1580px) {
  .proinfo-sec6 .hm_but {
    width: 1.8rem;
    height: 0.66rem;
  }
}
@media (max-width: 767px) {
  .proinfo-sec6 .hm_but {
    height: 0.68rem;
    width: 1.8rem;
  }
}
.proinfo-sec6 .hm_but:hover {
  opacity: 0.9;
}
.proinfo-sec6 .bag {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 131, 59, 0.04);
}
.proinfo-sec6 .bag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proinfo-sec6 .bag img:nth-child(2) {
  display: none;
}
@media (max-width: 767px) {
  .proinfo-sec6 .bag img {
    display: none;
  }
  .proinfo-sec6 .bag img:nth-child(2) {
    display: block;
  }
}
.proinfo-sec6 .container {
  position: relative;
  text-align: center;
}
.proinfo-sec6 .container .f_tit {
  font-size: var(--font-size2);
  font-weight: bold;
  color: #000000;
  margin-bottom: 0.36rem;
}
.proinfo-sec6 .container .hm_but {
  margin: 0 auto;
}
.proinfo-sec6 .hm_tit {
  text-align: center;
  margin-bottom: 0.52rem;
}
.proinfo-sec6 .hm_tit .f_tit {
  font-weight: bold;
  color: #010101;
  font-size: var(--font-size2);
}
.proinfo-sec6 .hm_tit .f_text {
  color: #999999;
  margin-top: 0.12rem;
}
.proinfo-sec6 .container {
  margin: 0 auto;
  width: 84%;
  max-width: 1600px;
}
@media (max-width: 1580px) {
  .proinfo-sec6 .container {
    width: 84%;
  }
}
@media (max-width: 1260px) {
  .proinfo-sec6 .container {
    width: 90%;
  }
}
.proinfo-sec6 .bag img {
  display: block;
}
.proinfo-sec6 .container .f_tit {
  background: var(--1, linear-gradient(90deg, #361FF5 0%, #39F 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.1rem;
}
.proinfo-sec6 .container .f_text {
  font-size: var(--font-size6);
  color: #5B6472;
  line-height: 1.625;
  margin-bottom: 0.3rem;
}
