/* 产品详情：后端上传的图片固定宽度样式
	 - `.product-pc-content img` 主要用于包裹后台编辑的 pc_content
	 - 采用固定宽度 600px，同时加上 max-width:100% 以保证小屏设备不会溢出
*/
.product-pc-content img,
.content-items .content-item img {
	width: 600px;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* 可选：若需要对表格或其它内联元素调整样式，可在此继续扩展 */

/* 保留后台编辑器中的换行符：展示为多行而不是单行
	 - `.product-intro`：用户在后台简介输入的是纯文本（带换行），使用 pre-line 折叠多余空白但保留换行
	 - `.product-pc-content`：详情富文本可能需要保留多个空格或缩进，使用 pre-wrap
*/
.product-intro {
	/* 折叠多余空白（包括行首多余空格），保留换行 */
	white-space: pre-line;
	word-break: break-word;
	margin-left: 0;
	padding-left: 0;
}

.product-pc-content {
	/* 在富文本详情中保留空白与换行 */
	white-space: pre-wrap;
	word-break: break-word;
}

