/* 定义CSS变量 */
:root {
  --primary-color: #286EFA;
  --text-color: #1A1A1A;
  --bg-color: #F8F8F8;
  --hover-bg-color: #F8F8F8;
  --border-radius: 5px;
  --transition-time: 0.3s;
}

/* 基础样式 */
.components-HeaderBarSystem-PC-Menu--menu_nav_content {
  height: 50px;
  box-sizing: border-box;
  padding-top: 10px;
}

/* 菜单项通用样式 */
.components-HeaderBarSystem-PC-Menu--menu_nav_item {
  float: left;
  display: block;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  cursor: default;
  transition: all var(--transition-time);
  position: relative;
  padding-right: 10px;
}

.components-HeaderBarSystem-PC-Menu--menu_nav_item > span:first-child,
.components-HeaderBarSystem-PC-Menu--menu_nav_item > a:first-child {
  font-size: 14px;
  font-weight: 400;
  height: 30px;
  line-height: 30px;
  padding-left: 10px;
  display: block;
  color: var(--text-color);
  transition: all var(--transition-time);
}

.components-HeaderBarSystem-PC-Menu--menu_nav_item_txt_a {
  color: var(--text-color);
  transition: all var(--transition-time);
}

/* 图片相关样式 */
.components-HeaderBarSystem-PC-Menu--menu_nav_item_img {
  padding-right: 31px;
}

.components-HeaderBarSystem-PC-Menu--xia_img1,
.components-HeaderBarSystem-PC-Menu--xia_img2 {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}

.components-HeaderBarSystem-PC-Menu--xia_img2 {
  display: none;
}

.components-HeaderBarSystem-PC-Menu--top_img {
  position: absolute;
  height: 14px;
  right: 10px;
  top: -7px;
}

/* 悬停和激活状态 */
.components-HeaderBarSystem-PC-Menu--menu_nav_item:hover,
.components-HeaderBarSystem-PC-Menu--menu_nav_item_active {
  color: var(--primary-color);
  background: var(--hover-bg-color);
  border-radius: var(--border-radius);
}

.components-HeaderBarSystem-PC-Menu--menu_nav_item:hover > a:first-child,
.components-HeaderBarSystem-PC-Menu--menu_nav_item_active > a:first-child,
.components-HeaderBarSystem-PC-Menu--menu_nav_item:hover > span:first-child,
.components-HeaderBarSystem-PC-Menu--menu_nav_item_active span:first-child {
  color: var(--primary-color);
}

.components-HeaderBarSystem-PC-Menu--menu_nav_item:hover .components-HeaderBarSystem-PC-Menu--xia_img1,
.components-HeaderBarSystem-PC-Menu--menu_nav_item_active .components-HeaderBarSystem-PC-Menu--xia_img1 {
  display: none;
}

.components-HeaderBarSystem-PC-Menu--menu_nav_item:hover .components-HeaderBarSystem-PC-Menu--xia_img2,
.components-HeaderBarSystem-PC-Menu--menu_nav_item_active .components-HeaderBarSystem-PC-Menu--xia_img2 {
  display: block;
}

/* 链接列表样式 */
.components-HeaderBarSystem-PC-Menu--link_list {
  float: left;
  width: 150px;
  height: 420px;
  box-sizing: border-box;
  padding-top: 20px;
  padding-left: 20px;
  background: var(--bg-color);
  margin-right: 10px;
}

.components-HeaderBarSystem-PC-Menu--link_list h4 {
  height: 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 20px;
  margin-bottom: 20px;
}

.components-HeaderBarSystem-PC-Menu--link_list a {
  display: block;
  height: 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 18px;
  margin-bottom: 20px;
  transition: all var(--transition-time);
}

.components-HeaderBarSystem-PC-Menu--link_list a:hover {
  color: var(--primary-color);
}

/* 购买链接样式 */
.components-HeaderBarSystem-PC-Menu--buy_link {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 500px;
  box-sizing: border-box;
  padding: 20px 20px 0;
  background: var(--bg-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.components-HeaderBarSystem-PC-Menu--buy_link h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 20px;
  margin-bottom: 20px;
}

.components-HeaderBarSystem-PC-Menu--buy_link p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 18px;
  text-align: justify;
}

