1.找到tinkcmf/data/config/template.php 文件
'cmf_moblie_default_theme' => 'cffff_m',
2. 找到thinkcmf/vendor/thinkcmf/src/common.php
// $theme = config('template.cmf_default_theme');
if (cmf_is_mobile()) {
$theme = config('template.cmf_moblie_default_theme');
} else {
$theme = config('template.cmf_default_theme');
}