更新v4.4.2版本

This commit is contained in:
evoxwht 2022-03-23 19:55:36 +08:00
parent 1be525f9ea
commit 194162c19f
1263 changed files with 2091 additions and 1347 deletions

View File

@ -11,7 +11,7 @@
CRMEB技术团队官网www.crmeb.com)历经4年时间匠心之作系统采用前后端分离技术基于TP6+Uni-app框架开发客户移动端采用uni-app开发管理后台前端使用iviewUI开发。系统支持微信公众号端、微信小程序端、H5端、PC端多端账号同步可快速打包生成APP
赋能开发者,减少重复造轮子;系统支持自动检查安装环境一键安装部署,使用简单方便;围绕方便二次开发,系统内置强大灵活的权限管理,可以控制到每一个菜单;通过内置组合数据,管理碎片化数据,系统配置快速添加系统配置参数,内置钩子,方便二开后台应用form-builder PHP快速生成现代化表单并提供详细的使用文档、开发文档、接口文档、数据字典等相关文档及十几个技术交流群、技术论坛答疑帮助更多开发者快速上手节省开发时间提升开发效率助力企业实现数字化经营
赋能开发者,减少重复造轮子;系统支持自动检查安装环境一键安装部署,使用简单方便;围绕方便二次开发,系统内置强大灵活的权限管理,可以控制到每一个菜单;通过内置组合数据,管理碎片化数据,系统配置快速添加系统配置参数,所有用户操作地方都内置钩子代码严格分控制层中间件、路由、Services层、Dao层、Model层后台应用form-builder PHP快速生成现代化表单并提供详细的使用文档、开发文档、接口文档、数据字典等相关文档及十几个技术交流群、技术论坛答疑让您二开无忧,帮助更多开发者快速上手,节省开发时间,提升开发效率;助力企业实现数字化经营!
<p align="center" >
<a href="https://gitee.com/ZhongBangKeJi/CRMEB/blob/master/README.md"> 宽屏预览 </a>
@ -52,7 +52,7 @@
技术交流社区:<a href="https://q.crmeb.com" target="_blank">https://q.crmeb.com
![](readme/images/gitee打通版-横.jpg)
[![](readme/images/1思维脑图功能清单.jpg)](http://s.crmeb.com/goods_detail/730)
[![](readme/images/2高清UI设计图.jpg)](http://s.crmeb.com/goods_detail/728)
[![](readme/images/3前后端接口文档.jpg)](http://s.crmeb.com/goods_detail/729)
@ -106,6 +106,7 @@ Redis
15.支持队列降低流量高峰,解除耦合,高可用;
16.一键安装自动检查系统环境一键安装;
17.移动端使用uni-app进行开发方便编译成各种格式的代码
18.严格代码规范,层次分明
~~~
## 页面展示

View File

@ -22,7 +22,7 @@
3、电子文本形式的授权协议如同双方书面签署的协议一样具有完全的和等同的法律效力。您一旦开始确认本协议并安装 CRMEB即被视为完全理解并接受本协议的各项条款在享有上述条款授予的权力的同时受到相关的约束和限制。协议许可范围以外的行为将直接违反本授权协议并构成侵权我们有权随时终止授权责令停止损害并保留追究相关责任的权力。
协议发布时间: 2017年8月01日
版本最新更新: 2019年8月15日 By CRMEB
版本最新更新: 2022年3月15日 By CRMEB
CRMEB官方网站http://www.crmeb.com
CRMEB演示站http://demo.crmeb.com

View File

@ -248,6 +248,10 @@ class SystemStorage extends AuthController
*/
public function uploadType(SystemConfigServices $services, $type)
{
$status = $this->services->count(['type' => $type, 'status' => 1]);
if (!$status && $type != 1) {
return app('json')->success('未有正在使用的存储空间');
}
$services->update('upload_type', ['value' => json_encode($type)], 'menu_name');
\crmeb\services\CacheService::clear();
if ($type != 1) {

View File

@ -45,4 +45,24 @@ class SystemStorage extends BaseModel
{
$query->where('name', $value);
}
/**
* 类型搜索器
* @param $query
* @param $value
*/
public function searchTypeAttr($query, $value)
{
if ($value) $query->where('type', $value);
}
/**
* 状态搜索器
* @param $query
* @param $value
*/
public function searchStatusAttr($query, $value)
{
if ($value !== '') $query->where('status', $value);
}
}

View File

@ -47,6 +47,7 @@ class MessageServices extends BaseServices
if (strtolower($qrInfo['third_type']) == 'spread') {
try {
$spreadUid = $qrInfo['third_id'];
$is_new = $wechatUser->saveUser($message->FromUserName);
$uid = $wechatUser->getFieldValue($message->FromUserName, 'openid', 'uid', ['user_type', '<>', 'h5']);
$userInfo = $userService->get($uid);
if ($spreadUid == $uid) {
@ -55,7 +56,7 @@ class MessageServices extends BaseServices
$response = '用户不存在';
} else if ($userInfo['spread_uid']) {
$response = '已有推荐人!';
} else if (!$loginService->updateUserInfo(['code' => $spreadUid], $userInfo)) {
} else if (!$loginService->updateUserInfo(['code' => $spreadUid], $userInfo, $is_new)) {
$response = '绑定推荐人失败!';
}
} catch (\Exception $e) {
@ -65,6 +66,7 @@ class MessageServices extends BaseServices
try {
$spreadUid = $qrInfo['third_id'];
$spreadInfo = $userService->get($spreadUid);
$is_new = $wechatUser->saveUser($message->FromUserName);
$uid = $wechatUser->getFieldValue($message->FromUserName, 'openid', 'uid', ['user_type', '<>', 'h5']);
$userInfo = $userService->get($uid);
if ($spreadUid == $uid) {
@ -77,7 +79,7 @@ class MessageServices extends BaseServices
$response = '您是事业部,不能绑定成为别人的员工';
} else if ($userInfo->is_agent) {
$response = '您是代理商,不能绑定成为别人的员工';
} else if ($loginService->updateUserInfo(['code' => $spreadUid, 'is_staff' => 1], $userInfo)) {
} else if ($loginService->updateUserInfo(['code' => $spreadUid, 'is_staff' => 1], $userInfo, $is_new)) {
$response = '绑定店员成功!';
}
} catch (\Exception $e) {
@ -91,6 +93,7 @@ class MessageServices extends BaseServices
$qrcodeInfo = $wechatQrcodeService->qrcodeInfo($qrInfo['third_id']);
$spreadUid = $qrcodeInfo['uid'];
$spreadInfo = $userService->get($spreadUid);
$is_new = $wechatUser->saveUser($message->FromUserName);
$uid = $wechatUser->getFieldValue($message->FromUserName, 'openid', 'uid', ['user_type', '<>', 'h5']);
$userInfo = $userService->get($uid);
if ($qrcodeInfo['status'] == 0 || $qrcodeInfo['is_del'] == 1 || ($qrcodeInfo['end_time'] < time() && $qrcodeInfo['end_time'] > 0)) {
@ -101,7 +104,7 @@ class MessageServices extends BaseServices
$response = '用户不存在';
} else if (!$spreadInfo) {
$response = '上级用户不存在';
} else if ($loginService->updateUserInfo(['code' => $spreadUid], $userInfo)) {
} else if ($loginService->updateUserInfo(['code' => $spreadUid], $userInfo, $is_new)) {
//写入扫码记录,返回内容
$response = $wechatQrcodeService->wechatQrcodeRecord($qrcodeInfo, $userInfo, $spreadInfo);
}

View File

@ -894,22 +894,26 @@ class StoreOrderRefundServices extends BaseServices
}
$refund_num = bcadd((string)$refund_num, (string)$cart['cart_num'], 0);
}
/** @var StoreOrderSplitServices $storeOrderSpliteServices */
$storeOrderSpliteServices = app()->make(StoreOrderSplitServices::class);
$cartInfos = $storeOrderSpliteServices->getSplitOrderCartInfo($id, $cart_ids, $order);
$total_price = $pay_postage = 0;
foreach ($cartInfos as $cart) {
$_info = is_string($cart['cart_info']) ? json_decode($cart['cart_info'], true) : $cart['cart_info'];
$total_price = bcadd((string)$total_price, bcmul((string)($_info['truePrice'] ?? 0), (string)$cart['cart_num'], 4), 2);
$pay_postage = bcadd((string)$pay_postage, (string)($_info['postage_price'] ?? 0), 2);
}
$refund_pay_price = bcadd((string)$total_price, (string)$pay_postage, 2);
//订单实际支付金额
$order_pay_price = bcsub((string)bcadd((string)$order['total_price'], (string)$order['pay_postage'], 2), (string)bcadd((string)$order['deduction_price'], (string)$order['coupon_price'], 2), 2);
if ($order_pay_price != $order['pay_price'] && $refund_pay_price != $order_pay_price) {//有改价
$refund_price = bcmul((string)bcdiv((string)$order['pay_price'], (string)$order_pay_price, 4), (string)$refund_pay_price, 2);
} else {
$refund_price = $refund_pay_price;
//总共申请多少件
$total_num = array_sum(array_column($cart_ids, 'cart_num'));
if ($total_num < $order['total_num']) {
/** @var StoreOrderSplitServices $storeOrderSpliteServices */
$storeOrderSpliteServices = app()->make(StoreOrderSplitServices::class);
$cartInfos = $storeOrderSpliteServices->getSplitOrderCartInfo($id, $cart_ids, $order);
$total_price = $pay_postage = 0;
foreach ($cartInfos as $cart) {
$_info = is_string($cart['cart_info']) ? json_decode($cart['cart_info'], true) : $cart['cart_info'];
$total_price = bcadd((string)$total_price, bcmul((string)($_info['truePrice'] ?? 0), (string)$cart['cart_num'], 4), 2);
$pay_postage = bcadd((string)$pay_postage, (string)($_info['postage_price'] ?? 0), 2);
}
$refund_pay_price = bcadd((string)$total_price, (string)$pay_postage, 2);
//订单实际支付金额
$order_pay_price = bcsub((string)bcadd((string)$order['total_price'], (string)$order['pay_postage'], 2), (string)bcadd((string)$order['deduction_price'], (string)$order['coupon_price'], 2), 2);
if ($order_pay_price != $order['pay_price'] && $refund_pay_price != $order_pay_price) {//有改价
$refund_price = bcmul((string)bcdiv((string)$order['pay_price'], (string)$order_pay_price, 4), (string)$refund_pay_price, 2);
} else {
$refund_price = $refund_pay_price;
}
}
} else {
foreach ($cartInfos as $cart) {

View File

@ -1487,6 +1487,7 @@ HTML;
} else {
$addr = [];
}
if ($shipping_type == 2) $addr = [];
/** @var StoreCartServices $cartServices */
$cartServices = app()->make(StoreCartServices::class);
$cartGroup = $cartServices->getUserProductCartListV1($user['uid'], $cartId, $new, $addr, $shipping_type);

View File

@ -187,7 +187,7 @@ class StoreCategoryServices extends BaseServices
*/
public function createData($data)
{
if ($this->dao->getOne(['cate_name' => $data['cate_name']])) {
if ($this->dao->getOne(['cate_name' => $data['cate_name'], 'pid' => $data['pid']])) {
throw new AdminException('该分类已经存在');
}
$data['add_time'] = time();
@ -203,7 +203,7 @@ class StoreCategoryServices extends BaseServices
*/
public function editData($id, $data)
{
$cate = $this->dao->getOne(['cate_name' => $data['cate_name']]);
$cate = $this->dao->getOne(['cate_name' => $data['cate_name'], 'pid' => $data['pid']]);
if ($cate && $cate['id'] != $id) {
throw new AdminException('该分类已存在');
}

View File

@ -252,7 +252,7 @@ class StoreProductServices extends BaseServices
$productInfo['give_integral'] = floatval($productInfo['give_integral']);
$productInfo['presale'] = boolval($productInfo['presale'] ?? 0);
$productInfo['vip_product'] = boolval($productInfo['vip_product'] ?? 0);
$productInfo['presale_time'] = $productInfo['presale_start_time'] == 0 ? [] : [date('Y-m-d M:i:s', $productInfo['presale_start_time']), date('Y-m-d M:i:s', $productInfo['presale_end_time'])];
$productInfo['presale_time'] = $productInfo['presale_start_time'] == 0 ? [] : [date('Y-m-d H:i:s', $productInfo['presale_start_time']), date('Y-m-d H:i:s', $productInfo['presale_end_time'])];
$productInfo['description'] = $storeDescriptionServices->getDescription(['product_id' => $id, 'type' => 0]);
$productInfo['custom_form'] = json_decode($productInfo['custom_form'], true);
/** @var StoreProductAttrServices $storeProductAttrServices */

View File

@ -33,6 +33,20 @@ class ExpressServices extends BaseServices
{
public $_cacheKey = "plat_express_list";
//物流查询物流公司code
public $express_code = [
'yunda' => 'yunda',
'yundakuaiyun' => 'yunda56',
'ems' => 'EMS',
'youzhengguonei' => 'chinapost',
'huitongkuaidi' => 'HTKY',
'baishiwuliu' => 'BSKY',
'shentong' => 'STO',
'jd' => 'JD',
'zhongtong' => 'ZTO',
'zhongtongkuaiyun' => 'ZTO56',
];
/**
* 构造方法
* ExpressServices constructor.
@ -63,6 +77,7 @@ class ExpressServices extends BaseServices
{
return $this->dao->getExpressList([], '*', 0, 0);
}
/**
* 物流表单
* @param array $formData
@ -164,7 +179,7 @@ class ExpressServices extends BaseServices
public function expressList($where = [])
{
if(empty($where)) $where = ['is_show' => 1];
if (empty($where)) $where = ['is_show' => 1];
return $this->dao->getExpressList($where, 'id,name,code,partner_id,partner_key,net,account,key,net_name', 0, 0);
}
@ -180,6 +195,7 @@ class ExpressServices extends BaseServices
$resultData = CacheService::get($cacheName, null);
if ($resultData === null || !is_array($resultData)) {
$data = [];
$com = $this->express_code[$com] ?? '';
$cacheTime = 0;
switch ((int)sys_config('logistics_type')) {
case 1:
@ -196,7 +212,7 @@ class ExpressServices extends BaseServices
}
break;
case 2:
$result = ExpressService::query($expressNum);
$result = ExpressService::query($expressNum, $com);
if (is_array($result) &&
isset($result['result']) &&
isset($result['result']['deliverystatus']) &&

View File

@ -78,7 +78,7 @@ class LoginServices extends BaseServices
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function updateUserInfo($user, $userInfo)
public function updateUserInfo($user, $userInfo, $is_new = false)
{
$data = [];
$data['nickname'] = !isset($user['nickname']) || !$user['nickname'] ? $userInfo->nickname : $user['nickname'];
@ -86,9 +86,9 @@ class LoginServices extends BaseServices
$data['phone'] = !isset($user['phone']) || !$user['phone'] ? $userInfo->phone : $user['phone'];
$data['last_time'] = time();
$data['last_ip'] = app()->request->ip();
$spreadUid = isset($user['code']) ? $user['code'] : 0;
//如果扫了员工邀请码,上级,代理商,区域代理都会改动。
if (isset($user['is_staff']) && !$userInfo['is_agent'] && !$userInfo['is_division']) {
$spreadUid = isset($user['code']) ? $user['code'] : 0;
$spreadInfo = $this->dao->get($spreadUid);
if ($userInfo['uid'] != $spreadUid) {
$data['spread_uid'] = $spreadUid;
@ -106,37 +106,47 @@ class LoginServices extends BaseServices
$this->dao->update($userInfo['uid'], ['spread_uid' => $userInfo->agent_id], 'spread_uid');
}
}
//永久绑定
$store_brokergae_binding_status = sys_config('store_brokerage_binding_status', 1);
if ($userInfo->spread_uid && $store_brokergae_binding_status == 1 && !isset($user['is_staff'])) {
$data['login_type'] = $user['login_type'] ?? $userInfo->login_type;
} else {
$spreadUid = isset($user['code']) && $user['code'] && $user['code'] != $userInfo->uid ? $user['code'] : 0;
if ($spreadUid && $userInfo->uid == $this->dao->value(['uid' => $spreadUid], 'spread_uid')) {
$spreadUid = 0;
}
//绑定分销关系 = 所有用户
if (sys_config('brokerage_bindind', 1) == 1) {
//分销绑定类型为时间段且过期 ||临时
$store_brokerage_binding_time = sys_config('store_brokerage_binding_time', 30);
if (!$userInfo['spread_uid'] || $store_brokergae_binding_status == 3 || ($store_brokergae_binding_status == 2 && ($userInfo['spread_time'] + $store_brokerage_binding_time * 24 * 3600) < time())) {
if ($spreadUid) {
$spreadInfo = $this->dao->get($spreadUid);
$spreadUid = (int)$spreadUid;
$data['spread_uid'] = $spreadUid;
$data['spread_time'] = time();
$data['agent_id'] = $spreadInfo->agent_id;
$data['division_id'] = $spreadInfo->division_id;
$data['staff_id'] = $spreadInfo->staff_id;
}
}
}
if ($is_new) {
if ($spreadUid) {
$spreadInfo = $this->dao->get($spreadUid);
$spreadUid = (int)$spreadUid;
$data['spread_uid'] = $spreadUid;
$data['spread_time'] = time();
$data['agent_id'] = $spreadInfo->agent_id;
$data['division_id'] = $spreadInfo->division_id;
$data['staff_id'] = $spreadInfo->staff_id;
//绑定用户后置事件
event('user.register', [$spreadUid, $userInfo['user_type'], $userInfo['nickname'], $userInfo['uid'], 0]);
//推送消息
event('notice.notice', [['spreadUid' => $spreadUid, 'user_type' => $userInfo['user_type'], 'nickname' => $userInfo['nickname']], 'bind_spread_uid']);
}
} else {
//永久绑定
$store_brokerage_binding_status = sys_config('store_brokerage_binding_status', 1);
if ($userInfo->spread_uid && $store_brokerage_binding_status == 1 && !isset($user['is_staff'])) {
$data['login_type'] = $user['login_type'] ?? $userInfo->login_type;
} else {
//绑定分销关系 = 所有用户
if (sys_config('brokerage_bindind', 1) == 1) {
//分销绑定类型为时间段且过期 ||临时
$store_brokerage_binding_time = sys_config('store_brokerage_binding_time', 30);
if (!$userInfo['spread_uid'] || $store_brokerage_binding_status == 3 || ($store_brokerage_binding_status == 2 && ($userInfo['spread_time'] + $store_brokerage_binding_time * 24 * 3600) < time())) {
if ($spreadUid && $user['code'] != $userInfo->uid && $userInfo->uid != $this->dao->value(['uid' => $spreadUid], 'spread_uid')) {
$spreadInfo = $this->dao->get($spreadUid);
$spreadUid = (int)$spreadUid;
$data['spread_uid'] = $spreadUid;
$data['spread_time'] = time();
$data['agent_id'] = $spreadInfo->agent_id;
$data['division_id'] = $spreadInfo->division_id;
$data['staff_id'] = $spreadInfo->staff_id;
//绑定用户后置事件
event('user.register', [$spreadUid, $userInfo['user_type'], $userInfo['nickname'], $userInfo['uid'], 0]);
//推送消息
event('notice.notice', [['spreadUid' => $spreadUid, 'user_type' => $userInfo['user_type'], 'nickname' => $userInfo['nickname']], 'bind_spread_uid']);
}
}
}
}
}
if (!$this->dao->update($userInfo['uid'], $data, 'uid')) {
throw new ValidateException('修改信息失败');

View File

@ -58,10 +58,6 @@ class WechatMessageServices extends BaseServices
*/
public function wechatMessageBefore($message)
{
/** @var WechatUserServices $wechatUser */
$wechatUser = app()->make(WechatUserServices::class);
$wechatUser->saveUser($message->FromUserName);
$event = isset($message->Event) ?
$message->MsgType . (
$message->Event == 'subscribe' && isset($message->EventKey) ? '_scan' : ''

View File

@ -106,13 +106,19 @@ class WechatUserServices extends BaseServices
/**
* 用户存在就更新 不存在就添加
* @param $openid
* @return bool
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function saveUser($openid)
{
if ($this->getWechatUserInfo(['openid' => $openid])) {
$this->updateUser($openid);
return false;
} else {
$this->setNewUser($openid);
return true;
}
}
@ -156,7 +162,7 @@ class WechatUserServices extends BaseServices
} else {
mt_srand();
$userInfo['nickname'] = 'wx' . rand(100000, 999999);
$userInfo['avatar'] = sys_config('h5_avatar');
$userInfo['headimgurl'] = sys_config('h5_avatar');
}
if (isset($userInfo['tagid_list'])) {
$userInfo['tagid_list'] = implode(',', $userInfo['tagid_list']);

View File

@ -337,6 +337,19 @@ class CopyProductService
$result['slider_image'] = $info['images'] ?? [];
$result['description'] = $info['desc'] ?? '';
$result['description_images'] = $info['descImgs'] ?? [];
$result['description_images'] = array_map(function ($item) {
if (strstr($item, 'http') === false) {
$item = 'http:' . $item;
}
return $item;
}, $result['description_images']);
if (strstr($result['description'], '<style>') !== false && strstr($result['description'], '<img') === false) {
$content = '';
foreach ($result['description_images'] as $item_img) {
$content .= '<p><img src="' . $item_img . '"></p>';
}
$result['description'] = $content;
}
$items = [];
if (isset($info['skuProps']) && $info['skuProps']) {
foreach ($info['skuProps'] as $key => $prop) {

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
.iconBox[data-v-a3dd5b66]{background:#fff}.icons-item[data-v-a3dd5b66]{float:left;margin:6px 6px 6px 0;width:53px;text-align:center;list-style:none;cursor:pointer;height:50px;color:#5c6b77;-webkit-transition:all .2s ease;transition:all .2s ease;position:relative;padding-top:10px}.icons-item[data-v-a3dd5b66] .ivu-icon{font-size:32px!important}.trees-coadd[data-v-a3dd5b66]{width:100%;height:500px;border-radius:4px;overflow:hidden}.scollhide[data-v-a3dd5b66]{width:100%;height:100%;overflow:auto;margin-left:18px;padding:10px 0 10px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.scollhide .content[data-v-a3dd5b66]{font-size:12px}.scollhide .time[data-v-a3dd5b66]{font-size:12px;color:#2d8cf0}

View File

@ -1 +0,0 @@
.label-wrapper .list[data-v-1e8c0f4e]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.label-wrapper .list .label-item[data-v-1e8c0f4e]{margin:10px 8px 10px 0;padding:3px 8px;background:#eee;color:#333;border-radius:2px;cursor:pointer;font-size:12px}.label-wrapper .list .label-item.on[data-v-1e8c0f4e]{color:#fff;background:#1890ff}.label-wrapper .footer[data-v-1e8c0f4e]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-top:40px}.label-wrapper .footer button[data-v-1e8c0f4e]{margin-left:10px}.btn[data-v-1e8c0f4e]{width:60px;height:24px}.title[data-v-1e8c0f4e]{font-size:13px}.list-box[data-v-1e8c0f4e]{overflow-y:auto;overflow-x:hidden;max-height:240px}.info[data-v-9984faf8]{color:#888;font-size:12px}.ivu-row[data-v-9984faf8]{border:1px solid #f2f2f2}.ivu-form-item[data-v-9984faf8]{padding:10px 0;max-width:1100px}.ivu-form[data-v-9984faf8] .ivu-form-item-label{font-weight:700;font-size:14px!important}.ivu-input-wrapper[data-v-9984faf8]{width:320px}.ivu-radio-wrapper[data-v-9984faf8]{margin-right:30px;font-size:14px!important}.ivu-radio-wrapper[data-v-9984faf8] .ivu-radio{margin-right:10px}.ivu-input-number[data-v-9984faf8]{width:160px}.ivu-date-picker[data-v-9984faf8]{width:320px}.ivu-icon-ios-camera-outline[data-v-9984faf8]{background-color:rgba(0,0,0,.02);line-height:58px}.ivu-icon-ios-camera-outline[data-v-9984faf8],.upload-list[data-v-9984faf8]{width:58px;height:58px;border:1px dotted rgba(0,0,0,.1);border-radius:4px;cursor:pointer;vertical-align:middle}.upload-list[data-v-9984faf8]{margin-right:15px;display:inline-block;position:relative}.upload-list img[data-v-9984faf8]{display:block;width:100%;height:100%}.ivu-icon-ios-close-circle[data-v-9984faf8]{position:absolute;top:0;right:0;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%)}.modelBox[data-v-9984faf8] .ivu-modal-body{padding:0 16px 16px 16px!important}.header-save[data-v-9984faf8]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.trip[data-v-9984faf8]{color:#ccc}.submit[data-v-9984faf8]{margin:30px 0 30px 50px}.fl_header[data-v-9984faf8]{padding-bottom:10px}textarea[data-v-9984faf8]{padding:5px;border-radius:3px;border-color:#c5c8ce;outline-color:#2d8cf0}.picBox[data-v-9984faf8]{display:inline-block;cursor:pointer}.picBox .upLoad[data-v-9984faf8]{width:58px;height:58px;line-height:58px;border:1px dotted rgba(0,0,0,.1);border-radius:4px;background:rgba(0,0,0,.02)}.picBox .pictrue[data-v-9984faf8]{width:60px;height:60px;border:1px dotted rgba(0,0,0,.1);margin-right:10px}.picBox .pictrue img[data-v-9984faf8]{width:100%;height:100%}.picBox .iconfont[data-v-9984faf8]{color:#898989}.addfont[data-v-9984faf8]{display:inline-block;font-size:13px;font-weight:400;color:#1890ff;margin-left:14px;cursor:pointer;margin-left:10px}.iconxiayi[data-v-9984faf8]{font-size:14px}.ivu-page-header-title[data-v-9984faf8]{padding-bottom:0}.news-box[data-v-9984faf8]{width:200px;background-color:#f2f2f2;padding:10px;border-radius:10px;margin-left:65px;margin-top:20px}.news-box .news_pic[data-v-9984faf8]{width:100%;height:150px}.i-layout-page-header[data-v-9984faf8]{padding-left:13px}.labelInput[data-v-9984faf8]{border:1px solid #dcdee2;width:320px;padding:0 8px;border-radius:5px;min-height:30px;cursor:pointer}.labelInput .span[data-v-9984faf8]{color:#c5c8ce}.labelInput .ivu-icon-ios-arrow-down[data-v-9984faf8]{font-size:14px;color:#808695}

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
.v-transfer-dom[data-v-7423233c] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-7423233c]{margin-bottom:14px}.radio[data-v-7423233c] .name{width:125px;text-align:right;padding-right:12px}.save[data-v-05961e1a]{width:100%;margin:0 auto;text-align:center;background-color:#fff;bottom:0;padding:16px;border-top:3px solid #f5f7f9}.form .goodsTitle[data-v-05961e1a]{margin-bottom:25px}.form .goodsTitle~.goodsTitle[data-v-05961e1a]{margin-top:20px}.form .goodsTitle .title[data-v-05961e1a]{border-bottom:2px solid #1890ff;padding:0 8px 12px 5px;color:#000;font-size:14px}.form .goodsTitle .icons[data-v-05961e1a]{font-size:15px;margin-right:8px;color:#999}.form .add[data-v-05961e1a]{font-size:12px;color:#1890ff;padding:0 12px;cursor:pointer}.form .radio[data-v-05961e1a]{margin-right:20px}.form .upLoad[data-v-05961e1a]{width:58px;height:58px;line-height:58px;border:1px dotted rgba(0,0,0,.1);border-radius:4px;background:rgba(0,0,0,.02)}.form .iconfont[data-v-05961e1a]{color:#898989}.form .pictrue[data-v-05961e1a]{width:60px;height:60px;border:1px dotted rgba(0,0,0,.1);margin-right:10px}.form .pictrue img[data-v-05961e1a]{width:100%;height:100%}.agreement-box[data-v-05961e1a]{width:310px;height:550px;border-radius:10px;background:transparent;border:1px solid #eee;opacity:1;position:relative}.agreement-box .template[data-v-05961e1a]{position:absolute;width:100%;height:100%;top:0;left:0;border-radius:10px;background-color:#817e81}.agreement-box .htmls_box[data-v-05961e1a]{font-size:12px;width:259px;height:430px;border-radius:10px;background-color:#fff;position:absolute;top:58px;left:26px}.agreement-box .htmls_box .htmls_top[data-v-05961e1a]{position:absolute;top:8px;left:0;height:34px;text-align:center;width:100%;line-height:35px;font-weight:600;font-size:20px}.agreement-box .htmls_box .htmls_font[data-v-05961e1a]{position:absolute;bottom:0;left:0;padding:15px 15px;text-align:center;width:100%}.agreement-box .htmls_box .htmls_font div[data-v-05961e1a]{height:35px;line-height:35px;border-radius:20px}.agreement-box .htmls_box .htmls_font .ok[data-v-05961e1a]{background-color:#f33316;color:#fff}.agreement-box .htmls_box .htmls[data-v-05961e1a]{position:absolute;background-color:#fff;top:50px;left:0;width:259px;height:281px;border-radius:4px;overflow:auto;padding:5px 15px;word-break:break-word}.agreement-box .htmls_box .htmls[data-v-05961e1a]::-webkit-scrollbar{display:none}.item[data-v-05961e1a]{margin-right:15px;border:1px dashed #dbdbdb;padding-bottom:10px;padding-right:15px;padding-top:20px}.swiperimg[data-v-05961e1a]{width:310px;border-top-left-radius:10px;border-top-right-radius:10px}.swiperimg img[data-v-05961e1a]{width:100%;height:100%}.title[data-v-05961e1a]{padding:0 0 13px 0;font-weight:700;font-size:15px;border-left:2px solid #1890ff;height:23px;padding-left:10px}.content .right-box[data-v-05961e1a]{margin-left:40px}.box[data-v-05961e1a]{border-top:3px solid #f5f7f9;padding:10px;padding-top:25px;width:100%}.box .save[data-v-05961e1a]{background-color:#1890ff;color:#fff;width:71px;height:30px;margin:0 auto;text-align:center;line-height:30px;cursor:pointer}.iframe[data-v-05961e1a]{margin-left:20px;position:relative;width:310px;background:#fff;border:1px solid #eee;opacity:1;border-radius:10px}.iconfont[data-v-05961e1a]{color:#ddd;font-size:28px}.box-wrapper[data-v-05961e1a]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;padding:20px;background-color:#fff;border-radius:5px;margin:20px}

View File

@ -0,0 +1 @@
.colorred[data-v-1e73e399]{color:#ff5722}.colorgreen[data-v-1e73e399]{color:#009688}.search[data-v-1e73e399]{background:#1890ff;border-radius:4px;color:#fff}.reset[data-v-1e73e399],.search[data-v-1e73e399]{width:86px;height:32px;text-align:center;line-height:32px;font-size:13px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;cursor:pointer}.reset[data-v-1e73e399]{border-radius:4px;border:1px solid hsla(0,0%,59.2%,.36);color:rgba(0,0,0,.85)}.table .ivu-table-default[data-v-1e73e399]{overflow-y:auto;max-height:350px}.dashboard-workplace-header-avatar[data-v-1e73e399]{width:64px;height:64px;border-radius:50%;margin-right:16px;font-weight:600}.dashboard-workplace-header-tip[data-v-1e73e399]{width:82%;display:inline-block;vertical-align:middle}.dashboard-workplace-header-tip-title[data-v-1e73e399]{font-size:13px;color:#000;margin-bottom:12px}.dashboard-workplace-header-tip-desc-sp[data-v-1e73e399]{width:33.33%;color:#17233d;font-size:12px;display:inline-block}.dashboard-workplace-header-extra .ivu-col p[data-v-1e73e399]{text-align:right}.dashboard-workplace-header-extra .ivu-col p:first-child span[data-v-1e73e399]:first-child{margin-right:4px}.dashboard-workplace-header-extra .ivu-col p:first-child span[data-v-1e73e399]:last-child{color:#808695}.dashboard-workplace-header-extra .ivu-col p[data-v-1e73e399]:last-child{font-size:22px}.z-price[data-v-1e73e399]{color:red}.f-price[data-v-1e73e399]{color:green}[data-v-1ce173bd] .ivu-page-header,[data-v-1ce173bd] .ivu-tabs-bar{border-bottom:1px solid #fff}[data-v-1ce173bd] .ivu-card-body{padding:0}[data-v-1ce173bd] .ivu-tabs-nav{height:45px}.tabbox[data-v-1ce173bd]{padding:16px 20px 0}.box[data-v-1ce173bd]{padding:20px;padding-bottom:1px}.tablebox[data-v-1ce173bd]{margin-top:15px;padding-bottom:10px}.btnbox[data-v-1ce173bd]{padding:20px 0 0 30px}.btnbox .btns[data-v-1ce173bd]{width:99px;height:32px;background:#1890ff;border-radius:4px;text-align:center;line-height:32px;color:#fff;cursor:pointer}.table[data-v-1ce173bd]{padding:0 30px 15px 30px}

View File

@ -1 +0,0 @@
[data-v-6254bfc0] .ivu-form-item-content{line-height:unset!important}

View File

@ -1 +0,0 @@
.upload-box[data-v-8786f264]{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:60px;height:60px;background:#ccc}.box[data-v-8786f264],.upload-box[data-v-8786f264]{display:-webkit-box;display:-ms-flexbox;display:flex}.box[data-v-8786f264]{-ms-flex-wrap:wrap;flex-wrap:wrap}.box .box-item[data-v-8786f264]{position:relative;margin-right:20px}.box .box-item .ivu-icon[data-v-8786f264]{position:absolute;right:-10px;top:-8px;color:#999;cursor:pointer}.box .box-item[data-v-8786f264],.box .upload-box[data-v-8786f264]{width:60px;height:60px;margin-bottom:10px}.box .box-item img[data-v-8786f264],.box .upload-box img[data-v-8786f264]{width:100%;height:100%}.active-btn[data-v-8786f264]{padding-left:96px}.table-box[data-v-8786f264]{margin:0 107px}.sub_btn[data-v-8786f264]{margin-top:10px}.product_box[data-v-8786f264]{display:-webkit-box;display:-ms-flexbox;display:flex}.product_box img[data-v-8786f264]{width:36px;height:36px;margin-right:10px}

View File

@ -0,0 +1 @@
.tabBox_img[data-v-3b3cad7a]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-3b3cad7a]{width:100%;height:100%}

View File

@ -0,0 +1 @@
.picBox[data-v-df3c530e]{display:inline-block;cursor:pointer}.picBox .upLoad[data-v-df3c530e]{width:58px;height:58px;line-height:58px;border:1px dotted rgba(0,0,0,.1);border-radius:4px;background:rgba(0,0,0,.02)}.picBox .pictrue[data-v-df3c530e]{width:60px;height:60px;border:1px dotted rgba(0,0,0,.1);margin-right:10px}.picBox .pictrue img[data-v-df3c530e]{width:100%;height:100%}.picBox .iconfont[data-v-df3c530e]{color:#898989}.mapBox[data-v-df3c530e] .ivu-modal-body{height:640px!important}.btn[data-v-df3c530e]{margin:0 auto;width:40%}.tabBox_img[data-v-18cc0daa]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-18cc0daa]{width:100%;height:100%}

View File

@ -1 +0,0 @@
[data-v-29332431] .ivu-tag-cyan .ivu-tag-text{color:#19be6b!important}.ivu-tag-cyan[data-v-29332431]{background:rgba(25,190,170,.1);border-color:#19be6b!important}.tabBox_img[data-v-29332431]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-29332431]{width:100%;height:100%}

View File

@ -0,0 +1 @@
.showOn[data-v-2b497c04]{color:#2d8cf0;background:#f0faff;z-index:2}.tabBox_img[data-v-2b497c04]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-2b497c04]{width:100%;height:100%}.modelBox .ivu-table-header[data-v-2b497c04],.modelBox[data-v-2b497c04]{width:100%!important}.trees-coadd[data-v-2b497c04]{width:100%;height:385px}.trees-coadd .scollhide[data-v-2b497c04]{width:100%;height:100%;overflow-x:hidden;overflow-y:scroll}.scollhide[data-v-2b497c04]::-webkit-scrollbar{display:none}[data-v-2b497c04] .ivu-menu-vertical .ivu-menu-item-group-title,[data-v-2b497c04] .ivu-menu-vertical.ivu-menu-light:after{display:none}.left-wrapper[data-v-2b497c04]{height:904px;background:#fff;border-right:1px solid #dcdee2}.menu-item[data-v-2b497c04]{z-index:50;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;word-break:break-all}.menu-item .icon-box[data-v-2b497c04]{z-index:3;position:absolute;right:20px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);display:none}.menu-item:hover .icon-box[data-v-2b497c04]{display:block}.menu-item .right-menu[data-v-2b497c04]{z-index:10;position:absolute;right:-106px;top:-11px;width:auto;min-width:121px}

View File

@ -1 +0,0 @@
.v-transfer-dom[data-v-7423233c] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-7423233c]{margin-bottom:14px}.radio[data-v-7423233c] .name{width:125px;text-align:right;padding-right:12px}

View File

@ -1 +0,0 @@
.v-transfer-dom[data-v-7423233c] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-7423233c]{margin-bottom:14px}.radio[data-v-7423233c] .name{width:125px;text-align:right;padding-right:12px}.tabBox_img[data-v-38daf2ef]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-38daf2ef]{width:100%;height:100%}

View File

@ -1 +0,0 @@
.tabBox_img[data-v-5baf20da]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-5baf20da]{width:100%;height:100%}

View File

@ -1 +0,0 @@
.card_box_cir1[data-v-2907c959] .ivu-icon{font-size:26px;color:#fff}.one[data-v-2907c959]{background:#e4ecff}.two[data-v-2907c959]{background:#fff3e0}.three[data-v-2907c959]{background:#eaf9e1}.four[data-v-2907c959]{background:#ffeaf4}.five[data-v-2907c959]{background:#f1e4ff}.one1[data-v-2907c959]{background:#4d7cfe}.two1[data-v-2907c959]{background:#ffab2b}.three1[data-v-2907c959]{background:#6dd230}.four1[data-v-2907c959]{background:#ff85c0}.five1[data-v-2907c959]{background:#b37feb}.card_box[data-v-2907c959]{width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:25px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px}.card_box .card_box_cir[data-v-2907c959]{width:60px;height:60px;overflow:hidden;margin-right:20px}.card_box .card_box_cir .card_box_cir1[data-v-2907c959],.card_box .card_box_cir[data-v-2907c959]{border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.card_box .card_box_cir .card_box_cir1[data-v-2907c959]{width:48px;height:48px}.card_box .card_box_txt .sp1[data-v-2907c959]{display:block;color:#252631;font-size:24px}.card_box .card_box_txt .sp2[data-v-2907c959]{display:block;color:#98a9bc;font-size:12px}.tab_data[data-v-19570639] .ivu-form-item-content{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.z-price[data-v-19570639]{color:red}.f-price[data-v-19570639]{color:green}

View File

@ -0,0 +1 @@
.v-transfer-dom[data-v-b7e28f56] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-b7e28f56]{margin-bottom:14px}.radio[data-v-b7e28f56] .name{width:125px;text-align:right;padding-right:12px}[data-v-db256bc4] .ivu-menu-vertical .ivu-menu-item-group-title,[data-v-db256bc4] .ivu-menu-vertical.ivu-menu-light:after{display:none}.left-wrapper[data-v-db256bc4]{height:904px;background:#fff;border-right:1px solid #dcdee2}.menu-item[data-v-db256bc4]{z-index:50;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;word-break:break-all}.menu-item .icon-box[data-v-db256bc4]{z-index:3;position:absolute;right:20px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);display:none}.menu-item:hover .icon-box[data-v-db256bc4]{display:block}.menu-item .right-menu[data-v-db256bc4]{z-index:10;position:absolute;right:-106px;top:-11px;width:auto;min-width:121px}.tabBox_img[data-v-db256bc4]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-db256bc4]{width:100%;height:100%}

View File

@ -0,0 +1 @@
.card_box_cir1[data-v-6f23132f] .ivu-icon{font-size:26px;color:#fff}.one[data-v-6f23132f]{background:#e4ecff}.two[data-v-6f23132f]{background:#fff3e0}.three[data-v-6f23132f]{background:#eaf9e1}.four[data-v-6f23132f]{background:#ffeaf4}.five[data-v-6f23132f]{background:#f1e4ff}.one1[data-v-6f23132f]{background:#4d7cfe}.two1[data-v-6f23132f]{background:#ffab2b}.three1[data-v-6f23132f]{background:#6dd230}.four1[data-v-6f23132f]{background:#ff85c0}.five1[data-v-6f23132f]{background:#b37feb}.card_box[data-v-6f23132f]{width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:25px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px}.card_box .card_box_cir[data-v-6f23132f]{width:60px;height:60px;overflow:hidden;margin-right:20px}.card_box .card_box_cir .card_box_cir1[data-v-6f23132f],.card_box .card_box_cir[data-v-6f23132f]{border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.card_box .card_box_cir .card_box_cir1[data-v-6f23132f]{width:48px;height:48px}.card_box .card_box_txt .sp1[data-v-6f23132f]{display:block;color:#252631;font-size:24px}.card_box .card_box_txt .sp2[data-v-6f23132f]{display:block;color:#98a9bc;font-size:12px}.Modals[data-v-211bf846]{width:100%;border:1px solid #e8eaec}.Modals .header[data-v-211bf846]{background-color:#f5f5f5;padding:10px 15px}.Modals .header .pictrue[data-v-211bf846]{width:50px;height:50px;border-radius:50%}.Modals .header .pictrue img[data-v-211bf846]{width:100%;height:100%;border-radius:50%}.Modals .header .name[data-v-211bf846]{color:#333;margin-left:15px}.Modals .list .item .name.money[data-v-211bf846]{color:#ff0005!important}.Modals .list .item .name.commission[data-v-211bf846]{color:green!important}.Modals .list .item[data-v-211bf846]{border-top:1px solid #e8eaec}.Modals .list .item .name[data-v-211bf846]{padding:10px 15px;width:50%}img[data-v-3a21ace2]{height:36px;display:block}.tabBox[data-v-3a21ace2]{width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tabBox .tabBox_img[data-v-3a21ace2]{width:36px;height:36px}.tabBox .tabBox_img img[data-v-3a21ace2]{width:100%;height:100%}.tabBox .tabBox_tit[data-v-3a21ace2]{width:60%;font-size:12px!important;margin:0 2px 0 10px;letter-spacing:1px;padding:5px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.orderData[data-v-3a21ace2] .ivu-table-cell{padding-left:0!important}.vertical-center-modal[data-v-3a21ace2]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ivu-mt a[data-v-3a21ace2]{color:#515a6e}.ivu-mt a[data-v-3a21ace2]:hover{color:#2d8cf0}

View File

@ -0,0 +1 @@
.content_font[data-v-40fcaafb]{color:#2b85e4}.search[data-v-40fcaafb] .ivu-form-item-content{margin-left:0!important}.ivu-mt .Button .bnt[data-v-40fcaafb]{margin-right:6px}.ivu-mt .ivu-table-row[data-v-40fcaafb]{font-size:12px;color:rgba(0,0,0,.65)}.ivu-mt[data-v-40fcaafb] .ivu-table-cell{padding:10px 0!important}.pictrue[data-v-40fcaafb]{width:36px;height:36px;display:inline-block;cursor:pointer}.pictrue img[data-v-40fcaafb]{width:100%;height:100%;display:block;-o-object-fit:cover;object-fit:cover}.ivu-mt .imgPic .info[data-v-40fcaafb]{width:60%;margin-left:10px}.ivu-mt .picList .pictrue[data-v-40fcaafb]{height:36px;margin:7px 3px 0 3px}.ivu-mt .picList .pictrue img[data-v-40fcaafb]{height:100%;display:block}

View File

@ -1 +0,0 @@
.customer[data-v-0fbf76ea]{overflow-y:auto;overflow-x:hidden;height:500px}.tabBox_img[data-v-0fbf76ea]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-0fbf76ea]{width:100%;height:100%}.modelBox .ivu-table-header[data-v-0fbf76ea],.modelBox[data-v-0fbf76ea]{width:100%!important}.trees-coadd[data-v-0fbf76ea]{width:100%;height:385px}.trees-coadd .scollhide[data-v-0fbf76ea]{width:100%;height:100%;overflow-x:hidden;overflow-y:scroll}.scollhide[data-v-0fbf76ea]::-webkit-scrollbar{display:none}.footer[data-v-0fbf76ea]{margin:15px 0;padding-right:20px}

View File

@ -0,0 +1 @@
.list[data-v-7af02477]{height:80%;min-height:500px}.pictrue[data-v-7af02477]{width:100%;max-width:300px;height:360px}.right[data-v-7af02477]{padding-right:75px}.left[data-v-7af02477]{padding-left:75px}.num[data-v-7af02477]{margin-bottom:24px;color:#515a6e;font-weight:600;font-size:72px;line-height:72px}.desc[data-v-7af02477]{margin-bottom:16px;color:#808695;font-size:20px;line-height:28px}

View File

@ -0,0 +1 @@
.tabBox_img[data-v-2a149393]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-2a149393]{width:100%;height:100%}

View File

@ -0,0 +1 @@
.picBox[data-v-2366dcf6]{display:inline-block;cursor:pointer}.form .goodsTitle[data-v-2366dcf6]{border-bottom:1px solid rgba(0,0,0,.09);margin-bottom:25px}.form .goodsTitle~.goodsTitle[data-v-2366dcf6]{margin-top:20px}.form .goodsTitle .title[data-v-2366dcf6]{border-bottom:2px solid #1890ff;padding:0 8px 12px 5px;color:#000;font-size:14px}.form .goodsTitle .icons[data-v-2366dcf6]{font-size:15px;margin-right:8px;color:#999}.form .add[data-v-2366dcf6]{font-size:12px;color:#1890ff;padding:0 12px;cursor:pointer}.form .radio[data-v-2366dcf6]{margin-right:20px}.form .submission[data-v-2366dcf6]{width:10%;margin-left:27px}.form .upLoad[data-v-2366dcf6]{width:58px;height:58px;line-height:58px;border:1px dotted rgba(0,0,0,.1);border-radius:4px;background:rgba(0,0,0,.02)}.form .iconfont[data-v-2366dcf6]{color:#898989}.form .pictrue[data-v-2366dcf6]{width:60px;height:60px;border:1px dotted rgba(0,0,0,.1);margin-right:10px}.form .pictrue img[data-v-2366dcf6]{width:100%;height:100%}.Modals .address[data-v-2366dcf6]{width:90%}.Modals .address .iconfont[data-v-2366dcf6]{font-size:20px}

View File

@ -0,0 +1 @@
.QRpic[data-v-76de2514]{width:180px;height:180px}.QRpic img[data-v-76de2514]{width:100%;height:100%}.upload-box[data-v-76de2514]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:60px;height:60px;background:#ccc}.box[data-v-76de2514]{width:60px;height:60px;margin-bottom:10px}.box img[data-v-76de2514]{width:100%;height:100%}

View File

@ -1 +0,0 @@
.v-transfer-dom[data-v-7423233c] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-7423233c]{margin-bottom:14px}.radio[data-v-7423233c] .name{width:125px;text-align:right;padding-right:12px}.ivu-col:first-of-type .ivu-form-item .ivu-form-item-label[data-v-0177bb0e]{width:80px!important}.ivu-col:first-of-type .ivu-form-item .ivu-form-item-content[data-v-0177bb0e]{margin-left:80px!important}

View File

@ -1 +0,0 @@
.v-transfer-dom[data-v-7423233c] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-7423233c]{margin-bottom:14px}.radio[data-v-7423233c] .name{width:125px;text-align:right;padding-right:12px}.tabsName[data-v-5ecde0e2]{margin-bottom:15px}.valBox[data-v-5ecde0e2]{margin:10px 0}.valPicbox[data-v-5ecde0e2]{border:1px solid #e7eaec}.valPicbox_pic[data-v-5ecde0e2]{width:200px;height:100px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.valPicbox_pic img[data-v-5ecde0e2]{width:100%;height:100%}.valPicbox_pic[data-v-5ecde0e2] .ivu-icon-md-document{font-size:70px;color:#dadada}.valPicbox_sp[data-v-5ecde0e2]{display:block;font-size:12px;width:200px;padding:7px;-webkit-box-sizing:border-box;box-sizing:border-box;border-top:1px solid #e7eaec}

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
.number{font-size:30px;margin-bottom:10px}.iconColor{color:#ed4014}.iconColor.on{color:#19be6b}.ivu-mr{margin-right:16px!important}.ivu-text-right{text-align:right}.dashboard-console-grid{text-align:center}.dashboard-console-grid .ivu-card-body{padding:0}.dashboard-console-grid i{font-size:32px}.dashboard-console-grid a{display:block;color:inherit;padding:16px}.dashboard-console-grid p{margin-top:8px}.dashboard-console-visit ul li[data-v-298839c5]{list-style-type:none;margin-top:12px}.ivu-text-right[data-v-298839c5]{text-align:right}.ivu-pl-8[data-v-298839c5]{padding-left:8px!important}.dashboard-console-visit ul li[data-v-3ddf289b]{list-style-type:none;margin-top:12px}.trees-coadd[data-v-3ddf289b]{width:100%;height:100%}.trees-coadd .scollhide[data-v-3ddf289b]{width:100%;height:100%;overflow-x:hidden;overflow-y:scroll}.scollhide[data-v-3ddf289b]::-webkit-scrollbar{display:none}.names[data-v-3ddf289b]{display:inline-block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;width:84%;margin-bottom:-7px}.dashboard-console-user-gender-grid .ivu-grid-item-main{height:100%}.dashboard-console-user-gender-grid span{display:block;height:100%;border-radius:2px;opacity:.75}.dashboard-console-user-preference{height:100%;background-repeat:no-repeat;background-size:cover;background-position:50%}.dashboard-console-visit .ivu-radio-group-button .ivu-radio-wrapper{border:none!important;-webkit-box-shadow:none!important;box-shadow:none!important;padding:0 12px}.dashboard-console-visit .ivu-radio-group-button .ivu-radio-wrapper:after,.dashboard-console-visit .ivu-radio-group-button .ivu-radio-wrapper:before{display:none}
.number{font-size:30px;margin-bottom:10px}.iconColor{color:#ed4014}.iconColor.on{color:#19be6b}.ivu-mr{margin-right:16px!important}.ivu-text-right{text-align:right}.dashboard-console-grid{text-align:center}.dashboard-console-grid .ivu-card-body{padding:0}.dashboard-console-grid i{font-size:32px}.dashboard-console-grid a{display:block;color:inherit;padding:16px}.dashboard-console-grid p{margin-top:8px}.dashboard-console-visit ul li[data-v-557a4ac0]{list-style-type:none;margin-top:12px}.ivu-text-right[data-v-557a4ac0]{text-align:right}.ivu-pl-8[data-v-557a4ac0]{padding-left:8px!important}.dashboard-console-visit ul li[data-v-a9ec54a8]{list-style-type:none;margin-top:12px}.trees-coadd[data-v-a9ec54a8]{width:100%;height:100%}.trees-coadd .scollhide[data-v-a9ec54a8]{width:100%;height:100%;overflow-x:hidden;overflow-y:scroll}.scollhide[data-v-a9ec54a8]::-webkit-scrollbar{display:none}.names[data-v-a9ec54a8]{display:inline-block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;width:84%;margin-bottom:-7px}.dashboard-console-user-gender-grid .ivu-grid-item-main{height:100%}.dashboard-console-user-gender-grid span{display:block;height:100%;border-radius:2px;opacity:.75}.dashboard-console-user-preference{height:100%;background-repeat:no-repeat;background-size:cover;background-position:50%}.dashboard-console-visit .ivu-radio-group-button .ivu-radio-wrapper{border:none!important;-webkit-box-shadow:none!important;box-shadow:none!important;padding:0 12px}.dashboard-console-visit .ivu-radio-group-button .ivu-radio-wrapper:after,.dashboard-console-visit .ivu-radio-group-button .ivu-radio-wrapper:before{display:none}

View File

@ -0,0 +1 @@
.showOn[data-v-8acddb4e]{color:#2d8cf0;background:#f0faff;z-index:2}.tabBox_img[data-v-8acddb4e]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-8acddb4e]{width:100%;height:100%}.modelBox .ivu-table-header[data-v-8acddb4e],.modelBox[data-v-8acddb4e]{width:100%!important}.trees-coadd[data-v-8acddb4e]{width:100%;height:385px}.trees-coadd .scollhide[data-v-8acddb4e]{width:100%;height:100%;overflow-x:hidden;overflow-y:scroll}.scollhide[data-v-8acddb4e]::-webkit-scrollbar{display:none}[data-v-8acddb4e] .ivu-menu-vertical .ivu-menu-item-group-title,[data-v-8acddb4e] .ivu-menu-vertical.ivu-menu-light:after{display:none}.left-wrapper[data-v-8acddb4e]{height:904px;background:#fff;border-right:1px solid #dcdee2}.menu-item[data-v-8acddb4e]{z-index:50;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;word-break:break-all}.menu-item .icon-box[data-v-8acddb4e]{z-index:3;position:absolute;right:20px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);display:none}.menu-item:hover .icon-box[data-v-8acddb4e]{display:block}.menu-item .right-menu[data-v-8acddb4e]{z-index:10;position:absolute;right:-106px;top:-11px;width:auto;min-width:121px}

View File

@ -0,0 +1 @@
.tabBox_img[data-v-593c4c69]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-593c4c69]{width:100%;height:100%}

View File

@ -0,0 +1 @@
[data-v-65fb9f13] .ivu-table-cell-tree{border:0;font-size:15px;background-color:unset}[data-v-65fb9f13] .ivu-table-cell-tree .ivu-icon-ios-add:before{content:"\F11F"}[data-v-65fb9f13] .ivu-table-cell-tree .ivu-icon-ios-remove:before{content:"\F116"}.button[data-v-65fb9f13]{width:300px}

View File

@ -0,0 +1 @@
.box-container[data-v-715d3f0a]{overflow:hidden}.box-container .list[data-v-715d3f0a]{float:left;line-height:40px;margin-bottom:20px}.box-container .sp[data-v-715d3f0a]{width:50%}.box-container .sp3[data-v-715d3f0a]{width:33.3333%}.box-container .sp100[data-v-715d3f0a]{width:100%}.box-container .list .name[data-v-715d3f0a]{display:inline-block;width:150px;text-align:right;color:#606266}.box-container .list img[data-v-715d3f0a]{width:80px;height:80px}.box-container .list .blue[data-v-715d3f0a]{color:#1890ff}.box-container .list.image[data-v-715d3f0a]{margin-bottom:40px}.box-container .list.image img[data-v-715d3f0a]{position:relative;top:40px}.el-textarea[data-v-715d3f0a]{width:400px}.product_box[data-v-673c3b45]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.product_box img[data-v-673c3b45]{width:36px;height:36px}.product_box .txt[data-v-673c3b45]{margin-left:10px;color:#000;font-size:12px}

View File

@ -1 +0,0 @@
[data-v-2a27d45f] .ivu-table-cell-tree{border:0;font-size:15px;background-color:unset}[data-v-2a27d45f] .ivu-table-cell-tree .ivu-icon-ios-add:before{content:"\F11F"}[data-v-2a27d45f] .ivu-table-cell-tree .ivu-icon-ios-remove:before{content:"\F116"}.button[data-v-2a27d45f]{width:300px}

View File

@ -1 +0,0 @@
[data-v-47c26a61] .ivu-tag-cyan .ivu-tag-text{color:#19be6b!important}.ivu-tag-cyan[data-v-47c26a61]{background:rgba(25,190,170,.1);border-color:#19be6b!important}.tabBox_img[data-v-47c26a61]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-47c26a61]{width:100%;height:100%}

View File

@ -0,0 +1 @@
[data-v-6cb38316] .ivu-form-item-content{line-height:unset!important}

View File

@ -0,0 +1 @@
.box-container[data-v-8d335d3c]{overflow:hidden}.box-container .list[data-v-8d335d3c]{float:left;line-height:40px}.box-container .sp[data-v-8d335d3c]{width:50%}.box-container .sp3[data-v-8d335d3c]{width:33.3333%}.box-container .sp100[data-v-8d335d3c]{width:100%}.box-container .list .name[data-v-8d335d3c]{display:inline-block;width:150px;text-align:right;color:#606266}.box-container .list .blue[data-v-8d335d3c]{color:#1890ff}.box-container .list.image[data-v-8d335d3c]{margin-bottom:40px}.box-container .list.image img[data-v-8d335d3c]{position:relative;top:40px}.el-textarea[data-v-8d335d3c]{width:400px}.item[data-v-1ccddad0]{margin-bottom:10px}.upload-box[data-v-1ccddad0]{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:60px;height:60px;background:#ccc}.box[data-v-1ccddad0],.upload-box[data-v-1ccddad0]{display:-webkit-box;display:-ms-flexbox;display:flex}.box[data-v-1ccddad0]{-ms-flex-wrap:wrap;flex-wrap:wrap}.box .box-item[data-v-1ccddad0]{position:relative;margin-right:20px}.box .box-item .ivu-icon[data-v-1ccddad0]{position:absolute;right:-10px;top:-8px;color:#999;cursor:pointer}.box .box-item[data-v-1ccddad0],.box .upload-box[data-v-1ccddad0]{width:60px;height:60px;margin-bottom:10px}.box .box-item img[data-v-1ccddad0],.box .upload-box img[data-v-1ccddad0]{width:100%;height:100%}[data-v-22280def] .goodList .ivu-input-group{width:200%!important}

View File

@ -1 +0,0 @@
.trees-coadd[data-v-09392190]{width:100%;height:500px;border-radius:4px;overflow:hidden}.scollhide[data-v-09392190]{width:100%;height:100%;overflow:auto;margin-left:18px;padding:10px 0 10px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.content[data-v-09392190]{font-size:12px}.time[data-v-09392190]{font-size:12px;color:#2d8cf0}.icons-item[data-v-09392190]{float:left;margin:6px 6px 6px 0;width:53px;text-align:center;list-style:none;cursor:pointer;height:50px;color:#5c6b77;-webkit-transition:all .2s ease;transition:all .2s ease;position:relative;padding-top:10px}.icons-item .ivu-icon[data-v-09392190]{font-size:16px}.search-rule[data-v-09392190]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px;background-color:#f2f2f2}.rule[data-v-09392190]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;max-height:700px;overflow:scroll}.rule[data-v-09392190]::-webkit-scrollbar{width:10px;height:10px;background-color:#f5f5f5}.rule[data-v-09392190]::-webkit-scrollbar-track{border-radius:4px;background-color:#f5f5f5}.rule[data-v-09392190]::-webkit-scrollbar-thumb{border-radius:4px;background-color:#555}.rule-list[data-v-09392190]{background-color:#f2f2f2;width:32%;margin:5px;border-radius:3px;padding:10px;color:#333;cursor:pointer;-webkit-transition:all .1s;transition:all .1s}.rule-list[data-v-09392190]:hover{background-color:#c5d1dd}.rule-list div[data-v-09392190]{white-space:nowrap}.select-rule[data-v-09392190]{background-color:#c5d1dd}.add[data-v-09392190]{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.add[data-v-09392190],.df[data-v-09392190]{display:-webkit-box;display:-ms-flexbox;display:flex}.df[data-v-09392190]{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.vxeTable[data-v-8757a1aa] .vxe-table--header-wrapper{background:#fff!important}

View File

@ -0,0 +1 @@
.grey[data-v-154a2946]{color:#999}.maxW[data-v-154a2946] .ivu-select-dropdown{max-width:600px}.ivu-table-wrapper[data-v-154a2946]{border-left:1px solid #dcdee2;border-top:1px solid #dcdee2}.tabBox_img[data-v-154a2946]{width:50px;height:50px}.tabBox_img img[data-v-154a2946]{width:100%;height:100%}.priceBox[data-v-154a2946]{width:100%}.form .picBox[data-v-154a2946],.form .pictrue[data-v-154a2946]{display:inline-block;cursor:pointer}.form .pictrue[data-v-154a2946]{width:60px;height:60px;border:1px dotted rgba(0,0,0,.1);margin-right:15px;position:relative}.form .pictrue img[data-v-154a2946]{width:100%;height:100%}.form .pictrue .btndel[data-v-154a2946]{position:absolute;z-index:9;width:20px!important;height:20px!important;left:46px;top:-4px}.form .upLoad[data-v-154a2946]{width:58px;height:58px;line-height:58px;border:1px dotted rgba(0,0,0,.1);border-radius:4px;background:rgba(0,0,0,.02);cursor:pointer}.form .col[data-v-154a2946]{color:#2d8cf0;cursor:pointer}

View File

@ -1 +0,0 @@
.content_font[data-v-e2c22e3e]{color:#2b85e4}.search[data-v-e2c22e3e] .ivu-form-item-content{margin-left:0!important}.ivu-mt .Button .bnt[data-v-e2c22e3e]{margin-right:6px}.ivu-mt .ivu-table-row[data-v-e2c22e3e]{font-size:12px;color:rgba(0,0,0,.65)}.ivu-mt[data-v-e2c22e3e] .ivu-table-cell{padding:10px 0!important}.pictrue[data-v-e2c22e3e]{width:36px;height:36px;display:inline-block;cursor:pointer}.pictrue img[data-v-e2c22e3e]{width:100%;height:100%;display:block;-o-object-fit:cover;object-fit:cover}.ivu-mt .imgPic .info[data-v-e2c22e3e]{width:60%;margin-left:10px}.ivu-mt .picList .pictrue[data-v-e2c22e3e]{height:36px;margin:7px 3px 0 3px}.ivu-mt .picList .pictrue img[data-v-e2c22e3e]{height:100%;display:block}

View File

@ -1 +0,0 @@
.v-transfer-dom[data-v-7423233c] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-7423233c]{margin-bottom:14px}.radio[data-v-7423233c] .name{width:125px;text-align:right;padding-right:12px}.tabBox_img[data-v-57c01a1c]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-57c01a1c]{width:100%;height:100%}

View File

@ -1 +0,0 @@
.v-transfer-dom[data-v-7423233c] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-7423233c]{margin-bottom:14px}.radio[data-v-7423233c] .name{width:125px;text-align:right;padding-right:12px}.sp[data-v-6312e075]{line-height:32px}.Refresh[data-v-2f23b5af]{font-size:12px;color:#1890ff;cursor:pointer}.userFrom[data-v-2f23b5af] .ivu-form-item-content{margin-left:0!important}.tabBox_img[data-v-2f23b5af]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-2f23b5af]{width:100%;height:100%}.subscribe_box[data-v-2f23b5af] .ivu-form-item-label{width:110px!important}.subscribe_box[data-v-2f23b5af] .ivu-form-item-content{margin-left:110px!important}.sex_box[data-v-2f23b5af] .ivu-form-item-label{width:60px!important}.sex_box[data-v-2f23b5af] .ivu-form-item-content{margin-left:60px!important}.btn_box[data-v-2f23b5af] .ivu-form-item-content{margin-left:0!important}.modelBox[data-v-2f23b5af] .ivu-modal-body{padding:0 16px 16px 16px!important}

View File

@ -1 +1 @@
.block{position:absolute;left:0;top:0;cursor:pointer;cursor:-webkit-grab;cursor:grab}.block:active{cursor:-webkit-grabbing;cursor:grabbing}.sliderContainer{position:relative;text-align:center;width:310px;height:40px;line-height:40px;margin-top:15px;background:#f7f9fa;color:#45494c;border:1px solid #e4e7eb}.sliderContainer_active .slider{height:38px;top:-1px;border:1px solid #1991fa}.sliderContainer_active .sliderMask{height:38px;border-width:1px}.sliderContainer_success .slider{height:38px;top:-1px;border:1px solid #52ccba;background-color:#52ccba!important}.sliderContainer_success .sliderMask{height:38px;border:1px solid #52ccba;background-color:#d2f4ef}.sliderContainer_success .sliderIcon{background-position:0 0!important}.sliderContainer_fail .slider{height:38px;top:-1px;border:1px solid #f57a7a;background-color:#f57a7a!important}.sliderContainer_fail .sliderMask{height:38px;border:1px solid #f57a7a;background-color:#fce1e1}.sliderContainer_fail .sliderIcon{top:14px;background-position:0 -82px!important}.sliderContainer_active .sliderText,.sliderContainer_fail .sliderText,.sliderContainer_success .sliderText{display:none}.sliderMask{border:0 solid #1991fa;background:#d1e9fe}.slider,.sliderMask{position:absolute;left:0;top:0;height:40px}.slider{width:40px;background:#fff;-webkit-box-shadow:0 0 3px rgba(0,0,0,.3);box-shadow:0 0 3px rgba(0,0,0,.3);-webkit-transition:background .2s linear;transition:background .2s linear;cursor:pointer;cursor:-webkit-grab;cursor:grab}.slider:active{cursor:-webkit-grabbing;cursor:grabbing}.slider:hover{background:#1991fa}.slider:hover .sliderIcon{background-position:0 -13px}.sliderIcon{position:absolute;top:15px;left:13px;width:14px;height:12px;background:url(http://cstaticdun.126.net//2.6.3/images/icon_light.f13cff3.png) 0 -26px;background-size:34px 471px}.refreshIcon{position:absolute;right:0;top:0;width:34px;height:34px;cursor:pointer;background:url(http://cstaticdun.126.net//2.6.3/images/icon_light.f13cff3.png) 0 -437px;background-size:34px 471px}.page-account[data-v-17c356d2]{width:100%;background-image:url(../img/bg.33ece377.jpg);background-size:cover;background-position:50%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100vh;overflow:auto}.page-account .code[data-v-17c356d2],.page-account[data-v-17c356d2]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.page-account .code .pictrue[data-v-17c356d2]{height:40px}.swiperPross[data-v-17c356d2]{border-radius:12px 0 0 12px}.swiperPic[data-v-17c356d2],.swiperPic img[data-v-17c356d2],.swiperPross[data-v-17c356d2]{width:510px;height:100%}.swiperPic img[data-v-17c356d2]{width:100%;height:100%}.container[data-v-17c356d2]{height:400px!important;padding:0!important;border-radius:12px;z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex}.containerSamll[data-v-17c356d2]{background:#fff!important}.containerBig[data-v-17c356d2]{width:auto!important;background:#f7f7f7!important}.index_from[data-v-17c356d2]{padding:0 40px 32px 40px;height:400px;-webkit-box-sizing:border-box;box-sizing:border-box}.page-account-top[data-v-17c356d2]{padding:20px 0!important;-webkit-box-sizing:border-box!important;box-sizing:border-box!important;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.page-account-container[data-v-17c356d2]{border-radius:0 6px 6px 0}.btn[data-v-17c356d2]{background:-webkit-gradient(linear,left top,right top,from(#19b4f1),to(#0e73e8))!important;background:linear-gradient(90deg,#19b4f1,#0e73e8)!important}.captchaBox[data-v-17c356d2]{width:310px}input[data-v-17c356d2]{display:block;width:290px;line-height:40px;margin:10px 0;padding:0 10px;outline:none;border:1px solid #c8cccf;border-radius:4px;color:#6a6f77}#msg[data-v-17c356d2]{width:100%;line-height:40px;font-size:14px;text-align:center}a[data-v-17c356d2]:active,a[data-v-17c356d2]:hover,a[data-v-17c356d2]:link,a[data-v-17c356d2]:visited{margin-left:100px;color:#0366d6}.index_from[data-v-17c356d2] .ivu-input-large{font-size:14px!important}.from-wh[data-v-17c356d2]{width:400px}
.block{position:absolute;left:0;top:0;cursor:pointer;cursor:-webkit-grab;cursor:grab}.block:active{cursor:-webkit-grabbing;cursor:grabbing}.sliderContainer{position:relative;text-align:center;width:310px;height:40px;line-height:40px;margin-top:15px;background:#f7f9fa;color:#45494c;border:1px solid #e4e7eb}.sliderContainer_active .slider{height:38px;top:-1px;border:1px solid #1991fa}.sliderContainer_active .sliderMask{height:38px;border-width:1px}.sliderContainer_success .slider{height:38px;top:-1px;border:1px solid #52ccba;background-color:#52ccba!important}.sliderContainer_success .sliderMask{height:38px;border:1px solid #52ccba;background-color:#d2f4ef}.sliderContainer_success .sliderIcon{background-position:0 0!important}.sliderContainer_fail .slider{height:38px;top:-1px;border:1px solid #f57a7a;background-color:#f57a7a!important}.sliderContainer_fail .sliderMask{height:38px;border:1px solid #f57a7a;background-color:#fce1e1}.sliderContainer_fail .sliderIcon{top:14px;background-position:0 -82px!important}.sliderContainer_active .sliderText,.sliderContainer_fail .sliderText,.sliderContainer_success .sliderText{display:none}.sliderMask{border:0 solid #1991fa;background:#d1e9fe}.slider,.sliderMask{position:absolute;left:0;top:0;height:40px}.slider{width:40px;background:#fff;-webkit-box-shadow:0 0 3px rgba(0,0,0,.3);box-shadow:0 0 3px rgba(0,0,0,.3);-webkit-transition:background .2s linear;transition:background .2s linear;cursor:pointer;cursor:-webkit-grab;cursor:grab}.slider:active{cursor:-webkit-grabbing;cursor:grabbing}.slider:hover{background:#1991fa}.slider:hover .sliderIcon{background-position:0 -13px}.sliderIcon{position:absolute;top:15px;left:13px;width:14px;height:12px;background:url(http://cstaticdun.126.net//2.6.3/images/icon_light.f13cff3.png) 0 -26px;background-size:34px 471px}.refreshIcon{position:absolute;right:0;top:0;width:34px;height:34px;cursor:pointer;background:url(http://cstaticdun.126.net//2.6.3/images/icon_light.f13cff3.png) 0 -437px;background-size:34px 471px}.page-account[data-v-25d89f1c]{width:100%;background-image:url(../img/bg.33ece377.jpg);background-size:cover;background-position:50%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100vh;overflow:auto}.page-account .code[data-v-25d89f1c],.page-account[data-v-25d89f1c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.page-account .code .pictrue[data-v-25d89f1c]{height:40px}.swiperPross[data-v-25d89f1c]{border-radius:12px 0 0 12px}.swiperPic[data-v-25d89f1c],.swiperPic img[data-v-25d89f1c],.swiperPross[data-v-25d89f1c]{width:510px;height:100%}.swiperPic img[data-v-25d89f1c]{width:100%;height:100%}.container[data-v-25d89f1c]{height:400px!important;padding:0!important;border-radius:12px;z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex}.containerSamll[data-v-25d89f1c]{background:#fff!important}.containerBig[data-v-25d89f1c]{width:auto!important;background:#f7f7f7!important}.index_from[data-v-25d89f1c]{padding:0 40px 32px 40px;height:400px;-webkit-box-sizing:border-box;box-sizing:border-box}.page-account-top[data-v-25d89f1c]{padding:20px 0!important;-webkit-box-sizing:border-box!important;box-sizing:border-box!important;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.page-account-container[data-v-25d89f1c]{border-radius:0 6px 6px 0}.btn[data-v-25d89f1c]{background:-webkit-gradient(linear,left top,right top,from(#19b4f1),to(#0e73e8))!important;background:linear-gradient(90deg,#19b4f1,#0e73e8)!important}.captchaBox[data-v-25d89f1c]{width:310px}input[data-v-25d89f1c]{display:block;width:290px;line-height:40px;margin:10px 0;padding:0 10px;outline:none;border:1px solid #c8cccf;border-radius:4px;color:#6a6f77}#msg[data-v-25d89f1c]{width:100%;line-height:40px;font-size:14px;text-align:center}a[data-v-25d89f1c]:active,a[data-v-25d89f1c]:hover,a[data-v-25d89f1c]:link,a[data-v-25d89f1c]:visited{margin-left:100px;color:#0366d6}.index_from[data-v-25d89f1c] .ivu-input-large{font-size:14px!important}.from-wh[data-v-25d89f1c]{width:400px}

View File

@ -0,0 +1 @@
.card_box_cir1[data-v-6f23132f] .ivu-icon{font-size:26px;color:#fff}.one[data-v-6f23132f]{background:#e4ecff}.two[data-v-6f23132f]{background:#fff3e0}.three[data-v-6f23132f]{background:#eaf9e1}.four[data-v-6f23132f]{background:#ffeaf4}.five[data-v-6f23132f]{background:#f1e4ff}.one1[data-v-6f23132f]{background:#4d7cfe}.two1[data-v-6f23132f]{background:#ffab2b}.three1[data-v-6f23132f]{background:#6dd230}.four1[data-v-6f23132f]{background:#ff85c0}.five1[data-v-6f23132f]{background:#b37feb}.card_box[data-v-6f23132f]{width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:25px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px}.card_box .card_box_cir[data-v-6f23132f]{width:60px;height:60px;overflow:hidden;margin-right:20px}.card_box .card_box_cir .card_box_cir1[data-v-6f23132f],.card_box .card_box_cir[data-v-6f23132f]{border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.card_box .card_box_cir .card_box_cir1[data-v-6f23132f]{width:48px;height:48px}.card_box .card_box_txt .sp1[data-v-6f23132f]{display:block;color:#252631;font-size:24px}.card_box .card_box_txt .sp2[data-v-6f23132f]{display:block;color:#98a9bc;font-size:12px}.cl[data-v-394b0e8c]{margin-right:20px}.code-row-bg[data-v-394b0e8c]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.code-row-bg .ivu-mt[data-v-394b0e8c]{width:100%;margin:0 5px}

View File

@ -0,0 +1 @@
.maxInpt[data-v-771c89f6]{max-width:400px;margin-left:auto;margin-right:auto}.page-account-container[data-v-771c89f6]{text-align:center;padding:50px 0}.page-account-top[data-v-771c89f6]{margin-bottom:20px}.page-account-top-tit[data-v-771c89f6]{font-size:21px;color:#1890ff}.page-account-other[data-v-771c89f6]{text-align:center;color:#1890ff;font-size:12px}.page-account-other span[data-v-771c89f6]{cursor:pointer}.maxInpt[data-v-65f41ccb]{max-width:400px;margin-left:auto;margin-right:auto}.code[data-v-65f41ccb]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ivu-steps-item[data-v-65f41ccb]:last-child{width:unset!important}.maxInpt[data-v-030c470f]{max-width:400px;margin-left:auto;margin-right:auto}.page-account-container[data-v-030c470f]{text-align:center;padding:50px 0}.page-account-top[data-v-030c470f]{margin-bottom:20px}.page-account-top-tit[data-v-030c470f]{font-size:21px;color:#1890ff}.page-account-other[data-v-030c470f]{text-align:center;color:#1890ff;font-size:12px}.page-account-other span[data-v-030c470f]{cursor:pointer}.code[data-v-030c470f]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.order_box[data-v-05d46382] .ivu-form-item-content{margin-left:50px!important}.maxInpt[data-v-05d46382]{max-width:400px;margin-left:auto;margin-right:auto}.smsBox .page-account-top[data-v-05d46382]{text-align:center;margin:70px 0 30px 0}.note[data-v-05d46382]{margin-top:15px}.tempId[data-v-05d46382],.tempImg[data-v-05d46382]{cursor:pointer;margin-left:11px;color:#1890ff}.tabBox_img[data-v-05d46382]{opacity:0;width:38px;height:30px;margin-top:-30px;cursor:pointer}.tabBox_img img[data-v-05d46382]{width:100%;height:100%}.width9[data-v-05d46382]{width:90%}.width10[data-v-05d46382],.wuBox[data-v-05d46382]{width:100%}.wuSp1[data-v-05d46382]{display:block;text-align:center;color:#000;font-size:21px;font-weight:500;line-height:32px;margin-top:23px;margin-bottom:5px}.wuSp2[data-v-05d46382]{opacity:1%;font-weight:400;color:#000;line-height:22px;margin-bottom:30px}.page-account-top-tit[data-v-05d46382]{font-size:21px;color:#1890ff}.wuTu[data-v-05d46382]{width:295px;height:164px;margin-top:54px}.wuTu img[data-v-05d46382]{width:100%;height:100%}.wuTu+span[data-v-05d46382]{margin-bottom:20px}@aaa .ivu-form-item-content{text-align:left!important}.maxInpt[data-v-2773a6dd]{max-width:400px;margin-left:auto;margin-right:auto}.code[data-v-2773a6dd]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.picTxt[data-v-3602c0dc]{padding:8px 0 12px}.dashboard[data-v-3602c0dc]{width:auto!important;min-width:300px}.header-extra[data-v-3602c0dc]{border-right:1px solid #e9e9e9;text-align:center;padding:0 18px}.page-account-top-tit[data-v-3602c0dc]{font-size:21px;color:#1890ff}.dashboard-workplace-header-avatar[data-v-3602c0dc]{width:64px;height:64px;border-radius:50%;margin-right:16px}.dashboard-workplace-header-tip[data-v-3602c0dc]{display:inline-block;vertical-align:middle}.dashboard-workplace-header-tip-title[data-v-3602c0dc]{font-size:20px;font-weight:700;margin-bottom:12px}.dashboard-workplace-header-tip-desc[data-v-3602c0dc]{color:#808695}.dashboard-workplace-header-extra[data-v-3602c0dc]{width:100%!important}.dashboard-workplace-header-extra .ivu-col p[data-v-3602c0dc]{text-align:right}.dashboard-workplace-header-extra .ivu-col p:first-child span[data-v-3602c0dc]:first-child{margin-right:4px}.dashboard-workplace-header-extra .ivu-col p:first-child span[data-v-3602c0dc]:last-child{color:#808695}.dashboard-workplace-header-extra .ivu-col p[data-v-3602c0dc]:last-child{font-size:22px}.conBox[data-v-3602c0dc] .ivu-page-header-extra{width:auto!important;min-width:457px}.conBox[data-v-3602c0dc] .ivu-page-header{padding:16px 0 0 32px!important}.samll_font[data-v-3602c0dc]{text-align:center;padding:0 10px}

View File

@ -1 +0,0 @@
.clear_tit[data-v-1ed3d614]{margin-top:150px}

View File

@ -0,0 +1 @@
.trees-coadd[data-v-c127a938]{width:100%;height:500px;border-radius:4px;overflow:hidden}.scollhide[data-v-c127a938]{width:100%;height:100%;overflow:auto;margin-left:18px;padding:10px 0 10px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.content[data-v-c127a938]{font-size:12px}.time[data-v-c127a938]{font-size:12px;color:#2d8cf0}.icons-item[data-v-c127a938]{float:left;margin:6px 6px 6px 0;width:53px;text-align:center;list-style:none;cursor:pointer;height:50px;color:#5c6b77;-webkit-transition:all .2s ease;transition:all .2s ease;position:relative;padding-top:10px}.icons-item .ivu-icon[data-v-c127a938]{font-size:16px}.search-rule[data-v-c127a938]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px;background-color:#f2f2f2}.rule[data-v-c127a938]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;max-height:700px;overflow:scroll}.rule[data-v-c127a938]::-webkit-scrollbar{width:10px;height:10px;background-color:#f5f5f5}.rule[data-v-c127a938]::-webkit-scrollbar-track{border-radius:4px;background-color:#f5f5f5}.rule[data-v-c127a938]::-webkit-scrollbar-thumb{border-radius:4px;background-color:#555}.rule-list[data-v-c127a938]{background-color:#f2f2f2;width:32%;margin:5px;border-radius:3px;padding:10px;color:#333;cursor:pointer;-webkit-transition:all .1s;transition:all .1s}.rule-list[data-v-c127a938]:hover{background-color:#c5d1dd}.rule-list div[data-v-c127a938]{white-space:nowrap}.select-rule[data-v-c127a938]{background-color:#c5d1dd}.add[data-v-c127a938]{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.add[data-v-c127a938],.df[data-v-c127a938]{display:-webkit-box;display:-ms-flexbox;display:flex}.df[data-v-c127a938]{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.vxeTable[data-v-02f345f4] .vxe-table--header-wrapper{background:#fff!important}

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
.v-transfer-dom[data-v-7423233c] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-7423233c]{margin-bottom:14px}.radio[data-v-7423233c] .name{width:125px;text-align:right;padding-right:12px}

View File

@ -1 +0,0 @@
.ivu-mt .type .item[data-v-6f63b690]{margin:3px 0}.tabform[data-v-6f63b690]{margin-bottom:10px}.Refresh[data-v-6f63b690]{font-size:12px;color:#1890ff;cursor:pointer}.ivu-form-item[data-v-6f63b690]{margin-bottom:10px}.status[data-v-6f63b690] .item~.item{margin-left:6px}.status[data-v-6f63b690] .statusVal{margin-bottom:7px}.type[data-v-6f63b690]{padding:3px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.tabBox_img[data-v-6f63b690]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-6f63b690]{width:100%;height:100%}.z-price[data-v-6f63b690]{color:red}.f-price[data-v-6f63b690]{color:green}

View File

@ -0,0 +1 @@
[data-v-4812ce1a] .ivu-form-item-content{line-height:unset!important}.picBox[data-v-4812ce1a]{display:inline-block;cursor:pointer}.form .goodsTitle[data-v-4812ce1a]{border-bottom:1px solid rgba(0,0,0,.09);margin-bottom:25px}.form .goodsTitle~.goodsTitle[data-v-4812ce1a]{margin-top:20px}.form .goodsTitle .title[data-v-4812ce1a]{border-bottom:2px solid #1890ff;padding:0 8px 12px 5px;color:#000;font-size:14px}.form .goodsTitle .icons[data-v-4812ce1a]{font-size:15px;margin-right:8px;color:#999}.form .add[data-v-4812ce1a]{font-size:12px;color:#1890ff;padding:0 12px;cursor:pointer}.form .radio[data-v-4812ce1a]{margin-right:20px}.form .submission[data-v-4812ce1a]{width:10%;margin-left:27px}.form .upLoad[data-v-4812ce1a]{width:58px;height:58px;line-height:58px;border:1px dotted rgba(0,0,0,.1);border-radius:4px;background:rgba(0,0,0,.02)}.form .iconfont[data-v-4812ce1a]{color:#898989}.form .pictrue[data-v-4812ce1a]{width:60px;height:60px;border:1px dotted rgba(0,0,0,.1);margin-right:10px}.form .pictrue img[data-v-4812ce1a]{width:100%;height:100%}.Modals .address[data-v-4812ce1a]{width:90%}.Modals .address .iconfont[data-v-4812ce1a]{font-size:20px}.tip[data-v-4812ce1a]{margin-top:10px;color:#bbb}

View File

@ -0,0 +1 @@
.card_box_cir1[data-v-6f23132f] .ivu-icon{font-size:26px;color:#fff}.one[data-v-6f23132f]{background:#e4ecff}.two[data-v-6f23132f]{background:#fff3e0}.three[data-v-6f23132f]{background:#eaf9e1}.four[data-v-6f23132f]{background:#ffeaf4}.five[data-v-6f23132f]{background:#f1e4ff}.one1[data-v-6f23132f]{background:#4d7cfe}.two1[data-v-6f23132f]{background:#ffab2b}.three1[data-v-6f23132f]{background:#6dd230}.four1[data-v-6f23132f]{background:#ff85c0}.five1[data-v-6f23132f]{background:#b37feb}.card_box[data-v-6f23132f]{width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:25px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px}.card_box .card_box_cir[data-v-6f23132f]{width:60px;height:60px;overflow:hidden;margin-right:20px}.card_box .card_box_cir .card_box_cir1[data-v-6f23132f],.card_box .card_box_cir[data-v-6f23132f]{border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.card_box .card_box_cir .card_box_cir1[data-v-6f23132f]{width:48px;height:48px}.card_box .card_box_txt .sp1[data-v-6f23132f]{display:block;color:#252631;font-size:24px}.card_box .card_box_txt .sp2[data-v-6f23132f]{display:block;color:#98a9bc;font-size:12px}.cl[data-v-f8973474]{margin-right:20px}.code-row-bg[data-v-f8973474]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.code-row-bg .ivu-mt[data-v-f8973474]{width:100%;margin:0 5px}.ech-box[data-v-f8973474]{margin-top:10px}.change-style[data-v-f8973474]{border:1px solid #ccc;border-radius:15px;padding:0 10px;cursor:pointer}.percent-box[data-v-f8973474]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-right:10px}.line[data-v-f8973474]{width:100%;position:relative}.bg[data-v-f8973474]{position:absolute;width:100%;height:8px;border-radius:8px;background-color:#f2f2f2}.percent[data-v-f8973474]{position:absolute;border-radius:5px;height:8px;background-color:#6495ed;z-index:9999}.num[data-v-f8973474]{white-space:nowrap;margin:0 10px;width:15px}

View File

@ -0,0 +1 @@
.ivu-mt .type .item[data-v-1251f548]{margin:3px 0}.tabform[data-v-1251f548]{margin-bottom:10px}.Refresh[data-v-1251f548]{font-size:12px;color:#1890ff;cursor:pointer}.ivu-form-item[data-v-1251f548]{margin-bottom:10px}.status[data-v-1251f548] .item~.item{margin-left:6px}.status[data-v-1251f548] .statusVal{margin-bottom:7px}.type[data-v-1251f548]{padding:3px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.tabBox_img[data-v-1251f548]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-1251f548]{width:100%;height:100%}.z-price[data-v-1251f548]{color:red}.f-price[data-v-1251f548]{color:green}

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
.auth[data-v-e6511d48]{padding:9px 16px 9px 10px}.auth .iconIos[data-v-e6511d48]{font-size:40px;margin-right:10px;color:#001529}.auth .text[data-v-e6511d48]{font-weight:400;color:#000;font-size:18px}.auth .text .code[data-v-e6511d48]{font-size:14px;color:rgba(0,0,0,.5)}.auth .blue[data-v-e6511d48]{color:#1890ff!important}.auth .red[data-v-e6511d48]{color:#ed4014!important}.grey[data-v-e6511d48]{background-color:#999;border-color:#999;color:#fff}.submit[data-v-e6511d48]{width:100%}.code .input[data-v-e6511d48]{width:83%}.code .input .ivu-input[data-v-e6511d48]{border-radius:4px 0 0 4px!important}.code .pictrue[data-v-e6511d48]{height:32px;width:17%}.customer[data-v-e6511d48]{border-right:0}.customer a[data-v-e6511d48]{font-size:12px}.ivu-input-group-append[data-v-e6511d48],.ivu-input-group-prepend[data-v-e6511d48]{background-color:#fff}.ivu-input-group .ivu-input[data-v-e6511d48]{border-right:0!important}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
.demo-tabs-style1>.ivu-tabs-card>.ivu-tabs-content[data-v-6f24f29c]{height:120px;margin-top:-16px}.demo-tabs-style1>.ivu-tabs-card>.ivu-tabs-content>.ivu-tabs-tabpane[data-v-6f24f29c]{background:#fff;padding:16px}.demo-tabs-style1>.ivu-tabs.ivu-tabs-card>.ivu-tabs-bar .ivu-tabs-tab[data-v-6f24f29c]{border-color:transparent}.demo-tabs-style1>.ivu-tabs-card>.ivu-tabs-bar .ivu-tabs-tab-active[data-v-6f24f29c]{border-color:#fff}.tabs[data-v-6f24f29c]{padding:0 30px;background-color:#fff}.trip[data-v-6f24f29c]{color:#928b8b;background-color:#f2f2f2;margin-left:80px;border-radius:4px;padding:15px}.content[data-v-6f24f29c]{display:-webkit-box;display:-ms-flexbox;display:flex}.form-sty[data-v-6f24f29c]{margin-top:20px}

View File

@ -1 +0,0 @@
[data-v-55947072] .ivu-form-item-content{line-height:unset!important}

View File

@ -1 +0,0 @@
.box[data-v-01874340]{height:40px;width:100px;line-height:40px;text-align:center}.pictrue[data-v-01874340]{width:800px;height:100%;margin:10px 24px 0 0}.pictrue img[data-v-01874340]{width:100%;height:100%}.footer[data-v-01874340]{width:100%;height:70px;-webkit-box-shadow:0 -2px 4px rgba(0,0,0,.03);box-shadow:0 -2px 4px rgba(0,0,0,.03);background-color:#fff;position:fixed;bottom:0;left:0;z-index:9}[data-v-01874340] .i-layout-content-main{margin-bottom:0!important}[data-v-01874340] .ivu-card-body{padding-bottom:0!important}[data-v-01874340] .ivu-radio-inner{background-color:#1db0fc;border:0;border-radius:3px;width:18px;height:18px}[data-v-01874340] .ivu-radio-wrapper-checked .iconfont{display:inline-block}[data-v-01874340] .ivu-radio-focus{-webkit-box-shadow:unset;box-shadow:unset;z-index:unset}[data-v-01874340] .ivu-radio-wrapper{margin-right:18px}.green[data-v-01874340] .ivu-radio-inner{background-color:#42ca4d}.red[data-v-01874340] .ivu-radio-inner{background-color:#e93323}.pink[data-v-01874340] .ivu-radio-inner{background-color:#ff448f}.orange[data-v-01874340] .ivu-radio-inner{background-color:#fe5c2d}[data-v-01874340] .ivu-radio-border{position:relative}.iconfont[data-v-01874340]{position:absolute;top:0;left:21px;font-size:12px;display:none;color:#fff}[data-v-01874340] .ivu-radio-inner:after{background-color:unset;-webkit-transform:unset;transform:unset}[data-v-01874340] .i-layout-page-header{height:66px;background-color:#fff;border-bottom:1px solid #e8eaec;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}

View File

@ -1 +0,0 @@
.tabBox_img[data-v-853f6bf8]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-853f6bf8]{width:100%;height:100%}

View File

@ -0,0 +1 @@
.box[data-v-c8f07f92]{height:40px;width:100px;line-height:40px;text-align:center}.pictrue[data-v-c8f07f92]{width:800px;height:100%;margin:10px 24px 0 0}.pictrue img[data-v-c8f07f92]{width:100%;height:100%}.footer[data-v-c8f07f92]{width:100%;height:70px;-webkit-box-shadow:0 -2px 4px rgba(0,0,0,.03);box-shadow:0 -2px 4px rgba(0,0,0,.03);background-color:#fff;position:fixed;bottom:0;left:0;z-index:9}[data-v-c8f07f92] .i-layout-content-main{margin-bottom:0!important}[data-v-c8f07f92] .ivu-card-body{padding-bottom:0!important}[data-v-c8f07f92] .ivu-radio-inner{background-color:#1db0fc;border:0;border-radius:3px;width:18px;height:18px}[data-v-c8f07f92] .ivu-radio-wrapper-checked .iconfont{display:inline-block}[data-v-c8f07f92] .ivu-radio-focus{-webkit-box-shadow:unset;box-shadow:unset;z-index:unset}[data-v-c8f07f92] .ivu-radio-wrapper{margin-right:18px}.green[data-v-c8f07f92] .ivu-radio-inner{background-color:#42ca4d}.red[data-v-c8f07f92] .ivu-radio-inner{background-color:#e93323}.pink[data-v-c8f07f92] .ivu-radio-inner{background-color:#ff448f}.orange[data-v-c8f07f92] .ivu-radio-inner{background-color:#fe5c2d}[data-v-c8f07f92] .ivu-radio-border{position:relative}.iconfont[data-v-c8f07f92]{position:absolute;top:0;left:21px;font-size:12px;display:none;color:#fff}[data-v-c8f07f92] .ivu-radio-inner:after{background-color:unset;-webkit-transform:unset;transform:unset}[data-v-c8f07f92] .i-layout-page-header{height:66px;background-color:#fff;border-bottom:1px solid #e8eaec;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}

View File

@ -1 +0,0 @@
.v-transfer-dom[data-v-7423233c] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-7423233c]{margin-bottom:14px}.radio[data-v-7423233c] .name{width:125px;text-align:right;padding-right:12px}

View File

@ -0,0 +1 @@
.QRpic[data-v-ac8fc562]{width:180px;height:180px}.QRpic img[data-v-ac8fc562]{width:100%;height:100%}

View File

@ -1 +0,0 @@
.list[data-v-1f398f08]{height:80%;min-height:500px}.pictrue[data-v-1f398f08]{width:100%;max-width:300px;height:360px}.right[data-v-1f398f08]{padding-right:75px}.left[data-v-1f398f08]{padding-left:75px}.num[data-v-1f398f08]{margin-bottom:24px;color:#515a6e;font-weight:600;font-size:72px;line-height:72px}.desc[data-v-1f398f08]{margin-bottom:16px;color:#808695;font-size:20px;line-height:28px}

View File

@ -1 +0,0 @@
.list[data-v-1f398f08]{height:80%;min-height:500px}.pictrue[data-v-1f398f08]{width:100%;max-width:300px;height:360px}.right[data-v-1f398f08]{padding-right:75px}.left[data-v-1f398f08]{padding-left:75px}.num[data-v-1f398f08]{margin-bottom:24px;color:#515a6e;font-weight:600;font-size:72px;line-height:72px}.desc[data-v-1f398f08]{margin-bottom:16px;color:#808695;font-size:20px;line-height:28px}

View File

@ -0,0 +1 @@
.clear_tit[data-v-854d2e34]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.clear_tit span[data-v-854d2e34]{font-size:14px;color:#ed4014;margin:15px 0}.clear_box[data-v-854d2e34]{border:1px solid #dadfe6;border-radius:3px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:30px 10px;-webkit-box-sizing:border-box;box-sizing:border-box}.clear_box .clear_box_sp1[data-v-854d2e34]{font-size:16px;color:#000;display:block}.clear_box .clear_box_sp2[data-v-854d2e34]{font-size:14px;color:#808695;display:block;margin:12px 0}.clear_box[data-v-854d2e34] .ivu-btn-error{color:#fff;background-color:#ed4014;border-color:#ed4014}.product_tabs[data-v-854d2e34] .ivu-page-header-title{margin-bottom:0!important}

View File

@ -0,0 +1 @@
.v-transfer-dom[data-v-b7e28f56] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-b7e28f56]{margin-bottom:14px}.radio[data-v-b7e28f56] .name{width:125px;text-align:right;padding-right:12px}.tabBox_img[data-v-237601ee]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-237601ee]{width:100%;height:100%}

View File

@ -0,0 +1 @@
.scroll-box[data-v-0b2011e2]{height:100%;overflow-y:scroll;-webkit-overflow-scrolling:touch}.title-box[data-v-0b2011e2]{height:.8rem;line-height:.8rem;background:#fff;text-align:center;color:#333;font-size:16px}.swiper-box[data-v-0b2011e2]{width:100%;height:auto}.swiper-box img[data-v-0b2011e2]{width:100%;height:100%;display:block}.goods_info[data-v-0b2011e2]{padding:15px;background:#fff}.goods_info .number-wrapper[data-v-0b2011e2]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.goods_info .number-wrapper .price[data-v-0b2011e2]{color:#ff3838;font-size:.3rem}.goods_info .number-wrapper .price span[data-v-0b2011e2]{font-size:.26rem}.goods_info .number-wrapper .old-price[data-v-0b2011e2]{font-size:.3rem;margin-left:.2rem;color:#333}.goods_info .name[data-v-0b2011e2]{font-size:.32rem;color:#333}.goods_info .msg[data-v-0b2011e2]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:.2rem}.goods_info .msg .item[data-v-0b2011e2]{color:#999;font-size:.28rem}.con-box[data-v-0b2011e2]{margin-top:10px;padding-bottom:20px}.con-box img[data-v-0b2011e2]{display:block}

View File

@ -0,0 +1 @@
.label-wrapper[data-v-5f15c6cc]{height:9rem;overflow:scroll}.label-wrapper .list[data-v-5f15c6cc]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.label-wrapper .list .label-item[data-v-5f15c6cc]{margin:.2rem .3rem .1rem 0;padding:0 .2rem;background:#eee;color:#282828;border-radius:6px;cursor:pointer;font-size:.28rem;height:.56rem;line-height:.56rem}.label-wrapper .list .label-item.on[data-v-5f15c6cc]{color:#fff;background:#3875ea}.footer[data-v-5f15c6cc]{margin-top:.25rem}.btn[data-v-5f15c6cc]{width:100%;height:.76rem;border-radius:43px;background:#3875ea}.title[data-v-5f15c6cc]{font-size:.32rem;color:#282828}.label-title[data-v-5f15c6cc]{margin-bottom:.25rem}.priceTitle[data-v-5f15c6cc]{position:relative;text-align:center}.priceTitle .iconfontYI[data-v-5f15c6cc]{position:absolute;font-size:.2rem;right:.13rem;top:.11rem;width:.2rem;height:.2rem;line-height:.2rem}.labelCheck[data-v-5f15c6cc] .ivu-checkbox{display:none!important}.labelCheck[data-v-5f15c6cc] .ivu-checkbox-wrapper-checked.ivu-checkbox-border{background:#3875ea;color:#fff}.labelChange[data-v-5f15c6cc]{padding:.3rem;position:fixed;width:90%;height:11.1rem;background-color:#fff;border-radius:.1rem;top:50%;left:50%;margin-left:-3.4rem;margin-top:-5.6rem;z-index:99;transition:all .3s ease-in-out 0s;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;-moz-transition:all .3s ease-in-out 0s;-webkit-transform:scale(0);transform:scale(0);opacity:0}.cor32[data-v-5f15c6cc]{font-size:.32rem;color:#282828}.mb80[data-v-5f15c6cc]{margin-bottom:.5rem}.on[data-v-5f15c6cc]{opacity:1;transform:scale(1);-webkit-transform:scale(1);-o-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1)}.userBox[data-v-ac11f14c]{background:#f0f1f2}.bgt[data-v-ac11f14c]{border-bottom:1px solid #f0f2f7}.user-header[data-v-ac11f14c]{width:100%;height:1.5rem;line-height:1.5rem;padding:0 .3rem;background:#fff;margin-bottom:.15rem}.user-header-img[data-v-ac11f14c]{width:1.1rem;height:1.1rem;border-radius:50%;overflow:hidden}.user-header-img img[data-v-ac11f14c]{width:100%;height:100%}.user-header-name .sp1[data-v-ac11f14c]{color:#282828;font-size:.32rem;font-weight:700}.user-header-name .sp2[data-v-ac11f14c]{background:rgba(56,117,234,.14);color:#3875ea;font-size:.18rem;padding:.1rem;border-radius:4px}.user-list[data-v-ac11f14c]{padding:0 .2rem;background:#fff;margin-bottom:.15rem}.user-list .item[data-v-ac11f14c]{width:100%;padding:.2rem 0}.user-list .item .sp1[data-v-ac11f14c]{color:#686868;font-size:.28rem;width:1.6rem}.user-list .item .sp2[data-v-ac11f14c]{color:#282828;font-size:.28rem}.user-list .labelBox[data-v-ac11f14c]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;width:4.8rem}.user-list .label[data-v-ac11f14c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:.5rem;border:1px solid #3875ea;opacity:1;border-radius:16px;padding:0 .15rem;text-align:center;color:#3875ea;font-size:.2rem;margin:.07rem .15rem .07rem 0}

View File

@ -1 +0,0 @@
.tabBox_img[data-v-fa4ad8e4]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-fa4ad8e4]{width:100%;height:100%}

View File

@ -1 +0,0 @@
.trees-coadd[data-v-3530b6d7]{width:100%;height:385px}.trees-coadd .scollhide[data-v-3530b6d7]{width:100%;height:100%;overflow-x:hidden;overflow-y:scroll}.scollhide[data-v-3530b6d7]::-webkit-scrollbar{display:none}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
.tableBox[data-v-42589e29] .ivu-table-header table{border:none!important}

View File

@ -1 +0,0 @@
.right-box[data-v-3e9413ba]{width:700px;margin-left:50px;border:1px solid #ddd;border-radius:4px;height:700px;overflow-y:scroll}.right-box[data-v-3e9413ba]::-webkit-scrollbar{width:4px;height:1px}.right-box[data-v-3e9413ba]::-webkit-scrollbar-thumb{border-radius:4px;-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,.2);box-shadow:inset 0 0 5px rgba(0,0,0,.2);background:#535353}.right-box[data-v-3e9413ba]::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 5px #fff;box-shadow:inset 0 0 5px #fff;border-radius:4px;background:#fff}.title-bar[data-v-3e9413ba]{width:100%;height:38px;line-height:38px;padding-left:24px;color:#333;border-radius:4px;border-bottom:1px solid #eee}.right-box[data-v-5ea23e48]{width:400px;margin-left:50px;border:1px solid #ddd;border-radius:4px;height:700px;overflow-y:scroll;padding:0 10px}.right-box[data-v-5ea23e48]::-webkit-scrollbar{width:4px;height:1px}.right-box[data-v-5ea23e48]::-webkit-scrollbar-thumb{border-radius:4px;-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,.2);box-shadow:inset 0 0 5px rgba(0,0,0,.2);background:#535353}.right-box[data-v-5ea23e48]::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 5px #fff;box-shadow:inset 0 0 5px #fff;border-radius:4px;background:#fff}.right-box .link-item[data-v-5ea23e48]{padding:10px 0;border-bottom:1px solid #f5f5f5}.right-box .link-item .title[data-v-5ea23e48]{font-size:14px;color:#2d8cf0}.right-box .link-item .txt[data-v-5ea23e48]{margin:5px 0;font-size:12px}.right-box .link-item .txt span[data-v-5ea23e48]{color:#333}.right-box .link-item .txt p[data-v-5ea23e48]{display:inline-block;color:#19be6b;margin-right:10px}.right-box .link-item .txt p span[data-v-5ea23e48]{color:#333}.right-box .link-item .txt p.red[data-v-5ea23e48]{color:red}.right-box .link-item .tips[data-v-5ea23e48]{font-size:12px;color:#999}.right-box .link-item .tips .copy[data-v-5ea23e48]{padding:3px 5px;border:1px solid #ccc;border-radius:5px;color:#333;cursor:pointer;margin-left:5px}.right-box .link-item .tips .copy[data-v-5ea23e48]:hover{border-color:#2d8cf0;color:#2d8cf0}.flex-wrapper[data-v-48177d46]{display:-webkit-box;display:-ms-flexbox;display:flex}.iframe-box[data-v-48177d46]{min-width:375px;height:700px;border-radius:4px;-webkit-box-shadow:0 0 7px #ccc;box-shadow:0 0 7px #ccc}.right-box[data-v-48177d46]{width:500px;margin-left:50px;border:1px solid #ddd;border-radius:4px}.right-box .title-bar[data-v-48177d46]{width:100%;height:38px;line-height:38px;padding-left:24px;color:#333;border-radius:4px;border-bottom:1px solid #eee}

View File

@ -0,0 +1 @@
.v-transfer-dom[data-v-b7e28f56] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-b7e28f56]{margin-bottom:14px}.radio[data-v-b7e28f56] .name{width:125px;text-align:right;padding-right:12px}.ivu-description-list-title[data-v-033b9623]{margin-bottom:16px;color:#17233d;font-weight:500;font-size:14px}.logistics[data-v-033b9623]{-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px 0}.logistics .logistics_img[data-v-033b9623]{width:45px;height:45px;margin-right:12px}.logistics .logistics_img img[data-v-033b9623]{width:100%;height:100%}.logistics .logistics_cent span[data-v-033b9623]{display:block;font-size:12px}.trees-coadd[data-v-033b9623]{width:100%;height:400px;border-radius:4px;overflow:hidden}.trees-coadd .scollhide[data-v-033b9623]{width:100%;height:100%;overflow:auto;margin-left:18px;padding:10px 0 10px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.trees-coadd .scollhide .content[data-v-033b9623]{font-size:12px}.trees-coadd .scollhide .time[data-v-033b9623]{font-size:12px;color:#2d8cf0}.order_box2[data-v-033b9623]{position:absolute;z-index:999999999}.order_box[data-v-033b9623] .ivu-modal-header{padding:30x 16px!important}.order_box[data-v-033b9623] .ivu-card{font-size:12px!important}.fontColor1[data-v-033b9623]{color:red!important}.fontColor2[data-v-033b9623]{color:#733af9!important}.order_box[data-v-033b9623] .ivu-description-detail,.order_box[data-v-033b9623] .ivu-description-term{padding-bottom:10px!important}.order_box[data-v-033b9623] .ivu-modal-body{padding:0 16px!important}.fontColor3[data-v-033b9623]{color:#f1a417!important}.pic[data-v-033b9623]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.img[data-v-033b9623]{width:100px;height:100px;margin:10px 10px}.img img[data-v-033b9623]{width:100%;height:100%}.ivu-table-wrapper[data-v-6501c44d]{border-left:1px solid #dcdee2;border-top:1px solid #dcdee2}.order_box[data-v-6501c44d] .ivu-table th{background:#f8f8f9!important}

View File

@ -1 +0,0 @@
[data-v-03a82876] .ivu-modal{top:20%!important}[data-v-03a82876] .ivu-input{width:80px}

View File

@ -0,0 +1 @@
.ivu-tabs[data-v-6872b3c0]{margin-bottom:18px}.fromBox[data-v-6872b3c0]{min-height:600px}

View File

@ -0,0 +1 @@
.v-transfer-dom[data-v-b7e28f56] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-b7e28f56]{margin-bottom:14px}.radio[data-v-b7e28f56] .name{width:125px;text-align:right;padding-right:12px}.sp[data-v-2888b66f]{line-height:32px}.Refresh[data-v-9ee2b24c]{font-size:12px;color:#1890ff;cursor:pointer}.userFrom[data-v-9ee2b24c] .ivu-form-item-content{margin-left:0!important}.tabBox_img[data-v-9ee2b24c]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-9ee2b24c]{width:100%;height:100%}.subscribe_box[data-v-9ee2b24c] .ivu-form-item-label{width:110px!important}.subscribe_box[data-v-9ee2b24c] .ivu-form-item-content{margin-left:110px!important}.sex_box[data-v-9ee2b24c] .ivu-form-item-label{width:60px!important}.sex_box[data-v-9ee2b24c] .ivu-form-item-content{margin-left:60px!important}.btn_box[data-v-9ee2b24c] .ivu-form-item-content{margin-left:0!important}.modelBox[data-v-9ee2b24c] .ivu-modal-body{padding:0 16px 16px 16px!important}

View File

@ -0,0 +1 @@
[data-v-64f185a0] .ivu-form-item-content{line-height:unset!important}

View File

@ -1 +0,0 @@
.label-wrapper .list[data-v-3820afdf]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.label-wrapper .list .label-item[data-v-3820afdf]{margin:10px 8px 10px 0;padding:3px 8px;background:#eee;color:#333;border-radius:2px;cursor:pointer;font-size:12px}.label-wrapper .list .label-item.on[data-v-3820afdf]{color:#fff;background:#1890ff}.label-wrapper .footer[data-v-3820afdf]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-top:40px}.label-wrapper .footer button[data-v-3820afdf]{margin-left:10px}.btn[data-v-3820afdf]{width:60px;height:24px}.title[data-v-3820afdf]{font-size:13px}.nonefont[data-v-3820afdf]{text-align:center;padding-top:20px}.expand-row[data-v-1dd16101]{margin-bottom:16px}.labelInput[data-v-6b72b722]{border:1px solid #dcdee2;width:400px;padding:0 8px;border-radius:5px;min-height:30px;cursor:pointer}.labelInput .span[data-v-6b72b722]{color:#c5c8ce}.labelInput .iconxiayi[data-v-6b72b722]{font-size:12px}.ivu-form-item[data-v-6b72b722]{margin-bottom:10px}.form-sty[data-v-6b72b722]{width:400px!important}.addfont[data-v-6b72b722]{display:inline-block;font-size:13px;font-weight:400;color:#1890ff;margin-left:14px;cursor:pointer;margin-left:10px}.ivu-icon-ios-arrow-down[data-v-6b72b722]{font-size:14px}.tip[data-v-6b72b722]{color:#bbb}.v-transfer-dom[data-v-7423233c] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-7423233c]{margin-bottom:14px}.radio[data-v-7423233c] .name{width:125px;text-align:right;padding-right:12px}.sp[data-v-6312e075]{line-height:32px}.avatar[data-v-0b05c524]{width:60px;height:60px;border-radius:50%;overflow:hidden}.avatar img[data-v-0b05c524]{width:100%;height:100%}.dashboard-workplace-header-avatar[data-v-0b05c524]{width:64px;height:64px;border-radius:50%;margin-right:16px;font-weight:600}.dashboard-workplace-header-tip[data-v-0b05c524]{width:82%;display:inline-block;vertical-align:middle}.dashboard-workplace-header-tip-title[data-v-0b05c524]{font-size:13px;color:#000;margin-bottom:12px}.dashboard-workplace-header-tip-desc-sp[data-v-0b05c524]{width:33.33%;color:#17233d;font-size:13px;display:inline-block}.dashboard-workplace-header-extra .ivu-col p[data-v-0b05c524]{text-align:right}.dashboard-workplace-header-extra .ivu-col p:first-child span[data-v-0b05c524]:first-child{margin-right:4px}.dashboard-workplace-header-extra .ivu-col p:first-child span[data-v-0b05c524]:last-child{color:#808695}.dashboard-workplace-header-extra .ivu-col p[data-v-0b05c524]:last-child{font-size:22px}.user_menu[data-v-0b05c524] .ivu-menu{width:100%!important}.picBox[data-v-3b877880]{display:inline-block;cursor:pointer}.picBox .upLoad[data-v-3b877880]{width:58px;height:58px;line-height:58px;border:1px dotted rgba(0,0,0,.1);border-radius:4px;background:rgba(0,0,0,.02)}.picBox .pictrue[data-v-3b877880]{width:60px;height:60px;border:1px dotted rgba(0,0,0,.1);margin-right:10px}.picBox .pictrue img[data-v-3b877880]{width:100%;height:100%}.userFrom[data-v-3b877880] .ivu-form-item-content{margin-left:0!important}.userAlert[data-v-3b877880]{margin-top:20px}.userI[data-v-3b877880]{color:#1890ff;font-style:normal}img[data-v-3b877880]{height:36px;display:block}.tabBox_img[data-v-3b877880]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-3b877880]{width:100%;height:100%}.tabBox_tit[data-v-3b877880]{width:60%;font-size:12px!important;margin:0 2px 0 10px;letter-spacing:1px;padding:5px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.modelBox[data-v-3b877880] .ivu-modal-body{padding:0 16px 16px 16px!important}.vipName[data-v-3b877880]{color:#dab176}.listbox[data-v-3b877880] .ivu-divider-horizontal{margin:0!important}.labelInput[data-v-3b877880]{border:1px solid #dcdee2;padding:0 6px;border-radius:5px;min-height:30px;cursor:pointer}.labelInput .span[data-v-3b877880]{color:#c5c8ce}.labelInput .ivu-icon-ios-arrow-down[data-v-3b877880]{font-size:14px;color:#808695}

View File

@ -0,0 +1 @@
.v-transfer-dom[data-v-b7e28f56] .ivu-modal-content-drag{z-index:2!important}.radio[data-v-b7e28f56]{margin-bottom:14px}.radio[data-v-b7e28f56] .name{width:125px;text-align:right;padding-right:12px}.save[data-v-178c0816]{width:100%;margin:0 auto;text-align:center;background-color:#fff;bottom:0;padding:16px;border-top:3px solid #f5f7f9}.form .goodsTitle[data-v-178c0816]{margin-bottom:25px}.form .goodsTitle~.goodsTitle[data-v-178c0816]{margin-top:20px}.form .goodsTitle .title[data-v-178c0816]{border-bottom:2px solid #1890ff;padding:0 8px 12px 5px;color:#000;font-size:14px}.form .goodsTitle .icons[data-v-178c0816]{font-size:15px;margin-right:8px;color:#999}.form .add[data-v-178c0816]{font-size:12px;color:#1890ff;padding:0 12px;cursor:pointer}.form .radio[data-v-178c0816]{margin-right:20px}.form .upLoad[data-v-178c0816]{width:58px;height:58px;line-height:58px;border:1px dotted rgba(0,0,0,.1);border-radius:4px;background:rgba(0,0,0,.02)}.form .iconfont[data-v-178c0816]{color:#898989}.form .pictrue[data-v-178c0816]{width:60px;height:60px;border:1px dotted rgba(0,0,0,.1);margin-right:10px}.form .pictrue img[data-v-178c0816]{width:100%;height:100%}.agreement-box[data-v-178c0816]{width:310px;height:550px;border-radius:10px;background:transparent;border:1px solid #eee;opacity:1;position:relative}.agreement-box .template[data-v-178c0816]{position:absolute;width:100%;height:100%;top:0;left:0;border-radius:10px;background-color:#817e81}.agreement-box .htmls_box[data-v-178c0816]{font-size:12px;width:259px;height:430px;border-radius:10px;background-color:#fff;position:absolute;top:58px;left:26px}.agreement-box .htmls_box .htmls_top[data-v-178c0816]{position:absolute;top:8px;left:0;height:34px;text-align:center;width:100%;line-height:35px;font-weight:600;font-size:20px}.agreement-box .htmls_box .htmls_font[data-v-178c0816]{position:absolute;bottom:0;left:0;padding:15px 15px;text-align:center;width:100%}.agreement-box .htmls_box .htmls_font div[data-v-178c0816]{height:35px;line-height:35px;border-radius:20px}.agreement-box .htmls_box .htmls_font .ok[data-v-178c0816]{background-color:#f33316;color:#fff}.agreement-box .htmls_box .htmls[data-v-178c0816]{position:absolute;background-color:#fff;top:50px;left:0;width:259px;height:281px;border-radius:4px;overflow:auto;padding:5px 15px;word-break:break-word}.agreement-box .htmls_box .htmls[data-v-178c0816]::-webkit-scrollbar{display:none}.item[data-v-178c0816]{margin-right:15px;border:1px dashed #dbdbdb;padding-bottom:10px;padding-right:15px;padding-top:20px}.swiperimg[data-v-178c0816]{width:310px;border-top-left-radius:10px;border-top-right-radius:10px}.swiperimg img[data-v-178c0816]{width:100%;height:100%}.title[data-v-178c0816]{padding:0 0 13px 0;font-weight:700;font-size:15px;border-left:2px solid #1890ff;height:23px;padding-left:10px}.content .right-box[data-v-178c0816]{margin-left:40px}.box[data-v-178c0816]{border-top:3px solid #f5f7f9;padding:10px;padding-top:25px;width:100%}.box .save[data-v-178c0816]{background-color:#1890ff;color:#fff;width:71px;height:30px;margin:0 auto;text-align:center;line-height:30px;cursor:pointer}.iframe[data-v-178c0816]{margin-left:20px;position:relative;width:310px;background:#fff;border:1px solid #eee;opacity:1;border-radius:10px}.iconfont[data-v-178c0816]{color:#ddd;font-size:28px}.box-wrapper[data-v-178c0816]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;padding:20px;background-color:#fff;border-radius:5px;margin:20px}

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
[data-v-3251c64f]{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.left[data-v-3251c64f]{min-width:390px;min-height:550px;position:relative;padding-left:40px}.top[data-v-3251c64f]{position:absolute;top:0}.bottom[data-v-3251c64f],.textbot[data-v-3251c64f]{position:absolute;bottom:0}.textbot[data-v-3251c64f]{left:82px;width:100%}.active[data-v-3251c64f]{border:1px solid #44b549!important;color:#44b549!important}.li[data-v-3251c64f]{float:left;width:93px;line-height:48px;border:1px solid #e7e7eb;background:#fafafa;text-align:center;cursor:pointer;color:#999;position:relative}.text[data-v-3251c64f]{height:50px;white-space:nowrap;width:100%;overflow:hidden;text-overflow:ellipsis;padding:0 5px}.text[data-v-3251c64f]:hover{color:#000}.add[data-v-3251c64f]{position:absolute;bottom:65px;width:100%;line-height:48px;border:1px solid #e7e7eb;background:#fafafa}.arrow[data-v-3251c64f]{position:absolute;bottom:-16px;left:36px;width:0;height:0;font-size:0;border:8px solid;border-color:#fff #f4f5f9 #f4f5f9 #f4f5f9}.tianjia[data-v-3251c64f]{position:absolute;bottom:115px;width:100%;line-height:48px;background:#fafafa}.addadd[data-v-3251c64f]{width:100%;line-height:48px;border:1px solid #e7e7eb;background:#fafafa;height:48px}.right[data-v-3251c64f]{background:#fff;min-height:400px}.spwidth[data-v-3251c64f]{width:100%}.userAlert[data-v-3251c64f]{margin-top:16px!important}

Some files were not shown because too many files have changed in this diff Show More