// 公共css样式 // 24号字体 .font-24 { font-size: 24px; } // 16号字体 .font-16 { font-size: 16px; } // 红色字体 .font-red { color: red; } // 蓝色字体 .font-blue { color: #1989fa; } // 白色字体 .font-white { color: #fff; } // 居中flex-column布局 .pos-flex-cen-column { display: flex; justify-content: center; align-items: center; flex-direction: column; } // 居中flex无column布局 .pos-flex-cen { display: flex; justify-content: center; align-items: center; flex-direction: column; } // 下划线 .underline { text-decoration: underline; }