/* 按钮样式 */
.components-HeaderBarSystem-PC-Menu--buy_link_btn,
.components-HeaderBarSystem-PC-Menu--buy_link_btn2 {
  position: absolute;
  left: 20px;
  display: block;
  width: 160px;
  height: 30px;
  line-height: 30px;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition-time);
  padding-left: 42px;
}

.components-HeaderBarSystem-PC-Menu--buy_link_btn {
  top: 206px;
  color: var(--text-color);
  background-color: #E1EDFF;
}

.components-HeaderBarSystem-PC-Menu--buy_link_btn2 {
  top: 170px;
  color: #FFFFFF;
  background-color: var(--primary-color);
}

.components-HeaderBarSystem-PC-Menu--buy_link_btn:hover {
  background-color: #e2edff;
}

.components-HeaderBarSystem-PC-Menu--buy_link_btn2:hover {
  background-color: var(--primary-color);
}

.components-HeaderBarSystem-PC-Menu--buy_link_btn img,
.components-HeaderBarSystem-PC-Menu--buy_link_btn2 img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 21px;
  top: 50%;
  transform: translate(0, -50%);
}

/* 右侧内容区域 */
.components-HeaderBarSystem-PC-Menu--menu_list_buy_right {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  overflow-y: auto;
  scrollbar-width: none;
}

.components-HeaderBarSystem-PC-Menu--menu_list_buy_right::-webkit-scrollbar {
  display: none;
}

.components-HeaderBarSystem-PC-Menu--menu_list_buy_right_content {
  width: 100%;
  column-count: 4;
}

/* 菜单项样式 */
.components-HeaderBarSystem-PC-Menu--menu_item_buy {
  break-inside: avoid;
  padding: 20px;
}

.components-HeaderBarSystem-PC-Menu--menu_item_buy .components-HeaderBarSystem-PC-Menu--menu_item_buy_title {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 20px;
  margin-bottom: 17px;
}

.components-HeaderBarSystem-PC-Menu--menu_item_buy_a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 14px;
}

.components-HeaderBarSystem-PC-Menu--menu_item_buy_a:hover,
.components-HeaderBarSystem-PC-Menu--menu_item_buy_more {
  color: var(--primary-color);
}

/* 菜单内容区域 */
.components-HeaderBarSystem-PC-Menu--menu_list_content {
  display: none;
  position: absolute;
  width: 1200px;
  left: -126px;
  top: 30px;
  padding-top: 16px;
}

.components-HeaderBarSystem-PC-Menu--menu_list_content2 {
  width: 1200px;
  left: -232px;
}

.components-HeaderBarSystem-PC-Menu--menu_list_content3 {
  width: 340px;
  left: -124px;
}

.components-HeaderBarSystem-PC-Menu--menu_list_content4 {
  width: 270px;
  left: -96px;
}

.components-HeaderBarSystem-PC-Menu--menu_list_content5 {
  left: -554px;
}

.components-HeaderBarSystem-PC-Menu--menu_nav_item:hover .components-HeaderBarSystem-PC-Menu--menu_list_content {
  display: block;
}

/* 菜单列表 */
.components-HeaderBarSystem-PC-Menu--menu_list {
  width: 100%;
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  zoom: 1;
}

.components-HeaderBarSystem-PC-Menu--menu_list:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
}

.components-HeaderBarSystem-PC-Menu--menu_list_buy {
  width: 100%;
  height: 500px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 200px;
}

/* 菜单项 */
.components-HeaderBarSystem-PC-Menu--menu_item {
  float: left;
  width: 340px;
  box-sizing: border-box;
  background: #FFFFFF;
  padding: 20px 20px 0;
  border-radius: var(--border-radius);
  margin-right: 10px;
  transition: all var(--transition-time);
}

.components-HeaderBarSystem-PC-Menu--menu_item:last-child {
  margin-right: 0;
}

