/* 网络交换中心横幅样式 */
.productContentbg02.productContentBox {
    color: #ffffff; /* 白色文字 */
    padding: calc(40px + 10vw) 60px; /* 上下内边距40px，左右60px */
    text-align: left; /* 左对齐 */
    position: relative;
    overflow: hidden;
}

/* 添加装饰性光点效果 */
.productContentbg02.productContentBox::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    animation: glow 6s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* h3 标题样式 */
.productContentbg02.productContentBox h3 {
    margin: 0 0 20px 0; /* 上0，右0，下20px，左0外边距 */
    text-align: left; /* 明确左对齐 */
    font-size: 40px; /* 较大的字体大小 */
    font-weight: bold; /* 加粗 */
    color: #ffffff; /* 白色文字 */
}

/* h5 描述文字样式 */
.productContentbg02.productContentBox h5 {
    margin: 0; /* 重置外边距 */
    text-align: left; /* 明确左对齐 */
    line-height: 1.6; /* 调整行高，提高可读性 */
    font-size: 20px; /* 适当的字体大小 */
    font-weight: bolder; /* 正常字重 */
    color: #e2e8f0; /* 稍浅的白色，提高可读性 */
    max-width: 100%; /* 确保文字宽度适应容器 */
    white-space: pre-line; /* 保留换行符，合并空格 */
}

/* 分类选择样式 */
.product_xuanze {
    text-align: left;
    margin: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
}

.product_xuanze a {
    width: auto;
    max-width: none;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #6e6e6e !important;
    background: transparent;
    display: inline-block;
    padding: 0 20px;
    margin-right: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.product_xuanze a:hover {
    color: #3b82f6 !important;
}

/* 选中状态样式 - 添加下划线 */
.product_xuanze a.product_background {
    color: #3b82f6 !important;
    font-weight: 500;
}

/* 确保fu_titil_p2容器正确显示 */
.xq_bt.container .detailp2 .fu_titil_p2 {
    display: block;
    text-align: center;
    margin-top: 10px;
    width: 100%;
}

/* 使产品详情页中的发布时间和浏览量在一行显示 */
.xq_bt.container .detailp2 .fu_titil_p2 p.p2 {
    display: inline-block !important;
    margin: 0 15px !important;
    float: none !important;
    clear: none !important;
}

/* 调整产品详情页标题下方的间距 */
.xq_bt.container .detailp2 {
    text-align: center;
    margin-bottom: 20px;
}

.product_xuanze a.product_background::after {
    content: '';
    position: absolute;
    bottom: -11px; /* 调整位置，使其与底部边框对齐 */
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: #3b82f6;
    border-radius: 2px;
}