*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: "PingFang SC";
}

a,
input,
button,
input:focus,
textarea,
textarea:focus {
  outline: none !important;
  -webkit-appearance: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

input {
  -webkit-user-select: auto !important;
  caret-color: #face15;
}

li,
ul {
  list-style: none;
}

i {
  font-style: normal;
}

button,
input {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: bold;
}

.iconfont {
  font-weight: normal;
}

/* 弹性布局 */
.flex_n {
  display: flex;
}

.flex_c {
  display: flex;
  align-items: center;
}

.flex_c_inline {
  display: inline-flex;
  align-items: center;
}

.flex_c_c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex_c_b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex_b_b {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.flex_column {
  flex-direction: column;
}


.TextR {
  text-align: right;
}

.TextE1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.TextE2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}

.TextE3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}

.gradient_yellow_text {
  background-image: -webkit-linear-gradient(45deg, #fc8c63 0%, #fbcb6f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.gradient_pink_text {
  background-image: -webkit-linear-gradient(45deg, rgb(244, 74, 141) 0%, rgb(231, 167, 136) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.el-button--small {
  font-size: 14px !important;
}

.article_page {
  display: flex;
  width: 1200px;
  margin: 0px auto;
  padding: 90px 0px 30px;
  position: relative;
  overflow: hidden;
}

.article_page_left {
  width: 69%;
}

.article_page_left .el-tabs__header {
  margin: 10px 0px 0px;
}

.article_page_right {
  width: 340px;
  margin-left: 60px;
}

.article_warp {
  display: block;
  text-align: center;
}

.article_warp .el-button {
  margin: 30px auto 20px;
}

.article_base {
  width: 100%;
  border-radius: 8px;
}

.article_feed {
  display: flex;
  padding: 30px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  width: 100%;
  text-align: left;
}

.article_poster {
  width: 200px;
  height: 140px;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  justify-content: center;
}

.article_poster img {
  object-fit: cover;
  height: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.article_feed:hover img {
  transform: scale(1.15);
  -webkit-transform: scale(1.15);
}

.article_feed:active {
  opacity: 0.8;
}

.article_content {
  flex: 1;
  flex-direction: column;
  display: flex;
}

.article_info {
  flex: 1;
}

.article_info h1 {
  font-size: 22px;
  color: #fff;
  line-height: 32px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}

.article_info span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 20px;
  margin: 10px 0px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}

.article_data {
  display: flex;
  justify-content: space-between;
}

.article_data p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.article_data p i {
  font-size: 13px;
}

.article_hot {
  display: flex;
  padding: 25px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  width: 100%;
  text-align: left;
}

.article_hot_poster {
  width: 120px;
  height: 80px;
  margin-right: 10px;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  justify-content: center;
}

.article_hot_poster img {
  object-fit: cover;
  height: 100%;
}

.article_hot_info {
  flex: 1;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

.article_hot_info h1 {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}

.article_hot_info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.article_hot_info p i {
  font-size: 13px;
}

.article_info h1:hover,
.article_hot_info h1:hover {
  color: #2997ff;
}

.article_qrcode {
  display: flex;
  justify-content: space-between;
  margin: 10px 0px 50px;
}

.article_qrcode p {
  text-align: center;
}

.article_qrcode p img {
  display: block;
  width: 150px;
  height: 150px;
  margin: 10px 0px;
}

.article_qrcode span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.article_detail {
  display: block;
  overflow: hidden;
  width: 100%;
  overflow: hidden;
}

.article_detail_data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 10px;
}

.article_detail_data p {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 40px !important;
}

.article_detail_data p i {
  font-size: 14px !important;
}

.article_detail_tag {
  height: 26px;
  font-size: 14px;
  line-height: 24px;
  border: 1px solid #2997ff;
  color: #2997ff;
  border-radius: 18px;
  padding: 0px 10px;
}

.article_detail h1 {
  font-size: 22px;
  color: #fff;
  line-height: 32px;
}

.article_detail p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 28px;
  margin: 10px 0px;
}

.article_detail img {
  width: 100%;
  margin: 20px 0px;
}

.article_share {
  display: flex;
  width: 300px;
  justify-content: space-between;
  margin: 30px auto;
}

.article_share a {
  color: rgba(255, 255, 255, 0.4);
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  padding: 0px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.04);
  margin: 0px 20px;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.article_share a i {
  font-size: 24px;
}

.article_share a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.article_share a:active {
  opacity: 0.6;
}

.article_share_qrcode {
  margin: 0px auto;
  text-align: center;
  padding: 5px;
}

.article_share_qrcode img {
  width: 100px;
  height: 100px;
  margin: 5px auto;
  display: block;
}

.article_share_qrcode span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.article_link {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}

.article_link a {
  color: #2997ff;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.article_link a i {
  font-size: 16px;
}

.article_link a span {
  color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
  width: 200px;
  white-space: nowrap;
  display: inline-block;
  margin: 0px 10px;
}

.article_link:hover a,
.article_link:hover a span {
  color: #0ea8ff !important;
}

.article_link:active {
  opacity: 0.6;
}

.help_page {
  display: flex;
  width: 1200px;
  margin: 0px auto;
  padding: 80px 0 120px 0px;
  position: relative;
  overflow: hidden;
}

.help_page_left {
  width: 240px;
  margin-right: 40px;
  background: #232631;
  border-radius: 8px;
  padding: 10px 0px;
}

.help_page_right {
  flex: 1;
  padding: 0px;
}

.el-collapse-item__header i {
  font-size: 18px;
  margin-right: 5px;
}

/* 新增一级侧边路由a标签样式 */

.help_page_left a:hover {
  color: rgba(255, 255, 255, 1);
}

.help_page_left a {
  position: relative;
  color: rgba(255, 255, 255, 1);
  display: block;
  width: 100%;
}

.help_page_left a .free {
  margin-left: 4px;
  position: absolute;
  top: 12px;
  display: inline-block;
  width: 31px;
  height: 14px;
  background: #fe2270;
  border-radius: 4px 0px 4px 0px;
  font-size: 12px;
  font-family: DINPro Medium, DINPro Medium-Medium;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  line-height: 14px;
}

.help_page_menu {
  display: block;
}

.help_page_menu a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  padding: 10px 0px 10px 45px;
}

.help_page_menu a:hover {
  color: rgba(255, 255, 255, 1);
  background: #181b22;
}

.help_page_menu a:active {
  opacity: 0.6;
}

.help_page_menu_active {
  color: #2997ff !important;
}

.help_content {
  display: block;
  overflow: hidden;
  width: 100%;
}

.help_content p {
  font-size: 18px;
  color: #fff;
  line-height: 36px;
  margin: 10px 0px;
}

.help_content span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 32px;
}

