.title-box {
            background-color:#F6CC00;/* 橙黄色（可直接用 orange 或 #ffb347 等调整深浅） */
            text-align:center; /* 标题文字居中 */
	        font-size: 30px;
            padding: 5px; /* 文字与框边缘的距离 */
            border: 1px solid #000; /* 黑色边框（可选，不想要可删此行） */
            border-radius: 8px; /* 圆角大小，数值越大角越圆（如 12px） */
			width: 15%;/* 框的宽度，不写则全屏宽 */
            margin: 0 left; /* 让框在页面居中 */
	        margin-bottom: 10px;
	        margin-top: 20px;
	       color: purple;
}
.full-underline{
		    width: 100%;
		    border-bottom: 3px solid #AE26E9; 
			margin-top: 10px;
        }
.text-section {
    max-width: 850px; /* 文字最大宽度（避免屏幕过宽时文字行太长，影响阅读） */
    margin: 0 auto; /* 水平居中：左右自动留白 */
    padding: 30px; /* 文字区域内边距，避免内容贴盒子边缘 */
    background-color: #fff; /* 文字区域背景色（白色突出内容） */
    border-radius: 10px; /* 文字区域圆角 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* 阴影提升层次感 */
}

/* 文字区域主标题（如“品牌故事”） */

/* 文字区域子标题（如“服务保障”） */
.text-sub-title {
    font-size: 25px; /* 子标题字号（比主标题小，比正文大） */
    color: #444; /* 子标题颜色（比主标题浅，区分层级） */
    margin: 30px 0 15px; /* 子标题上下间距：上30px（与上方正文区分）、下15px（与下方正文靠近） */
}

/* 文字区域正文段落 */
.text-paragraph {
    font-size: 20px; /* 正文字号（16px易读） */
    color: #555; /* 正文颜色（浅深色，避免刺眼） */
    line-height: 1.8; /* 正文行高（1.8倍字号，文字舒展，减少阅读疲劳） */
    letter-spacing: 0.6px; /* 正文字间距（微调，提升中文阅读舒适度） */
    margin-bottom: 22px; /* 段落间间距（区分不同段落） */
    text-indent: 2em; /* 正文首行缩进2字符（符合中文排版习惯） */
}/* CSS Document *//* CSS Document */