.section-content {
  padding: 80px 0px;
  max-width: 1082px;
  margin: 0 auto;
}

.section-title .section-desc {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}


.section-bg {
  color: #fff;
}


.section-bg .section-title .section-desc {
  color: rgba(255, 255, 255, 0.90);
}

.section-p {
  padding: 0 20px;
}

.common-empty {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.common-empty img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.common-empty .des {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.60);
}

.section-w {
  max-width: 100%;
}

.section-title {

  text-align: center;

}

.document .section-content {
  max-width: unset;
}

#header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 888;


}

.nav-shadow {
  top: 0;
  box-shadow: 0px 0px 8px rgba(52, 52, 52, 0.08);
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 60px;
}

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

.nav-header .nav-left .nav-icon img {
  width: 135px;
  height: 30px;
  margin-right: 50px;
}

.nav-menu {
  display: flex;
}

.nav-menu .nav-item {
  color: #333;
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 20px;
  font-size: 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;

}

.nav-menu .nav-item:hover {
  border-bottom: 2px solid #FF6739;
  border-color: #0063ff;
}


.nav-right {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.nav-right .control {
  margin: 0 20px;
  color: #333;
}

.breadcrumb {
  padding-left: 0;
  margin-bottom: 8px;
  background-color: transparent;
}


/* 菜单栏 */
.nav-cont {
  position: absolute;
  top: 72px;
  width: 100%;
  overflow: hidden;
  background: #F7F8FA;
  transition: all .5s;
  height: 0px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.16);
  z-index: 2;
}

.nav-cont .section-content {
  padding: 0;
}

.nav-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px 20px;
  position: relative;
  box-sizing: border-box;

}

.nav-content a {
  width: calc(25% - 15px);
}

.nav-cont .nav-cont-menu {
  display: none;

}

.nav-cont .nav-cont-empty {
  display: none !important;
}

.nav-item-box {
  min-width: 335px;
  height: 96px;
  padding: 24px 20px;
  border-radius: 3px;
  background: #fff;
  display: flex;
  cursor: pointer;
  box-shadow: 0px 0px 8px rgba(52, 52, 52, 0.08);
}

.nav-item-box:hover .title {
  color: rgba(255, 103, 57, 1);
}

.nav-item-box img {
  width: 48px;
  height: 48px;
}

.nav-item-box .item-box-title {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-left: 16px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
}

.nav-item-box .item-box-title .desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
}

.nav-header .login-in {
  cursor: pointer;
  position: relative;
  height: 72px;
  display: flex;
  align-items: center;
  z-index: 999;
  padding: 0 32px;
}

.nav-header .login-in::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: 32px;
  transform: translateY(-50%);
  border-left: 1px solid #E6EAED;
}

.nav-header .login-in:hover .login-menu {
  display: block;
}

.nav-header .login-in .head-img {
  width: 32px;
  height: 32px;
  background: #eee;
  border: 1px solid #E6EAED;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-header .login-in .name {
  display: inline-block;
  max-width: 140px;
}



.nav-header .login-in .login-menu {
  display: none;
  padding: 8px;
  position: absolute;
  top: 72px;
  left: 0;
  width: 157px;
  height: 188px;
  background: #FEFFFF;
  border: 1px solid #DCDCDC;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  opacity: 1;
  border-radius: 3px;
}

.nav-header .login-in .login-menu .login-menu-item {
  cursor: pointer;
  height: 40px;
  padding: 10px 12px;
}

.nav-header .login-in .login-menu .login-menu-item:hover {
  background: rgba(255, 103, 57, 0.08);
  color: rgba(255, 103, 57, 1);
}

.nav-header .login-in .login-menu .login-menu-item .real-name {
  display: inline-block;
  text-align: center;
  border: 1px solid #FF6739;
  color: rgba(255, 103, 57, 1);
  font-size: 12px;
  width: 44px;
  height: 18px;
  border-radius: 3px;
}

.nav-header .login-in .login-menu .login-menu-item .no-real-name {
  border: 1px solid #E34D59;
  color: rgba(227, 77, 89, 1);
}

/* 底部导航栏 */

.footer {
  background: #1E2130;
  color: rgba(255, 255, 255, 0.90);
}

.register-advert {
  width: 100%;
  height: 75px;
  background: linear-gradient(90deg, #EF4C1D 0%, #F41A10 100%);
  /* background-image: url(../assets/img/index/register@2x.png);
  background-repeat: no-repeat;
  background-size: cover; */
}

.register-advert a {
  text-align: center;
}

.register-advert a img {
  max-width: 100%;
  margin: 0 auto;
}

.section-promise {
  background-color: #1A1C2A;
}

.promise {
  display: flex;
  flex-wrap: wrap;
}

.promise-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 200px;
  padding: 28px 0;
  font-size: 16px;
}

.promise-box img {
  height: 32px;
  width: 32px;
}

.footer-content {

  background-color: rgba(30, 33, 48, 1);
  font-size: 14px;
}

.footer-content .footer-nav {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}

.footer .footer-nav .footer-nav-left {
  margin-right: 120px;
}

.footer-content .footer-nav .footer-nav-left {
  display: flex;
  width: 100%;
  gap: 30px;
}

.footer-nav-box {
  flex: 1;
}

.footer-nav-box .footer-nav-head {
  padding: 12px 0;
  width: 120px;
  border-bottom: 1px solid #2D3544;
}

.footer-nav-box .footer-nav-cont {
  padding-top: 20px;
}

.footer-nav-box .footer-nav-item {
  margin-bottom: 7px;
}

.footer-content .footer-nav .footer-nav-right {
  width: 210px;
}

.footer-nav-right .footer-nav-box .footer-nav-item {
  width: 210px;
  color: rgba(255, 255, 255, 0.50);
}

.footer-nav-right .qr-code img {
  margin-top: 20px;
  width: 80px;
  height: 80px;
}

.footer .footer-link {
  display: none;
  font-size: 13px;
  color: #666;
  height: 50px;
  line-height: 50px;
  border-top: 1px solid #2D3544;

}

.footer .link-hover {
  color: rgba(255, 255, 255, 0.50);
}

.footer .link-hover:hover {
  color: rgba(255, 103, 57, 1);
}

.footer .footer-link a {
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.50);
}

.footer .footer-link a:hover {
  margin-right: 10px;
  color: rgba(255, 103, 57, 1);
}

.footer .footer-record {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #2D3544;
  height: 50px;
  line-height: 50px;
  font-size: 13px;
  color: #666;
}


.jr-tabs {
  display: flex;
  border-bottom: 1px solid #E6EAED;
}

.no-login,
.login-in {
  margin-left: 0px;
}

.jr-tabs .title {
  color: #666;
  font-size: 18px;
  width: auto !important;
  padding: 10px 40px;
  cursor: pointer;
  margin-right: 0 !important;
}

.jr-tabs .title.swiper-slide-thumb-active {
  color: rgba(255, 103, 57, 1);
  border-bottom: 2px solid #FF6739;
}

.jr-tabs .title:hover {
  color: rgba(255, 103, 57, 1);
  border-bottom: 2px solid #FF6739;
}


/* banner */
.server-banner {
  background: rgba(247, 248, 250, 1);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

}

.server-banner2 {
  background: rgba(0, 0, 0, 0.40);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

}

.server-banner-desc {
  font-size: 16px;
  max-width: 700px;
  margin-top: 20px;
  margin-bottom: 90px;
}

.server-banner-desc2 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
}


.banner-cloud {
  background-image: url('../assets/img/cloud/banner.png');
}

.banner-trademark {
  background-image: url('../assets/img/trademark/banner.png');
}

.banner-dedicated {
  background-image: url('../assets/img/dedicated/banner.png');
}

.banner-domain {
  background-image: url('../assets/img/domain/banner.png');
}

.banner-ssl {
  background-image: url('../assets/img/ssl/banner.png');
}

.banner-icp {
  background-image: url('../assets/img/icp/banner.png');
}

.banner-sms {
  background-image: url('../assets/img/sms/banner.png');
}

.banner-trusteeship {
  background-image: url('../assets/img/trusteeship/banner.png');
}

.banner-rent {
  background-image: url('../assets/img/rent/banner.png');
}

.banner-document {
  background-image: url('../assets/img/document/banner.png');
}

.banner-announce {
  background-image: url('../assets/img/document/banner.png');
}

.banner-guarantee {
  background: url('../assets/img/guarantee/banner.png') no-repeat center center;
  background-size: cover;
}

.banner-reward {
  background-image: url('../assets/img/reward/banner.png');
  color: #fff;
}

.banner-contact {
  background: url('../assets/img/guarantee/contact.png') no-repeat center center;
  background-size: cover;
}

.feedback-banner {
  background: url('../assets/img/guarantee/recruit.png') no-repeat center center;
  background-size: cover;
}

.activities-banner {
  height: 440px;
  background: url('../assets/img/active/active_banner.png') no-repeat;
  background-size: 100%;
}


