.root {
  width: 100%;
  position: relative;
  background: #fff;
}

.focus_item .qrcode {
  display: none;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
}

.focus_item:hover .qrcode {
  display: block;
}

.focus_item .qrcode img {
  width: 100%;
  height: 100%;
}

.video {
  display: block;
  width: 50vw;
  height: 26vw;
  margin-left: 5vw;
}

.tab_contents.active.tab_history {
  display: flex;
  align-items: center;
  height: 26vw;
  position: relative;
}

.history-content {
  width: fit-content;
  position: relative;
  display: flex;
  align-items: center;
}

.history-line {
  position: absolute;
  top: 4.3vw;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #fff;
}

.history-item {
  margin-right: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
}

.history_more {
  position: absolute;
  top: 0;
  left: 0;
}

.history-item-time {
  height: 4vw;
  line-height: 4vw;
  font-size: 28px;
}

.history-item-dot {
  width: 0.6vw;
  height: 0.6vw;
  margin-bottom: 10px;
  display: block;
  border-radius: 50%;
  background: #fff;
}

.history-item-desc {
  font-size: 16px;
  width: 16vw;
  height: 8vw;
  text-align: center;
}

.info_search {
  display: flex;
  align-items: center;
}

.search_content {
  position: fixed;
  z-index: 100;
  top: 6.51vw;
  left: 0;
  width: 100%;
  height: 0;
  transition: height .2s linear;
  background-color: #fff;
  overflow: hidden;
}

.search_content.active {
  height: calc(100vh - 6.51vw);
  overflow: auto;
}

.search_close {
  position: relative;
  width: 8.33vw;
  height: 8.125vw;
  margin-left: 72.8125vw;
  cursor: pointer;
  background: url(/templates/netskin/images/ic_nav_active.svg) center/contain no-repeat;
}

.search_close_icon {
  position: absolute;
  width: 1.04vw;
  height: 1.04vw;
  left: 2.4vw;
  bottom: 1vw;
  background: url(/templates/netskin/images/ic_close.svg) center/contain no-repeat;
}

.search_box {
  display: flex;
  align-items: center;
  margin: 3.4375vw auto 1.875vw;
  width: 45.3125vw;
  height: 3.125vw;
  box-sizing: border-box;
  padding: 1.25vw 1.875vw;
  border-radius: 1.5625vw;
  background: #f7f7f7;
}

.search_box input {
  width: 38.625vw;
  margin-right: 2vw;
  border: none;
  outline: none;
  background-color: #f7f7f7;
  ;
}

.search_box .search_icon {
  border: none;
  outline: none;
  width: 1vw;
  height: 1vw;
  background: url(/templates/netskin/images/search_dark.svg) center/contain no-repeat;
  cursor: pointer;
}

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

.search_keys p,
.search_key_item {
  font-family: "Source Han Sans CN";
  font-weight: 400;
  font-size: 0.9375vw;
  color: #242121;
  margin-right: 0.8vw;
}

.search_key_item {
  cursor: pointer;
}

.content_list {
  width: 50vw;
  margin: 2vw auto 0;
}

.content_item {
  display: flex;
  align-items: stretch;
  height: 6.25vw;
  margin-bottom: 1.6vw;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  text-decoration: none;
}

.content_item img {
  display: block;
  width: 8.333vw;
  height: 6.25vw;
  margin-right: 0.78125vw;
}

.content_msg {
  box-sizing: border-box;
  padding: 0.7815vw 0;
}

.content_title {
  color: #333;
  font-size: 0.9375vw;
  margin-bottom: 0.5vw;
}

.content_time {
  color: #666;
  font-size: 0.833vw;
}

.header {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.51vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 2.24vw;
  border-bottom: 0.052vw solid #fff;
}

.header:hover,
.header.active {
  background: #fff;
  border-bottom: 0.052vw solid #ccc;
}

.nav {
  display: flex;
  align-items: center;
}

.nav_item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.98vw;
  height: 6.51vw;
  cursor: pointer;
}

