.top-logo {
  width: 131px;
}

.h-80 {
  height: 80px;
}

.top-banner {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.top-tab {
  margin-left: 60px;
  display: flex;
  align-items: center;
  gap: 0 50px;
}

.top-right {
  display: flex;
  align-items: center;
}

.top-right img {
  margin-left: 20px;
  width: 24px;
  height: 24px;
}

.top-right a {
  margin-left: 12px;
  font-size: 16px;
  color: #045afe;
}

.top-right button {
  padding: 8px 24px;
}

.top-mobile-menu {
  display: none;
}

.product-dialog {
  position: fixed;
  top: -750px; /* 官方下拉框高约 622px, 隐藏到视口上方更深处避免露出 */
  left: 0;
  right: 0;
  z-index: 800;
  background: #ffffff;
  box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-out;
  opacity: 0;
}

.product-dialog.show {
  top: 65px;
  opacity: 1;
}

.product-dialog-left {
  width: 243px;
  box-shadow: 4px 0px 8px 0px #f1f1f1;
  box-sizing: border-box;
  padding: 8px 0 25px 55px;
}

.product-dialog-left-item {
  width: 172px;
  height: 40px;
  border-radius: 6px 6px 6px 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin-top: 12px;
  cursor: pointer;
}

.product-dialog-left-item.active {
  background: #e8f1fc;
  color: #0168ef;
}

.product-dialog-left-btn {
  margin-top: 55px;
}

.product-dialog-left-btn button {
  width: 172px;
  height: 36px;
  background: #045afe;
  box-shadow: 0px 4px 16px 0px rgba(4, 90, 254, 0.16);
  border-radius: 4px 4px 4px 4px;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  line-height: 36px;
  padding: 0;
  position: relative;
}

.product-dialog-left-btn button:before {
  content: "";
  position: absolute;
  top: -40px;
  left: 75px;
  background-image: url('/static/img/Group-427324103.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 105px;
  height: 38px;
}

.product-dialog-center {
  box-sizing: border-box;
  padding: 20px 0 0 75px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-content: flex-start;
  flex: 1;
}

.product-dialog-box {
  display: flex;
}

.product-dialog-center-desc {
  font-weight: 400;
  padding-left: 12px;
  font-size: 20px;
  color: #000000;
  line-height: 22px;
  width: 100%;
}

.product-dialog-center-item {
  width: 222px;
  height: 65px;
  background: #fff;
  border-radius: 8px 8px 8px 8px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  box-sizing: border-box;
  cursor: pointer;
}

.product-dialog-center-item:hover {
  background: #ecf6fd;
}

.product-dialog-center-item.active {
  background: #ecf6fd;
}

.product-dialog-center-item img {
  width: 36px;
  height: 36px;
}

.product-dialog-center-item .right {
  padding-left: 12px;
}

.product-dialog-center-item .title {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #000;
}

.product-dialog-center-item:hover .title {
  color: #055afe;
}

.product-dialog-center-item.active .title {
  color: #055afe;
}

.product-dialog-center-item .remark {
  font-weight: 400;
  font-size: 12px;
  color: #808080;
  line-height: 15px;
  margin-top: 4px;
  width: 155px;
}

.product-dialog-right {
  padding: 20px 0;
}

.product-dialog-right-bg {
  background: #f4f9ff;
  width: 265px;
  border-radius: 12px;
}

.product-dialog-right img {
  width: 265px;
  height: 212px;
}

.product-dialog-right-title {
  padding: 15px 0 0 12px;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  line-height: 22px;
}

.product-dialog-right-remark {
  padding: 10px 12px 0 12px;
  font-weight: 400;
  font-size: 14px;
  color: #656565;
  line-height: 18px;
}

.product-dialog-right-btn {
  margin-top: 25px;
  padding: 0 15px 15px 15px;
}

.product-dialog-right-btn button {
  font-weight: 400;
  font-size: 16px;
  color: #007EFF;
  line-height: 22px;
}

.product-dialog-right-btn .btn2 {
  background: linear-gradient(90deg, #045afe 0%, #675aff 100%);
}

.product-checked {
  position: relative;
}

.product-checked:before {
  content: "";
  position: absolute;
  left: -25px;
  top: -25px;
  bottom: -25px;
  right: -25px;
}

/* 移动端菜单动画关键帧 - 优化版本 */
@keyframes slideDown {
  0% {
    transform: translateY(-100%) scale(0.9);
    opacity: 0;
  }

  60% {
    transform: translateY(-10%) scale(1.02);
    opacity: 0.8;
  }

  80% {
    transform: translateY(2%) scale(0.99);
    opacity: 0.95;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(-5%) scale(1.01);
    opacity: 0.9;
  }

  100% {
    transform: translateY(-100%) scale(0.9);
    opacity: 0;
  }
}

/* 菜单项淡入动画 */
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 移动端 */
@media screen and (max-width: 800px) {
  .fix-service {
    display: none;
  }
  .w-1280 {
    width: 100%;
  }

  .flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  img {
    max-width: 100%;
  }

  .top-banner>div {
    justify-content: space-between;
    padding: 0 15px;
  }

  .top-banner .top-tab {
    display: none;
  }

  .top-banner button {
    border: 0;
    width: fit-content;
    padding: 0;
    background: none;
    color: #007eff;
    display: none;
  }

  .top-mobile-menu {
    display: block;
  }

  .menu-icon {
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    width: 32px;
    height: 32px;
  }

  .menu-icon:hover {
    transform: scale(1.1) rotate(90deg);
  }

  .close-icon {
    display: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    width: 32px;
    height: 32px;
  }

  .close-icon:hover {
    transform: scale(1.1) rotate(90deg);
  }

  /* 菜单打开时的图标状态 */
  .top-mobile-menu.menu-open .menu-icon {
    transform: scale(0.9) rotate(180deg);
    opacity: 0;
  }

  .top-mobile-menu.menu-open .close-icon {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  .top-mobile-menu .menu-inner {
    background-color: #fff;
    overflow: hidden;
    position: fixed;
    top: 66px;
    right: 0;
    width: 100vw;
    box-sizing: border-box;
    transform: translateY(-100%) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 16px 16px;
    z-index: 999;
  }

  /* 展开状态 */
  .top-mobile-menu .menu-inner.show {
    visibility: visible;
    animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  /* 收起状态 */
  .top-mobile-menu .menu-inner.hide {
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .top-mobile-menu ul {
    height: calc(100vh - 80px);
    margin: 0;
    overflow: hidden;
    overflow-y: auto;
  }

  .top-mobile-menu ul li {
    margin-bottom: 8px;
    list-style: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(212, 212, 212, 0.3);
  }

  /* 菜单展开时，菜单项依次出现 */
  .top-mobile-menu .menu-inner.show ul li {
    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .top-mobile-menu .menu-inner.show ul li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .top-mobile-menu .menu-inner.show ul li:nth-child(2) {
    animation-delay: 0.15s;
  }

  .top-mobile-menu .menu-inner.show ul li:nth-child(3) {
    animation-delay: 0.2s;
  }

  .top-mobile-menu .menu-inner.show ul li:nth-child(4) {
    animation-delay: 0.25s;
  }

  .top-mobile-menu .menu-inner.show ul li:nth-child(5) {
    animation-delay: 0.3s;
  }

  .top-mobile-menu .menu-inner.show ul li:nth-child(6) {
    animation-delay: 0.35s;
  }

  .top-mobile-menu ul li a {
    padding: 18px 20px;
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    margin-bottom: 4px;
  }

  .top-mobile-menu ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(0, 123, 255, 0.1),
        rgba(0, 123, 255, 0.05));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
  }

  .top-mobile-menu ul li a:hover {
    color: #007bff;
    transform: translateX(8px);
    background-color: rgba(0, 123, 255, 0.02);
  }

  .top-mobile-menu ul li a:hover::before {
    width: 100%;
  }

  .top-mobile-menu ul li a:active {
    transform: translateX(8px) scale(0.98);
  }

  .top-mobile-menu dl {
    display: none;
  }

  .top-mobile-menu dd {
    padding-left: 20px;
  }

  .top-mobile-menu .has-child>a::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url('/static/images/arrow-down.svg') no-repeat center center;
    background-size: 100% 100%;
  }
}
/* ============================================================
   产品功能下拉框：抓取自 www.dingtalk.com 官方样式 (2026-08-11)
   ============================================================ */


  .right-menu-content {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    font-size: 14px;
  }


  .right-menu-content-left-w {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex: 1;
    flex: 1;
  }


  .right-menu-content-left {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    width: 930px;
    margin-left: -24px;
    padding: 0 32px;
  }


  .right-menu-content-item-1 {
    width: 192px;
    margin-left: 24px;
    margin-top: 24px;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 6px;
    -ms-flex-align: center;
    align-items: center;
    transition: background-color 0.3s;
    border-radius: 6px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 54px;
    position: relative;
  }


  .right-menu-content-item-1::after {
    content: "";
    position: absolute;
    left: -24px;
    top: -24px;
    opacity: 0;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    z-index: 2;
  }


  .right-menu-content-item-1:hover {
    background-color: rgba(209, 230, 250, 0.4);
  }


  .right-menu-content-item-1:hover .right-menu-content-item1-t {
    color: #007fff;
  }


  .right-menu-content-right-w {
    padding-top: 24px;
    width: 362px;
  }


  .right-menu-content-item1-i {
    width: 36px;
    height: 36px;
    display: block;
    margin-right: 9px;
  }


  .right-menu-content-item1-t {
    font-size: 14px;
    font-weight: 500 !important;
    line-height: normal;
    letter-spacing: 0px;
    color: #171a1d;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: PingFang SC !important;
    display: flex;
    algin-items: center;
  }


  .right-menu-content-item1-t-badge {
    height: 14px;
    margin-left: 4px;
    margin-top: 2px;
  }


  .right-menu-content-item1-s {
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0px;
    color: rgba(23, 26, 29, 0.6);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 135px;
  }


  .right-menu-content-item-2 {
    width: 192px;
    padding: 6px;
    margin-left: 24px;
    margin-top: 24px;
    border-radius: 6px;
    position: relative;
  }


  .right-menu-content-item-2::after {
    content: "";
    position: absolute;
    left: -24px;
    top: -24px;
    opacity: 0;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    z-index: 2;
  }


  .right-menu-content-item-2:hover {
    background: rgba(209, 230, 250, 0.4);
  }


  .right-menu-content-item-2:hover .right-menu-content-item2-t {
    color: #007fff;
  }


  .right-menu-content-item2-top {
    margin-bottom: 4px;
  }


  .right-menu-content-item2-t {
    font-size: 14px;
    font-weight: 500 !important;
    line-height: normal;
    letter-spacing: 0px;
    color: #171a1d;
    font-family: PingFang SC !important;
  }


  .right-menu-content-item2-s {
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0px;
    color: rgba(23, 26, 29, 0.6);
  }


  .right-menu-content-item2-b {
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 6px;
  }


  .right-menu-content-item-2:hover .right-menu-content-item2-i {
    transition: transform 5s ease-out;
    transform: scale(1.15);
  }


  .right-menu-content-item2-i {
    width: 100%;
    display: block;
    transform-origin: center center;
  }


  .right-menu-content-sidebar {
    width: 260px;
    height: 177px;
    border-radius: 6px;
    margin-bottom: 24px;
    padding: 20px;
    display: block;
    position: relative;
    overflow: hidden;
  }


  .right-menu-content-sidebar:hover .right-menu-content-sidebar-bg {
    transform: translate(-50%) scale(1.15);
    transition: transform 5s ease-out;
  }


  .right-menu-content-sidebar:last-child {
    margin-bottom: 0px;
  }


  .right-menu-content-sidebar-t {
    font-size: 18px;
    font-weight: 500 !important;
    line-height: 26px;
    letter-spacing: 0px;
    color: #171a1d;
    margin-bottom: 2px;
    font-family: PingFang SC !important;
  }


  .right-menu-content-sidebar-dec1 {
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }


  .right-menu-content-sidebar-dec {
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
    letter-spacing: 0px;
    color: rgba(23, 26, 29, 0.6);
    margin-bottom: 9px;
    height: 56px;
  }


  .right-menu-content-sidebar-dec-2 {
    height: 19px;
    margin-bottom: 2px;
  }


  .right-menu-content-sidebar-btn {
    font-size: 14px;
    font-weight: normal;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0px;
    color: #007fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }


  .right-menu-content-sidebar-btn-arrow {
    color: #007fff;
    font-size: 12px;
  }


  .right-menu-content-sidebar-btn-arrow-light {
    color: #fff;
    font-size: 12px;
  }


  .right-menu-content-sidebar1 {
    padding: 0px;
    padding-top: 206px;
    height: 366px;
  }


  .right-menu-content-sidebar-bottom {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(184px);
    width: 100%;
    padding: 20px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    position: relative;
  }


  .right-menu-content-sidebar-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    transform-origin: center top;
  }


  .right-menu-content-sidebar-bg-2 {
    transform-origin: center;
  }


  .right-menu-content-2-banner {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 10px;
    margin-left: 24px;
  }


  .right-menu-content-2-banner-4,
  .right-menu-content-2-banner-more {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }


  .right-menu-content-2-banner .right-menu-content-2-banner-item {
    height: 200px;
    padding: 24px 24px 28px 30px;
    border-radius: 8px;
    margin-right: 24px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    overflow: hidden;
  }


  .right-menu-content-2-banner-item-bg {
    position: absolute;
    height: 100%;
    display: block;
    left: 50%;
    top: 0;
    overflow: hidden;
    transform: translateX(-50%);
  }


  .right-menu-content-2-banner-item:hover .right-menu-content-2-banner-item-bg {
    transform: translateX(-50%) scale(1.15);
    transition: transform 5s ease-out;
  }


  .right-menu-content-2-banner .right-menu-content-2-banner-item:last-child {
    margin-right: 0px;
  }


  .right-menu-content-2-banner .right-menu-content-2-title {
    font-size: 20px;
    line-height: 34px;
    height: 34px;
    color: #171a1d;
    font-weight: 500;
    font-family: PingFangSC-Medium;
    margin-bottom: 4px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }


  .right-menu-content-2-banner .right-menu-content-2-dec {
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: rgba(23, 26, 29, 0.6);
    max-height: 48px;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }


  .right-menu-content-2-banner .right-menu-content-2-banner-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: #007fff;
    font-size: 14px;
  }


  .right-menu-content-2-banner-4 .right-menu-content-2-banner-item {
    width: calc(50% - 12px);
    margin-right: 0px;
    -ms-flex: none;
    flex: none;
  }


  .right-menu-content-2-banner-more .right-menu-content-2-banner-item {
    width: calc(33.333% - 16px);
    margin-right: 0px;
    -ms-flex: none;
    flex: none;
  }


  .right-menu-content-2-banner-4 .right-menu-content-2-banner-item:nth-child(n + 3) {
    margin-top: 24px;
  }


  .right-menu-content-2-banner-more .right-menu-content-2-banner-item:nth-child(n + 4) {
    margin-top: 24px;
  }


  .right-menu-content-2-banner-mini {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding-left: 24px;
    padding-top: 24px;
    padding-right: 24px;
  }


  .right-menu-content-2-banner-mini .right-menu-content-2-banner-item {
    height: 180px;
    padding: 16px 24px 22px 30px;
    border-radius: 8px;
    margin-bottom: 18px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }


  .right-menu-content-2-banner-mini .right-menu-content-2-banner-item:last-child {
    margin-bottom: 0px;
  }


  .right-menu-content-2-banner-mini .right-menu-content-2-title {
    font-size: 20px;
    line-height: 34px;
    color: #171a1d;
    font-weight: 500;
    font-family: PingFangSC-Medium;
    margin-bottom: 4px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }


  .right-menu-content-2-banner-mini .right-menu-content-2-dec {
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: rgba(23, 26, 29, 0.6);
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 49px;
  }


  .right-menu-content-2-banner-mini .right-menu-content-2-banner-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: #007fff;
  }


  .dd-home-mini-menu {
    position: absolute;
    top: 60px;
    left: 0px;
    width: 100vw;
    height: calc(100vh - 60px);
    background-color: #fff;
    transition: visibility 0.3s ease-in-out, opacity 0.2s ease-in-out,
      transform 0.3s;
    overflow: hidden;
    -ms-user-select: none;
    user-select: none;
    z-index: 0;
    left: 50%;
    transform: translateX(50%);
  }


  .dd-home-mini-menu-wrapper {
    position: relative;
    /* height: auto; */
    height: 100%;
  }


  .dd-home-mini-menu-content {
    display: -ms-flexbox;
    height: 100%;
    overflow-y: auto;
  }


  .dd-home-mini-menu-open {
    transform: translate(-50%, 0);
    visibility: visible;
    opacity: 1;
  }


  .dd-home-mini-menu-close {
    transform: translate(-50%, -26px);
    opacity: 0;
    visibility: hidden;
  }


  .dd-home-mini-menu-item {
    height: 56px;
    width: 100%;
    overflow-y: hidden;
    transition: height 0.4s;
    cursor: pointer;
  }


  .dd-home-mini-menu-item .dd-home-mini-menu-item-link {
    height: 56px;
    width: calc(100% - 24px);
    margin-left: 12px;
    font-weight: 500;
    font-family: PingFangSC-Medium;
    font-size: 14px;
    color: #171a1d;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(126, 134, 142, 0.24);
    position: relative;
  }


  .dd-home-mini-menu-item-link::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5.87px;
    width: 100%;
    height: 38px;
    background-color: rgba(209, 230, 250, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
  }


  .dd-home-mini-menu-item-link:hover::after {
    opacity: 1;
  }


  .dd-home-mini-menu-item-link:hover {
    color: #007fff;
  }


  .dd-home-mini-menu-item-link:hover .dd-home-mini-menu-item-link-icon {
    color: #007fff;
  }


  .dd-home-mini-menu-item-link-text {
    padding-left: 6px;
    font-family: PingFang SC !important;
    font-weight: 500 !important;
    display: flex;
    align-items: center;
  }


  .dd-home-mini-menu-item-link-badge {
    width: 33px;
    border-radius: 4%;
    margin-left: 8px;
  }


  .dd-home-mini-menu-item-link-first {
    border-top: none;
  }


  .dd-home-mini-menu-item-link-last {
    border-bottom: 1px solid rgba(126, 134, 142, 0.24);
  }


  .dd-home-mini-menu-item-link svg {
    width: 12px;
    height: 12px;
  }


  .dd-home-mini-menu-item-link-icon {
    margin-right: 12px;
    font-size: 16px;
    color: #171a1d66;
  }


  .dd-home-mini-menu-item-open .dd-home-mini-menu-item-link {
    color: #007fff;
    border-bottom: 1px solid rgba(126, 134, 142, 0.24);
  }


  .dd-home-mini-menu-item-open {
    height: auto;
  }


  .version-active .dd-home-mini-menu-item-link {
    color: #007fff;
    border-bottom: 1px solid rgba(126, 134, 142, 0.24);
  }


  .dd-home-mini-menu-item-open .dd-home-mini-menu-item-link-icon {
    transform: rotate(-180deg);
    color: #007fff;
  }


  .dd-home-mini-menu-item-open .dd-home-mini-submenu-box::after {
    opacity: 1;
  }


  .dd-home-mini-submenu-box {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-size: 14px;
    /* border-bottom: 1px solid rgba(126, 134, 142, 0.24); */
  }


  .dd-home-mini-submenu-box::after {
    opacity: 0;
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    width: calc(100% - 32px);
    height: 1px;
    background-color: rgba(126, 134, 142, 0.24);
  }


  .dd-home-mini-submenu-left {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    background-color: #f8f9fd;
    /* overflow-y: scroll; */
    max-width: 164px;
  }


  .dd-home-mini-submenu-left::-webkit-scrollbar {
    display: none;
  }


  .dd-home-mini-submenu-link-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    /* height: fit-content; */
    height: 100%;
  }


  .dd-home-mini-submenu-item {
    margin-bottom: 24px;
  }


  .dd-home-mini-submenu-item-line {
    padding: 10px 0;
    margin-bottom: 24px;
  }


  .dd-home-mini-submenu-item-line div {
    height: 1px;
    background: rgba(126, 134, 142, 0.16);
  }


  .dd-home-mini-submenu-item:last-child {
    margin-bottom: 0px;
  }


  .dd-home-mini-submenu-item span {
    font-weight: 500;
    font-family: PingFangSC-Medium;
    color: #171a1d;
  }


  .dd-home-mini-submenu-item-bg {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 56px;
    width: 100%;
    z-index: -1;
  }


  .dd-home-mini-submenu-item span {
    display: inline-block;
    padding: 6px 8px;
    border-radius: 6px;
  }


  .dd-home-mini-submenu-item:hover>span {
    color: #007fff;
    background-color: rgba(209, 230, 250, 0.4);
  }


  .dd-home-mini-submenu-right {
    padding-bottom: 24px;
    transition: margin 0.3s, padding 0.3s;
    -ms-flex: 1;
    flex: 1;
  }


  .dd-home-mini-three-layer-menu-link>span {
    margin-left: -10px;
  }


  .dd-home-mini-three-layer-menu-link>span {
    padding: 8px 10px;
    display: inline-block;
    border-radius: 6px;
  }


  .dd-home-mini-three-layer-menu-link span:hover {
    background-color: rgba(126, 134, 142, 0.12);
    color: #007fff;
  }


  .dd-home-mini-three-layer-menu-link-active span {
    color: #007fff;
  }


  .dd-home-mini-three-layer-menu-right {
    display: -ms-flexbox;
    display: flex;
  }


  .dd-home-mini-three-layer-menu-right-l {
    display: -ms-flexbox;
    display: flex;
  }


  .dd-home-mini-three-layer-menu-right-l-w {
    width: 100%;
    max-width: 648px;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 24px;
  }


  .dd-home-mini-three-layer-menu-right-r {
    padding-top: 24px;
    margin-right: 24px;
  }


  .dd-home-mini-three-layer-menu-right-b {
    display: none;
    width: 100%;
  }

    .right-menu-content-2-banner-mini .right-menu-content-2-dec {
      max-width: 170px;
    }


    .right-menu-content-2-banner .right-menu-content-2-banner-item-2 .right-menu-content-2-dec {
      max-width: 220px;
    }


    .right-menu-content-2-banner .right-menu-content-2-banner-item-4 .right-menu-content-2-dec {
      max-width: 220px;
    }


    .right-menu-content-2-banner .right-menu-content-2-banner-item-3 .right-menu-content-2-dec {
      max-width: 170px;
    }


    .dd-home-mini-menu-content {
      display: none;
    }


    .dd-home-mini-menu-wrapper {
      overflow-y: auto;
    }


    #dd-home-mini-menu-mobile {
      display: block !important;
    }


    .dd-home-mini-three-layer-menu-right {
      -ms-flex-direction: column;
      flex-direction: column;
    }


    .dd-home-mini-three-layer-menu-right-r {
      display: none;
    }


    .dd-home-mini-three-layer-menu-right-b {
      display: block;
      padding: 0 24px;
      width: 100%;
    }


  #dd-home-mini-menu-mobile {
    display: none;
  }


  .right-menu-content-item1-type2 {
    width: 100%;

  }


  .right-menu-content-item1-type2-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0px;
    color: rgba(23, 26, 29, 0.6);
    height: 18px;
    margin-left: 24px;
    margin-top: 12px;
    margin-bottom: 0px;
    font-family: PingFangSC-Medium !important;
  }


  .right-menu-content-item1-type2:first-child .right-menu-content-item1-type2-title {
    margin-top: 24px;
  }


  .right-menu-content-item1-type2-content {
    display: flex;
    flex-wrap: wrap;
  }


  .right-menu-content-item1-type2 .right-menu-content-item-1 {
    margin-top: 8px;
  }