.components-HeaderBarSystem-PC-Menu--menu_item_title {
  height: 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 20px;
  margin-bottom: 10px;
  position: relative;
}

.components-HeaderBarSystem-PC-Menu--menu_item_title_R_a {
  position: absolute;
  right: 0;
  top: 0;
  height: 20px;
  line-height: 16px;
}

.components-HeaderBarSystem-PC-Menu--menu_item_title_R_a a {
  font-size: 12px;
  color: var(--primary-color);
}

.components-HeaderBarSystem-PC-Menu--menu_item_child {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 10px 0 10px 70px;
  position: relative;
  border-radius: var(--border-radius);
}

.components-HeaderBarSystem-PC-Menu--menu_item_child .components-HeaderBarSystem-PC-Menu--img1,
.components-HeaderBarSystem-PC-Menu--menu_item_child .components-HeaderBarSystem-PC-Menu--img2 {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translate(0, -50%);
  width: 50px;
  height: 50px;
}

.components-HeaderBarSystem-PC-Menu--menu_item_child .components-HeaderBarSystem-PC-Menu--img2 {
  display: none;
}

.components-HeaderBarSystem-PC-Menu--menu_item_child .components-HeaderBarSystem-PC-Menu--menu_content {
  width: 100%;
  display: block;
  padding-top: 6px;
}

.components-HeaderBarSystem-PC-Menu--menu_item_child .components-HeaderBarSystem-PC-Menu--menu_content h2 {
  height: 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 18px;
  margin-bottom: 4px;
  vertical-align: middle;
}

.components-HeaderBarSystem-PC-Menu--menu_item_child .components-HeaderBarSystem-PC-Menu--menu_content .components-HeaderBarSystem-PC-Menu--menu_item_child_h4 {
  position: relative;
  color: #B4874E;
}

.components-HeaderBarSystem-PC-Menu--menu_item_child .components-HeaderBarSystem-PC-Menu--menu_content .components-HeaderBarSystem-PC-Menu--menu_item_child_h4 img {
  display: inline-block;
  width: 16px;
  height: 16px;
  font-size: 0;
  margin-left: 4px;
}

.components-HeaderBarSystem-PC-Menu--menu_item_child .components-HeaderBarSystem-PC-Menu--menu_content p {
  height: 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #909090;
  margin-bottom: 6px;
}

.components-HeaderBarSystem-PC-Menu--menu_item_child:hover {
  background: var(--hover-bg-color);
}

.components-HeaderBarSystem-PC-Menu--menu_item_child:hover .components-HeaderBarSystem-PC-Menu--img1 {
  display: none;
}

.components-HeaderBarSystem-PC-Menu--menu_item_child:hover .components-HeaderBarSystem-PC-Menu--img2 {
  display: block;
}

/* 特殊菜单项 */
.components-HeaderBarSystem-PC-Menu--menu_nav_item_market,
.components-HeaderBarSystem-PC-Menu--menu_qiye {
  float: left;
  display: block;
  margin-left: 10px;
  cursor: pointer;
  position: relative;
}

.components-HeaderBarSystem-PC-Menu--menu_nav_item_market .components-HeaderBarSystem-PC-Menu--menu_nav_item_market_hover,
.components-HeaderBarSystem-PC-Menu--menu_qiye .components-HeaderBarSystem-PC-Menu--menu_qiye_hover {
  font-size: 14px;
  font-weight: 400;
  height: 30px;
  line-height: 30px;
  padding-right: 10px;
  display: block;
  transition: all var(--transition-time);
  border-radius: var(--border-radius);
  position: relative;
}

.components-HeaderBarSystem-PC-Menu--menu_nav_item_market .components-HeaderBarSystem-PC-Menu--menu_nav_item_market_hover {
  padding-left: 26px;
  background-color: #FA6400;
  color: #fff;
}

.components-HeaderBarSystem-PC-Menu--menu_nav_item_market .components-HeaderBarSystem-PC-Menu--menu_nav_item_market_hover:hover {
  background-color: #FF5100;
}