.help_content img {
  width: 100%;
  margin: 15px 0px;
}

.login_gift {
  position: absolute;
  left: 10px;
  top: 10px;
}

.login_gift img {
  width: 30px;
  position: relative;
  -webkit-filter: brightness(1.3);
  filter: brightness(1.3);
  vertical-align: middle;
}

.login_gift p {
  color: #face15;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  margin: 5px 0px 0px 3px;
}

.login_dialog_switch {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 64px;
  height: 56px;
  text-align: center;
  line-height: 72px;
  color: rgba(255, 255, 255, 0.3);
}

.login_dialog_switch i {
  font-size: 48px;
}

.login_dialog_switch:hover {
  color: #fff;
}

.login_dialog_switch:active {
  opacity: 0.3;
}

.login_dialog_close {
  position: absolute;
  right: 0px;
  top: -45px;
  text-align: center;
  /* color: rgba(255, 255, 255, 0.3); */
  color: #bebfc3;
}

.login_dialog_close::after {
  width: 2px;
  height: 15px;
  /* background-color: rgba(255, 255, 255, 0.2); */
  background-color: #bebfc3;
  position: absolute;
  top: 30px;
  left: 14px;
  content: '';
}

.login_dialog_close i {
  font-size: 30px;
}

.login_dialog_close:hover {
  color: #fff;
}

.login_dialog_close:active {
  opacity: 0.3;
}

.login_warp {
  position: relative;
  text-align: center;
}

.login_warp_logo {
  margin: 30px auto;
  width: 160px;
}

.login_warp_title {
  font-size: 18px;
  color: #fff;
}

