

/* 按钮 悬停 线条动画 */
.animated-btn-01 {
    position: relative;
    transition: transform 0.3s ease;
}

.animated-btn-01::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #666666;
    transition: width 0.5s ease-out, 
                left 0.5s ease-out; /* 多个过渡属性分行显示，更易读 */
}

.animated-btn-01:hover {
    transform: translateY(-1px);
}

.animated-btn-01:hover::after {
    width: 100%;
    left: 0;
}

/* 按钮 悬停 圆形扩大动画 */
.animated-btn-02 {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* 圆形扩展效果元素 */
.animated-btn-02::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 0;
    height: 0;
    background-color: #e60012; /* 补充冒号后空格 */
    border-radius: 50%;
    transform: translate(-10%, -50%);
    transition: width 0.6s ease, 
                height 0.6s ease; /* 长属性分行，逗号后加空格 */
    z-index: -1; 
}

.animated-btn-02:hover {
    color: #ffffff !important;
}

.animated-btn-02:hover::before {
    width: 400px;
    height: 400px;
}

/* 按钮 悬停 箭头移动 */
.animated-btn-03 {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.animated-btn-03 .btn-inner {
    display: inline-flex;
    align-items: center;
    transition: transform 0.4s ease;
}

.animated-btn-03 .btn-text {
    transition: transform 0.4s ease;
}

.animated-btn-03 .left-arrow {
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.animated-btn-03 .right-arrow {
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateX(0);
}

/* Hover 效果 */
.animated-btn-03:hover .btn-inner {
    transform: translateX(18px);
}

.animated-btn-03:hover .left-arrow {
    opacity: 1;
    transform: translateX(0);
}

.animated-btn-03:hover .right-arrow {
    opacity: 0;
    transform: translateX(10px);
}


/* 按钮 悬停 箭头右移 */
.animated-btn-04 {
    transition: gap 0.4s ease; /* 关键：gap属性过渡动画 */
}
.animated-btn-04:hover {
    gap: 38px !important; /* 初始8px + 增加20px = 28px */
}


/* 开始 菜单控制 */
.my-nav-top-section .brxe-dropdown .brx-submenu-toggle a,
.my-nav-top-section .brxe-dropdown .brx-submenu-toggle span {
  font-weight: 400;
  transition: color 0.3s ease; /* 添加颜色过渡效果 */
}
.my-nav-top-section .brxe-dropdown:hover .brx-submenu-toggle a,
.my-nav-top-section .brxe-dropdown:hover .brx-submenu-toggle span {
  color: #86042A;
}
.my-nav-top-section .brxe-dropdown .brx-submenu-toggle button {
  display: none;
}
.my-nav-top-section .brxe-dropdown .brx-dropdown-content {
  box-shadow: 0 10px 24px 0 rgba(149, 157, 165, 0.1);
  border-radius: 10px;
}
.my-nav-top-section .brxe-dropdown .brx-dropdown-content > li {
  border-bottom: 1px solid #f2f2f2;
}
.my-nav-top-section .brxe-dropdown .brx-dropdown-content > li:last-child {
  border-bottom: none;
}
.my-nav-top-section .brxe-dropdown .brx-dropdown-content > li > a {
  justify-content: center;
  padding: 10px 10px; /* 简写属性 */
  border-radius: 10px;
  margin: 6px;
  transition: background-color 0.3s ease; 
}
.my-nav-top-section .brxe-dropdown .brx-dropdown-content > li > a:hover {
  background-color: #ead3c1; 
}
/* 按钮 悬停 线条动画 */
.my-nav-top-section .brxe-dropdown {
    position: relative;
}

.my-nav-top-section .brxe-dropdown::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #86042A;
    transition: width 0.5s ease-out, 
                left 0.5s ease-out; /* 多个过渡属性分行显示，更易读 */
}

.my-nav-top-section .brxe-dropdown:hover::after {
    width: 100%;
    left: 0;
}

/* 结束 菜单控制 */

/* 产品菜单 开始 */
/* 导航容器基础样式 */
.product-menu-nav ul,
.product-menu-nav li {
    /* 清除默认列表符号 */
    list-style: none;
    list-style-type: none;
    
    /* 清除默认内外边距 */
    margin: 0;
    padding: 0;
    
    /* 确保无继承的列表相关样式 */
    list-style-position: outside;
}
.product-menu-nav {
    display: inline-block;
}

/* 一级菜单容器 */
.product-menu {
    position: relative;
    display: inline-block;
    z-index: 999;
}

/* 【产品分类】主按钮单独样式 */
.product-menu-one.brxe-text-link {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #005cb9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* 主按钮图标样式 */
.product-menu-one {
    background: #fff;
    border-radius: 8px;
}
.product-menu-one .icon {
    display: inline-block;
    margin-right: 14px;
}

.product-menu-one .icon i {
    color: #005cb9;
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
}

/* 主按钮文字样式 */
.product-menu-one .text {
    font-weight: 600;
    transition: color 0.3s;
}

/* 主按钮悬停效果 */
.product-menu-one:hover {
}

.product-menu-one:hover .text {
}

.product-menu-one:hover .icon i {
}

/* 子菜单容器通用样式 */
.product-submenu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    min-width: 260px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    padding: 20px 20px;
    border-radius: 8px;
    transition: all 0.25s ease;
    pointer-events: none;
    list-style: none;
}

/* 二级菜单定位（下拉式） */
.product-menu > .product-submenu {
    top: 100%; /* 与一级菜单底部对齐 */
    left: 0;
    transform-origin: top left;
    transform: scaleY(0.95);
}

/* 三级菜单定位（右侧弹出，关键修改：与二级菜单项顶部对齐） */
.product-submenu .product-submenu {
    top: 0; /* 核心：与当前悬停的二级菜单项顶部对齐 */
    left: 100%;
    margin-left: 2px;
    transform-origin: top left; /* 动画原点改为左上角，符合顶部对齐的视觉逻辑 */
    transform: scaleX(0.95); /* 从左侧缩放进入，更自然 */
}

/* 子菜单项样式 */
.product-submenu li {
    position: relative; /* 确保三级菜单以当前二级菜单项（li）为基准定位 */
    line-height: 1; /* 避免行高影响对齐精度 */
}

.product-submenu li a.brxe-text-link {
    display: block;
    padding: 20px 20px;
    transition: all 0.2s ease;
}

.product-submenu li a.brxe-text-link:hover {
    color: #005cb9;
    background-color: #f0f5ff;
    padding-left: 26px;
}

/* 子菜单显示逻辑 */
.product-menu:hover > .product-submenu,
.product-submenu li:hover > .product-submenu {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* 子菜单指示器 */
.product-submenu li:has(> .product-submenu) > a::after {
    content: ">";
    float: right;
    margin-left: 10px;
}
/* 产品菜单 结束 */

.backdrop-filter-01 {
backdrop-filter: blur(10px); /* 背景模糊 */
-webkit-backdrop-filter: blur(10px); /* Safari 兼容 */
}

/* 浅蓝色调的柔和阴影，带有明显的Y轴偏移 */
.box-shadow-01 {
  box-shadow: rgba(150, 170, 180, 0.50) 0px 7px 30px -10px;
}
/* 暗色调的均匀阴影，无偏移，轻微悬浮感 */
.box-shadow-02 {
box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
/* 灰色调的立体阴影，X轴和Y轴偏移明显 */
.box-shadow-03 {
box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}
/* 极淡的阴影，不明显但能增加层次感 */
.box-shadow-04 {
box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 10px 0px;
}

/* 两端对齐不会出现文字拉开的情况 */
.justify-fix {
  text-align: justify;
  word-break: break-all; /*  break-all */
  /* overflow-wrap: break-word; */
}
