﻿/* PCB制板服务*/
.category-content {
    display: none;
}

    .category-content.active {
        display: block;
    }

#categoryContentWrapper .category-content {
    display: none;
}

    #categoryContentWrapper .category-content.active {
        display: block;
    }

.service-bar__menu_item {
    cursor: pointer;
    transition: background-color 0.3s;
}

    .service-bar__menu_item:hover {
        background-color: #f5f5f5;
    }

    .service-bar__menu_item.active {
        background-color: #e6f7ff;
        border-left: 3px solid #1890ff;
        font-weight: bold;
    }

/* 更多按钮容器 - 定位到右下角 */
.service-bar__more-container {
    display: flex;
    justify-content: flex-end; /* 右对齐 */
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    width: 100%;
}

/* 更多按钮 - 复用立即定制的样式 */
.service-bar__more-btn {
    /* 继承立即定制的样式 */
    min-width: 120px; /* 可以根据需要调整宽度 */
    text-align: center;
}

/* 如果需要让按钮在父容器中右对齐，可以添加以下样式 */
.category-content {
    position: relative;
    width: 100%;
}

/* 或者如果使用弹性布局，可以这样设置 */
.service-bar__content_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 确保立即定制按钮和更多按钮有相同的样式 */
.service-bar__content_btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1890ff; /* 蓝色背景，与立即定制相同 */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

    .service-bar__content_btn:hover {
        background-color: #096dd9; /* 深蓝色，与立即定制相同 */
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
        text-decoration: none;
        color: white;
    }

    .service-bar__content_btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
    }