.banner-reward .btn-normal {
  padding: 8px 32px;
}


/* 搜索 */
.input-search {
  display: flex;
  position: relative;
}

.input-search input {
  padding-left: 15px;
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 20px;
  width: 30%;
  height: 56px;
  background: #FFFFFF;
  border: 1px solid #FF6739;
}

.trademark-box .input-search input {
  border-left: none;
}

.domain-search .input-search input {
  border-right: none;
}

.input-search .search-btn {
  cursor: pointer;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 18px 32px;
  background: rgba(255, 103, 57, 1);
}




.input-search .input-search-select {
  cursor: pointer;
  text-align: center;
  line-height: 56px;
  width: 124px;
  height: 56px;
  margin-top: 30px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #FF6739;
  border-left: none;
}

.input-search .input-search-left-select {
  border: 1px solid #FF6739;
  border-right: none;
}

.input-search .input-search-s {
  position: relative;
  line-height: 56px;
  height: 56px;
  width: 124px;
  display: flex;
  justify-content: center;
}

.input-search .input-search-select .input-search-s::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0;
  background: #EDEDED;
  height: 24px;
  width: 1px;
}

.input-search .input-search-r {
  position: relative;
  line-height: 56px;
  height: 56px;
  width: 124px;
  display: flex;
  justify-content: center;
}

.input-search .input-search-select .input-search-r::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 0;
  background: #EDEDED;
  height: 24px;
  width: 1px;
}



.input-search .input-search-select .select-box {
  display: none;
  padding: 16px 10px;
  position: absolute;
  top: 86px;
  left: 0;
  width: calc(50% + 124px);
  background: #FEFFFF;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.input-search .input-search-select .select-box-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  width: 110px;
  height: 40px;
  border: 1px solid #E6EAED;
}

.input-search .input-search-select .select-box-item:hover {
  border: 1px solid #FF6739;
  color: #FF6739;
}

.input-search .input-search-select .iconfont {
  font-size: 14px;
  margin-left: 10px;
}

.link-search-group {
  display: flex;
  align-items: center;
  margin-left: -12px;
}

.link-search-group .link-search-to {
  padding: 0 12px;
  display: flex;
  border-right: 1px solid #D6D6D6;
}

.link-search-group .link-search-to:nth-child(4) {
  border: none;
}

.link-search-group .price {
  margin-left: 5px;
  color: rgba(255, 103, 57, 1);
}

/* 分页 */
.jr-page .pagination .page-number.active {
  color: #fff;
  border: 1px solid rgba(255, 103, 57, 1);
  background: rgba(255, 103, 57, 1);
}

.jr-page .pagination .page-number:hover {
  background: rgba(255, 103, 57, 1);
  color: #fff !important;
}

.jr-page .pagination>li a {
  margin: 0 4px;
  border: 1px solid #DCDCDC;
  border-radius: 3px;
  color: rgba(0, 0, 0, 0.60);
}

.jr-page .pagination>li .page-ellipsis {
  border: none;
}

.jr-page .pagination>li .page-ellipsis:hover {
  background: transparent;
}

.jr-page .pagination>li:first-child>a {
  border: none;
}

.jr-page .pagination>li:last-child>a {
  border: none;
}


.jr-select {

  width: 100px;
  border-radius: 5px;
  position: relative;


}

.jr-select select {
  border: 1px solid #EDEDED;
  border-radius: 5px;
  outline: none;
  width: 100%;
  height: 32px;
  line-height: 32px;
  appearance: none;
  padding-left: 12px;
}

.jr-select:after {
  content: "\e674";
  width: 14px;
  height: 8px;
  font-size: 12px;
  font-family: 'iconfont';
  position: absolute;
  right: 20px;
  top: 15%;
  pointer-events: none;
}




/* 侧边 */
.aside-tools {
  position: fixed;
  top: 45%;
  right: 0;
  z-index: 3;
}

.aside-tools .tools-list {
  width: 40px;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(19, 55, 83, 0.08);
  opacity: 1;
  border-radius: 3px 0 0 3px;
}

.aside-tools .tools-list .tools-item {
  position: relative;
}

.aside-tools .tools-list .tools-item img {
  margin: 10px;
  height: 24px;
  width: 24px;
  cursor: pointer;
}

.aside-tools .tools-list .tools-item::before {
  content: '';
  position: absolute;
  background: rgba(230, 234, 237, 1);
  bottom: 0;
  right: 10px;
  width: 16px;
  height: 1px;
}

.aside-tools .tools-list .tools-item:last-child:before {
  content: none;

}

.aside-tools .tools-list .tools-item:hover .tools-box {
  display: block;
}

.aside-tools .tools-list .tools-item .tools-box {
  display: none;
  position: absolute;
  left: -220px;
  top: 0;
  padding-right: 30px;
}

.aside-tools .tools-list .tools-item .tools-box-s {
  padding: 20px;
  width: 190px;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(19, 55, 83, 0.08);
  opacity: 1;
  border-radius: 3px;
}

.aside-tools .tools-list .tools-item .tools-box h5 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.aside-tools .tools-list .tools-item .tools-box p {
  font-size: 13px;
}

.aside-tools .tools-list .tools-item .tools-box .button {
  font-size: 12px;
  display: inline-block;
  margin-top: 20px;
  padding: 4px 7px;
  border: 1px solid #E6EAED;
  opacity: 1;
  border-radius: 3px;
}

.aside-tools .tools-list .tools-item .tools-box .button:hover {
  border: 1px solid #FF6739;
  ;
}


.flex-none {
  flex-wrap: none !important;
}

#alert-container {
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 300px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

#footerRecord .left-info a {
  margin-right: 10px;
}

@media screen and (max-width: 1440px) {
  .nav-content a {
    width: calc(33.33% - 14px);
  }
}






/* .nav-wrapper {
  position: relative;
} */

.nav-wrapper>ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px;
}

