@charset "utf-8";
.header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  transition: all 0.4s;
  padding: 0.23rem 0;
  height: 90px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .header {
    height: 1.2rem;
    padding: 0;
  }
}
.header .container {
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .header .container {
    height: 100%;
  }
}
.header .container .logo {
  height: 44px;
  position: relative;
  display: flex;
  z-index: 2;
}
@media (max-width: 767px) {
  .header .container .logo {
    height: 34px;
  }
}
.header .container .logo a {
  height: 100%;
  display: block;
}
.header .container .logo a img {
  height: 100%;
}
.header .container .logo a img.c {
  display: none;
}
.header .container .close {
  width: 22px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  display: none;
}
@media (max-width: 991px) {
  .header .container .close {
    display: flex;
  }
}
.header .container .close span {
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.header .container .close span:nth-child(2) {
  width: 60%;
  margin: 3px 0 3px auto;
}
.header .container .close.on span:nth-child(1) {
  transform: rotateZ(45deg);
  transform-origin: left center;
}
.header .container .close.on span:nth-child(2) {
  opacity: 0;
}
.header .container .close.on span:nth-child(3) {
  transform-origin: left center;
  transform: rotateZ(-45deg);
}
.header .container .right {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 991px) {
  .header .container .right {
    display: none;
    width: 100vw;
    position: fixed;
    top: 1.1rem;
    left: 0;
    height: calc(100vh - 1.1rem);
    padding: 0.5rem 5%;
    background: var(--color);
    overflow-y: auto;
  }
}
.header .container .right .menu ul {
  display: flex;
}
@media (max-width: 991px) {
  .header .container .right .menu ul {
    flex-wrap: wrap;
  }
}
.header .container .right .menu ul li {
  margin-right: 0.78rem;
  position: relative;
}
@media (max-width: 1024px) {
  .header .container .right .menu ul li {
    margin-right: 0.5rem;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 991px) {
  .header .container .right .menu ul li {
    width: 100%;
  }
}
.header .container .right .menu ul li:last-child {
  margin-right: 0;
}
.header .container .right .menu ul li .link {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 991px) {
  .header .container .right .menu ul li .link {
    justify-content: space-between;
    align-items: center;
  }
}
.header .container .right .menu ul li .link a {
  font-size: var(--font-size7);
  color: #fff;
  line-height: 44px;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .header .container .right .menu ul li .link a {
    line-height: 0.78rem;
    font-size: 16px;
  }
}
.header .container .right .menu ul li .link i {
  width: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: 0.1rem;
}
@media (max-width: 991px) {
  .header .container .right .menu ul li .link i {
    width: 1rem;
    justify-content: flex-end;
  }
}
.header .container .right .menu ul li .link i svg {
  width: 10px;
  height: 10px;
  transition: all 0.4s;
}
.header .container .right .menu ul li .link i svg path {
  fill: #fff;
  transition: all 0.4s;
}
.header .container .right .menu ul li .s-menu {
  width: 180px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  z-index: 2;
  display: none;
  border-top: 2px solid var(--color);
  padding: 0.2rem 0;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.2);
  background: #fff;
}
@media (max-width: 991px) {
  .header .container .right .menu ul li .s-menu {
    width: 100%;
    position: relative;
    left: initial;
    transform: translateX(0);
    top: initial;
    border-top: none;
    box-shadow: none;
    background: none;
    padding: 0 0 0.2rem;
  }
}
.header .container .right .menu ul li .s-menu .s-link {
  padding: 0.1rem 0.2rem;
  background: #fff;
  transition: all 0.4s;
  display: flex;
}
@media (max-width: 991px) {
  .header .container .right .menu ul li .s-menu .s-link {
    background: none;
    padding: 0.1rem 0.25rem;
  }
}
.header .container .right .menu ul li .s-menu .s-link a {
  width: 100%;
  color: #333;
  transition: all 0.4s;
  text-align: center;
}
@media (max-width: 991px) {
  .header .container .right .menu ul li .s-menu .s-link a {
    color: #fff;
    text-align: left;
    line-height: 0.6rem;
  }
}
@media (min-width: 992px) {
  .header .container .right .menu ul li .s-menu .s-link:hover {
    background: #eee;
  }
  .header .container .right .menu ul li .s-menu .s-link:hover a {
    color: var(--color);
  }
}
@media (min-width: 992px) {
  .header .container .right .menu ul li:hover .link a {
    color: var(--color);
  }
  .header .container .right .menu ul li:hover .s-menu {
    display: block;
  }
}
.header .container .right .menu ul li.on .link i svg {
  transform: rotateZ(0);
}
.header .container .right .other {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .header .container .right .other {
    width: 100%;
    position: relative;
    top: inherit;
    transform: translateY(0);
    right: initial;
  }
}
.header .container .right .other .search {
  color: #fff;
  width: 16px;
  height: 16px;
  margin-right: 0.28rem;
  cursor: pointer;
}
.header .container .right .other .search svg path {
  fill: #fff;
  transition: all 0.4s;
}
.header .container .right .other .language {
  color: #fff;
  width: 16px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  padding: 0.1rem 0;
  display: flex;
}
.header .container .right .other .language svg {
  width: 16px;
  height: 16px;
}
.header .container .right .other .language svg path {
  fill: #fff;
  transition: all 0.4s;
}
.header .container .right .other .language .lang-box {
  width: 100px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 10px 5px;
  display: none;
}
.header .container .right .other .language .lang-box a {
  display: block;
  text-align: center;
  margin-bottom: 5px;
  color: #000;
  transition: all 0.4s;
  padding: 0.1rem 0;
  border-radius: 3px;
}
.header .container .right .other .language .lang-box a:last-child {
  margin-bottom: 0;
}
.header .container .right .other .language .lang-box a:hover {
  color: #780009;
  background: rgba(0, 0, 0, 0.07);
}
.header .container .right .other .language:hover .lang-box {
  display: block;
}
.header.head-move {
  top: -1.4rem;
}
@media (max-width: 991px) {
  .header.head-move {
    top: -1.2rem;
  }
}
.header.c-style2 {
  background: #fff;
  box-shadow: 0 0 0.4rem 0 rgba(28, 80, 161, 0.11);
}
.header.c-style2 .container .logo img.w {
  display: none;
}
.header.c-style2 .container .logo img.c {
  display: block;
}
.header.c-style2 .container .close span {
  background: #000;
}
.header.c-style2 .container .right .menu ul li .link a {
  color: #333;
}
@media (max-width: 991px) {
  .header.c-style2 .container .right .menu ul li .link a {
    color: #fff;
  }
}
.header.c-style2 .container .right .menu ul li .link i svg path {
  fill: #333;
}
@media (max-width: 991px) {
  .header.c-style2 .container .right .menu ul li .link i svg path {
    fill: #fff;
  }
}
@media (min-width: 992px) {
  .header.c-style2 .container .right .menu ul li:hover .link a {
    color: var(--color);
  }
  .header.c-style2 .container .right .menu ul li:hover .link i svg path {
    fill: var(--color);
  }
  .header.c-style2 .container .right .menu ul li:hover .s-menu {
    display: block;
  }
}
.header.c-style2 .container .right .other .search svg {
  color: #333;
}
@media (max-width: 767px) {
  .header.c-style2 .container .right .other .search svg {
    color: #fff;
  }
}
.header.c-style2 .container .right .other .search svg path {
  fill: #333;
}
@media (max-width: 991px) {
  .header.c-style2 .container .right .other .search svg path {
    fill: #fff;
  }
}
.header.c-style2 .container .right .other .language svg {
  color: #333;
}
@media (max-width: 767px) {
  .header.c-style2 .container .right .other .language svg {
    color: #fff;
  }
}
.header.c-style2 .container .right .other .language svg path {
  fill: #333;
}
@media (max-width: 991px) {
  .header.c-style2 .container .right .other .language svg path {
    fill: #fff;
  }
}
.search-pop {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 1.35rem 0 1.3rem;
  display: none;
}
.search-pop .box {
  width: 1000px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}
.search-pop .box .close {
  position: absolute;
  top: 0;
  right: 0.1rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-pop .box .close svg {
  width: 20px;
  height: 20px;
}
.search-pop .box .close svg path {
  fill: #999;
}
.search-pop .box .title {
  color: #000;
  line-height: calc(34/24);
  font-weight: 600;
  font-size: var(--font-size4);
}
.search-pop .box .search-box {
  width: 100%;
  height: 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 0.36rem;
  display: flex;
}
.search-pop .box .search-box .t1 {
  height: 100%;
  width: calc(100% - 0.6rem);
  color: #222;
}
.search-pop .box .search-box .t1::placeholder {
  color: #999;
}
.search-pop .box .search-box .btn {
  width: 0.6rem;
  height: 100%;
  background: url(../images/search-blue.svg) center center no-repeat;
  background-size: 0.2rem;
}
.search-pop .box .tips {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 0.2rem;
}
.search-pop .box .tips span {
  color: #999;
  line-height: 0.4rem;
  margin-right: 0.15rem;
}
.search-pop .box .tips a {
  height: 0.4rem;
  padding: 0 0.25rem;
  background: var(--color);
  color: #fff;
  border-radius: 0.2rem;
  margin-right: 0.2rem;
  margin-bottom: 0.1rem;
  display: flex;
  align-items: center;
}

 
@charset "utf-8";
/* 底部 */
.hm_but {
  display: -webkit-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 28px;
  border: solid 1px #eeeeee;
  padding: 0.1rem;
  min-width: 2.02rem;
  color: var(--color);
  transition: all 0.4s;
}
.hm_but span {
  display: block;
  padding: 0 0.2rem;
}
.hm_but .f_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.3rem;
  width: 0.36rem;
  height: 0.36rem;
  color: #ffffff;
  background-color: var(--color);
  border-radius: 50%;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .hm_but .f_icon {
    width: 0.66rem;
    height: 0.66rem;
  }
}
.hm_but .f_icon img,
.hm_but .f_icon svg {
  transition: all 0.4s;
  width: 25%;
  height: 22.22222222%;
}
.hm_but:hover .f_icon {
  transform: rotate(45deg);
}
.hm_but2 {
  border-color: transparent;
}
.hm_tit {
  text-align: center;
}
.hm_tit .f_name {
  margin-bottom: 0.1rem;
  color: #666666;
}
.hm_tit .f_tit {
  color: #000000;
  font-weight: bold;
  line-height: 1.2;
}
.hm_tit .f_tit span {
  color: var(--color);
}
.hm_tit .f_text {
  line-height: 1.5;
  margin-top: 0.18rem;
  color: #999999;
}
.x-footer-1 {
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 0.5rem 0.5rem 0 0;
  margin-top: -0.5rem;
}
@media (min-width: 768px) {
}
.x-footer-1 .fotbox-sec1 {
  padding: 0.64rem 0 1.48rem;
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 {
    padding-bottom: 0.5rem;
  }
}
.x-footer-1 .fotbox-sec1 .f_hed {
  margin-bottom: 0.18rem;
  color: var(--color);
  font-size: var(--font-size3);
  font-weight: bold;
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 .f_hed {
    font-size: var(--font-size6);
  }
}
.x-footer-1 .fotbox-sec1 .f_hed .f_logo {
  display: block;
  height: 45px;
  margin-bottom: 4px;
}
@media (max-width: 1580px) {
  .x-footer-1 .fotbox-sec1 .f_hed .f_logo {
    height: 40px;
  }
}
@media (max-width: 991px) {
  .x-footer-1 .fotbox-sec1 .f_hed .f_logo {
    height: 34px;
  }
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 .f_hed .f_logo {
    height: 0.56rem;
  }
}
.x-footer-1 .fotbox-sec1 .f_hed .f_logo img {
  height: 100%;
}
.x-footer-1 .fotbox-sec1 .cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.x-footer-1 .fotbox-sec1 .cont .lt {
  width: 30%;
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 .cont .lt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.x-footer-1 .fotbox-sec1 .cont .lt .f_tel {
  margin-bottom: 0.18rem;
  display: inline-block;
  color: var(--color);
  font-size: var(--font-size3);
  font-weight: bold;
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 .cont .lt .f_tel {
    font-size: var(--font-size6);
  }
}
.x-footer-1 .fotbox-sec1 .cont .lt .font {
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.22rem;
}
.x-footer-1 .fotbox-sec1 .cont .lt .font p,
.x-footer-1 .fotbox-sec1 .cont .lt .font a {
  display: block;
  margin-bottom: 0.06rem;
  position: relative;
  color: var(--color);
  font-size: var(--font-size3);
  font-weight: bold;
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 .cont .lt .font p,
  .x-footer-1 .fotbox-sec1 .cont .lt .font a {
    font-size: var(--font-size6);
  }
}
.x-footer-1 .fotbox-sec1 .cont .lt .font p:last-child,
.x-footer-1 .fotbox-sec1 .cont .lt .font a:last-child {
  margin-bottom: 0;
}
.x-footer-1 .fotbox-sec1 .cont .lt .font p img,
.x-footer-1 .fotbox-sec1 .cont .lt .font a img,
.x-footer-1 .fotbox-sec1 .cont .lt .font p svg,
.x-footer-1 .fotbox-sec1 .cont .lt .font a svg {
  width: 19px;
  height: auto;
  position: relative;
  top: 0.5em;
  margin-right: 8px;
  transform: translateY(-50%);
}
@media (max-width: 1580px) {
  .x-footer-1 .fotbox-sec1 .cont .lt .font p img,
  .x-footer-1 .fotbox-sec1 .cont .lt .font a img,
  .x-footer-1 .fotbox-sec1 .cont .lt .font p svg,
  .x-footer-1 .fotbox-sec1 .cont .lt .font a svg {
    width: 17px;
  }
}
.x-footer-1 .fotbox-sec1 .cont .lt .font .g_lab {
  display: flex;
  align-items: center;
}
.x-footer-1 .fotbox-sec1 .cont .lt .font .g_lab img,
.x-footer-1 .fotbox-sec1 .cont .lt .font .g_lab svg {
  width: 18px;
  height: auto;
  margin-right: 0.1rem;
}
.x-footer-1 .fotbox-sec1 .cont .lt .hm_but .f_icon img,
.x-footer-1 .fotbox-sec1 .cont .lt .hm_but .f_icon svg {
  width: 44.44444444%;
  height: 44.44444444%;
}
.x-footer-1 .fotbox-sec1 .cont .lt .hm_but:hover .f_icon {
  transform: rotate(0);
}
.x-footer-1 .fotbox-sec1 .cont .f_cent {
  width: 40%;
  /* padding-left: 1.58rem; */
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 .cont .f_cent {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0.4rem;
  }
}
.x-footer-1 .fotbox-sec1 .cont .f_cent .g_box {
  display: flex;
}
.x-footer-1 .fotbox-sec1 .cont .f_cent .g_box .g_li {
  width: 50%;
}
.x-footer-1 .fotbox-sec1 .cont .f_cent .g_h3 h3 {
  font-size: var(--font-size5);
  margin-bottom: 0.28rem;
}
.x-footer-1 .fotbox-sec1 .cont .f_cent .f_nav {
  /* display: flex; */
  /* flex-wrap: wrap; */
}
.x-footer-1 .fotbox-sec1 .cont .f_cent .f_nav li {
  width: 100%;
  display: block;
  margin-bottom: 0.24rem;
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 .cont .f_cent .f_nav li {
    /* width: 33.33%; */
  }
}
.x-footer-1 .fotbox-sec1 .cont .f_cent .f_nav li .tit {
  display: -webkit-inline-flex;
  display: inline-flex;
  align-items: flex-start;
  color: #000000;
  padding-right: 0.24rem;
  font-size: var(--font-size6);
}
.x-footer-1 .fotbox-sec1 .cont .f_cent .f_nav li .tit .f_icon {
  opacity: 0;
  transition: all 0.4s;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
  top: 0.75em;
  transform: translateY(-50%);
  margin-left: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color);
  color: #ffffff;
  border-radius: 50%;
}
@media (max-width: 1580px) {
  .x-footer-1 .fotbox-sec1 .cont .f_cent .f_nav li .tit .f_icon {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 .cont .f_cent .f_nav li .tit .f_icon {
    width: 0.44rem;
    height: 0.44rem;
    display: none;
  }
}
.x-footer-1 .fotbox-sec1 .cont .f_cent .f_nav li .tit .f_icon img,
.x-footer-1 .fotbox-sec1 .cont .f_cent .f_nav li .tit .f_icon svg {
  width: 70%;
  height: 70%;
  max-height: 100%;
}
.x-footer-1 .fotbox-sec1 .cont .f_cent .f_nav li .tit:hover {
  color: var(--color);
}
.x-footer-1 .fotbox-sec1 .cont .f_cent .f_nav li .tit:hover .f_icon {
  opacity: 1;
}
.x-footer-1 .fotbox-sec1 .cont .gt {
  /* width: 100% - 30% - 40%; */
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 .cont .gt {
    width: 100%;
  }
}
.x-footer-1 .fotbox-sec1 .cont .gt.fz_er h2 {
  text-align: center;
  font-size: var(--font-size5);
  margin-bottom: 0.28rem;
}
.x-footer-1 .fotbox-sec1 .cont .gt.fz_er .fz_er_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .x-footer-1 .fotbox-sec1 .cont .gt.fz_er .fz_er_box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 .cont .gt.fz_er .fz_er_box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.x-footer-1 .fotbox-sec1 .cont .gt.fz_er .fz_er_box .li .name {
  text-align: center;
  margin-top: 0.1rem;
}
.x-footer-1 .fotbox-sec1 .cont .gt .f_jt {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 .cont .gt .f_jt {
    justify-content: center;
  }
}
.x-footer-1 .fotbox-sec1 .cont .gt .f_jt .f_li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .x-footer-1 .fotbox-sec1 .cont .gt .f_jt .f_li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 .cont .gt .f_jt .f_li {
    margin: 0 0.15rem 0.3rem;
  }
}
.x-footer-1 .fotbox-sec1 .cont .gt .f_jt .f_li .f_icon {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  width: 0.48rem;
  height: 0.48rem;
  color: #666666;
  border-radius: 50%;
  border: solid 2px #eeeeee;
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec1 .cont .gt .f_jt .f_li .f_icon {
    width: 0.86rem;
    height: 0.86rem;
  }
}
.x-footer-1 .fotbox-sec1 .cont .gt .f_jt .f_li .f_icon img,
.x-footer-1 .fotbox-sec1 .cont .gt .f_jt .f_li .f_icon svg {
  width: auto;
  height: auto;
  max-width: 37.5%;
  max-height: 37.5%;
}
.x-footer-1 .fotbox-sec1 .cont .gt .f_jt .f_li .f_hover {
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 120px;
  transform: translateX(-50%);
  margin-bottom: 0.2rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
  display: none;
}
.x-footer-1 .fotbox-sec1 .cont .gt .f_jt .f_li:hover .f_icon {
  background: var(--color);
  border-color: var(--color);
  color: #ffffff;
}
.x-footer-1 .fotbox-sec1 .cont .gt .f_jt .f_li:hover .f_hover {
  display: block;
}
.x-footer-1 .fotbox-sec2 .container1600 {
  padding: 0.34rem 0 0.48rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
}
.x-footer-1 .fotbox-sec2 .container1600 .lt,
.x-footer-1 .fotbox-sec2 .container1600 .gt {
  max-width: 50%;
  font-size: var(--font-size9);
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec2 .container1600 .lt,
  .x-footer-1 .fotbox-sec2 .container1600 .gt {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}
.x-footer-1 .fotbox-sec2 .container1600 .lt p,
.x-footer-1 .fotbox-sec2 .container1600 .lt a {
  color: #999999;
  display: inline-block;
  transition: all 0.4s;
}
.x-footer-1 .fotbox-sec2 .container1600 .lt p a {
  margin-left: 0;
}
.x-footer-1 .fotbox-sec2 .container1600 .lt a {
  margin-left: 0.16rem;
}
.x-footer-1 .fotbox-sec2 .container1600 .lt a img {
  position: relative;
  top: 0.75em;
  transform: translateY(-50%);
}
.x-footer-1 .fotbox-sec2 .container1600 .lt a:hover {
  color: var(--color);
}
.x-footer-1 .fotbox-sec2 .container1600 .gt {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .x-footer-1 .fotbox-sec2 .container1600 .gt {
    justify-content: center;
    margin-top: 0.1rem;
  }
}
.x-footer-1 .fotbox-sec2 .container1600 .gt a,
.x-footer-1 .fotbox-sec2 .container1600 .gt span {
  color: #999999;
  display: inline-block;
}
.x-footer-1 .fotbox-sec2 .container1600 .gt span {
  margin: 0 0.28rem;
  display: block;
  width: 1px;
  background-color: #f0f0f0;
  height: 1.14285714em;
  position: relative;
  top: 0.75em;
  transform: translateY(-50%);
}
.x-footer-1 .fotbox-sec2 .container1600 .gt a {
  transition: all 0.4s;
}
.x-footer-1 .fotbox-sec2 .container1600 .gt a:hover {
  color: var(--color);
}
@keyframes shanxia {
  from {
    top: 100%;
  }
  to {
    top: -100%;
  }
}
/* End */
