.custom-warning-box {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 12px 16px;
  margin: 16px 0;
  border-radius: 4px;

  strong {
    color: #f59e0b;
    font-weight: 600;
  }
}

/* 带边框标题样式 - 左侧橙色竖条 + 底部黄色下划线 */
.custom-underline-title {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    padding-left: 10px;
    padding-bottom: 8px;
    margin: 20px 0;

    /* 底部黄色下划线 - 占满整个底部 */
    &::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 3px;
        height: 2px;
        background: linear-gradient(90deg, #ffd93d 0%, #ffed4e 100%);
        border-radius: 1px;
        z-index: 1;
    }

    /* 左侧橙色竖条 */
    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        bottom: 10px;
        width: 4px;
        background: linear-gradient(180deg, #ff6b35 0%, #ff8c42 100%);
        border-radius: 2px;
        z-index: 2;
    }
}

/* 自定义下载按钮样式 */
.custom-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 25px;
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    &:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
}