.components-HeaderBarSystem-PC-Menu--menu_qiye .components-HeaderBarSystem-PC-Menu--menu_qiye_hover {
  padding-left: 31px;
  background-color: #E7D6BB;
  color: #6D542D;
}

.components-HeaderBarSystem-PC-Menu--menu_qiye .components-HeaderBarSystem-PC-Menu--menu_qiye_hover:hover {
  background-color: #D3BD9C;
}

.components-HeaderBarSystem-PC-Menu--menu_nav_item_market .components-HeaderBarSystem-PC-Menu--menu_nav_item_market_hover img,
.components-HeaderBarSystem-PC-Menu--menu_qiye .components-HeaderBarSystem-PC-Menu--menu_qiye_hover img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 10px;
  display: block;
  width: 16px;
  height: 16px;
}

.components-HeaderBarSystem-PC-Menu--menu_nav_item_market:hover .components-HeaderBarSystem-PC-Menu--menu_nav_item_market_hover_content_warp {
  display: block;
}

.components-HeaderBarSystem-PC-Menu--menu_nav_item_market_hover_content_warp {
  position: absolute;
  left: -90px;
  top: 30px;
  padding-top: 16px;
  display: none;
}

.components-HeaderBarSystem-PC-Menu--menu_nav_item_market_hover_content {
  width: 270px;
  height: 250px;
  background: #FFFFFF;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 20px 0;
}

/* 解决方案标题 */
.components-HeaderBarSystem-PC-Menu--menu_solution_title {
  font-size: 16px;
  color: var(--text-color);
  line-height: 20px;
  margin-bottom: 10px;
  padding-top: 20px;
}

.components-HeaderBarSystem-PC-Menu--menu_list_content2 .components-HeaderBarSystem-PC-Menu--menu_item_child {
  float: left;
  width: 33.3%;
}

.components-HeaderBarSystem-PC-Menu--menu_list_content2 .components-HeaderBarSystem-PC-Menu--menu_list {
  padding: 20px;
  padding-top: 0;
}

.components-HeaderBarSystem-PC-Menu--menu_list_content3 .components-HeaderBarSystem-PC-Menu--menu_list .components-HeaderBarSystem-PC-Menu--menu_item,
.components-HeaderBarSystem-PC-Menu--menu_list_content4 .components-HeaderBarSystem-PC-Menu--menu_list .components-HeaderBarSystem-PC-Menu--menu_item {
  width: 100%;
  padding-bottom: 20px;
}
.components-HeaderBarSystem-PC--pc_header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.05);
    transition:all 0.3s;
    -ms-transition:all 0.3s; /* IE 9 */
    -moz-transition:all 0.3s; /* Firefox */
    -webkit-transition:all 0.3s; /* Safari 和 Chrome */
    -o-transition:all 0.3s; /* Opera */
    backdrop-filter: saturate(180%) blur(10px);
}
.components-HeaderBarSystem-PC--ad_heigth {
    width: 100%;
    height: 60px;
}
.components-HeaderBarSystem-PC--pc_header_ad_w {
    width: 100%;
    height: 60px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}