.nav_item:hover::after {
  content: "";
  position: absolute;
  width: 1.46vw;
  height: 1.46vw;
  bottom: 0.599vw;
  left: 50%;
  transform: translateX(-50%);
  background: url(/templates/netskin/images/ic_nav_active.svg) center/contain no-repeat;
}

.nav_item_text {
  font-family: "Source Han Sans CN";
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: center;
}


.header:hover .nav_item_text,
.header.active .nav_item_text {
  color: #242121;
  font-size: 16px;
}

.nav_item.no_background:hover~.bg_sub_nav {
  display: none;
}

.bg_sub_nav {
  display: none;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 13.45vw;
  top: 6.51vw;
  left: 0;
  background: #fff;
}

.nav_item:hover~.bg_sub_nav {
  display: block;
}

.sub_nav_wrap {
  display: flex;
  position: absolute;
  top: 6.51vw;
  left: 0;
  z-index: 101;
}

.sub_nav {
  width: auto;
  white-space: nowrap;
  padding-top: 1.042vw;
  padding-left: 1.41vw;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.nav_item:hover .sub_nav {
  display: flex;
}

.product_tit {
  margin-bottom: 0.5vw;
  font-size: 16px;
}
.product_tit a {
  font-size: 18px;
  font-weight: 400;
  color: #333;
}

.sub_nav a {
  display: block;
  margin-bottom: 0.52vw;
  color: #4f5058;
  font-size: 14px;
  font-family: "Source Han Sans CN";
  font-weight: 400;
  letter-spacing: 0;
}

.sub_nav a:hover {
  color: #16161a;
}

.header_right {
  display: flex;
  align-items: center;
}

.search {
  margin-right: 1.979vw;
  width: 0.99vw;
  height: 1.094vw;
  background: url(/templates/netskin/images/search.svg) center/contain no-repeat;
  border: 0;
  outline: none;
  padding: 0;
  cursor: pointer;
}

.header:hover .search,
.header.active .search {
  background: url(/templates/netskin/images/search_dark.svg) center/contain no-repeat;
}

.translate,
.translate a {
  color: #fff;
}

.header:hover .translate,
.header:hover .translate a,
.header.active .translate,
.header.active .translate a {
  color: #242121;
}

.logo {
  width: 11.979vw;
  height: 2.656vw;
  background: url(/templates/netskin/images/logo.svg) center/contain no-repeat;
  cursor: pointer;
}

.header:hover .logo,
.header.active .logo {
  background: url(/templates/netskin/images/logo_dark.png) center/contain no-repeat;

}

.banner {
  position: relative;
  width: 100%;
  height: 700px;
}

.banner_image {
  display: block;
  width: 100%;
  height: 100%;
}

.banner_title {
  position: absolute;
  top: 200px;
  left: 100px;
}

.banner_text {
  font-family: "Source Han Sans CN";
  font-weight: 600;
  font-size: 3.385vw;
  line-height: 80px;
  text-align: left;
  color: #fff;
}

.banner_mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:#030a42;
  opacity: 0.4;
}

.news_card {
  position: relative;
  height: 25.781vw;
  background: #f4f4f8;
}

.news {
  position: absolute;
  top: -2.604vw;
  width: 100%;
  height: 23.854vw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding-left: 3.385vw;
}

.news_main {
  box-sizing: border-box;
  width: 17.708vw;
  height: 23.854vw;
  margin-right: 1.875vw;
  padding: 4.479vw 1.875vw 0;
  background: url(/templates/netskin/images/bg_news.svg) top left / 17.708vw 23.854vw no-repeat;
}

.news_name {
  margin-bottom: 0.573vw;
  font-family: "Source Han Sans CN Medium";
  font-weight: 500;
  font-size: 1.875vw;
  color: #fff;
}

.w_line {
  width: 7.708vw;
  height: 0.677vw;
  background: #fff;
}

.news_more {
  display: flex;
  align-items: center;
  margin-top: 9.115vw;
  font-family: "Source Han Sans CN";
  font-weight: 400;
  font-size: 0.938vw;
  color: #fff;
  text-decoration: none;
}

