注:宽高比 根据公司设计给的苹果几的尺寸,比如下面6 尺寸
// 获取宽度比例
define kScreenWidthRatio (kScreenWidth / 375)
// 获取高度比例
define kScreenHeightRatio (kScreenHeight / 667)
// 适配宽度
define kAdaptedWidth(width) (ceilf((width) * kScreenWidthRatio))
// 适配高度
define kAdaptedHeight(height) (ceilf((height) * kScreenHeightRatio))
// 适配字体