/* 描述单行省略（官方工具类，抓取遗漏补上） */
.text-overflow-ellipsis { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
/* 嵌入本站 .product-dialog 弹层的适配 */
.product-dialog .dd-home-mini-submenu-box {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.product-dialog .dd-home-mini-submenu-left { -ms-flex-negative: 0; flex-shrink: 0; }
/* 对齐钉钉官网当前布局：产品列每行排 4 个产品项(官网 right-menu-content-left-w
   914px / 4列)。本站原 max-width:648px 只能排 3 列，内容偏窄偏左、右侧大片空白。
   放宽到 864px(4×192+3×24+padding) 排 4 列，右侧留白率与官网一致(~23%)，
   不再靠左。有/无推广卡的分类均适用。 */
.product-dialog .dd-home-mini-three-layer-menu-right-l-w {
  max-width: 864px;
}
.product-dialog .dd-home-mini-three-layer-menu { width: 100%; }
.product-dialog .dd-home-mini-three-layer-menu-right { width: 100%; }
.product-dialog .right-menu-content-item1-l { -ms-flex-negative: 0; flex-shrink: 0; }
.product-dialog .right-menu-content-item1-r { min-width: 0; }

/* 侧边栏按钮箭头（官方为 svg 图标, 本地简化成文本箭头） */
.base-button-arrow { display: inline-block; margin-left: 4px; font-size: 13px; color: inherit; }

/* 修复：官方移动端 @media 内的 right-r 隐藏规则在抓取时被提取成全局,
   PC 端右侧边栏被误隐藏; 这里恢复 PC 显示、移动端隐藏 */
.dd-home-mini-three-layer-menu-right-r { display: block; }
@media (max-width: 800px) {
  .dd-home-mini-three-layer-menu-right-r { display: none; }
  .dd-home-mini-three-layer-menu-right-b { display: block; }
}

/* 修复2：官方移动端 @media 内的 three-layer-menu-right flex-direction:column
   被提取成全局, 导致 PC 端产品区与右侧推广卡垂直堆叠(sidebar 图片被挤到下方)。
   PC 恢复横向(row: 产品区在左, 推广卡在右), 移动端保持单列 */
.dd-home-mini-three-layer-menu-right { -ms-flex-direction: row; flex-direction: row; }
@media (max-width: 800px) {
  .dd-home-mini-three-layer-menu-right { -ms-flex-direction: column; flex-direction: column; }
}