.arrow_grey_right {
  margin-left: 0.26vw;
  width: 0.729vw;
  height: 1.458vw;
  background: url(/templates/netskin/images/arrow_grey_right.svg) center/contain no-repeat;
}

.news_item {
  width: 23.854vw;
  height: 23.854vw;
  margin-right: 0.833vw;
  background: #fff;
}

.news_item:last-child {
  margin-right: 0;
}

.news_image_wrap {
  display: block;
  width: 23.854vw;
  height: 15.938vw;
  overflow: hidden;
  margin-bottom: 1.094vw;
}

.news_pic {
  display: block;
  width: 23.854vw;
  height: 15.938vw;
  transition: transform .2s linear;
}

.news_pic:hover {
  transform: scale(1.1);
}

.news_time {
  box-sizing: border-box;
  padding-left: 0.938vw;
  margin-bottom: 0.938vw;
  font-family: "Source Han Sans CN";
  font-weight: 400;
  font-size: 0.885vw;
  color: #b9b4b4;
}

.news_title,
.news_title a {
  width: 100%;
  box-sizing: border-box;
  line-height: 1.458vw;
  padding: 0 0.938vw;
  font-family: "Source Han Sans CN";
  font-weight: 400;
  font-size: 1.094vw;
  color: #242121;
}

.news_title a {
  padding: 0 !important;
}

.news_title a:hover {
  color: #cd3f39 !important;
}

.intro {
  padding: 7.031vw 0 2.604vw;
}

.intro p {
  font-family: "Source Han Sans CN Medium";
  font-weight: 500;
  font-size: 1.667vw;
  text-align: center;
  color: #060e4e;
  line-height: 2.24vw;
}

.link_about {
  display: block;
  margin: 3.438vw auto 0;
  box-sizing: border-box;
  padding-left: 1.146vw;
  width: 7.135vw;
  height: 2.344vw;
  line-height: 2.344vw;
  font-family: "Source Han Sans CN";
  font-weight: 400;
  font-size: 1.042vw;
  color: #fff;
  text-decoration: none;
  background: url(/templates/netskin/images/bg_link_about.svg) top left / 7.135vw 2.344vw no-repeat;
}

.intro_content {
  display: flex;
  height: 39.271vw;
  background: url(/templates/netskin/images/bg_intro.png) top left / 100% 100% no-repeat;
}

.intro_title {
  display: none;
}

.intro_tab {
  box-sizing: border-box;
  padding-left: 5.104vw;
  padding-top: 5.313vw;
}

.tab {
  cursor: pointer;
  margin-bottom: 6.25vw;
  font-family: "Source Han Sans CN Medium";
  font-weight: 500;
  font-size: 1.875vw;
  color: #f0f0f0;
}

.tab.active {
  position: relative;
  padding-left: 1.198vw;
  color: #fff;
}

.tab.active::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.677vw;
  height: 2.813vw;
  background: #dd2d30;
}

.tab:last-child {
  margin-bottom: 0;
}

.tab_content {
  box-sizing: border-box;
  margin-left: 8.49vw;
  padding-top: 6.927vw;
}

.tab_contents {
  display: none;
}

.tab_contents.active {
  display: block;
}

.tab_content_desc {
  font-family: "Source Han Sans CN";
  font-weight: 400;
  font-size: 1.042vw;
  color: #fff;
}

.stat {
  display: flex;
  margin-top: 6.25vw;
}

.stat_item {
  margin-right: 7vw;
}

.stat_item:last-child {
  margin-right: 0;
}

.stat_num {
  margin-bottom: 0.885vw;
  font-family: "Source Han Sans CN Bold";
  font-weight: 700;
  font-size: 2.344vw;
  color: #fff;
}

.stat_content {
  font-family: "Source Han Sans CN";
  font-weight: 400;
  font-size: 14px;
  color: #f0f0f0;
}

.service {
  width: 83.385vw;
  height: 42.865vw;
  margin: 4.427vw auto 8.542vw;
  display: flex;
  flex-wrap: wrap;
}