.components-HeaderBarSystem-PC--pc_header_ad {
    display: block;
    width: 100%;
    height: 60px;
}
.components-HeaderBarSystem-PC--pc_header_ad span {
    display: block;
    width: 100%;
    height: 60px;
    background-size: auto 100%;
    background-position: center 15%;
    background-repeat: no-repeat;
}
.components-HeaderBarSystem-PC--pc_header_ad .components-HeaderBarSystem-PC--adimg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.components-HeaderBarSystem-PC--pc_header_ad_w .components-HeaderBarSystem-PC--closebtnad {
    position: absolute;
    right: 15px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -18px;
    box-sizing: content-box;
    padding: 10px;
    display: block;
    cursor: default;
    z-index: 2;
}
.components-HeaderBarSystem-PC--pc_header:hover {
    background-color: #fff;
}
.components-HeaderBarSystem-PC--pc_header_center {
    width: 1200px;
    margin: 0 auto;
    height: 50px;
    position: relative;
    box-sizing: border-box;
    padding-left: 58px;
}
.components-HeaderBarSystem-PC--pc_header_logo {
    display: block;
    width: 57px;
    position: absolute;
    left: 0;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.components-HeaderBarSystem-PC--pc_header_logo img {
    display: block;
    width: 100%;
}

.components-HeaderBarSystem-PC--pc_header_right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    box-sizing: border-box;
    padding-top: 10px;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--search {
    float: left;
    /* margin-right: 10px; */
    display: block;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    padding-left: 31px;
    padding-right: 10px;
    position: relative;
    border-radius: 5px;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--search img {
    display: block;
    width: 14px;
    position: absolute;
    left: 10px;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--search img:nth-child(1) {
    display: block;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--search img:nth-child(2) {
    display: none;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--search:hover{
    color: #286EFA;
    background: rgba(26,26,26,0.05);
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--search:hover img:nth-child(2) {
    display: block;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--search:hover img:nth-child(1) {
    display: none;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--btn_com {
    float: left;
    display: block;
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    padding: 0 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.components-HeaderBarSystem-PC--pc_header_hover {
    position: absolute;
    left: 50%;
    top: 30px;
    -ms-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    transform: translate(-50%,0);
    transform: translate(-50%,0);
    padding-top: 15px;
    display: none;
}
.components-HeaderBarSystem-PC--pc_header_hover_content {
    width: 120px;
    display: block;
    background-color: #fff;
    box-shadow: 0px 4px 10px 0px rgb(0 0 0 / 10%);
    border-radius: 5px;
    overflow: hidden;
    padding: 10px;
}
.components-HeaderBarSystem-PC--pc_header_hover_a {
    display: block;
    width: 100%;
    transition: all 0.2s;
    height: 30px;
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 30px;
    cursor: pointer;
    position: relative;
    padding-left: 31px;
}
.components-HeaderBarSystem-PC--pc_header_hover_a img {
    width: 16px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translate(0,-50%);
}
.components-HeaderBarSystem-PC--pc_header_hover_a:hover {
    color: #1A1A1A;
    background-color: #F8F8F8;
}
.components-HeaderBarSystem-PC--pc_header_hover_content2 {
    width: 160px;
    display: block;
    background-color: #fff;
    box-shadow: 0px 4px 10px 0px rgb(0 0 0 / 10%);
    border-radius: 5px;
    overflow: hidden;
    padding: 10px;
}
.components-HeaderBarSystem-PC--pc_header_hover_content2 i {
    display: block;
    width: 100%;
    height: 0;
    border-top: 1px solid #EFEFEF;
    margin: 10px 0;
}
.components-HeaderBarSystem-PC--pc_header_hover_a2 {
    display: block;
    width: 100%;
    transition: all 0.2s;
    height: 36px;
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 36px;
    cursor: pointer;
    position: relative;
    padding-left: 44px;
}
.components-HeaderBarSystem-PC--pc_header_hover_a2 .components-HeaderBarSystem-PC--img1 {
    width: 24px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translate(0,-50%);
}
.components-HeaderBarSystem-PC--pc_header_hover_a2 .components-HeaderBarSystem-PC--img2 {
    width: 18px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translate(0,-50%);
}
.components-HeaderBarSystem-PC--pc_header_hover_a2:hover {
    color: #1A1A1A;
    background-color: #F8F8F8;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--btn_com_content {
    float: left;
    margin-left: 10px;
    height: 30px;
    position: relative;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--btn_com1 {
    background: rgba(40, 110, 250,0.1);
    color: #286EFA;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--btn_com_content:hover .components-HeaderBarSystem-PC--btn_com1 {
    background-color: #1B60FF;
    color: #fff;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--btn_com_login {
    padding-left: 33px;
    position: relative;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--btn_com_login img {
    position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    overflow: hidden;
    left: 10px;
    top: 50%;
    transform: translate(0, -50%);
    border: 1px solid #fff;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--btn_com1:hover {
    background-color: #1B60FF;
    color: #fff;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--btn_com_content:hover .components-HeaderBarSystem-PC--pc_header_hover {
    display: block;
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--btn_com2 {
    background: #286efa;
    /* margin-left: 10px; */
}
.components-HeaderBarSystem-PC--pc_header_right .components-HeaderBarSystem-PC--btn_com2:hover {
    background-color: #1B60FF;
}
.components-HeaderBarSystem-PC--pc_header_login {
    float: left;
}

.components-HeaderBarSystem-PC--pc_header_login_msg {
    float: left;
    display: block;
    width: 36px;
    height: 28px;
    text-align: center;
    border-radius: 5px;
    box-sizing: border-box;
    padding-top: 7px;
    /* margin-right: 10px;
    margin-left: 10px; */
}
.components-HeaderBarSystem-PC--pc_header_login_msg span {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(https://ssl-static2.720static.com//_next/static/images/msgImg-1db63b7306894a4b99dfd3b8e268bc6b.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.components-HeaderBarSystem-PC--pc_header_login_msg:hover {
    background: rgba(26,26,26,0.0500);
}
.components-HeaderBarSystem-PC--pc_header_login_msg:hover span {
    background-image: url(https://ssl-static2.720static.com//_next/static/images/msgImg2-37abe0788cffcfe66c8e22c55ef581bf.png);
}


.components-HeaderBarSystem-PC--worktip {
    position: absolute;
    left: -40px;
    top: 40px;
    display: block;
    width: 160px;
    z-index: 20;
}

.components-HeaderBarSystem-Mobile-MenuMobile-WxTip--tip_wx {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0 15px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
}
.components-HeaderBarSystem-Mobile-MenuMobile-WxTip--tip_wx img {
    display: block;
    width: 100%;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menuMobile_nav_content {
    width: 100%;
    position: fixed;
    background-color: #fff;
    left: 0;
    top: -580px;
    height: 500px;
    padding-left: 110px;
    transition: all 0.3s;
    z-index: 40;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menuMobile_nav_content_show {
    top: 40px;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menuMobile_nav_content_show_hasAD {
    top: 100px;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menuMobile_nav_content_L {
    position: absolute;
    left: 0;
    top: 0;
    width: 110px;
    height: 100%;
    padding-top: 10px;
    border-right: 1px solid #EFEFEF;
    box-sizing: border-box;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menuMobile_nav_item {
    display: block;
    width: 100%;
    height: 36px;
    line-height: 36px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    padding-left: 15px;
    margin-bottom: 5px;
    position: relative;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menuMobile_nav_item:visited {
    color: #1A1A1A;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menuMobile_nav_item_active {
    color: #286EFA !important;
}

.components-HeaderBarSystem-Mobile-MenuMobile--rightimg {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 7px;
    height: 11px;
    transform: translate(0, -50%);
}

.components-HeaderBarSystem-Mobile-MenuMobile--menuMobile_nav_content_content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 10px;
}

.components-HeaderBarSystem-Mobile-MenuMobile--content_com {
    width: 100%;
}

.components-HeaderBarSystem-Mobile-MenuMobile--content_title {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
}

.components-HeaderBarSystem-Mobile-MenuMobile--content_p {
    font-size: 14px;
    font-weight: 300;
    color: #1A1A1A;
    line-height: 18px;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menu_item {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 15px;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menu_item_title {
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 18px;
    margin-bottom: 15px;
    position: relative;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menu_item_title_R_a {
    position: absolute;
    right: 0;
    top: 0;
    height: 18px;
    line-height: 18px;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menu_item_title_R_a a {
    font-size: 12px;
    color: #286EFA;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menu_item_child {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding-left: 50px;
    position: relative;
    height: 40px;
    margin-bottom: 15px;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menu_item_child .components-HeaderBarSystem-Mobile-MenuMobile--img1 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 40px;
    height: 40px;
    display: block;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menu_item_child .components-HeaderBarSystem-Mobile-MenuMobile--menu_content {
    width: 100%;
    display: block;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menu_item_child .components-HeaderBarSystem-Mobile-MenuMobile--menu_content h2 {
    height: 18px;
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 18px;
    margin-bottom: 4px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: middle;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menu_item_child .components-HeaderBarSystem-Mobile-MenuMobile--menu_content .components-HeaderBarSystem-Mobile-MenuMobile--menu_item_child_h4 {
    position: relative;
    color: #B4874E;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menu_item_child .components-HeaderBarSystem-Mobile-MenuMobile--menu_content .components-HeaderBarSystem-Mobile-MenuMobile--menu_item_child_h4 img {
    display: inline-block;
    width: 14px;
    height: 14px;
    font-size: 0;
    margin-left: 4px;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menu_item_child .components-HeaderBarSystem-Mobile-MenuMobile--menu_content p {
    height: 16px;
    font-size: 12px;
    font-weight: 500;
    color: #909090;
    line-height: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menu_item_buy {
    width: 100%;
    margin-bottom: 15px;
}

.components-HeaderBarSystem-Mobile-MenuMobile--menu_item_buy_a {
    display: block;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 300;
    color: #1A1A1A;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.components-HeaderBarSystem-Mobile-MenuMobile--content_p2 {
    height: 18px;
    font-size: 14px;
    font-weight: 300;
    color: #1A1A1A;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-left: 21px;
    position: relative;
    margin-bottom: 12px;
}

.components-HeaderBarSystem-Mobile-MenuMobile--content_p2 img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 13px;
    height: 13px;
    display: block;
}

.components-HeaderBarSystem-Mobile-MenuMobile--appdownbtn {
    width: 96px;
    height: 40px;
    background: #286EFA;
    border-radius: 5px;
    text-align: center;
    display: block;
    margin: 0 auto;
    line-height: 40px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.components-HeaderBarSystem-Mobile--navHeader_mobile {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: auto;
    background-color: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.05);
    z-index: 50;
    backdrop-filter: saturate(180%) blur(10px);
}
.components-HeaderBarSystem-Mobile--navHeader_mobile_content {
    width: 100%;
    height: 40px;
    position: relative;
}
.components-HeaderBarSystem-Mobile--navHeader_mobile_back {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5000);
    z-index: 30;
}
.components-HeaderBarSystem-Mobile--mobilead_heigth {
    width: 100%;
    height: 60px;
    overflow: hidden;
}
.components-HeaderBarSystem-Mobile--mobile_header_ad_w {
    width: 100%;
    height: 60px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}
.components-HeaderBarSystem-Mobile--mobile_header_ad {
    display: block;
    width: 100%;
    height: 60px;
    font-size: 0;
}
.components-HeaderBarSystem-Mobile--mobile_header_ad span {
    display: block;
    width: 100%;
    height: 60px;
    background-color: #000;
    background-position: center 15%;
    background-size: cover;
    background-repeat: no-repeat;
}
.components-HeaderBarSystem-Mobile--mobile_header_ad .components-HeaderBarSystem-Mobile--adimg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.components-HeaderBarSystem-Mobile--mobile_header_ad_w .components-HeaderBarSystem-Mobile--closebtnad {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -14px;
    box-sizing: content-box;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

.components-HeaderBarSystem-Mobile--navHeader_mobile_logo {
    position: absolute;
    left: 20px;
    top: 10px;
}
.components-HeaderBarSystem-Mobile--navHeader_mobile_logo img {
    display: block;
    width: 57px;
}

.components-HeaderBarSystem-Mobile--navHeader_mobile_right {
    position: absolute;
    right: 10px;
    top: 0;
}
.components-HeaderBarSystem-Mobile--navHeader_mobile_right .components-HeaderBarSystem-Mobile--search {
    float: left;
    margin-right: 10px;
    display: block;
    height: 18px;
    line-height: 18px;
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    padding-left: 21px;
    position: relative;
    box-sizing: content-box;
    margin-top: 10px;
}
.components-HeaderBarSystem-Mobile--navHeader_mobile_right .components-HeaderBarSystem-Mobile--search img {
    display: block;
    width: 14px;
    position: absolute;
    left: 0;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.components-HeaderBarSystem-Mobile--muneBtn {
    float: left;
    display: block;
    width: 16px;
    height: 16px;
    box-sizing: content-box;
    padding: 10px;
}
