@charset "utf-8";
#c-header {
  position: fixed;
  top: 0.2rem;
  left: 0;
  z-index: 900;
  width: 100%;
  line-height: 1rem;
  text-align: center;
  color: #fff;
  transition: 0.4s;
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  #c-header {
    top: 0;
    line-height: 1.2rem;
  }
}
#c-header a {
  color: #fff;
  transition: 0.4s;
}
#c-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  #c-header .container {
    height: 1.2rem;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.white {
  background: #fff;
}
#c-header.white a {
  color: #333;
}
#c-header.white .c-gn svg {
  color: #999;
}
#c-header.white .c-gn .c-language::before {
  border-color: #999;
}
#c-header.white .c-switch i {
  background: #333;
}
#c-header.c-style2 {
  top: 0;
  background: #fff;
}
#c-header.c-style2 a {
  color: #333;
}
#c-header.c-style2 .c-gn svg {
  color: #333;
}
#c-header.c-style2 .c-switch i {
  background: #333;
}
#c-header.isPop {
  background: rgba(0, 0, 0, 0.8);
}
#c-header.isPop a {
  color: #fff;
}
#c-header.isPop .c-gn svg {
  color: #fff;
}
#c-header.c-head-move {
  top: -1.1rem;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -1.2rem;
  }
}
/*顶部logo*/
#c-header .c-logo {
  position: relative;
  display: flex;
  align-items: center;
  /* &::before {
            content: "";
            position: absolute;
            top: 50%;
            right: -.55rem;
            z-index: -1;
            width: 50vw;
            height: 1rem;
            background: var(--color);
            transform: translateY(-50%);
            @media @max-xs {
                height: 60px;
            }
        } */
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box img {
  height: 0.68rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    height: 0.8rem;
  }
}
#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;
  }
}
/*顶部pc导航*/
#c-header .c-nav {
  font-size: var(--font-size6);
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  line-height: inherit;
  white-space: nowrap;
}
@media (max-width: 1900px) {
  #c-header .c-nav {
    font-size: 16px;
  }
}
@media (max-width: 1180px) {
  #c-header .c-nav {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  position: relative;
  margin-right: 0.4rem;
}
@media (max-width: 1580px) {
  #c-header .c-nav > li {
    margin-right: 0.4rem;
  }
}
@media (max-width: 1260px) {
  #c-header .c-nav > li {
    margin-right: 0.2rem;
  }
}
#c-header .c-nav > li:last-child {
  margin-right: 0;
}
#c-header .c-nav > li > .c-title-box {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#c-header .c-nav > li > .c-title-box img,
#c-header .c-nav > li > .c-title-box svg {
  margin-left: 0.05rem;
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: all 0.4s;
}
#c-header .c-nav > li a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color);
  transition: 0.4s;
}
#c-header .c-nav li a {
  position: relative;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#c-header .c-nav ul {
  position: absolute;
  top: 99%;
  left: 50%;
  display: none;
  min-width: 1.5rem;
  line-height: 50px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
}
#c-header .c-nav ul li:last-child a::before {
  display: none;
}
#c-header .c-nav ul li a {
  padding: 0 20px;
  color: #333;
  white-space: nowrap;
}
#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-nav li:hover > .c-title-box > a,
#c-header .c-nav li.on > .c-title-box > a,
#c-header .c-nav li.on > a,
#c-header .c-nav li:hover > a {
  color: var(--color);
}
#c-header .c-nav li:hover > .c-title-box svg {
  color: var(--color);
}
#c-header .c-pop-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  text-align: left;
  padding-top: calc(1rem + 40px);
  padding-bottom: calc(1rem + 40px);
  display: none;
  overflow: hidden;
}
#c-header .c-pop-nav a {
  transition: all 0.4s;
}
#c-header .c-pop-nav a:hover {
  color: var(--color);
}
#c-header .c-pop-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}
#c-header .c-pop-nav .c-close {
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s;
}
#c-header .c-pop-nav .c-close img,
#c-header .c-pop-nav .c-close svg {
  width: 40%;
  height: 40%;
  color: var(--color);
  transition: all 0.4s;
}
#c-header .c-pop-nav .c-close:hover {
  background: var(--color);
}
#c-header .c-pop-nav .c-close:hover img,
#c-header .c-pop-nav .c-close:hover svg {
  color: #fff;
}
#c-header .c-pop-nav .container {
  position: relative;
  z-index: 5;
  padding-top: 0.7rem;
}
#c-header .c-pop-nav .container .c-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  align-items: flex-start;
}
#c-header .c-pop-nav .container .c-item.on {
  position: relative;
  display: flex;
}
#c-header .c-pop-nav .container .c-item.two .c-img-box {
  margin-left: 340px;
}
@media (max-width: 1580px) {
  #c-header .c-pop-nav .container .c-item.two .c-img-box {
    margin-left: 30%;
  }
}
#c-header .c-pop-nav .container .c-item.three .c-img-box {
  margin-left: 600px;
}
@media (max-width: 1580px) {
  #c-header .c-pop-nav .container .c-item.three .c-img-box {
    display: none;
  }
}
#c-header .c-pop-nav .container .c-item .c-list {
  flex-shrink: 0;
  width: 240px;
}
@media (max-width: 1580px) {
  #c-header .c-pop-nav .container .c-item .c-list {
    width: 20%;
  }
}
#c-header .c-pop-nav .container .c-item .c-list > li {
  position: relative;
}
#c-header .c-pop-nav .container .c-item .c-list > li > a {
  display: block;
  position: relative;
  padding-bottom: 0.2rem;
  font-size: var(--font-size2);
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li.on > .c-box {
  display: block;
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0;
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li > a img,
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li > a svg {
  flex-shrink: 0;
  margin-left: 0.2rem;
  width: 12px;
  height: 12px;
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li:hover > a {
  color: var(--color);
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box {
  display: none;
  position: absolute;
  top: 0;
  padding-left: 50px;
  left: 100%;
  width: calc(100% + 50px);
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box > a {
  display: block;
  position: relative;
  padding-bottom: 0.2rem;
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 {
  position: relative;
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li.on > .c-box2 {
  display: block;
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0;
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li > a img,
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li > a svg {
  flex-shrink: 0;
  margin-left: 0.2rem;
  width: 12px;
  height: 12px;
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li > a:hover {
  color: var(--color);
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li .c-box2 {
  display: none;
  position: absolute;
  top: 0;
  padding-left: 50px;
  left: 100%;
  width: calc(100% + 50px);
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li .c-box2 .c-list4 {
  position: relative;
  max-height: 330px;
  overflow-y: auto;
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li .c-box2 .c-list4 > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li .c-box2 .c-list4 > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li .c-box2 .c-list4 > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0;
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li .c-box2 .c-list4 > li > a img,
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li .c-box2 .c-list4 > li > a svg {
  flex-shrink: 0;
  margin-left: 0.2rem;
  width: 12px;
  height: 12px;
}
#c-header .c-pop-nav .container .c-item .c-list .c-list2 > li .c-box .c-list3 > li .c-box2 .c-list4 > li > a:hover {
  color: var(--color);
}
#c-header .c-pop-nav .container .c-item .c-img-box {
  display: flex;
  align-items: center;
  margin-left: 50px;
  width: calc(100% - 840px);
}
@media (max-width: 1580px) {
  #c-header .c-pop-nav .container .c-item .c-img-box {
    margin-left: 5%;
    width: 50%;
  }
}
#c-header .c-pop-nav .container .c-item .c-img-box .public-img {
  width: 47.19%;
  border-radius: 20px;
  background: var(--color);
}
#c-header .c-pop-nav .container .c-item .c-img-box .public-img::before {
  padding-top: 57.14285714%;
}
#c-header .c-pop-nav .container .c-item .c-img-box .c-text {
  padding-left: 0.3rem;
  width: 52.85%;
}
#c-header .c-pop-nav .container .c-item .c-img-box .c-text a {
  margin-top: 0.2rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: var(--color);
}
#c-header .c-pop-nav .container .c-item .c-img-box .c-text a::before {
  position: absolute;
  bottom: 0;
  content: "";
  width: 0;
  border-top: 1px solid var(--color);
  transition: all 0.4s;
}
#c-header .c-pop-nav .container .c-item .c-img-box .c-text a:hover::before {
  width: 0;
}
#c-header .c-pop-nav .container .c-item .c-img-box .c-text a div {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color);
  border-radius: 50%;
}
#c-header .c-pop-nav .container .c-item .c-img-box .c-text a img,
#c-header .c-pop-nav .container .c-item .c-img-box .c-text a svg {
  width: 10px;
  height: 10px;
}
#c-header.isPop .c-pop-nav::before {
  transform: scale(1.01);
}
/*顶部移动端导航*/
#c-header .c-nav2 {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 1rem;
  color: #333;
  background: #fff;
  overflow-y: auto;
  transition: 0.4s;
  text-align: left;
}
#c-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2 li {
  padding: 0 0.5rem;
  border-top: 1px solid #f1f1f1;
}
@media (max-width: 767px) {
  #c-header .c-nav2 li {
    padding: 0 0.5rem;
  }
}
#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
  width: 12px;
  height: 12px;
  transition: all 0.4s;
}
#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}
#c-header .c-nav2 li a {
  color: #333;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: var(--color);
}
#c-header .c-nav2 li ul {
  display: none;
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 1.2rem);
}
/*顶部导航开关*/
#c-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;
}
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 {
    margin-right: 20px;
  }
}
#c-header .c-gn .c-search {
  display: block;
  margin-right: 0.2rem;
  padding-right: 0.2rem;
  padding-left: 0.6rem;
  position: relative;
  cursor: pointer;
}
#c-header .c-gn .c-search img,
#c-header .c-gn .c-search svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  vertical-align: middle;
}
#c-header .c-gn .c-search:hover > svg {
  color: var(--color);
}
#c-header .c-gn .c-language {
  position: relative;
  cursor: pointer;
}
#c-header .c-gn .c-language::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.2rem;
  height: 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
}
#c-header .c-gn .c-language img,
#c-header .c-gn .c-language svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  vertical-align: middle;
}
#c-header .c-gn .c-language:hover > svg {
  color: var(--color);
}
#c-header .c-gn .c-language .c-list {
  position: absolute;
  top: 106%;
  right: 50%;
  display: none;
  line-height: 50px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(50%);
}
@media (max-width: 767px) {
  #c-header .c-gn .c-language .c-list {
    line-height: 40px;
  }
}
#c-header .c-gn .c-language .c-list li:last-child a::before {
  display: none;
}
#c-header .c-gn .c-language .c-list a {
  position: relative;
  display: block;
  padding: 0 20px;
  color: #333;
  transition: all 0.4s;
}
#c-header .c-gn .c-language .c-list a::before {
  position: absolute;
  content: "";
  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-list a:hover {
  color: var(--color);
}
#c-go-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color);
  cursor: pointer;
}
@media (max-width: 1180px) {
  #c-go-top {
    display: none !important;
  }
}
#c-go-top img,
#c-go-top svg {
  width: 30%;
  height: 30%;
  color: #fff;
  transition: all 0.8s;
}

 
@charset "utf-8";
#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;
}
/* 底部 */
#c-footer {
  color: #333;
}
#c-footer a {
  position: relative;
  color: #333;
  transition: 0.4s;
}
#c-footer a::before {
  position: absolute;
  bottom: 0;
  content: "";
  width: 0;
  border-top: 1px solid var(--color);
  transition: all 0.4s;
}
#c-footer a:hover {
  color: var(--color);
}
@media (min-width: 768px) {
  #c-footer a:hover::before {
    width: 100%;
  }
}
#c-footer .c-title-box {
  display: inline-flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 0.2rem;
}
@media (max-width: 767px) {
  #c-footer .c-title-box {
    padding: 0.3rem 0;
    border-bottom: 1px solid #666;
    display: flex;
    align-items: center;
  }
}
#c-footer .c-title-box .c-title {
  color: #333;
}
#c-footer .c-title-box a {
  color: #333;
}
#c-footer .c-title-box a:hover {
  color: var(--color);
}
#c-footer .c-title-box img,
#c-footer .c-title-box svg {
  margin-left: 0.1rem;
  transition: 0.4s;
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translateY(5px);
}
@media (max-width: 767px) {
  #c-footer .c-title-box img,
  #c-footer .c-title-box svg {
    width: 12px;
    height: 12px;
    transform: translateY(0);
  }
}
#c-footer .c-title-box img:nth-child(2),
#c-footer .c-title-box svg:nth-child(2) {
  color: var(--color);
}
@media (max-width: 767px) {
  #c-footer .c-title-box img:nth-child(2),
  #c-footer .c-title-box svg:nth-child(2) {
    display: none !important;
  }
}
#c-footer .c-title-box img:last-child,
#c-footer .c-title-box svg:last-child {
  display: none;
}
@media (max-width: 767px) {
  #c-footer .c-title-box img:last-child,
  #c-footer .c-title-box svg:last-child {
    opacity: 1;
    display: block;
  }
}
@media (max-width: 767px) {
  #c-footer .c-text-box {
    padding-top: 0.2rem;
  }
}
#c-footer .c-text-box p {
  padding-bottom: 0.1rem;
}
@media (max-width: 767px) {
  #c-footer .c-text-box p {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-ico {
  display: flex;
  align-items: center;
}
#c-footer .c-ico a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #999;
  background: #f5f5f5;
  transition: 0.4s;
  cursor: pointer;
}
#c-footer .c-ico a::before,
#c-footer .c-ico a::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translate(0, -50%) scale(0);
  transition: all 0.4s;
  background: var(--color);
  box-sizing: border-box;
}
#c-footer .c-ico a::before {
  left: 50%;
}
#c-footer .c-ico a::after {
  right: 50%;
}
#c-footer .c-ico a img,
#c-footer .c-ico a svg {
  width: 16px;
  height: 16px;
}
#c-footer .c-ico a:hover {
  color: #fff;
  background: var(--color);
}
#c-footer .c-ico a:hover::before {
  left: 110%;
  transform: translate(0, -50%) scale(1);
}
#c-footer .c-ico a:hover::after {
  right: 110%;
  transform: translate(0, -50%) scale(1);
}
@media (max-width: 767px) {
  #c-footer .c-text-wrap {
    width: 100%;
    padding-top: 0.4rem;
  }
}
#c-footer .c-top-box {
  padding: 0.9rem 0 1rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box {
    padding: 1.2rem 0 0;
  }
}
#c-footer .c-top-box .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#c-footer .c-top-box .container .c-left {
  width: 29.375%;
  color: #333;
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-left {
    width: 100%;
  }
}
#c-footer .c-top-box .container .c-left .c-title {
  font-size: var(--font-size4);
}
#c-footer .c-top-box .container .c-left .c-title span {
  color: #999;
}
#c-footer .c-top-box .container .c-left .c-box {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  margin-top: 0.7rem;
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-left .c-box {
    margin-top: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-left .c-box input {
  width: 100%;
  height: 70px;
  line-height: 70px;
  padding-right: 0.4rem;
}
#c-footer .c-top-box .container .c-left .c-box button {
  width: 28px;
  line-height: 70px;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-left .c-box button {
    width: 20px;
  }
}
#c-footer .c-top-box .container .c-left .c-box button img,
#c-footer .c-top-box .container .c-left .c-box button svg {
  width: 100%;
  height: 100%;
  color: #000;
  transition: all 0.4s;
}
#c-footer .c-top-box .container .c-left .c-box button:hover svg {
  color: var(--color);
}
#c-footer .c-top-box .container .c-left .c-box::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  border-top: 1px solid var(--color);
  transition: all 0.8s;
}
#c-footer .c-top-box .container .c-left .c-box.on::before {
  width: 100%;
}
#c-footer .c-top-box .container .c-right {
  display: flex;
  width: 50%;
  font-size: var(--font-size6);
}
@media (max-width: 1260px) {
  #c-footer .c-top-box .container .c-right {
    width: 60%;
  }
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-right {
    display: none;
    margin-top: 0.8rem;
    width: 100%;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-right {
    display: flex;
  }
}
#c-footer .c-top-box .container .c-right .c-right-box {
  padding-right: 0.6rem;
  border-right: 1px solid #e5e5e5;
  position: relative;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-right .c-right-box {
    padding-right: 0;
    border: 0;
    width: 100%;
  }
}
#c-footer .c-top-box .container .c-right .c-menu {
  color: #ccc;
  margin-bottom: 0.2rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-right .c-menu {
    margin: 0.8rem 0 0;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box {
    width: 100%;
  }
}
@media (min-width: 768px) {
  #c-footer .c-top-box .container .c-list-box:last-child .c-title-box {
    padding: 0;
  }
}
#c-footer .c-top-box .container .c-list-box .c-list {
  font-size: var(--font-size8);
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0.6rem;
  /* width: 100%; */
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list {
    margin-left: 0;
    position: static;
    padding-top: 0.2rem;
    display: none;
  }
}
#c-footer .c-top-box .container .c-list-box .c-list li {
  padding-bottom: 0.1rem;
}
#c-footer .c-top-box .container .c-list-box .c-list li:last-child {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list li:last-child {
    padding-bottom: 0.2rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-list-box .c-list li {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-list-box .c-list li a {
  font-size: var(--font-size6);
  color: #ccc;
  transition: all 0.4s;
  white-space: nowrap;
}
#c-footer .c-top-box .container .c-list-box .c-list li a:hover {
  color: #000;
}
#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-list-box.active .c-list {
  display: block;
}
#c-footer .c-top-box .container .c-list-box.active .c-title-box svg:nth-child(2) {
  opacity: 1;
}
#c-footer .c-center-box .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-left {
    width: 100%;
  }
}
#c-footer .c-center-box .container .c-title-box {
  margin-bottom: 0.1rem;
}
#c-footer .c-center-box .container .c-title-box .c-title {
  font-size: var(--font-size4);
}
#c-footer .c-center-box .container .c-text-box {
  margin-bottom: 0.3rem;
  color: #666;
}
#c-footer .c-center-box .container .c-text-box p {
  display: flex;
  align-items: center;
}
#c-footer .c-center-box .container .c-text-box p img,
#c-footer .c-center-box .container .c-text-box p svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
#c-footer .c-center-box .container .c-text-box p a {
  display: inline-flex;
  align-items: center;
  color: #666;
}
#c-footer .c-center-box .container .c-text-box p a:hover {
  color: var(--color);
}
#c-footer .c-center-box .container .c-logo {
  display: flex;
}
@media (max-width: 767px) {
  #c-footer .c-center-box .container .c-logo {
    display: none;
  }
}
#c-footer .c-center-box .container .c-logo img {
  height: 0.9rem;
}
#c-footer .c-center-box .container .c-logo::before {
  display: none;
}
#c-footer .c-bottom-box {
  font-size: var(--font-size9);
  margin-top: 0.4rem;
  padding: 0.25rem 0;
  border-top: 1px solid #e5e5e5;
  color: #7f7f7f;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box {
    padding: 0.6rem 0;
  }
}
#c-footer .c-bottom-box .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#c-footer .c-bottom-box .container a {
  margin-right: 0.3rem;
  color: #7f7f7f;
}
#c-footer .c-bottom-box .container a:last-child {
  margin-right: 0;
}
#c-footer .c-bottom-box .container a:hover {
  color: var(--color);
}
#c-footer .c-bottom-box .container .c-copyright {
  word-wrap: break-word;
  word-break: break-all;
}

 
@charset "utf-8";
.public-banner2 {
  position: relative;
}
.public-banner2 .c-text-box {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 5;
  width: 100%;
  color: #fff;
  transform: translateY(-50%);
}
.public-banner2 .c-text-box .c-title {
  font-size: var(--font-size4);
}
.public-banner2 .c-text-box .c-subtitle {
  margin-top: 0.2rem;
  font-size: 0.4rem;
  line-height: 1.2;
}
.public-banner2 .c-text-box .public-btn {
  margin-top: 0.35rem;
}

 
@charset "utf-8";
.c-home8 {
  /* margin-top: 1rem; */
  overflow: hidden;
  position: relative;
  /* height: 9rem; */
  display: flex;
  align-items: center;
  text-align: center;
}
.c-home8 .public-img {
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.c-home8 .public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 41.666%;
}
@media (max-width: 767px) {
  .c-home8 .public-img::before {
    padding-top: 100%;
  }
}
.c-home8 .public-img > img,
.c-home8 .public-img > video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.c-home8 .container {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-home8 .container .c-box .c-title {
  font-size: 0.6rem;
  line-height: 1.2;
  margin-bottom: 0.55rem;
  color: #fff;
}
.c-home8 .public-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  padding-right: 20px;
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-home8 .public-btn {
    border-radius: 20px;
  }
}
.c-home8 .public-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: var(--color);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-home8 .public-btn::before {
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }
}
.c-home8 .public-btn div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .c-home8 .public-btn div {
    width: 40px;
    height: 40px;
  }
}
.c-home8 .public-btn div img,
.c-home8 .public-btn div svg {
  width: 12px;
  height: 12px;
}
.c-home8 .public-btn span {
  color: #fff;
}
.c-home8 .public-btn:hover {
  color: #fff;
}
.c-home8 .public-btn:hover::before {
  width: 100%;
}
.c-home8 .public-title .c-title {
  font-size: var(--font-size2);
}
.c-home8 .public-title .c-subtitle {
  margin-top: 0.2rem;
  font-size: 0.48rem;
}
.c-home8 .c-video {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.c-home8 .c-video video,
.c-home8 .c-video img {
  width: 100%;
  vertical-align: top;
}
.c-home8 .c-video {
  /* transform: translateY(28%); */
}

 
@charset "utf-8";
/* 侧边栏 */
.x-sidebar-1 {
  display: none;
  position: fixed;
  bottom: 6%;
  right: 2%;
  z-index: 666;
}
@media (min-width: 768px) {
  .x-sidebar-1 {
    bottom: 50%;
    right: 0.15rem;
    transform: translateY(50%);
  }
}
.x-sidebar-1 .item {
  position: relative;
  margin-bottom: 0.1rem;
}
.x-sidebar-1 .item:last-child {
  margin-bottom: 0;
}
.x-sidebar-1 .item:last-child .f_tit img,
.x-sidebar-1 .item:last-child .f_tit svg {
  width: 17px;
  height: auto;
}
@media (max-width: 1580px) {
  .x-sidebar-1 .item:last-child .f_tit img,
  .x-sidebar-1 .item:last-child .f_tit svg {
    width: 13px;
  }
}
@media (max-width: 767px) {
  .x-sidebar-1 .item:last-child .f_tit img,
  .x-sidebar-1 .item:last-child .f_tit svg {
    width: 10px;
    height: auto;
  }
}
.x-sidebar-1 .item .f_tit {
  cursor: pointer;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 0.1rem;
  color: #333333;
  background: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 0px 0.23rem 0px rgba(0, 71, 133, 0.09);
  transition: all 0.4s;
  justify-content: center;
}
@media (max-width: 767px) {
  .x-sidebar-1 .item .f_tit {
    width: 0.8rem;
    height: 0.8rem;
  }
  .x-sidebar-1 .item .f_tit .f_zi {
    font-size: 0.2rem;
    display: none;
  }
}
.x-sidebar-1 .item .f_tit img,
.x-sidebar-1 .item .f_tit svg {
  object-fit: contain;
  width: 0.24rem;
  height: 0.24rem;
  /* margin-bottom: 3px; */
}
@media (max-width: 767px) {
  .x-sidebar-1 .item .f_tit img,
  .x-sidebar-1 .item .f_tit svg {
    width: 0.4rem;
    height: 0.4rem;
    margin-bottom: 0;
  }
}
.x-sidebar-1 .item .f_tit p {
  display: none;
}
.x-sidebar-1 .item .f_er {
  position: absolute;
  right: 100%;
  top: 0;
  width: 120px;
  margin-right: 0.2rem;
  display: none;
}
.x-sidebar-1 .item .f_er img {
  width: 100%;
}
.x-sidebar-1 .item .f_wen {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 0.2rem;
  /* width: 2.8rem; */
  box-shadow: 0px 0px 0.23rem 0px rgba(0, 71, 133, 0.09);
  display: none;
}
@media (max-width: 1580px) {
  .x-sidebar-1 .item .f_wen {
    /* width: 3rem; */
  }
}
.x-sidebar-1 .item .f_wen .f_zi {
  background: #ffffff;
  padding: 0.15rem 0.15rem 0.15rem 0.3rem;
  font-size: 22px;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 1580px) {
  .x-sidebar-1 .item .f_wen .f_zi {
    font-weight: 400;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .x-sidebar-1 .item .f_wen .f_zi {
    font-size: 14px;
  }
}
.x-sidebar-1 .item:hover .f_tit {
  background: var(--color);
  border-color: var(--color);
  color: #ffffff;
}
.x-sidebar-1 .item:hover .f_er {
  display: block;
}
.x-sidebar-1 .item:hover .f_wen {
  display: block;
}

 
@charset "utf-8";
.gs-alert-1 {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  padding: 5vh 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  overflow: hidden;
}
.gs-alert-1.active {
  opacity: 1;
  visibility: visible;
}
.gs-alert-1 .alert-box {
  width: 90%;
  max-width: 900px;
  height: auto;
  max-height: 100%;
  position: relative;
  z-index: 5;
  margin: 0 auto;
  display: flex;
  border-radius: 10px;
  border-radius: 3px;
  overflow: hidden;
  overflow-y: auto;
}
.gs-alert-1 .alert-box .alert-info {
  width: calc(320/900*100%);
  height: auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  padding: 0.4rem;
  overflow: hidden;
}
.gs-alert-1 .alert-box .alert-info .logo {
  width: 80%;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  text-align: center;
  font-size: 0;
}
.gs-alert-1 .alert-box .alert-info .logo img {
  max-width: 150px;
  max-height: 0.42rem;
}
.gs-alert-1 .alert-box .alert-info .images {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.gs-alert-1 .alert-box .alert-info .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-alert-1 .alert-box .alert-main {
  width: 100%;
  height: auto;
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0.7rem 0.5rem;
  background: #FFFFFF;
  overflow: hidden;
}
.gs-alert-1 .alert-box .alert-main .close-btn {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0.4rem;
  top: 0.3rem;
  z-index: 20;
  border-radius: 50%;
  transform: rotate(45deg);
  cursor: pointer;
  color: #000000;
  transition: all 0.5s ease;
}
@media (max-width: 1260px) {
  .gs-alert-1 .alert-box .alert-main .close-btn {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 991px) {
  .gs-alert-1 .alert-box .alert-main .close-btn {
    width: 20px;
    height: 20px;
  }
}
.gs-alert-1 .alert-box .alert-main .close-btn::before,
.gs-alert-1 .alert-box .alert-main .close-btn::after {
  content: '';
  width: 90%;
  height: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: currentColor;
}
.gs-alert-1 .alert-box .alert-main .close-btn::before {
  width: 2px;
}
.gs-alert-1 .alert-box .alert-main .close-btn::after {
  height: 2px;
}
.gs-alert-1 .alert-box .alert-main .close-btn:hover {
  transform: rotate(135deg);
  color: var(--color);
}
.gs-alert-1 .alert-box .alert-main .headline {
  width: 100%;
  height: auto;
}
.gs-alert-1 .alert-box .alert-main .headline .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font-size4);
  color: #000000;
}
.gs-alert-1 .alert-box .alert-main .headline .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font-size7);
  color: #666666;
  line-height: 1.5;
}
.gs-alert-1 .alert-box .alert-main .form-box {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
@media screen and (max-width: 767px) {
  .gs-alert-1 .alert-box .alert-main .form-box .layui-form {
    flex-direction: column;
    display: flex;
  }
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item input,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item textarea,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item select {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  background: #FAFAFA;
  border-radius: 3px;
  border: 1px solid #D9D9DB;
  font-size: var(--font-size8);
  transition: all 0.5s ease;
  overflow: hidden;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item input::-webkit-input-placeholder,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item textarea::-webkit-input-placeholder,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item select::-webkit-input-placeholder {
  color: #999999;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item input:-moz-placeholder,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item textarea:-moz-placeholder,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item select:-moz-placeholder {
  color: #999999;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item input::-moz-placeholder,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item textarea::-moz-placeholder,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item select::-moz-placeholder {
  color: #999999;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item input:-ms-input-placeholder,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item textarea:-ms-input-placeholder,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item select:-ms-input-placeholder {
  color: #999999 !important;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item input::-ms-input-placeholder,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item textarea::-ms-input-placeholder,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item select::-ms-input-placeholder {
  color: #999999;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item input::placeholder,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item textarea::placeholder,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item select::placeholder {
  color: #999999;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item input:focus,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item textarea:focus,
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item select:focus {
  border-color: #666666 !important;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item select {
  -webkit-appearance: auto;
  appearance: auto;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item textarea {
  height: 120px;
  padding: 15px;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item .layui-form-select {
  width: 100%;
  height: 50px;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item .layui-form-select .layui-select-title {
  width: 100%;
  height: 100%;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item .layui-form-select .layui-select-title .layui-input {
  width: 100%;
  height: 100%;
  padding: 0 40px 0 15px;
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D9D9DB;
  box-shadow: none;
  font-size: var(--font-size8);
  color: var(--color);
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item .layui-form-select .layui-select-title .layui-input::-webkit-input-placeholder {
  color: #999999;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item .layui-form-select .layui-select-title .layui-input:-moz-placeholder {
  color: #999999;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item .layui-form-select .layui-select-title .layui-input::-moz-placeholder {
  color: #999999;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item .layui-form-select .layui-select-title .layui-input:-ms-input-placeholder {
  color: #999999 !important;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item .layui-form-select .layui-select-title .layui-input::-ms-input-placeholder {
  color: #999999;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item .layui-form-select .layui-select-title .layui-input::placeholder {
  color: #999999;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item .layui-form-select .layui-select-title .layui-input:focus {
  border-color: var(--color) !important;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item .layui-form-select dl {
  top: 100%;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item .layui-form-select dl dd {
  padding: 5px 15px !important;
  font-size: var(--font-size9);
  color: #8E96A8;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item .layui-form-select dl dd.layui-this {
  background: var(--color);
  color: #FFFFFF;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item:nth-child(1) {
  z-index: 9;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item:nth-child(2) {
  z-index: 8;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item:nth-child(3) {
  z-index: 7;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item:nth-child(4) {
  z-index: 6;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item:nth-child(5) {
  z-index: 5;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item:nth-child(6) {
  z-index: 4;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item:nth-child(7) {
  z-index: 3;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item:nth-child(8) {
  z-index: 2;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .item:nth-child(9) {
  z-index: 1;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .active {
  grid-column: span 2;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .tips-text {
  font-size: var(--font-size9);
  color: #666666;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .tips-text a {
  color: var(--color);
  transition: all 0.5s ease;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .tips-text a:hover {
  text-decoration: underline;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .submit-box {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .submit-box button {
  width: auto;
  height: 0.5rem;
  min-height: 40px;
  padding: 0 1.5em;
  border-radius: 3px;
  background: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  cursor: pointer;
  font-size: var(--font-size8);
  color: #FFFFFF;
}
.gs-alert-1 .alert-box .alert-main .form-box .layui-form .submit-box button:hover {
  background: var(--color);
}
@media (max-width: 767px) {
  .gs-alert-1 .alert-box {
    display: block;
  }
  .gs-alert-1 .alert-box .alert-info {
    display: none;
  }
  .gs-alert-1 .alert-box .alert-main .form-box .layui-form {
    grid-template-columns: 1fr;
  }
}
.gs-alert-1::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}