.s_item {
  position: relative;
  display: block;
  width: 27.76vw;
  height: 18.542vw;
  margin-top: 0.104vw;
  margin-right: 0.052vw;
  box-sizing: border-box;
  padding: 2.917vw 0 0 2.135vw;
  font-size: 0;
  text-decoration: none;
}

.s_item:last-child {
  margin-right: 0;
}

.s_item_large {
  width: 41.667vw;
  height: 24.219vw;
  margin: 0;
}

.s_title {
  margin-bottom: 1.615vw;
  font-family: "Source Han Sans CN";
  font-weight: 400;
  font-size: 2.083vw;
  line-height: 4.427vw;
  color: #fff;
}

.s_item_large .s_title {
  margin-bottom: 1.719vw;
}

.s_desc {
  font-family: "Source Han Sans CN";
  font-weight: 400;
  font-size: 0.833vw;
  line-height: 1.302vw;
  color: #fff;
}

.arrow_service {
  position: absolute;
  width: 1.563vw;
  height: 1.563vw;
  left: 2.396vw;
  bottom: 1.354vw;
  background: url(/templates/netskin/images/arrow_service.svg) center/contain no-repeat;
}

.s_item_large .arrow_service {
  bottom: 2.604vw;
}

.s_product {
  background: url(/templates/netskin/images/bg_product.png) top left / 100% 100% no-repeat;
}

.s_solution {
  background: url(/templates/netskin/images/bg_solution.png) top left / 100% 100% no-repeat;
}

.s_support {
  background: url(/templates/netskin/images/bg_support.png) top left / 100% 100% no-repeat;
}

.s_joinus {
  background: url(/templates/netskin/images/bg_joinus.png) top left / 100% 100% no-repeat;
}

.s_culture {
  background: url(/templates/netskin/images/bg_culture.png) top left / 100% 100% no-repeat;
}

.contact {
  position: relative;
  top: 0;
  box-sizing: border-box;
  padding-left: 3.385vw;
  padding-top: 1.8vw;
  display: flex;
  height: 8.958vw;
}

.contact_text {
  font-family: "Source Han Sans CN";
  font-weight: 300;
  font-size: 14px;
  line-height: 1.198vw;
  color: #fff;
}

.focus {
  margin-right: 11.302vw;
}

.focus_icons {
  margin-top: 1.667vw;
  display: flex;
  align-items: center;
}

