      .warning-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .warning-body {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 20px;
        }
        
        .warning-container {
            max-width: 1000px;
            width: 100%;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .warning-header {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 25px;
            text-align: center;
            position: relative;
        }
        
        .warning-title {
            font-weight: 600;
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .warning-content {
            padding: 30px;
        }
        
        /* 并行排列布局 */
        .warning-columns {
            display: flex;
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .warning-column {
            flex: 1;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .warning-column-header {
            padding: 20px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #eee;
        }
        
        .warning-column-title {
            font-size: 20px;
            font-weight: 600;
            margin-left: 12px;
        }
        
        .warning-column-content {
            padding: 20px;
        }
        
        /* 浏览器兼容性提示列 */
        .warning-compat-icon {
            color: #ff5252;
            font-size: 24px;
        }
        
        .warning-compat-title {
            color: #d32f2f;
        }
        
        /* 360浏览器提示列 */
        .warning-360-icon {
            color: #00a2ff;
            font-size: 24px;
        }
        
        .warning-360-title {
            color: #0066cc;
        }
        
        .warning-message p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .warning-browsers {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin: 20px 0;
        }
        
        .warning-browser {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s;
            width: 85px;
        }
        
        .warning-browser:hover {
            transform: translateY(-5px);
        }
        
        .warning-browser-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .warning-chrome {
            background: linear-gradient(135deg, #ffeb3b 0%, #fbc02d 100%);
            color: #fff;
        }
        
        .warning-firefox {
            background: linear-gradient(135deg, #ff9100 0%, #f4511e 100%);
            color: #fff;
        }
        
        .warning-edge {
            background: linear-gradient(135deg, #03a9f4 0%, #0277bd 100%);
            color: #fff;
        }
        
        .warning-360 {
            background: linear-gradient(135deg, #00a2ff 0%, #0066cc 100%);
            color: #fff;
        }
        
        .warning-browser-name {
            font-weight: 500;
            color: #333;
            text-align: center;
            font-size: 14px;
        }
        
        /* 360极速模式提示 */
        .warning-360-content {
            color: #444;
            line-height: 1.6;
        }
        
        .warning-360-steps {
            margin-top: 15px;
            padding-left: 20px;
        }
        
        .warning-360-steps li {
            margin-bottom: 10px;
            position: relative;
        }
        
        .warning-360-steps li:before {
         
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .warning-tabs {
            display: flex;
            border-bottom: 1px solid #ddd;
            margin: 20px 0;
        }
        
        .warning-tab {
            padding: 10px 15px;
            cursor: pointer;
            font-weight: 500;
            color: #666;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
            font-size: 14px;
        }
        
        .warning-tab-active {
            color: #2575fc;
            border-bottom: 3px solid #2575fc;
        }
        
        .warning-tab-content {
            display: none;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 0 0 8px 8px;
        }
        
        .warning-tab-content-active {
            display: block;
            animation: warning-fadeIn 0.5s;
        }
        
        .warning-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .warning-btn {
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 16px;
        }
        
        .warning-btn-primary {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
        }
        
        .warning-btn-primary:hover {
            box-shadow: 0 5px 15px rgba(38, 117, 252, 0.4);
            transform: translateY(-2px);
        }
        
        .warning-btn-secondary {
            background: #f5f5f5;
            color: #666;
        }
        
        .warning-btn-secondary:hover {
            background: #e0e0e0;
        }
        
        .warning-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.2);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .warning-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }
        
        .warning-footer {
            text-align: center;
            padding: 20px;
            color: #666;
            font-size: 14px;
        }
        
        @keyframes warning-fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .warning-columns {
                flex-direction: column;
            }
            
            .warning-browsers {
                gap: 10px;
            }
            
            .warning-browser {
                width: 75px;
            }
            
            .warning-browser-icon {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
            
            .warning-actions {
                flex-direction: column;
            }
            
            .warning-btn {
                width: 100%;
            }
            
            .warning-tabs {
                flex-direction: column;
            }
            
            .warning-tab {
                border-bottom: 1px solid #eee;
            }
        }
 /* 基础按钮样式 */
        .more-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
            border: none;
        }
         .more-btn:hover .icon-arrow {
            transform: translateX(3px);
        }
        
        /* 响应式设计 */
        @media (max-width: 480px) {
            .button-container {
                flex-direction: column;
                align-items: center;
            }
            
            .more-btn {
                width: 100%;
                max-width: 250px;
            }
        }
         /* 样式2: 边框样式 */
        .btn-border {
            color: #0f3460;
            border: 2px solid #0f3460;
            background: transparent;
        }
        
        .btn-border:hover {
            background: #0f3460;
            color: white;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }
/*pagebar可改为自定义名称*/

/*公共样式 字体，行高，字体颜色等*/
.pagebar {
    font-size: 12px;
    font-family: '微软雅黑';
    line-height:12px;
    color:#222;
}

/*去掉a链接的下划线*/
.pagebar a{
    text-decoration: none;
}

/*消掉最左侧页码区margin-left的5个像素*/
.pagebar .p_pages{
    margin-left: -5px;
}

/*按钮和页码的外观*/
.pagebar .p_fun_d, .pagebar .p_no_d,.pagebar .p_fun a, .pagebar .p_no a{
    border: 1px solid #D1D5DB;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    height: 2rem;;
    -height:auto;
    margin:0 3px;
     font-size: 0.875rem;
    line-height: 1.25rem;
    box-sizing:border-box;
    display:inline-block;
    vertical-align:middle;
        border-radius: 0.375rem;
        transition-duration: 300ms;
}

/*文字对齐样式*/
.pagebar .p_t{
    line-height:12px;
    margin:0px;
    padding:0px;
    display:inline-block;
    vertical-align:middle;
}

/*无链接的字体颜色*/
.pagebar .p_fun_d, .pagebar .p_no_d{
    color: #ccc;
}

/*链接字体颜色*/
.pagebar .p_fun a, .pagebar .p_no a{
    color: #222;
}

/*鼠标移上时有链接按钮的外观*/
.pagebar .p_no a:hover,.pagebar .p_fun a:hover, .pagebar .p_goto a:hover{
    background-color: #f5f5f5;
}


/*页码省略号...的外观*/
.pagebar .p_dot {
  margin:0 3px;
    color:#222;

}

/*当前页码的外观*/
.pagebar .p_no_d {
    border: 1px solid #0F3460;
    color: #fff;
    background-color: #0F3460;
}

/*按钮控制*/

/*控制是否显示 "首页" "尾页" */
.pagebar .p_first,.pagebar .p_first_d,.pagebar .p_last,.pagebar .p_last_d{
    display:none;
}

/*控制是否显示 "上页" "下页"*/
.pagebar .p_prev,.pagebar .p_prev_d.pagebar .p_next,.pagebar .p_next_d{
    /*display:none;*/
}

/*控制是否显示无链接的 "首页" "上页" "下页" "尾页"*/
.pagebar .p_first_d,.pagebar .p_prev_d,.pagebar .p_next_d,.pagebar .p_last_d{
    /*display:none;*/
}

/*控制是否显示页码*/
.pagebar .p_no,.pagebar .p_no_d,.pagebar .p_dot{
    /*display:none;*/
}

/*跳转到页码输入框的外观*/
.pagebar .p_goto input {

    font-family: SimSun;
    font-size:12px;

    border: 1px solid #aaa;
    height:22px;
    line-height:20px;
    box-sizing:border-box;
    vertical-align:middle;

    outline-width:thin;
    outline-color:#0F3460;
    
    margin:0px 2px;
    padding:0px 1px;

    width:22px;
    text-align:center;
}

/*跳转到页码输入框  鼠标移上及输入时的外框颜色*/
.pagebar .p_goto input:hover, .pagebar .p_goto input:focus{
    border: 1px solid #0F3460;
}

/*跳转按钮的外观*/
.pagebar .p_goto a{
    border: 1px solid #ccc;
    padding: 5px 6px;
    color: #222;

    margin:0px;

    height:24px;
    -height:auto;
    
    line-height:12px;
    display:inline-block;
    box-sizing:border-box;
    vertical-align:middle;
}
.p_goto{
      display: none;
}