/* CSS Document */


 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: #F5F7FA;
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Noto Sans', Helvetica, sans-serif;
            padding-bottom: 30px;
            color: #1E2F3A;
        }

        /* 主容器 移动优先 */
        .app-container {
            max-width: 480px;
            margin: 0 auto;
           /* background: #FFFFFF;*/
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
            min-height: 100vh;
            position: relative;
			width:100%;
        }

        /* 状态栏模拟 */
        .status-bar {
            padding: 12px 20px 6px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #2c3e4f;
            display: flex;
            justify-content: space-between;
            background: white;
            border-bottom: 1px solid #F0F2F5;
        }

        /* 头部导航 */
        .page-header {
            padding: 12px 20px 8px;
            display: flex;
            align-items: center;
            gap: 16px;
           /* background: white;
		   background-color: rgba(255, 255, 255, 0.5);*/
            border-bottom: 1px solid #F0EAE2;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        .back-btn {
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #FF7A2F;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            transition: background 0.1s;
        }
        .back-btn:active {
            background: #F0EAE2;
        }
        .page-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2C3E4E;
        }

        /* 协议内容区域 */
        .protocol-content {
            padding: 20px 20px 40px;
            /*background: white;
			background-color: rgba(255, 255, 255, 0.5);*/
            line-height: 1.6;
            font-size: 0.9rem;
            color: #2C3E4E;
        }

        /* 主标题 */
        .protocol-title {
            font-size: 1.6rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #E5651E, #FF8C42);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        /* 段落样式 */
        .protocol-content p {
            margin-bottom: 16px;
            text-align: justify;
        }

        /* 条款标题（加粗） */
        .protocol-content strong, .protocol-content b {
            color: #E5651E;
            font-weight: 700;
        }

        /* 子条款缩进 */
        .indent-1 {
            padding-left: 1.2em;
            margin-bottom: 12px;
        }

        /* 条款序号样式 */
        .article-num {
            font-weight: 800;
            color: #FF7A2F;
            margin-right: 6px;
        }

        hr {
            margin: 20px 0;
            border: none;
            border-top: 1px solid #F0EAE2;
        }

        /* 底部留白 */
        .footer-placeholder {
            height: 20px;
        }
		body, html {
		  margin: 0;
		  padding: 0;
		  height: 100%;
		}
		
		.gradient-background {
		  /* 设置背景为从上到下的渐变 */
		  background: linear-gradient(to bottom, #fcd2b9, #fff);
		  /* 确保背景覆盖整个页面 */
		  height: 100%;
		  /* 确保内容居中显示 */
		  display: flex;
		  justify-content: center;
		  align-items: center;
		  flex-direction: column;
		  text-align: center;
		}
		.transparent-background {
		 /* background-color: rgba(255, 255, 255, 0.9);*/ /* 红色，透明度为50% */
		}