@charset "utf-8";
/*------------------------------------------------
--css  nav.css独立出来，提高加载速度
--by    市场部 Web Designer&Front end Engineer  Sivan
--date  2025-07-25  

--需要提前载入24栅格系统 grid.min.css
--主流分辨率：1920px、1440px、1366px（优先考虑PC端）
--PC端内容宽度：1440px，前端JS转换100px=rem、
--看到写两个单位px rem不要慌，继续阅读本段直至理解

命名与书写约定：
保留类：con nav_w .list_w 
书写请写：父类+模块

-------------------------------------------------*/
/*头部header*/
.fixed {
  position: fixed;
  z-index: 10;
  top: 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: transparent;
}
.nav_w {
  margin: auto;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  background-color: transparent;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 1200px) {
  .nav_w {
    margin-top: 0;
  }
  .nav_w.on {
    background: rgba(51, 63, 84, 0.64);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    backdrop-filter: saturate(180%) blur(24px);
  }
}
.nav_w .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.nav_w.hidenav {
  position: fixed;
  top: -64px;
  z-index: 10;
}
.nav_w.shownav {
  position: fixed;
  top: 0;
  z-index: 99;
  background-image: linear-gradient(
    to bottom,
    rgba(31, 42, 62, 0.64),
    rgba(31, 42, 62, 0)
  );
  -webkit-backdrop-filter: saturate(180%) blur(32px);
  -moz-backdrop-filter: saturate(180%) blur(32px);
  backdrop-filter: saturate(180%) blur(32px);
  -webkit-transition: all 0.32s ease, opacity 0.32s ease;
  -o-transition: all 0.32s ease, opacity 0.32s ease;
  -moz-transition: all 0.32s ease, opacity 0.32s ease;
  transition: all 0.32s ease, opacity 0.32s ease;
}
.nav_bg {
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  max-width: 19.2rem;
  height: 64px;
  overflow: hidden;
  background-color: var(--color_white);
  box-shadow: 0px 16px 64px 0px rgba(150, 160, 170, 0.16);
}
.fixed .nav_bg {
  background-color: transparent;
  box-shadow: none;
}
.nav_w .nav_left {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.nav_w .logo_con {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
}
.nav_w .logo_con #logo {
  position: relative;
  z-index: 1;
}
.nav_w .logo_con a {
  display: block;
  display: inline-block;
  background-size: cover;
  width: 300px;
  height: 40px;
}
#logo #logo_svg:hover {
  fill: #00ffed !important;
}
/* 定义透明度变化动画 */
@keyframes blink {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 0.6;
    transform: translateY(-2px);
  }
  75% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 当鼠标悬停在 #logo_svg 上时，为 #text 内的每个 path 元素添加动画 */
