/* 首页标题组件定制样式 */
.qlbd-title-1 {
    width: 100%;
    margin-bottom: 0 !important; /* 去掉原有的 margin-bottom */
    background-color: #F5F5F5;   /* 设置背景颜色为浅灰色 */
    text-align: center;
    padding: var(--ql-space-5) 0;
}

/* 通用查看更多按钮容器 */
.qlbd-btn-more-wrapper {
    text-align: center;
    margin-top: 40px; /* 对应 calc(var(--ql-space-4) * 3) */
    padding-bottom: 20px;
}

/* 通用查看更多按钮样式 */
.qlbd-btn-more {
    display: inline-block;
    padding: 12px 32px;
    background-color: transparent;
    color: var(--ql-color-primary);
    border: 2px solid var(--ql-color-primary);
    border-radius: 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* 按钮悬停效果 */
.qlbd-btn-more:hover {
    background-color: var(--ql-color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.swiperthreemain img{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* 解决移动端导航栏遮挡内容的问题 */
@media (max-width: 1199px) {
    .qlbdfir-nav-mobile {
    }
}