.focus_item {
  position: relative;
  width: 1.406vw;
  height: 1.406vw;
  margin-right: 1.406vw;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.focus_item:last-child {
  margin-right: 0;
}

.focus_wechat {
  background-image: url(/templates/netskin/images/ic_wechat.svg);
}

.focus_weibo {
  background-image: url(/templates/netskin/images/ic_weibo.svg);
}

.focus_ins {
  background-image: url(/templates/netskin/images/ic_ins.svg);
}

.focus_facebook {
  background-image: url(/templates/netskin/images/ic_facebook.svg);
}

.phone {
  display: flex;
  margin-right: 7.708vw;
}

.phone_icon {
  width: 1.875vw;
  height: 1.563vw;
  margin-right: 1.042vw;
  background: url(/templates/netskin/images/ic_contact.svg) center/contain no-repeat;
}

.phone_num {
  margin-top: 8px;
  font-family: "Source Han Sans CN Bold";
  font-weight: 500;
  font-size: 14px;
  line-height: 1.198vw;
  color: #fff;
      opacity: 0.85;
}

.email {
  display: flex;
  margin-right: 7.969vw;
}

.email_icon {
  width: 1.875vw;
  height: 1.875vw;
  margin-right: 1.354vw;
  background: url(/templates/netskin/images/ic_email.svg) center/contain no-repeat;
}

.email_text {
  margin-top: 8px;
  font-family: "Source Han Sans CN";
  font-weight: 300;
  font-size: 14px;
  line-height: 1.198vw;
  color: #fff;
      opacity: 0.85;
}

.address {
  display: flex;
}

.address_icon {
  width: 1.354vw;
  height: 1.875vw;
  margin-right: 1.25vw;
  background: url(/templates/netskin/images/ic_address.svg) center/contain no-repeat;
}

.address_text {
  margin-top: 8px;
  font-family: "Source Han Sans CN";
  font-weight: 300;
  font-size: 13px;
  line-height: 1.198vw;
  color: #fff;
      opacity: 0.85;
}

.footer .detail {
  position: relative;
  height: 16.9vw;
  display: flex;
  box-sizing: border-box;
  padding-left: 3.385vw;
  padding-top: 1.5vw;
}

.company {
  margin-right: 6.667vw;
}

.company_logo {
  width: 10vw;
  height: 2.708vw;
  margin-bottom: 1.823vw;
  background: url(/templates/netskin/images/logo.svg) center/contain no-repeat;
}

.company_title {
  margin-bottom: 0.885vw;
  font-family: "Source Han Sans CN Medium";
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
}

.company_desc {
  width: 17.5vw;
  font-family: "Source Han Sans CN";
  font-weight: 400;
  font-size: 12px;
    color: #fff;
    opacity: 0.6;
	line-height: 21px;
}

.links {
  display: flex;
}

.links_group {
  margin-right: 4.427vw;
}

.links_group:last-child {
  margin-right: 0;
}

.links_group p {
  margin-bottom: 1.667vw;
  font-family: "Source Han Sans CN";
  font-weight: 300;
  font-size: 14px;
  color: #ffffff;
}

.links_wrap a {
    display: block;
    color: #fff;
    opacity: 0.6;
    font-size: 12px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    margin-bottom: 10px;
}

.links_wrap a:hover {
  opacity: 1;
}

.links_product {
  display: flex;
}

.mr_32 {
  margin-right: 1.667vw;
}

.footer {
  position: relative;
}

.footer_mask1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8vw;
  background: #0059c6;
}

.footer_mask2 {
  position: absolute;
  top: 8vw;
  left: 0;
  width: 100%;
  height: 17.865vw;
  background: #034ba2;
}

.footer_mask3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 26.771vw;
  background: url(/templates/netskin/images/bg_footer.png) top left / 100% 100% no-repeat;
}

.footer_msg {
  position: relative;
  box-sizing: border-box;
  height: 7vw;
  padding: 1.25vw 3.125vw 0 2.292vw;
  background: #363839;
}