#logo_svg:hover #logo_a,
#logo_svg:hover #logo_b,
#logo_svg path,
#logo_svg:hover #T,
#logo_svg:hover #m {
  opacity: 1;
  transition: all 0.3s ease;
}
#logo_svg:hover #logo_a {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s infinite;
}
#logo_svg:hover #logo_b {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s infinite;
}
#logo_svg:hover #text path:nth-child(1) {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s infinite;
}
#logo_svg:hover #text path:nth-child(2) {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s infinite;
}
#logo_svg:hover #text path:nth-child(3) {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s infinite;
}
#logo_svg:hover #text path:nth-child(4) {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s infinite;
}
#logo_svg:hover #text path:nth-child(5) {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s infinite;
}
#logo_svg:hover #text path:nth-child(6) {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s infinite;
}
#logo_svg:hover #text path:nth-child(7) {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s infinite;
}
#logo_svg:hover #text path:nth-child(8) {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s infinite;
}
#logo_svg:hover #text path:nth-child(9) {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s infinite;
}
#logo_svg:hover #text path:nth-child(10) {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s infinite;
}
#logo_svg:hover #text path:nth-child(11) {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s infinite;
}
#logo_svg:hover #text path:nth-child(12) {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s infinite;
}
#logo_svg:hover #T {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s infinite;
}
#logo_svg:hover #M {
  animation: blink 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s infinite;
}
/* 鼠标移出时移除动画 */
#logo_svg path,
#TM,
#logo_a,
#logo_b {
  animation: none;
}
@media screen and (max-width: 1200px) {
  .nav_w .logo_con a {
    background-size: cover;
    width: 200px;
    height: 40px;
  }
  .nav_w #logo_svg {
    background-size: cover;
    width: 200px;
    height: 40px;
    transition: all 0.32s ease, opacity 0.32s ease;
  }
  .nav_w.on #logo_svg {
    -webkit-transform: translate3d(0, -16px, 0);
    transform: translate3d(0, 0px, 0);
    transition: all 0.32s ease, opacity 0.32s ease;
  }
}
/*顶部主导航*/
.nav_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  /*! padding-right: 0.32rem; */
}
@media screen and (max-width: 1200px) {
  .nav_list {
    display: none;
    opacity: 0;
  }
}
.nav_list .nav_li h6 a {
  position: relative;
  z-index: 1;
  display: block;
  display: inline-block;
  line-height: 52px;
  font-size: 16px;
  color: var(--color_white);
  padding: 0 0.4rem;
  font-weight: 500;
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.nav_list .nav_li h6 a:hover {
  color: var(--color_primary);
}
.nav_list .nav_li.active h6 a {
  color: var(--color_primary);
}
/*向上箭头*/
.nav_li h6 a em {
  display: block;
  opacity: 0;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  z-index: 10;
  right: 24px;
  bottom: -20px;
  border-left: solid 10px transparent;
  border-bottom: solid 10px var(--color_white);
  border-right: solid 10px transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.nav_li.active em {
  opacity: 1;
}
.nav_li.active h6 a:hover em {
  opacity: 1;
}
.nav_li .icon_w {
  display: inline-block;
  padding: 0 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.nav_li .icon_more {
  padding: 0;
  font-size: 24px;
}
.nav_li .icon_product {
  width: 11px;
  height: 11px;
  vertical-align: baseline;
}
.nav_li.active:hover .icon_bottom,
.nav_li.active .icon_bottom {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
/*二级导航-子菜单*/
.nav_con .sub_w {
  margin: auto;
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 72px;
  width: 13.88rem;
  min-width: 13.88rem;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-box-shadow: 0rem 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0rem 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
  box-shadow: 0rem 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1366px) {
  .nav_con .sub_w {
    width: 12rem;
    min-width: 12rem;
  }
}
@media screen and (max-width: 1200px) {
  .nav_con .sub_w {
    width: 100%;
    min-width: 100%;
  }
}
.nav_con .tt_w {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.nav_con .tt_w .sub_tt {
  position: relative;
  font-size: 16px;
  font-weight: 700;
}
.nav_con .tt_w .sub_tt:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -8px;
  top: -8px;
  width: 24px;
  height: 24px;
  background-color: #e9f2ef;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
}
.nav_con .tt_w .btn_more {
  display: block;
  display: inline-block;
  height: 24px;
  line-height: 24px;
  padding-left: 0.16rem;
  padding-right: 0.16rem;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  color: var(--color_primary);
  -webkit-border-radius: 0.32rem;
  -moz-border-radius: 0.32rem;
  border-radius: 0.32rem;
}
.nav_con .tt_w .btn_more:hover {
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.nav_con .coming_soon {
  cursor: help;
  pointer-events: painted;
  color: var(--color_dark);
}
.nav_con .coming {
  font-weight: normal;
  font-size: 10px;
  padding: 0.04rem 0.04rem;
  color: var(--color_light);
  margin-left: 8px;
  border: 1px solid var(--color_light);
}
.nav_con .tag_w {
  position: relative;
  font-weight: 500;
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  padding: 0.04rem 0.04rem;
  margin-right: 0.04rem;
  border-radius: 2px;
}
.nav_con .tag_new {
  color: var(--ec_green);
}
.nav_con .tag_hot {
  color: var(--ec_orange);
}
.nav_con .tag_w {
  position: relative;
  font-weight: 500;
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  padding: 0.04rem 0.04rem;
  margin-right: 0.04rem;
  border-radius: 2px;
}
.nav_con .tag_new {
  color: var(--ec_green);
}
.nav_con .tag_hot {
  color: var(--ec_orange);
}
.sub_pro {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0.4rem 0.4rem;
}
.sub_pro .pro_l {
  flex: 0 1 55%;
}
.sub_pro .pro_r {
  flex: 0 1 40%;
}
.sub_pro .pro_scrm {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  text-align: center;
  padding-top: 0.32rem;
}
.sub_pro .pro_list {
  flex: 1 1 auto;
  padding: 0.16rem 0.16rem;
  margin-right: 3%;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
}
.sub_pro .pro_list a {
  display: block;
  line-height: 0.4rem;
  color: var(--color_dark);
}
.sub_pro .pro_list a:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.sub_pro .pro_list .img_w {
  max-width: 72px;
  margin-left: auto;
  margin-right: auto;
}
.sub_pro .pro_list h6 {
  padding-top: 0;
  padding-bottom: 0.16rem;
  font-size: 16px;
}
.sub_pro .pro_list:nth-child(1) {
  background-image: -moz-linear-gradient(-90deg, #e9f2ef 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(-90deg, #e9f2ef 0%, #ffffff 100%);
  background-image: -ms-linear-gradient(-90deg, #e9f2ef 0%, #ffffff 100%);
}
.sub_pro .pro_list:nth-child(2) {
  background-image: -moz-linear-gradient(-90deg, #faf4ed 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(-90deg, #faf4ed 0%, #ffffff 100%);
  background-image: -ms-linear-gradient(-90deg, #faf4ed 0%, #ffffff 100%);
}
.sub_pro .pro_list:nth-child(3) {
  background-image: -moz-linear-gradient(-90deg, #eaf6fd 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(-90deg, #eaf6fd 0%, #ffffff 100%);
  background-image: -ms-linear-gradient(-90deg, #eaf6fd 0%, #ffffff 100%);
}
.sub_pro .pro_list:nth-child(4) {
  background-image: -moz-linear-gradient(-90deg, #f3f4fb 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(-90deg, #f3f4fb 0%, #ffffff 100%);
  background-image: -ms-linear-gradient(-90deg, #f3f4fb 0%, #ffffff 100%);
}
.sub_pro .pro_other {
  padding-top: 0.24rem;
}
.sub_pro .pro_other .list_w {
  display: flex;
  flex-wrap: nowrap;
}
.sub_pro .pro_other li {
  margin-right: 6%;
}
.sub_pro .pro_other li:last-child {
  margin-right: 3%;
}
.sub_pro .pro_other .img_w {
  max-width: 1.4rem;
  margin-left: auto;
  margin-right: auto;
}
.sub_pro .pro_other .text_w {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0.08rem 0.04rem;
}
.sub_pro .pro_other li:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.sub_pro .pro_other li:hover a {
  color: var(--color_primary);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.sub_pro .price_w {
  padding-top: 0.24rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: center;
  color: var(--color_white);
}
.sub_pro .price_w a {
  color: var(--color_white);
}
.sub_pro .price_w a:hover {
  color: var(--color_white);
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.sub_pro .price_w .price_list {
  flex: 1 1 33.33%;
  padding: 0.24rem 0.08rem;
  margin-right: 3%;
  font-family: "num", Helvetica, arial, sans-serif;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
}
.sub_pro .price_w .price_list .info {
  position: relative;
  padding-bottom: 0.08rem;
  padding-left: 0.16rem;
}
.sub_pro .price_w .price_list i {
  position: absolute;
  left: 8px;
  top: 4px;
}
.sub_pro .price_w .price_list h6 {
  padding: 0.16rem 0;
}
.sub_pro .price_w .price_list b {
  font-size: 0.36rem;
}
.sub_pro .price_w .standard_w {
  background-image: -moz-linear-gradient(-90deg, #2f85f9 0%, #5fbced 100%);
  background-image: -webkit-linear-gradient(-90deg, #2f85f9 0%, #5fbced 100%);
  background-image: -ms-linear-gradient(-90deg, #2f85f9 0%, #5fbced 100%);
  -webkit-box-shadow: 0rem 0.16rem 0.32rem rgba(92, 184, 238, 0.16);
  -moz-box-shadow: 0rem 0.16rem 0.32rem rgba(92, 184, 238, 0.16);
  box-shadow: 0rem 0.16rem 0.32rem rgba(92, 184, 238, 0.16);
}
.sub_pro .price_w .enterprise_w {
  background-image: -moz-linear-gradient(-90deg, #f1676f 0%, #fa9387 100%);
  background-image: -webkit-linear-gradient(-90deg, #f1676f 0%, #fa9387 100%);
  background-image: -ms-linear-gradient(-90deg, #f1676f 0%, #fa9387 100%);
  -webkit-box-shadow: 0rem 0.16rem 0.32rem rgba(238, 92, 92, 0.16);
  -moz-box-shadow: 0rem 0.16rem 0.32rem rgba(238, 92, 92, 0.16);
  box-shadow: 0rem 0.16rem 0.32rem rgba(238, 92, 92, 0.16);
}
.sub_pro .price_w .senior_w {
  background-image: -moz-linear-gradient(-90deg, #687ff7 0%, #8fa8fd 100%);
  background-image: -webkit-linear-gradient(-90deg, #687ff7 0%, #8fa8fd 100%);
  background-image: -ms-linear-gradient(-90deg, #687ff7 0%, #8fa8fd 100%);
  -webkit-box-shadow: 0rem 0.16rem 0.32rem rgba(142, 167, 253, 0.16);
  -moz-box-shadow: 0rem 0.16rem 0.32rem rgba(142, 167, 253, 0.16);
  box-shadow: 0rem 0.16rem 0.32rem rgba(142, 167, 253, 0.16);
}
.sub_solution {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0.4rem 0.4rem;
}
.sub_solution .solution_l {
  flex: 0 1 55%;
}
.sub_solution .solution_r {
  flex: 0 1 40%;
}
.sub_solution .adx_w {
  display: block;
  padding-top: 0.54rem;
}
.sub_solution .solution_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 0.32rem;
}
.sub_solution .solution_ul li {
  flex: 0 1 47%;
  margin-right: 3%;
  margin-bottom: 0.32rem;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
}
.sub_solution .solution_ul li a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: 0.16rem 0.24rem;
  color: var(--color_dark);
}
.sub_solution .solution_ul li a:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.sub_solution .solution_ul li .img_w {
  max-width: 44px;
}
.sub_solution .solution_ul li .text_w {
  padding-left: 0.16rem;
}
.sub_solution .solution_ul li h6 {
  padding-top: 0.08rem;
  padding-bottom: 0.16rem;
}
.sub_solution .solution_ul li p {
  margin-top: 0.04rem;
  color: var(--color_muted);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.sub_solution .solution_ul li:nth-child(1) {
  background-image: -moz-linear-gradient(0deg, #eaf6fd 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(0deg, #eaf6fd 0%, #ffffff 100%);
  background-image: -ms-linear-gradient(0deg, #eaf6fd 0%, #ffffff 100%);
  background: #f8f9fb url("../images/nav/png_bg_blue.png") no-repeat center
    center;
  background-size: cover;
}
.sub_solution .solution_ul li:nth-child(2) {
  background-image: -moz-linear-gradient(0deg, #faf4ed 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(0deg, #faf4ed 0%, #ffffff 100%);
  background-image: -ms-linear-gradient(0deg, #faf4ed 0%, #ffffff 100%);
  background: #f8f9fb url("../images/nav/png_bg_yellow.png") no-repeat center
    center;
  background-size: cover;
}
.sub_solution .solution_ul li:nth-child(3) {
  background-image: -moz-linear-gradient(0deg, #e9f2ef 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(0deg, #e9f2ef 0%, #ffffff 100%);
  background-image: -ms-linear-gradient(0deg, #e9f2ef 0%, #ffffff 100%);
  background: #f8f9fb url("../images/nav/png_bg_green.png") no-repeat center
    center;
  background-size: cover;
}
.sub_solution .solution_ul li:nth-child(4) {
  background-image: -moz-linear-gradient(0deg, #f3f4fb 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(0deg, #f3f4fb 0%, #ffffff 100%);
  background-image: -ms-linear-gradient(0deg, #f3f4fb 0%, #ffffff 100%);
  background: #f8f9fb url("../images/nav/png_bg_blue.png") no-repeat center
    center;
  background-size: cover;
}
.sub_solution .solution_ul li:nth-child(5) {
  background-image: -moz-linear-gradient(0deg, #e9f2ef 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(0deg, #e9f2ef 0%, #ffffff 100%);
  background-image: -ms-linear-gradient(0deg, #e9f2ef 0%, #ffffff 100%);
  background: #f8f9fb url("../images/nav/png_bg_green.png") no-repeat center
    center;
  background-size: cover;
}
.sub_solution .solution_ul li:nth-child(6) {
  background-image: -moz-linear-gradient(0deg, #faf4ed 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(0deg, #faf4ed 0%, #ffffff 100%);
  background-image: -ms-linear-gradient(0deg, #faf4ed 0%, #ffffff 100%);
  background: #f8f9fb url("../images/nav/png_bg_yellow.png") no-repeat center
    center;
  background-size: cover;
}
.sub_case {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0.4rem 0.4rem;
}
.sub_case .case_l {
  flex: 0 1 55%;
}
.sub_case .case_r {
  flex: 0 1 40%;
}
.sub_case .case_r .adx_w {
  display: block;
  padding-top: 0.54rem;
}
.sub_case .case_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 0.32rem;
}
.sub_case .case_ul li {
  flex: 0 1 47%;
  margin-right: 3%;
  margin-bottom: 0.16rem;
  background: #f8f9fb;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
}
.sub_case .case_ul li img {
  min-width: 48px;
}
.sub_case .case_ul li a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: 0.08rem 0.24rem;
  color: var(--color_dark);
}
.sub_case .case_ul li a:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.sub_case .case_ul li h6 {
  padding-top: 0.08rem;
  padding-bottom: 0.16rem;
}
.sub_case .case_ul li p {
  padding-left: 0.16rem;
}
.sub_support {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0.4rem 0.4rem;
}
.sub_support .support_l {
  flex: 0 1 60%;
}
.sub_support .support_r {
  flex: 0 1 30%;
}
.sub_support .support_r .adx_w {
  display: block;
  margin-top: 0.32rem;
}
.sub_support .support_ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 0.32rem;
}
.sub_support .support_ul li {
  flex: 0 1 33.33%;
  margin-right: 2%;
  margin-bottom: 0.16rem;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
  background: #f8f9fb;
}
.sub_support .support_ul li .text_w {
  flex: 1 1 100%;
  padding-left: 0.16rem;
}
.sub_support .support_ul li a {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  padding: 0.32rem 0.16rem;
  color: var(--color_dark);
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
}
.sub_support .support_ul li a:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.sub_support .support_ul li b {
  font-size: 16px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.sub_support .support_ul li h6 {
  padding-top: 0.08rem;
  padding-bottom: 0.16rem;
}
.sub_support .support_ul li p {
  margin-top: 0.04rem;
  color: var(--color_muted);
}
.sub_support .support_ul li .img_w {
  flex: 1 0 auto;
}
.sub_support .support_box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 0.32rem;
}
.sub_support .support_box li {
  flex: 0 1 33.33%;
  margin-right: 2%;
  margin-bottom: 0.16rem;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
  background: #f8f9fb;
}
.sub_support .support_box li .text_w {
  flex: 1 1 100%;
  padding-left: 0.16rem;
}
.sub_support .support_box li b {
  font-size: 16px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.sub_support .support_box li h6 {
  padding-top: 0.08rem;
  padding-bottom: 0.16rem;
}
.sub_support .support_box li p {
  margin-top: 0.04rem;
  color: var(--color_muted);
}
.sub_support .support_box li .img_w {
  flex: 1 0 auto;
}
.sub_support .support_box li a {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  padding: 0.32rem 0.16rem;
  color: var(--color_dark);
}
.sub_support .support_box li a:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.sub_support .support_box li:nth-child(1) {
  background: #f8f9fb url("../images/nav/icon_support_bg_agent.png") no-repeat
    center center;
  background-size: cover;
}
.sub_support .support_box li:nth-child(2) {
  background: #f8f9fb url("../images/nav/icon_support_bg_api.png") no-repeat
    center center;
  background-size: cover;
}
.sub_support .support_box li:nth-child(3) {
  background: #f8f9fb url("../images/nav/icon_support_bg_blog.png") no-repeat
    center center;
  background-size: cover;
}
.sub_support .contact_our {
  padding-bottom: 0.72rem;
  font-family: "num", Helvetica, arial, sans-serif;
}
.sub_support .contact_our .text_w {
  padding: 0;
}
.sub_support .contact_our .tel {
  font-size: 0.56rem;
  padding-top: 0.24rem;
}
.sub_support .contact_our .time {
  color: var(--color_muted);
}
.sub_support .contact_cs .btn_w {
  padding-top: 0.24rem;
  padding-bottom: 0.16rem;
}
.sub_support .contact_cs .tips {
  font-family: "num", Helvetica, arial, sans-serif;
}
.sub_about {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0.4rem 0.4rem;
}
.sub_about .about_l {
  flex: 0 1 60%;
}
.sub_about .about_r {
  flex: 0 1 30%;
}
.sub_about .ul_w {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
}
.sub_about .ul_w li {
  flex: 0 1 auto;
  margin-right: 0.16rem;
  margin-bottom: 0.16rem;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
  background: #f8f9fb;
}
.sub_about .ul_w li .text_w {
  flex: 1 1 100%;
  padding-left: 0.16rem;
}
.sub_about .ul_w li a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 1.6rem;
  text-align: center;
  padding: 0.24rem 0.16rem;
  color: var(--color_dark);
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
}
.sub_about .ul_w li a:hover {
  color: var(--color_white);
  background-color: var(--color_primary);
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.sub_about .ul_w li .update {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 6px;
  height: 6px;
  color: #fff;
  background-color: var(--color_primary);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.sub_about .ul_w li a:hover .update {
  background-color: var(--color_white);
  -webkit-opacity: 0.64;
  -moz-opacity: 0.64;
  opacity: 0.64;
}
.sub_about .ul_w li .coming_soon:hover {
  color: var(--color_dark);
  background-color: transparent;
  cursor: default;
  -webkit-opacity: 0.32;
  -moz-opacity: 0.32;
  opacity: 0.32;
}
.sub_about .ul_w li b {
  font-size: 16px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.sub_about .ul_w li h6 {
  padding-top: 0.08rem;
  padding-bottom: 0.16rem;
}
.sub_about .ul_w li p {
  margin-top: 0.04rem;
  color: var(--color_muted);
}
.sub_about .ul_w li .img_w {
  flex: 1 0 auto;
}
.sub_about .contact_our {
  padding-bottom: 0.72rem;
  font-family: "num", Helvetica, arial, sans-serif;
}
.sub_about .contact_our .text_w {
  padding: 0;
}
.sub_about .contact_our .text_w p {
  padding-top: 16px;
}
.sub_about .contact_our .info_w {
  padding-top: 0.48rem;
}
.sub_about .contact_our .info_w p {
  padding-top: 24px;
}
.sub_about .contact_our .tel {
  font-size: 0.56rem;
  padding-top: 0.24rem;
}
.sub_about .contact_our .time {
  color: var(--color_muted);
}
/*子菜单公用样式a标签、hove样式*/
.sub_w a {
  color: var(--color_dark);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.sub_w a a:hover {
  color: var(--color_primary);
}
.sub_w a a:hover span {
  color: var(--color_primary);
}
.sub_w a a .icon_sub {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.sub_w a a:hover .icon_sub {
  transform: translateX(4px);
}
.sub_w a a .img_r {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sub_w a a:hover .img_r {
  transform: translateY(-4px);
  opacity: 0.9;
}
/*右侧导航-登录/注册/演示功能区*/
.nav_right {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  height: 56px;
  font-size: 16px;
}
.nav_right a {
  color: var(--color_white);
  padding: 0 0.24rem;
}
.fixed .nav_right a {
  color: #ffffff;
}
.shownav .nav_right a {
  color: var(--color_white);
}
.fixed .nav_right a {
  color: #ffffff;
  padding: 0 0.16rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  text-align: left;
}

@media screen and (max-width: 1200px) {
  .fixed .nav_right a {
    color: #ffffff;
    padding: 0 0.16rem;
  }
}
.nav_right a:hover {
  opacity: 1;
  color: #00ffed;
}
.nav_email {
  font-size: 26px;
}

.nav_language {
  font-size: 22px;
}

@media screen and (max-width: 750px) {
  .nav_email {
    display: none;
  }
  .fixed .nav_right .nav_email {
    display: none;
  }
}

#language_switch_w {
  position: relative;
  z-index: 100;
  color: var(--color_dark);
  padding: 0.64rem 0.64rem;
  max-width: 100%;
  font-size: 16px;
  text-align: center;
  border-radius: 0.08rem;

  background: rgba(31, 42, 62, 0.72) url("../images/language_switch_bg.png")
    no-repeat left top;
  background-size: cover;

  -webkit-backdrop-filter: blur(32px);
  -moz-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);

  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;

  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  #language_switch_w {
    background: rgba(31, 42, 62, 0.72);
    background-size: cover;
    overflow: hidden;
  }
}

#language_switch_w a {
  display: inline-block;
  min-width: 1.6rem;
  margin: 0.16rem 0.08rem;
  padding: 0.24rem 0.24rem;
  color: var(--color_white);
  border: 1px dashed rgba(255, 255, 255, 0.64);
  border-radius: 0.04rem;

  background-image: linear-gradient(to right, #fff, violet);
  background: linear-gradient(to right, #fff 0%, #fff 50%, #00ffed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media screen and (max-width: 992px) {
  #language_switch_w a {
    display: inline-block;
    min-width: 100%;
    margin: 0.24rem 0.08rem;
    padding: 0.24rem 0.24rem;
    color: var(--color_white);
    overflow: hidden;
  }
}

#language_switch_w a:hover {
  color: var(--color_primary);
}

#language_switch_w .close {
  position: absolute;
  top: 0.16rem;
  right: 0.16rem;
  cursor: pointer;
  font-size: 22px;
  color: var(--color_white);
}

#language_switch_w .fancybox-close-small {
  color: var(--color_white);
}

/* 登录注册弹窗*/
#signup_popup {
  background-color: transparent;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

/*登录框*/
.login_w {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: 100%;
  display: flex;
  position: relative;
  background: #fff;
  min-width: 800px;
  min-height: 6.2rem;
  max-height: 6.2rem;
  font-size: 14px;
  background: rgba(31, 42, 62, 0.72);
  background-size: cover;

  -webkit-backdrop-filter: blur(32px);
  -moz-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);

  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
}

.login_w .login_box_img {
  width: 40%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
}
.login_w .login_box_img .desc {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.16) 100%
  );
}
.login_w .login_box_img div {
  padding: 30px;
}
.login_w .login_box_img .desc h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}
.login_w .login_box_img .desc p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.login_w .login_box_con {
  position: relative;
  width: 60%;
  padding: 0.32rem;
  text-align: center;
  background-color: #2c374c;
  -webkit-box-shadow: 0 8px 88px rgba(31, 45, 61, 0.24);
  box-shadow: 0 8px 88px rgba(31, 45, 61, 0.24);
}

@media screen and (max-width: 768px) {
  /* B2主题登录注册美化 */
  .login_w .login_box_con {
    min-width: auto;
    width: 100%;
  }
  .login_w .login_box_img {
    display: none;
  }
  .login_w {
    min-width: 100%;
    max-height: 7.2rem;
  }
}

.login_brand {
  margin: 0 auto;
  text-align: center;
}
/*品牌信息*/
.login_brand .site_logo_icon {
  display: block;
  max-width: 64px;
  text-align: center;
  margin: 0 auto;
}

/*注册登录切换*/
.login_tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0;
}
.login_tab a {
  display: block;
  padding: 0 0.16rem;
  font-size: 18px;
  font-weight: normal;
  color: var(--color_muted);
}

.login_tab .active a {
  font-weight: bold;
  color: var(--color_light);
}

.login_tab a:hover {
  opacity: 0.8;
}
.login_tab .active a {
  color: #ffff;
}

/*注册登录区域显示*/
.login_con {
  /*! display: flex; */
  align-items: center;
  justify-content: center;
  padding: 0.16rem 0;
}
.login_con .tab_pane {
  display: none;
  width: 100%;
}

.login_con .active {
  display: block !important;
}

/*注册登录输入框*/
.form_group {
  position: relative;
  padding-bottom: 0.24rem;
}
.wp-pwd {
  position: relative;
}
.form_group .form_control {
  padding: 0.16rem 0.08rem;
  width: 100%;
}

.form_group input {
  border: 1px solid #ccc;
  padding: 8px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  border-radius: 8px;
}
.form_group #password_view {
  font-size: 18px;
  color: var(--color_muted);
  margin: auto;
  position: absolute;
  right: 10px;
  top: 20%;
  bottom: 0;
  cursor: pointer;
}
.login_other {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0.16rem 0;
  position: relative;
  font-size: 12px;
  color: var(--color_muted);
}
.login_other a {
  font-size: 12px;
  color: var(--color_muted);
}
.login_other a:hover {
  color: var(--color_primary);
}
.login_other label {
  padding: 0;
}
.login_other .remembermer_span {
  display: flex;
  justify-content: center;
}

/* 基础样式 */
.remembermer_span {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.rememberme_checkbox {
  width: 16px;
  height: 16px;
  margin-right: 3px;
  border: 2px solid #ddd;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.rememberme_checkbox:checked {
  background-color: var(--color_primary);
  border-color: var(--color_light);
}

/* 选中后的勾选图标 */
.rememberme_checkbox:checked::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  top: 2px;
  left: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.remembermer_span label {
  cursor: pointer;
  transition: color 0.2s;
}

.rememberme_checkbox:checked + label {
  color: var(--color_light);
}

.rememberme_checkbox:focus {
  outline: 2px solid rgba(0, 124, 186, 0.3);
  outline-offset: 2px;
}

.login_w .btn_primary {
  cursor: pointer;
  display: inline-flex; /* 改为flex布局 */
  align-items: center; /* 垂直居中 */
  justify-content: center; /* 水平居中 */
  min-width: 160px;
  width: 100%;
  height: 52px;
  font-size: 14px;
  margin: 0.24rem 0 0.24rem auto;
  padding: 0 0.16rem;
  color: var(--color_dark);
  background-color: var(--color_primary);
  background: linear-gradient(-90deg, #00ffed 0%, #f8f9fb 100%);
  box-shadow: 0px 8px 16px rgba(45, 182, 166, 0.16);
  border-radius: 0.52rem;
  transition: all 0.3s;
}
.btn_primary:hover {
  opacity: 0.8;
}

.login_w .icon_safe {
  padding: 0 0.08rem;
  font-size: 16px;
  transition: all 0.3s;
  line-height: 1;
}

/*社交开放登录*/
.login_w .open_oauth {
  display: flex;
  justify-content: center;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
  position: relative;
  font-size: 12px;
  padding: 0 0.16rem;
  /*! border: 1px solid #f5f5f5; */
}
.login_w .open_oauth span {
  display: flex;
  justify-content: center;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
  font-size: 12px;
}

.open_oauth .icon_w {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  width: 56px;
  height: 56px;
  margin: 0 0.24rem;
  border: 2px solid #fff;
  border-radius: 0.64rem;
  font-size: 30px;
  background-color: #f2f2f5;
}

.open_oauth .btn_qq {
  color: #3d93e0;
}
.open_oauth .btn_weixin {
  color: #20b767;
}
.open_oauth .btn_weibo {
  color: #f75251;
}

.open_oauth .icon_w:hover {
  border: 2px solid #fff;
  color: #fff;
  background-color: #7988f6;
  background: linear-gradient(to left, #6276f7, #90a0fb);
  box-shadow: 0px 8px 20px 0px rgba(0, 128, 255, 0.2);
}

.agreement_w {
  margin: 0 auto;
  align-items: center;
  padding: 0 0 0.32rem 0;
  position: relative;
  font-size: 12px;
  color: var(--color_muted);
}

.login_w .rest_pa.ssword {
  color: var(--color_muted);
  padding: 0.32rem 0;
}

.m_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.08rem;
  padding-right: 0.08rem;
}
@media screen and (min-width: 1200px) {
  .m_nav {
    display: none;
  }
}
@media (max-width: 1200px) and (min-width: 1200px) {
  .m_nav {
    display: block;
  }
}
.m_nav .m_user {
  display: none;
  margin: 0 0.08rem;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.24s;
  border-radius: 32px;
}
.m_nav .m_user .icon_w {
  font-size: 24px;
}
.m_nav .m_user:hover {
  color: var(--color_primary);
}
.m_nav .m_menu_btn {
  width: 24px;
  padding: 0;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  transition: all 0.24s;
}
.m_nav .m_menu_btn:hover {
  color: var(--color_primary);
}
.m_nav .m_menu_btn span {
  height: 2px;
  background: var(--color_dark);
}
.m_nav .m_menu_btn:hover span {
  background: var(--color_primary);
}
.m_nav .m_menu_btn.active {
  color: var(--color_primary);
}
.m_nav .m_menu_btn .icon_menu_hamburg {
  font-size: 24px;
}
.m_nav .m_menu_btn .icon_close {
  font-size: 24px;
  display: none;
}
.m_nav .m_menu_btn.active .icon_menu_hamburg {
  display: none;
}
.m_nav .m_menu_btn.active .icon_close {
  display: block !important;
}
.m_nav .m_menu_btn:hover {
  color: var(--color_primary);
}
.m_nav .m_menu_btn.active span:nth-child(2) {
  opacity: 0;
}
.m_nav .m_menu_btn.active span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  -moz-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}
.m_nav .m_menu_btn.active span:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  -moz-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}
.m_search_w {
  overflow: hidden;
  margin: auto;
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  width: 13.88rem;
  min-width: 13.88rem;
  top: 88px;
  height: 0;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -webkit-box-shadow: 0rem 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0rem 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
  box-shadow: 0rem 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
  -webkit-transition: background 0.36s cubic-bezier(0.32, 0.08, 0.24, 1),
    height 0.56s cubic-bezier(0.52, 0.16, 0.24, 1);
  transition: background 0.36s cubic-bezier(0.32, 0.08, 0.24, 1),
    height 0.56s cubic-bezier(0.52, 0.16, 0.24, 1);
}
@media screen and (max-width: 1200px) {
  .m_search_w {
    top: 0;
    width: 100%;
    min-width: 10%;
    max-width: 100%;
  }
}
.m_search_w.open,
.m_search_w.active,
.m_search_w.on {
  height: 400px !important;
}
@media screen and (max-width: 1200px) {
  .m_search_w.open,
  .m_search_w.active,
  .m_search_w.on {
    height: 30vh !important;
  }
}
.m_search_w .search_box {
  padding-top: 1.2rem;
}
.m_search_w .search_box:hover #search_eye_l,
.m_search_w .search_box:hover #search_eye_r {
  animation: eyeblink 0.24s ease-out 0s 1;
}
.m_search_w .search_box:hover #search_eyeball_l {
  transform: translate(-56.387px, -74.803px);
}
.m_search_w .search_box:hover #search_eyeball_r {
  transform: translate(-160.293px, -74.803px);
}
.m_search_w #search_eye_l,
.m_search_w #search_eye_r {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: eyemove 6s 0s infinite linear;
  animation: eyemove 6s 0s infinite linear;
}
.m_search_w .search_box:hover #search_logo_text {
  transform: translate(20px, -8px);
}
.m_search_w .search_w {
  position: relative;
  z-index: 1;
  width: 5rem;
  height: 56px;
  line-height: 56px;
  margin-left: auto;
  margin-right: auto;
}
.m_search_w .search_w .search_input {
  width: 100%;
  height: 56px;
  line-height: 56px;
  padding: 0 24px;
  border-radius: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: var(--ec_bg_muted);
}
.m_search_w .search_w .search_logo {
  content: "";
  margin: auto;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: -68px;
  bottom: 0;
  text-align: center;
}
.m_search_w .search_w .icon_search {
  cursor: pointer;
  width: 40px;
  height: 56px;
  line-height: 56px;
  content: "";
  margin: auto;
  position: absolute;
  z-index: 1;
  right: 0.16rem;
  top: 0;
  bottom: 0;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.64);
}
.m_search_w .search_w .search_cancel {
  cursor: pointer;
  width: 64px;
  height: 56px;
  line-height: 56px;
  content: "";
  margin: auto;
  position: absolute;
  z-index: 1;
  right: -0.8rem;
  top: 0;
  bottom: 0;
  font-size: 18px;
  color: var(--color_muted);
}
.m_search_w .search_w .icon_search:hover {
  color: #00ffed;
}
.m_search_w .hot_tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 8px;
}
.m_search_w .hot_tags .icon_hot {
  color: #f1676f;
  font-size: 16px;
}
.m_search_w .hot_tags .tag_link {
  color: var(--color_light);
}
.m_search_w .hot_tags .tag_link:hover {
  color: #00ffed;
}
.m_search_w .hot_tags b {
  display: inline-block;
  padding-right: 8px;
}
.m_search_w .hot_tags a {
  display: inline-block;
  padding-left: 16px;
}
@media screen and (max-width: 1200px) {
  .m_search_w .search_box {
    padding-top: 1.6rem;
    padding-left: 0.08rem;
    padding-right: 0.08rem;
  }
  .m_search_w .search_w {
    width: 100%;
  }
  .m_search_w .hot_tags {
    width: 100%;
  }
}
.m_menu_w {
  overflow-y: auto;
  overflow-y: scroll;
  width: 100%;
  height: 0;
  position: fixed;
  z-index: 5;
  left: 0;
  right: 0;
  background: #030a17;
}
@media screen and (min-width: 1200px) {
  .m_menu_w {
    display: none;
  }
}
.m_menu_w .tips_w {
  text-align: center;
  padding: 0 0.08rem 0.48rem 0.08rem;
  font-size: 12px;
  color: var(--color_muted);
}
.m_menu_w .tips_w .icon_w {
  font-size: 14px;
}
.m_menu_w.open,
.m_menu_w.active,
.m_menu_w.on {
  height: 100vh !important;
}
.m_menu_w .m_menu_w .closebtn {
  position: absolute;
  top: 18px;
  right: 24px;
}
.m_menu_w .icon_w {
  font-size: 24px;
}
@media only screen and (max-width: 1200px) {
  .menu_ul_m .firs_li {
    opacity: 0;
    -webkit-transform: translate3d(0, -16px, 0);
    transform: translate3d(0, -16px, 0);
    transition: all 0.32s ease, opacity 0.32s ease;
  }
  .menu_ul_m .firs_li:nth-child(1) {
    -webkit-transition-delay: 0s;
    transition-delay: 0.1s;
  }
  .menu_ul_m .firs_li:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  .menu_ul_m .firs_li:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .menu_ul_m .firs_li:nth-child(4) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
  .menu_ul_m .firs_li:nth-child(5) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  .menu_ul_m .firs_li:nth-child(6) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }
  .menu_ul_m .firs_li:nth-child(7) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
  }
  .menu_ul_m .firs_li:nth-child(8) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }
  .menu_ul_m .firs_li:nth-child(9) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
  }
  .menu_ul_m .firs_li:nth-child(10) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
  }
  /*动画触发*/
  .open .firs_li {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: none;
    transform: none;
  }
}
.menu_ul_m {
  overflow-y: auto;
  overflow-y: scroll;
  padding: 1.2rem 0.08rem 0.8rem 0.08rem;
}
.menu_ul_m .coming_soon {
  cursor: help;
  pointer-events: painted;
  color: var(--color_dark);
  -webkit-opacity: 0.64;
  -moz-opacity: 0.64;
  opacity: 0.64;
}
.menu_ul_m .coming {
  font-weight: normal;
  font-size: 10px;
  padding: 0.04rem 0.04rem;
  color: var(--color_light);
  margin-left: 8px;
  border: 1px solid var(--color_light);
}
.menu_ul_m .tag_w {
  position: relative;
  font-weight: 500;
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  padding: 0.04rem 0.04rem;
  margin-right: 0.04rem;
  border-radius: 2px;
}
.menu_ul_m .tag_new {
  color: var(--ec_green);
}
.menu_ul_m .tag_hot {
  color: var(--ec_orange);
}
.menu_ul_m .firs_li.active h3 .icon_w {
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  color: var(--color_primary);
}
.menu_ul_m .firs_li.active .second_menu {
  display: block;
}
.menu_ul_m .firs_li {
  border-bottom: 1px solid var(--ec_bg_muted);
}
.menu_ul_m .firs_li h3 {
  display: block;
}
.menu_ul_m .firs_li h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0.24rem;
  padding-right: 0.24rem;
}
.menu_ul_m .firs_li h3 a {
  color: var(--color_white);
  font-size: 18px;
  height: 1.6rem;
  line-height: 1.6rem;
  font-weight: 500;
  width: 100%;
}
.menu_ul_m .firs_li h3 a:hover {
  color: var(--color_primary);
}
.menu_ul_m .firs_li h3.light_up a {
  color: var(--color_primary);
}
.menu_ul_m .firs_li h3 .icon_btn {
  cursor: pointer;
  height: 0.64rem;
  line-height: 0.64rem;
  position: relative;
  z-index: -1;
}
.menu_ul_m .firs_li h3 .icon_w {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  right: 0;
  color: var(--color_muted);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.menu_ul_m .firs_li h6 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0.24rem;
  padding-right: 0.24rem;
  padding-top: 0.16rem;
  padding-bottom: 0.16rem;
  border-bottom: 1px dashed var(--ec_bg_dark);
}
.menu_ul_m .firs_li h6:first-child {
  border-bottom: transparent;
}
.menu_ul_m .firs_li h6:last-child {
  border-bottom: transparent;
}
.menu_ul_m .firs_li h6 .icon_btn {
  cursor: pointer;
  width: 50%;
  height: 0.64rem;
  line-height: 0.64rem;
  position: relative;
  z-index: 1;
}
.menu_ul_m .firs_li h6 .icon_w {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  right: 0;
  color: var(--color_muted);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.menu_ul_m .firs_li .icon_btn.active .icon_w {
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  color: var(--color_primary);
}
.menu_ul_m .second_li {
  width: 100%;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
}
.menu_ul_m .second_li.active h3 .icon_w {
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  color: var(--color_primary);
}
.menu_ul_m .second_li.active .third_menu {
  display: block;
}
.menu_ul_m .second_li a {
  display: block;
}
.menu_ul_m .second_li h6 a {
  font-size: 16px;
  height: 0.64rem;
  line-height: 0.64rem;
  font-weight: 500;
}
.menu_ul_m .second_li h6.light_up a {
  color: var(--color_primary);
}
.menu_ul_m .second_menu {
  display: none;
  border-radius: 0.04rem;
  width: 100%;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
  border-bottom: 1px dashed var(--ec_bg_dark);
}
.menu_ul_m .second_menu:last-child {
  border-bottom: transparent;
}
.menu_ul_m .third_menu {
  display: none;
  padding-left: 0.16rem;
  padding-right: 0.16rem;
}
.menu_ul_m .third_menu li a {
  font-size: 16px;
}
.menu_ul_m .scrm_ul {
  padding-left: 0.32rem;
  padding-right: 0.16rem;
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
  background-color: var(--ec_bg_light);
}
.menu_ul_m .scrm_ul li:last-child {
  border-bottom: transparent;
}
.menu_ul_m .scrm_ul li {
  border-bottom: 1px dashed var(--ec_bg_dark);
}
.menu_ul_m .scrm_ul a {
  height: auto;
  line-height: 1;
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
}
.menu_ul_m .scrm_ul a b {
  display: block;
  font-size: 14px;
  height: 0.24rem;
  line-height: 0.24rem;
}
.menu_ul_m .scrm_ul a p {
  padding-top: 0.16rem;
  padding-bottom: 0.32rem;
  font-size: 14px;
  height: 0.24rem;
  line-height: 0.24rem;
  color: var(--color_muted);
}
.menu_ul_m .solution_ul {
  padding-left: 0.16rem;
  padding-right: 0.16rem;
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
  background-color: var(--ec_bg_light);
}
.menu_ul_m .solution_ul li:last-child {
  border-bottom: 1px dashed transparent;
}
.menu_ul_m .solution_ul li {
  width: 100%;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
  border-bottom: 1px dashed var(--ec_bg_dark);
}
.menu_ul_m .solution_ul li a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: 0.16rem 0.16rem;
  color: var(--color_dark);
}
.menu_ul_m .solution_ul li a:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.menu_ul_m .solution_ul li .img_w {
  max-width: 56px;
  padding-right: 0.16rem;
}
.menu_ul_m .solution_ul li b {
  font-size: 14px;
}
.menu_ul_m .solution_ul li h6 {
  padding-top: 0.08rem;
  padding-bottom: 0.16rem;
}
.menu_ul_m .solution_ul li p {
  margin-top: 0.04rem;
  color: var(--color_muted);
}
.menu_ul_m .case_ul {
  padding-left: 0.16rem;
  padding-right: 0.16rem;
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
  background-color: var(--ec_bg_light);
}
.menu_ul_m .case_ul li:last-child {
  border-bottom: 1px dashed transparent;
}
.menu_ul_m .case_ul li {
  width: 100%;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
  border-bottom: 1px dashed var(--ec_bg_dark);
}
.menu_ul_m .case_ul li a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}
.menu_ul_m .case_ul li a:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.menu_ul_m .case_ul li h6 {
  padding-top: 0.08rem;
  padding-bottom: 0.16rem;
}
.menu_ul_m .case_ul li p {
  padding-left: 0.16rem;
}
.menu_ul_m .support_ul {
  padding-bottom: 0.24rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menu_ul_m .support_ul li {
  flex: 1 0 30%;
  margin-right: 2%;
  margin-bottom: 2%;
  text-align: center;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
  background-color: var(--ec_bg_light);
}
.menu_ul_m .support_ul li .text_w {
  text-align: center;
}
.menu_ul_m .support_ul li .desc_w {
  text-align: center;
  padding: 0 0.16rem;
}
.menu_ul_m .support_ul li a {
  display: block;
  text-align: center;
  padding: 0.32rem 0.16rem;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
}
.menu_ul_m .support_ul li a:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.menu_ul_m .support_ul li b {
  padding-top: 0.16rem;
  padding-bottom: 0.16rem;
}
.menu_ul_m .support_ul li h6 {
  padding-top: 0.08rem;
  padding-bottom: 0.16rem;
}
.menu_ul_m .support_ul li p {
  min-height: 0.24rem;
  margin-top: 0.04rem;
}
.menu_ul_m .download_ul {
  padding-left: 0.16rem;
  padding-right: 0.16rem;
  padding-bottom: 0.24rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: transparent;
}
.menu_ul_m .download_ul li {
  flex: 1 0 45%;
  margin-right: 2%;
  margin-bottom: 2%;
  text-align: center;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
  background-color: var(--ec_bg_light);
}
.menu_ul_m .download_ul li .icon_w {
  max-width: 0.88rem;
  margin-left: auto;
  margin-right: auto;
}
.menu_ul_m .download_ul li .text_w {
  text-align: center;
}
.menu_ul_m .download_ul li a {
  display: block;
  text-align: center;
  padding: 0.32rem 0.16rem;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
}
.menu_ul_m .download_ul li a:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.menu_ul_m .download_ul li p {
  font-size: 18px;
  font-weight: bold;
  padding-top: 0.16rem;
  padding-bottom: 0.08rem;
}
.menu_ul_m .download_ul li .info_w {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: var(--color_muted);
  padding-bottom: 0.64rem;
  font-size: 12px;
}
.menu_ul_m .about_ul {
  padding-left: 0.16rem;
  padding-right: 0.16rem;
  padding-bottom: 0.24rem;
}
.menu_ul_m .about_ul .ul_w {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.menu_ul_m .about_ul .ul_w li {
  flex: 1 1 30%;
  margin-right: 0.16rem;
  margin-bottom: 0.16rem;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
  background-color: var(--ec_bg_light);
}
.menu_ul_m .about_ul .ul_w li a {
  display: block;
  position: relative;
  min-width: 1.6rem;
  text-align: center;
  padding: 0.24rem 0.16rem;
  -webkit-border-radius: 0.08rem;
  -moz-border-radius: 0.08rem;
  border-radius: 0.08rem;
}
.menu_ul_m .about_ul .ul_w li a:hover {
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.menu_ul_m .about_ul .ul_w li .update {
  position: absolute;
  top: 0.2rem;
  right: 0.24rem;
  width: 6px;
  height: 6px;
  color: #fff;
  background-color: var(--color_primary);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.menu_ul_m .about_ul .ul_w li a:hover .update {
  background-color: var(--color_primary);
  -webkit-opacity: 0.64;
  -moz-opacity: 0.64;
  opacity: 0.64;
}
.menu_ul_m .about_ul .ul_w li b {
  font-size: 16px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.menu_ul_m .about_ul .ul_w li h6 {
  padding-top: 0.08rem;
  padding-bottom: 0.16rem;
}
.menu_ul_m .about_ul .ul_w li p {
  margin-top: 0.04rem;
  color: var(--color_muted);
}
.menu_ul_m .about_ul .ul_w li .img_w {
  flex: 1 0 auto;
}
.login_register_m {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.6rem auto;
  padding: 0 0.16rem;
}
.login_register_m a {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.1rem;
  font-size: 0.32rem;
  width: 320px;
  height: 0.9rem;
  max-width: 50%;
  text-align: center;
  background-color: var(--ec_bg_muted);
  border-radius: 0.9rem;
}
.login_register_m .icon_w {
  display: block;
  display: inline-block;
  width: 0.56rem;
  height: 0.56rem;
  margin: 0 0.16rem;
  vertical-align: middle;
  background: url("../images/nav/m_icon_login.png") no-repeat center center;
  background-size: contain;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.login_register_m .m_registe {
  background: url("../images/nav/m_icon_registe.png") no-repeat center center;
  background-size: contain;
}
.online_m {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.16rem;
  margin: 0.64rem auto 0.64rem auto;
}
.online_m .btn {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.1rem;
  color: var(--color_dark);
  font-size: 16px;
  width: 320px;
  height: 56px;
  max-width: 50%;
  text-align: center;
  -webkit-border-radius: 56px;
  -moz-border-radius: 56px;
  border-radius: 56px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.online_m .btn:hover {
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
}
.online_m .btn_pre_sales {
  color: #fff;
  background: rgba(51, 63, 84, 0.64);
}
.online_m .btn_after_sales {
  color: #fff;
  background: rgba(51, 63, 84, 0.64);
}
.online_m .btn_after_sales:hover,
.online_m .btn_pre_sales:hover {
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  color: var(--color_primary);
}
.contact_m {
  width: 100%;
  margin: 0.16rem auto 0.16rem auto;
  font-size: 0.24rem;
}
.contact_m .text_w {
  margin: 0.24rem 0.24rem;
  padding: 0.64rem 0.32rem;
  color: var(--color_light);
  background-color: var(--ec_bg_muted);
  background: rgba(51, 63, 84, 0.64);
  border-radius: 0.2rem;
}
.contact_m .text_w h6 {
  font-size: 16px;
  font-weight: 500;
}
.contact_m .text_w h5 {
  font-size: 18px;
}
.contact_m .text_w p {
  line-height: 2;
}
.contact_m .text_w .tel {
  font-family: "num", Helvetica, arial, sans-serif;
  margin-top: 0.16rem;
  font-size: 40px;
}
.contact_m .text_w .tip {
  font-family: "num", Helvetica, arial, sans-serif;
  font-size: 14px;
  color: var(--color_muted);
}
.contact_m {
  opacity: 0;
  -webkit-transform: translate3d(0, -16px, 0);
  transform: translate3d(0, -16px, 0);
  transition: all 0.32s ease, opacity 0.32s ease;
  -webkit-transition-delay: 0.4s;
}
.online_m {
  opacity: 0;
  -webkit-transform: translate3d(0, -16px, 0);
  transform: translate3d(0, -16px, 0);
  transition: all 0.32s ease, opacity 0.32s ease;
  -webkit-transition-delay: 0.5s;
}
.copy_m {
  opacity: 0;
  -webkit-transform: translate3d(0, -16px, 0);
  transform: translate3d(0, -16px, 0);
  transition: all 0.32s ease, opacity 0.32s ease;
  -webkit-transition-delay: 0.5s;
}
.open .contact_m,
.open .online_m,
.open .copy_m {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  -webkit-transform: none;
  transform: none;
}
.copy_m {
  position: absolute;
  z-index: 1;
  bottom: 0;
  color: var(--color_light);
  padding: 0.64rem 0.16rem 0.16rem 0.16rem;
}

.nav_con {
  display: flex;
  justify-content: center;
  align-items: center;
}

.other_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.16rem;
  margin-right: -0.16rem;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .other_nav {
    margin-right: auto;
  }
}

.other_nav .m_search_btn {
  width: 24px;
  padding: 0;
  font-size: 24px;
  margin: 0 0.08rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  transition: all 0.24s;
}
@media screen and (max-width: 1200px) {
  .other_nav .m_search_btn {
    display: none;
  }
}
.other_nav .m_search_btn.active {
  color: var(--color_primary);
}
.other_nav .m_search_btn .icon_search {
  font-size: 24px;
}
.other_nav .m_search_btn .icon_close {
  font-size: 24px;
  display: none;
}
.other_nav .m_search_btn.active .icon_search {
  display: none;
}
.other_nav .m_search_btn.active .icon_close {
  display: block !important;
}
.other_nav .m_search_btn:hover {
  color: var(--color_primary);
}
.on .other_nav {
  visibility: hidden;
}
.login_register {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
}
@media screen and (max-width: 1200px) {
  .login_register {
    display: none;
  }
}
.shownav .login_register {
  border: 2px solid #000000;
}
.fixed .login_register {
  border: 2px solid var(--color_white);
}
.login_register .icon_slash {
  display: block;
  display: inline-block;
  width: 2px;
  height: 12px;
  margin: 0 2px;
  background-color: var(--color_white);
  border-radius: 1px;
  opacity: 0.9;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}
.fixed .login_register .icon_slashv {
  background-color: #000000;
}

/*登录信息*/
.user_info {
  position: relative;
  display: block;
  font-size: 14px;

  transition: all 0.24s;
  border-radius: 32px;
}

@media screen and (max-width: 750px) {
  .user_info {
    display: none;
  }
  .fixed .nav_right .user_info {
    display: none;
  }
}

.user_info .icon_user {
  font-size: 20px;
}

.user_info .avatar_w {
  display: inline-block;
  width: 48px;
  height: 24px;
  opacity: 1;
  overflow: hidden;
  border-radius: 32px;
}
.user_info .avatar_w .avatar {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.32rem;
}
.user_info .quick_user_box {
  position: absolute;
  z-index: 2;
  top: 0.64rem;
  right: 0rem;
  width: 340px;
  padding: 0.24rem 0.24rem;
  background-color: #fff;
  transition: 0s max-height 0.15s linear,
    0.1s opacity cubic-bezier(0.39, 0.575, 0.565, 1),
    0.15s transform cubic-bezier(0.1, 1.26, 0.83, 1);
  transform-origin: center top;
  opacity: 1;
  border-radius: 0.16rem;
  -webkit-box-shadow: 0 10px 50px rgba(31, 45, 61, 0.16);
  box-shadow: 0 10px 50px rgba(31, 45, 61, 0.16);
  overflow: hidden;
}

.user_info .quick_user_box .logout_a {
  position: absolute;
  right: 40px;
  top: 32px;
  font-size: 12px;
}

.user_info .uer_name {
  display: none;
}

/*--------------- 头部导航 END ---------------- */
