.hito[data-v-775c975d]{white-space:nowrap;z-index:10}.hito p[data-v-775c975d]{overflow:hidden;text-overflow:ellipsis}

 /* 底部导航栏样式 */
    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0px 0;
        height: 50px;
    }
    .nav-container {
        display: flex;
        justify-content: space-around;
        max-width: 100%;
        margin: 0 auto;
        height: 100%;
    }
    .nav-item {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #999 !important;
        padding: 5px 10px;
        font-size: 10px;
        transition: all 0.3s;
        height: 100%;
    }
    
    /* 小蓝条样式 - 调整到文字下方 */
    .nav-indicator {
        position: absolute;
        bottom: 3px;  /* 调整到文字下方 */
        left: 50%;
        width: 20px;  /* 缩短蓝条宽度 */
        height: 3px;
        background-color: #409eff;
        border-radius: 3px;  /* 添加圆角 */
        transform: translateX(-50%);
        transition: all 0.3s;
        opacity: 0;
    }
    
    .nav-item.active .nav-indicator {
        opacity: 1;
    }
    
    /* 调整导航项内部布局 */
    .nav-item-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        padding-bottom: 8px;  /* 为小蓝条留出空间 */
    }
    .nav-item.active {
        color: #999 !important;
    }
    .nav-item i {
        font-size: 15px;
        margin-bottom: 3px;
        color: #999 !important;
    }
    .nav-item.active i {
        color: #999 !important;
    }
    
    /* 移除点击高亮效果 */
    .nav-item:focus {
        outline: none !important;
        box-shadow: none !important;
    }
    
    /* 防止内容被底部导航遮挡 */
    body {
        padding-bottom: 80px;
    }
    
    /* 确保模态框显示在导航栏上方 */
    .modal {
        z-index: 1050;
    }
    
    /* 为最后一个内容块添加额外底部间距
    .home-main > div:last-child {
        margin-bottom: 50px !important;
    } */
    
    /* 默认无底部间距 */
    .home-main > div:last-child {
    margin-bottom: 0;
    }

    /* 只有当 body 有 .show-bottom-nav 时才生效 */
    .show-bottom-nav .home-main > div:last-child {
    margin-bottom: 50px !important;
    }
    
    /* 滑块容器样式调整 */
    .slider-container {
        margin: 15px 0;
    }
    
    /* 确保颜色在深色背景上可见 */
    .bottom-nav {
        background-color: #fff; /* 改为深色背景确保浅色文字可见 */
    }
    /* 新增的去下划线样式 */
    .bottom-nav a {
        text-decoration: none !important;
    }
    .bottom-nav .nav-item,
    .bottom-nav .nav-item i,
    .bottom-nav .nav-item span {
        text-decoration: none !important;
    }
    .bottom-nav .nav-item:active,
    .bottom-nav .nav-item:focus,
    .bottom-nav .nav-item:hover {
        text-decoration: none !important;
    }
    .bottom-nav .nav-item {
        outline: none !important;
    }
    
.bg {
  background-image: url('/assets/img/bg.svg') !important;
  background-size: cover;
  background-position: center;
}

.qa-sdk-wrapper {
            position: fixed;
            width: 400px;
            right: -600px;
            max-height: 530px;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease-in-out;
            background: #fff;
        }
        
        .qa-sdk-close-btn {
            display: inline-block;
            width: 18px;
            height: 18px;
            cursor: pointer;
            position: absolute;
            top: 16px;
            right: 16px;
        }
        
        .qa-sdk-close-btn:hover {
            border-radius: 50%;
            background-color: #d5d9df;
        }
        
        #qa-sdk-iframe {
            width: 400px;
        }
        
        @media (min-width: 1024px) and (max-width: 1366px) {
            .qa-sdk-wrapper{
                width: 356px;
            }
            #qa-sdk-iframe {
                width: 356px;
            }
        }
        
        .add {
            width: 100%;
            padding: 12px 12px;
            background-color: var(--color-bg-2);
            border-radius: 12px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            font-size: 14px;
            color: var(--color-text-2);
            line-height: 1.5;
        }
        
        .add img {
            width: 25px;
            height: 25px;
            margin-right: 10px;
        }

        /* 新增滑动轮盘样式 */
        .slider-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            margin: 12px 0;
        }

        .step-slider {
            -webkit-appearance: none;
            width: 280px;
            height: 5px;
            background: #e0e0e0;
            border-radius: 2.5px;
        }

        .step-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 25px;
            height: 25px;
            background: #409eff; /* 主题色 */
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s;
        }

        .step-slider::-webkit-slider-thumb:hover {
            background: #2d8cf0;
        }

        .slider-value {
            font-size: 14px;
            color: #666;
            font-weight: 500;
        }
        
/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