.login_warp_bottom {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.login_warp_bottom span {
  margin: 10px 0px;
  display: inline-block;
}

.login_warp_bottom a {
  margin: 10px 0px;
  color: rgba(41, 151, 255, 0.8);
}

.login_warp_bottom a:hover {
  color: #2997ff;
}

.login_input_warp {
  padding: 10px;
}

.login_input {
  margin: 10px 0px;
}

.login_input i {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 3px;
}

.login_input:focus {
  border: 2px solid #2997ff;
}

.login_button {
  width: 100%;
  margin: 10px 0px;
  font-size: 16px;
}

.login_input_msg input {
  position: relative;
  padding-right: 100px;
  border-radius: 4px !important;
}

.login_input_msg {
  position: relative;
}

.login_input_msg_get {
  color: #2997ff;
  font-size: 14px;
}

.login_input_msg .el-input-group__append {
  padding: 0px 5px;
  background-color: transparent;
  position: absolute;
  right: 0px;
  top: 10px;
  border: none;
  width: 90px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.dcc_loading {
  display: block;
  margin: 20px auto;
  position: relative;
  width: 42px;
  height: 30px;
  background-image: -webkit-linear-gradient(top left, #00daff 0%, #0daeff 100%);
  border-top-left-radius: 8px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 16px;
  animation: dccload 0.6s ease-in-out 0s infinite alternate;
  -webkit-animation: dccload 0.6s ease-in-out 0s infinite alternate;
}

.dcc_loading::before {
  display: block;
  content: '';
  z-index: 1;
  position: absolute;
  bottom: -1px;
  right: 0px;
  width: 6px;
  height: 8px;
  border-radius: 4px;
  background-image: -webkit-linear-gradient(top left, #00daff 0%, #0daeff 100%);
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -m-transform: rotate(135deg);
}

.dcc_loading p {
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 30px;
  height: 18px;
  border-top-left-radius: 4px;
  border-top-right-radius: 9px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 9px;
  background-color: #161823;
}

.dcc_loading p span:first-child {
  display: inline-block;
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 6px;
  height: 9px;
  border-radius: 2.5px;
  background-image: -webkit-linear-gradient(top, #ff2d64 0%, #ff4b7d 100%);
  animation: dccmove 0.6s ease-in-out 0s infinite alternate;
  -webkit-animation: dccmove 0.6s ease-in-out 0s infinite alternate;
}

.dcc_loading p span:nth-child(2) {
  display: inline-block;
  position: absolute;
  left: 12px;
  bottom: 3px;
  width: 6px;
  height: 12px;
  border-radius: 2.5px;
  background-image: -webkit-linear-gradient(top, #ff2d64 0%, #ff4b7d 100%);
  animation: dccmove 0.6s ease-in-out 0.6s infinite alternate;
  -webkit-animation: dccmove 0.6s ease-in-out 0.6s infinite alternate;
}

.dcc_loading p span:nth-child(3) {
  display: inline-block;
  position: absolute;
  left: 21px;
  bottom: 3px;
  width: 6px;
  height: 7px;
  border-radius: 2.5px;
  background-image: -webkit-linear-gradient(top, #ff2d64 0%, #ff4b7d 100%);
  animation: dccmove 0.6s ease-in-out 0.3s infinite alternate;
  -webkit-animation: dccmove 0.6s ease-in-out 0.3s infinite alternate;
}

@keyframes dccload {
  0% {
    transform: translateY(0px);
    -webkit-filter: brightness(20%);
    filter: brightness(20%);
  }

  25% {
    transform: translateY(2px);
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
  }

  50% {
    transform: translateY(0px);
    -webkit-filter: brightness(140%);
    filter: brightness(140%);
  }

  75% {
    transform: translateY(2px);
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
  }

  100% {
    transform: translateY(0px);
    -webkit-filter: brightness(140%);
    filter: brightness(140%);
  }
}

@-webkit-keyframes dccload {
  0% {
    transform: translateY(0px);
    -webkit-filter: brightness(20%);
    filter: brightness(20%);
  }

  25% {
    transform: translateY(2px);
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
  }

  50% {
    transform: translateY(0px);
    -webkit-filter: brightness(140%);
    filter: brightness(140%);
  }

  75% {
    transform: translateY(2px);
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
  }

  100% {
    transform: translateY(0px);
    -webkit-filter: brightness(140%);
    filter: brightness(140%);
  }
}

@keyframes dccmove {
  from {
    height: 5px;
  }

  to {
    height: 11px;
  }
}

@-webkit-keyframes dccmove {
  from {
    height: 5px;
  }

  to {
    height: 11px;
  }
}

.home_menu {
  display: block;
  padding: 12px 20px;
}

.home_menu .title {
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.home_menu .title .iconfont {
  font-size: 20px;
  display: inline-block;
  transform: translateY(1px);
  margin-right: 5px;
}

.home_menu .menu_item_box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-left: 25px;
  margin-bottom: 0px;
}

.home_menu .menu_item_box .fe_cursor:hover {
  color: #fe2270;
}

.home_menu .menu_item_box a {
  width: 50%;
  margin-bottom: 13px;
}

.home_menu .menu_item_box a:nth-child(even) {
  padding-left: 10px;
}

.home_menu .iconfont {
  position: absolute;
  top: 0;
  left: 0;
}

.min_w_100 {
  min-width: 100px;
}

.m_b_0 {
  margin-bottom: 0 !important;
}

.m_t_1 {
  margin-top: -1px !important;
}

.m_t_2 {
  margin-top: -2px !important;
}

.youqing_link {
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  width: 1280px;
  margin: 20px auto 10px;
}

.youqing_link .friendbox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.youqing_link .friendbox .a_link:hover {
  color: #fff;
}

.flex_btn_box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex_end {
  justify-content: flex-end;
}

.beta {
  position: absolute;
  top: -10px;
  right: -40px;
  line-height: 13px;
  padding: 1px 3px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background-color: #fe2270;
  transform: scale(0.8);
  width: auto;
  border-radius: 4px 0 4px 0;
}

.articleHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
}

.articleHeader .header_banner_box {
  margin: 0 auto;
  width: 1200px;
}

.articleHeader #Header {
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 63px;
  z-index: 1900;
}

.articleHeader #Header .Header_l {
  display: flex;
  width: 100%;
  height: 64px;
  align-items: center;
  justify-content: flex-start;
}

.articleHeader #Header .Header_l img {
  height: 25px;
  display: block;
}

.articleHeader #Header .Header_l .header_right {
  display: none;
}


.articleHeader #Header .Header_l .logo-container {
  position: relative;
  cursor: pointer;
}

.articleHeader #Header .Header_l .logo-container .logo {
  width: 100%;
  height: 100%;
}

