// 定义文字颜色 $text-color: #333; // 设置为您想要的颜色值 // 定义文字大小 $text-font-size: 16px; // 设置为您想要的字体大小 .customer-message p, .designer-message p { color: $text-color; // 应用定义的文字颜色 font-size: $text-font-size; // 应用定义的文字大小 }