diff --git a/app/admin/view/api/upload.js b/app/admin/view/api/upload.js
index 14e348e82..991204f0b 100644
--- a/app/admin/view/api/upload.js
+++ b/app/admin/view/api/upload.js
@@ -14,9 +14,9 @@ define(['md5'], function (SparkMD5, allowMime) {
opt.elem.data('input', $input.size() > 0 ? $input.get(0) : null);
}
- /*! 文件选择筛选 */
- $((opt.elem.data('type') || '').split(',')).map(function (i, ext) {
- if (allowMime[ext]) opt.exts.push(ext), opt.mimes.push(allowMime[ext]);
+ /*! 文件选择筛选,使用 MIME 规则过滤文件列表 */
+ $((opt.elem.data('type') || '').split(',')).map(function (i, e) {
+ if (allowMime[e]) opt.exts.push(e), opt.mimes.push(allowMime[e]);
});
/*! 初始化上传组件 */
@@ -67,29 +67,27 @@ define(['md5'], function (SparkMD5, allowMime) {
});
});
}, progress: function (number) {
-
/*! 文件上传进度处理 */
- $('[data-upload-progress]').html(number + '%');
opt.elem.triggerHandler('upload.progress', {number: number, event: arguments[2], file: arguments[3]});
-
+ if (opt.count.total > 1) {
+ $('[data-upload-progress]').html(number + '%' + ' ' + (opt.count.uploaded + 1) + '/' + opt.count.total);
+ } else {
+ $('[data-upload-progress]').html(number + '%');
+ }
}, done: function (ret, idx) {
-
/*! 检查单个文件上传返回的结果 */
if (ret.code < 1) return $.msg.tips(ret.info || '文件上传失败!');
if (typeof opt.cache[idx].xurl !== 'string') return $.msg.tips('无效的文件上传对象!');
-
/*! 单个文件上传成功结果处理 */
if (typeof callable === 'function') {
callable.call(opt.elem, opt.cache[idx].xurl, opt.cache['id']);
} else if (opt.mult < 1 && opt.elem.data('input')) {
$(opt.elem.data('input')).val(opt.cache[idx].xurl).trigger('change', opt.cache[idx]);
}
-
- (opt.hide || $.msg.close(opt.load)), opt.elem.html(opt.elem.data('html'));
- opt.elem.triggerHandler('upload.done', {file: opt.cache[idx], data: ret});
-
+ opt.elem.html(opt.elem.data('html')).triggerHandler('upload.done', {file: opt.cache[idx], data: ret});
/*! 所有文件上传完成后结果处理 */
if (++opt.count.uploaded >= opt.count.total) {
+ opt.hide || $.msg.close(opt.load);
if (opt.mult > 0 && opt.elem.data('input')) {
var urls = opt.elem.data('input').value || [];
if (typeof urls === 'string') urls = urls.split('|');
@@ -97,7 +95,7 @@ define(['md5'], function (SparkMD5, allowMime) {
$(opt.elem.data('input')).val(urls.join('|')).trigger('change', opt.cache);
}
opt.elem.triggerHandler('upload.complete', {file: opt.cache});
- (opt.cache = [], opt.files = []), opt.uploader.reload();
+ (opt.cache = [], opt.files = [], opt.count = {uploaded: 0, total: 0}), opt.uploader.reload();
}
}
});
diff --git a/app/data/service/payment/JoinpayPaymentService.php b/app/data/service/payment/JoinpayPaymentService.php
index cc69bafe7..23ff1efd8 100644
--- a/app/data/service/payment/JoinpayPaymentService.php
+++ b/app/data/service/payment/JoinpayPaymentService.php
@@ -67,7 +67,7 @@ class JoinpayPaymentService extends PaymentService
'p0_Version' => '1.0',
'p1_MerchantNo' => $this->mchid,
'p2_OrderNo' => $orderNo,
- 'p3_Amount' => $paymentAmount * 100,
+ 'p3_Amount' => $paymentAmount,
'p4_Cur' => '1',
'p5_ProductName' => $paymentTitle,
'p6_ProductDesc' => $paymentRemark,
diff --git a/public/static/admin.js b/public/static/admin.js
index 685d11993..27028c4a3 100644
--- a/public/static/admin.js
+++ b/public/static/admin.js
@@ -174,13 +174,13 @@ $(function () {
$body: $('body>.think-page-loader'),
$main: $('.think-page-body+.think-page-loader'),
show: function () {
- if (that.page.$body.is(':hidden')) that.page.$main.removeClass('layui-hide').show();
+ that.page.$body.is(':visible') || that.page.$main.removeClass('layui-hide').show();
},
hide: function () {
if (that.page.time) clearTimeout(that.page.time);
that.page.time = setTimeout(function () {
- (delete that.page.time), that.page.$main.fadeOut();
- }, 500);
+ (that.page.time = 0) || that.page.$main.fadeOut();
+ }, 200);
},
};
/*! 确认对话框 */
@@ -238,8 +238,6 @@ $(function () {
$(this.elem).val(value).trigger('change');
}
});
- }), $dom.find('[data-file]:not([data-inited])').map(function () {
- $(this).uploadFile();
}), $dom.find('[data-lazy-src]:not([data-lazy-loaded])').each(function () {
if (this.dataset.lazyLoaded !== 'true') {
this.dataset.lazyLoaded = "true";
@@ -551,9 +549,9 @@ $(function () {
};
/*! 注册对象到JqFn */
- $.fn.vali = function (callable, options) {
+ $.fn.vali = function (callable) {
return this.each(function () {
- $.vali(this, callable, options);
+ $.vali(this, callable);
});
};
@@ -581,57 +579,54 @@ $(function () {
return data;
};
- /*! 全局文件上传 */
- $.fn.uploadFile = function (callable) {
+ /*! 全局文件上传插件 */
+ $.fn.uploadFile = function (callable, initialize) {
return this.each(function () {
if ($(this).data('inited')) return false;
- var that = $(this), mult = '|one|btn|'.indexOf(that.data('file') || 'one') ? 0 : 1;
+ var that = $(this), mult = '|one|btn|'.indexOf(that.data('file') || 'one') > -1 ? 0 : 1;
that.data('inited', true).data('multiple', mult), require(['upload'], function (apply) {
- apply.call(this, that, callable);
+ apply(that, callable), (typeof initialize === 'function' && setTimeout(initialize, 100));
});
});
};
/*! 上传单张图片 */
$.fn.uploadOneImage = function () {
- return this.each(function ($in, $bt) {
- $in = $(this), $bt = $('ဆ');
- $bt.attr('data-size', $in.data('size') || 0).attr('data-file', 'one').attr('data-type', $in.data('type') || 'png,jpg,gif');
- $bt.data('input', this).find('span').on('click', function (event) {
+ return this.each(function () {
+ if ($(this).data('inited')) return true; else $(this).data('inited', true);
+ var $in = $(this), $bt = $('ဆ').data('input', this);
+ $bt.attr('data-size', $in.data('size') || 0).attr('data-type', $in.data('type') || 'png,jpg,gif').find('span').on('click', function (event) {
event.stopPropagation(), $bt.attr('style', ''), $in.val('');
- });
- $in.attr('name', $bt.attr('data-field')).after($bt).on('change', function () {
+ }), $in.on('change', function () {
if (this.value) $bt.css('backgroundImage', 'url(' + encodeURI(this.value) + ')');
- }).trigger('change');
- }), this;
+ }).after($bt).trigger('change');
+ });
};
/*! 上传多张图片 */
$.fn.uploadMultipleImage = function () {
return this.each(function () {
- var $in = $(this), $bt = $(''), imgs = this.value ? this.value.split('|') : [];
- $bt.attr('data-size', $in.data('size') || 0).attr('data-file', 'mut').attr('data-type', $in.data('type') || 'png,jpg,gif');
- $in.after($bt), $bt.uploadFile(function (src) {
+ if ($(this).data('inited')) return true; else $(this).data('inited', true);
+ var $in = $(this), $bt = $(''), imgs = this.value ? this.value.split('|') : []
+ $in.after($bt.attr('data-size', $in.data('size') || 0).attr('data-type', $in.data('type') || 'png,jpg,gif').uploadFile(function (src) {
imgs.push(src), $in.val(imgs.join('|')), showImageContainer([src]);
- });
- if (imgs.length > 0) showImageContainer(imgs);
+ })), (imgs.length > 0 && showImageContainer(imgs));
function showImageContainer(srcs) {
$(srcs).each(function (idx, src, $image) {
$image = $('
');
$image.attr('data-tips-image', encodeURI(src)).css('backgroundImage', 'url(' + encodeURI(src) + ')').on('click', 'a', function (event, index, prevs, $item) {
- event.stopPropagation(), $item = $(this).parent().parent(), index = $(this).index(), prevs = $bt.prevAll('div.uploadimage').length;
- if (index === 2 && $item.index() !== prevs) $item.next().after($item);
- else if (index === 0 && $item.index() > 1) $item.prev().before($item);
- else if (index === 1) $item.remove();
+ event.stopPropagation(), $item = $(this).parent().parent(), index = $(this).index();
+ if (index === 2 && $item.index() !== $bt.prevAll('div.uploadimage').length) $item.next().after($item);
+ else if (index === 0 && $item.index() > 1) $item.prev().before($item); else if (index === 1) $item.remove();
imgs = [], $bt.prevAll('.uploadimage').map(function () {
imgs.push($(this).attr('data-tips-image'));
});
imgs.reverse(), $in.val(imgs.join('|'));
}), $bt.before($image);
});
- };
- }), this;
+ }
+ });
};
/*! 标签输入插件 */
@@ -679,7 +674,7 @@ $(function () {
});
}
- /*! 组件 LayUI table 功能封装 */
+ /*! 组件 layui.table 封装 */
$.fn.layTable = function (params) {
return this.each(function (idx, elem) {
// 动态初始化数据表
@@ -738,6 +733,102 @@ $(function () {
});
}
+ /*! 弹出图片层 */
+ $.previewImage = function (src, area) {
+ var img = new Image(), defer = $.Deferred(), loaded = $.msg.loading();
+ img.style.background = '#FFF', img.referrerPolicy = 'no-referrer';
+ img.style.height = 'auto', img.style.width = area || '100%', img.style.display = 'none';
+ document.body.appendChild(img), img.onerror = function () {
+ $.msg.close(loaded), defer.reject();
+ }, img.onload = function () {
+ layer.open({
+ type: 1, title: false, shadeClose: true, content: $(img), success: function ($elem, idx) {
+ $.msg.close(loaded), defer.notify($elem, idx);
+ }, area: area || '480px', skin: 'layui-layer-nobg', closeBtn: 1, end: function () {
+ document.body.removeChild(img), defer.resolve()
+ }
+ });
+ };
+ return (img.src = src), defer.resolve();
+ };
+
+ /*! 以手机模式显示内容 */
+ $.previewPhonePage = function (href, title, template) {
+ template = '';
+ layer.style(layer.open({type: true, scrollbar: false, area: ['320px', '600px'], title: false, closeBtn: true, shadeClose: false, skin: 'layui-layer-nobg', content: $(template.replace('_TITLE_', title || '公众号').replace('_URL_', href)).html()}), {boxShadow: 'none'});
+ };
+
+ /*! 显示任务进度消息 */
+ $.loadQueue = function (code, doScript, element) {
+ var doAjax = true, doReload = false;
+ layui.layer.open({
+ type: 1, title: false, area: ['560px', '315px'], anim: 2, shadeClose: false, end: function () {
+ doAjax = false;
+ if (doReload && doScript) {
+ if (element && element.dataset && element.dataset.tableId) {
+ $('#' + element.dataset.tableId).trigger('reload');
+ } else {
+ $.form.reload();
+ }
+ }
+ }, content: '' +
+ '' +
+ '
' +
+ '
' +
+ '
' +
+ '
',
+ success: function ($elem) {
+ new function () {
+ var that = this;
+ this.$box = $elem.find('[data-queue-load=' + code + ']');
+ if (doAjax === false || this.$box.length < 1) return false;
+ this.$coder = this.$box.find('code'), this.$name = this.$box.find('[data-message-title]');
+ this.$percent = this.$box.find('.layui-progress div'), this.SetCache = function (code, index, value) {
+ var ckey = code + '_' + index, ctype = 'admin-queue-script';
+ return value !== undefined ? layui.data(ctype, {key: ckey, value: value}) : layui.data(ctype)[ckey] || 0;
+ }, this.SetState = function (status, message) {
+ if (message.indexOf('javascript:') === -1) if (status === 1) {
+ that.$name.html('' + message + '').addClass('text-center');
+ that.$percent.addClass('layui-bg-blue').removeClass('layui-bg-green layui-bg-red');
+ } else if (status === 2) {
+ if (message.indexOf('>>>') > -1) {
+ that.$name.html('' + message + '').addClass('text-center');
+ } else {
+ that.$name.html('正在处理:' + message).removeClass('text-center');
+ }
+ that.$percent.addClass('layui-bg-blue').removeClass('layui-bg-green layui-bg-red');
+ } else if (status === 3) {
+ doReload = true;
+ that.$name.html('' + message + '').addClass('text-center');
+ that.$percent.addClass('layui-bg-green').removeClass('layui-bg-blue layui-bg-red');
+ } else if (status === 4) {
+ that.$name.html('' + message + '').addClass('text-center');
+ that.$percent.addClass('layui-bg-red').removeClass('layui-bg-blue layui-bg-green');
+ }
+ }, (this.LoadProgress = function () {
+ if (doAjax === false || that.$box.length < 1) return false;
+ $.form.load(tapiRoot + '/api.queue/progress', {code: code}, 'post', function (ret) {
+ if (ret.code) {
+ var lines = [];
+ for (var idx in ret.data.history) {
+ var line = ret.data.history[idx], percent = '[ ' + line.progress + '% ] ';
+ if (line.message.indexOf('javascript:') === -1) lines.push(line.message.indexOf('>>>') > -1 ? line.message : percent + line.message);
+ else if (!that.SetCache(code, idx) && doScript !== false) that.SetCache(code, idx, 1), location.href = line.message;
+ }
+ if (ret.data.status > 0) {
+ that.SetState(parseInt(ret.data.status), ret.data.message);
+ that.$percent.attr('lay-percent', (parseFloat(ret.data.progress || '0.00').toFixed(2)) + '%'), layui.element.render();
+ that.$coder.html('' + lines.join('
') + '
').animate({scrollTop: that.$coder[0].scrollHeight + 'px'}, 200);
+ return parseInt(ret.data.status) === 3 || parseInt(ret.data.status) === 4 || setTimeout(that.LoadProgress, Math.floor(Math.random() * 200)), false;
+ } else return setTimeout(that.LoadProgress, Math.floor(Math.random() * 500) + 200), false;
+ }
+ }, false);
+ })();
+ };
+ }
+ });
+ };
+
/*! 注册 data-search 表单搜索行为 */
onEvent('submit', 'form.form-search', function () {
var tableId = this.dataset.tableId;
@@ -753,6 +844,15 @@ $(function () {
return $.form.load(url, this, 'post');
});
+ /*! 注册 data-file 事件行为 */
+ onEvent('click', '[data-file]', function () {
+ if ($(this).data('inited') !== true) (function (that) {
+ that.uploadFile(undefined, function () {
+ that.trigger('upload.start');
+ });
+ })($(this));
+ });
+
/*! 注册 data-load 事件行为 */
onEvent('click', '[data-load]', function () {
var emap = this.dataset, data = {};
@@ -874,6 +974,7 @@ $(function () {
$textarea.remove();
})(this.dataset.copy, $(''));
});
+
/*! 异步任务状态监听与展示 */
onEvent('click', '[data-queue]', function (e) {
(function (confirm, callable) {
@@ -886,72 +987,6 @@ $(function () {
});
});
});
- $.loadQueue = function (code, doScript, element) {
- var doAjax = true;
- layui.layer.open({
- type: 1, title: false, area: ['560px', '315px'], anim: 2, shadeClose: false, end: function () {
- doAjax = false;
- if (element && element.dataset && element.dataset.tableId) {
- $('#' + element.dataset.tableId).trigger('reload');
- } else {
- $.form.reload();
- }
- }, content: '' +
- '' +
- '
' +
- '
' +
- '
' +
- '
',
- success: function ($elem) {
- new function () {
- var that = this;
- this.$box = $elem.find('[data-queue-load=' + code + ']');
- if (doAjax === false || this.$box.length < 1) return false;
- this.$coder = this.$box.find('code'), this.$name = this.$box.find('[data-message-title]');
- this.$percent = this.$box.find('.layui-progress div'), this.SetCache = function (code, index, value) {
- var ckey = code + '_' + index, ctype = 'admin-queue-script';
- return value !== undefined ? layui.data(ctype, {key: ckey, value: value}) : layui.data(ctype)[ckey] || 0;
- }, this.SetState = function (status, message) {
- if (message.indexOf('javascript:') === -1) if (status === 1) {
- that.$name.html('' + message + '').addClass('text-center');
- that.$percent.addClass('layui-bg-blue').removeClass('layui-bg-green layui-bg-red');
- } else if (status === 2) {
- if (message.indexOf('>>>') > -1) {
- that.$name.html('' + message + '').addClass('text-center');
- } else {
- that.$name.html('正在处理:' + message).removeClass('text-center');
- }
- that.$percent.addClass('layui-bg-blue').removeClass('layui-bg-green layui-bg-red');
- } else if (status === 3) {
- that.$name.html('' + message + '').addClass('text-center');
- that.$percent.addClass('layui-bg-green').removeClass('layui-bg-blue layui-bg-red');
- } else if (status === 4) {
- that.$name.html('' + message + '').addClass('text-center');
- that.$percent.addClass('layui-bg-red').removeClass('layui-bg-blue layui-bg-green');
- }
- }, (this.LoadProgress = function () {
- if (doAjax === false || that.$box.length < 1) return false;
- $.form.load(tapiRoot + '/api.queue/progress', {code: code}, 'post', function (ret) {
- if (ret.code) {
- var lines = [];
- for (var idx in ret.data.history) {
- var line = ret.data.history[idx], percent = '[ ' + line.progress + '% ] ';
- if (line.message.indexOf('javascript:') === -1) lines.push(line.message.indexOf('>>>') > -1 ? line.message : percent + line.message);
- else if (!that.SetCache(code, idx) && doScript !== false) that.SetCache(code, idx, 1), location.href = line.message;
- }
- if (ret.data.status > 0) {
- that.SetState(parseInt(ret.data.status), ret.data.message);
- that.$percent.attr('lay-percent', (parseFloat(ret.data.progress || '0.00').toFixed(2)) + '%'), layui.element.render();
- that.$coder.html('' + lines.join('
') + '
').animate({scrollTop: that.$coder[0].scrollHeight + 'px'}, 200);
- return parseInt(ret.data.status) === 3 || parseInt(ret.data.status) === 4 || setTimeout(that.LoadProgress, Math.floor(Math.random() * 200)), false;
- } else return setTimeout(that.LoadProgress, Math.floor(Math.random() * 500) + 200), false;
- }
- }, false);
- })();
- };
- }
- });
- };
/*! 注册 data-tips-text 事件行为 */
onEvent('mouseenter', '[data-tips-text]', function () {
@@ -964,10 +999,6 @@ $(function () {
});
});
- /*! 注册 data-tips-image 事件行为 */
- onEvent('click', '[data-tips-image]', function () {
- $.previewImage(this.dataset.tipsImage || this.dataset.lazySrc || this.src, this.dataset.with);
- });
/*! 注册 data-tips-image Hover 事件 */
onEvent('mouseenter', '[data-tips-image][data-tips-hover]', function () {
var img = new Image(), that = this;
@@ -981,32 +1012,16 @@ $(function () {
}, 100);
});
});
- $.previewImage = function (src, area) {
- var img = new Image(), defer = $.Deferred(), loaded = $.msg.loading();
- img.style.background = '#FFF', img.referrerPolicy = 'no-referrer';
- img.style.height = 'auto', img.style.width = area || '480px', img.style.display = 'none';
- document.body.appendChild(img), img.onerror = function () {
- $.msg.close(loaded), defer.reject();
- }, img.onload = function () {
- layer.open({
- type: 1, title: false, shadeClose: true, content: $(img), success: function ($elem, idx) {
- $.msg.close(loaded), defer.notify($elem, idx);
- }, area: area || '480px', skin: 'layui-layer-nobg', closeBtn: 1, end: function () {
- document.body.removeChild(img), defer.resolve()
- }
- });
- };
- return (img.src = src), defer.resolve();
- };
+
+ /*! 注册 data-tips-image 事件行为 */
+ onEvent('click', '[data-tips-image]', function () {
+ $.previewImage(this.dataset.tipsImage || this.dataset.lazySrc || this.src, this.dataset.with);
+ });
/*! 注册 data-phone-view 事件行为 */
onEvent('click', '[data-phone-view]', function () {
$.previewPhonePage(this.dataset.phoneView || this.href);
});
- $.previewPhonePage = function (href, title, template) {
- template = '';
- layer.style(layer.open({type: true, scrollbar: false, area: ['320px', '600px'], title: false, closeBtn: true, shadeClose: false, skin: 'layui-layer-nobg', content: $(template.replace('_TITLE_', title || '公众号').replace('_URL_', href)).html()}), {boxShadow: 'none'});
- };
/*! 表单编辑返回操作 */
onEvent('click', '[data-history-back]', function () {
diff --git a/public/static/plugs/jquery/excel.xlsx.js b/public/static/plugs/jquery/excel.xlsx.js
index 15a296f68..55fa7bee8 100644
--- a/public/static/plugs/jquery/excel.xlsx.js
+++ b/public/static/plugs/jquery/excel.xlsx.js
@@ -1,22 +1,26 @@
define(function () {
- /*! 下载 Excel 文件 */
- function excel(data, name) {
- if (name.substr(-5).toLowerCase() !== '.xlsx') {
- name += '.xlsx';
- }
- layui.excel.exportExcel(data, name, 'xlsx')
+ /*! 定义构造函数 */
+ function Excel(data, name) {
+ if (data && name) this.export(data, name);
+ }
+
+ /*! 导入 Excel 文件 */
+ Excel.prototype.export = function (data, name) {
+ if (name.substr(-5).toLowerCase() !== '.xlsx') name += '.xlsx';
+ layui.excel.exportExcel(data, name, 'xlsx', {writeOpt: {bookSST: true}});
}
/*! 绑定导出的事件 */
- excel.bind = function (done, filename) {
+ Excel.prototype.bind = function (done, filename) {
+ var that = this;
$('body').off('click', '[data-form-export]').on('click', '[data-form-export]', function () {
var form = $(this).parents('form');
var name = this.dataset.filename || filename;
var method = this.dataset.method || form.attr('method') || 'get';
var location = this.dataset.excel || this.dataset.formExport || form.attr('action') || '';
- excel.load(location, form.serialize(), method).then(function (ret) {
- excel(done(ret), name);
+ that.load(location, form.serialize(), method).then(function (ret) {
+ that.export(done(ret), name);
}).fail(function (ret) {
$.msg.tips(ret || '文件导出失败');
});
@@ -24,7 +28,7 @@ define(function () {
};
/*! 加载导出的文档 */
- excel.load = function (url, data, method) {
+ Excel.prototype.load = function (url, data, method) {
return (function (defer, lists, loaded) {
loaded = $.msg.loading("正在加载 0.00%");
return (lists = []), LoadNextPage(1, 1), defer;
@@ -48,115 +52,83 @@ define(function () {
})($.Deferred());
};
- /*! 读取本地的表格文件 */
- excel.read = function (file, filterCallback) {
- return (function (defer, reader, loaded, Work) {
- reader.onload = function (event) {
- Work = XLSX.read(event.target.result, {type: 'binary'});
- for (var sheet in Work.Sheets) if (Work.Sheets.hasOwnProperty(sheet)) {
- var object = {}, data = Work.Sheets[sheet], k = '', as = '';
- for (k in data) if ((as = k.match(/^([A-Z]+)(\d+)$/i))) {
- object[as[2]] = object[as[2]] || {};
- object[as[2]][as[1]] = excel.read.CellToValue(data[k].v);
- }
- $.msg.close(loaded);
- return defer.resolve(filterCallback ? excel.read.filter(object, filterCallback) : object);
- }
- $.msg.close(loaded)
- };
- reader.onerror = function () {
- defer.reject('读取文件失败');
- };
- reader.onprogress = function (event) {
- defer.notify((event.loaded / event.total).toFixed(4) * 100);
- };
- if (typeof file === 'object') {
- return reader.readAsBinaryString(file), defer.promise();
- } else {
- defer.reject('只能读取 file 文件对象');
- return defer.promise();
- }
- })($.Deferred(), new FileReader());
- };
-
/*! 直接推送表格内容 */
- excel.read.push = function (url, filterCf, filterFn) {
- return (function (defer, $input, loaded) {
- $input.appendTo($('body')).click();
- $input.on('change', function (event) {
- if (!event.target.files || event.target.files.length < 1) return $.msg.tips('没有可操作文件');
- loaded = $.msg.loading('读取 0.00%');
- excel.read(event.target.files[0], filterCf).then(function (items, total, ers, oks, idx) {
- if ((total = items.length) < 1) return cleanAll(), $.msg.tips('未读取到有效数据');
- return (ers = 0, oks = 0, idx = 0), $('[data-load-name]').html('更新'), doPostItem(idx, items[idx]);
-
- /*! 执行导入的数据 */
- function doPostItem(idx, item, data) {
- if (idx >= total) {
- return cleanAll(), $.msg.success('共处理' + total + '条记录( 成功 ' + oks + ' 条, 失败 ' + ers + ' 条 )', 3, function () {
- $.form.reload();
- });
- } else {
- $('[data-load-count]').html((idx * 100 / total).toFixed(2) + '%( 成功 ' + oks + ' 条, 失败 ' + ers + ' 条 )');
- /*! 单元数据过滤 */
- data = item;
- if (filterFn && (data = filterFn(item)) === false) {
- return (ers++), doPostItem(idx + 1, items[idx + 1]);
- }
- /*! 提交单个数据 */
- doUpdate(url, data).then(function (ret) {
- (ret.code ? oks++ : ers++), doPostItem(idx + 1, items[idx + 1]);
- });
- }
+ Excel.prototype.push = function (url, sheet, cols, filter) {
+ var loaded, $input;
+ $input = $('');
+ $input.appendTo($('body')).click().on('change', function (event) {
+ if (!event.target.files || event.target.files.length < 1) return $.msg.tips('没有可操作文件');
+ loaded = $.msg.loading('读取 0.00%');
+ try {
+ // 导入Excel数据,并逐行上传处理
+ layui.excel.importExcel(event.target.files, {}, function (data) {
+ if (!data[0][sheet]) return $.msg.tips('未读取到表[' + sheet + ']的数据');
+ var _cols = {}, _data = data[0][sheet], items = [], row, col, key, item;
+ for (row in _data) if (parseInt(row) + 1 === parseInt(cols._ || '1')) {
+ for (col in _data[row]) for (key in cols) if (_data[row][col] === cols[key]) _cols[key] = col;
+ } else if (parseInt(row) + 1 > cols._ || 1) {
+ item = {};
+ for (key in _cols) item[key] = CellToValue(_data[row][_cols[key]]);
+ items.push(item);
}
- }).progress(function (progress) {
- $('[data-load-count]').html(progress + '%')
- }).fail(function () {
- cleanAll();
+ PushQueue(items, items.length, 0, 0, 1);
});
- });
- return defer;
-
- /*! 清理文件选择器 */
- function cleanAll() {
- $input.remove(), $.msg.close(loaded);
+ } catch (e) {
+ $.msg.error('读取 Excel 文件失败!')
}
+ });
- /*! 队列方式上传数据 */
- function doUpdate(url, item) {
- return (function (defer) {
- return $.form.load(url, item, 'post', function (ret) {
- return defer.resolve(ret), false;
- }, false), defer.promise();
- })($.Deferred());
- }
- })($.Deferred(), $(''));
- }
+ /*! 单项推送数据 */
+ function PushQueue(items, total, ers, oks, idx) {
+ if ((total = items.length) < 1) return cleanAll(), $.msg.tips('未读取到有效数据');
+ return (ers = 0, oks = 0, idx = 0), $('[data-load-name]').html('更新'), doPostItem(idx, items[idx]);
- /*! 解析读取的数据 */
- excel.read.filter = function (data, cols) {
- return (function (items, item, r, c, k) {
- for (r in data) if (r <= 1) {
- for (c in data[r]) for (k in cols) {
- if (data[r][c] === cols[k].name && !cols[k].bind) cols[k].bind = c;
+ /*! 执行导入的数据 */
+ function doPostItem(idx, item, data) {
+ if (idx >= total) {
+ return cleanAll(), $.msg.success('共处理' + total + '条记录( 成功 ' + oks + ' 条, 失败 ' + ers + ' 条 )', 3, function () {
+ $.form.reload();
+ });
+ } else {
+ $('[data-load-count]').html((idx * 100 / total).toFixed(2) + '%( 成功 ' + oks + ' 条, 失败 ' + ers + ' 条 )');
+ /*! 单元数据过滤 */
+ data = item;
+ if (filter && (data = filter(item)) === false) {
+ return (ers++), doPostItem(idx + 1, items[idx + 1]);
+ }
+ /*! 提交单个数据 */
+ doUpdate(url, data).then(function (ret) {
+ (ret.code ? oks++ : ers++), doPostItem(idx + 1, items[idx + 1]);
+ });
}
- } else {
- item = {};
- for (k in cols) item[k] = excel.read.CellToValue(data[r][cols[k].bind]);
- items.push(item);
}
- return items
- })([]);
- }
+ }
- /*! 表格单元内容转换 */
- excel.read.CellToValue = function (v) {
- if (typeof v !== 'undefined' && /^\d+\.\d{12}$/.test(v)) {
- return LAY_EXCEL.dateCodeFormat(v, 'YYYY-MM-DD HH:ii:ss');
- } else {
- return typeof v !== 'undefined' ? v : '';
+ /*! 清理文件选择器 */
+ function cleanAll() {
+ $input.remove();
+ if (loaded) $.msg.close(loaded);
+ }
+
+ /*! 表格单元内容转换 */
+ function CellToValue(v) {
+ if (typeof v !== 'undefined' && /^\d+\.\d{12}$/.test(v)) {
+ return LAY_EXCEL.dateCodeFormat(v, 'YYYY-MM-DD HH:ii:ss');
+ } else {
+ return typeof v !== 'undefined' ? v : '';
+ }
+ }
+
+ /*! 队列方式上传数据 */
+ function doUpdate(url, item) {
+ return (function (defer) {
+ return $.form.load(url, item, 'post', function (ret) {
+ return defer.resolve(ret), false;
+ }, false), defer.promise();
+ })($.Deferred());
}
}
- return excel;
+ /*! 返回对象实例 */
+ return new Excel;
});
\ No newline at end of file
diff --git a/public/static/theme/css/console.css b/public/static/theme/css/console.css
index 6c49d69a7..3341d6513 100644
--- a/public/static/theme/css/console.css
+++ b/public/static/theme/css/console.css
@@ -1 +1,2072 @@
-@charset "UTF-8";::selection{color:#fff!important;background-color:#ec494e!important}::-moz-selection{color:#fff!important;background-color:#ec494e!important}::-webkit-scrollbar-track{background:#ccc!important}::-webkit-scrollbar-thumb{background-color:#666!important}::-webkit-input-placeholder{color:#aaa}:-webkit-autofill,:-webkit-autofill:active,:-webkit-autofill:focus,:-webkit-autofill:hover{box-shadow:0 2px 3px 0 rgba(0,0,0,.1) inset!important;-webkit-transition:color 9999s ease-out,background-color 9999s ease-out!important;-webkit-transition-delay:9999s!important;-webkit-text-fill-color:#333!important}body{color:#333;font-size:12px}body a{color:#06C;cursor:pointer}body a:hover{color:#039}body input::-ms-clear{display:none}.notdata{padding:15px;display:block;font-size:13px;text-align:center;line-height:22px;border-radius:5px;letter-spacing:1px;background-color:#f2f2f2}.notselect{user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none}.transition{transition:all .2s linear;-o-transition:all .2s linear;-moz-transition:all .2s linear;-webkit-transition:all .2s linear}.overhide{overflow:hidden!important}.overauto{overflow:auto!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.pointer{cursor:pointer!important}.nowrap{white-space:nowrap!important}.shadow{box-shadow:0 0 6px 0 rgba(0,0,0,.16)}.shadow-mini{box-shadow:0 0 6px 0 rgba(0,0,0,.16)}.shadow-none{box-shadow:none!important}.shadow-inset{box-shadow:0 1px 20px 0 rgba(0,0,0,.16) inset}.help-block{color:#999;font-size:12px}.block{display:block!important}.inline-block{display:inline-block!important}.think-elips-1{display:-webkit-box;overflow:hidden;line-height:1.4em;text-overflow:ellipsis;-webkit-box-orient:vertical;line-clamp:1;-webkit-line-clamp:1}.think-elips-2{display:-webkit-box;overflow:hidden;line-height:1.4em;text-overflow:ellipsis;-webkit-box-orient:vertical;line-clamp:2;-webkit-line-clamp:2}.think-elips-3{display:-webkit-box;overflow:hidden;line-height:1.4em;text-overflow:ellipsis;-webkit-box-orient:vertical;line-clamp:3;-webkit-line-clamp:3}.think-elips-4{display:-webkit-box;overflow:hidden;line-height:1.4em;text-overflow:ellipsis;-webkit-box-orient:vertical;line-clamp:4;-webkit-line-clamp:4}.think-elips-5{display:-webkit-box;overflow:hidden;line-height:1.4em;text-overflow:ellipsis;-webkit-box-orient:vertical;line-clamp:5;-webkit-line-clamp:5}.think-box-shadow{padding:20px!important;background:#fff!important;box-shadow:0 0 6px 0 rgba(0,0,0,.16);border-radius:5px}.think-box-shadow>form.layui-card{box-shadow:none}.input-right-icon{top:1px;right:1px;color:#098;width:36px;height:36px;display:inline-block;position:absolute;background:#E9E9E9;text-align:center;line-height:38px}.input-right-icon:hover{color:#009080;background:#E0E0E0}[data-tips-image]{cursor:zoom-in!important}[data-lazy-src]{overflow:hidden;position:relative;background-size:cover;background-position:center center}.pace-inactive{display:none}.pace-progress{top:0;right:100%;width:100%;height:2px;z-index:2000;position:fixed;background:#22df80}.uploadimage{width:76px;height:76px;cursor:pointer;display:inline-block;position:relative;overflow:hidden;margin-right:10px;border-radius:3px;box-shadow:0 0 4px 0 rgba(0,0,0,.16);background:url(../img/upimg.png) no-repeat center center;background-size:cover}.uploadimage span.layui-icon{right:0;color:#fff;width:20px;height:20px;display:none;position:absolute;text-align:center;line-height:22px;background:rgba(0,0,0,.5)}.uploadimage:hover span.layui-icon{display:inline-block}.uploadimagemtl>div{top:0;left:0;right:0;bottom:0;display:none;position:absolute;text-align:right}.uploadimagemtl>div a{color:#EEE;width:20px;height:20px;display:inline-block;margin-left:1px;box-shadow:0 0 4px 0 rgba(0,0,0,.16);text-align:center;line-height:20px;background:rgba(0,0,0,.8)}.uploadimagemtl>div a:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.uploadimagemtl>div a:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.uploadimagemtl:hover>div{cursor:pointer;display:inline-block}.uploadimagemtl:hover>div a:hover{color:#FFF;text-decoration:none}.upload-image-lgbox .uploadimage a,.upload-image-mdbox .uploadimage a,.upload-image-smbox .uploadimage a{width:30px;height:30px;line-height:30px}.upload-image-smbox .uploadimage{width:120px;height:120px}.upload-image-mdbox .uploadimage{width:180px;height:180px}.upload-image-lgbox .uploadimage{width:240px;height:240px}.submit-button-loading{cursor:default;position:relative;transform:scale(1);text-align:center}.submit-button-loading::after{left:50%;position:absolute;margin-left:-8px;content:"\e63d";font-family:layui-icon!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;animation-name:layui-rotate;-webkit-animation-name:layui-rotate;-webkit-animation-duration:1s;animation-duration:1s;animation-timing-function:linear;-webkit-animation-timing-function:linear;animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite}.portal-block-container{font-size:14px;margin-bottom:10px;letter-spacing:1px}.portal-block-container .portal-block-icon{top:45%;right:8%;font-size:65px;position:absolute;color:rgba(255,255,255,.4)}.portal-block-container .portal-block-item{color:#fff;padding:15px 25px;position:relative;line-height:3em;border-radius:5px;box-shadow:0 2px 3px 0 rgba(0,0,0,.2)}.portal-block-container .portal-block-item>div:nth-child(2){font-size:46px;line-height:46px}label.think-checkbox,label.think-radio{cursor:pointer;display:inline-block;margin:8px 10px 8px 6px!important}.think-checkbox,.think-radio{user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;margin-top:10px;font-weight:400;line-height:16px}.think-checkbox input[type=checkbox],.think-checkbox input[type=radio],.think-radio input[type=checkbox],.think-radio input[type=radio]{width:18px;height:18px;cursor:pointer;border:1px solid #CCC;position:relative;background:#fff;margin-right:5px;vertical-align:bottom;display:inline-block!important;box-sizing:border-box!important;appearance:none;-webkit-appearance:none}.think-checkbox input[type=checkbox]:checked,.think-checkbox input[type=radio]:checked,.think-radio input[type=checkbox]:checked,.think-radio input[type=radio]:checked{border-color:#009688}.think-checkbox input[type=checkbox]:checked:after,.think-checkbox input[type=radio]:checked:after,.think-radio input[type=checkbox]:checked:after,.think-radio input[type=radio]:checked:after{display:block;position:relative;animation-duration:.3s;animation-fill-mode:both;animation-name:layui-fadein;-webkit-animation-duration:.3s;-webkit-animation-fill-mode:both;-webkit-animation-name:layui-fadein}.think-checkbox input[type=radio],.think-radio input[type=radio]{border-radius:1em}.think-checkbox input[type=radio]:checked:after,.think-radio input[type=radio]:checked:after{top:4px;left:4px;width:8px;height:8px;cursor:pointer;content:'';background:#009688;border-radius:1em}.think-checkbox input[type=checkbox],.think-radio input[type=checkbox]{border-radius:1px}.think-checkbox input[type=checkbox]:checked:after,.think-radio input[type=checkbox]:checked:after{color:#009688;cursor:pointer;padding:2px;content:"\e605";font-size:12px;font-style:normal;font-weight:700;font-family:layui-icon!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.pagination-container{margin-top:20px;line-height:30px;padding-top:5px;padding-bottom:5px}.pagination-container span{color:#666;font-size:9pt}.pagination-container select{border:1px solid #DDD}.pagination-container ul{float:right;height:30px;margin:0;padding:0;display:inline-block}.pagination-container ul li{z-index:1;height:30px;line-height:30px;display:inline-block}.pagination-container ul li a,.pagination-container ul li span{color:#333;width:30px;height:30px;border:1px solid #EEE;overflow:hidden;font-size:12px;text-align:center;line-height:30px;margin-right:3px;display:inline-block;box-sizing:border-box}.pagination-container ul li span{cursor:default;background:#DCDCDC}.pagination-container ul li a:hover{border-color:#009688}.pagination-container ul li.active{z-index:2}.pagination-container ul li.active span{color:#fff;border-color:#009688;background:#009688!important}.pagination-container ul li.disabled span{font-size:16px;font-weight:700;line-height:22px}.pagination-container ul li:first-child a,.pagination-container ul li:first-child span,.pagination-container ul li:last-child a,.pagination-container ul li:last-child span{font-size:16px;font-weight:700;line-height:28px}.hr-line-dashed{color:#fff;height:1px;margin:15px 0;background-color:#fff;border-top:1px dashed #e7eaec}.hr-line-solid{margin-top:15px;margin-bottom:15px;border-bottom:1px solid #e7eaec;background-color:rgba(0,0,0,0)}.pull-left{float:left!important}.pull-right{float:right!important}.full-width{width:100%!important}.full-height{height:100%!important}.color-red{color:#e44!important}.color-blue{color:#29f!important}.color-desc{color:#999!important}.color-text{color:#333!important}.color-green{color:#090!important}.sub-span-red span{color:#e44!important}.sub-span-blue span{color:#29f!important}.sub-span-desc span{color:#999!important}.sub-span-text span{color:#333!important}.sub-span-green span{color:#090!important}.sub-strong-s10 b{font-size:10px}.sub-strong-s12 b{font-size:12px}.sub-strong-s14 b{font-size:14px}.sub-strong-red b{color:#ec494e!important}.sub-strong-blue b{color:#2494f2!important}.sub-strong-desc b{color:#999!important}.sub-strong-text b{color:#333!important}.sub-strong-green b{color:#090!important}.think-bg-red{color:#FFF;background:linear-gradient(-125deg,#ff7d7d,#fb2c95)!important}.think-bg-gray{color:#333;background:linear-gradient(-113deg,#EEE,#EEE)!important}.think-bg-blue{color:#FFF;background:linear-gradient(-125deg,#57bdbf,#2f9de2)!important}.think-bg-orig{color:#FFF;background:linear-gradient(-141deg,#ecca1b,#f39526)!important}.think-bg-violet{color:#FFF;background:linear-gradient(-113deg,#c543d8,#925cc3)!important}.think-bg-white{color:#333;background:#fff!important}.text-top{vertical-align:top!important}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-middle{vertical-align:middle!important}.text-bottom{vertical-align:bottom!important}.font-s10{font-size:10px!important}.font-s11{font-size:11px!important}.font-s12{font-size:12px!important}.font-s13{font-size:13px!important}.font-s14{font-size:14px!important}.font-s15{font-size:15px!important}.font-s16{font-size:16px!important}.font-s18{font-size:18px!important}.font-s20{font-size:20px!important}.font-s30{font-size:30px!important}.font-s40{font-size:40px!important}.font-w1{font-weight:100!important}.font-w2{font-weight:200!important}.font-w3{font-weight:300!important}.font-w4{font-weight:400!important}.font-w5{font-weight:500!important}.font-w6{font-weight:600!important}.font-w7{font-weight:700!important}.font-w8{font-weight:800!important}.font-w9{font-weight:900!important}.border-0{border:0!important}.border-line{border:1px solid #EEE}.border-bottom-line{border-bottom:1px solid #EEE}.border-top-0{border-top:0!important}.border-left-0{border-left:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-radius{border-radius:50%!important}.border-radius-0{border-radius:0!important}.border-radius-5{border-radius:5px!important}.border-radius-6{border-radius:6px!important}.border-radius-left-0{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.border-radius-right-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.margin-0{margin:0!important}.margin-5{margin:5px!important}.margin-10{margin:10px!important}.margin-15{margin:15px!important}.margin-20{margin:20px!important}.margin-25{margin:25px!important}.margin-30{margin:30px!important}.margin-40{margin:40px!important}.margin-col-0{margin-left:0!important;margin-right:0!important}.margin-col-5{margin-left:5px!important;margin-right:5px!important}.margin-col-10{margin-left:10px!important;margin-right:10px!important}.margin-col-15{margin-left:15px!important;margin-right:15px!important}.margin-col-20{margin-left:20px!important;margin-right:20px!important}.margin-col-25{margin-left:25px!important;margin-right:25px!important}.margin-col-30{margin-left:30px!important;margin-right:30px!important}.margin-col-40{margin-left:40px!important;margin-right:40px!important}.margin-row-0{margin-top:0!important;margin-bottom:0!important}.margin-row-5{margin-top:5px!important;margin-bottom:5px!important}.margin-row-10{margin-top:10px!important;margin-bottom:10px!important}.margin-row-15{margin-top:15px!important;margin-bottom:15px!important}.margin-row-20{margin-top:20px!important;margin-bottom:20px!important}.margin-row-25{margin-top:25px!important;margin-bottom:25px!important}.margin-row-30{margin-top:30px!important;margin-bottom:30px!important}.margin-row-40{margin-top:40px!important;margin-bottom:40px!important}.margin-top-0{margin-top:0!important}.margin-top-5{margin-top:5px!important}.margin-top-10{margin-top:10px!important}.margin-top-15{margin-top:15px!important}.margin-top-20{margin-top:20px!important}.margin-top-25{margin-top:25px!important}.margin-top-30{margin-top:30px!important}.margin-top-40{margin-top:40px!important}.margin-left-0{margin-left:0!important}.margin-left-5{margin-left:5px!important}.margin-left-10{margin-left:10px!important}.margin-left-15{margin-left:15px!important}.margin-left-20{margin-left:20px!important}.margin-left-25{margin-left:25px!important}.margin-left-30{margin-left:30px!important}.margin-left-40{margin-left:40px!important}.margin-right-0{margin-right:0!important}.margin-right-5{margin-right:5px!important}.margin-right-10{margin-right:10px!important}.margin-right-15{margin-right:15px!important}.margin-right-20{margin-right:20px!important}.margin-right-25{margin-right:25px!important}.margin-right-30{margin-right:30px!important}.margin-right-40{margin-right:40px!important}.margin-bottom-0{margin-bottom:0!important}.margin-bottom-5{margin-bottom:5px!important}.margin-bottom-10{margin-bottom:10px!important}.margin-bottom-15{margin-bottom:15px!important}.margin-bottom-20{margin-bottom:20px!important}.margin-bottom-25{margin-bottom:25px!important}.margin-bottom-30{margin-bottom:30px!important}.margin-bottom-40{margin-bottom:40px!important}.padding-0{padding:0!important}.padding-5{padding:5px!important}.padding-10{padding:10px!important}.padding-15{padding:15px!important}.padding-20{padding:20px!important}.padding-25{padding:25px!important}.padding-30{padding:30px!important}.padding-40{padding:40px!important}.padding-col-0{padding-left:0!important;padding-right:0!important}.padding-col-5{padding-left:5px!important;padding-right:5px!important}.padding-col-10{padding-left:10px!important;padding-right:10px!important}.padding-col-15{padding-left:15px!important;padding-right:15px!important}.padding-col-20{padding-left:20px!important;padding-right:20px!important}.padding-col-25{padding-left:25px!important;padding-right:25px!important}.padding-col-30{padding-left:30px!important;padding-right:30px!important}.padding-col-40{padding-left:40px!important;padding-right:40px!important}.padding-row-0{padding-top:0!important;padding-bottom:0!important}.padding-row-5{padding-top:5px!important;padding-bottom:5px!important}.padding-row-10{padding-top:10px!important;padding-bottom:10px!important}.padding-row-15{padding-top:15px!important;padding-bottom:15px!important}.padding-row-20{padding-top:20px!important;padding-bottom:20px!important}.padding-row-25{padding-top:25px!important;padding-bottom:25px!important}.padding-row-30{padding-top:30px!important;padding-bottom:30px!important}.padding-row-40{padding-top:40px!important;padding-bottom:40px!important}.padding-top-0{padding-top:0!important}.padding-top-5{padding-top:5px!important}.padding-top-10{padding-top:10px!important}.padding-top-15{padding-top:15px!important}.padding-top-20{padding-top:20px!important}.padding-top-30{padding-top:30px!important}.padding-top-40{padding-top:40px!important}.padding-left-0{padding-left:0!important}.padding-left-5{padding-left:5px!important}.padding-left-10{padding-left:10px!important}.padding-left-15{padding-left:15px!important}.padding-left-20{padding-left:20px!important}.padding-left-30{padding-left:30px!important}.padding-left-40{padding-left:40px!important}.padding-right-0{padding-right:0!important}.padding-right-5{padding-right:5px!important}.padding-right-10{padding-right:10px!important}.padding-right-15{padding-right:15px!important}.padding-right-20{padding-right:20px!important}.padding-right-30{padding-right:30px!important}.padding-right-40{padding-right:40px!important}.padding-bottom-0{padding-bottom:0!important}.padding-bottom-5{padding-bottom:5px!important}.padding-bottom-10{padding-bottom:10px!important}.padding-bottom-15{padding-bottom:15px!important}.padding-bottom-20{padding-bottom:20px!important}.padding-bottom-30{padding-bottom:30px!important}.padding-bottom-40{padding-bottom:40px!important}.layui-layout>.layui-header{left:200px;right:0;color:#333!important;height:50px!important;position:absolute;box-sizing:content-box;background:#FFF!important;border-bottom:1px solid rgba(0,0,0,.16)!important}.layui-layout>.layui-header>ul.layui-nav{margin:0;padding:0;white-space:nowrap}.layui-layout>.layui-header>ul.layui-nav .layui-logo-hide{width:50px!important;padding:0!important;display:none;text-align:center}.layui-layout>.layui-header>ul.layui-nav.layui-layout-left{left:0}.layui-layout>.layui-header>ul.layui-nav.layui-layout-right .headimg{width:22px;height:22px}.layui-layout>.layui-header>ul.layui-nav .layui-nav-item>a{height:50px;padding:0 18px;overflow:hidden;line-height:50px}.layui-layout>.layui-header>ul.layui-nav .layui-nav-item>a:hover{color:#000}.layui-layout>.layui-header>ul.layui-nav .layui-nav-item>a .layui-icon{font-size:16px}.layui-layout>.layui-header .layui-nav-item{height:50px;line-height:50px}.layui-layout>.layui-header .layui-nav-item>a{color:#333!important;background:#FFF!important}.layui-layout>.layui-header .layui-nav-item>a:hover{color:#000!important;background:rgba(0,0,0,.05)!important}.layui-layout>.layui-header .layui-nav-item.layui-this>a{color:#000!important;background:rgba(0,0,0,.1)!important}.layui-layout>.layui-header .layui-nav-item .layui-nav-child{top:51px;border:0;padding:0;line-height:48px;border-radius:0}.layui-layout>.layui-header .layui-nav-item .layui-nav-child.layui-show+a.layui-elip{background:rgba(0,0,0,.05)!important}.layui-layout>.layui-header .layui-nav-item .layui-nav-child+a.layui-elip{padding-right:35px}.layui-layout>.layui-header .layui-nav-item .layui-nav-child+a.layui-elip img{width:20px;height:20px;margin-right:5px;border-radius:50%}.layui-layout>.layui-header .layui-nav-item .layui-nav-child.layui-show+a{background:#FFF}.layui-layout>.layui-header .layui-nav-item .layui-nav-child dd{margin:0}.layui-layout>.layui-header .layui-nav-item .layui-nav-child dd a{padding:0;text-align:center}.layui-layout>.layui-header .layui-nav-item .layui-nav-child dd a:hover{background:rgba(0,0,0,.05)!important}.layui-layout>.layui-header .layui-nav-item .layui-nav-child dd a .layui-icon{margin-right:5px}.layui-layout>.layui-header .layui-nav-bar,.layui-layout>.layui-header .layui-nav-item:after{display:none!important}.layui-layout>.layui-side{top:0;bottom:0;width:200px;position:fixed;overflow:hidden;background-color:#393D49!important}.layui-layout>.layui-side .layui-logo,.layui-layout>.layui-side .layui-logo-mini{color:#FFF;width:auto;height:50px;display:block;overflow:hidden;position:relative;font-size:18px;text-align:center;line-height:50px;border-bottom:1px solid rgba(0,0,0,.15)}.layui-layout>.layui-side .layui-logo sup,.layui-layout>.layui-side .layui-logo-mini sup{font-size:9px;line-height:9px;padding-left:5px}.layui-layout>.layui-side .layui-logo-mini{display:none}.layui-layout>.layui-side .layui-nav-bar{display:none!important}.layui-layout>.layui-side .layui-side-scroll{top:51px;bottom:0;width:100%!important;height:100%!important;overflow:auto;position:absolute}.layui-layout>.layui-side .layui-side-scroll .layui-nav-tree{width:200px}.layui-layout>.layui-side .layui-side-scroll:after{height:50px;display:block;content:''}.layui-layout>.layui-side .layui-side-scroll::-webkit-scrollbar{width:3px!important}.layui-layout>.layui-side .layui-side-scroll::-webkit-scrollbar-track{background:#ccc!important}.layui-layout>.layui-side .layui-side-scroll::-webkit-scrollbar-thumb{background-color:#666!important}.layui-layout>.layui-side .layui-side-scroll .layui-nav-item{border-bottom:1px solid rgba(0,0,0,.2)}.layui-layout>.layui-side .layui-side-scroll .layui-nav-item .layui-nav-child{padding:0;background-color:rgba(0,0,0,.3)!important}.layui-layout>.layui-side .layui-side-scroll .layui-nav-item dd,.layui-layout>.layui-side .layui-side-scroll .layui-nav-item dd>a{color:#FFF;background-color:none}.layui-layout>.layui-side .layui-side-scroll .layui-nav-item dd.layui-this,.layui-layout>.layui-side .layui-side-scroll .layui-nav-item dd.layui-this>a{color:#FFF;background-color:#098}.layui-layout>.layui-side .layui-side-scroll .layui-nav-item a{height:45px;display:block;line-height:45px;padding-top:0;padding-bottom:0;color:#FFF}.layui-layout>.layui-side .layui-side-scroll .layui-nav-item a:hover{color:#FFF;background:rgba(99,99,99,.2)!important}.layui-layout>.layui-side .layui-side-scroll .layui-nav-item a .nav-icon{padding-right:5px}.layui-layout>.layui-body{top:51px;left:200px;padding:0;background:#EFEFEF;box-shadow:0 1px 6px 0 rgba(0,0,0,.16) inset}.layui-layout>.layui-body>.think-page-loader{left:200px}.layui-layout>.layui-body>.think-page-body>.layui-card{box-shadow:none!important;background:0 0!important}.layui-layout>.layui-body>.think-page-body>.layui-card>.layui-card-body{top:0;width:100%;bottom:0;padding:0;z-index:2;overflow:auto;position:absolute;box-sizing:border-box}.layui-layout>.layui-body>.think-page-body>.layui-card>.layui-card-body>.layui-card-table{padding:15px;box-sizing:border-box}.layui-layout>.layui-body>.think-page-body>.layui-card>.layui-card-body>.layui-card-html{padding:15px;min-width:100%;position:absolute;box-sizing:border-box}.layui-layout>.layui-body>.think-page-body>.layui-card>.layui-card-body>div>.layui-tab.layui-tab-card{border:none;box-shadow:0 0 6px 0 rgba(0,0,0,.16)}.layui-layout>.layui-body>.think-page-body>.layui-card>.layui-card-body>div>.layui-tab.layui-tab-card>.layui-tab-content.think-box-shadow{box-shadow:none}.layui-layout>.layui-body>.think-page-body>.layui-card>.layui-card-header{top:51px;left:200px;right:0;height:45px;border:none;z-index:3;padding:0 15px;position:fixed;background:#FFF;line-height:45px;box-shadow:0 0 6px 0 rgba(0,0,0,.16)}.layui-layout>.layui-body>.think-page-body>.layui-card>.layui-card-header+.layui-card-body{top:45px}.layui-layout-left-mini .layui-header{left:50px!important}.layui-layout-left-mini>.layui-body{left:50px!important}.layui-layout-left-mini>.layui-body>.think-page-loader{left:50px!important}.layui-layout-left-mini>.layui-body>.think-page-body>.layui-card>.layui-card-header{left:50px!important}.layui-layout-left-mini>.layui-side .layui-logo{display:none}.layui-layout-left-mini>.layui-side .layui-logo-mini{display:block}.layui-layout-left-mini>.layui-side .layui-nav-more{display:none!important}.layui-layout-left-mini>.layui-side .layui-nav-item a{padding:0}.layui-layout-left-mini>.layui-side .layui-nav-item .nav-text{display:none}.layui-layout-left-mini>.layui-side .layui-nav-item .nav-icon{padding:0!important;display:inline-block!important}.layui-layout-left-mini>.layui-side .layui-nav-item .layui-nav-child{padding:0;display:block!important;background-color:rgba(0,0,0,.3)!important}.layui-layout-left-mini>.layui-side,.layui-layout-left-mini>.layui-side .layui-nav-tree,.layui-layout-left-mini>.layui-side .layui-side-scroll,.layui-layout-left-mini>.layui-side .layui-side-scroll .layui-nav-tree{width:50px;text-align:center}.layui-layout-left-mini [data-target-menu-type] i{display:inline-block;transform:rotate(180deg);-ms-transform:rotate(180deg);-webkit-transform:rotate(180deg)}.layui-layout-left-hide>.layui-header{left:0!important}.layui-layout-left-hide>.layui-header .layui-logo-hide{display:inline-block!important}.layui-layout-left-hide>.layui-side{display:none!important}.layui-layout-left-hide>.layui-body{left:0!important}.layui-layout-left-hide>.layui-body>.think-page-loader{left:0!important}.layui-layout-left-hide>.layui-body>.think-page-body>.layui-card>.layui-card-header{left:0!important}.layui-layout-left-hide [data-target-menu-type]{display:none!important}.headimg{width:35px;height:35px;display:inline-block;overflow:hidden;text-align:center;margin-right:5px;margin-bottom:5px;border-radius:50%;vertical-align:middle;background-size:cover;background-repeat:no-repeat;background-position:center center}.headimg-no{border:none;box-shadow:none;border-radius:0}.headimg-xs{width:28px;height:28px}.headimg-sm{width:38px;height:38px}.headimg-md{width:58px;height:58px}.headimg-lg{width:88px;height:88px}.headimg>img{width:110%;height:110%;max-width:110%;max-height:110%;margin:-5% 0 0 -5%}.headimg+*{vertical-align:middle}fieldset{margin:0 0 10px 0;border:1px solid #EEE;padding:10px 20px 5px 20px;background:#fff;border-radius:5px}fieldset legend{color:#666;padding:0 10px;font-size:12px;letter-spacing:1px}.layui-layer-tips.layui-layer-image{width:auto!important}.layui-layer-tips.layui-layer-image .layui-layer-content{width:auto!important;padding:4px!important}.layui-layer-tips.layui-layer-image .layui-layer-content img{z-index:2;position:relative}.layui-layer-tips.layui-layer-image .layui-layer-content i.layui-layer-TipsR{z-index:1}.layui-card,.layui-tab{border-radius:5px}.layui-tab .layui-tab-title{border-top-left-radius:5px;border-top-right-radius:5px}.layui-tab .layui-tab-title>li:first-child{padding:0 15px 0 17px;margin-left:0!important;border-top-left-radius:5px}.layui-tab .layui-tab-title>li:first-child:after{border-left:none}.layui-tab .layui-tab-content{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.layui-tab>.layui-tab-content{padding:20px;background:#fff}.layui-card>.layui-card-header{padding:0 20px}.layui-card>.layui-card-body{padding:20px}.layui-code{border-radius:5px}.layui-btn{border:1px solid #009688}.layui-btn:hover:not(.layui-btn-disabled){box-shadow:0 1px 20px 0 rgba(0,0,0,.16) inset}.layui-btn-warm{border:1px solid #FFB800}.layui-btn-danger{border:1px solid #FF5722}.layui-btn-normal{border:1px solid #1E9FFF}.layui-btn-disabled{border:1px solid #EEE}.layui-btn-primary{background:#fff}.layui-btn-group{border:1px solid #098;overflow:hidden;background:#009688;line-height:28px;border-radius:2px}.layui-btn-group+.layui-btn{margin-left:8px}.layui-btn-group .layui-btn{height:28px;line-height:28px;border-width:0!important;border-radius:0!important}.layui-btn-group .layui-btn+.layui-btn{margin-left:1px!important}.layui-btn-group .layui-btn-primary:hover{border-color:#009688}.layui-btn+.layui-btn{margin-left:8px}.layui-badge{margin-right:5px}.layui-badge-middle{width:1em;height:auto;padding:5px;line-height:16px;white-space:normal;vertical-align:middle}.layui-form-select dl{top:37px;padding:0;border-color:#DDD}/*! 搜索表单样式 */.form-search .layui-btn{height:32px;padding:0 10px;font-size:13px;line-height:32px}.form-search .layui-btn .layui-icon{font-size:15px}.form-search .layui-form-item{white-space:nowrap;margin-right:8px;border:1px solid #EEE}.form-search .layui-form-item:last-child{border:none}.form-search .layui-form-item .layui-form-label{width:auto!important;border:none;height:30px;padding:0 8px;line-height:32px;border-right:1px solid #EEE}.form-search .layui-form-item .layui-input-inline{width:150px;margin:0!important;display:inline-block!important}.form-search .layui-form-item .layui-input-inline input,.form-search .layui-form-item .layui-input-inline select{width:100%;height:30px;padding:0 8px;line-height:32px;border-width:0}.form-search .layui-form-item .layui-form-select dl{top:32px;padding:0;border-width:0;box-shadow:0 0 6px 0 rgba(0,0,0,.16);border-top-left-radius:0;border-top-right-radius:0}.label-required-prev:before{color:red;width:.5em;content:'*';margin:-2px 0 0 -.55em;display:inline-block;position:absolute;font-size:14px;text-align:left;font-weight:700;line-height:1.6em}.label-required-next:after,.label-required:after{top:6px;right:5px;color:red;content:'*';position:absolute;margin-left:4px;font-weight:700;line-height:1.8em}.label-required-null:before{content:none!important}.layui-input,.layui-select{line-height:38px;border-color:#EEE}.layui-input:active,.layui-input:focus,.layui-input:hover,.layui-select:active,.layui-select:focus,.layui-select:hover{border-color:#DDD}.layui-disabled,.layui-disabled:hover{color:#333!important;background:#EEE!important}.layui-form-checkbox.layui-form-checked i{border-color:#5FB878}.layui-table td,.layui-table th{font-size:12px}.layui-table td.list-table-check-td+td,.layui-table th.list-table-check-td+th{padding-left:5px}.layui-table .layui-btn.layui-btn-sm,.layui-table input.layui-input{height:28px;line-height:28px;box-sizing:border-box}.layui-table .layui-btn.layui-btn-sm{margin-top:-1px}.layui-table[lay-size=lg] .layui-btn.layui-btn-sm,.layui-table[lay-size=lg] input.layui-input{height:38px;box-sizing:border-box;line-height:38px}.layui-table .list-table-sort-td{width:10px!important;text-align:center!important;padding-left:5px!important;padding-right:5px!important}.layui-table .list-table-sort-td button{width:56px;background:#009688}.layui-table .list-table-sort-td input{width:50px;color:#666;padding:2px;font-size:9pt;border:1px solid #EEE;text-align:center;line-height:18px}.layui-table .list-table-check-td{width:10px!important;text-align:center!important;padding-left:15px!important;padding-right:15px!important}.layui-table .list-table-check-td input{margin:0!important;vertical-align:middle}.tableSelect .layui-table-view{margin:10px 0}.layui-table-view{margin:0}.layui-table-view .layui-table-page .layui-laypage .layui-laypage-next,.layui-table-view .layui-table-page .layui-laypage .layui-laypage-prev{padding:0 8px;border-radius:3px}.layui-table-view .layui-table-page .layui-laypage .layui-laypage-prev{margin-left:0!important}.layui-table-view .layui-table-page .layui-laypage .layui-laypage-next{margin-right:6px!important}.layui-layer-content .layui-form.layui-card{margin:0;box-shadow:none!important}.layui-layer-content .layui-form.layui-card .layui-card-body{padding:20px 40px 0 0}.layui-layer-dialog .layui-layer-content .layui-layer-ico{top:50%!important;margin-top:-15px!important}.laydate-footer-btns span{line-height:24px!important}.layui-tags{display:flex;flex-wrap:wrap;vertical-align:middle}.layui-tags .layui-tag{color:#FFF;height:38px;margin:3px 4px 3px 0;padding:0 4px 0 10px;display:inline-block;font-size:14px;line-height:38px;border-radius:2px;white-space:nowrap;background:#1E9FFF!important;user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none}.layui-tags .layui-tag .layui-icon{font-size:14px;font-weight:700;margin-left:5px}.layui-tags .layui-tag .layui-icon:hover{cursor:pointer;color:#FF5722}.layui-tags .layui-tag-input{width:100px;resize:none;margin:3px 8px 3px 0;overflow:hidden;white-space:nowrap}.mobile-preview{width:317px;height:580px;position:relative;background:url(../img/wechat/mobile_head.png) no-repeat 0 0;box-shadow:0 0 6px 0 rgba(0,0,0,.16);border-radius:5px}.mobile-preview .mobile-header{color:#fff;width:auto;margin:0 30px;overflow:hidden;font-size:15px;padding-top:30px;text-align:center;white-space:nowrap;text-overflow:ellipsis;word-wrap:normal;user-select:none;-moz-user-select:none;-webkit-user-select:none;pointer-events:none;-webkit-pointer-events:none}.mobile-preview .mobile-body{top:60px;left:0;right:0;bottom:0;border:1px solid #ccc;position:absolute;background:#f5f5f5;border-radius:0 0 5px 5px}.mobile-preview .mobile-body iframe{width:100%;height:100%}.mobile-preview .mobile-footer{left:0;right:0;bottom:0;position:absolute;border:1px solid #ccc;padding-left:43px;background:url(../img/wechat/mobile_foot.png) no-repeat 0 0;list-style-type:none;border-radius:0 0 5px 5px}.mobile-preview .mobile-footer li{float:left;width:33.33%;position:relative;text-align:center;line-height:50px}.mobile-preview .mobile-footer li a{width:auto;color:#616161;border:1px solid hsla(0,0%,100%,0);display:block;overflow:hidden;word-wrap:normal;margin-top:-1px;border-left:1px solid #e7e7eb;white-space:nowrap;text-overflow:ellipsis;margin-bottom:-1px;text-decoration:none}.mobile-preview .mobile-footer li a:hover{background:rgba(0,0,0,.02)}.mobile-preview .mobile-footer li a.active{border:1px solid #44b549!important;box-shadow:0 0 1px #44b549}.mobile-preview .mobile-footer li a span:before{width:1px;height:1px;content:'';display:inline-block}.mobile-preview .mobile-footer li>.close{top:1px;right:1px;width:18px;height:18px;display:none;cursor:pointer;position:absolute;text-align:center;line-height:18px}.mobile-preview .mobile-footer li:hover>.close{display:inline-block}.mobile-preview .mobile-footer li:hover>.close:hover{color:#fff!important;background:#999!important}.mobile-preview .mobile-footer .icon-add,.mobile-preview .mobile-footer .icon-sub{display:inline-block;vertical-align:middle}.mobile-preview .mobile-footer .icon-add::before,.mobile-preview .mobile-footer .icon-sub::before{content:none}.mobile-preview .mobile-footer .icon-add{width:14px;height:14px;border-bottom:none!important;background:url(../img/wechat/index.png) 0 0 no-repeat}.mobile-preview .mobile-footer .icon-sub{width:7px;height:7px;margin-right:2px;background:url(../img/wechat/index.png) 0 -3pc no-repeat}.mobile-preview .mobile-footer .sub-menu{width:100%;bottom:60px;margin:-1px;display:block;position:absolute;border:1px solid #d0d0d0;background-color:#fafafa}.mobile-preview .mobile-footer .sub-menu ul li{float:none;width:100%;padding:0;z-index:11;display:block}.mobile-preview .mobile-footer .sub-menu ul li a{padding:0 5px;border:1px solid hsla(0,0%,100%,0)}.mobile-preview .mobile-footer .sub-menu ul li a.bottom-border{margin:-1px -1px 0;border-bottom:1px solid #e7e7eb}.mobile-preview .mobile-footer .sub-menu ul li:last-child a.bottom-border{border-bottom-color:#fff}.mobile-preview .mobile-footer .arrow{left:50%;position:absolute;margin-left:-6px}.mobile-preview .mobile-footer .arrow_in,.mobile-preview .mobile-footer .arrow_out{width:0;height:0;z-index:10;border:6px dashed transparent;display:inline-block;border-top-style:solid;border-bottom-width:0}.mobile-preview .mobile-footer .arrow_in{bottom:-5px;z-index:3;border-top-color:#fafafa}.mobile-preview .mobile-footer .arrow_out{bottom:-6px;z-index:2;border-top-color:#d0d0d0}.layui-nav .layui-nav-item .layui-nav-more{top:0;right:15px;width:auto;height:auto;border:none;padding:0!important;font-size:14px!important;font-style:normal;font-family:layui-icon!important;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.layui-nav .layui-nav-item .layui-nav-more::before{content:"\e619"}.layui-nav .layui-nav-item .layui-nav-mored,.layui-nav .layui-nav-itemed .layui-nav-more{border:none;transform:rotate(180deg);-o-transform:rotate(180deg);-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg)}/*! 重置 Iframe 页面样式 */.iframe-pagination{padding:20px}.iframe-pagination:after{content:'';height:30px;display:block}.iframe-pagination .pagination-container{left:0;right:0;bottom:0;padding:5px 20px;position:fixed;background:#fff;border-top:1px solid #ddd}/*! 首页加载动画 */.think-page-loader{top:0;left:0;right:0;bottom:0;z-index:9999999;position:fixed;text-align:center;background-color:#EFEFEF}.think-page-loader .loader{top:50%;width:50px;height:50px;margin:-35px 0 0 -35px;z-index:999999;display:inline-block;position:fixed;background-color:#EFEFEF}.think-page-loader .loader:before{top:59px;left:0;width:50px;height:7px;opacity:.1;content:"";position:absolute;border-radius:50%;background-color:#000;animation:shadow .5s linear infinite}.think-page-loader .loader:after{top:0;left:0;width:50px;height:50px;content:"";position:absolute;border-radius:3px;background-color:#5FB878;animation:loading .5s linear infinite}@-webkit-keyframes loading{17%{border-bottom-right-radius:3px}25%{transform:translateY(9px) rotate(22.5deg)}50%{transform:translateY(18px) scale(1,.9) rotate(45deg);border-bottom-right-radius:40px}75%{transform:translateY(9px) rotate(67.5deg)}100%{transform:translateY(0) rotate(90deg)}}@keyframes loading{17%{border-bottom-right-radius:3px}25%{transform:translateY(9px) rotate(22.5deg)}50%{border-bottom-right-radius:40px;transform:translateY(18px) scale(1,.9) rotate(45deg)}75%{transform:translateY(9px) rotate(67.5deg)}100%{transform:translateY(0) rotate(90deg)}}@-webkit-keyframes shadow{0%,100%{transform:scale(1,1)}50%{transform:scale(1.2,1)}}@keyframes shadow{0%,100%{transform:scale(1,1)}50%{transform:scale(1.2,1)}}/*# sourceMappingURL=console.css.map */
\ No newline at end of file
+@charset "UTF-8";
+::selection {
+ color: #fff !important;
+ background-color: #ec494e !important;
+}
+::-moz-selection {
+ color: #fff !important;
+ background-color: #ec494e !important;
+}
+::-webkit-scrollbar-track {
+ background: #ccc !important;
+}
+::-webkit-scrollbar-thumb {
+ background-color: #666 !important;
+}
+::-webkit-input-placeholder {
+ color: #aaa;
+}
+:-webkit-autofill,
+:-webkit-autofill:hover,
+:-webkit-autofill:focus,
+:-webkit-autofill:active {
+ box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1) inset !important;
+ -webkit-transition: color 9999s ease-out, background-color 9999s ease-out !important;
+ -webkit-transition-delay: 9999s !important;
+ -webkit-text-fill-color: #333 !important;
+}
+body {
+ color: #333;
+ font-size: 12px;
+}
+body a {
+ color: #06C;
+ cursor: pointer;
+}
+body a:hover {
+ color: #039;
+}
+body input::-ms-clear {
+ display: none;
+}
+.notdata {
+ padding: 15px;
+ display: block;
+ font-size: 13px;
+ text-align: center;
+ line-height: 22px;
+ border-radius: 5px;
+ letter-spacing: 1px;
+ background-color: #f2f2f2;
+}
+.notselect {
+ user-select: none;
+ -ms-user-select: none;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+}
+.transition {
+ transition: all 0.2s linear;
+ -o-transition: all 0.2s linear;
+ -moz-transition: all 0.2s linear;
+ -webkit-transition: all 0.2s linear;
+}
+.overhide {
+ overflow: hidden !important;
+}
+.overauto {
+ overflow: auto !important;
+}
+.fixed {
+ position: fixed !important;
+}
+.absolute {
+ position: absolute !important;
+}
+.relative {
+ position: relative !important;
+}
+.pointer {
+ cursor: pointer !important;
+}
+.nowrap {
+ white-space: nowrap !important;
+}
+.shadow {
+ box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
+}
+.shadow-mini {
+ box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
+}
+.shadow-none {
+ box-shadow: none !important;
+}
+.shadow-inset {
+ box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.16) inset;
+}
+.help-block {
+ color: #999;
+ font-size: 12px;
+}
+.block {
+ display: block !important;
+}
+.inline-block {
+ display: inline-block !important;
+}
+.think-elips-1 {
+ display: -webkit-box;
+ overflow: hidden;
+ line-height: 1.4em;
+ text-overflow: ellipsis;
+ -webkit-box-orient: vertical;
+ line-clamp: 1;
+ -webkit-line-clamp: 1;
+}
+.think-elips-2 {
+ display: -webkit-box;
+ overflow: hidden;
+ line-height: 1.4em;
+ text-overflow: ellipsis;
+ -webkit-box-orient: vertical;
+ line-clamp: 2;
+ -webkit-line-clamp: 2;
+}
+.think-elips-3 {
+ display: -webkit-box;
+ overflow: hidden;
+ line-height: 1.4em;
+ text-overflow: ellipsis;
+ -webkit-box-orient: vertical;
+ line-clamp: 3;
+ -webkit-line-clamp: 3;
+}
+.think-elips-4 {
+ display: -webkit-box;
+ overflow: hidden;
+ line-height: 1.4em;
+ text-overflow: ellipsis;
+ -webkit-box-orient: vertical;
+ line-clamp: 4;
+ -webkit-line-clamp: 4;
+}
+.think-elips-5 {
+ display: -webkit-box;
+ overflow: hidden;
+ line-height: 1.4em;
+ text-overflow: ellipsis;
+ -webkit-box-orient: vertical;
+ line-clamp: 5;
+ -webkit-line-clamp: 5;
+}
+.think-box-shadow {
+ padding: 20px !important;
+ background: #fff !important;
+ box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
+ border-radius: 5px;
+}
+.think-box-shadow > form.layui-card {
+ box-shadow: none;
+}
+.input-right-icon {
+ top: 1px;
+ right: 1px;
+ color: #098;
+ width: 36px;
+ height: 36px;
+ display: inline-block;
+ position: absolute;
+ background: #E9E9E9;
+ text-align: center;
+ line-height: 38px;
+}
+.input-right-icon:hover {
+ color: #009080;
+ background: #E0E0E0;
+}
+[data-tips-image] {
+ cursor: zoom-in !important;
+}
+[data-lazy-src] {
+ overflow: hidden;
+ position: relative;
+ background-size: cover;
+ background-position: center center;
+}
+/** 加载进度 */
+.pace-inactive {
+ display: none;
+}
+.pace-progress {
+ top: 0;
+ right: 100%;
+ width: 100%;
+ height: 2px;
+ z-index: 2000;
+ position: fixed;
+ background: #22df80;
+}
+.uploadimage {
+ width: 76px;
+ height: 76px;
+ cursor: pointer;
+ display: inline-block;
+ position: relative;
+ overflow: hidden;
+ margin-right: 10px;
+ border-radius: 3px;
+ box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.16);
+ background: url('../img/upimg.png') no-repeat center center;
+ background-size: cover;
+}
+.uploadimage span.layui-icon {
+ right: 0;
+ color: #fff;
+ width: 20px;
+ height: 20px;
+ display: none;
+ position: absolute;
+ text-align: center;
+ line-height: 22px;
+ background: rgba(0, 0, 0, 0.5);
+}
+.uploadimage:hover span.layui-icon {
+ display: inline-block;
+}
+.uploadimagemtl > div {
+ right: 0;
+ display: none;
+ position: absolute;
+ text-align: right;
+}
+.uploadimagemtl > div a {
+ color: #EEE;
+ width: 20px;
+ height: 20px;
+ display: inline-block;
+ margin-left: 1px;
+ box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.16);
+ text-align: center;
+ line-height: 20px;
+ background: rgba(0, 0, 0, 0.8);
+}
+.uploadimagemtl > div a:first-child {
+ border-top-left-radius: 3px;
+ border-bottom-left-radius: 3px;
+}
+.uploadimagemtl > div a:last-child {
+ border-top-right-radius: 3px;
+ border-bottom-right-radius: 3px;
+}
+.uploadimagemtl:hover > div {
+ cursor: pointer;
+ display: inline-block;
+}
+.uploadimagemtl:hover > div a:hover {
+ color: #FFF;
+ text-decoration: none;
+}
+.upload-image-smbox .uploadimage a,
+.upload-image-mdbox .uploadimage a,
+.upload-image-lgbox .uploadimage a {
+ width: 30px;
+ height: 30px;
+ line-height: 30px;
+}
+.upload-image-smbox .uploadimage {
+ width: 120px;
+ height: 120px;
+}
+.upload-image-mdbox .uploadimage {
+ width: 180px;
+ height: 180px;
+}
+.upload-image-lgbox .uploadimage {
+ width: 240px;
+ height: 240px;
+}
+.submit-button-loading {
+ cursor: default;
+ position: relative;
+ transform: scale(1);
+ text-align: center;
+}
+.submit-button-loading::after {
+ left: 50%;
+ position: absolute;
+ margin-left: -8px;
+ content: "\e63d";
+ font-family: layui-icon !important;
+ font-size: 16px;
+ font-style: normal;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ animation-name: layui-rotate;
+ -webkit-animation-name: layui-rotate;
+ -webkit-animation-duration: 1s;
+ animation-duration: 1s;
+ animation-timing-function: linear;
+ -webkit-animation-timing-function: linear;
+ animation-iteration-count: infinite;
+ -webkit-animation-iteration-count: infinite;
+}
+.portal-block-container {
+ font-size: 14px;
+ margin-bottom: 10px;
+ letter-spacing: 1px;
+}
+.portal-block-container .portal-block-icon {
+ top: 45%;
+ right: 8%;
+ font-size: 65px;
+ position: absolute;
+ color: rgba(255, 255, 255, 0.4);
+}
+.portal-block-container .portal-block-item {
+ color: #fff;
+ padding: 15px 25px;
+ position: relative;
+ line-height: 3em;
+ border-radius: 5px;
+ box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
+}
+.portal-block-container .portal-block-item > div:nth-child(2) {
+ font-size: 46px;
+ line-height: 46px;
+}
+label.think-radio,
+label.think-checkbox {
+ cursor: pointer;
+ display: inline-block;
+ margin: 8px 10px 8px 6px !important;
+}
+.think-radio,
+.think-checkbox {
+ user-select: none;
+ -ms-user-select: none;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ margin-top: 10px;
+ font-weight: 400;
+ line-height: 16px;
+}
+.think-radio input[type=radio],
+.think-checkbox input[type=radio],
+.think-radio input[type=checkbox],
+.think-checkbox input[type=checkbox] {
+ width: 18px;
+ height: 18px;
+ cursor: pointer;
+ border: 1px solid #CCC;
+ position: relative;
+ background: #fff;
+ margin-right: 5px;
+ vertical-align: bottom;
+ display: inline-block !important;
+ box-sizing: border-box !important;
+ appearance: none;
+ -webkit-appearance: none;
+}
+.think-radio input[type=radio]:checked,
+.think-checkbox input[type=radio]:checked,
+.think-radio input[type=checkbox]:checked,
+.think-checkbox input[type=checkbox]:checked {
+ border-color: #009688;
+}
+.think-radio input[type=radio]:checked:after,
+.think-checkbox input[type=radio]:checked:after,
+.think-radio input[type=checkbox]:checked:after,
+.think-checkbox input[type=checkbox]:checked:after {
+ display: block;
+ position: relative;
+ animation-duration: 0.3s;
+ animation-fill-mode: both;
+ animation-name: layui-fadein;
+ -webkit-animation-duration: 0.3s;
+ -webkit-animation-fill-mode: both;
+ -webkit-animation-name: layui-fadein;
+}
+.think-radio input[type=radio],
+.think-checkbox input[type=radio] {
+ border-radius: 1em;
+}
+.think-radio input[type=radio]:checked:after,
+.think-checkbox input[type=radio]:checked:after {
+ top: 4px;
+ left: 4px;
+ width: 8px;
+ height: 8px;
+ cursor: pointer;
+ content: '';
+ background: #009688;
+ border-radius: 1em;
+}
+.think-radio input[type=checkbox],
+.think-checkbox input[type=checkbox] {
+ border-radius: 1px;
+}
+.think-radio input[type=checkbox]:checked:after,
+.think-checkbox input[type=checkbox]:checked:after {
+ color: #009688;
+ cursor: pointer;
+ padding: 2px;
+ content: "\e605";
+ font-size: 12px;
+ font-style: normal;
+ font-weight: 700;
+ font-family: layui-icon !important;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+/* 通用分页 */
+.pagination-container {
+ margin-top: 20px;
+ line-height: 30px;
+ padding-top: 5px;
+ padding-bottom: 5px;
+}
+.pagination-container span {
+ color: #666;
+ font-size: 9pt;
+}
+.pagination-container select {
+ border: 1px solid #DDD;
+}
+.pagination-container ul {
+ float: right;
+ height: 30px;
+ margin: 0;
+ padding: 0;
+ display: inline-block;
+}
+.pagination-container ul li {
+ z-index: 1;
+ height: 30px;
+ line-height: 30px;
+ display: inline-block;
+}
+.pagination-container ul li a,
+.pagination-container ul li span {
+ color: #333;
+ width: 30px;
+ height: 30px;
+ border: 1px solid #EEE;
+ overflow: hidden;
+ font-size: 12px;
+ text-align: center;
+ line-height: 30px;
+ margin-right: 3px;
+ display: inline-block;
+ box-sizing: border-box;
+}
+.pagination-container ul li span {
+ cursor: default;
+ background: #DCDCDC;
+}
+.pagination-container ul li a:hover {
+ border-color: #009688;
+}
+.pagination-container ul li.active {
+ z-index: 2;
+}
+.pagination-container ul li.active span {
+ color: #fff;
+ border-color: #009688;
+ background: #009688 !important;
+}
+.pagination-container ul li.disabled span {
+ font-size: 16px;
+ font-weight: 700;
+ line-height: 22px;
+}
+.pagination-container ul li:last-child a,
+.pagination-container ul li:first-child a,
+.pagination-container ul li:last-child span,
+.pagination-container ul li:first-child span {
+ font-size: 16px;
+ font-weight: 700;
+ line-height: 28px;
+}
+/* 分隔线条 */
+.hr-line-dashed {
+ color: #fff;
+ height: 1px;
+ margin: 15px 0;
+ background-color: #fff;
+ border-top: 1px dashed #e7eaec;
+}
+.hr-line-solid {
+ margin-top: 15px;
+ margin-bottom: 15px;
+ border-bottom: 1px solid #e7eaec;
+ background-color: rgba(0, 0, 0, 0);
+}
+.pull-left {
+ float: left !important;
+}
+.pull-right {
+ float: right !important;
+}
+.full-width {
+ width: 100% !important;
+}
+.full-height {
+ height: 100% !important;
+}
+.color-red {
+ color: #e44 !important;
+}
+.color-blue {
+ color: #29f !important;
+}
+.color-desc {
+ color: #999 !important;
+}
+.color-text {
+ color: #333 !important;
+}
+.color-green {
+ color: #090 !important;
+}
+.sub-span-red span {
+ color: #e44 !important;
+}
+.sub-span-blue span {
+ color: #29f !important;
+}
+.sub-span-desc span {
+ color: #999 !important;
+}
+.sub-span-text span {
+ color: #333 !important;
+}
+.sub-span-green span {
+ color: #090 !important;
+}
+.sub-strong-s10 b {
+ font-size: 10px;
+}
+.sub-strong-s12 b {
+ font-size: 12px;
+}
+.sub-strong-s14 b {
+ font-size: 14px;
+}
+.sub-strong-red b {
+ color: #ec494e !important;
+}
+.sub-strong-blue b {
+ color: #2494f2 !important;
+}
+.sub-strong-desc b {
+ color: #999 !important;
+}
+.sub-strong-text b {
+ color: #333 !important;
+}
+.sub-strong-green b {
+ color: #090 !important;
+}
+.think-bg-red {
+ color: #FFF;
+ background: linear-gradient(-125deg, #ff7d7d, #fb2c95) !important;
+}
+.think-bg-gray {
+ color: #333;
+ background: linear-gradient(-113deg, #EEEEEE, #EEEEEE) !important;
+}
+.think-bg-blue {
+ color: #FFF;
+ background: linear-gradient(-125deg, #57bdbf, #2f9de2) !important;
+}
+.think-bg-orig {
+ color: #FFF;
+ background: linear-gradient(-141deg, #ecca1b, #f39526) !important;
+}
+.think-bg-violet {
+ color: #FFF;
+ background: linear-gradient(-113deg, #c543d8, #925cc3) !important;
+}
+.think-bg-white {
+ color: #333;
+ background: white !important;
+}
+.text-top {
+ vertical-align: top !important;
+}
+.text-left {
+ text-align: left !important;
+}
+.text-right {
+ text-align: right !important;
+}
+.text-center {
+ text-align: center !important;
+}
+.text-middle {
+ vertical-align: middle !important;
+}
+.text-bottom {
+ vertical-align: bottom !important;
+}
+.font-s10 {
+ font-size: 10px !important;
+}
+.font-s11 {
+ font-size: 11px !important;
+}
+.font-s12 {
+ font-size: 12px !important;
+}
+.font-s13 {
+ font-size: 13px !important;
+}
+.font-s14 {
+ font-size: 14px !important;
+}
+.font-s15 {
+ font-size: 15px !important;
+}
+.font-s16 {
+ font-size: 16px !important;
+}
+.font-s18 {
+ font-size: 18px !important;
+}
+.font-s20 {
+ font-size: 20px !important;
+}
+.font-s30 {
+ font-size: 30px !important;
+}
+.font-s40 {
+ font-size: 40px !important;
+}
+.font-w1 {
+ font-weight: 100 !important;
+}
+.font-w2 {
+ font-weight: 200 !important;
+}
+.font-w3 {
+ font-weight: 300 !important;
+}
+.font-w4 {
+ font-weight: 400 !important;
+}
+.font-w5 {
+ font-weight: 500 !important;
+}
+.font-w6 {
+ font-weight: 600 !important;
+}
+.font-w7 {
+ font-weight: 700 !important;
+}
+.font-w8 {
+ font-weight: 800 !important;
+}
+.font-w9 {
+ font-weight: 900 !important;
+}
+.border-0 {
+ border: 0 !important;
+}
+.border-line {
+ border: 1px solid #EEE;
+}
+.border-bottom-line {
+ border-bottom: 1px solid #EEE;
+}
+.border-top-0 {
+ border-top: 0 !important;
+}
+.border-left-0 {
+ border-left: 0 !important;
+}
+.border-right-0 {
+ border-right: 0 !important;
+}
+.border-bottom-0 {
+ border-bottom: 0 !important;
+}
+.border-radius {
+ border-radius: 50% !important;
+}
+.border-radius-0 {
+ border-radius: 0 !important;
+}
+.border-radius-5 {
+ border-radius: 5px !important;
+}
+.border-radius-6 {
+ border-radius: 6px !important;
+}
+.border-radius-left-0 {
+ border-top-left-radius: 0 !important;
+ border-bottom-left-radius: 0 !important;
+}
+.border-radius-right-0 {
+ border-top-right-radius: 0 !important;
+ border-bottom-right-radius: 0 !important;
+}
+.margin-0 {
+ margin: 0 !important;
+}
+.margin-5 {
+ margin: 5px !important;
+}
+.margin-10 {
+ margin: 10px !important;
+}
+.margin-15 {
+ margin: 15px !important;
+}
+.margin-20 {
+ margin: 20px !important;
+}
+.margin-25 {
+ margin: 25px !important;
+}
+.margin-30 {
+ margin: 30px !important;
+}
+.margin-40 {
+ margin: 40px !important;
+}
+.margin-col-0 {
+ margin-left: 0 !important;
+ margin-right: 0 !important;
+}
+.margin-col-5 {
+ margin-left: 5px !important;
+ margin-right: 5px !important;
+}
+.margin-col-10 {
+ margin-left: 10px !important;
+ margin-right: 10px !important;
+}
+.margin-col-15 {
+ margin-left: 15px !important;
+ margin-right: 15px !important;
+}
+.margin-col-20 {
+ margin-left: 20px !important;
+ margin-right: 20px !important;
+}
+.margin-col-25 {
+ margin-left: 25px !important;
+ margin-right: 25px !important;
+}
+.margin-col-30 {
+ margin-left: 30px !important;
+ margin-right: 30px !important;
+}
+.margin-col-40 {
+ margin-left: 40px !important;
+ margin-right: 40px !important;
+}
+.margin-row-0 {
+ margin-top: 0 !important;
+ margin-bottom: 0 !important;
+}
+.margin-row-5 {
+ margin-top: 5px !important;
+ margin-bottom: 5px !important;
+}
+.margin-row-10 {
+ margin-top: 10px !important;
+ margin-bottom: 10px !important;
+}
+.margin-row-15 {
+ margin-top: 15px !important;
+ margin-bottom: 15px !important;
+}
+.margin-row-20 {
+ margin-top: 20px !important;
+ margin-bottom: 20px !important;
+}
+.margin-row-25 {
+ margin-top: 25px !important;
+ margin-bottom: 25px !important;
+}
+.margin-row-30 {
+ margin-top: 30px !important;
+ margin-bottom: 30px !important;
+}
+.margin-row-40 {
+ margin-top: 40px !important;
+ margin-bottom: 40px !important;
+}
+.margin-top-0 {
+ margin-top: 0 !important;
+}
+.margin-top-5 {
+ margin-top: 5px !important;
+}
+.margin-top-10 {
+ margin-top: 10px !important;
+}
+.margin-top-15 {
+ margin-top: 15px !important;
+}
+.margin-top-20 {
+ margin-top: 20px !important;
+}
+.margin-top-25 {
+ margin-top: 25px !important;
+}
+.margin-top-30 {
+ margin-top: 30px !important;
+}
+.margin-top-40 {
+ margin-top: 40px !important;
+}
+.margin-left-0 {
+ margin-left: 0 !important;
+}
+.margin-left-5 {
+ margin-left: 5px !important;
+}
+.margin-left-10 {
+ margin-left: 10px !important;
+}
+.margin-left-15 {
+ margin-left: 15px !important;
+}
+.margin-left-20 {
+ margin-left: 20px !important;
+}
+.margin-left-25 {
+ margin-left: 25px !important;
+}
+.margin-left-30 {
+ margin-left: 30px !important;
+}
+.margin-left-40 {
+ margin-left: 40px !important;
+}
+.margin-right-0 {
+ margin-right: 0 !important;
+}
+.margin-right-5 {
+ margin-right: 5px !important;
+}
+.margin-right-10 {
+ margin-right: 10px !important;
+}
+.margin-right-15 {
+ margin-right: 15px !important;
+}
+.margin-right-20 {
+ margin-right: 20px !important;
+}
+.margin-right-25 {
+ margin-right: 25px !important;
+}
+.margin-right-30 {
+ margin-right: 30px !important;
+}
+.margin-right-40 {
+ margin-right: 40px !important;
+}
+.margin-bottom-0 {
+ margin-bottom: 0 !important;
+}
+.margin-bottom-5 {
+ margin-bottom: 5px !important;
+}
+.margin-bottom-10 {
+ margin-bottom: 10px !important;
+}
+.margin-bottom-15 {
+ margin-bottom: 15px !important;
+}
+.margin-bottom-20 {
+ margin-bottom: 20px !important;
+}
+.margin-bottom-25 {
+ margin-bottom: 25px !important;
+}
+.margin-bottom-30 {
+ margin-bottom: 30px !important;
+}
+.margin-bottom-40 {
+ margin-bottom: 40px !important;
+}
+.padding-0 {
+ padding: 0 !important;
+}
+.padding-5 {
+ padding: 5px !important;
+}
+.padding-10 {
+ padding: 10px !important;
+}
+.padding-15 {
+ padding: 15px !important;
+}
+.padding-20 {
+ padding: 20px !important;
+}
+.padding-25 {
+ padding: 25px !important;
+}
+.padding-30 {
+ padding: 30px !important;
+}
+.padding-40 {
+ padding: 40px !important;
+}
+.padding-col-0 {
+ padding-left: 0 !important;
+ padding-right: 0 !important;
+}
+.padding-col-5 {
+ padding-left: 5px !important;
+ padding-right: 5px !important;
+}
+.padding-col-10 {
+ padding-left: 10px !important;
+ padding-right: 10px !important;
+}
+.padding-col-15 {
+ padding-left: 15px !important;
+ padding-right: 15px !important;
+}
+.padding-col-20 {
+ padding-left: 20px !important;
+ padding-right: 20px !important;
+}
+.padding-col-25 {
+ padding-left: 25px !important;
+ padding-right: 25px !important;
+}
+.padding-col-30 {
+ padding-left: 30px !important;
+ padding-right: 30px !important;
+}
+.padding-col-40 {
+ padding-left: 40px !important;
+ padding-right: 40px !important;
+}
+.padding-row-0 {
+ padding-top: 0 !important;
+ padding-bottom: 0 !important;
+}
+.padding-row-5 {
+ padding-top: 5px !important;
+ padding-bottom: 5px !important;
+}
+.padding-row-10 {
+ padding-top: 10px !important;
+ padding-bottom: 10px !important;
+}
+.padding-row-15 {
+ padding-top: 15px !important;
+ padding-bottom: 15px !important;
+}
+.padding-row-20 {
+ padding-top: 20px !important;
+ padding-bottom: 20px !important;
+}
+.padding-row-25 {
+ padding-top: 25px !important;
+ padding-bottom: 25px !important;
+}
+.padding-row-30 {
+ padding-top: 30px !important;
+ padding-bottom: 30px !important;
+}
+.padding-row-40 {
+ padding-top: 40px !important;
+ padding-bottom: 40px !important;
+}
+.padding-top-0 {
+ padding-top: 0 !important;
+}
+.padding-top-5 {
+ padding-top: 5px !important;
+}
+.padding-top-10 {
+ padding-top: 10px !important;
+}
+.padding-top-15 {
+ padding-top: 15px !important;
+}
+.padding-top-20 {
+ padding-top: 20px !important;
+}
+.padding-top-30 {
+ padding-top: 30px !important;
+}
+.padding-top-40 {
+ padding-top: 40px !important;
+}
+.padding-left-0 {
+ padding-left: 0 !important;
+}
+.padding-left-5 {
+ padding-left: 5px !important;
+}
+.padding-left-10 {
+ padding-left: 10px !important;
+}
+.padding-left-15 {
+ padding-left: 15px !important;
+}
+.padding-left-20 {
+ padding-left: 20px !important;
+}
+.padding-left-30 {
+ padding-left: 30px !important;
+}
+.padding-left-40 {
+ padding-left: 40px !important;
+}
+.padding-right-0 {
+ padding-right: 0 !important;
+}
+.padding-right-5 {
+ padding-right: 5px !important;
+}
+.padding-right-10 {
+ padding-right: 10px !important;
+}
+.padding-right-15 {
+ padding-right: 15px !important;
+}
+.padding-right-20 {
+ padding-right: 20px !important;
+}
+.padding-right-30 {
+ padding-right: 30px !important;
+}
+.padding-right-40 {
+ padding-right: 40px !important;
+}
+.padding-bottom-0 {
+ padding-bottom: 0 !important;
+}
+.padding-bottom-5 {
+ padding-bottom: 5px !important;
+}
+.padding-bottom-10 {
+ padding-bottom: 10px !important;
+}
+.padding-bottom-15 {
+ padding-bottom: 15px !important;
+}
+.padding-bottom-20 {
+ padding-bottom: 20px !important;
+}
+.padding-bottom-30 {
+ padding-bottom: 30px !important;
+}
+.padding-bottom-40 {
+ padding-bottom: 40px !important;
+}
+.layui-layout > .layui-header {
+ left: 200px;
+ right: 0;
+ color: #333 !important;
+ height: 50px !important;
+ position: absolute;
+ box-sizing: content-box;
+ background: #FFF !important;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.16) !important;
+}
+.layui-layout > .layui-header > ul.layui-nav {
+ margin: 0;
+ padding: 0;
+ white-space: nowrap;
+}
+.layui-layout > .layui-header > ul.layui-nav .layui-logo-hide {
+ width: 50px !important;
+ padding: 0 !important;
+ display: none;
+ text-align: center;
+}
+.layui-layout > .layui-header > ul.layui-nav.layui-layout-left {
+ left: 0;
+}
+.layui-layout > .layui-header > ul.layui-nav.layui-layout-right .headimg {
+ width: 20px;
+ height: 20px;
+ margin-bottom: 0;
+}
+.layui-layout > .layui-header > ul.layui-nav .layui-nav-item > a {
+ height: 50px;
+ padding: 0 18px;
+ overflow: hidden;
+ line-height: 50px;
+}
+.layui-layout > .layui-header > ul.layui-nav .layui-nav-item > a:hover {
+ color: #000;
+}
+.layui-layout > .layui-header > ul.layui-nav .layui-nav-item > a .layui-icon {
+ font-size: 16px;
+}
+.layui-layout > .layui-header .layui-nav-item {
+ height: 50px;
+ line-height: 50px;
+}
+.layui-layout > .layui-header .layui-nav-item > a {
+ color: #333 !important;
+ background: #FFF !important;
+}
+.layui-layout > .layui-header .layui-nav-item > a:hover {
+ color: #000 !important;
+ background: rgba(0, 0, 0, 0.05) !important;
+}
+.layui-layout > .layui-header .layui-nav-item.layui-this > a {
+ color: #000 !important;
+ background: rgba(0, 0, 0, 0.1) !important;
+}
+.layui-layout > .layui-header .layui-nav-item .layui-nav-child {
+ top: 51px;
+ border: 0;
+ padding: 0;
+ line-height: 48px;
+ border-radius: 0;
+}
+.layui-layout > .layui-header .layui-nav-item .layui-nav-child.layui-show + a.layui-elip {
+ background: rgba(0, 0, 0, 0.05) !important;
+}
+.layui-layout > .layui-header .layui-nav-item .layui-nav-child + a.layui-elip {
+ padding-right: 35px;
+}
+.layui-layout > .layui-header .layui-nav-item .layui-nav-child + a.layui-elip img {
+ width: 20px;
+ height: 20px;
+ margin-right: 5px;
+ border-radius: 50%;
+}
+.layui-layout > .layui-header .layui-nav-item .layui-nav-child.layui-show + a {
+ background: #FFF;
+}
+.layui-layout > .layui-header .layui-nav-item .layui-nav-child dd {
+ margin: 0;
+}
+.layui-layout > .layui-header .layui-nav-item .layui-nav-child dd a {
+ padding: 0;
+ text-align: center;
+}
+.layui-layout > .layui-header .layui-nav-item .layui-nav-child dd a:hover {
+ background: rgba(0, 0, 0, 0.05) !important;
+}
+.layui-layout > .layui-header .layui-nav-item .layui-nav-child dd a .layui-icon {
+ margin-right: 5px;
+}
+.layui-layout > .layui-header .layui-nav-bar,
+.layui-layout > .layui-header .layui-nav-item:after {
+ display: none !important;
+}
+.layui-layout > .layui-side {
+ top: 0;
+ bottom: 0;
+ width: 200px;
+ position: fixed;
+ overflow: hidden;
+ background-color: #393D49 !important;
+}
+.layui-layout > .layui-side .layui-logo,
+.layui-layout > .layui-side .layui-logo-mini {
+ color: #FFF;
+ width: auto;
+ height: 50px;
+ display: block;
+ overflow: hidden;
+ position: relative;
+ font-size: 18px;
+ text-align: center;
+ line-height: 50px;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
+}
+.layui-layout > .layui-side .layui-logo sup,
+.layui-layout > .layui-side .layui-logo-mini sup {
+ font-size: 9px;
+ line-height: 9px;
+ padding-left: 5px;
+}
+.layui-layout > .layui-side .layui-logo-mini {
+ display: none;
+}
+.layui-layout > .layui-side .layui-nav-bar {
+ display: none !important;
+}
+.layui-layout > .layui-side .layui-side-scroll {
+ top: 51px;
+ bottom: 0;
+ width: 100% !important;
+ height: 100% !important;
+ overflow: auto;
+ position: absolute;
+}
+.layui-layout > .layui-side .layui-side-scroll .layui-nav-tree {
+ width: 200px;
+}
+.layui-layout > .layui-side .layui-side-scroll:after {
+ height: 50px;
+ display: block;
+ content: '';
+}
+.layui-layout > .layui-side .layui-side-scroll::-webkit-scrollbar {
+ width: 3px !important;
+}
+.layui-layout > .layui-side .layui-side-scroll::-webkit-scrollbar-track {
+ background: #ccc !important;
+}
+.layui-layout > .layui-side .layui-side-scroll::-webkit-scrollbar-thumb {
+ background-color: #666 !important;
+}
+.layui-layout > .layui-side .layui-side-scroll .layui-nav-item {
+ border-bottom: 1px solid rgba(0, 0, 0, 0.2);
+}
+.layui-layout > .layui-side .layui-side-scroll .layui-nav-item .layui-nav-child {
+ padding: 0;
+ background-color: rgba(0, 0, 0, 0.3) !important;
+}
+.layui-layout > .layui-side .layui-side-scroll .layui-nav-item dd,
+.layui-layout > .layui-side .layui-side-scroll .layui-nav-item dd > a {
+ color: #FFF;
+ background-color: none;
+}
+.layui-layout > .layui-side .layui-side-scroll .layui-nav-item dd.layui-this,
+.layui-layout > .layui-side .layui-side-scroll .layui-nav-item dd.layui-this > a {
+ color: #FFF;
+ background-color: #098;
+}
+.layui-layout > .layui-side .layui-side-scroll .layui-nav-item a {
+ height: 45px;
+ display: block;
+ line-height: 45px;
+ padding-top: 0;
+ padding-bottom: 0;
+ color: #FFF;
+}
+.layui-layout > .layui-side .layui-side-scroll .layui-nav-item a:hover {
+ color: #FFF;
+ background: rgba(99, 99, 99, 0.2) !important;
+}
+.layui-layout > .layui-side .layui-side-scroll .layui-nav-item a .nav-icon {
+ padding-right: 5px;
+}
+.layui-layout > .layui-body {
+ top: 51px;
+ left: 200px;
+ padding: 0;
+ background: #EFEFEF;
+ box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.16) inset;
+}
+.layui-layout > .layui-body > .think-page-loader {
+ left: 200px;
+}
+.layui-layout > .layui-body > .think-page-body > .layui-card {
+ box-shadow: none !important;
+ background: none !important;
+}
+.layui-layout > .layui-body > .think-page-body > .layui-card > .layui-card-body {
+ top: 0;
+ width: 100%;
+ bottom: 0;
+ padding: 0;
+ z-index: 2;
+ overflow: auto;
+ position: absolute;
+ box-sizing: border-box;
+}
+.layui-layout > .layui-body > .think-page-body > .layui-card > .layui-card-body > .layui-card-table {
+ padding: 15px;
+ box-sizing: border-box;
+}
+.layui-layout > .layui-body > .think-page-body > .layui-card > .layui-card-body > .layui-card-html {
+ padding: 15px;
+ min-width: 100%;
+ position: absolute;
+ box-sizing: border-box;
+}
+.layui-layout > .layui-body > .think-page-body > .layui-card > .layui-card-body > div > .layui-tab.layui-tab-card {
+ border: none;
+ box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
+}
+.layui-layout > .layui-body > .think-page-body > .layui-card > .layui-card-body > div > .layui-tab.layui-tab-card > .layui-tab-content.think-box-shadow {
+ box-shadow: none;
+}
+.layui-layout > .layui-body > .think-page-body > .layui-card > .layui-card-header {
+ top: 51px;
+ left: 200px;
+ right: 0;
+ height: 45px;
+ border: none;
+ z-index: 3;
+ padding: 0 15px;
+ position: fixed;
+ background: #FFF;
+ line-height: 45px;
+ box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
+}
+.layui-layout > .layui-body > .think-page-body > .layui-card > .layui-card-header + .layui-card-body {
+ top: 45px;
+}
+.layui-layout-left-mini .layui-header {
+ left: 50px !important;
+}
+.layui-layout-left-mini > .layui-body {
+ left: 50px !important;
+}
+.layui-layout-left-mini > .layui-body > .think-page-loader {
+ left: 50px !important;
+}
+.layui-layout-left-mini > .layui-body > .think-page-body > .layui-card > .layui-card-header {
+ left: 50px !important;
+}
+.layui-layout-left-mini > .layui-side .layui-logo {
+ display: none;
+}
+.layui-layout-left-mini > .layui-side .layui-logo-mini {
+ display: block;
+}
+.layui-layout-left-mini > .layui-side .layui-nav-more {
+ display: none !important;
+}
+.layui-layout-left-mini > .layui-side .layui-nav-item a {
+ padding: 0;
+}
+.layui-layout-left-mini > .layui-side .layui-nav-item .nav-text {
+ display: none;
+}
+.layui-layout-left-mini > .layui-side .layui-nav-item .nav-icon {
+ padding: 0 !important;
+ display: inline-block !important;
+}
+.layui-layout-left-mini > .layui-side .layui-nav-item .layui-nav-child {
+ padding: 0;
+ display: block !important;
+ background-color: rgba(0, 0, 0, 0.3) !important;
+}
+.layui-layout-left-mini > .layui-side,
+.layui-layout-left-mini > .layui-side .layui-nav-tree,
+.layui-layout-left-mini > .layui-side .layui-side-scroll,
+.layui-layout-left-mini > .layui-side .layui-side-scroll .layui-nav-tree {
+ width: 50px;
+ text-align: center;
+}
+.layui-layout-left-mini [data-target-menu-type] i {
+ display: inline-block;
+ transform: rotate(180deg);
+ -ms-transform: rotate(180deg);
+ -webkit-transform: rotate(180deg);
+}
+.layui-layout-left-hide > .layui-header {
+ left: 0 !important;
+}
+.layui-layout-left-hide > .layui-header .layui-logo-hide {
+ display: inline-block !important;
+}
+.layui-layout-left-hide > .layui-side {
+ display: none !important;
+}
+.layui-layout-left-hide > .layui-body {
+ left: 0 !important;
+}
+.layui-layout-left-hide > .layui-body > .think-page-loader {
+ left: 0 !important;
+}
+.layui-layout-left-hide > .layui-body > .think-page-body > .layui-card > .layui-card-header {
+ left: 0 !important;
+}
+.layui-layout-left-hide [data-target-menu-type] {
+ display: none !important;
+}
+.headimg {
+ width: 35px;
+ height: 35px;
+ display: inline-block;
+ overflow: hidden;
+ text-align: center;
+ margin-right: 5px;
+ margin-bottom: 5px;
+ border-radius: 50%;
+ vertical-align: middle;
+ background-size: cover;
+ background-repeat: no-repeat;
+ background-position: center center;
+}
+.headimg-no {
+ border: none;
+ box-shadow: none;
+ border-radius: 0;
+}
+.headimg-xs {
+ width: 28px;
+ height: 28px;
+}
+.headimg-sm {
+ width: 38px;
+ height: 38px;
+}
+.headimg-md {
+ width: 58px;
+ height: 58px;
+}
+.headimg-lg {
+ width: 88px;
+ height: 88px;
+}
+.headimg > img {
+ width: 110%;
+ height: 110%;
+ max-width: 110%;
+ max-height: 110%;
+ margin: -5% 0 0 -5%;
+}
+.headimg + * {
+ vertical-align: middle;
+}
+fieldset {
+ margin: 0 0 10px 0;
+ border: 1px solid #EEE;
+ padding: 10px 20px 5px 20px;
+ background: #fff;
+ border-radius: 5px;
+}
+fieldset legend {
+ color: #666;
+ padding: 0 10px;
+ font-size: 12px;
+ letter-spacing: 1px;
+}
+.layui-layer-tips.layui-layer-image {
+ width: auto !important;
+}
+.layui-layer-tips.layui-layer-image .layui-layer-content {
+ width: auto !important;
+ padding: 4px !important;
+}
+.layui-layer-tips.layui-layer-image .layui-layer-content img {
+ z-index: 2;
+ position: relative;
+}
+.layui-layer-tips.layui-layer-image .layui-layer-content i.layui-layer-TipsR {
+ z-index: 1;
+}
+.layui-tab,
+.layui-card {
+ border-radius: 5px;
+}
+.layui-tab .layui-tab-title {
+ border-top-left-radius: 5px;
+ border-top-right-radius: 5px;
+}
+.layui-tab .layui-tab-title > li:first-child {
+ padding: 0 15px 0 17px;
+ margin-left: 0 !important;
+ border-top-left-radius: 5px;
+}
+.layui-tab .layui-tab-title > li:first-child:after {
+ border-left: none;
+}
+.layui-tab .layui-tab-content {
+ border-bottom-left-radius: 5px;
+ border-bottom-right-radius: 5px;
+}
+.layui-tab > .layui-tab-content {
+ padding: 20px;
+ background: #fff;
+}
+.layui-card > .layui-card-header {
+ padding: 0 20px;
+}
+.layui-card > .layui-card-body {
+ padding: 20px;
+}
+.layui-code {
+ border-radius: 5px;
+}
+.layui-btn {
+ border: 1px solid #009688;
+}
+.layui-btn:hover:not(.layui-btn-disabled) {
+ box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.16) inset;
+}
+.layui-btn-warm {
+ border: 1px solid #FFB800;
+}
+.layui-btn-danger {
+ border: 1px solid #FF5722;
+}
+.layui-btn-normal {
+ border: 1px solid #1E9FFF;
+}
+.layui-btn-disabled {
+ border: 1px solid #EEE;
+}
+.layui-btn-primary {
+ background: #fff;
+}
+.layui-btn-group {
+ border: 1px solid #098;
+ overflow: hidden;
+ background: #009688;
+ line-height: 28px;
+ border-radius: 2px;
+}
+.layui-btn-group + .layui-btn {
+ margin-left: 8px;
+}
+.layui-btn-group .layui-btn {
+ height: 28px;
+ line-height: 28px;
+ border-width: 0 !important;
+ border-radius: 0 !important;
+}
+.layui-btn-group .layui-btn + .layui-btn {
+ margin-left: 1px !important;
+}
+.layui-btn-group .layui-btn-primary:hover {
+ border-color: #009688;
+}
+.layui-btn + .layui-btn {
+ margin-left: 8px;
+}
+.layui-badge {
+ margin-right: 5px;
+}
+.layui-badge-middle {
+ width: 1em;
+ height: auto;
+ padding: 5px;
+ line-height: 16px;
+ white-space: normal;
+ vertical-align: middle;
+}
+.layui-form-select dl {
+ top: 37px;
+ padding: 0;
+ border-color: #DDD;
+}
+/*! 搜索表单样式 */
+.form-search .layui-btn {
+ height: 32px;
+ padding: 0 10px;
+ font-size: 13px;
+ line-height: 32px;
+}
+.form-search .layui-btn .layui-icon {
+ font-size: 15px;
+}
+.form-search .layui-form-item {
+ white-space: nowrap;
+ margin-right: 8px;
+ border: 1px solid #EEE;
+}
+.form-search .layui-form-item:last-child {
+ border: none;
+}
+.form-search .layui-form-item .layui-form-label {
+ width: auto !important;
+ border: none;
+ height: 30px;
+ padding: 0 8px;
+ line-height: 32px;
+ border-right: 1px solid #EEE;
+}
+.form-search .layui-form-item .layui-input-inline {
+ width: 150px;
+ margin: 0 !important;
+ display: inline-block !important;
+}
+.form-search .layui-form-item .layui-input-inline input,
+.form-search .layui-form-item .layui-input-inline select {
+ width: 100%;
+ height: 30px;
+ padding: 0 8px;
+ line-height: 32px;
+ border-width: 0;
+}
+.form-search .layui-form-item .layui-form-select dl {
+ top: 32px;
+ padding: 0;
+ border-width: 0;
+ box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+}
+/* 表单验证异常提示 */
+.label-required-prev:before {
+ color: red;
+ width: 0.5em;
+ content: '*';
+ margin: -2px 0 0 -0.55em;
+ display: inline-block;
+ position: absolute;
+ font-size: 14px;
+ text-align: left;
+ font-weight: bold;
+ line-height: 1.6em;
+}
+.label-required:after,
+.label-required-next:after {
+ top: 6px;
+ right: 5px;
+ color: red;
+ content: '*';
+ position: absolute;
+ margin-left: 4px;
+ font-weight: 700;
+ line-height: 1.8em;
+}
+.label-required-null:before {
+ content: none !important;
+}
+.layui-input,
+.layui-select {
+ line-height: 38px;
+ border-color: #EEE;
+}
+.layui-input:hover,
+.layui-select:hover,
+.layui-input:active,
+.layui-select:active,
+.layui-input:focus,
+.layui-select:focus {
+ border-color: #DDD;
+}
+.layui-disabled,
+.layui-disabled:hover {
+ color: #333 !important;
+ background: #EEE !important;
+}
+.layui-form-checkbox.layui-form-checked i {
+ border-color: #5FB878;
+}
+.layui-table td,
+.layui-table th {
+ font-size: 12px;
+}
+.layui-table td.list-table-check-td + td,
+.layui-table th.list-table-check-td + th {
+ padding-left: 5px;
+}
+.layui-table input.layui-input,
+.layui-table .layui-btn.layui-btn-sm {
+ height: 28px;
+ line-height: 28px;
+ box-sizing: border-box;
+}
+.layui-table .layui-btn.layui-btn-sm {
+ margin-top: -1px;
+}
+.layui-table[lay-size="lg"] input.layui-input,
+.layui-table[lay-size="lg"] .layui-btn.layui-btn-sm {
+ height: 38px;
+ box-sizing: border-box;
+ line-height: 38px;
+}
+.layui-table .list-table-sort-td {
+ width: 10px !important;
+ text-align: center !important;
+ padding-left: 5px !important;
+ padding-right: 5px !important;
+}
+.layui-table .list-table-sort-td button {
+ width: 56px;
+ background: #009688;
+}
+.layui-table .list-table-sort-td input {
+ width: 50px;
+ color: #666;
+ padding: 2px;
+ font-size: 9pt;
+ border: 1px solid #EEE;
+ text-align: center;
+ line-height: 18px;
+}
+.layui-table .list-table-check-td {
+ width: 10px !important;
+ text-align: center !important;
+ padding-left: 15px !important;
+ padding-right: 15px !important;
+}
+.layui-table .list-table-check-td input {
+ margin: 0 !important;
+ vertical-align: middle;
+}
+.tableSelect .layui-table-view {
+ margin: 10px 0;
+}
+.layui-table-view {
+ margin: 0;
+}
+.layui-table-view .layui-table-page .layui-laypage .layui-laypage-prev,
+.layui-table-view .layui-table-page .layui-laypage .layui-laypage-next {
+ padding: 0 8px;
+ border-radius: 3px;
+}
+.layui-table-view .layui-table-page .layui-laypage .layui-laypage-prev {
+ margin-left: 0 !important;
+}
+.layui-table-view .layui-table-page .layui-laypage .layui-laypage-next {
+ margin-right: 6px !important;
+}
+.layui-layer-content .layui-form.layui-card {
+ margin: 0;
+ box-shadow: none !important;
+}
+.layui-layer-content .layui-form.layui-card .layui-card-body {
+ padding: 20px 40px 0 0;
+}
+.layui-layer-dialog .layui-layer-content .layui-layer-ico {
+ top: 50% !important;
+ margin-top: -15px !important;
+}
+.laydate-footer-btns span {
+ line-height: 24px !important;
+}
+.layui-tags {
+ display: flex;
+ flex-wrap: wrap;
+ vertical-align: middle;
+}
+.layui-tags .layui-tag {
+ color: #FFF;
+ height: 38px;
+ margin: 3px 4px 3px 0;
+ padding: 0 4px 0 10px;
+ display: inline-block;
+ font-size: 14px;
+ line-height: 38px;
+ border-radius: 2px;
+ white-space: nowrap;
+ background: #1E9FFF !important;
+ user-select: none;
+ -ms-user-select: none;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+}
+.layui-tags .layui-tag .layui-icon {
+ font-size: 14px;
+ font-weight: 700;
+ margin-left: 5px;
+}
+.layui-tags .layui-tag .layui-icon:hover {
+ cursor: pointer;
+ color: #FF5722;
+}
+.layui-tags .layui-tag-input {
+ width: 100px;
+ resize: none;
+ margin: 3px 8px 3px 0;
+ overflow: hidden;
+ white-space: nowrap;
+}
+/** 手机盒子及微信菜单 */
+.mobile-preview {
+ width: 317px;
+ height: 580px;
+ position: relative;
+ background: url(../img/wechat/mobile_head.png) no-repeat 0 0;
+ box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
+ border-radius: 5px;
+}
+.mobile-preview .mobile-header {
+ color: #fff;
+ width: auto;
+ margin: 0 30px;
+ overflow: hidden;
+ font-size: 15px;
+ padding-top: 30px;
+ text-align: center;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ word-wrap: normal;
+ user-select: none;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ pointer-events: none;
+ -webkit-pointer-events: none;
+}
+.mobile-preview .mobile-body {
+ top: 60px;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ border: 1px solid #ccc;
+ position: absolute;
+ background: #f5f5f5;
+ border-radius: 0 0 5px 5px;
+}
+.mobile-preview .mobile-body iframe {
+ width: 100%;
+ height: 100%;
+}
+.mobile-preview .mobile-footer {
+ left: 0;
+ right: 0;
+ bottom: 0;
+ position: absolute;
+ border: 1px solid #ccc;
+ padding-left: 43px;
+ background: url(../img/wechat/mobile_foot.png) no-repeat 0 0;
+ list-style-type: none;
+ border-radius: 0 0 5px 5px;
+}
+.mobile-preview .mobile-footer li {
+ float: left;
+ width: 33.33%;
+ position: relative;
+ text-align: center;
+ line-height: 50px;
+}
+.mobile-preview .mobile-footer li a {
+ width: auto;
+ color: #616161;
+ border: 1px solid hsla(0, 0%, 100%, 0);
+ display: block;
+ overflow: hidden;
+ word-wrap: normal;
+ margin-top: -1px;
+ border-left: 1px solid #e7e7eb;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ margin-bottom: -1px;
+ text-decoration: none;
+}
+.mobile-preview .mobile-footer li a:hover {
+ background: rgba(0, 0, 0, 0.02);
+}
+.mobile-preview .mobile-footer li a.active {
+ border: 1px solid #44b549 !important;
+ box-shadow: 0 0 1px #44b549;
+}
+.mobile-preview .mobile-footer li a span:before {
+ width: 1px;
+ height: 1px;
+ content: '';
+ display: inline-block;
+}
+.mobile-preview .mobile-footer li > .close {
+ top: 1px;
+ right: 1px;
+ width: 18px;
+ height: 18px;
+ display: none;
+ cursor: pointer;
+ position: absolute;
+ text-align: center;
+ line-height: 18px;
+}
+.mobile-preview .mobile-footer li:hover > .close {
+ display: inline-block;
+}
+.mobile-preview .mobile-footer li:hover > .close:hover {
+ color: #fff !important;
+ background: #999 !important;
+}
+.mobile-preview .mobile-footer .icon-add,
+.mobile-preview .mobile-footer .icon-sub {
+ display: inline-block;
+ vertical-align: middle;
+}
+.mobile-preview .mobile-footer .icon-add::before,
+.mobile-preview .mobile-footer .icon-sub::before {
+ content: none;
+}
+.mobile-preview .mobile-footer .icon-add {
+ width: 14px;
+ height: 14px;
+ border-bottom: none !important;
+ background: url(../img/wechat/index.png) 0 0 no-repeat;
+}
+.mobile-preview .mobile-footer .icon-sub {
+ width: 7px;
+ height: 7px;
+ margin-right: 2px;
+ background: url(../img/wechat/index.png) 0 -3pc no-repeat;
+}
+.mobile-preview .mobile-footer .sub-menu {
+ width: 100%;
+ bottom: 60px;
+ margin: -1px;
+ display: block;
+ position: absolute;
+ border: 1px solid #d0d0d0;
+ background-color: #fafafa;
+}
+.mobile-preview .mobile-footer .sub-menu ul li {
+ float: none;
+ width: 100%;
+ padding: 0;
+ z-index: 11;
+ display: block;
+}
+.mobile-preview .mobile-footer .sub-menu ul li a {
+ padding: 0 5px;
+ border: 1px solid hsla(0, 0%, 100%, 0);
+}
+.mobile-preview .mobile-footer .sub-menu ul li a.bottom-border {
+ margin: -1px -1px 0;
+ border-bottom: 1px solid #e7e7eb;
+}
+.mobile-preview .mobile-footer .sub-menu ul li:last-child a.bottom-border {
+ border-bottom-color: #fff;
+}
+.mobile-preview .mobile-footer .arrow {
+ left: 50%;
+ position: absolute;
+ margin-left: -6px;
+}
+.mobile-preview .mobile-footer .arrow_in,
+.mobile-preview .mobile-footer .arrow_out {
+ width: 0;
+ height: 0;
+ z-index: 10;
+ border: 6px dashed transparent;
+ display: inline-block;
+ border-top-style: solid;
+ border-bottom-width: 0;
+}
+.mobile-preview .mobile-footer .arrow_in {
+ bottom: -5px;
+ z-index: 3;
+ border-top-color: #fafafa;
+}
+.mobile-preview .mobile-footer .arrow_out {
+ bottom: -6px;
+ z-index: 2;
+ border-top-color: #d0d0d0;
+}
+/* 下拉样式 */
+.layui-nav .layui-nav-item .layui-nav-more {
+ top: 0;
+ right: 15px;
+ width: auto;
+ height: auto;
+ border: none;
+ padding: 0 !important;
+ font-size: 14px !important;
+ font-style: normal;
+ font-family: "layui-icon" !important;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+}
+.layui-nav .layui-nav-item .layui-nav-more::before {
+ content: "\e619";
+}
+.layui-nav .layui-nav-item .layui-nav-mored,
+.layui-nav .layui-nav-itemed .layui-nav-more {
+ border: none;
+ transform: rotate(180deg);
+ -o-transform: rotate(180deg);
+ -ms-transform: rotate(180deg);
+ -moz-transform: rotate(180deg);
+ -webkit-transform: rotate(180deg);
+}
+/*! 重置 Iframe 页面样式 */
+.iframe-pagination {
+ padding: 20px;
+}
+.iframe-pagination:after {
+ content: '';
+ height: 30px;
+ display: block;
+}
+.iframe-pagination .pagination-container {
+ left: 0;
+ right: 0;
+ bottom: 0;
+ padding: 5px 20px;
+ position: fixed;
+ background: #fff;
+ border-top: 1px solid #ddd;
+}
+/*! 首页加载动画 */
+.think-page-loader {
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ z-index: 9999999;
+ position: fixed;
+ text-align: center;
+ background-color: #EFEFEF;
+}
+.think-page-loader .loader {
+ top: 50%;
+ width: 50px;
+ height: 50px;
+ margin: -35px 0 0 -35px;
+ z-index: 999999;
+ display: inline-block;
+ position: fixed;
+ background-color: #EFEFEF;
+}
+.think-page-loader .loader:before {
+ top: 59px;
+ left: 0;
+ width: 50px;
+ height: 7px;
+ opacity: 0.1;
+ content: "";
+ position: absolute;
+ border-radius: 50%;
+ background-color: #000;
+ animation: shadow 0.5s linear infinite;
+}
+.think-page-loader .loader:after {
+ top: 0;
+ left: 0;
+ width: 50px;
+ height: 50px;
+ content: "";
+ position: absolute;
+ border-radius: 3px;
+ background-color: #5FB878;
+ animation: loading 0.5s linear infinite;
+}
+@-webkit-keyframes loading {
+ 17% {
+ border-bottom-right-radius: 3px;
+ }
+ 25% {
+ transform: translateY(9px) rotate(22.5deg);
+ }
+ 50% {
+ transform: translateY(18px) scale(1, 0.9) rotate(45deg);
+ border-bottom-right-radius: 40px;
+ }
+ 75% {
+ transform: translateY(9px) rotate(67.5deg);
+ }
+ 100% {
+ transform: translateY(0) rotate(90deg);
+ }
+}
+@keyframes loading {
+ 17% {
+ border-bottom-right-radius: 3px;
+ }
+ 25% {
+ transform: translateY(9px) rotate(22.5deg);
+ }
+ 50% {
+ border-bottom-right-radius: 40px;
+ transform: translateY(18px) scale(1, 0.9) rotate(45deg);
+ }
+ 75% {
+ transform: translateY(9px) rotate(67.5deg);
+ }
+ 100% {
+ transform: translateY(0) rotate(90deg);
+ }
+}
+@-webkit-keyframes shadow {
+ 0%,
+ 100% {
+ transform: scale(1, 1);
+ }
+ 50% {
+ transform: scale(1.2, 1);
+ }
+}
+@keyframes shadow {
+ 0%,
+ 100% {
+ transform: scale(1, 1);
+ }
+ 50% {
+ transform: scale(1.2, 1);
+ }
+}
+/*# sourceMappingURL=console.css.map */
\ No newline at end of file
diff --git a/public/static/theme/css/console.css.map b/public/static/theme/css/console.css.map
index 918fc1e1f..61863ad4f 100644
--- a/public/static/theme/css/console.css.map
+++ b/public/static/theme/css/console.css.map
@@ -1 +1 @@
-{"version":3,"sources":["console.less","console.custom.less","console.layout.less","console.display.less"],"names":[],"mappings":"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"}
\ No newline at end of file
+{"version":3,"sources":["console.less","console.custom.less","console.layout.less","console.display.less"],"names":[],"mappings":"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","file":"console.css"}
\ No newline at end of file
diff --git a/public/static/theme/css/console.custom.less b/public/static/theme/css/console.custom.less
index 4a1319142..3b486827b 100644
--- a/public/static/theme/css/console.custom.less
+++ b/public/static/theme/css/console.custom.less
@@ -223,10 +223,7 @@
.uploadimagemtl {
> div {
- top: 0;
- left: 0;
right: 0;
- bottom: 0;
display: none;
position: absolute;
text-align: right;
diff --git a/public/static/theme/css/console.layout.less b/public/static/theme/css/console.layout.less
index f67eef389..d7d02f56a 100644
--- a/public/static/theme/css/console.layout.less
+++ b/public/static/theme/css/console.layout.less
@@ -43,8 +43,9 @@
&.layui-layout-right {
.headimg {
- width: 22px;
- height: 22px;
+ width: 20px;
+ height: 20px;
+ margin-bottom: 0;
}
}