.articleHeader #Header .logo {
  position: relative;
  cursor: pointer;
  display: block;
  border: none;
}

.articleHeader #Header .tabs_ul {
  margin-bottom: 0;
  min-width: 480px;
  padding-left: 64px;
  height: 100%;
  display: flex;
  align-items: center;
}

.articleHeader #Header .tabs_ul .tabs_item {
  cursor: pointer;
  height: 64px;
  font-size: 14px;
  color: #1f1b22;
  line-height: 64px;
  font-weight: 600;
}

.articleHeader #Header .tabs_ul .tabs_item .tabsList_telte {
  color: #1f1b22;
  font-family: 'PingFang SC';
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  padding-right: 45px;
}

.articleHeader #Header .tabs_ul .tabs_item .tabsList_telte .header_tag {
  position: absolute;
  left: 36px;
  top: -10px;
  display: inline-block;
  width: 36px;
  height: 16px;
  flex-shrink: 0;
}

.articleHeader #Header .tabs_ul .tabs_item .tabsList_telte .bottom {
  position: relative;
}

.articleHeader #Header .tabs_ul .tabs_item .tabsList_telte .bottom::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 6px;
  width: 12px;
  height: 12px;
  background: url(https://static.aidso.com/img/article/header/bottom.png?v=1) center center;
  background-size: 100% 100%;
}

.articleHeader #Header .tabs_ul .tabs_item .tabsList_telte:hover {
  color: #6D14FF;
}

.articleHeader #Header .tabs_ul .tabs_item .tabsList_telte:hover .bottom {
  position: relative;
}

.articleHeader #Header .tabs_ul .tabs_item .tabsList_telte:hover .bottom::after {
  background: url(https://static.aidso.com/img/article/header/bottomOn.png?v=1) center center;
  background-size: 100% 100%;
}

.articleHeader #Header .tabs_ul .tabs_item:hover .tabsList_telte {
  color: #6D14FF;
}

.articleHeader #Header .tabs_ul .tabs_item a {
  color: #1f1b22;
  font-weight: 600;
}

.articleHeader #Header .tabs_ul .tabs_item i {
  display: inline-block;
  transform: translateX(-2px);
}

.articleHeader #Header .tabs_ul .tabs_item:hover a {
  color: #6D14FF;
  font-family: 'PingFang SC';
}

.articleHeader #Header .header_right {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  color: #333333;
  flex-shrink: 0;
}

.HeaderDropdowntop {
  padding: 0 !important;
  top: 64px !important;
  left: 0 !important;
  margin-top: 0 !important;
  width: 100vw;
  font-family: 'PingFang SC';
  box-shadow: 0px 4px 8px -2px rgba(31, 27, 34, 0.1), 0px 2px 4px -2px rgba(31, 27, 34, 0.06);
}