.nav-wrapper>ul>.nav-item,
.nav-wrapper>ul>a>.nav-item {
  position: relative;
  padding: 0 25px;
  cursor: pointer;
  height: 60px;
  line-height: 60px;
  color: #282e3e;
  font-size: 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-wrapper>ul>.nav-item div {
  height: 100%;
  border-bottom: 2px solid transparent;
}

.nav-item:hover {
  color: #0063ff !important;
}

.nav-item:hover div {

  border-color: #0063ff !important;
}

.nav-item .active {
  border-bottom: 3px solid #0063ff;
  box-sizing: border-box;
  color: #0063ff;
}

.menu-item-wrapper_bg {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 101;
  background: #282e3e14;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

/* .nav-wrapper:has(#product:hover) .menu-item-wrapper_bg,
.nav-wrapper:has(#productPricing:hover) .menu-item-wrapper_bg {
    display: block;
    min-height: 100vh;
}
.nav-wrapper:has(#product:hover) .menu-item-wrapper.products {
    display: block;
}
.nav-wrapper:has(#productPricing:hover) .menu-item-wrapper.pricing {
    display: block;
} */
/* ----- 1. 产品面板显示规则 ----- */
.nav-wrapper:has(#product:hover) .menu-item-wrapper.products,
.menu-item-wrapper.products:hover {
  display: block;
}

/* 产品背景遮罩 */
.nav-wrapper:has(#product:hover) .menu-item-wrapper_bg,
.nav-wrapper:has(.menu-item-wrapper.products:hover) .menu-item-wrapper_bg {
  display: block;
  min-height: 100vh;
}

/* ----- 2. 定价面板显示规则 ----- */
.nav-wrapper:has(#productPricing:hover) .menu-item-wrapper.pricing,
.menu-item-wrapper.pricing:hover {
  display: block;
}

/* 定价背景遮罩 */
.nav-wrapper:has(#productPricing:hover) .menu-item-wrapper_bg,
.nav-wrapper:has(.menu-item-wrapper.pricing:hover) .menu-item-wrapper_bg {
  display: block;
}

/* ----- 3. 面板默认隐藏 ----- */
.menu-item-wrapper.products,
.menu-item-wrapper.pricing {
  display: none;
}

.menu-item-wrapper {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 102;
  background-color: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 13px 14px #dadada;
  overflow: hidden;
  padding-bottom: 80px;
}



.menu-item-wrapper .wrapper-inner {
  width: 1082px;
  margin: 0 auto;
}

.menu-item-wrapper.pricing {
  background-image: url(/web/default/assets/customization/headerImg/product-pricing-menu-bg.i0iEnun8.png);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 261px;
}



.section-header {
  display: flex;
  align-items: center;
  padding-top: 39px;
}

.section-header img {
  width: 17px;
  height: 21px;
}

.section-header .section-title {
  margin-left: 4px;
  font-size: 18px;
  line-height: 25px;
  color: #282e3e;
  font-weight: 700;
}


.hot-row {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.hot-row a {
  display: block;
}

.hot-list {
  position: relative;
  width: 258px;
  height: 104px;
  background: linear-gradient(180deg, #f5f7f9, #fff);
  border: 2px solid #fff;
  box-shadow: 0 7px 10px rgba(170, 183, 202, 0.43);
  border-radius: 4px;
  transition: box-shadow 0.2s;
}

.hot-list:hover {
  box-shadow: 0 7px 10px rgba(0, 99, 255, 0.2);
}

.hot-list:hover .title {
  color: #0063ff;
}

.hot-list:hover .desc {
  color: rgba(0, 99, 255, 0.6);
}

.hot-list .hot-icon {
  position: absolute;
  right: 9px;
}

.hot-list .hot-icon-1 {
  top: -17px;
  width: 60px;
  height: 60px;
}

.hot-list .hot-icon-2 {
  top: -20px;
  width: 58px;
  height: 58px;
}

.hot-list .hot-icon-3 {
  top: -17px;
  width: 52px;
  height: 52px;
}

.hot-list .hot-icon-4 {
  top: -20px;
  width: 58px;
  height: 58px;
}

.hot-list .hot-icon-5 {
  top: -10px;
  width: 35px;
  height: 35px;
}

.hot-list .hot-body {
  padding: 16px 0px 16px;
}

.hot-list .hot-body.compact {
  padding: 16px 0px 0;
}

.hot-list .title {
  font-size: 14px;
  color: #282e3e;
  line-height: 20px;
  font-weight: 700;
  transition: color 0.2s;
  padding-left: 21px;
}

.hot-list .title.max-w-180 {
  max-width: 180px;
}

.hot-list .desc {
  font-size: 14px;
  color: #5b6786;
  line-height: 20px;
  margin-top: 8px;
  transition: color 0.2s;

  padding-left: 21px;
  border-left: 1px solid #635BFF;
}

.nav-wrapper[data-site-nav]>ul>.nav-item,
.nav-wrapper[data-site-nav]>ul>a>.nav-item {
  padding: 0 22px;
}

.nav-wrapper[data-site-nav]>ul>.nav-item:focus {
  outline: none;
}

.nav-wrapper:has(#product:hover) .menu-item-wrapper.products,
.nav-wrapper:has(#product:focus-within) .menu-item-wrapper.products,
.menu-item-wrapper.products:hover {
  display: block;
}

.nav-wrapper:has(#product:hover) .menu-item-wrapper_bg,
.nav-wrapper:has(#product:focus-within) .menu-item-wrapper_bg,
.nav-wrapper:has(.menu-item-wrapper.products:hover) .menu-item-wrapper_bg,
.nav-wrapper:has(#productPricing:hover) .menu-item-wrapper_bg,
.nav-wrapper:has(#productPricing:focus-within) .menu-item-wrapper_bg,
.nav-wrapper:has(.menu-item-wrapper.pricing:hover) .menu-item-wrapper_bg {
  display: block;
  min-height: 100vh;
}

.nav-wrapper:has(#productPricing:hover) .menu-item-wrapper.pricing,
.nav-wrapper:has(#productPricing:focus-within) .menu-item-wrapper.pricing,
.menu-item-wrapper.pricing:hover {
  display: block;
}

.menu-item-wrapper.products,
.menu-item-wrapper.pricing {
  display: none;
}

.nav-product-menu,
.nav-cloud-menu {
  position: fixed;
  top: 60px;
  left: 50%;
  width: min(900px, calc(100vw - 48px));
  transform: translateX(-50%);
  z-index: 102;
  padding: 0;
  overflow: visible;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(214, 224, 242, 0.9);
  border-radius: 10px;
  box-shadow: 0 22px 48px rgba(32, 66, 118, 0.18), 0 6px 18px rgba(32, 66, 118, 0.08);
}

.nav-product-menu .wrapper-inner,
.nav-cloud-menu .wrapper-inner {
  width: 100%;
  margin: 0;
  padding: 24px 28px 28px;
}

.nav-product-menu .section-header,
.nav-cloud-menu .section-header {
  padding-top: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
}

.nav-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 16px;
}

.nav-cloud-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 420px;
}

.nav-menu-grid a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.nav-menu-card {
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid transparent;
  box-shadow: none;
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-menu-card:hover {
  border-color: rgba(0, 99, 255, 0.24);
  background: linear-gradient(180deg, #f8fbff, #fff);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.11);
  transform: translateY(-2px);
}

.nav-menu-card .hot-icon {
  position: static;
  flex: 0 0 auto;
  margin: 0 14px 0 16px;
}

.nav-menu-card .hot-body,
.nav-menu-card .hot-body.compact {
  padding: 0;
  min-width: 0;
}

.nav-menu-card .title {
  padding-left: 0;
  color: #1f2937;
}

.nav-menu-card .desc {
  margin-top: 4px;
  padding-left: 0;
  border-left: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 18px;
}

/* JINDUN-style mega navigation, adapted to the current light theme */
.nav-header {
  width: min(1082px, calc(100% - 24px));
  max-width: 1082px;
  box-sizing: border-box;
  gap: 8px;
}

.nav-header .nav-left {
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 6px;
}

.nav-header .nav-left .nav-icon {
  flex: 0 0 140px;
  display: flex;
  align-items: center;
}

.nav-header .nav-left .nav-icon img {
  margin-right: 0;
}

.nav-wrapper[data-site-nav] {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

.nav-wrapper[data-site-nav] .nav-list {
  gap: 48px;
  width: 100%;
  justify-content: center;
  flex-wrap: nowrap;
}

.nav-wrapper[data-site-nav]>ul>.nav-item,
.nav-wrapper[data-site-nav]>ul>a>.nav-item {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 1px;
  line-height: normal;
}

.nav-wrapper[data-site-nav] .nav-link,
.nav-wrapper[data-site-nav] .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 0 6px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #282e3e;
  font-size: 13px;
  font-weight: 500;
  line-height: 36px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-right {
  flex: 0 0 auto;
  gap: 6px;
  white-space: nowrap;
}

.nav-right .control,
.console-link .control,
.nav-right .header-right,
.nav-header .login-in,
.nav-header .login-in .name {
  white-space: nowrap;
}

.nav-right .control {
  margin: 0 6px;
  color: #282e3e;
  font-weight: 500;
}

.nav-header .login-in {
  height: 60px;
  padding: 0 8px;
}

.nav-header .login-in .head-img {
  width: 30px;
  height: 30px;
}

.nav-header .login-in .name {
  max-width: 96px;
}

.lang-switcher .lang-current {
  padding: 0 8px;
}

.nav-wrapper[data-site-nav]>ul>.nav-item div.nav-trigger {
  height: 36px;
  border-bottom: 0;
}

.nav-wrapper[data-site-nav] .nav-item-symbol {
  color: #64748b;
  font-size: 14px;
  line-height: 1;
}

.nav-wrapper[data-site-nav] .nav-item-arrow {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-wrapper[data-site-nav] .nav-link:hover,
.nav-wrapper[data-site-nav] .nav-item:hover .nav-trigger,
.nav-wrapper[data-site-nav] .nav-item:focus-within .nav-trigger {
  color: #0063ff;
  border-color: rgba(0, 99, 255, 0.16);
  background: rgba(0, 99, 255, 0.08);
  box-shadow: inset 0 -2px 0 rgba(0, 99, 255, 0.62);
}

.nav-wrapper[data-site-nav] .nav-item:hover .nav-item-symbol,
.nav-wrapper[data-site-nav] .nav-item:focus-within .nav-item-symbol,
.nav-wrapper[data-site-nav] .nav-link:hover .nav-item-symbol {
  color: #0063ff;
}

.nav-wrapper[data-site-nav] .nav-item:hover .nav-item-arrow,
.nav-wrapper[data-site-nav] .nav-item:focus-within .nav-item-arrow {
  color: #0063ff;
  transform: rotate(180deg);
}

.nav-product-menu,
.nav-solution-menu,
.nav-resource-menu,
.nav-company-menu {
  position: fixed;
  top: 60px;
  left: 50%;
  width: min(900px, calc(100vw - 48px));
  height: auto;
  min-height: 0;
  transform: translateX(-50%);
  z-index: 102;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(214, 224, 242, 0.94);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.94)),
    radial-gradient(circle at 100% 0, rgba(0, 99, 255, 0.10), transparent 35%);
  box-shadow: 0 22px 48px rgba(32, 66, 118, 0.18), 0 6px 18px rgba(32, 66, 118, 0.08);
}

.nav-product-menu .wrapper-inner,
.nav-solution-menu .wrapper-inner,
.nav-resource-menu .wrapper-inner,
.nav-company-menu .wrapper-inner {
  width: 100%;
  margin: 0;
  padding: 24px 28px 18px;
}

.menu-item-wrapper.products,
.menu-item-wrapper.solutions,
.menu-item-wrapper.resources,
.menu-item-wrapper.company {
  display: none;
}

.nav-wrapper:has(#product:hover) .menu-item-wrapper.products,
.nav-wrapper:has(#product:focus-within) .menu-item-wrapper.products,
.menu-item-wrapper.products:hover,
.nav-wrapper:has(#solutions:hover) .menu-item-wrapper.solutions,
.nav-wrapper:has(#solutions:focus-within) .menu-item-wrapper.solutions,
.menu-item-wrapper.solutions:hover,
.nav-wrapper:has(#resources:hover) .menu-item-wrapper.resources,
.nav-wrapper:has(#resources:focus-within) .menu-item-wrapper.resources,
.menu-item-wrapper.resources:hover,
.nav-wrapper:has(#company:hover) .menu-item-wrapper.company,
.nav-wrapper:has(#company:focus-within) .menu-item-wrapper.company,
.menu-item-wrapper.company:hover {
  display: block;
}

.nav-wrapper:has(#product:hover) .menu-item-wrapper_bg,
.nav-wrapper:has(#product:focus-within) .menu-item-wrapper_bg,
.nav-wrapper:has(.menu-item-wrapper.products:hover) .menu-item-wrapper_bg,
.nav-wrapper:has(#solutions:hover) .menu-item-wrapper_bg,
.nav-wrapper:has(#solutions:focus-within) .menu-item-wrapper_bg,
.nav-wrapper:has(.menu-item-wrapper.solutions:hover) .menu-item-wrapper_bg,
.nav-wrapper:has(#resources:hover) .menu-item-wrapper_bg,
.nav-wrapper:has(#resources:focus-within) .menu-item-wrapper_bg,
.nav-wrapper:has(.menu-item-wrapper.resources:hover) .menu-item-wrapper_bg,
.nav-wrapper:has(#company:hover) .menu-item-wrapper_bg,
.nav-wrapper:has(#company:focus-within) .menu-item-wrapper_bg,
.nav-wrapper:has(.menu-item-wrapper.company:hover) .menu-item-wrapper_bg {
  display: block;
  min-height: 100vh;
}

.nav-menu-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 0;
}

.nav-menu-card {
  min-width: 0;
  height: 88px;
  padding: 0 18px;
}

.nav-menu-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 14px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.nav-menu-icon-blue { color: #2563eb; background: rgba(37, 99, 235, 0.07); }
.nav-menu-icon-red { color: #e11d48; background: rgba(225, 29, 72, 0.07); }
.nav-menu-icon-green { color: #10b981; background: rgba(16, 185, 129, 0.08); }
.nav-menu-icon-yellow { color: #d97706; background: rgba(217, 119, 6, 0.08); }
.nav-menu-icon-purple { color: #a855f7; background: rgba(168, 85, 247, 0.08); }
.nav-menu-icon-indigo { color: #6366f1; background: rgba(99, 102, 241, 0.08); }
.nav-menu-icon-cyan { color: #0891b2; background: rgba(8, 145, 178, 0.08); }
.nav-menu-icon-lime { color: #65a30d; background: rgba(101, 163, 13, 0.08); }

.nav-menu-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  color: #64748b;
  font-size: 13px;
  line-height: 18px;
}

.nav-menu-stat strong {
  margin-right: 4px;
  color: #0063ff;
  font-weight: 800;
}

.nav-menu-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #475569;
  white-space: nowrap;
}

.nav-menu-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
}

.mobile-nav-title[href] {
  color: #1f2937;
  text-decoration: none;
}

.mobile-nav-sub .mobile-hot-list {
  min-height: 72px;
}

.mobile-nav-sub .mobile-hot-body {
  padding: 12px 14px;
}

.btn-normal-light:hover {
  background-color: #f9fafc;
  border-color: rgba(0, 98, 255, 0) !important;
}


.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.lang-switcher .lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 32px;
  border-radius: 6px;
  font-size: 14px;
  color: #282e3e;
  transition: border-color 0.2s, box-shadow 0.2s;
}



.lang-switcher .lang-current .arrow {
  font-size: 10px;
  color: #9aa2b0;
  transition: transform 0.2s;
}

.lang-switcher:hover .lang-current .arrow,
.lang-switcher.is-lang-open .lang-current .arrow {
  transform: rotate(180deg);
}

.lang-switcher .lang-dropdown {
  position: absolute;
  top: 100%;
  right: -24px;
  margin-top: 6px;
  min-width: 120px;
  background: #fff;
  border: 1px solid #eef0f2;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(40, 46, 62, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 200;
  overflow: hidden;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.is-lang-open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher .lang-dropdown .lang-option {
  padding: 10px 16px;
  font-size: 13px;
  color: #282e3e;
  cursor: pointer;
  transition: all 0.15s, color 0.15s;
}

.lang-switcher .lang-dropdown .lang-option:hover {
  background: #f5f7fa;
  color: #0063ff;
}

.lang-switcher .lang-dropdown .lang-option.active {
  color: #0063ff;
  font-weight: 600;
  background: rgba(0, 99, 255, 0.04);
}

.lang-switcher .lang-dropdown .lang-option+.lang-option {
  border-top: 1px solid #f0f1f3;
}

/* ===== Mobile Navigation ===== */
.mobile-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  gap: 5px;
  margin-left: 12px;
  flex-shrink: 0;
}

.mobile-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #282e3e;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.mobile-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height:100%;
  /*padding-top: 60px;*/
  /*background: #fff;*/
  background: #282e3e14;
  
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav-overlay.open {
  transform: translateX(0);
}

.mobile-nav-panel {
  padding: 0 0 40px;
  background: #fff;
}

/* Extra section (lang + console) */
.mobile-nav-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #f0f1f3;
}

.mobile-nav-lang {
  display: flex;
  gap: 4px;
}

.mobile-lang-option {
  padding: 6px 12px;
  font-size: 13px;
  color: #5b6786;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.mobile-lang-option.active {
  color: #0063ff;
  background: rgba(0, 99, 255, 0.06);
  font-weight: 600;
}

.mobile-lang-option:hover {
  background: #f5f7fa;
  color: #0063ff;
}

.mobile-nav-console {
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  color: #fff;
  background: #0063ff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.mobile-nav-console:hover {
  background: #0052d9;
}

/* Nav items */
.mobile-nav-item {
  border-bottom: 1px solid #f0f1f3;
}

.mobile-nav-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #282e3e;
  cursor: pointer;
  user-select: none;
}

.mobile-nav-title .arrow {
  font-size: 12px;
  color: #9aa2b0;
  transition: transform 0.3s ease;
}

.mobile-nav-title.active .arrow {
  transform: rotate(180deg);
}

.mobile-nav-sub {
  display: none;
  padding: 4px 24px 20px;
}

.mobile-nav-sub.open {
  display: block;
}

/* Section header inside sub */
.mobile-section-header {
  display: flex;
  align-items: center;
  padding: 12px 0 8px;
}

.mobile-section-header img {
  width: 17px;
  height: 21px;
  margin-right: 4px;
}

.mobile-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #282e3e;
  line-height: 25px;
}

/* Hot row inside mobile sub - same as desktop */
.mobile-hot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.mobile-hot-row a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.mobile-hot-list {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #f5f7f9, #fff);
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(170, 183, 202, 0.35);
  border-radius: 6px;
  transition: box-shadow 0.2s;
}

.mobile-hot-list:hover {
  box-shadow: 0 4px 10px rgba(0, 99, 255, 0.2);
}

.mobile-hot-list:hover .title {
  color: #0063ff;
}

.mobile-hot-list:hover .desc {
  color: rgba(0, 99, 255, 0.6);
}

.mobile-hot-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-top: 2px;
}

.mobile-hot-body .title {
  font-size: 14px;
  font-weight: 700;
  color: #282e3e;
  line-height: 20px;
  transition: color 0.2s;
}

.mobile-hot-body .desc {
  font-size: 13px;
  color: #5b6786;
  line-height: 18px;
  margin-top: 4px;
  padding-left: 12px;
  border-left: 2px solid #635bff;
  transition: color 0.2s;
}

/* Doc items */
.mobile-doc-item {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: #5b6786;
  border-radius: 6px;
  transition: all 0.2s;
  text-decoration: none;
}

.mobile-doc-item:hover {
  background: #f5f7fa;
  color: #0063ff;
}

@media screen and (max-width: 768px) {
    .nav-shadow{
        position: fixed;
        width: 100%;
        background: #fff;
        z-index: 9999;
    }
  .mobile-hamburger {
    display: flex;
  }

  .nav-wrapper {
    display: none;
  }

  .nav-wrapper[data-site-nav] {
    display: none;
  }

  .nav-header .nav-left .nav-icon img {
      width: 110px;
    margin-left: 8px;
    margin-right:0px ;
  }

  /*.nav-right .header-right,*/
  .nav-right .console-link {
    display: none;
  }
  #username{
      display: none;
  }
  .nav-header .login-in .login-menu {
  left: -80px ;    
  }

}

/* ===== Sudun-style static site navigation ===== */
.nav-shadow {
  position: relative;
  z-index: 999;
  width: 100%;
  height: 72px;
  border-bottom: 1px solid rgba(10, 31, 79, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-shadow .nav-header {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  height: 72px;
  gap: 20px;
}

.nav-shadow .nav-header .nav-left {
  height: 72px;
  gap: 14px;
}

.nav-shadow .nav-header .nav-left .nav-icon {
  flex: 0 0 148px;
}

.nav-shadow .nav-header .nav-left .nav-icon img {
  display: block;
  width: auto;
  max-width: 142px;
  height: auto;
  max-height: 42px;
  margin: 0;
  object-fit: contain;
  transition: filter 0.25s ease;
}

.nav-wrapper[data-site-nav] {
  position: relative;
  display: flex;
  width: auto;
  height: 72px;
  flex: 0 0 auto;
  align-items: stretch;
  justify-content: flex-start;
  overflow: visible;
}

.nav-wrapper[data-site-nav] .nav-list {
  display: flex;
  width: auto;
  height: 72px;
  align-items: stretch;
  justify-content: flex-start;
  gap: 38px;
  margin: 0;
  padding: 0;
}

.nav-wrapper[data-site-nav] > .nav-list > .nav-item {
  position: relative;
  display: flex;
  height: 72px;
  align-items: stretch;
  padding: 0;
}

.nav-wrapper[data-site-nav] .nav-link,
.nav-wrapper[data-site-nav] .nav-trigger {
  position: relative;
  display: inline-flex;
  height: 72px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: #0a1f4f;
  font-family: "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 72px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-wrapper[data-site-nav] .nav-link::after,
.nav-wrapper[data-site-nav] .nav-trigger::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: #2b78f6;
  content: "";
  transform: translateX(-50%);
  transition: width 0.25s ease, background 0.25s ease;
}

.nav-wrapper[data-site-nav] .nav-link:hover,
.nav-wrapper[data-site-nav] .nav-item:hover .nav-trigger,
.nav-wrapper[data-site-nav] .nav-item:focus-within .nav-trigger,
.nav-wrapper[data-site-nav] .nav-item.is-open .nav-trigger,
.nav-wrapper[data-site-nav] .nav-item.is-current .nav-link,
.nav-wrapper[data-site-nav] .nav-item.is-current .nav-trigger {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: #075ee5;
}

.nav-wrapper[data-site-nav] .nav-link:hover::after,
.nav-wrapper[data-site-nav] .nav-item:hover .nav-trigger::after,
.nav-wrapper[data-site-nav] .nav-item:focus-within .nav-trigger::after,
.nav-wrapper[data-site-nav] .nav-item.is-open .nav-trigger::after,
.nav-wrapper[data-site-nav] .nav-item.is-current .nav-link::after,
.nav-wrapper[data-site-nav] .nav-item.is-current .nav-trigger::after {
  width: 100%;
}

.nav-wrapper[data-site-nav] .nav-link:focus-visible,
.nav-wrapper[data-site-nav] .nav-trigger:focus-visible {
  outline: 2px solid #2b78f6;
  outline-offset: -6px;
  border-radius: 5px;
}

.nav-wrapper[data-site-nav] .nav-item-arrow {
  display: inline-block;
  color: #72809a;
  font-size: 14px;
  line-height: 1;
  transform-origin: 50% 45%;
  transition: color 0.2s ease, transform 0.22s ease;
}

.nav-wrapper[data-site-nav] .nav-item:hover .nav-item-arrow,
.nav-wrapper[data-site-nav] .nav-item:focus-within .nav-item-arrow,
.nav-wrapper[data-site-nav] .nav-item.is-open .nav-item-arrow {
  color: currentColor;
  transform: rotate(180deg);
}

.nav-wrapper[data-site-nav] .menu-item-wrapper_bg {
  display: none !important;
}

.nav-wrapper[data-site-nav] .nav-product-menu {
  position: absolute;
  top: 72px;
  z-index: 1100;
  display: flex !important;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 1px solid #eef0f5;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(10, 31, 79, 0.16), 0 4px 12px rgba(10, 31, 79, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-wrapper[data-site-nav] .nav-product-menu::before {
  position: absolute;
  top: -7px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #eef0f5;
  border-left: 1px solid #eef0f5;
  background: #ffffff;
  content: "";
  transform: rotate(45deg);
}

.nav-wrapper[data-site-nav] .nav-product-menu {
  left: var(--nav-product-menu-left, 20px);
  display: grid !important;
  width: min(1080px, calc(100vw - 40px));
  max-height: calc(100vh - 92px);
  grid-template-columns: minmax(0, 1fr) 270px;
}

.nav-wrapper[data-site-nav] .nav-product-menu::before {
  left: calc(var(--nav-product-pointer-left, 120px) - 6px);
}

.nav-wrapper[data-site-nav].is-nav-open .menu-item-wrapper.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-wrapper[data-site-nav] .nav-product-main {
  padding: 24px 26px 26px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 16px 0 0 16px;
  background: #ffffff;
}

.nav-wrapper[data-site-nav] .nav-product-section + .nav-product-section {
  margin-top: 22px;
}

.nav-wrapper[data-site-nav] .nav-product-section-head {
  display: flex;
  min-height: 28px;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.nav-wrapper[data-site-nav] .nav-product-section-head h2,
.nav-wrapper[data-site-nav] .nav-product-service-head h2 {
  margin: 0;
  color: #142544;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.nav-wrapper[data-site-nav] .nav-product-section-head p,
.nav-wrapper[data-site-nav] .nav-product-service-head p {
  margin: 0;
  color: #8490a5;
  font-size: 12px;
  line-height: 20px;
}

.nav-wrapper[data-site-nav] .nav-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.nav-wrapper[data-site-nav] .nav-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e9eef6;
  border-radius: 12px;
  background: #ffffff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.nav-wrapper[data-site-nav] .nav-product-card:hover,
.nav-wrapper[data-site-nav] .nav-product-card:focus-within {
  border-color: #b9d5ff;
  box-shadow: 0 10px 24px rgba(28, 87, 176, 0.12);
  transform: translateY(-2px);
}

.nav-wrapper[data-site-nav] .nav-product-card-main {
  position: relative;
  display: block;
  min-height: 88px;
  padding: 17px 120px 13px 17px;
  overflow: hidden;
  color: #142544;
  text-decoration: none;
}

.nav-wrapper[data-site-nav] a.nav-product-card-main:hover,
.nav-wrapper[data-site-nav] a.nav-product-card-main:focus {
  outline: 0;
  color: #142544;
  text-decoration: none;
}

.nav-wrapper[data-site-nav] a.nav-product-card-main:focus-visible {
  outline: 2px solid #2b78f6;
  outline-offset: -3px;
}

.nav-wrapper[data-site-nav] .nav-product-card--cdn .nav-product-card-main {
  background: linear-gradient(105deg, #eef7ff 0%, #f7fbff 62%, #e8f6ff 100%);
}

.nav-wrapper[data-site-nav] .nav-product-card--vps .nav-product-card-main {
  background: linear-gradient(105deg, #f1f6ff 0%, #fafcff 62%, #eaf2ff 100%);
}

.nav-wrapper[data-site-nav] .nav-product-card--baremetal .nav-product-card-main {
  background: linear-gradient(105deg, #f5f2ff 0%, #fbfaff 62%, #f0edff 100%);
}

.nav-wrapper[data-site-nav] .nav-product-card--dedicated .nav-product-card-main {
  background: linear-gradient(105deg, #fff7ed 0%, #fffaf5 62%, #fff1df 100%);
}

.nav-wrapper[data-site-nav] .nav-product-card--ip .nav-product-card-main {
  background: linear-gradient(105deg, #eef9ff 0%, #f8fcff 62%, #e4f5ff 100%);
}

.nav-wrapper[data-site-nav] .nav-product-card--waf .nav-product-card-main {
  background: linear-gradient(105deg, #eff8ff 0%, #f9fcff 62%, #e8f3ff 100%);
}

.nav-wrapper[data-site-nav] .nav-product-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.nav-wrapper[data-site-nav] .nav-product-card-copy strong {
  overflow: hidden;
  color: #142544;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-wrapper[data-site-nav] .nav-product-card-copy strong em {
  display: inline-flex;
  height: 18px;
  align-items: center;
  margin-left: 5px;
  padding: 0 6px;
  border-radius: 9px;
  background: #edf1f7;
  color: #8691a3;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  vertical-align: 1px;
}

.nav-wrapper[data-site-nav] .nav-product-card-copy small {
  display: -webkit-box;
  margin-top: 7px;
  overflow: hidden;
  color: #65728a;
  font-size: 12px;
  line-height: 18px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nav-wrapper[data-site-nav] .nav-product-detail {
  position: absolute;
  top: 18px;
  right: 100px;
  z-index: 2;
  color: #607089;
  font-size: 11px;
  line-height: 18px;
  white-space: nowrap;
}

.nav-wrapper[data-site-nav] .nav-product-detail b {
  margin-left: 2px;
  color: #2b78f6;
  font-size: 14px;
  font-weight: 500;
}

.nav-wrapper[data-site-nav] .nav-product-art {
  position: absolute;
  right: 5px;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 105px;
  height: 76px;
  margin: 0;
  object-fit: contain;
  object-position: right bottom;
  transition: transform 0.28s ease;
}

.nav-wrapper[data-site-nav] .nav-product-card:hover .nav-product-art,
.nav-wrapper[data-site-nav] .nav-product-card:focus-within .nav-product-art {
  transform: translate(-3px, -2px) scale(1.04);
}

.nav-wrapper[data-site-nav] .nav-product-sub-links {
  display: grid;
  min-height: 38px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  padding: 7px 12px;
  border-top: 1px solid #eef2f7;
  background: #ffffff;
}

.nav-wrapper[data-site-nav] .nav-product-sub-link {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  color: #78859b;
  font-size: 11px;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-wrapper[data-site-nav] .nav-product-sub-link img {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0;
  object-fit: contain;
  opacity: 0.78;
}

.nav-wrapper[data-site-nav] .nav-product-card--placeholder {
  border-style: dashed;
}

.nav-wrapper[data-site-nav] .nav-product-card--placeholder:hover {
  border-color: #d4deeb;
  box-shadow: none;
  transform: none;
}

.nav-wrapper[data-site-nav] .nav-product-card--placeholder .nav-product-art {
  filter: saturate(0.72);
  opacity: 0.82;
}

.nav-wrapper[data-site-nav] .nav-product-services {
  min-width: 0;
  padding: 24px 18px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 0 16px 16px 0;
  background: #f4f6f9;
}

.nav-wrapper[data-site-nav] .nav-product-service-head {
  margin: 0 4px 14px;
}

.nav-wrapper[data-site-nav] .nav-product-service-head p {
  margin-top: 4px;
}

.nav-wrapper[data-site-nav] [data-nav-overflow-text] {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-wrapper[data-site-nav] .nav-product-service-card {
  display: flex;
  min-height: 76px;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  padding: 13px 12px;
  border: 1px solid #e9edf3;
  border-radius: 9px;
  background: #ffffff;
  color: #1c2c48;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-wrapper[data-site-nav] .nav-product-service-card:hover,
.nav-wrapper[data-site-nav] .nav-product-service-card:focus {
  outline: 0;
  border-color: #bcd4fb;
  box-shadow: 0 8px 20px rgba(28, 87, 176, 0.1);
  color: #1c2c48;
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-wrapper[data-site-nav] .nav-product-service-card:focus-visible {
  outline: 2px solid #2b78f6;
  outline-offset: -2px;
}

.nav-wrapper[data-site-nav] .nav-product-service-icon {
  display: inline-flex;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c5dcff;
  border-radius: 8px;
  background: #eef5ff;
  color: #2b78f6;
  font-size: 15px;
}

.nav-wrapper[data-site-nav] .nav-product-service-copy {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
}

.nav-wrapper[data-site-nav] .nav-product-service-copy strong {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #1b2b47;
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
}

.nav-wrapper[data-site-nav] .nav-product-service-title {
  flex: 1 1 auto;
}

.nav-wrapper[data-site-nav] .nav-product-service-copy strong small {
  display: flex;
  min-width: 0;
  max-width: 58px;
  flex: 0 1 auto;
  align-items: center;
  color: #8b96a8;
  font-size: 10px;
  font-weight: 400;
  white-space: nowrap;
}

.nav-wrapper[data-site-nav] .nav-product-service-copy strong small i {
  display: inline-block;
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: #9aa5b6;
}

.nav-wrapper[data-site-nav] .nav-product-service-copy em {
  margin-top: 3px;
  overflow: hidden;
  color: #7d889a;
  font-size: 11px;
  font-style: normal;
  line-height: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-wrapper[data-site-nav] .nav-product-service-copy b {
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px solid #e7ebf0;
  color: #26364f;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.nav-wrapper[data-site-nav] .nav-product-service-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 13px 4px 2px;
  color: #98a3b5;
  font-size: 11px;
}

.nav-wrapper[data-site-nav] .nav-product-service-note strong {
  min-width: 0;
  font-weight: 500;
}

.nav-wrapper[data-site-nav] .nav-product-service-card--muted {
  min-height: 66px;
  background: #e9edf3;
}

.nav-wrapper[data-site-nav] .nav-product-service-card--muted .nav-product-service-icon {
  border-color: #d5dce7;
  background: #f3f5f8;
  color: #6f7d92;
}

.nav-shadow .nav-right {
  height: 72px;
  align-items: center;
}

.nav-shadow .nav-right .control,
.nav-shadow .lang-switcher .lang-current,
.nav-shadow .nav-header .login-in,
.nav-shadow .nav-header .login-in .name {
  transition: color 0.25s ease;
}

body.mobile-nav-open {
  overflow: hidden !important;
}

@media screen and (max-width: 1100px) {
  .nav-shadow .nav-header {
    width: calc(100% - 28px);
    gap: 12px;
  }

  .nav-shadow .nav-header .nav-left .nav-icon {
    flex-basis: 132px;
  }

  .nav-shadow .nav-header .nav-left .nav-icon img {
    max-width: 126px;
  }

  .nav-wrapper[data-site-nav] .nav-list {
    gap: 24px;
  }

  .nav-shadow .nav-right {
    gap: 2px;
  }

  .nav-wrapper[data-site-nav] .nav-product-menu {
    grid-template-columns: minmax(0, 1fr) 245px;
  }

  .nav-wrapper[data-site-nav] .nav-product-main {
    padding: 20px;
  }

  .nav-wrapper[data-site-nav] .nav-product-card-main {
    padding-right: 104px;
  }

  .nav-wrapper[data-site-nav] .nav-product-detail {
    right: 88px;
  }

  .nav-wrapper[data-site-nav] .nav-product-art {
    width: 90px;
  }

  .nav-wrapper[data-site-nav] .nav-product-services {
    padding: 20px 14px;
  }
}

@media screen and (max-width: 900px) {
  .nav-shadow,
  .nav-shadow .nav-header,
  .nav-shadow .nav-header .nav-left,
  .nav-shadow .nav-right {
    height: 72px;
  }

  .nav-shadow {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
  }

  .nav-wrapper[data-site-nav] {
    display: none;
  }

  .mobile-hamburger {
    display: flex;
    margin-left: 4px;
  }

  .nav-shadow .nav-right .console-link {
    display: none;
  }

  .mobile-nav-overlay {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    display: block;
    width: 100%;
    height: calc(100vh - 72px);
    padding: 0;
    overflow: hidden;
    background: rgba(10, 31, 79, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    backdrop-filter: blur(8px);
  }

  .mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .mobile-nav-panel {
    width: min(420px, 100%);
    height: 100%;
    margin-left: auto;
    padding: 0 0 40px;
    overflow-y: auto;
    background: #ffffff;
    box-shadow: -18px 0 44px rgba(10, 31, 79, 0.16);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-nav-overlay.open .mobile-nav-panel {
    transform: translateX(0);
  }

  .mobile-nav-title {
    min-height: 56px;
    padding: 15px 22px;
    color: #0a1f4f;
    font-size: 15px;
  }

  .mobile-nav-sub {
    padding: 2px 16px 18px;
    background: #f7faff;
  }

  .mobile-hot-row {
    gap: 8px;
  }

  .mobile-hot-list {
    min-height: 64px;
    padding: 11px 14px;
    border: 1px solid #eaf0fa;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: none;
  }

  .mobile-hot-body .desc {
    margin-top: 3px;
    padding-left: 0;
    border-left: 0;
  }

  .mobile-product-nav > .mobile-nav-title.active {
    position: relative;
    background: #f4f8ff;
    color: #1268eb;
  }

  .mobile-product-nav > .mobile-nav-title.active::before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: #2b78f6;
    content: "";
  }

  .mobile-product-nav > .mobile-nav-sub {
    padding: 18px 16px 24px;
    background: #f5f8fc;
  }

  .mobile-product-heading {
    margin: 0 2px 10px;
    color: #243653;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
  }

  .mobile-product-heading--service {
    margin-top: 22px;
  }

  .mobile-product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-product-card {
    position: relative;
    display: flex;
    min-height: 106px;
    align-items: center;
    gap: 13px;
    padding: 13px 34px 13px 12px;
    overflow: hidden;
    border: 1px solid #e5ecf6;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(29, 74, 142, 0.06);
    color: #1b2c49;
    text-decoration: none;
  }

  .mobile-product-card:hover,
  .mobile-product-card:focus {
    outline: 0;
    border-color: #b9d5ff;
    color: #1b2c49;
    text-decoration: none;
  }

  .mobile-product-card:focus-visible {
    outline: 2px solid #2b78f6;
    outline-offset: -3px;
  }

  .mobile-product-card--cdn {
    background: linear-gradient(105deg, #f7fbff 0%, #ffffff 62%, #e9f7ff 100%);
  }

  .mobile-product-card--vps {
    background: linear-gradient(105deg, #f8faff 0%, #ffffff 62%, #eef4ff 100%);
  }

  .mobile-product-card--baremetal {
    background: linear-gradient(105deg, #fbf9ff 0%, #ffffff 62%, #f2efff 100%);
  }

  .mobile-product-card--dedicated {
    background: linear-gradient(105deg, #fffbf6 0%, #ffffff 62%, #fff3e5 100%);
  }

  .mobile-product-art {
    display: block;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    margin: 0;
    object-fit: contain;
  }

  .mobile-product-copy {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
  }

  .mobile-product-copy strong {
    color: #172944;
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
  }

  .mobile-product-copy small {
    display: -webkit-box;
    margin-top: 4px;
    overflow: hidden;
    color: #6f7c91;
    font-size: 12px;
    line-height: 18px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .mobile-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 7px;
  }

  .mobile-product-tags em {
    padding: 1px 7px;
    border-radius: 8px;
    background: rgba(43, 120, 246, 0.08);
    color: #5a78a8;
    font-size: 10px;
    font-style: normal;
    line-height: 16px;
  }

  .mobile-product-arrow {
    position: absolute;
    top: 50%;
    right: 13px;
    color: #9cadc3;
    font-size: 22px;
    font-weight: 400;
    transform: translateY(-50%);
  }

  .mobile-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .mobile-service-card {
    display: flex;
    min-width: 0;
    min-height: 74px;
    align-items: center;
    gap: 9px;
    padding: 11px 10px;
    border: 1px solid #e4ebf5;
    border-radius: 10px;
    background: #ffffff;
    color: #21324e;
    text-decoration: none;
  }

  .mobile-service-card:hover,
  .mobile-service-card:focus {
    outline: 0;
    border-color: #bfd7fb;
    color: #21324e;
    text-decoration: none;
  }

  .mobile-service-icon {
    display: inline-flex;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eaf3ff;
    color: #2b78f6;
    font-size: 14px;
  }

  .mobile-service-card > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }

  .mobile-service-card strong {
    overflow: hidden;
    color: #21324e;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-service-card small {
    margin-top: 2px;
    overflow: hidden;
    color: #8290a4;
    font-size: 10px;
    line-height: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-service-phone {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    padding: 10px 13px;
    border: 1px solid #d9e6f7;
    border-radius: 10px;
    background: #edf5ff;
    color: #536580;
    font-size: 12px;
  }

  .mobile-service-phone strong {
    color: #1c68d8;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-product-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
  }

  .mobile-product-console,
  .mobile-product-close {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #2b78f6;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    line-height: 20px;
    text-decoration: none;
  }

  .mobile-product-console {
    background: #2b78f6;
    color: #ffffff;
  }

  .mobile-product-console:hover,
  .mobile-product-console:focus {
    color: #ffffff;
    text-decoration: none;
  }

  .mobile-product-close {
    background: #ffffff;
    color: #2b78f6;
    cursor: pointer;
  }
}

@media screen and (max-width: 390px) {
  .mobile-product-art {
    flex-basis: 62px;
    width: 62px;
    height: 62px;
  }

  .mobile-product-card {
    gap: 10px;
    padding-left: 10px;
  }

}

@media screen and (min-width: 901px) {
  .mobile-nav-overlay {
    display: none !important;
  }
}

/* Kuaidaili product navigation */
.nav-wrapper[data-site-nav] .nav-product-menu.kdl-product-menu {
  width: min(1056px, calc(100vw - 40px));
  max-height: calc(100vh - 92px);
  grid-template-columns: minmax(0, 793px) 263px;
  overflow: hidden;
  border-color: #eef0f3;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(18, 39, 80, 0.14);
}

.nav-wrapper[data-site-nav] .kdl-product-main {
  min-width: 0;
  padding: 27px 36px 30px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 4px 0 0 4px;
  background: #ffffff;
  box-sizing: border-box;
}

.nav-wrapper[data-site-nav] .kdl-product-section-title {
  margin: 0 0 20px;
  color: #12141d;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.nav-wrapper[data-site-nav] .kdl-product-section-title--overseas {
  margin-top: 28px;
}

.nav-wrapper[data-site-nav] .kdl-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  gap: 32px;
}

.nav-wrapper[data-site-nav] .kdl-product-card {
  position: relative;
  min-width: 0;
  min-height: 112px;
  overflow: visible;
  border: 1px solid #f0f2f5;
  border-radius: 8px;
  background: #ffffff;
  box-sizing: border-box;
}

.nav-wrapper[data-site-nav] .kdl-product-card-head {
  position: relative;
  height: 72px;
  overflow: visible;
  border-radius: 7px 7px 0 0;
  box-sizing: border-box;
}

.nav-wrapper[data-site-nav] .kdl-product-card--featured {
  border-color: #313337;
  background: #313337;
}

.nav-wrapper[data-site-nav] .kdl-product-card--featured .kdl-product-card-head {
  background: #12141d;
}

.nav-wrapper[data-site-nav] .kdl-product-card--tps .kdl-product-card-head {
  background: linear-gradient(90deg, rgba(0, 188, 224, 0.16), rgba(245, 247, 249, 0.16));
}

.nav-wrapper[data-site-nav] .kdl-product-card--dps .kdl-product-card-head {
  background: linear-gradient(90deg, rgba(122, 115, 255, 0.16), rgba(245, 247, 249, 0.16));
}

.nav-wrapper[data-site-nav] .kdl-product-card--kps .kdl-product-card-head {
  background: linear-gradient(90deg, rgba(234, 179, 80, 0.16), rgba(245, 247, 249, 0.16));
}

.nav-wrapper[data-site-nav] .kdl-product-card--fps .kdl-product-card-head {
  background: linear-gradient(90deg, rgba(255, 150, 42, 0.16), rgba(245, 247, 249, 0.16));
}

.nav-wrapper[data-site-nav] .kdl-product-card--sfps .kdl-product-card-head {
  background: linear-gradient(90deg, rgba(22, 119, 255, 0.16), rgba(245, 247, 249, 0.16));
}

.nav-wrapper[data-site-nav] .kdl-product-art {
  position: absolute;
  top: -18px;
  right: 22px;
  z-index: 1;
  display: block;
  width: 92px;
  height: 72px;
  margin: 0;
  object-fit: contain;
}

.nav-wrapper[data-site-nav] .kdl-product-manage {
  position: absolute;
  top: 16px;
  right: 128px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6b6d70;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-wrapper[data-site-nav] .kdl-product-manage b {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
}

.nav-wrapper[data-site-nav] .kdl-product-title {
  position: relative;
  z-index: 2;
  display: flex;
  height: 72px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 13px 126px 8px 16px;
  color: #12141d;
  text-decoration: none;
  box-sizing: border-box;
}

.nav-wrapper[data-site-nav] .kdl-product-title strong {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.nav-wrapper[data-site-nav] .kdl-product-title > span {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: #6b6d70;
  font-size: 12px;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-wrapper[data-site-nav] .kdl-product-card--featured .kdl-product-title {
  color: #ebd8ae;
}

.nav-wrapper[data-site-nav] .kdl-product-card--featured .kdl-product-title > span,
.nav-wrapper[data-site-nav] .kdl-product-card--featured .kdl-product-manage {
  color: #cacaca;
}

.nav-wrapper[data-site-nav] .kdl-product-title:hover,
.nav-wrapper[data-site-nav] .kdl-product-title:focus,
.nav-wrapper[data-site-nav] .kdl-product-manage:hover,
.nav-wrapper[data-site-nav] .kdl-product-manage:focus {
  outline: 0;
  color: #2878ff;
  text-decoration: none;
}

.nav-wrapper[data-site-nav] .kdl-product-title:hover > span,
.nav-wrapper[data-site-nav] .kdl-product-title:focus > span {
  color: #2878ff;
}

.nav-wrapper[data-site-nav] .kdl-product-card--featured .kdl-product-title:hover,
.nav-wrapper[data-site-nav] .kdl-product-card--featured .kdl-product-title:focus,
.nav-wrapper[data-site-nav] .kdl-product-card--featured .kdl-product-manage:hover,
.nav-wrapper[data-site-nav] .kdl-product-card--featured .kdl-product-manage:focus,
.nav-wrapper[data-site-nav] .kdl-product-card--featured .kdl-product-title:hover > span,
.nav-wrapper[data-site-nav] .kdl-product-card--featured .kdl-product-title:focus > span {
  color: #f6eace;
}

.nav-wrapper[data-site-nav] .kdl-product-title:focus-visible,
.nav-wrapper[data-site-nav] .kdl-product-manage:focus-visible,
.nav-wrapper[data-site-nav] .kdl-product-submenu a:focus-visible,
.nav-wrapper[data-site-nav] .kdl-service-card:focus-visible {
  outline: 2px solid #2878ff;
  outline-offset: -2px;
}

.nav-wrapper[data-site-nav] .kdl-pro-badge {
  display: inline-flex;
  height: 18px;
  align-items: center;
  margin-left: 7px;
  padding: 0 5px;
  border: 1px solid #ebd8ae;
  border-radius: 3px;
  color: #ebd8ae;
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  box-sizing: border-box;
}

.nav-wrapper[data-site-nav] .kdl-new-badge {
  display: block;
  width: 42px;
  height: 26px;
  margin: 0 0 0 5px;
  object-fit: contain;
}

.nav-wrapper[data-site-nav] .kdl-hot-badge {
  display: block;
  width: auto;
  height: 24px;
  margin: -8px 0 0 3px;
  object-fit: contain;
}

.nav-wrapper[data-site-nav] .kdl-product-submenu {
  display: grid;
  min-height: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 0 10px;
  padding: 4px 16px 6px;
  box-sizing: border-box;
}

.nav-wrapper[data-site-nav] .kdl-product-submenu a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  overflow: hidden;
  color: #9a9ca0;
  font-size: 12px;
  line-height: 17px;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-wrapper[data-site-nav] .kdl-product-submenu a:hover,
.nav-wrapper[data-site-nav] .kdl-product-submenu a:focus {
  color: #2878ff;
  text-decoration: none;
}

.nav-wrapper[data-site-nav] .kdl-product-card--featured .kdl-product-submenu a {
  color: #ebd8ae;
}

.nav-wrapper[data-site-nav] .kdl-product-card--featured .kdl-product-submenu a:hover,
.nav-wrapper[data-site-nav] .kdl-product-card--featured .kdl-product-submenu a:focus {
  color: #f6eace;
}

.nav-wrapper[data-site-nav] .kdl-product-submenu img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 16px;
  margin: 0;
  object-fit: contain;
}

.nav-wrapper[data-site-nav] .kdl-product-submenu .kdl-ipv6-badge {
  width: auto;
  height: 14px;
  margin-left: -2px;
}

.nav-wrapper[data-site-nav] .kdl-service-rail {
  min-width: 0;
  padding: 27px 45px 18px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 0 4px 4px 0;
  background: #f5f7f9;
  box-sizing: border-box;
}

.nav-wrapper[data-site-nav] .kdl-service-rail h2 {
  margin: 0 0 20px;
  color: #12141d;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.nav-wrapper[data-site-nav] .kdl-service-card {
  display: flex;
  width: 172px;
  height: 74px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 8px 0 8px 12px;
  overflow: hidden;
  border-radius: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #12141d;
  text-align: left;
  text-decoration: none;
  transition: box-shadow 0.2s linear, transform 0.2s linear;
  box-sizing: border-box;
}

.nav-wrapper[data-site-nav] .kdl-service-card--openclaw {
  background-image: url("/web/default/assets/img/nav/product-mega/kuaidaili/menu_openclaw@2x.png");
}

.nav-wrapper[data-site-nav] .kdl-service-card--plugin {
  background-image: url("/web/default/assets/img/nav/product-mega/kuaidaili/menu_plugin@2x.png");
}

.nav-wrapper[data-site-nav] .kdl-service-card--student {
  background-image: url("/web/default/assets/img/nav/product-mega/kuaidaili/menu_student@2x.png");
}

.nav-wrapper[data-site-nav] .kdl-service-card--freetest {
  background-image: url("/web/default/assets/img/nav/product-mega/kuaidaili/menu_freetest@2x.png");
}

.nav-wrapper[data-site-nav] .kdl-service-card strong {
  color: #12141d;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.nav-wrapper[data-site-nav] .kdl-service-card span {
  padding-bottom: 1px;
  color: #98999b;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
}

.nav-wrapper[data-site-nav] .kdl-service-card:hover,
.nav-wrapper[data-site-nav] .kdl-service-card:focus {
  outline: 0;
  box-shadow: 0 8px 18px rgba(18, 39, 80, 0.14);
  color: #12141d;
  text-decoration: none;
  transform: translateY(-2px);
}

.nav-wrapper[data-site-nav] .kdl-service-applet {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 8px;
  color: #98999b;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}

.nav-wrapper[data-site-nav] .kdl-service-applet img {
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 0 6px;
  object-fit: contain;
}

@media screen and (min-width: 901px) and (max-width: 1100px) {
  .nav-wrapper[data-site-nav] .nav-product-menu.kdl-product-menu {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .nav-wrapper[data-site-nav] .kdl-product-main {
    padding-right: 22px;
    padding-left: 22px;
  }

  .nav-wrapper[data-site-nav] .kdl-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .nav-wrapper[data-site-nav] .kdl-product-title {
    padding-right: 100px;
  }

  .nav-wrapper[data-site-nav] .kdl-product-art {
    right: 7px;
    width: 82px;
  }

  .nav-wrapper[data-site-nav] .kdl-product-manage {
    right: 92px;
  }

  .nav-wrapper[data-site-nav] .kdl-service-rail {
    padding-right: 29px;
    padding-left: 29px;
  }
}

@media screen and (max-width: 900px) {
  .kdl-mobile-product-list {
    display: grid;
    gap: 10px;
  }

  .kdl-mobile-product-card {
    position: relative;
    min-height: 68px;
    overflow: hidden;
    border: 1px solid #f0f2f5;
    border-radius: 8px;
    background: #ffffff;
    box-sizing: border-box;
  }

  .kdl-mobile-product-card--featured {
    border-color: #313337;
    background: #12141d;
  }

  .kdl-mobile-product-card--tps {
    background: linear-gradient(90deg, rgba(0, 188, 224, 0.16), rgba(245, 247, 249, 0.16));
  }

  .kdl-mobile-product-card--dps {
    background: linear-gradient(90deg, rgba(122, 115, 255, 0.16), rgba(245, 247, 249, 0.16));
  }

  .kdl-mobile-product-card--kps {
    background: linear-gradient(90deg, rgba(234, 179, 80, 0.16), rgba(245, 247, 249, 0.16));
  }

  .kdl-mobile-product-card--fps {
    background: linear-gradient(90deg, rgba(255, 150, 42, 0.16), rgba(245, 247, 249, 0.16));
  }

  .kdl-mobile-product-card--sfps {
    background: linear-gradient(90deg, rgba(22, 119, 255, 0.16), rgba(245, 247, 249, 0.16));
  }

  .kdl-mobile-product-art {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: block;
    width: 68px;
    height: 68px;
    margin: 0;
    object-fit: contain;
  }

  .kdl-mobile-product-manage {
    position: absolute;
    top: 14px;
    right: 82px;
    z-index: 3;
    color: #6b6d70;
    font-size: 11px;
    line-height: 18px;
    text-decoration: none;
    white-space: nowrap;
  }

  .kdl-mobile-product-title {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 68px;
    flex-direction: column;
    padding: 14px 132px 11px 14px;
    color: #12141d;
    text-decoration: none;
    box-sizing: border-box;
  }

  .kdl-mobile-product-title strong {
    display: flex;
    align-items: center;
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
  }

  .kdl-mobile-product-title > span {
    margin-top: 4px;
    overflow: hidden;
    color: #6b6d70;
    font-size: 11px;
    line-height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .kdl-mobile-product-card--featured .kdl-mobile-product-title {
    color: #ebd8ae;
  }

  .kdl-mobile-product-card--featured .kdl-mobile-product-title > span,
  .kdl-mobile-product-card--featured .kdl-mobile-product-manage {
    color: #cacaca;
  }

  .kdl-mobile-product-title:hover,
  .kdl-mobile-product-title:focus,
  .kdl-mobile-product-manage:hover,
  .kdl-mobile-product-manage:focus {
    color: #2878ff;
    text-decoration: none;
  }

  .kdl-mobile-product-card--featured .kdl-mobile-product-title:hover,
  .kdl-mobile-product-card--featured .kdl-mobile-product-title:focus,
  .kdl-mobile-product-card--featured .kdl-mobile-product-manage:hover,
  .kdl-mobile-product-card--featured .kdl-mobile-product-manage:focus {
    color: #f6eace;
  }

  .kdl-mobile-product-card .kdl-pro-badge {
    height: 17px;
    margin-left: 5px;
    padding: 0 4px;
    border: 1px solid #ebd8ae;
    border-radius: 3px;
    color: #ebd8ae;
    font-size: 9px;
    line-height: 15px;
  }

  .kdl-mobile-product-card .kdl-new-badge {
    width: 32px;
    height: 20px;
    margin-left: 3px;
  }

  .kdl-mobile-product-card .kdl-hot-badge {
    width: auto;
    height: 21px;
    margin: -7px 0 0 2px;
  }

  .kdl-mobile-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 100px));
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
  }

  .kdl-mobile-services a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    line-height: 0;
  }

  .kdl-mobile-services img {
    display: block;
    width: 100%;
    height: 74px;
    margin: 0;
    object-fit: cover;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-shadow,
  .nav-shadow *,
  .mobile-nav-overlay,
  .mobile-nav-panel {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
