/* /Pages/Index.cshtml.rz.scp.css */
.products-header[b-sg66c16bsl] {
    padding: 60px 0 40px;
    position: relative;
}

    .products-header[b-sg66c16bsl]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 4px;
        background: linear-gradient(90deg, #3498db, #9b59b6);
        border-radius: 2px;
    }

.title-container[b-sg66c16bsl] {
    display: flex;
    align-items: baseline;
    /*justify-content: center;*/
    gap: 15px;
    flex-wrap: wrap;
}

.products-title[b-sg66c16bsl] {
    font-weight: 700;
    line-height: 1.2;
}

.main-title[b-sg66c16bsl] {
    font-size: 2.5rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 10px;
}

    .main-title[b-sg66c16bsl]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: #3498db;
        border-radius: 2px;
    }

.sub-title[b-sg66c16bsl] {
    font-size: 1.2rem;
    color: #7f8c8d;
    letter-spacing: 3px;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .title-container[b-sg66c16bsl] {
        gap: 5px;
    }

    .main-title[b-sg66c16bsl] {
        font-size: 2rem;
    }

    .sub-title[b-sg66c16bsl] {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-title[b-sg66c16bsl] {
        font-size: 1.2rem;
    }

    .sub-title[b-sg66c16bsl] {
        font-size: 0.7rem;
    }
}

.image-group[b-sg66c16bsl] {
    margin-bottom: 30px;
    text-align: center;
}

.large-img[b-sg66c16bsl] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .large-img:hover[b-sg66c16bsl] {
        transform: scale(1.03);
    }

.small-img[b-sg66c16bsl] {
    width: 40px !important;
    height: 40px !important;
    object-fit: cover;
    border-radius: 8px;
    margin: 5px 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .small-img:hover[b-sg66c16bsl] {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    }

.small-images-container[b-sg66c16bsl] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 5px;
}

.card[b-sg66c16bsl] {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

    .card:hover[b-sg66c16bsl] {
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.wz-link[b-sg66c16bsl] {
    text-decoration: none; /* 关键代码：去除下划线 */
    color: inherit;
    display: block;
}

.card-body[b-sg66c16bsl] {
    padding: 20px;
    justify-content: center;
}

.card-title[b-sg66c16bsl] {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: -20px;
    color: #2c3e50;
}

.card-text[b-sg66c16bsl] {
    color: #7f8c8d;
    font-size: 1.9rem;
}

.section-title[b-sg66c16bsl] {
    text-align: center;
    margin: 50px 0 30px;
    color: #2c3e50;
    position: relative;
}

    .section-title[b-sg66c16bsl]:after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, #6a11cb, #2575fc);
        margin: 10px auto;
        border-radius: 2px;
    }

.explanation[b-sg66c16bsl] {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-top: 50px;
}

.code-block[b-sg66c16bsl] {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 15px;
    border-radius: 8px;
    font-family: monospace;
    margin-top: 15px;
    overflow-x: auto;
}
/* /Pages/NhConsole/Shared/_Layout.cshtml.rz.scp.css */
.navbar[b-ag8l2yoeot] {
    background-color: #444747 !important; /* 背景颜色 */
    color: white; /* 文字颜色 */
}

.navbar .navmenu[b-ag8l2yoeot] {
    max-width: 1160px; /* 最大宽度 */
    margin: 0 auto; /* 水平居中 */
}

.navbar .navbar-brand[b-ag8l2yoeot],
.navbar .nav-link[b-ag8l2yoeot] {
    color: white; /* 设置导航栏链接文字颜色为白色 */
}

.navbar-toggler[b-ag8l2yoeot] {
    border-color: white; /* 切换按钮边框为白色 */
}

.footer[b-ag8l2yoeot] {
    background-color: #444747 !important; /* 背景颜色 */
    color: white; /* 文字颜色 */
}
    .footer a[b-ag8l2yoeot] {
        color: white !important; /* 确保链接文字白色（覆盖默认蓝色） */
        text-decoration: underline; /* 保留原有的下划线 */
    }

        .footer a:hover[b-ag8l2yoeot] {
            text-decoration: none; /* hover 时取消下划线（可选优化） */
            opacity: 0.9; /* hover 时轻微透明，提升交互感 */
        }

/* 桌面端样式 */
.contact-float[b-ag8l2yoeot] {
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 60px;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: white;
    opacity: 0.6;
}

    .contact-float:hover[b-ag8l2yoeot] {
        width: 180px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        opacity: 1;
    }

.contact-body[b-ag8l2yoeot] {
    background-color: white;
    padding: 10px;
    border-radius: 10px 0 0 10px;
    position: relative;
    z-index: 2;
}

.contact-item[b-ag8l2yoeot] {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
}

    .contact-item:last-child[b-ag8l2yoeot] {
        margin-bottom: 0;
        border-bottom: none;
    }

.contact-icon[b-ag8l2yoeot] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

    .contact-icon img[b-ag8l2yoeot] {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

.qq-icon[b-ag8l2yoeot] {
    background-color: #12b7f5;
}

.wechat-icon[b-ag8l2yoeot] {
    background-color: #09bb07;
}

.contact-info[b-ag8l2yoeot] {
    flex: 1;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
}

.contact-float:hover .contact-info[b-ag8l2yoeot] {
    opacity: 1;
}

.contact-label[b-ag8l2yoeot] {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

.contact-value[b-ag8l2yoeot] {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* 移动端样式 */
.mobile-contact-bar[b-ag8l2yoeot] {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 5px 0 0 0;
}

.mobile-contact-buttons[b-ag8l2yoeot] {
    display: flex;
    justify-content: space-around;
}

.mobile-contact-btn[b-ag8l2yoeot] {
    display: flex;
    justify-content: center;
    padding: 0px 12px;
    border: none;
    background: none;
    border-radius: 8px;
    transition: background-color 0.2s;
    gap: 10px;
}

    .mobile-contact-btn:hover[b-ag8l2yoeot] {
        background-color: #f8f9fa;
    }

    .mobile-contact-btn i[b-ag8l2yoeot] {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .mobile-contact-btn.qq-btn i[b-ag8l2yoeot] {
        color: #12b7f5;
    }

    .mobile-contact-btn.wechat-btn i[b-ag8l2yoeot] {
        color: #09bb07;
    }

.mobile-contact-panel[b-ag8l2yoeot] {
    position: fixed;
    bottom: 70px;
    left: 10px;
    right: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 999;
    display: none;
}

    .mobile-contact-panel.active[b-ag8l2yoeot] {
        display: block;
    }

.mobile-panel-header[b-ag8l2yoeot] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.mobile-panel-title[b-ag8l2yoeot] {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.mobile-panel-close[b-ag8l2yoeot] {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
}

.mobile-contact-list[b-ag8l2yoeot] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-contact-item[b-ag8l2yoeot] {
    display: flex;
    align-items: center;
}

.mobile-contact-avatar[b-ag8l2yoeot] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: 600;
    color: #333;
}

.mobile-contact-details[b-ag8l2yoeot] {
    flex: 1;
}

.mobile-contact-name[b-ag8l2yoeot] {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

.mobile-contact-value[b-ag8l2yoeot] {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .contact-float[b-ag8l2yoeot] {
        display: none;
    }

    .mobile-contact-bar[b-ag8l2yoeot] {
        display: block;
    }
}

        
/* /Pages/ProductsStd/Index.cshtml.rz.scp.css */
/*.p1705m383de6a1437f0df2 {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;*/
/*    width: 210px;*/
    /*height: 50px;
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    letter-spacing: normal;
    background-color: #0382d9;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    position: relative;
    top: 0px;
    right: 0px;
    left: 0px;
}*/

/*ul {
    list-style: none;*/ /* 核心：清除圆点 */
    /*padding-left: 0;*/ /* 可选：去掉左侧默认缩进 */
/*}*/

/* 中小屏响应式：多行显示 */
/* 以768px为分界（可根据需求调整） */
/*@media (max-width: 992px) {
    .xg_tMenu1 {
        display: flex;*/ /* 新增：确保父容器是 flex （之前可能缺失） */
        /*flex-wrap: wrap;*/ /* 开启换行 */
        /*justify-content: flex-start;
        row-gap: 10px;
        padding: 0;*/ /* 清除默认内边距 */
    /*}*/
    /* 可选：中小屏时调整选项大小 */
    /*.xg_tMenuLi2 {
        flex: 0 0 calc(33.33% - 8px);*/ /* 一行显示3个（可调整） */
        /* 或直接自适应：flex: 1 0 auto; */
    /*}
    .xg_tTitle2 {
        padding-left: 0 !important;*/ /* 覆盖大屏的 30px 内边距 */
        /*text-align: center !important;*/ /* 文字水平居中（核心） */
        /*justify-content: center;
    }
}

.xg_tMenu1 a {
    text-decoration: none;
    color: #fff;
    display: block;
    height: 100%;
    width: 100%
}*/
/* /Pages/Shared/_Layout.cshtml.rz.scp.css */
.navbar[b-jd6c4ta9p6] {
    background-color: #444747 !important; /* 背景颜色 */
    color: white; /* 文字颜色 */
}

.navbar .navmenu[b-jd6c4ta9p6] {
    max-width: 1160px; /* 最大宽度 */
    margin: 0 auto; /* 水平居中 */
}

.navbar .navbar-brand[b-jd6c4ta9p6],
.navbar .nav-link[b-jd6c4ta9p6] {
    color: white; /* 设置导航栏链接文字颜色为白色 */
}

.navbar-toggler[b-jd6c4ta9p6] {
    border-color: white; /* 切换按钮边框为白色 */
}

.footer[b-jd6c4ta9p6] {
    background-color: #444747 !important; /* 背景颜色 */
    color: white; /* 文字颜色 */
}
    .footer a[b-jd6c4ta9p6] {
        color: white !important; /* 确保链接文字白色（覆盖默认蓝色） */
        text-decoration: underline; /* 保留原有的下划线 */
    }

        .footer a:hover[b-jd6c4ta9p6] {
            text-decoration: none; /* hover 时取消下划线（可选优化） */
            opacity: 0.9; /* hover 时轻微透明，提升交互感 */
        }

/* 桌面端样式 */
.contact-float[b-jd6c4ta9p6] {
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 60px;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: white;
    opacity: 0.6;
}

    .contact-float:hover[b-jd6c4ta9p6] {
        width: 180px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        opacity: 1;
    }

.contact-body[b-jd6c4ta9p6] {
    background-color: white;
    padding: 10px;
    border-radius: 10px 0 0 10px;
    position: relative;
    z-index: 2;
}

.contact-item[b-jd6c4ta9p6] {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
}

    .contact-item:last-child[b-jd6c4ta9p6] {
        margin-bottom: 0;
        border-bottom: none;
    }

.contact-icon[b-jd6c4ta9p6] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

    .contact-icon img[b-jd6c4ta9p6] {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

.qq-icon[b-jd6c4ta9p6] {
    background-color: #12b7f5;
}

.wechat-icon[b-jd6c4ta9p6] {
    background-color: #09bb07;
}

.contact-info[b-jd6c4ta9p6] {
    flex: 1;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
}

.contact-float:hover .contact-info[b-jd6c4ta9p6] {
    opacity: 1;
}

.contact-label[b-jd6c4ta9p6] {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

.contact-value[b-jd6c4ta9p6] {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* 移动端样式 */
.mobile-contact-bar[b-jd6c4ta9p6] {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 5px 0 0 0;
}

.mobile-contact-buttons[b-jd6c4ta9p6] {
    display: flex;
    justify-content: space-around;
}

.mobile-contact-btn[b-jd6c4ta9p6] {
    display: flex;
    justify-content: center;
    padding: 0px 12px;
    border: none;
    background: none;
    border-radius: 8px;
    transition: background-color 0.2s;
    gap: 10px;
}

    .mobile-contact-btn:hover[b-jd6c4ta9p6] {
        background-color: #f8f9fa;
    }

    .mobile-contact-btn i[b-jd6c4ta9p6] {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .mobile-contact-btn.qq-btn i[b-jd6c4ta9p6] {
        color: #12b7f5;
    }

    .mobile-contact-btn.wechat-btn i[b-jd6c4ta9p6] {
        color: #09bb07;
    }

.mobile-contact-panel[b-jd6c4ta9p6] {
    position: fixed;
    bottom: 70px;
    left: 10px;
    right: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 999;
    display: none;
}

    .mobile-contact-panel.active[b-jd6c4ta9p6] {
        display: block;
    }

.mobile-panel-header[b-jd6c4ta9p6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.mobile-panel-title[b-jd6c4ta9p6] {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.mobile-panel-close[b-jd6c4ta9p6] {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
}

.mobile-contact-list[b-jd6c4ta9p6] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-contact-item[b-jd6c4ta9p6] {
    display: flex;
    align-items: center;
}

.mobile-contact-avatar[b-jd6c4ta9p6] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: 600;
    color: #333;
}

.mobile-contact-details[b-jd6c4ta9p6] {
    flex: 1;
}

.mobile-contact-name[b-jd6c4ta9p6] {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

.mobile-contact-value[b-jd6c4ta9p6] {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .contact-float[b-jd6c4ta9p6] {
        display: none;
    }

    .mobile-contact-bar[b-jd6c4ta9p6] {
        display: block;
    }
}

        