.footer_msg .msg {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright {
  font-family: "Source Han Sans CN";
  font-weight: 300;
  font-size: 12px;
  color: #b2adad;
}

.other_links {
  display: flex;
  align-items: center;
}

.other_links a {
  display: block;
  margin-right: 1.042vw;
  font-family: "Source Han Sans CN";
  font-weight: 300;
  font-size: 12px;
  line-height: 1.667vw;
  color: #b2adad;
}

.friendly_links {
  display: flex;
  height: 22px;
}

.friendly_links p,
.friendly_links a {
  margin-top: 0.2vw;
  margin-right: 1.042vw;
  font-family: "Source Han Sans CN";
  font-weight: 400;
  font-size: 12px;
  color: #a0a0a0;
}

.back_to_top {
  position: absolute;
  width: 3.021vw;
  height: 3.021vw;
  top: 3.542vw;
  right: 3.177vw;
  background: url(/templates/netskin/images/ic_back2top.svg) center/contain no-repeat;
}

.header-m {
  display: none;
}

@media screen and (max-width: 750px) {
  .root {
    box-sizing: border-box;
    padding-top: 15.467vw;
  }

  .search-box-m {
    width: 90vw;
    height: 16vw;
    margin: 4vw auto;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 2.667vw 0 2.667vw 4vw;
    background-color: #f5f5f5;
  }

  .search-icon-m {
    width: 5.3vw;
    height: 5.3vw;
    background: url(/templates/netskin/images/search_dark.svg) center/contain no-repeat;
    margin-right: 1.33vw;
  }

  .search-box-m input {
    flex: 1;
    border: 0;
    outline: none;
    background-color: #f5f5f5;
  }

  .search-button-m {
    width: 20.667vw;
    height: 16vw;
    outline: none;
    border: none;
    color: #fff;
    background-color: #004896;
  }

  .header {
    display: none;
  }

  .news_card {
    height: auto;
    background-color: #fff;
  }

  .news {
    position: relative;
    top: 0;
    flex-direction: column;
    height: auto;
    margin-top: 2.6vw;
  }

  .news_main {
    width: 80vw;
    height: auto;
    margin-right: 0;
    padding: 0;
    background: none;
  }

  .w_line,
  .news_more {
    display: none;
  }

  .news_name {
    color: #242121;
    font-size: 4.8vw;
    font-weight: bold;
    text-align: center;
  }

  .news_item {
    margin-top: 2.6vw;
    width: 80vw;
    height: auto;
    margin-right: 0;
    padding-bottom: 5.33vw;
    border: 0.267vw solid #ddd;
  }

  .news_image_wrap {
    width: 80vw;
    height: 52vw;
    margin-bottom: 2.6vw;
  }

  .news_pic {
    display: block;
    width: 80vw;
    height: 52vw;
  }

  .news_time {
    padding-left: 2.6vw;
    margin-bottom: 2.6vw;
    font-weight: 400;
    font-size: 3.73vw;
  }

  .news_title,
  .news_title a {
    line-height: 1em;
    padding: 0 2.6vw;
    font-size: 3.73vw;
  }

  .intro {
    padding: 8vw 0 2.604vw;
  }

  .intro p {
    font-weight: 500;
    font-size: 4.8vw;
    line-height: 4.8vw;
  }

  .link_about {
    display: block;
    margin: 3.438vw auto 0;
    box-sizing: border-box;
    padding-left: 1.146vw;
    width: 24.33vw;
    height: 8.1vw;
    line-height: 8.1vw;
    font-size: 4.267vw;
    background: url(/templates/netskin/images/bg_link_about.svg) top left / cover no-repeat;
  }

  .intro_content {
    display: block;
    padding: 2.667vw;
    height: auto;
  }

  .intro_title {
    display: block;
    font-size: 4.267vw;
    font-family: "Source Han Sans CN Medium";
    font-weight: 500;
    color: #f0f0f0;
    text-align: center;
  }

  .intro_tab {
    display: none;
  }

  .tab_content_desc {
    font-size: 3.2vw;
  }
  .tab_content_desc a{
    color: #fff;
  }

  .stat {
    display: block;
  }

  .stat_item {
    margin-right: 0;
    margin-bottom: 2.667vw;
  }

  .stat_num {
    font-size: 3.733vw;
  }

  .stat_content {
    font-size: 2.6vw;
  }

  .service {
    display: block;
    height: auto;
  }

  .s_item {
    width: 82vw;
    height: 48vw;
    margin: 0 auto 2.6vw;
    padding: 7.33vw 0 0 5.33vw;
    font-size: 0;
    text-decoration: none;
  }

  .s_title {
    margin-bottom: 1.615vw;
    font-size: 6.13vw;
    line-height: 6.13vw;
    margin-bottom: 4vw;
  }

  .s_desc {
    font-size: 3.73vw;
    line-height: 4vw;
    opacity: 0.8;
  }

  .s_item_large .s_title {
    margin-bottom: 4vw;
  }

  .arrow_service {
    position: absolute;
    width: 4vw;
    height: 4vw;
    left: 2.67vw;
    bottom: 2.67vw;
    background: url(/templates/netskin/images/arrow_service.svg) center/contain no-repeat;
  }

  .footer {
    height: auto;
  }

  .contact {
    display: block;
    height: auto;
    padding: 5.3vw 0;
    background-color: #368cf2;
  }

  .focus {
    margin-right: 0;
  }

  .contact_text {
    text-align: center;
    font-size: 3.73vw;
    line-height: 4vw;
  }

  .focus_icons {
    margin: 2.6vw auto 0;
    justify-content: center;
  }

  .focus_item {
    width: 5.33vw;
    height: 5.33vw;
    margin: 2.6vw;
  }

  .phone,
  .email,
  .address {
    width: 55vw;
    justify-content: space-between;
    margin: 2.667vw auto 0;
  }

  .contact_wrap {
    flex: 1;
  }

  .contact_wrap .contact_text {
    text-align: left;
  }

  .phone_icon,
  .email_icon,
  .address_icon {
    width: 5.3vw;
    height: 5.3vw;
    margin-right: 2vw;
  }

  .phone_num,
  .email_text,
  .address_text {
    font-size: 3.2vw;
    line-height: normal;
  }

  .footer .detail {
    display: block;
    height: auto;
    padding: 8vw 0;
    background-color: #176cd3;
  }

  .company {
    margin-right: 0;
  }

  .company_logo {
    width: 40vw;
    height: 10vw;
    margin: 0 auto;
  }

  .company_title {
    text-align: center;
  }

  .company_desc {
    box-sizing: border-box;
    padding: 0 4vw;
  }

  .company_title,
  .company_desc {
    width: 100%;
    margin: 0 auto;
    font-size: 3.2vw;
  }

  .links {
    display: none;
  }

  .footer_msg {
    height: auto;
    padding: 5.333vw 2.667vw;
  }

  .footer_msg .msg {
    display: block;
    padding: 2.667vw;
  }

  .copyright {
    width: 80vw;
    margin: 0 auto;
    font-size: 3.2vw;
  }

  .other_links {
    justify-content: center;
  }

  .other_links a {
    font-size: 3.2vw;
    line-height: normal;
  }

  .friendly_links {
    justify-content: center;
  }

  .friendly_links p,
  .friendly_links a {
    font-size: 3.2vw;
    line-height: normal;
  }

  .back_to_top {
    width: 6.4vw;
    height: 6.4vw;
    bottom: 2.667vw;
    right: 2.667vw;
  }

  .header-m {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0 4.267vw;
    height: 15.467vw;
    background-color: #fff;
  }

  .logo {
    width: 27.467vw;
    height: 15.467vw;
    background: url(/templates/netskin/images/logo_dark.png) center/contain no-repeat;
    cursor: pointer;
  }

  .menu-switch {
    width: 5.867vw;
    height: 4.267vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .menu-switch span {
    display: block;
    width: 100%;
    height: 0.533vw;
    margin-bottom: 1.333vw;
    border-radius: 0.8vw;
    background-color: #666;
    transition: all 0.3s linear;
  }

  .menu-switch span:nth-child(2) {
    width: 80%;
  }

  .menu-switch.menu-close span:nth-child(2) {
    width: 0;
  }

  .menu-switch.menu-close {
    position: relative;
  }

  .menu-switch.menu-close span:nth-child(1) {
    position: absolute;
    top: 2vw;
    transform: rotate(45deg);
  }

  .menu-switch.menu-close span:nth-child(3) {
    position: absolute;
    top: 2vw;
    transform: rotate(-45deg);
  }

  .nav-m {
    position: absolute;
    top: 15.467vw;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    height: 0;
    transition: height .2s linear;
    overflow: hidden;
  }

  .nav-m.nav-m-expanded {
    height: calc(100vh - 15.467vw);
    overflow: scroll;
  }

  .nav-m-item {
    width: 90vw;
    margin: 0 auto;
    border-bottom: 0.267vw solid #ccc;
    transition: height .2s linear;
  }

  .nav-m-main-item {
    height: 16vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-m-item-text {
    font-weight: normal;
  }

  .sub-nav-m {
    height: 0;
    overflow: hidden;
    transition: height .2s linear;
  }

  /* .sub-nav-m.sub-nav-m-expanded{
    height: auto;
  } */
  .sub-nav-m a {
    display: block;
    width: 100%;
    height: 9.33vw;
    line-height: 9.33vw;
    text-decoration: none;
    color: #666;
    font-size: 4.267vw;
  }

  .join_us {
    width: 90vw;
    height: 16vw;
    margin: 0 auto;
    border-bottom: 0.267vw solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .join_us a {
    display: block;
    width: 100%;
    height: 9.33vw;
    line-height: 9.33vw;
    text-decoration: none;
    color: #000;
    font-size: 4.267vw;
  }
