/* 网络交换中心横幅样式 */
.questionContentbg02.questionContentBox {
    color: #ffffff; /* 白色文字 */
    padding: calc(40px + 10vw) 60px; /* 上下内边距40px，左右60px */
    text-align: left; /* 左对齐 */
    position: relative;
    overflow: hidden;
}

/* 添加装饰性光点效果 */
.questionContentbg02.questionContentBox::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 标题样式 */
.questionContentbg02.questionContentBox h3 {
    margin: 0 0 20px 0; /* 上0，右0，下20px，左0外边距 */
    text-align: left; /* 明确左对齐 */
    font-size: 40px; /* 较大的字体大小 */
    font-weight: bold; /* 加粗 */
    color: #ffffff; /* 白色文字 */
}

/* h5 描述文字样式 */
.questionContentbg02.questionContentBox 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; /* 保留换行符，合并空格 */
}