.HeaderDropdowntop .menu-content {
  padding-top: 40px;
  padding-bottom: 40px;
  margin: 0 auto;
  line-height: normal;
}

.HeaderDropdowntop {
  padding: 0 !important;
  top: 64px !important;
  left: 0 !important;
  margin-top: 0 !important;
  width: 100vw;
  font-family: 'PingFang SC';
  box-shadow: 0px 4px 8px -2px rgba(31, 27, 34, 0.1), 0px 2px 4px -2px rgba(31, 27, 34, 0.06);
}

.HeaderDropdowntop .menu-content {
  padding-top: 40px;
  padding-bottom: 40px;
  margin: 0 auto;
  line-height: normal;
}

.HeaderDropdowntop .menu-content .menu-left {
  padding-top: 5px;
  width: 190px;
  margin-right: 40px;
}

.HeaderDropdowntop .menu-content .menu-left .menu-img-wrapper {
  position: relative;
  cursor: pointer;
  padding: 20px;
  border-radius: 10px;
  width: 180px;
  height: 80px;
  background: linear-gradient(180deg, #f0f0ff, #fafaff);
  margin-bottom: 10px;
}

.HeaderDropdowntop .menu-content .menu-left .menu-img-wrapper .menu-img-wrapper-left-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.HeaderDropdowntop .menu-content .menu-left .menu-img-wrapper .menu-img-wrapper-left .menu-img-wrapper-left-title {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.HeaderDropdowntop .menu-content .menu-left .menu-img-wrapper .menu-img-wrapper-left .menu-img-wrapper-left-desc {
  font-size: 12px;
  color: #adadad;
}

.HeaderDropdowntop .menu-content .menu-left .menu-img-wrapper .menu-img-wrapper-right {
  width: 24px;
  height: 24px;
}

.HeaderDropdowntop .menu-content .menu-left .menu-img-wrapper .menu-img-wrapper-icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.2;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item {
  margin-right: 48px;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item:last-child {
  margin-right: 0px;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-title-content {
  position: relative;
  display: flex;
  align-items: center;
  height: 45px;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-title-content span {
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-title-content .menu-img-wrapper-icon {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-title-content:after {
  pointer-events: none;
  box-sizing: border-box;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid #f1f1f1;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-menu-content {
  margin-top: 10px;
  margin-left: -10px;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-menu-content .flex-1 {
  flex: 1;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-menu-content .flex-2 {
  flex: 2;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-menu-content .w155 {
  width: 155px;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-menu-content .item-warp {
  cursor: pointer;
  padding-right: 10px;
  margin-right: 10px;
  display: inline-block;
  min-width: 155px;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 4px;
  white-space: nowrap;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-menu-content .item-warp .sub-menu-item {
  display: inline-flex;
  flex-direction: column;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-menu-content .item-warp .sub-menu-item .top {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: all 0.2s;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-menu-content .item-warp .sub-menu-item .bottom {
  font-size: 12px;
  font-weight: 400;
  color: #adadad;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-menu-content .item-warp:hover {
  background: #f5f5f5;
}

.HeaderDropdowntop .menu-content .menu-middle .menu-middle-item .sub-menu-content .item-warp:hover .top {
  color: var(--theme-primary);
}

.HeaderDropdowntop .i_new {
  position: relative;
}

@keyframes skeleton {
  0% {
    left: -12px;
  }

  100% {
    left: 80px;
  }
}

.HeaderDropdowntop .i_new::before {
  content: 'new';
  position: absolute;
  top: -10px;
  right: -43px;
  background: linear-gradient(90deg, #ff3834 0%, #ff5143 51%, #ff6f53 100%);
  color: #fff;
  border-radius: 10px 0px 10px 0px;
  font-size: 12px;
  z-index: 1;
  width: 40px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.HeaderDropdowntop .i_new::after {
  content: '';
  position: absolute;
  height: 30px;
  width: 20px;
  top: -16px;
  z-index: 6;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  transform: rotate(-10deg);
  animation: skeleton 1.8s ease infinite;
}

.header_right {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  color: #333333;
  flex-shrink: 0;
}

.header_right .mt24 {
  margin-left: 24px;
}

.header_right .login_btn {
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  color: #fff;
  height: 32px;
  line-height: 32px;
}

.header_right .ling_btn {
  position: relative;
  border: none;
  background: linear-gradient(270deg, #24211d 0%, #4a4740 100%);
  color: #f8d19c;
  font-family: 'PingFang SC';
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.header_right .ling_btn .ling_btn_tag {
  position: absolute;
  width: 52px;
  top: -9px;
  right: -18px;
}

.header_right .ling_btn_v {
  cursor: pointer;
  display: flex;
  align-items: center;
  background: transparent;
  font-family: 'PingFang SC';
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  border-radius: 32px;
}

.header_right .ling_btn_v .vip_img {
  margin-right: 2px;
  width: 24px;
  height: 24px;
}


.header_right .ling_btn_evip {
  border: 1px solid #6d14ff;
  color: #6d14ff;
}

.header_right .ling_btn_svip {
  border: 1px solid #007bff;
  color: #007bff;
}

.header_right .ling_btn_vip {
  border: 1px solid #d1a658;
  color: #d1a658;
}

.header_right .userInfo {
  margin-left: 24px;
  display: flex;
  align-items: center;
  color: #1f1b22;
  text-align: right;
  font-family: 'PingFang SC';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.header_right .userInfo .userInfo_l {
  color: #1f1b22;
  max-width: 120px;
}

.header_right .userInfo .userInfo_c {
  margin-left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid #ededed;
}


/* footer */

.footerIndex {
  width: 100%;
  min-width: 1300px;
}

.footerIndex .home_bottom {
  width: 100%;
  background-image: url('https://static.aidso.com/img/article/header/bg1.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.footerIndex .home_bottom .m886 {
  margin: 0 auto;
  padding: 0px 50px;
  padding-top: 45px;
  max-width: 1300px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footerIndex .home_bottom .m886 .left .left_t {
  display: flex;
  align-items: center;
}

.footerIndex .home_bottom .m886 .left .left_t .left_txt {
  height: 22px;
  font-size: 16px;
  font-family: "PingFang SC";
  color: #ffffff;
  line-height: 22px;
  padding-left: 32px;
}

.footerIndex .home_bottom .m886 .left .left_t .left_logo {
  height: 32px;
}

.footerIndex .home_bottom .m886 .left .left_b {
  padding-top: 16px;
}

.footerIndex .home_bottom .m886 .left .left_b > ul {
  padding-top: 16px;
  display: flex;
  align-items: center;
}

.footerIndex .home_bottom .m886 .left .left_b > ul > li {
  display: flex;
  align-items: center;
  color: #fff;
  font-feature-settings: 'clig' off, 'liga' off;
  font-family: 'PingFang SC';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-right: 32px;
}

.footerIndex .home_bottom .m886 .left .left_b > ul > li:not(:first-child) {
  min-width: 70px;
}

.footerIndex .home_bottom .m886 .left .left_b > ul > li:nth-child(1) {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

.footerIndex .home_bottom .m886 .left .left_b > ul:nth-child(1) > li:not(:first-child) {
  cursor: pointer;
}

.footerIndex .home_bottom .m886 .left .left_b > ul:nth-child(1) > li:not(:first-child):hover {
  opacity: 0.8;
}

.footerIndex .home_bottom .m886 .right_box {
  display: flex;
}

.footerIndex .home_bottom .m886 .server {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 47px;
}

.footerIndex .home_bottom .m886 .server p {
  padding-top: 10px;
  color: #fff;
  font-feature-settings: 'clig' off, 'liga' off;
  font-family: 'PingFang SC';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.footerIndex .footer-bottom {
  display: flex;
  color: #fff;
  font-feature-settings: 'clig' off, 'liga' off;
  font-family: 'PingFang SC';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.footerIndex .footer-bottom .footer-bottom-left {
  margin-right: 32px;
  min-width: 70px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.footerIndex .footer-bottom .footer-bottom-right {
  flex: 1;
}

.footerIndex .footer-bottom .footer-bottom-right ul {
  display: flex;
}

.footerIndex .footer-bottom .footer-bottom-right ul li {
  margin-right: 32px;
  line-height: 30px;
  color: #fff;
  min-width: 70px;
  float: left;
}

.footerIndex .footer-bottom .footer-bottom-right ul li:hover {
  opacity: 0.8;
  cursor: pointer;
}

.footerIndex .ui_bottom {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e1826;
}

.footerIndex .ui_bottom .ui_bottom_footer {
  height: 20px;
  font-size: 14px;
  font-family: "PingFang SC";
  font-weight: 400;
  color: #b8bbc3;
  line-height: 20px;
}

.FooterDropdowntop {
  min-width: 88px !important;
  padding: 4px !important;
  padding-bottom: 0px !important;
}