@charset "utf-8";
/* 公共响应变量 */
/* 初始化 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f-column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f-column-right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f-row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f-row-right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j-justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j-around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a-s-stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a-s-center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a-s-end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex-wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
}
/* 文字超出隐藏 */
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.dh {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img,
.public-img > video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
/* 多元异构基座 */
.inner-banner .banner-box .banner-main .info-box .g_tit {
  margin-bottom: 0.26rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .inner-banner .banner-box .banner-main .info-box .g_tit {
    margin-bottom: 3px;
  }
}
.inner-banner .banner-box .banner-main .info-box .g_tit i {
  margin-right: 0.08rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 0.08rem;
  border: 1px solid #E5E7EB;
  color: var(--color);
}
@media (max-width: 1260px) {
  .inner-banner .banner-box .banner-main .info-box .g_tit i {
    width: 0.46rem;
    height: 0.46rem;
  }
}
@media (max-width: 767px) {
  .inner-banner .banner-box .banner-main .info-box .g_tit i {
    width: 0.56rem;
    height: 0.56rem;
  }
}
.inner-banner .banner-box .banner-main .info-box .g_tit i svg,
.inner-banner .banner-box .banner-main .info-box .g_tit i img {
  width: 55.55555556%;
  height: auto;
}
.inner-banner .banner-box .banner-main .info-box .g_tit i svg path,
.inner-banner .banner-box .banner-main .info-box .g_tit i img path {
  fill: var(--color);
}
.inner-banner .banner-box .banner-main .info-box .g_tit p {
  color: #777;
}
.g-title {
  width: 100%;
  height: auto;
  text-align: center;
}
.g-title .title {
  width: 100%;
  height: auto;
  font-weight: 900;
  color: #000000;
  line-height: 1.2;
}
.g-title .details {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  color: #5A5E63;
  line-height: 1.5;
}
.gmhb {
  margin: 0.85rem 0 1.02rem;
}
.gmhb .box {
  margin-top: 0.52rem;
}
.gmhb .box .g_t {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .gmhb .box .g_t {
    flex-wrap: wrap;
  }
}
.gmhb .box .g_t.g_t2 .item h3 {
  font-size: 16px;
}
@media (max-width: 1260px) {
  .gmhb .box .g_t.g_t2 .item h3 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .gmhb .box .g_t.g_t2 .item h3 {
    font-size: 12px;
  }
}
.gmhb .box .g_t .item {
  width: 50%;
  margin-right: 0.24rem;
  border-radius: 0.2rem;
  border: 1px solid #E5E7EB;
  padding: 0.57rem 0.2rem 0.39rem;
  text-align: center;
}
@media (max-width: 767px) {
  .gmhb .box .g_t .item {
    width: 49%;
    margin: 0 0 0.2rem 0;
  }
}
.gmhb .box .g_t .item:last-child {
  margin-right: 0;
}
.gmhb .box .g_t .item img {
  width: 0.96rem;
  height: auto;
}
.gmhb .box .g_t .item h3 {
  margin-top: 0.34rem;
  font-weight: 500;
}
.gmhb .box .g_b {
  padding: 0 0.4rem;
  background: url(../images/MHB6.png) no-repeat;
  background-size: cover;
  margin-top: 0.24rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.2rem;
  min-height: 2.4rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .gmhb .box .g_b {
    flex-wrap: wrap;
    padding: 0.4rem 0 0.1rem;
  }
}
.gmhb .box .g_b .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50%;
  padding: 0 0.1rem;
}
@media (max-width: 767px) {
  .gmhb .box .g_b .item {
    margin-bottom: 0.3rem;
  }
}
.gmhb .box .g_b .item .tnum p {
  font-weight: bold;
  background: linear-gradient(269deg, #5D2BFE 11.06%, #A488FE 78.67%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gmhb .box .g_b .item h3 {
  margin-top: 0.1rem;
}
.public-core-competency .core-box .core-main .swiper-box .swiper-slide .info-box .list-box p strong {
  color: #666;
}
/* 具身智能工具链 */
.gtooon {
  margin: 0.75rem 0 0.71rem;
}
.gtooon .box {
  margin-top: 0.61rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .gtooon .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gtooon .box .item {
  padding: ;
  display: flex;
  align-items: center;
  border: 1px solid #E5E7EB;
  border-radius: 0.2rem;
  padding: 0.47rem 0.48rem 0.47rem 0.4rem;
}
.gtooon .box .item i {
  margin-right: 0.34rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 0.1rem;
  background: #F3EFFF;
  color: var(--color);
}
@media (max-width: 1260px) {
  .gtooon .box .item i {
    width: 0.7rem;
    height: 0.7rem;
  }
}
@media (max-width: 767px) {
  .gtooon .box .item i {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.gtooon .box .item i svg,
.gtooon .box .item i img {
  width: 40%;
  height: auto;
}
.gtooon .box .item i svg path,
.gtooon .box .item i img path {
  fill: var(--color);
}
.gtooon .box .item .txt h3 {
  font-size: 21px;
  font-weight: bold;
}
.gtooon .box .item .txt p {
  color: var(--2, #5A5E63);
  margin-top: 0.08rem;
}
.gtootw {
  margin: 0.71rem 0 0.98rem;
}
.gtootw .box {
  margin-top: 0.52rem;
}
.gtootw .box .g_t {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .gtootw .box .g_t {
    flex-wrap: wrap;
  }
}
.gtootw .box .g_t .item {
  width: 50%;
  margin-right: 0.24rem;
  border-radius: 0.2rem;
  border: 1px solid #E5E7EB;
  padding: 0.32rem 0.17rem;
  text-align: center;
}
@media (max-width: 767px) {
  .gtootw .box .g_t .item {
    width: 49%;
    margin: 0 0 0.2rem 0;
  }
}
.gtootw .box .g_t .item:last-child {
  margin-right: 0;
}
.gtootw .box .g_t .item .tnum p {
  font-weight: bold;
  background: linear-gradient(269deg, #5D2BFE 11.06%, #A488FE 78.67%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gtootw .box .g_t .item h3 {
  padding: 0 0.5rem;
  color: var(--2, #5A5E63);
}
@media (max-width: 767px) {
  .gtootw .box .g_t .item h3 {
    padding: 0;
  }
}
.gtootw .box .g_b {
  padding: 0.84rem 1.87rem 0.72rem 1.53rem;
  margin-top: 0.24rem;
  background: url(../images/MHB6.png) no-repeat;
  background-size: cover;
  border: 1px solid #E5E7EB;
  border-radius: 0.2rem;
  min-height: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 767px) {
  .gtootw .box .g_b {
    padding: 0.4rem;
  }
}
.gtootw .box .g_b h4 {
  font-weight: bold;
}
.gtootw .box .g_b p {
  margin-top: 0.24rem;
  color: #777;
}
.gtooth {
  margin: 0.98rem 0 1.21rem;
}
.gtooth .box {
  margin-top: 0.72rem;
  background: url(../images/int5.png);
  background-size: contain;
  border: 1px solid #E5E7EB;
  border-radius: 0.2rem;
  display: flex;
  justify-content: space-between;
  padding: 0.41rem 0.4rem 0.59rem;
}
@media (max-width: 767px) {
  .gtooth .box {
    flex-wrap: wrap;
  }
}
.gtooth .box .g_i {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .gtooth .box .g_i {
    display: none;
  }
}
.gtooth .box .item {
  width: 16%;
  border-radius: 0.12rem;
  border: 1px solid #A488FE;
  overflow: hidden;
  background: #FFF;
}
@media (max-width: 767px) {
  .gtooth .box .item {
    margin-bottom: 0.1rem;
    width: 49.09090909% !important;
  }
}
.gtooth .box .item h3 {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.46rem;
}
@media (max-width: 991px) {
  .gtooth .box .item h3 {
    height: 0.8rem;
  }
}
.gtooth .box .item .pbox {
  border-radius: 0.08rem;
  border: 1px solid #000;
  background: #FFF;
  padding: 0.1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gtooth .box .item .gcon {
  height: calc(100% - 0.46rem);
  padding: 0.15rem 0.18rem;
}
.gtooth .box .item .g_i2 {
  margin: 0.07rem 0;
  display: flex;
  justify-content: center;
}
.gtooth .box .item .g_i2 .bjt {
  transform: rotate(90deg);
}
.gtooth .box .item .pbox2 {
  border-radius: 0.2rem;
  border: 1px dashed #A8A8A8;
  padding: 0.09rem 0.1rem 0.16rem;
}
.gtooth .box .item .pbox2 .pbox {
  margin-bottom: 0.12rem;
}
.gtooth .box .item .pbox2 .g_p2 {
  text-align: center;
  margin-top: 0.26rem;
}
.gtooth .box .item .gbox3 .pbox {
  margin-bottom: 0.12rem;
}
.gtooth .box .item .gbox3 .pbox:last-child {
  margin-bottom: 0;
}
.gtooth .box .item .gtit {
  text-align: center;
  margin-bottom: 0.13rem;
}
.gtooth .box .item1 {
  width: 12.05357143%;
}
.gtooth .box .item1 h3 {
  background: #F4F0FF;
}
.gtooth .box .item1 .gcon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.2rem 0.34rem;
}
.gtooth .box .item1 .gcon .gico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.26rem;
  height: auto;
  color: var(--color);
}
@media (max-width: 1260px) {
  .gtooth .box .item1 .gcon .gico {
    width: 0.3rem;
  }
}
@media (max-width: 767px) {
  .gtooth .box .item1 .gcon .gico {
    width: 0.34rem;
  }
}
.gtooth .box .item1 .gcon .gico svg,
.gtooth .box .item1 .gcon .gico img {
  width: 100%;
  height: auto;
}
.gtooth .box .item1 .gcon .gico svg path,
.gtooth .box .item1 .gcon .gico img path {
  fill: var(--color);
}
.gtooth .box .item1 .gcon p {
  margin-top: 0.1rem;
}
.gtooth .box .item2 h3 {
  background: rgba(164, 136, 254, 0.2);
}
.gtooth .box .item3 h3 {
  background: rgba(164, 136, 254, 0.4);
}
.gtooth .box .item3 .gcon .g_i2 {
  margin: 0.14rem 0;
}
.gtooth .box .item3 .gcon .pbox2 .g_p2 {
  margin-top: 0.16rem;
}
.gtooth .box .item4 h3 {
  background: rgba(164, 136, 254, 0.66);
}
.gtooth .box .item4 .gcon .gbox3 .pbox {
  min-height: 1.48rem;
}
.gtooth .box .item5 h3 {
  background: rgba(164, 136, 254, 0.8);
}
.gtooth .box .item6 {
  width: 12.05357143%;
}
.gtooth .box .item6 h3 {
  color: #fff;
  background: #6633EE;
}
.gtooth .box .item6 .gcon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.2rem 0.34rem;
}
.gtooth .box .item6 .gcon .gico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.6rem;
  height: auto;
  color: var(--color);
}
@media (max-width: 1260px) {
  .gtooth .box .item6 .gcon .gico {
    width: 0.7rem;
  }
}
@media (max-width: 767px) {
  .gtooth .box .item6 .gcon .gico {
    width: 0.8rem;
  }
}
.gtooth .box .item6 .gcon .gico svg,
.gtooth .box .item6 .gcon .gico img {
  width: 100%;
  height: auto;
}
.gtooth .box .item6 .gcon .gico svg path,
.gtooth .box .item6 .gcon .gico img path {
  fill: var(--color);
}
.gtooth .box .item6 .gcon p {
  margin-top: 0.2rem;
}
.gtoofo .core-main {
  overflow: hidden;
}
.gtoofo .core-main .swiper-box .swiper-slide {
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .gtoofo .core-main .swiper-box .swiper-slide {
    display: block !important;
  }
}
.gtoofo .core-main .swiper-box .swiper-slide .gl {
  width: 50%;
  border: 1px solid #E5E7EB;
  border-radius: 0.2rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .gtoofo .core-main .swiper-box .swiper-slide .gl {
    width: 100%;
  }
}
.gtoofo .core-main .swiper-box .swiper-slide .gl .public-img {
  display: none;
}
.gtoofo .core-main .swiper-box .swiper-slide .gl .public-img.on {
  display: flex;
}
.gtoofo .core-main .swiper-box .swiper-slide .gr {
  width: 50%;
  padding: 0 0.8rem 0 0.76rem;
}
@media (max-width: 991px) {
  .gtoofo .core-main .swiper-box .swiper-slide .gr {
    width: 100%;
    padding: 0.4rem 0 0;
  }
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li:first-child .g_xia {
  display: block;
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li.on .g_top .g_gb {
  background: #5D2BFE;
  color: #fff;
  transform: rotate(180deg);
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li.on .g_top .g_gb svg path,
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li.on .g_top .g_gb img path {
  stroke: #fff;
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li.on .g_top .g_gb .i2 {
  transform: translate(-50%, -50%) rotate(0deg);
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li .g_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.27rem 0;
  position: relative;
  cursor: pointer;
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li .g_top .g_top_l {
  width: 86%;
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li .g_top .g_top_l p {
  font-weight: bold;
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li .g_top .g_gb {
  position: relative;
  transition: 0.4s all;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.1rem;
  width: 0.35rem;
  height: 0.35rem;
  background: #F6F8FC;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li .g_top .g_gb {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li .g_top .g_gb img,
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li .g_top .g_gb svg {
  width: 31.42857143%;
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li .g_top .g_gb i {
  width: 0.24rem;
  height: 2px;
  background: var(--color);
  display: block;
  position: absolute;
  transition: all 0.4s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li .g_top .g_gb i {
    width: 16px;
    height: 1px;
  }
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li .g_top .g_gb .i2 {
  transform: translate(-50%, -50%) rotate(90deg);
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li .g_xia {
  display: none;
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li .g_xia .g_bjq {
  min-height: 1.55rem;
  margin-top: 0.11rem;
  padding-right: 0.2rem;
}
.gtoofo .core-main .swiper-box .swiper-slide .gr .g_pubfaq .g_li .g_xia .g_bjq p {
  color: #777;
}
.gtoofi {
  margin: 1.24rem 0 1.15rem;
}
.gtoofi .box {
  margin-top: 0.61rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.2rem;
}
@media (max-width: 767px) {
  .gtoofi .box {
    overflow: auto;
  }
}
.gtoofi .box .gnr {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .gtoofi .box .gnr {
    width: 800px;
    max-width: initial;
  }
}
.gtoofi .box .gtit {
  border-radius: 0.2rem 0 0 0.2rem;
  flex-shrink: 0;
  width: 14.41666667%;
  border-right: 1px solid #E5E7EB;
  background: #f5f5f5;
}
.gtoofi .box .gtit p {
  padding: 0.13rem 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
}
.gtoofi .box .item {
  width: 50%;
  border-right: 1px solid #E5E7EB;
  transition: all 0.4s;
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 28.52777778%;
}
.gtoofi .box .item:last-child {
  border: none;
}
.gtoofi .box .item:last-child .g_li {
  border-radius: 0 0.2rem 0 0;
}
@media (min-width: 992px) {
  .gtoofi .box .item:hover .item_box {
    overflow: hidden;
    height: calc(100% + 0.36rem);
    position: absolute;
    border: 1px solid #5D2BFE;
    border-radius: 0.2rem;
    transition: all 0.4s;
    background: #fff;
  }
  .gtoofi .box .item:hover .item_box .g_li {
    transition: all 0.4s;
  }
  .gtoofi .box .item:hover .item_box .g_li:first-child {
    height: calc(86px + 0.18rem);
    background: linear-gradient(90deg, #63E 0%, #A488FE 100%);
    font-size: 19px;
  }
  .gtoofi .box .item:hover .item_box .g_li:first-child p {
    color: #fff;
  }
  .gtoofi .box .item:hover .item_box .g_li p {
    color: #000;
  }
}
.gtoofi .box .item .item_box {
  width: 100%;
  height: 100%;
}
.gtoofi .box .item .g_li {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.08rem 0.4rem;
  min-height: 86px;
}
.gtoofi .box .item .g_li img,
.gtoofi .box .item .g_li svg {
  margin-right: 0.08rem;
}
.gtoofi .box .item .g_li:first-child {
  background: #f5f5f5;
  height: 86px;
}
.gtoofi .box .item .g_li p {
  color: #5A5E63;
}
.gtoofi .gb {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .gtoofi .gb {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .gtoofi .gb {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gtoofi .gb .item {
  border: 1px solid #E5E7EB;
  border-radius: 0.2rem;
  padding: 0.27rem 0.3rem 0.2rem;
}
.gtoofi .gb .item .gtop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gtoofi .gb .item .gtop h3 {
  font-weight: bold;
  line-height: 1.4;
}
.gtoofi .gb .item .gtop i {
  border: 4px solid #eee;
  border-radius: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.52rem;
  height: 0.52rem;
  color: var(--color);
}
@media (max-width: 1260px) {
  .gtoofi .gb .item .gtop i {
    width: 0.6rem;
    height: 0.6rem;
  }
}
@media (max-width: 767px) {
  .gtoofi .gb .item .gtop i {
    width: 0.74rem;
    height: 0.74rem;
  }
}
.gtoofi .gb .item .gtop i svg,
.gtoofi .gb .item .gtop i img {
  width: 46.15384615%;
  height: auto;
}
.gtoofi .gb .item .gtop i svg path,
.gtoofi .gb .item .gtop i img path {
  fill: var(--color);
}
.gtoofi .gb .item .g_num {
  margin-top: 0.23rem;
}
.gtoofi .gb .item .g_num p {
  display: inline-flex;
  font-weight: bold;
  background: linear-gradient(269deg, #5D2BFE 11.06%, #A488FE 78.67%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.40384615;
}
.gtoosi {
  margin: 1.15rem 0 0.26rem;
}
.gtoosi .box {
  margin-top: 0.66rem;
  background: url(../images/int5.png);
  background-size: contain;
  border: 1px solid #E5E7EB;
  border-radius: 0.2rem;
  padding: 0.2rem;
}
.gtoosi .item {
  margin-bottom: 0.2rem;
  width: 100%;
  border-radius: 0.12rem;
  border: 1px solid #000;
  background: #FFF;
  padding: 0.19rem 0.25rem;
}
.gtoosi .item .g_h3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gtoosi .item .g_h3 img,
.gtoosi .item .g_h3 svg {
  margin-right: 0.13rem;
}
.gtoosi .item .g_h3 p {
  font-weight: bold;
}
.gtoosi .item .git_con {
  margin-top: 0.13rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px 12px;
}
@media (max-width: 1260px) {
  .gtoosi .item .git_con {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .gtoosi .item .git_con {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gtoosi .item .git_con .g_li {
  border: 1px solid #E8E8E8;
  border-radius: 0.08rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0.54rem;
  padding: 0.1rem 0.05rem;
  transition: all 0.4s;
}
.gtoosi .item .git_con .g_li:hover {
  border: 1px solid var(--color);
}
.gtoosi .item .git_con .g_li img {
  margin-right: 8px;
}
.gtoosi .item .git_con .g_li p {
  font-weight: bold;
}
.gtoosi .gcon {
  width: 100%;
  border-radius: 0.12rem;
  border: 1px solid #000;
  background: #FFF;
  padding: 0.19rem 0.25rem;
}
.gtoosi .gcon .p1 {
  text-align: center;
}
.gtoosi .gcon .txt {
  background: url(../images/int5.png);
  background-size: contain;
  border: 1px solid #E5E7EB;
  border-radius: 0.08rem;
  padding: 0.13rem 0.2rem;
  margin-top: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .gtoosi .gcon .txt {
    flex-wrap: wrap;
    font-size: 14px;
  }
}
.gtoosi .gcon .txt .p2 {
  font-weight: bold;
  margin-right: 0.15rem;
}
.gtoosi .gcon .txt .p3 {
  color: #8b8b8b;
}
.gtoosi .gcon .txt .p3 span {
  margin-left: 0.05rem;
  color: #6633EE;
  font-weight: bold;
}
.gtoose {
  margin: 0.26rem 0 0;
  position: relative;
}
.gtoose .gvideo {
  width: 100%;
}
@media (max-width: 767px) {
  .gtoose .gvideo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.gtoose .gvideo img,
.gtoose .gvideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gtoose .gvideo:before {
  padding-top: 30.05208333%;
}
@media (max-width: 767px) {
  .gtoose .gvideo:before {
    padding-top: 80%;
  }
}
.gtoose .box {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .gtoose .box {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    padding: 1rem 5%;
  }
}
@media (max-width: 767px) {
  .gtoose .box .inner-title .title {
    font-size: 22px;
  }
}
.gtoose .box .g_a {
  margin-top: 0.42rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .gtoose .box .g_a {
    margin-bottom: 0;
  }
}
.gtoose .box .g_a .public-more {
  width: auto;
}
.gtoose .box .g_a .public-more .more2 {
  background: #fff;
}
.gtoose .box .g_a .public-more .more2:hover {
  background: var(--color);
}
/* 搜索 */
.g_search {
  padding-top: calc(var(--header-height) + var(--header-top));
}
.g_search .gt {
  padding: 1.16rem 0 0;
  background: #fff;
}
.g_search .gt form {
  display: flex;
  justify-content: center;
}
.g_search .gt form .search_box {
  padding: 0 0.2rem 0 0.23rem;
  width: 7.5rem;
  height: 0.66rem;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #777;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .g_search .gt form .search_box {
    height: 0.8rem;
  }
}
.g_search .gt form .search_box .gdel {
  cursor: pointer;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .g_search .gt form .search_box .gdel {
    width: 20px;
    height: 20px;
  }
}
.g_search .gt form .search_box .gdel:hover {
  background: var(--color);
}
.g_search .gt form .search_box .gdel:hover svg path {
  fill: #fff;
}
.g_search .gt form .search_box .gdel img,
.g_search .gt form .search_box .gdel svg {
  width: 41.66666667%;
  height: auto;
}
.g_search .gt form .search_box .gdel img path,
.g_search .gt form .search_box .gdel svg path {
  transition: all 0.4s;
}
.g_search .gt form .search_box input {
  padding: 0 0.3rem 0 0;
  width: 100%;
  color: #333;
}
.g_search .gt form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.16rem;
  width: 0.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .g_search .gt form .search_box button {
    width: 0.3rem;
  }
}
.g_search .gt form .search_box button svg {
  width: 100%;
  height: auto;
}
.g_search .gt form .search_box button svg path {
  fill: #000;
}
.g_search .gt .gt_nav {
  margin-top: 1.16rem;
}
@media (max-width: 767px) {
  .g_search .gt .gt_nav {
    margin-top: 0.4rem;
  }
}
.g_search .gt .gt_nav .hi-nav1 .swiper .swiper-slide {
  padding: 0 0.44rem;
  width: auto;
}
@media (max-width: 767px) {
  .g_search .gt .gt_nav .hi-nav1 .swiper .swiper-slide {
    padding: 0 0.3rem 0 0;
  }
}
.g_search .gt .gt_nav .hi-nav1 .swiper .swiper-slide.on a {
  color: #000;
}
.g_search .gt .gt_nav .hi-nav1 .swiper .swiper-slide.on a::after {
  width: 100%;
}
.g_search .gt .gt_nav .hi-nav1 .swiper .swiper-slide a {
  display: block;
  padding: 0.2rem 0;
  color: rgba(0, 0, 0, 0.5);
  position: relative;
}
.g_search .gt .gt_nav .hi-nav1 .swiper .swiper-slide a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #5D2BFE;
  bottom: 0;
  left: 0;
  transition: all 0.4s;
}
.g_search .gb {
  padding: 0.7rem 0 1.4rem;
  background: #F8F8FF;
}
.g_search .gb .g_err {
  text-align: center;
  padding: 0.68rem 0 1.38rem;
}
.g_search .gb .g_err img,
.g_search .gb .g_err svg {
  width: 0.78rem;
  height: auto;
}
.g_search .gb .g_err p {
  color: rgba(0, 0, 0, 0.5);
  margin-top: 0.33rem;
}
.g_search .gb .gb_li .g_tit {
  padding-bottom: 0.15rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.g_search .gb .gb_li .g_tit h2 {
  font-weight: bold;
}
.g_search .gb .gb_li .g_tit p {
  color: rgba(0, 0, 0, 0.5);
}
.g_search .gb .sea_pro .sea_pro_box {
  padding: 0.38rem 0 0.42rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .g_search .gb .sea_pro .sea_pro_box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.g_search .gb .sea_pro .sea_pro_box .item {
  height: auto;
  position: relative;
  display: flex;
  z-index: 1;
  background: #fff;
  border-radius: 0.2rem;
  padding: 0.32rem 0.38rem 0.32rem 0.32rem;
}
@media (max-width: 767px) {
  .g_search .gb .sea_pro .sea_pro_box .item {
    flex-direction: column;
  }
}
.g_search .gb .sea_pro .sea_pro_box .item .block-link {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.g_search .gb .sea_pro .sea_pro_box .item .headline {
  height: auto;
  flex: 1;
}
.g_search .gb .sea_pro .sea_pro_box .item .headline .title {
  width: 100%;
  height: auto;
  font-weight: 600;
  font-size: var(--font18);
  color: #000000;
  transition: all 0.35s ease;
}
.g_search .gb .sea_pro .sea_pro_box .item .headline .details {
  width: 100%;
  height: auto;
  margin-top: 4px;
  font-size: 12px;
  color: #5A5E63;
}
.g_search .gb .sea_pro .sea_pro_box .item .public-more {
  width: auto;
  flex-shrink: 0;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .g_search .gb .sea_pro .sea_pro_box .item .public-more {
    margin: 0.3rem 0 0 0;
  }
}
.g_search .gb .sea_pro .sea_pro_box .item .block-link:hover ~ .headline .title {
  color: var(--color);
}
.g_search .gb .sea_pro .sea_pro_box .item .block-link:hover ~ .public-more .more {
  border-color: transparent;
  background: var(--color);
  color: #FFFFFF;
}
.g_search .gb .sea_pro .sea_pro_box .item .block-link:hover ~ .public-more .more .word span {
  transform: translateY(-100%);
  transition: transform cubic-bezier(0.72, 0.01, 0, 1) 0.6s;
}
.g_search .gb .sea_sol .sea_sol_box {
  margin-bottom: 0.16rem;
  padding: 0.38rem 0 0.42rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .g_search .gb .sea_sol .sea_sol_box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.g_search .gb .sea_sol .sea_sol_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  background: #fff;
}
.g_search .gb .sea_sol .sea_sol_box .item a {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  padding: 0.25rem 0.26rem;
  transition: all 0.35s ease;
}
.g_search .gb .sea_sol .sea_sol_box .item a .icon-box {
  width: 0.52rem;
  min-width: 30px;
  height: 0.52rem;
  min-height: 30px;
  margin-right: 0.12rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.1rem;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  color: var(--color);
  transition: all 0.35s ease;
  overflow: hidden;
}
@media (max-width: 767px) {
  .g_search .gb .sea_sol .sea_sol_box .item a .icon-box {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.3rem;
  }
}
.g_search .gb .sea_sol .sea_sol_box .item a .icon-box .icon {
  width: 50%;
  max-width: 24px;
  height: 50%;
  max-height: 24px;
  position: relative;
  z-index: 5;
  background: currentColor;
  -webkit-mask: no-repeat center / 100%;
  mask: no-repeat center / 100%;
}
.g_search .gb .sea_sol .sea_sol_box .item a .icon-box::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(41.62deg, #000000 -9.69%, #6633EE 58.32%, #FFFFFF 123.33%);
  opacity: 0;
  transition: all 0.35s ease;
}
.g_search .gb .sea_sol .sea_sol_box .item a .info-box {
  width: 100%;
  min-width: 0;
  height: auto;
  flex: 1;
}
.g_search .gb .sea_sol .sea_sol_box .item a .info-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font14);
  color: #000000;
}
.g_search .gb .sea_sol .sea_sol_box .item a .info-box .details {
  width: 100%;
  height: auto;
  margin-top: 4px;
  font-size: 12px;
  color: #5A5E63;
}
.g_search .gb .sea_sol .sea_sol_box .item a:hover {
  /* background: #F7F6FA; */
}
.g_search .gb .sea_sol .sea_sol_box .item a:hover .icon-box {
  border-color: transparent;
  color: #FFFFFF;
}
.g_search .gb .sea_sol .sea_sol_box .item a:hover .icon-box::after {
  opacity: 1;
}
.g_search .gb .sea_skill {
  margin-bottom: 0.75rem;
}
.g_search .gb .sea_skill .sea_skill_box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.32rem;
}
.g_search .gb .sea_skill .sea_skill_box .menu-box .item {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  background: #FFFFFF;
  box-shadow: 0 6px 15.6px -5px #DDDEEE;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  overflow: hidden;
}
.g_search .gb .sea_skill .sea_skill_box .menu-box .item a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.g_search .gb .sea_skill .sea_skill_box .menu-box .item a .images {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.g_search .gb .sea_skill .sea_skill_box .menu-box .item a .images .pb {
  padding-bottom: calc(165/387*100%);
}
.g_search .gb .sea_skill .sea_skill_box .menu-box .item a .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g_search .gb .sea_skill .sea_skill_box .menu-box .item a .info-box {
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.2rem 0.35rem 0.25rem 0.2rem;
}
.g_search .gb .sea_skill .sea_skill_box .menu-box .item a .info-box .info {
  width: 100%;
  height: auto;
  min-height: 0;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.g_search .gb .sea_skill .sea_skill_box .menu-box .item a .info-box .info .title {
  width: 100%;
  height: auto;
  font-weight: 600;
  font-size: var(--font16);
  color: #16181D;
  line-height: 1.375;
}
.g_search .gb .sea_skill .sea_skill_box .menu-box .item a .info-box .info .time {
  width: auto;
  height: auto;
  display: block;
  margin-top: 1em;
  font-size: 12px;
  color: #66717F;
}
.g_search .gb .sea_skill .sea_skill_box .menu-box .item a .info-box .classify {
  width: 100%;
  height: auto;
  margin-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.12rem;
}
.g_search .gb .sea_skill .sea_skill_box .menu-box .item a .info-box .classify span {
  width: auto;
  height: auto;
  border-radius: 0.065rem;
  border: 1px solid #E4DFFF;
  padding: 5px;
  font-size: 12px;
  color: var(--color);
  line-height: 1;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.g_search .gb .sea_skill .sea_skill_box .menu-box .item:hover {
  box-shadow: 0 13px 38.1px 0 #DDDEEE;
}
@media (max-width:768px) {
  .g_search .gb .sea_skill .sea_skill_box .menu-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .g_search .gb .sea_skill .sea_skill_box .menu-box {
    grid-template-columns: 1fr;
  }
}
.g_search .gb .sea_skill .sea_skill_box .public-more {
  margin-top: 0.45rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.g_search .gb .sea_skill .sea_skill_box .public-more .more .icon {
  transform: rotate(90deg);
}
.g_search .gb .sea_research .sea_research_box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.32rem;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  background: #FFFFFF;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  overflow: hidden;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .images .label {
  width: auto;
  height: auto;
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 10;
  padding: 0.25em 0.75em;
  border-radius: 6px;
  background: var(--color);
  font-size: var(--font16);
  color: #FFFFFF;
  overflow: hidden;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .images .pb {
  padding-bottom: calc(165/387*100%);
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .info-box {
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.22rem 0.3rem;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .info-box .title {
  width: 100%;
  height: auto;
  font-weight: 600;
  font-size: var(--font16);
  line-height: 1.375;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .info-box .title a {
  color: #16181D;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .info-box .title a:hover {
  color: var(--color);
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .info-box .info {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .info-box .info .classify {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.12rem;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .info-box .info .classify span {
  width: auto;
  height: auto;
  border-radius: 0.065rem;
  border: 1px solid #E4DFFF;
  padding: 8px 0.5em;
  font-size: 12px;
  color: var(--color);
  line-height: 1;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .info-box .info .column {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.2rem;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .info-box .info .column .time {
  width: auto;
  height: auto;
  display: block;
  font-size: var(--font14);
  color: #66717F;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .info-box .info .column .public-more {
  width: auto;
  margin: 0;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .info-box .info .column .public-more .more {
  width: auto;
  min-width: auto;
  height: 0.4rem;
  min-height: 32px;
  padding: 0 0.2rem;
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .info-box .info .column .public-more .more .word {
  font-size: var(--font14);
}
.g_search .gb .sea_research .sea_research_box .menu-box .item .info-box .info .column .public-more .more .icon {
  width: 10px;
  height: 10px;
  transform: rotate(0deg);
}
.g_search .gb .sea_research .sea_research_box .menu-box .item:hover {
  box-shadow: 0 13px 38.1px 0 #DDDEEE;
}
@media (max-width:768px) {
  .g_search .gb .sea_research .sea_research_box .menu-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .g_search .gb .sea_research .sea_research_box .menu-box {
    grid-template-columns: 1fr;
  }
}
.g_search .gb .sea_research .sea_research_box .public-more {
  margin-top: 0.45rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.g_search .gb .sea_research .sea_research_box .public-more .more .icon {
  transform: rotate(90deg);
}
.g_search_down {
  position: absolute;
  width: 100%;
  top: 100%;
  background: #fff;
  display: none;
}
.g_search_down .down_con {
  display: flex;
  justify-content: center;
  box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.03);
}
.g_search_down .down_box {
  padding: 0.69rem 0 0.75rem;
  width: calc(750/1920*100%);
}
@media (max-width: 991px) {
  .g_search_down .down_box {
    width: 100%;
    padding: 0.8rem 5%;
  }
}
.g_search_down .down_box form {
  display: flex;
  justify-content: center;
  width: 100%;
}
.g_search_down .down_box form .search_box {
  padding: 0 0.2rem 0 0.23rem;
  width: 100%;
  height: 0.66rem;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #777;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .g_search_down .down_box form .search_box {
    height: 0.8rem;
  }
}
.g_search_down .down_box form .search_box .gdel {
  cursor: pointer;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .g_search_down .down_box form .search_box .gdel {
    width: 20px;
    height: 20px;
  }
}
.g_search_down .down_box form .search_box .gdel:hover {
  background: var(--color);
}
.g_search_down .down_box form .search_box .gdel:hover svg path {
  fill: #fff;
}
.g_search_down .down_box form .search_box .gdel img,
.g_search_down .down_box form .search_box .gdel svg {
  width: 41.66666667%;
  height: auto;
}
.g_search_down .down_box form .search_box .gdel img path,
.g_search_down .down_box form .search_box .gdel svg path {
  transition: all 0.4s;
}
.g_search_down .down_box form .search_box input {
  padding: 0 0.3rem 0 0;
  width: 100%;
  color: #333;
}
.g_search_down .down_box form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.16rem;
  width: 0.2rem;
  height: auto;
}
@media (max-width: 767px) {
  .g_search_down .down_box form .search_box button {
    width: 0.3rem;
  }
}
.g_search_down .down_box form .search_box button svg {
  width: 100%;
  height: auto;
}
.g_search_down .down_box form .search_box button svg path {
  fill: #5D2BFE;
}
.g_search_down .down_box .gb {
  margin-top: 0.29rem;
}
.g_search_down .down_box .gb .hot_tit {
  color: #777;
}
.g_search_down .down_box .gb .g_hot {
  margin-top: 0.26rem;
}
.g_search_down .down_box .gb .g_hot a {
  display: flex;
  align-items: center;
  margin: 0.16rem 0;
}
.g_search_down .down_box .gb .g_hot a:hover i svg path,
.g_search_down .down_box .gb .g_hot a:hover i img path {
  fill: #5D2BFE;
}
.g_search_down .down_box .gb .g_hot a:hover p {
  color: #5D2BFE;
}
.g_search_down .down_box .gb .g_hot a i {
  margin-right: 0.08rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  color: #777;
}
@media (max-width: 1260px) {
  .g_search_down .down_box .gb .g_hot a i {
    width: 11px;
    height: 11px;
  }
}
@media (max-width: 767px) {
  .g_search_down .down_box .gb .g_hot a i {
    width: 10px;
    height: 10px;
  }
}
.g_search_down .down_box .gb .g_hot a i svg,
.g_search_down .down_box .gb .g_hot a i img {
  width: 100%;
  height: auto;
}
.g_search_down .down_box .gb .g_hot a i svg path,
.g_search_down .down_box .gb .g_hot a i img path {
  transition: all 0.4s;
  fill: #777;
}
.g_search_down .down_box .gb .g_hot a p {
  color: #000;
  transition: all 0.4s;
}
