diff --git a/app/portal/controller/BirdController.php b/app/portal/controller/BirdController.php index 956b6b1..4389a0e 100644 --- a/app/portal/controller/BirdController.php +++ b/app/portal/controller/BirdController.php @@ -36,7 +36,7 @@ class BirdController extends HomeBaseController * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ - public function createOrder($indent_id = null) + public function createOrder($indent_id = 132) { if(empty($indent_id)){ return "缺少必要参数"; @@ -58,7 +58,7 @@ class BirdController extends HomeBaseController $region = explode(' ',$address['region']); //请求url,接口正式地址:http://api.kdniao.com/api/OOrderService 测试环境地址:http://sandboxapi.kdniao.com:8080/kdniaosandbox/gateway/exterfaceInvoke.json - defined('ReqURL') or define('ReqURL', 'http://api.kdniao.com/api/OOrderService'); + defined('ReqURL') or define('ReqURL', 'http://sandboxapi.kdniao.com:8080/kdniaosandbox/gateway/exterfaceInvoke.json'); //构造在线下单提交信息 @@ -104,9 +104,9 @@ class BirdController extends HomeBaseController if(!empty($result['Order']['LogisticCode'])){ $indentModel->updateData(['id'=>$indent_id],['logistic_code'=>$result['Order']['LogisticCode']]); } - return ['code'=>20000,'msg'=>'SUCCESS','data'=>$result];//返回快递单号 + return dump(['code'=>20000,'msg'=>'SUCCESS','data'=>$result]);//返回快递单号 } else { - return ['code'=>40000,'msg'=>$result['Reason']]; + return dump(['code'=>40000,'msg'=>$result['Reason']]); } } @@ -156,7 +156,7 @@ class BirdController extends HomeBaseController //请求url,接口正式地址:http://api.kdniao.com/Ebusiness/EbusinessOrderHandle.aspx 测试环境地址:http://sandboxapi.kdniao.com:8080/kdniaosandbox/gateway/exterfaceInvoke.json defined('ReqURL') or define('ReqURL', 'http://api.kdniao.com/Ebusiness/EbusinessOrderHandle.aspx'); - $jsonResult = $this->getOrderTracesByJson($indent['order_number'],$indent['logistic_code']); + $jsonResult = $this->getOrderTracesByJson($indent['order_number'],$indent['logistic_code'],$indent['logistic_name']); $result = json_decode($jsonResult,true); if($result['Success'] == true){ return ['code'=>20000,'msg'=>'SUCCESS','data'=>['state'=>$result['State'],'traces'=>$result['Traces']]];//订单轨迹 @@ -168,8 +168,8 @@ class BirdController extends HomeBaseController /** * Json方式 查询订单物流轨迹 */ - function getOrderTracesByJson($OrderCode,$LogisticCode){ - $requestData= "{'OrderCode':$OrderCode,'ShipperCode':'SF','LogisticCode':$LogisticCode}"; + function getOrderTracesByJson($OrderCode,$LogisticCode,$LogisticName){ + $requestData= "{'OrderCode':$OrderCode,'ShipperCode':'$LogisticName','LogisticCode':$LogisticCode}"; $datas = array( 'EBusinessID' => EBusinessID, @@ -214,7 +214,7 @@ class BirdController extends HomeBaseController //请求url,接口正式地址:http://api.kdniao.com/api/eorderservice 测试环境地址:http://sandboxapi.kdniao.com:8080/kdniaosandbox/gateway/exterfaceInv defined('ReqURL') or define('ReqURL', 'http://api.kdniao.com/api/dist'); - $jsonResult = $this->orderTracesSubByJson($indent['order_number'],$indent['logistic_code'],$address); + $jsonResult = $this->orderTracesSubByJson($indent['order_number'],$indent['logistic_code'],$address,$indent['logistic_name'],$indent['logistic_name']); $result = json_decode($jsonResult,true); cache('b',$result); if(empty($result['Reason'])){ @@ -227,11 +227,11 @@ class BirdController extends HomeBaseController /** * Json方式 物流信息订阅 */ - public function orderTracesSubByJson($OrderCode,$LogisticCode,$address){ + public function orderTracesSubByJson($OrderCode,$LogisticCode,$address,$LogisticName){ $sender = config('sender'); $region = explode(' ',$address['region']); $requestData="{'OrderCode': '$OrderCode',". - "'ShipperCode':'SF',". + "'ShipperCode':'$LogisticName',". "'LogisticCode':'$LogisticCode',". "'PayType':1,". "'ExpType':1,". diff --git a/app/portal/controller/OrderSalesmanController.php b/app/portal/controller/OrderSalesmanController.php index c3ef4b0..ba0b3cd 100644 --- a/app/portal/controller/OrderSalesmanController.php +++ b/app/portal/controller/OrderSalesmanController.php @@ -24,9 +24,9 @@ class OrderSalesmanController extends WeChatBaseController if(empty($my_user)){ $this->error($user_id,'','',''); } - if($my_user['status'] != 2){ - $this->error('您还不是业务员那','','',''); - } +// if($my_user['status'] != 2){ +// $this->error('您还不是业务员那','','',''); +// } } public function get_all(){ $param = $this->request->param(); @@ -70,18 +70,65 @@ class OrderSalesmanController extends WeChatBaseController if(!empty($param['grade'])){ $where['grade'] = ['eq',$param['grade']]; } + if(!empty($param['state'])){ + $where['state'] = ['eq',$param['state']]; + }else{ + $where['state'] = ['neq',4]; + } $user_id = $this->user_id; $where['salesman_uid'] = ['eq',$user_id]; $where['indent_type'] = ['eq',2]; - $where['state'] = ['neq',4]; $indentModel = new IndentModel(); $data = $indentModel->selectData($where); $indentGoodsModel = new IndentGoodsModel(); foreach($data as $key => $vo){ $indent_goods = $indentGoodsModel->selectData(['indent_id'=>$vo['id']]); $data[$key]['indent_goods'] = $indent_goods; - $dara[$key]['create_time'] = date('Y-m-d H:i:s',$vo['create_time']); } $this->success('SUCCESS','',$data); } + public function send(){ + $param = $this->request->param(); + if(empty($param['is_courier'])){ + $this->error('缺少必要参数1'); + } + if($param['is_courier'] == 1){ + if(empty($param['start_time'])){ + $this->error('缺少必要参数2'); + } + if(empty($param['end_time'])){ + $this->error('缺少必要参数3'); + } + }else if($param['is_courier'] == 2){ + if(empty($param['logistic_name'])){ + $this->error('缺少必要参数4'); + } + if(empty($param['logistic_code'])){ + $this->error('缺少必要参数5'); + } + } + if(empty($param['indent_id'])){ + $this->error('缺少必要参数6'); + } + $where['id'] = ['eq',$param['indent_id']]; + $indentModel = new IndentModel(); + $indent = $indentModel->findData($where); + if(empty($indent)){ + $this->error('查询为空'); + } + if($indent['state'] != 2){ + $this->error('订单不是待支付状态'); + } + $arr = []; + if($param['is_courier'] == 1){ + $arr['logistic_name'] = $param['logistic_name']; + $arr['logistic_code'] = $param['logistic_code']; + }else if($param['is_courier'] == 2){ + $arr['start_time'] = $param['start_time']; + $arr['end_time'] = $param['end_time']; + } + $arr['state'] = 5; + $result = $indentModel->updateData($where,$arr); + $this->success('发货成功'); + } } \ No newline at end of file diff --git a/app/portal/model/IndentModel.php b/app/portal/model/IndentModel.php index 6f2ae44..5d0c423 100644 --- a/app/portal/model/IndentModel.php +++ b/app/portal/model/IndentModel.php @@ -14,6 +14,16 @@ use think\Model; class IndentModel extends Model { /** + * 自动转换 支付时间 + * @param $value + * @return false|string + */ + public function getPayTimeAttr($value){ + if(!empty($value)){ + return date('Y-m-d H:i:s',$value); + } + } + /** * 获取多个订单 * @param $where * @return array diff --git a/public/themes/simpleboot3/portal/order_salesman/get_all.html b/public/themes/simpleboot3/portal/order_salesman/get_all.html index 13de9cd..c5c2b7c 100644 --- a/public/themes/simpleboot3/portal/order_salesman/get_all.html +++ b/public/themes/simpleboot3/portal/order_salesman/get_all.html @@ -42,38 +42,76 @@ </div> </div> </div> -<!-- 弹窗 --> -<div class="tx_mask"> - <div class="tx_maskCon"> - <div class="tx_maskConImg"> - <img src="__TMPL__/public/assets/images/90.png" alt=""/> +<!--统一配送--> +<div class="tx_mask_tongyi"> + <div class="tx_maskCon_tongyi"> + <div class="three_model_school"> + <div class="three_model_school_data" style="display: block;"> + <div class="three_model_school_name there_unActive">全部</div> + <div class="three_model_school_name" data-id="1">统一配送</div> + <div class="three_model_school_name" data-id="2">快递配送</div> + </div> </div> - <div class="tx_maskCon2"> - <div class="log_three_model"> - <div class="log_three_model_one"> - <div class="log_three_model_left">配送时间</div> - <div class="log_psong"> - <input type="" name="" id="" value="" placeholder="请输入开始配送时间"/> - </div> - </div> - <div class="log_three_model_one"> - <div class="log_three_model_left">配送时间</div> - <div class="log_psong"> - <input type="" name="" id="" value="" placeholder="请输入结束配送时间"/> - </div> - </div> - <div class="log_three_model_one" style="padding-bottom: 0;"> - <div class="log_three_model_left" style="margin-top: -0.3rem;">单号</div> - <div class="log_three_model_right"> - <input type="text" placeholder="请输入快递单号"/> - </div> + </div> +</div> +<!--选择快递--> +<div class="tx_mask_kuaidi"> + <div class="tx_maskCon_school"> + <div class="three_model_school"> + <div class="three_model_school_title"> + 选择快递 + </div> + <div> + <div class="three_model_school_data" style="display: block;"> + <div class="three_model_school_name">顺丰快递</div> + <div class="three_model_school_name">圆通快递</div> + <div class="three_model_school_name there_unActive">申通快递</div> + <div class="three_model_school_name">韵达快递</div> + <div class="three_model_school_name">天天快递</div> + <div class="three_model_school_name">百世汇通</div> </div> </div> - <!-- 确定 --> - <div class="tx_maskOk">确定</div> </div> </div> </div> +<!-- 弹窗 --> +<!--<div class="tx_mask">--> + <!--<div class="tx_maskCon">--> + <!--<div class="tx_maskConImg">--> + <!--<img src="__TMPL__/public/assets/images/90.png" alt=""/>--> + <!--</div>--> + <!--<div class="tx_maskCon2">--> + <!--<div class="log_three_model">--> + <!--<div class="log_three_model_one time">--> + <!--<div class="log_three_model_left">配送时间</div>--> + <!--<div class="log_psong">--> + <!--<input type="text" value="" placeholder="请输入开始配送时间"/>--> + <!--</div>--> + <!--</div>--> + <!--<div class="log_three_model_one time">--> + <!--<div class="log_three_model_left">配送时间</div>--> + <!--<div class="log_psong">--> + <!--<input type="text" value="" placeholder="请输入结束配送时间"/>--> + <!--</div>--> + <!--</div>--> + <!--<div class="log_three_model_one time">--> + <!--<div class="log_three_model_left">快递公司</div>--> + <!--<div class="log_psong">--> + <!--<input type="text" value="" placeholder="请输入快递公司"/>--> + <!--</div>--> + <!--</div>--> + <!--<div class="log_three_model_one time">--> + <!--<div class="log_three_model_left">快递单号</div>--> + <!--<div class="log_psong">--> + <!--<input type="text" value="" placeholder="请输入快递单号"/>--> + <!--</div>--> + <!--</div>--> + <!--</div>--> + <!--<!– 确定 –>--> + <!--<div class="tx_maskOk confirm" data-id="">确定</div>--> + <!--</div>--> + <!--</div>--> +<!--</div>--> <div class="tx_maskone"> <div class="tx_maskCon"> <div class="tx_maskConImg"> @@ -81,21 +119,42 @@ </div> <div class="tx_maskCon2"> <div class="log_three_model"> - <div class="log_three_model_one"> + <div class="log_three_model_one time"> <div class="log_three_model_left">配送时间</div> <div class="log_psong"> - <input type="" name="" id="" value="" placeholder="请输入开始配送时间"/> + <input type="text" id="start_time" value="" placeholder="请输入开始配送时间"/> </div> </div> - <div class="log_three_model_one"> + <div class="log_three_model_one time"> <div class="log_three_model_left">配送时间</div> <div class="log_psong"> - <input type="" name="" id="" value="" placeholder="请输入结束配送时间"/> + <input type="text" id="end_time" value="" placeholder="请输入结束配送时间"/> + </div> + </div> + <!--<div class="log_three_model_one logistic" style="padding-bottom: 0;">--> + <!--<div class="log_three_model_left" style="margin-top: -0.3rem;">快递公司</div>--> + <!--<div class="log_three_model_right">--> + <!--<input type="text" id="logistic_name" placeholder="请输入快递公司"/>--> + <!--</div>--> + <!--</div>--> + <div class="log_three_model_one"> + <div class="log_three_model_left">选择快递</div> + <div class="log_psong log_psong_select"> + <div class="log_ps_title">请选择</div> + <div class="log_ps_img"> + <img src="__TMPL__/public/assets/images/29.png" /> + </div> + </div> + </div> + <div class="log_three_model_one logistic" style="padding-bottom: 0;"> + <div class="log_three_model_left" style="margin-top: -0.3rem;">快递单号</div> + <div class="log_three_model_right"> + <input type="text" id="logistic_code" placeholder="请输入快递单号"/> </div> </div> </div> <!-- 确定 --> - <div class="tx_maskOk">确定</div> + <div class="tx_maskOk confirm" data-is_courier="" data-id="" data-indent-id="">确定</div> </div> </div> </div> @@ -110,9 +169,9 @@ </div> <!-- tab切换 --> <div class="log_three_tab log_three_tab_top"> - <div class="log_three_tab_one log_three_tab_two word_color aaa">未发货</div> - <div class="log_three_tab_one">已发货</div> - <div class="log_three_tab_one">已完成</div> + <div class="log_three_tab_one log_three_tab_two word_color aaa" data-state="2">未发货</div> + <div class="log_three_tab_one" data-state="5">已发货</div> + <div class="log_three_tab_one" data-state="3">已完成</div> </div> <!-- 下拉框 --> <div class="log_three_select"> @@ -124,9 +183,9 @@ <img src="__TMPL__/public/assets/images/75.png" alt=""/> </div> </div> - <div class="log_three_select_one log_three_select_peisong"> - <div class="log_three_select_title"> - 统一配送 + <div class="log_three_select_one log_three_select_peisong log_three_select_tongyi"> + <div class="log_three_select_title log_three_select_contant"> + 配送类型 </div> <div class="log_three_select_img"> <img src="__TMPL__/public/assets/images/75.png" alt=""/> @@ -137,6 +196,7 @@ </div> <input type="hidden" id="school" value=""/> <input type="hidden" id="grade" value=""/> + <input type="hidden" id="is_courier" value=""/> </div> <!-- 列表内容 --> <div> @@ -155,7 +215,7 @@ <img src="__TMPL__/public/assets/images/52.png" alt=""/> </div> <div class="log_three_shijian"> - {:date('Y-m-d H:i:s',$vo['create_time'])} + {$vo['pay_time']} </div> </div> </div> @@ -186,12 +246,12 @@ <!-- 立即发货 --> <div class="log_three_bottom_btn"> <if condition="$vo.state eq 2"> - <div class="log_three_bottom" data-indent-id="{$vo.id}" data-is_courier="{$vo.is_courier}"> + <div class="log_three_bottom send" data-indent-id="{$vo.id}" data-is_courier="{$vo.is_courier}"> 立即发货 </div> <elseif condition="$vo.state eq 5"/> <if condition="$vo.is_courier eq 2"> - <a href="#"> + <a href="{:url('logistics/index',array('indent_id'=>$vo['id']))}"> <div class="log_three_bottom" data-indent-id="{$vo.id}"> 查看物流 </div> @@ -258,9 +318,11 @@ </div> <elseif condition="$vo.state eq 5"/> <if condition="$vo.is_courier eq 2"> - <div class="log_three_bottom" data-indent-id="{$vo.id}"> - 查看物流 - </div> + <a href="{:url('logistics/index',array('indent_id'=>$vo['id']))}"> + <div class="log_three_bottom" data-indent-id="{$vo.id}"> + 查看物流 + </div> + </a> </if> <elseif condition="$vo.state eq 3"/> <div class="log_three_bottom" data-indent-id="{$vo.id}"> @@ -324,9 +386,11 @@ </div> <elseif condition="$vo.state eq 5"/> <if condition="$vo.is_courier eq 2"> - <div class="log_three_bottom" data-indent-id="{$vo.id}"> - 查看物流 - </div> + <a href="{:url('logistics/index',array('indent_id'=>$vo['id']))}"> + <div class="log_three_bottom" data-indent-id="{$vo.id}"> + 查看物流 + </div> + </a> </if> <elseif condition="$vo.state eq 3"/> <div class="log_three_bottom" data-indent-id="{$vo.id}"> @@ -370,6 +434,7 @@ var tabIndex = $(this).index(); $(this).addClass("log_three_tab_two").addClass("word_color").addClass('aaa').siblings().removeClass("log_three_tab_two").removeClass("word_color").removeClass("aaa"); $('.log_three_list_contant').eq(tabIndex).css('display', 'block').siblings().css('display', 'none'); + search(); }); $(".three_model_school_tab>div").click(function () { $(this).addClass("three_model_school_hover").addClass("word_color").addClass('aaa').siblings().removeClass("three_model_school_hover").removeClass("word_color").removeClass("aaa"); @@ -409,6 +474,34 @@ display: "block" }); }); + + //统一配送 + $(".log_three_select_tongyi").click(function(){ + $(".tx_mask_tongyi").css({ + display: "block" + }); + }) + $(".tx_mask_tongyi .three_model_school_name").click(function(){ + var index = $(this).index(); + $(this).addClass('there_unActive').siblings().removeClass('there_unActive'); + $('.log_three_select_contant').text($(this).text()).css("color", "#333"); + console.log($('.log_three_select_contant').text($(this).text())) + $(".tx_mask_tongyi").hide(); + $("#is_courier").val($(this).attr('data-id')) + }) + //选择快递方式 + $(".log_psong_select").click(function() { + console.log(213) + $(".tx_mask_kuaidi").css({ + display: "block" + }); + }); + $(".tx_mask_kuaidi .three_model_school_name").click(function() { + var index = $(this).index(); + console.log($(this).text()); + $('.log_ps_title').text($(this).text()).css("color", "#333"); + $(".tx_mask_kuaidi").hide(); + }); var index = $(".log_three_bottom").index(); $(".log_three_bottom").click(function () { console.log(index); @@ -467,7 +560,107 @@ if (!_con.is(e.target) && _con.has(e.target).length === 0) { $('.tx_mask_school').hide() } - }) + }); + function search(){ + var school = $('#school').val(); + var grade = $('#grade').val(); + var state = $('.log_three_tab_top .aaa').attr('data-state'); + console.log(state); + // if (school == '') { + // alert('请选择学校') + // } else if (grade == '') { + // alert('请选择班级') + // } else { + console.log(school); + console.log(grade); + $.ajax({ + 'url': "{:url('order_salesman/getOrderSalesman')}", + 'type': "GET", + 'data': {'school': school, 'grade': grade, 'state': state}, + 'success': (function (data) { + var index = $('.log_three_tab_top div').index($('.aaa')); + if (data.code == 1) { + var result = data.data; + console.log(result) + var html = ''; + for (var i = 0; i < result.length; i++) { + if (result[i]['state'] == 2) { + var state = '待发货'; + if (result[i]['is_courier'] == 1) { + var html_bottom = "<div class=\"log_three_bottom_btn\"><div class=\"log_three_bottom send\" data-indent-id=\"" + result[i].id + "\" data-is_courier=\"" + result[i].is_courier + "\">\n" + + "\t\t\t\t\t\t\t\t\t\t立即发货\n" + + "\t\t\t\t\t\t\t\t\t</div></div>"; + } else { + var html_bottom = "<div class=\"log_three_bottom_btn\"><div class=\"log_three_bottom send\" data-indent-id=\"" + result[i].id + "\" data-is_courier=\"" + result[i].is_courier + "\">\n" + + "\t\t\t\t\t\t\t\t\t\t立即发货\n" + + "\t\t\t\t\t\t\t\t\t</div></div>"; + } + } else if (result[i]['state'] == 5) { + var state = '已发货'; + if(result[i]['is_courier'] == 2){ + var html_bottom = "<a href=\"{:url('logistics/index','',false,true)}/indent_id/"+result[i].id+"\">\n" + + "\t\t\t\t\t\t\t\t\t\t\t<div class=\"log_three_bottom_btn\"><div class=\"log_three_bottom\" data-indent-id=\"" + result[i].id + "\">\n" + + "\t\t\t\t\t\t\t\t\t\t\t\t查看物流\n" + + "\t\t\t\t\t\t\t\t\t\t\t</div></div>\n" + + "\t\t\t\t\t\t\t\t\t\t</a>"; + }else{ + var html_bottom = ""; + } + } else { + var state = '已完成'; + var html_bottom = "<div class=\"log_three_bottom\" data-indent-id=\"\"+result[i].id+\"\">\n" + + "\t\t\t\t\t\t\t\t\t\t已完成啦\n" + + "\t\t\t\t\t\t\t\t\t</div>"; + } + var indent_goods_data = result[i].indent_goods; + var indent_goods_html = ''; + for(var i3=0;i3<indent_goods_data.length;i3++){ + indent_goods_html += "<div class=\"log_three_list_center\">\n" + + " <div class=\"log_three_list_center_left\">\n" + + " <img src=\"{:cmf_get_image_url('')}"+indent_goods_data[i3].thumbnail+"\" alt=\"\"/>\n" + + " </div>\n" + + " <div class=\"log_three_list_center_right\">\n" + + " <div class=\"log_three_center_one\">\n" + + " "+indent_goods_data[i3].book_name+"\n" + + " </div>\n" + + " <div class=\"log_three_center_two\">×"+indent_goods_data[i3].number+"</div>\n" + + " <div class=\"log_three_center_three\"><span>¥</span>"+indent_goods_data[i3].price*indent_goods_data[i3].number+"</div>\n" + + " </div>\n" + + " </div>"; + } + html += "<div class=\"log_three_list\">\n" + + "\t\t\t\t\t\t\t<div class=\"log_three_list_top\">\n" + + "\t\t\t\t\t\t\t\t<div class=\"log_three_list_top_left\">\n" + + "\t\t\t\t\t\t\t\t\t<div class=\"log_three_list_top_lo\">\n" + + "\t\t\t\t\t\t\t\t\t\t<img src=\"__TMPL__/public/assets/images/fangkuang.png\" alt=\"\" />\n" + + "\t\t\t\t\t\t\t\t\t</div>\n" + + "\t\t\t\t\t\t\t\t\t<div class=\"log_three_list_top_lt\">\n" + + "\t\t\t\t\t\t\t\t\t\t<div class=\"log_three_zhongbiao\">\n" + + "\t\t\t\t\t\t\t\t\t\t\t<img src=\"__TMPL__/public/assets/images/52.png\" alt=\"\" />\n" + + "\t\t\t\t\t\t\t\t\t\t</div>\n" + + "\t\t\t\t\t\t\t\t\t\t<div class=\"log_three_shijian\">\n" + + "\t\t\t\t\t\t\t\t\t\t\t" + result[i].pay_time + "\n" + + "\t\t\t\t\t\t\t\t\t\t</div>\n" + + "\t\t\t\t\t\t\t\t\t</div>\n" + + "\t\t\t\t\t\t\t\t</div>\n" + + "\t\t\t\t\t\t\t\t<div class=\"log_three_list_top_right\">\n" + + "\t\t\t\t\t\t\t\t\t\t" + state + "\n" + + "\t\t\t\t\t\t\t\t</div>\n" + + "\t\t\t\t\t\t\t</div>\n" +indent_goods_html+ + "\t\t\t\t\t\t</div>"+html_bottom; + } + + $('.log_three_list_contant').eq(index).html(html); + } else { + alert('未知错误'); + } + }), + 'error': (function () { + alert('与服务器断开连接'); + }) + }) + // } + } $(function () { $('.school').click(function () { var school_id = $(this).attr('data-id'); @@ -497,100 +690,63 @@ }) }) $('.search').click(function () { - var school = $('#school').val(); - var grade = $('#grade').val(); - if (school == '') { - alert('请选择学校') - } else if (grade == '') { - alert('请选择班级') - } else { - console.log(school); - console.log(grade); - $.ajax({ - 'url': "{:url('order_salesman/getOrderSalesman')}", - 'type': "GET", - 'data': {'school': school, 'grade': grade}, - 'success': (function (data) { - if (data.code == 1) { - var result = data.data; - console.log(result) - var html = ''; - for (var i = 0; i < result.length; i++) { - if (result[i]['state'] == 2) { - var state = '待发货'; - if (result[i]['is_courier'] == 1) { - var html_bottom = "<div class=\"log_three_bottom_btn\"><div class=\"log_three_bottom\" data-indent-id=\"" + result[i].id + "\" data-is_courier=\"" + result[i].is_courier + "\">\n" + - "\t\t\t\t\t\t\t\t\t\t立即发货\n" + - "\t\t\t\t\t\t\t\t\t</div></div>"; - } else { - var html_bottom = "<div class=\"log_three_bottom_btn\"><div class=\"log_three_bottom\" data-indent-id=\"" + result[i].id + "\" data-is_courier=\"" + result[i].is_courier + "\">\n" + - "\t\t\t\t\t\t\t\t\t\t立即发货\n" + - "\t\t\t\t\t\t\t\t\t</div></div>"; - } - } else if (result[i]['state'] == 5) { - var state = '已发货'; - var html_bottom = "<a href=\"#\">\n" + - "\t\t\t\t\t\t\t\t\t\t\t<div class=\"log_three_bottom_btn\"><div class=\"log_three_bottom\" data-indent-id=\"" + result[i].id + "\">\n" + - "\t\t\t\t\t\t\t\t\t\t\t\t查看物流\n" + - "\t\t\t\t\t\t\t\t\t\t\t</div></div>\n" + - "\t\t\t\t\t\t\t\t\t\t</a>"; - } else { - var state = '已完成'; - var html_bottom = "<div class=\"log_three_bottom\" data-indent-id=\"\"+result[i].id+\"\">\n" + - "\t\t\t\t\t\t\t\t\t\t已完成啦\n" + - "\t\t\t\t\t\t\t\t\t</div>"; - } - var indent_goods_data = result[i].indent_goods; - var indent_goods_html = ''; - for(var i3=0;i3<indent_goods_data.length;i3++){ - indent_goods_html += "<div class=\"log_three_list_center\">\n" + - " <div class=\"log_three_list_center_left\">\n" + - " <img src=\"{:cmf_get_image_url('')}"+indent_goods_data[i3].thumbnail+"\" alt=\"\"/>\n" + - " </div>\n" + - " <div class=\"log_three_list_center_right\">\n" + - " <div class=\"log_three_center_one\">\n" + - " "+indent_goods_data[i3].book_name+"\n" + - " </div>\n" + - " <div class=\"log_three_center_two\">×"+indent_goods_data[i3].number+"</div>\n" + - " <div class=\"log_three_center_three\"><span>¥</span>"+indent_goods_data[i3].price*indent_goods_data[i3].number+"</div>\n" + - " </div>\n" + - " </div>"; - } - console.log(indent_goods_html); - html += "<div class=\"log_three_list\">\n" + - "\t\t\t\t\t\t\t<div class=\"log_three_list_top\">\n" + - "\t\t\t\t\t\t\t\t<div class=\"log_three_list_top_left\">\n" + - "\t\t\t\t\t\t\t\t\t<div class=\"log_three_list_top_lo\">\n" + - "\t\t\t\t\t\t\t\t\t\t<img src=\"__TMPL__/public/assets/images/fangkuang.png\" alt=\"\" />\n" + - "\t\t\t\t\t\t\t\t\t</div>\n" + - "\t\t\t\t\t\t\t\t\t<div class=\"log_three_list_top_lt\">\n" + - "\t\t\t\t\t\t\t\t\t\t<div class=\"log_three_zhongbiao\">\n" + - "\t\t\t\t\t\t\t\t\t\t\t<img src=\"__TMPL__/public/assets/images/52.png\" alt=\"\" />\n" + - "\t\t\t\t\t\t\t\t\t\t</div>\n" + - "\t\t\t\t\t\t\t\t\t\t<div class=\"log_three_shijian\">\n" + - "\t\t\t\t\t\t\t\t\t\t\t" + result[i].create_time + "\n" + - "\t\t\t\t\t\t\t\t\t\t</div>\n" + - "\t\t\t\t\t\t\t\t\t</div>\n" + - "\t\t\t\t\t\t\t\t</div>\n" + - "\t\t\t\t\t\t\t\t<div class=\"log_three_list_top_right\">\n" + - "\t\t\t\t\t\t\t\t\t\t" + state + "\n" + - "\t\t\t\t\t\t\t\t</div>\n" + - "\t\t\t\t\t\t\t</div>\n" +indent_goods_html+ - "\t\t\t\t\t\t</div>"+html_bottom; - } - console.log(html); - var index = $('.log_three_tab_top div').index($('.aaa')); - $('.log_three_list_contant').eq(index).html(html); - } else { - alert('未知错误'); - } - }), - 'error': (function () { - alert('与服务器断开连接'); - }) - }) + search() + }); + //发货 + $("body").on('click','.send',function(){ + var indent_id = $(this).attr('data-indent-id'); + var is_courier = $(this).attr('data-is_courier'); + if(is_courier == 1){ + //统一配送 + $('.time').show(); + $('.logistic').hide(); + }else if(is_courier == 2){ + //快递 + $('.time').hide(); + $('.logistic').show(); } + $('.confirm').attr('data-is_courier',is_courier); + $('.confirm').attr('data-indent-id',indent_id); + $('.confirm').attr('data-is_courier',indent_id); }) + //点击确认 + $("body").on('click','.confirm',function(){ + var is_courier = $(this).attr('data-is_courier'); + var start_time = $('#start_time').val(); + var end_time = $('#end_time').val(); + var logistic_name = $('#logistic_name').val(); + var logistic_code = $('#logistic_code').val(); + var indent_id = $(this).attr('data-indent-id'); + if(is_courier == 1){ + if(start_time == ''){ + alert('请填写配送时间') + } + if(end_time == ''){ + alert('请填写配送时间') + } + }else if(is_courier == 2){ + if(logistic_name == ''){ + alert('请填写快递公司') + } + if(logistic_code == ''){ + alert('请填写快递单号') + } + }else if(is_courier == ''){ + alert('未知错误') + } + $.ajax({ + url:"{:url('order_salesman/send')}", + type:"GET", + data:{'start_time':start_time,'end_time':end_time,'logistic_name':logistic_name,'logistic_code':logistic_code,'is_courier':is_courier,'indent_id':indent_id}, + success:function(res){ + console.log(res); + alert(res.msg) + }, + error:function(res){ + alert('与服务器断开连接') + } + }) + }); }) </script> diff --git a/public/themes/simpleboot3/public/assets/css/log.css b/public/themes/simpleboot3/public/assets/css/log.css index 67c6b96..c0a0303 100644 --- a/public/themes/simpleboot3/public/assets/css/log.css +++ b/public/themes/simpleboot3/public/assets/css/log.css @@ -1,120 +1,120 @@ /* 弹框 */ .tx_mask { - display: none; - z-index: 2; - width: 100%; - height: 100%; - position: fixed; - background-color: rgba(0, 0, 0, 0.5); + display: none; + z-index: 2; + width: 100%; + height: 100%; + position: fixed; + background-color: rgba(0, 0, 0, 0.5); } .tx_maskone { - display: none; - z-index: 2; - width: 100%; - height: 100%; - position: fixed; - background-color: rgba(0, 0, 0, 0.5); + display: none; + z-index: 2; + width: 100%; + height: 100%; + position: fixed; + background-color: rgba(0, 0, 0, 0.5); } .tx_maskCon { - width: 5.6rem; - height: 6rem; - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - -moz-transform: translate(-50%, -50%); - -o-transform: translate(-50%, -50%); + width: 5.6rem; + height: 6rem; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + -moz-transform: translate(-50%, -50%); + -o-transform: translate(-50%, -50%); } .tx_maskConImg { - width: 100%; - height: 2.5rem; + width: 100%; + height: 2.5rem; } .tx_maskConImg img { - width: 100%; - height: 100%; + width: 100%; + height: 100%; } .tx_maskCon2 { - width: 99.8%; - margin-top: -0.34rem; - box-sizing: border-box; - background-color: white; - padding: 0.66rem 0.32rem 0.3rem; + width: 99.8%; + margin-top: -0.34rem; + box-sizing: border-box; + background-color: white; + padding: 0.66rem 0.32rem 0.3rem; } .tx_maskInput { - width: 100%; - outline: none; - font-size: 0.32rem; - padding-bottom: 0.16rem; - color: rgba(204, 204, 204, 1); - border-bottom: 1px solid #F5F5F5; + width: 100%; + outline: none; + font-size: 0.32rem; + padding-bottom: 0.16rem; + color: rgba(204, 204, 204, 1); + border-bottom: 1px solid #F5F5F5; } .tx_maskInput::placeholder { - color: rgba(204, 204, 204, 1); + color: rgba(204, 204, 204, 1); } .tx_maskOk { - width: 100%; - height: 0.8rem; - background: linear-gradient(338deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); - border-radius: 0.08rem; - text-align: center; - line-height: 0.8rem; - color: white; - font-size: 0.32rem; - margin-top: 0.4rem; + width: 100%; + height: 0.8rem; + background: linear-gradient(338deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + border-radius: 0.08rem; + text-align: center; + line-height: 0.8rem; + color: white; + font-size: 0.32rem; + margin-top: 0.4rem; } .tx_maskTxt1 { - padding-top: 0.24rem; - display: flex; - display: -webkit-flex; - align-items: center; - justify-content: center; + padding-top: 0.24rem; + display: flex; + display: -webkit-flex; + align-items: center; + justify-content: center; } .tx_maskConImg2 { - width: 0.3rem; - height: 0.3rem; + width: 0.3rem; + height: 0.3rem; } .tx_maskConImg2 img { - width: 100%; - height: 100%; + width: 100%; + height: 100%; } .tx_maskTxt1 span { - margin-left: 0.04rem; - font-size: 0.24rem; - color: rgba(45, 45, 45, 1); + margin-left: 0.04rem; + font-size: 0.24rem; + color: rgba(45, 45, 45, 1); } .tx_maskTxt2 { - padding-top: 0.2rem; - text-align: center; - font-size: 0.24rem; - color: rgba(204, 204, 204, 1); + padding-top: 0.2rem; + text-align: center; + font-size: 0.24rem; + color: rgba(204, 204, 204, 1); } .log_top { - width: 100%; - /* height: 1.76rem; */ - background-image: url(../images/41.png); - background-size: cover; - background-repeat: no-repeat; + width: 100%; + /* height: 1.76rem; */ + background-image: url(../img/41.png); + background-size: cover; + background-repeat: no-repeat; } .log_top_co { - width: 100% + width: 100% } @@ -123,137 +123,137 @@ } */ .order_top { - position: relative; - width: 100%; - height: 0.88rem; + position: relative; + width: 100%; + height: 0.88rem; } .order_top img { - width: 0.32rem; - position: absolute; - margin-top: -0.16rem; - top: 50%; - left: 0.32rem; + width: 0.32rem; + position: absolute; + margin-top: -0.16rem; + top: 50%; + left: 0.32rem; } .order_top p { - text-align: center; - font-size: 0.34rem; - line-height: 0.88rem; - font-weight: 600; - color: rgba(51, 51, 51, 1); + text-align: center; + font-size: 0.34rem; + line-height: 0.88rem; + font-weight: 600; + color: rgba(51, 51, 51, 1); } /* 头像 */ .log_top_buddha { - display: flex; - justify-content: flex-start; - align-items: center; - /* margin-left: 0.32rem; */ - padding: 0.32rem 0 0.64rem 0.32rem; - box-sizing: border-box + display: flex; + justify-content: flex-start; + align-items: center; + /* margin-left: 0.32rem; */ + padding: 0.32rem 0 0.64rem 0.32rem; + box-sizing: border-box } .log_top_buddha_img { - width: 1.28rem; - height: 1.28rem; - border-radius: 50%; - opacity: 1; + width: 1.28rem; + height: 1.28rem; + border-radius: 50%; + opacity: 1; } .log_top_buddha_img img { - width: 100%; - height: 100% + width: 100%; + height: 100% } .log_top_buddha_contant { - /* display: none; */ - margin-left: 0.16rem + /* display: none; */ + margin-left: 0.16rem } .log_top_buddha_contant_one { - font-size: 0.36rem; - font-family: PingFang SC; - font-weight: 600; - color: rgba(255, 255, 255, 1); - opacity: 1; + font-size: 0.36rem; + font-family: PingFang SC; + font-weight: 600; + color: rgba(255, 255, 255, 1); + opacity: 1; } .log_top_buddha_contant_two { - font-size: 0.24rem; - font-family: PingFang SC; - font-weight: 400; - color: rgba(255, 255, 255, 1); - opacity: 0.9; + font-size: 0.24rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(255, 255, 255, 1); + opacity: 0.9; } /* 个人资料 */ .log_top_buddha_btn { - display: block; - margin-left: 0.16rem; - width: 2.22rem; - height: 0.6rem; - border: 0.02rem solid rgba(255, 255, 255, 1); - opacity: 1; - border-radius: 0.3rem; - display: flex; - justify-content: center; - align-content: center; + display: block; + margin-left: 0.16rem; + width: 2.22rem; + height: 0.6rem; + border: 0.02rem solid rgba(255, 255, 255, 1); + opacity: 1; + border-radius: 0.3rem; + display: flex; + justify-content: center; + align-content: center; } .log_top_buddha_btn a { - color: #fff; - font-size: 0.26rem; - line-height: 0.6rem; + color: #fff; + font-size: 0.26rem; + line-height: 0.6rem; } /* 底部导航 */ .in_bottom { - position: fixed; - bottom: 0; - width: 100%; - height: 0.98rem; - background-color: white; - box-shadow: 0rem 0rem 0.3rem rgba(0, 0, 0, 0.05); + position: fixed; + bottom: 0; + width: 100%; + height: 0.98rem; + background-color: white; + box-shadow: 0rem 0rem 0.3rem rgba(0, 0, 0, 0.05); } .in_bottom ul { - display: flex; - display: -webkit-flex; - align-items: center; - height: 0.98rem; - margin: 0 0.7rem; - justify-content: space-between; + display: flex; + display: -webkit-flex; + align-items: center; + height: 0.98rem; + margin: 0 0.7rem; + justify-content: space-between; } .in_bottom ul li img { - margin: auto; - width: 0.48rem; + margin: auto; + width: 0.48rem; } .in_bottom ul li p { - color: #B5B5B5; - font-size: 0.2rem; - text-align: center; + color: #B5B5B5; + font-size: 0.2rem; + text-align: center; } .ad_top { - display: flex; - display: -webkit-flex; - align-items: center; - padding: 0.18rem 0.32rem; - box-sizing: border-box; - justify-content: space-between; + display: flex; + display: -webkit-flex; + align-items: center; + padding: 0.18rem 0.32rem; + box-sizing: border-box; + justify-content: space-between; } .ad_topImg { - width: 0.32rem; + width: 0.32rem; } @@ -263,244 +263,244 @@ /* 列表 */ .log_one_list_one { - display: flex; - justify-content: space-between; - align-items: center; - padding: 0.4rem 0.22rem 0.26rem 0.32rem; - box-sizing: border-box; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + display: flex; + justify-content: space-between; + align-items: center; + padding: 0.4rem 0.22rem 0.26rem 0.32rem; + box-sizing: border-box; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); } .log_one_list_left { - display: flex; - justify-content: flex-start; - align-items: center + display: flex; + justify-content: flex-start; + align-items: center } .log_one_list_img { - width: 0.32rem; - height: 0.32rem; - opacity: 1; + width: 0.32rem; + height: 0.32rem; + opacity: 1; } .log_one_list_word { - margin-left: 0.16rem; - font-size: 0.32rem; - font-family: PingFang SC; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + margin-left: 0.16rem; + font-size: 0.32rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_one_list_right { - width: 0.18rem; - height: 0.16rem; - opacity: 1; + width: 0.18rem; + height: 0.16rem; + opacity: 1; } /* log_two页面 */ .log_two_input { - padding: 0.22rem 0.3rem 0 0.32rem; - box-sizing: border-box + padding: 0.22rem 0.3rem 0 0.32rem; + box-sizing: border-box } .log_two_input_one { - padding: 0.26rem 0; - box-sizing: border-box; - display: flex; - justify-content: flex-start; - align-items: center; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding: 0.26rem 0; + box-sizing: border-box; + display: flex; + justify-content: flex-start; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); } .log_two_input_btn { - font-size: 0.26rem; - font-weight: 400; - margin-left: auto; - color: rgba(0, 144, 255, 1); + font-size: 0.26rem; + font-weight: 400; + margin-left: auto; + color: rgba(0, 144, 255, 1); } .log_two_input_btn input{ - background: #fff; - color: rgba(0, 144, 255, 1); + background: #fff; + color: rgba(0, 144, 255, 1); } .log_two_input_title { - width: 1.6rem; - height: 0.44rem; - font-size: 0.32rem; - font-weight: 400; - line-height: 0.36rem; - color: rgba(51, 51, 51, 1); + width: 1.6rem; + height: 0.44rem; + font-size: 0.32rem; + font-weight: 400; + line-height: 0.36rem; + color: rgba(51, 51, 51, 1); } .log_two_input_contant input { - margin-left: 0.36rem; - border: none; - /* width: 4.56rem; */ - height: 0.44rem; - font-size: 0.32rem; - font-family: PingFang SC; - font-weight: 400; - line-height: 0.36rem; - color: #333; + margin-left: 0.36rem; + border: none; + /* width: 4.56rem; */ + height: 0.44rem; + font-size: 0.32rem; + font-family: PingFang SC; + font-weight: 400; + line-height: 0.36rem; + color: #333; } /* 上传图片 */ .log_two_picture { - padding: 0.4rem 0 0 0.32rem; - box-sizing: border-box; + padding: 0.4rem 0 0 0.32rem; + box-sizing: border-box; } .log_two_picture_title { - font-size: 0.26rem; - font-family: PingFang SC; - font-weight: 400; - color: rgba(153, 153, 153, 1); - opacity: 1; + font-size: 0.26rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; } .log_two_picture_img { - margin-top: 0.4rem; - display: flex; - justify-content: flex-start; - align-items: center + margin-top: 0.4rem; + display: flex; + justify-content: flex-start; + align-items: center } .log_two_pi_one { - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - padding: 0.4rem 0.56rem 0.32rem 0.56rem; - box-sizing: border-box; - border: 0.02rem dashed rgba(204, 204, 204, 1); + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + padding: 0.4rem 0.56rem 0.32rem 0.56rem; + box-sizing: border-box; + border: 0.02rem dashed rgba(204, 204, 204, 1); } .log_two_pi_ones { - padding: 0 + padding: 0 } .log_two_pi_one_ps { - display: none + display: none } .log_two_pi_one_icons { - width: 1.6rem!important; - height: 1.6rem!important + width: 1.6rem!important; + height: 1.6rem!important } .log_two_pi_two { - margin-left: 0.16rem + margin-left: 0.16rem } .log_two_pi_one_icon { - width: 0.48rem; - height: 0.48rem + width: 0.48rem; + height: 0.48rem } .log_two_pi_one_icon img { - width: 100%; - height: 100% + width: 100%; + height: 100% } .log_two_pi_one_p { - margin-top: 0.08rem; - font-size: 0.24rem; - font-family: PingFang SC; - font-weight: 400; - color: rgba(204, 204, 204, 1); - opacity: 1; + margin-top: 0.08rem; + font-size: 0.24rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; } .input_file { - position: absolute + position: absolute } .input_file input { - width: 0.48rem; - opacity: 0 + width: 0.48rem; + opacity: 0 } .log_two_picture_state { - display: flex; - flex-direction: column; - align-items: center; - justify-content: center + display: flex; + flex-direction: column; + align-items: center; + justify-content: center } .log_two_picture_state { - margin-top: 0.46rem + margin-top: 0.46rem } .log_two_ps_one { - font-size: 0.34rem; - font-family: PingFang SC; - font-weight: 600; - color: rgba(0, 0, 0, 1); - opacity: 1; + font-size: 0.34rem; + font-family: PingFang SC; + font-weight: 600; + color: rgba(0, 0, 0, 1); + opacity: 1; } .log_two_ps_two { - margin-top: 0.34rem; - width: 5.4rem; - height: 2.84rem; - position: relative + margin-top: 0.34rem; + width: 5.4rem; + height: 2.84rem; + position: relative } .log_two_ps_two .img1 { - width: 100%; - height: 100% + width: 100%; + height: 100% } .log_two_ps_two .img2 { - position: absolute; - top: 2.14rem; - left: 2.46rem; - width: 0.48rem; - height: 0.48rem; - opacity: 1; + position: absolute; + top: 2.14rem; + left: 2.46rem; + width: 0.48rem; + height: 0.48rem; + opacity: 1; } .log_two_ps_three { - text-align: center; - width: 4.8rem; - height: 0.68rem; - font-size: 0.22rem; - font-family: PingFang SC; - font-weight: 400; - line-height: 0.36rem; - color: rgba(153, 153, 153, 1); - opacity: 1; + text-align: center; + width: 4.8rem; + height: 0.68rem; + font-size: 0.22rem; + font-family: PingFang SC; + font-weight: 400; + line-height: 0.36rem; + color: rgba(153, 153, 153, 1); + opacity: 1; } .log_two_ps_three span { - color: #FF2E2E + color: #FF2E2E } /* 保存 */ .log_two_bottom_btn { - margin: 1.12rem 0.32rem 1.6rem 0.32rem; - box-sizing: border-box; - width: 6.88rem; - height: 0.96rem; - background: linear-gradient(344deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); - box-shadow: 0 0.06rem 0.12rempx rgba(255, 111, 0, 0.24); - opacity: 1; - border-radius: 0.08rem; - display: flex; - justify-content: center; - align-items: center; + margin: 1.12rem 0.32rem 1.6rem 0.32rem; + box-sizing: border-box; + width: 6.88rem; + height: 0.96rem; + background: linear-gradient(344deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + box-shadow: 0 0.06rem 0.12rempx rgba(255, 111, 0, 0.24); + opacity: 1; + border-radius: 0.08rem; + display: flex; + justify-content: center; + align-items: center; } .log_two_bottom_btn a { - color: #fff; - font-size: 0.34rem; - font-weight: 600; + color: #fff; + font-size: 0.34rem; + font-weight: 600; } @@ -510,384 +510,407 @@ /* model弹窗 */ .log_three_model_one { - display: flex; - justify-content: space-between; - align-items: center; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1); - padding-bottom: 0.2rem; - margin-bottom: 0.3rem + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding-bottom: 0.2rem; + margin-bottom: 0.3rem } .log_three_model_left { - width: 1.28rem; - font-size: 0.32rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + width: 1.58rem; + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} +.log_psong_select{ + display: flex; + justify-content: space-between; + align-items: center; +} +.log_ps_title{ + color: #333333; + font-size: 0.26rem; +} +.log_ps_img{ + width: 0.22rem; + height: 0.32rem; + line-height: 0.32rem; + margin-left: 0.2rem; +} +.log_ps_img img{ + width: 100%; + height: 100%; } - .log_three_model_right { - display: flex; - justify-content: flex-start; - align-items: center + display: flex; + justify-content: flex-start; + align-items: center } .log_three_model_right_tltle { - font-size: 0.26rem; - font-weight: 400; - color: rgba(204, 204, 204, 1); - opacity: 1; + font-size: 0.26rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; } .log_three_model_right_icon { - margin-left: 0.1rem; - width: 0.1rem; - height: 0.2rem + margin-left: 0.1rem; + width: 0.1rem; + height: 0.2rem } .log_three_model_right_icon img { - width: 100%; - height: 100% + width: 100%; + height: 100% } .log_three_model_right input { - border: none; - padding: 0; - margin-left: 1.28rem; - text-align: right; - font-size: 0.26rem; - height: 0.36rem + border: none; + padding: 0; + /*margin-left: 1.28rem;*/ + text-align: right; + font-size: 0.26rem; + height: 0.36rem } .log_five_shanxian{ - display: none; + display: none; } /* 选择学校弹窗 */ -.tx_mask_school { - display: none; - z-index: 2; - width: 100%; - height: 100%; - position: fixed; - background-color: rgba(0, 0, 0, 0.5); +.tx_mask_school,.tx_mask_kuaidi,.tx_mask_tongyi{ + display: none; + z-index: 3; + width: 100%; + height: 100%; + position: fixed; + background-color: rgba(0, 0, 0, 0.5); } .tx_maskCon_school { - width: 100%; - height: 5.16rem; - background: #fff; - position: fixed; - bottom: 0; + width: 100%; + height: 5.16rem; + background: #fff; + position: fixed; + bottom: 0; +} +.tx_maskCon_tongyi{ + width: 100%; + height: 3rem; + background: #fff; + position: fixed; + bottom: 0; } - .three_model_school { - padding: 0.28rem 0 0.28rem 0.48rem; - box-sizing: border-box + padding: 0.28rem 0 0.28rem 0.48rem; + box-sizing: border-box } .three_model_school_title { - font-size: 0.3rem; - font-weight: 500; - color: rgba(51, 51, 51, 1); - opacity: 1; + font-size: 0.3rem; + font-weight: 500; + color: rgba(51, 51, 51, 1); + opacity: 1; } .three_model_school_tab { - display: flex; - justify-content: space-between; - align-items: center; - padding: 0.24rem 1.68rem 0 1.2rem; - box-sizing: border-box; - font-size: 0.28rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1) + display: flex; + justify-content: space-between; + align-items: center; + padding: 0.24rem 1.68rem 0 1.2rem; + box-sizing: border-box; + font-size: 0.28rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1) } .three_model_school_hover:after { - content: ""; - display: block; - width: 0.6rem; - height: 0.04rem; - margin: 0.2rem auto 0; - background-color: rgba(255, 119, 0, 1); - border-radius: 0.1rem 0.1rem 0 0; + content: ""; + display: block; + width: 0.6rem; + height: 0.04rem; + margin: 0.2rem auto 0; + background-color: rgba(255, 119, 0, 1); + border-radius: 0.1rem 0.1rem 0 0; } .three_model_school_data { - height: 3.64rem; - text-align: center; - display: none; - padding: 0.32rem 1.68rem 0.28rem 1.2rem; - box-sizing: border-box; - overflow-y: auto + height: 3.64rem; + text-align: center; + display: none; + padding: 0.32rem 1.68rem 0.28rem 1.2rem; + box-sizing: border-box; + overflow-y: auto } .three_model_school_name { - height: 0.36rem; - margin: 0.08rem; - font-size: 0.24rem; - font-weight: 400; - color: #666666; - opacity: 1; - padding: 0.2rem 0; - line-height: 0; - border-left: none; - border-right: none + height: 0.36rem; + margin: 0.08rem; + font-size: 0.24rem; + font-weight: 400; + color: #666666; + opacity: 1; + padding: 0.2rem 0; + line-height: 0; + border-left: none; + border-right: none } /* tab选项卡 */ .log_three_tab { - display: flex; - justify-content: space-around; - align-items: center + display: flex; + justify-content: space-around; + align-items: center } .log_three_tab_one { - font-size: 0.28rem; - height: 0.64rem; - font-weight: 400; - color: rgba(153, 153, 153, 1); - opacity: 1; + font-size: 0.28rem; + height: 0.64rem; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; } .log_three_tab_two:after { - content: ""; - display: block; - width: 0.8rem; - height: 0.04rem; - margin: 0.2rem auto 0; - background-color: rgba(255, 119, 0, 1); - border-radius: 0.1rem 0.1rem 0 0; + content: ""; + display: block; + width: 0.8rem; + height: 0.04rem; + margin: 0.2rem auto 0; + background-color: rgba(255, 119, 0, 1); + border-radius: 0.1rem 0.1rem 0 0; } .word_color { - color: rgba(255, 119, 0, 1); + color: rgba(255, 119, 0, 1); } /* 下拉框 */ .log_three_select { - padding: 0.4rem 0.3rem 0.32rem 0.3rem; - box-sizing: border-box + padding: 0.4rem 0.3rem 0.32rem 0.3rem; + box-sizing: border-box } .log_three_select_one { - position: relative; - display: flex; - justify-content: center; - align-items: center; - width: 6.88rem; - border: 0.1rem solid rgba(255, 255, 255, 1); - background: rgba(247, 247, 247, 1); - border-radius: 0.08rem; - padding: 0.1rem 0.16rem 0.1rem 0; - box-sizing: border-box; - margin-bottom: 0.2rem + position: relative; + display: flex; + justify-content: center; + align-items: center; + width: 6.88rem; + border: 0.1rem solid rgba(255, 255, 255, 1); + background: rgba(247, 247, 247, 1); + border-radius: 0.08rem; + padding: 0.1rem 0.16rem 0.1rem 0; + box-sizing: border-box; + margin-bottom: 0.2rem } - .log_three_select_title { - font-size: 0.28rem; - font-family: PingFang SC; - font-weight: 400; - color: rgba(153, 153, 153, 1); - opacity: 1; + font-size: 0.28rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; } #city_text, .city_text { - font-size: 0.28rem; - font-weight: 400; - color: #CCCCCC; + font-size: 0.28rem; + font-weight: 400; + color: #CCCCCC; } .log_three_select_img { - right: 0.16rem; - top: 50%; - padding-top: -0.2rem; - position: absolute; - width: 0.2rem; - height: 0.1rem; + right: 0.16rem; + top: 50%; + padding-top: -0.2rem; + position: absolute; + width: 0.2rem; + height: 0.1rem; } .log_three_select_btn { - display: flex; - justify-content: center; - align-items: center; - font-size: 0.28rem; - font-family: PingFang SC; - font-weight: 600; - color: rgba(255, 255, 255, 1); - opacity: 1; - background: linear-gradient(350deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); - opacity: 1; - border-radius: 0.08rem; + display: flex; + justify-content: center; + align-items: center; + font-size: 0.28rem; + font-family: PingFang SC; + font-weight: 600; + color: rgba(255, 255, 255, 1); + opacity: 1; + background: linear-gradient(350deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + opacity: 1; + border-radius: 0.08rem; } /* 列表内容 */ .log_three_list_contant { - display: none; - padding: 0.32rem 0.32rem 0.16rem 0.32rem; - box-sizing: border-box; - overflow: hidden; + display: none; + padding: 0.32rem 0.32rem 0.16rem 0.32rem; + box-sizing: border-box; + overflow: hidden; } .log_three_list { - padding: 0 0.16rem 0.32rem 0.16rem; - margin-bottom: 0.16rem; - box-sizing: border-box; + padding: 0 0.16rem 0.32rem 0.16rem; + margin-bottom: 0.16rem; + box-sizing: border-box; } .log_three_list_top { - padding: 0 0.23rem 0.3rem 0; - display: flex; - justify-content: space-between; - align-items: center; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding: 0 0.23rem 0.3rem 0; + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); } .log_three_list_top_lo, .log_three_list_top_lt img { - width: 0.32rem; - height: 0.32rem + width: 0.32rem; + height: 0.32rem } .log_three_list_top_lt { - margin-left: 0.32rem + margin-left: 0.32rem } .log_three_shijian { - margin-left: 0.16rem; - font-size: 0.28rem; - font-family: PingFang SC; - font-weight: 400; - color: rgba(102, 102, 102, 1); - opacity: 1; + margin-left: 0.16rem; + font-size: 0.28rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(102, 102, 102, 1); + opacity: 1; } .log_three_list_top_left, .log_three_list_top_lt { - display: flex; - justify-content: flex-start; - align-items: center + display: flex; + justify-content: flex-start; + align-items: center } .log_three_list_top_right { - font-size: 0.26rem; - font-family: PingFang SC; - font-weight: 500; - color: rgba(255, 119, 0, 1); - opacity: 1; + font-size: 0.26rem; + font-family: PingFang SC; + font-weight: 500; + color: rgba(255, 119, 0, 1); + opacity: 1; } .log_three_list_center { - margin-top: 0.32rem; - display: flex; - justify-content: space-between; - align-items: center; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1); - padding-bottom: 0.32rem + margin-top: 0.32rem; + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding-bottom: 0.32rem } .log_three_center_one { - font-size: 0.26rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + font-size: 0.26rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_three_center_two { - font-size: 0.22rem; - font-weight: 400; - color: rgba(153, 153, 153, 1); - opacity: 1; + font-size: 0.22rem; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; } .log_three_center_three span { - font-size: 0.24rem + font-size: 0.24rem } .log_three_center_three { - font-size: 0.34rem; - font-weight: 400; - line-height: 25px; - color: rgba(51, 51, 51, 1); - opacity: 1; + font-size: 0.34rem; + font-weight: 400; + line-height: 25px; + color: rgba(51, 51, 51, 1); + opacity: 1; } /* 立即发货按钮 */ .log_three_bottom_btn { - display: flex; - justify-content: flex-end + display: flex; + justify-content: flex-end } .log_three_bottom { - margin-top: 0.3rem; - width: 1.6rem; - height: 0.48rem; - background: linear-gradient(328deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); - box-shadow: 0 0.06rem 0.12rem rgba(255, 128, 0, 0.24); - opacity: 1; - border-radius: 0.08rem; - display: flex; - justify-content: center; - align-items: center; - font-size: 0.26rem; - font-weight: 400; - color: rgba(255, 255, 255, 1); + margin-top: 0.3rem; + width: 1.6rem; + height: 0.48rem; + background: linear-gradient(328deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + box-shadow: 0 0.06rem 0.12rem rgba(255, 128, 0, 0.24); + opacity: 1; + border-radius: 0.08rem; + display: flex; + justify-content: center; + align-items: center; + font-size: 0.26rem; + font-weight: 400; + color: rgba(255, 255, 255, 1); } .log_three_list_fixed { - height: 1.12rem; - display: flex; - justify-content: space-between; - align-items: center; - background: #fff + height: 1.12rem; + display: flex; + justify-content: space-between; + align-items: center; + background: #fff } .log_three_fixed_left { - margin-left: 0.32rem; - display: flex; - justify-content: flex-start; - align-items: center + margin-left: 0.32rem; + display: flex; + justify-content: flex-start; + align-items: center } .log_three_fixed_left_one { - width: 0.32rem; - height: 0.32rem + width: 0.32rem; + height: 0.32rem } .log_three_fixed_left_two { - margin-left: 0.16rem; - font-size: 0.28rem; - font-family: PingFang SC; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + margin-left: 0.16rem; + font-size: 0.28rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_three_fixed_right { - width: 2.86rem; - height: 1.12rem; - background: linear-gradient(320deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%, rgba(0, 0, 0, 1) 100%); - opacity: 1; - display: flex; - justify-content: center; - align-items: center; - font-size: 0.34rem; - font-weight: 600; - color: rgba(255, 255, 255, 1); - opacity: 1; + width: 2.86rem; + height: 1.12rem; + background: linear-gradient(320deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%, rgba(0, 0, 0, 1) 100%); + opacity: 1; + display: flex; + justify-content: center; + align-items: center; + font-size: 0.34rem; + font-weight: 600; + color: rgba(255, 255, 255, 1); + opacity: 1; } @@ -897,250 +920,250 @@ /* 配送方式 */ .log_four_top { - display: flex; - justify-content: flex-start; - align-items: center; - padding: 0.2rem 0.32rem; - box-sizing: border-box; - margin-top: 0.16rem; + display: flex; + justify-content: flex-start; + align-items: center; + padding: 0.2rem 0.32rem; + box-sizing: border-box; + margin-top: 0.16rem; } .log_four_top_left { - font-size: 0.3rem; - font-family: PingFang SC; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + font-size: 0.3rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_four_top_right { - margin-left: 0.64rem; - display: flex; - justify-content: flex-start; - align-items: center + margin-left: 0.64rem; + display: flex; + justify-content: flex-start; + align-items: center } .log_four_top_right_bg { - background-image: url(../images/71.png); - background-size: 100% 100%; - background-repeat: no-repeat; - color: #F20000 + background-image: url(../img/71.png); + background-size: 100% 100%; + background-repeat: no-repeat; + color: #F20000 } .log_four_top_right_one { - padding: 0.16rem 0.4rem; + padding: 0.16rem 0.4rem; } .log_four_top_right_two { - margin-left: 0.28rem; - padding: 0.16rem 0.2rem; - border: 0.02rem solid rgba(153, 153, 153, 1); - opacity: 1; + margin-left: 0.28rem; + padding: 0.16rem 0.2rem; + border: 0.02rem solid rgba(153, 153, 153, 1); + opacity: 1; } .log_psong input{ - width: 3rem; - text-align: right; - color:#333333; - font-size: 0.26rem; + width: 3rem; + text-align: right; + color:#333333; + font-size: 0.26rem; } .log_ks,.log_jsu,.log_xue{ - color: #CCCCCC; - margin-left: auto; + color: #CCCCCC; + margin-left: auto; margin-right: 0.26rem; font-size: 0.28rem; } /* 地址信息 */ .log_four_input { - padding: 0.28rem 0.32rem; - margin-top: 0.16rem; - box-sizing: border-box; + padding: 0.28rem 0.32rem; + margin-top: 0.16rem; + box-sizing: border-box; } .log_four_input_title { - font-size: 0.3rem; - color: rgba(51, 51, 51, 1); + font-size: 0.3rem; + color: rgba(51, 51, 51, 1); } .log_four_input_one { - padding: 0.3rem 0 0.24rem 0; - box-sizing: border-box; - display: flex; - align-items: center; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1) + padding: 0.3rem 0 0.24rem 0; + box-sizing: border-box; + display: flex; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1) } .log_four_input_one:last-child{ - border: 0; - padding-bottom: 0; + border: 0; + padding-bottom: 0; } .log_four_input_one_center { - margin-left: auto; + margin-left: auto; } .log_four_input_one_left { - font-size: 0.28rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; - /* text-align: left */ + font-size: 0.28rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; + /* text-align: left */ } .log_four_input_one_center input { - outline: none; - text-align: right; - height: 0.4rem; - font-size: 0.28rem; - font-weight: 400; - color: #333; - border: none; - margin: 0; - padding: 0; + outline: none; + text-align: right; + height: 0.4rem; + font-size: 0.28rem; + font-weight: 400; + color: #333; + border: none; + margin: 0; + padding: 0; } .log_four_top, .log_four_input, .log_four_order, .log_four_pash { - background-color: white; + background-color: white; } .log_four_input_one_center input::placeholder { - color: #CCCCCC; + color: #CCCCCC; } .log_four_input_border { - border: none + border: none } .log_four_input_phone { - margin-left: -0.25rem; + margin-left: -0.25rem; } .log_four_input_one_right { - width: 0.1rem; - height: 0.2rem; - margin-left: 0.18rem; + width: 0.1rem; + height: 0.2rem; + margin-left: 0.18rem; } /* 选择框 */ .log_four_radio { - display: none; + display: none; } .log_four_contant { - padding: 0.26rem 0 0.18rem 0.5rem; - box-sizing: border-box + padding: 0.26rem 0 0.18rem 0.5rem; + box-sizing: border-box } .log_four_contant_one { - display: flex; - justify-content: flex-start; - align-items: center; - margin-bottom: 0.32rem + display: flex; + justify-content: flex-start; + align-items: center; + margin-bottom: 0.32rem } .log_four_contant_left { - width: 0.32rem; - height: 0.32rem + width: 0.32rem; + height: 0.32rem } .log_four_contant_right { - font-size: 0.32rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; - margin-left: 0.14rem + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; + margin-left: 0.14rem } .log_four_radios { - display: none + display: none } .log_four_contants { - padding: 0.26rem 0 0.18rem 0.5rem; - box-sizing: border-box + padding: 0.26rem 0 0.18rem 0.5rem; + box-sizing: border-box } .log_four_contants_left { - width: 0.32rem; - height: 0.32rem + width: 0.32rem; + height: 0.32rem } .log_four_contants_right { - font-size: 0.32rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; - margin-left: 0.14rem + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; + margin-left: 0.14rem } /* 显示班级 */ .log_botms { - display: flex; - justify-content: flex-start; - align-items: center; - margin-bottom: 0.32rem + display: flex; + justify-content: flex-start; + align-items: center; + margin-bottom: 0.32rem } .log_four_contants_input_block { - display: none + display: none } .log_four_contants_input { - padding-left: 0.32rem; - margin-bottom: 0.22rem + padding-left: 0.32rem; + margin-bottom: 0.22rem } .log_four_contants_input { - display: flex; - justify-content: flex-start; + display: flex; + justify-content: flex-start; } .log_four_xian_ban, .log_four_xian_ban2 { - display: flex; - justify-content: flex-start; - background: rgba(247, 247, 247, 1); - opacity: 1; - border-radius: 0.08rem; - padding: 0.12rem 0.24rem 0.12rem 0.16rem; - box-sizing: border-box + display: flex; + justify-content: flex-start; + background: rgba(247, 247, 247, 1); + opacity: 1; + border-radius: 0.08rem; + padding: 0.12rem 0.24rem 0.12rem 0.16rem; + box-sizing: border-box } .log_four_xian_nei { - font-size: 0.26rem; - font-weight: 400; - color: rgba(204, 204, 204, 1); - opacity: 1; + font-size: 0.26rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; } .log_four_xian_nei input{ - width: 2.08rem; - height: 0.36rem; - font-size: 0.26rem; - color: #333; - margin-bottom: 0!important; + width: 2.08rem; + height: 0.36rem; + font-size: 0.26rem; + color: #333; + margin-bottom: 0!important; } .log_four_xian_icon { - margin-top: 0.15rem; - margin-left: 0.28rem; - width: 0.2rem; - height: 0.1rem + margin-top: 0.15rem; + margin-left: 0.28rem; + width: 0.2rem; + height: 0.1rem } .log_four_xian_icon img { - width: 100%; - height: 100% + width: 100%; + height: 100% } .log_four_xian_wife { - margin: 0 0.12rem; - color: rgba(245, 245, 245, 1) + margin: 0 0.12rem; + color: rgba(245, 245, 245, 1) } @@ -1148,147 +1171,147 @@ .log_four_li, .log_four_li2 { - display: none; - padding: 0 0 0 0.16rem + display: none; + padding: 0 0 0 0.16rem } .log_four_li li, .log_four_li2 li { - font-size: 0.26rem; - line-height: 0.52rem; - font-weight: 400; + font-size: 0.26rem; + line-height: 0.52rem; + font-weight: 400; } /* 订单信息 */ .log_four_order { - margin-top: 0.28rem + margin-top: 0.28rem } .log_four_order_details { - padding: 0.28rem 0.36rem; - box-sizing: border-box + padding: 0.28rem 0.36rem; + box-sizing: border-box } .log_four_order_one { - border-top: 0.02rem solid rgba(245, 245, 245, 1); - padding: 0.28rem 0; - display: flex; - justify-content: flex-start; - align-items: center + border-top: 0.02rem solid rgba(245, 245, 245, 1); + padding: 0.28rem 0; + display: flex; + justify-content: flex-start; + align-items: center } .log_four_order_left { - width: 1.4rem; - height: 1.4rem + width: 1.4rem; + height: 1.4rem } .log_four_order_left img { - width: 100%; - height: 100% + width: 100%; + height: 100% } .log_four_order_center { - margin-left: 0.26rem + margin-left: 0.26rem } .log_four_order_center_one { - width: 2.8rem; - font-size: 0.34rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + width: 2.8rem; + font-size: 0.34rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_four_order_center_two { - margin-top: 0.24rem; - font-size: 0.28rem; - font-weight: 400; - color: rgba(153, 153, 153, 1); - opacity: 1; + margin-top: 0.24rem; + font-size: 0.28rem; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; } .log_four_order_right { - margin-left: 1rem; - font-size: 0.4rem; - font-weight: 400; - color: rgba(242, 0, 0, 1); - opacity: 1; + margin-left: 1rem; + font-size: 0.4rem; + font-weight: 400; + color: rgba(242, 0, 0, 1); + opacity: 1; } .log_four_order_right span { - font-size: 0.28rem + font-size: 0.28rem } /* 支付方式 */ .log_four_pash { - margin-top: 0.16rem; - margin-bottom: 0.4rem; - padding: 0.22rem 0.32rem 0.22rem 0.34rem; + margin-top: 0.16rem; + margin-bottom: 0.4rem; + padding: 0.22rem 0.32rem 0.22rem 0.34rem; } .log_four_pash_top { - display: flex; - justify-content: space-between; - align-items: center; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1); - padding-bottom: 0.28rem + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding-bottom: 0.28rem } .log_four_pash_top_one { - font-size: 0.3rem; - font-family: PingFang SC; - font-weight: 400; - color: rgba(102, 102, 102, 1); - opacity: 1; + font-size: 0.3rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(102, 102, 102, 1); + opacity: 1; } .log_four_pash_top_two { - width: 0.56rem; - height: 0.56rem + width: 0.56rem; + height: 0.56rem } .log_four_pash_bottom { - margin-top: 0.3rem; - display: flex; - justify-content: flex-start; + margin-top: 0.3rem; + display: flex; + justify-content: flex-start; } .log_four_pash_bottom_two { - margin-left: 0.26rem + margin-left: 0.26rem } .log_four_pash_bottom_two textarea { - margin-top: 0.03rem; - border: none; - font-size: 0.26rem; - font-weight: 400; - color: #333; - opacity: 1; + margin-top: 0.03rem; + border: none; + font-size: 0.26rem; + font-weight: 400; + color: #333; + opacity: 1; } /* 底部按钮 */ .log_four_zong_qian { - font-size: 0.28rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + font-size: 0.28rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_four_zong_shu { - font-size: 0.4rem; - font-weight: 400; - color: rgba(242, 0, 0, 1); - opacity: 1; + font-size: 0.4rem; + font-weight: 400; + color: rgba(242, 0, 0, 1); + opacity: 1; } .log_four_zong_shu span { - font-size: 0.28rem + font-size: 0.28rem } @@ -1298,331 +1321,339 @@ /* 商品列表 */ .log_five_list { - padding: 0.32rem 0.3rem 0.32rem 0.32rem; - display: flex; - justify-content: space-around; + padding: 0.32rem 0.3rem 0.32rem 0.32rem; + display: flex; + justify-content: space-around; } .log_five_list_left { - width: 1.64rem; - height: 1.64rem + width: 1.64rem; + height: 1.64rem } .log_five_list_center_one { - font-size: 0.32rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_five_list_center_three { - margin-top: 0.06rem; - font-size: 0.22rem; - font-weight: 400; - color: rgba(204, 204, 204, 1); - opacity: 1; + margin-top: 0.06rem; + font-size: 0.22rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; } .log_five_list_right { - width: 0.48rem; - height: 0.48rem; - margin-top: 1.2rem + width: 0.48rem; + height: 0.48rem; + margin-top: 1.2rem } /* 操作 */ .log_five_handle { - background: rgba(247, 247, 247, 1); - padding: 0.14rem 0 0.08rem 0!important; - display: flex; - justify-content: space-around; - align-items: center + background: rgba(247, 247, 247, 1); + padding: 0.14rem 0 0.08rem 0!important; + display: flex; + justify-content: space-around; + align-items: center } .log_five_handle_one { - display: flex; - flex-direction: column; - align-items: center + display: flex; + flex-direction: column; + align-items: center } .log_five_handle_img { - width: 0.4rem; - height: 0.4rem + width: 0.4rem; + height: 0.4rem } .log_five_handle_word { - font-size: 0.2rem; - font-weight: 400; - color: rgba(102, 102, 102, 1); - opacity: 1; + font-size: 0.2rem; + font-weight: 400; + color: rgba(102, 102, 102, 1); + opacity: 1; } /* log_six页面 */ -.log_six_add_photo { - border-top: 0.02rem solid rgba(247, 247, 247, 1); - display: flex; - flex-direction: column; - justify-content: space-around; - align-items: center; - padding: 0.52rem 0 0.44rem 0 -} - -.log_six_add_photos { - padding: 0 +/*.log_six_add_photo { + border-top: 0.02rem solid rgba(247, 247, 247, 1); + display: flex; + flex-direction: column; + justify-content: space-between; + align-items: center; + padding: 0.52rem 0 0.44rem 0 +}*/ +.log_six_add_photo{ + padding: 0.52rem 1.62rem 0.44rem 1.62rem; + border-top: 0.02rem solid rgba(247, 247, 247, 1); + display: flex; + justify-content: space-between; + align-items: center; +} +.log_six_photo_one{ + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; } - .log_six_add_img { - width: 0.64rem; - height: 0.46rem; + width: 0.64rem; + height: 0.46rem; } .log_six_add_imgs { - width: 100%; - height: 1.92rem; + width: 100%; + height: 1.92rem; } .log_six_add_img img { - width: 100%; - height: 100% + width: 100%; + height: 100% } .log_six_add_titles { - display: none + display: none } .log_six_add_title { - margin-top: 0.2rem; - font-size: 0.26rem; - font-weight: 400; - color: rgba(204, 204, 204, 1); - opacity: 1; + margin-top: 0.2rem; + font-size: 0.26rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; } .log_six_input_one { - margin-top: 0.26rem; - display: flex; - justify-content: flex-start; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + margin-top: 0.26rem; + display: flex; + justify-content: flex-start; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); } .log_six_input_contant textarea { - border: none; - margin: 0 0 0.3rem 0.36rem; - padding: 0.1rem 0.3rem; - font-size: 0.32rem; - font-weight: 400; - color: rgba(204, 204, 204, 1); - opacity: 1; + border: none; + margin: 0 0 0.3rem 0.36rem; + padding: 0.1rem 0.3rem; + font-size: 0.32rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; } .log_six_wire { - width: 7.5rem; - height: 0.16rem; - background: rgba(247, 247, 247, 1); - opacity: 1; + width: 7.5rem; + height: 0.16rem; + background: rgba(247, 247, 247, 1); + opacity: 1; } /* 套装 */ .log_six_select_contant { - padding: 0 0.3rem 0.26rem 0.32rem; - box-sizing: border-box + padding: 0 0.3rem 0.26rem 0.32rem; + box-sizing: border-box } .log_six_select_top { - margin-top: 0.26rem; - display: flex; - justify-content: space-between; - align-items: center; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1); - padding-bottom: 0.24rem + margin-top: 0.26rem; + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding-bottom: 0.24rem } .log_six_select_left { - display: flex; - justify-content: flex-start; - align-items: center + display: flex; + justify-content: flex-start; + align-items: center } .log_six_select_one { - width: 1.6rem; - font-size: 0.32rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + width: 1.6rem; + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_six_select_two { - margin-left: 0.75rem; - font-size: 0.32rem; - font-weight: 400; - color: rgba(204, 204, 204, 1); - opacity: 1; + margin-left: 0.75rem; + font-size: 0.32rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; } .log_six_select_three { - width: 0.1rem; - height: 0.2rem + width: 0.1rem; + height: 0.2rem } /* 上传图片 */ .log_six_file_picture { - margin-top: 0.2rem; - display: flex; - justify-content: flex-start; - align-items: center + margin-top: 0.2rem; + display: flex; + justify-content: flex-start; + align-items: center } .log_six_picture { - position: relative; - margin-right: 0.16rem + position: relative; + margin-right: 0.16rem } .log_six_picture_one { - width: 1.6rem; - height: 1.6rem; - border: 0.02rem dashed rgba(204, 204, 204, 1); - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; + width: 1.6rem; + height: 1.6rem; + border: 0.02rem dashed rgba(204, 204, 204, 1); + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; } .log_six_pictyre_img { - width: 0.48rem; - height: 0.48rem + width: 0.48rem; + height: 0.48rem } .log_six_pictyre_imgs { - width: 100%; - height: 1.6rem + width: 100%; + height: 1.6rem } .log_six_pictyre_img img { - width: 100%; - height: 100% + width: 100%; + height: 100% } .log_six_pictyre_title { - font-size: 0.24rem; - font-weight: 400; - color: rgba(204, 204, 204, 1); - opacity: 1; + font-size: 0.24rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; } .log_six_pictyre_titles { - display: none + display: none } .input_files { - position: absolute; - top: 0; - left: 0; - opacity: 0 + position: absolute; + top: 0; + left: 0; + opacity: 0 } .input_files input { - width: 1.6rem; - height: 1.6rem; + width: 1.6rem; + height: 1.6rem; } /* log_seven页面 */ .log_seven { - padding: 0.32rem 0.3rem 0.16rem 0.4rem + padding: 0.32rem 0.3rem 0.16rem 0.4rem } .log_seven_list { - background-size: cover; - background-repeat: no-repeat; - display: flex; - justify-content: space-between; - padding: 0.2rem 0.34rem 0.32rem 0.26rem; - margin-bottom: 0.16rem + background-size: cover; + background-repeat: no-repeat; + display: flex; + justify-content: space-between; + padding: 0.2rem 0.34rem 0.32rem 0.26rem; + margin-bottom: 0.16rem } .log_seven_list_one { - background-image: url(../img/81.png); + background-image: url(../img/81.png); } .log_seven_list_two { - background-image: url(../img/80.png); + background-image: url(../img/80.png); } .log_seven_list_three { - background-image: url(../img/79.png); + background-image: url(../img/79.png); } .log_seven_list_four { - background-image: url(../img/78.png); + background-image: url(../img/78.png); } .log_seven_right { - display: flex; - justify-content: flex-start; + display: flex; + justify-content: flex-start; } .log_seven_left_one { - font-size: 0.32rem; - font-weight: 500; - color: rgba(255, 141, 42, 1); - opacity: 1; + font-size: 0.32rem; + font-weight: 500; + color: rgba(255, 141, 42, 1); + opacity: 1; } .log_seven_left_two { - margin-top: 0.16rem; - font-size: 0.22rem; - font-weight: 400; - color: rgba(153, 153, 153, 1); - opacity: 1; + margin-top: 0.16rem; + font-size: 0.22rem; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; } .log_secen_left_three { - margin-top: 0.12rem; - font-size: 0.26rem; - font-weight: 400; - color: rgba(153, 153, 153, 1); - opacity: 1; + margin-top: 0.12rem; + font-size: 0.26rem; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; } .log_seven_right_one { - width: 0.32rem; - height: 0.32rem + width: 0.32rem; + height: 0.32rem } .log_seven_right_two { - margin-left: 0.14rem + margin-left: 0.14rem } /* 按钮 */ .log_seven_btn { - margin-top: 0.96rem; - display: flex; - justify-content: center; - align-items: center + margin-top: 0.96rem; + display: flex; + justify-content: center; + align-items: center } .log_seven_btn_contant { - width: 6.88rem; - height: 0.96rem; - background: linear-gradient(344deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); - box-shadow: 0 0.06rem 0.12rem rgba(255, 87, 0, 0.24); - opacity: 1; - border-radius: 0.08rem; - display: flex; - justify-content: center; - align-items: center; - font-size: 0.34rem; - font-weight: 600; - color: rgba(255, 255, 255, 1); + width: 6.88rem; + height: 0.96rem; + background: linear-gradient(344deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + box-shadow: 0 0.06rem 0.12rem rgba(255, 87, 0, 0.24); + opacity: 1; + border-radius: 0.08rem; + display: flex; + justify-content: center; + align-items: center; + font-size: 0.34rem; + font-weight: 600; + color: rgba(255, 255, 255, 1); } @@ -1632,434 +1663,434 @@ /* log_nine页面 */ .log_nine_top { - width: 100%; - background: linear-gradient(334deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); - opacity: 1; + width: 100%; + background: linear-gradient(334deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + opacity: 1; } .log_nine_money { - padding: 0.6rem 0 0.74rem 0; - display: flex; - flex-direction: column; - align-items: center + padding: 0.6rem 0 0.74rem 0; + display: flex; + flex-direction: column; + align-items: center } .nine_money_one { - font-size: 0.22rem; - font-weight: 400; - color: rgba(255, 255, 255, 1); - opacity: 0.7; + font-size: 0.22rem; + font-weight: 400; + color: rgba(255, 255, 255, 1); + opacity: 0.7; } .nine_money_two { - margin-top: 0.22rem; - font-size: 0.68rem; - font-weight: 400; - color: rgba(255, 255, 255, 1); - opacity: 1; + margin-top: 0.22rem; + font-size: 0.68rem; + font-weight: 400; + color: rgba(255, 255, 255, 1); + opacity: 1; } .nine_money_explain { - display: flex; - justify-content: space-around; - align-items: center; - padding-bottom: 0.26rem + display: flex; + justify-content: space-around; + align-items: center; + padding-bottom: 0.26rem } .nine_money_explain_one { - display: flex; - justify-content: flex-start; + display: flex; + justify-content: flex-start; } .nine_money_explain_one_img { - width: 0.32rem; - height: 0.24rem; - margin-top: 0.06rem; + width: 0.32rem; + height: 0.24rem; + margin-top: 0.06rem; } .nine_money_explain_two_img { - width: 0.32rem; - height: 0.32rem; - margin-top: 0.04rem; + width: 0.32rem; + height: 0.32rem; + margin-top: 0.04rem; } .nine_money_explain_title { - font-size: 0.26rem; - font-weight: 400; - color: rgba(255, 255, 255, 1); - opacity: 0.7; - margin-left: 0.08rem + font-size: 0.26rem; + font-weight: 400; + color: rgba(255, 255, 255, 1); + opacity: 0.7; + margin-left: 0.08rem } /* 其他信息 */ .log_nine_center { - background: rgba(247, 247, 247, 1); - padding: 0.16rem 0 0.16rem 0.32rem; - font-size: 0.26rem; - font-weight: 400; - color: rgba(204, 204, 204, 1); - opacity: 1; + background: rgba(247, 247, 247, 1); + padding: 0.16rem 0 0.16rem 0.32rem; + font-size: 0.26rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; } /* 列表 */ .log_nine_list_one { - display: flex; - justify-content: space-between; - align-items: center; - padding: 0.24rem 0.3rem 0.22rem 0.32rem; - box-sizing: border-box; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1) + display: flex; + justify-content: space-between; + align-items: center; + padding: 0.24rem 0.3rem 0.22rem 0.32rem; + box-sizing: border-box; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1) } .log_nine_list_one_left { - display: flex; - justify-content: flex-start; - align-items: center + display: flex; + justify-content: flex-start; + align-items: center } .log_nine_list_one_left_img { - width: 0.32rem; - height: 0.32rem + width: 0.32rem; + height: 0.32rem } .log_nine_list_one_left_title { - margin-left: 0.16rem; - font-size: 0.32rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + margin-left: 0.16rem; + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_nine_list_one_left_title_add { - margin-left: 0.32rem; - font-size: 0.28rem; - color: #999999 + margin-left: 0.32rem; + font-size: 0.28rem; + color: #999999 } .log_nine_list_one_right { - width: 0.1rem; - height: 0.2rem + width: 0.1rem; + height: 0.2rem } /* log_ten页面 */ .log_ten_list { - /* margin-top: 0.32rem; */ - padding: 0.32rem; - box-sizing: border-box + /* margin-top: 0.32rem; */ + padding: 0.32rem; + box-sizing: border-box } .log_ten_list_contant { - padding: 0.48rem 0.18rem; - box-sizing: border-box + padding: 0.48rem 0.18rem; + box-sizing: border-box } .log_ten_list_one { - padding: 0.16rem 0.26rem 0.3rem 0.16rem; - display: flex; - justify-content: flex-start; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1); - /* background: rgba(245, 245, 245, 1) */ + padding: 0.16rem 0.26rem 0.3rem 0.16rem; + display: flex; + justify-content: flex-start; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + /* background: rgba(245, 245, 245, 1) */ } .log_ten_list_one_left { - width: 1.28rem; - height: 1.28rem + width: 1.28rem; + height: 1.28rem } .log_ten_list_one_left img { - width: 100%; - height: 100% + width: 100%; + height: 100% } .log_ten_list_one_center { - margin-left: 0.22rem; - margin-top: 0.16rem + margin-left: 0.22rem; + margin-top: 0.16rem } .log_ten_list_one_center_top { - width: 3.2rem; - font-size: 0.34rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + width: 3.2rem; + font-size: 0.34rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_ten_list_one_center_bottom { - margin-top: 0.2rem; - display: flex; - justify-content: flex-start; + margin-top: 0.2rem; + display: flex; + justify-content: flex-start; } .log_ten_list_onb_icon { - width: 0.24rem; - height: 0.24rem; - margin-top: 0.05rem + width: 0.24rem; + height: 0.24rem; + margin-top: 0.05rem } .log_ten_list_onb_title { - margin-left: 0.1rem; - font-size: 0.22rem; - line-height: 18px; - color: rgba(204, 204, 204, 1); - opacity: 1; + margin-left: 0.1rem; + font-size: 0.22rem; + line-height: 18px; + color: rgba(204, 204, 204, 1); + opacity: 1; } .log_ten_list_one_right { - margin-left: 1.2rem; + margin-left: 1.2rem; } .log_ten_list_one_right_top { - font-size: 0.34rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + font-size: 0.34rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_ten_list_one_right_top span { - font-size: 0.24rem + font-size: 0.24rem } .log_ten_list_one_right_bottom { - margin-top: 0.24rem; - font-size: 0.24rem; - font-weight: 400; - color: rgba(153, 153, 153, 1); - opacity: 1; + margin-top: 0.24rem; + font-size: 0.24rem; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; } .log_ten_money_select_top { - display: flex; - justify-content: center; - align-items: center; - font-size: 0.4rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; - margin-bottom: 0.42rem + display: flex; + justify-content: center; + align-items: center; + font-size: 0.4rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; + margin-bottom: 0.42rem } .log_ten_money_select_top span { - font-size: 0.22rem; + font-size: 0.22rem; } .log_ten_money_select_title { - font-size: 0.32rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_ten_bottom_btn_left { - width: 4.16rem; - background: #fff; - font-size: 0.34rem; - font-weight: 600; - color: rgba(51, 51, 51, 1); - opacity: 1; + width: 4.16rem; + background: #fff; + font-size: 0.34rem; + font-weight: 600; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_ten_bottom_btn_right-right { - width: 3.34rem + width: 3.34rem } .log_eleven_hide { - display: none + display: none } .log_ten_block { - display: block!important; + display: block!important; } /* log_eleven页面 */ .log_eleven_list { - padding: 0.32rem; - box-sizing: border-box + padding: 0.32rem; + box-sizing: border-box } .log_eleven_list_contant { - display: flex; - justify-content: space-between; - align-items: center; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1); - padding: 0.34rem 0.4rem 0.4rem 0.32rem; - box-sizing: border-box; - margin-bottom: 0.22rem + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding: 0.34rem 0.4rem 0.4rem 0.32rem; + box-sizing: border-box; + margin-bottom: 0.22rem } .log_eleven_title { - font-size: 0.32rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_eleven_time { - margin-top: 0.2rem; - display: flex; - justify-content: flex-start; - align-items: center + margin-top: 0.2rem; + display: flex; + justify-content: flex-start; + align-items: center } .log_eleven_time_icon { - width: 0.32rem; - height: 0.32rem + width: 0.32rem; + height: 0.32rem } .log_eleven_time_num { - margin-left: 0.18rem; - font-size: 0.28rem; - font-weight: 400; - color: rgba(102, 102, 102, 1); - opacity: 1; + margin-left: 0.18rem; + font-size: 0.28rem; + font-weight: 400; + color: rgba(102, 102, 102, 1); + opacity: 1; } .log_eleven_list_contant_right { - font-size: 0.32rem; - font-weight: 400; - color: rgba(242, 0, 0, 1); - opacity: 1; + font-size: 0.32rem; + font-weight: 400; + color: rgba(242, 0, 0, 1); + opacity: 1; } /* log_twelve页面 */ .log_twelve_list { - margin-top: 0.16rem; - padding: 0.32rem 0.3rem 0.32rem 0.32rem; - box-sizing: border-box + margin-top: 0.16rem; + padding: 0.32rem 0.3rem 0.32rem 0.32rem; + box-sizing: border-box } .log_twelve_list_contant_one { - display: flex; - justify-content: space-between; - align-items: center; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1); - padding-bottom: 0.18rem + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding-bottom: 0.18rem } .log_twelve_list_left, .log_twelve_list_right { - display: flex; - justify-content: flex-start; - align-items: center + display: flex; + justify-content: flex-start; + align-items: center } .log_twelve_list_left_img { - width: 0.8rem; - height: 0.8rem; + width: 0.8rem; + height: 0.8rem; } .log_twelve_list_left_img img { - width: 100%; - height: 100% + width: 100%; + height: 100% } .log_twelve_list_left_title { - margin-left: 0.16rem; - font-size: 0.32rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + margin-left: 0.16rem; + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_twelve_list_right_word { - font-size: 0.26rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + font-size: 0.26rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_twelve_list_right_word span { - margin-left: 0.04rem + margin-left: 0.04rem } .log_twelve_list_right_icon { - margin-left: 0.3rem; - width: 0.2rem; - height: 0.1rem; + margin-left: 0.3rem; + width: 0.2rem; + height: 0.1rem; } .log_twelve_list_right_icon img { - width: 100%; - height: 100% + width: 100%; + height: 100% } /* 佣金列表 */ .log_twelve_money { - padding: 0.28rem 0 0.18rem 0.4rem; - box-sizing: border-box + padding: 0.28rem 0 0.18rem 0.4rem; + box-sizing: border-box } .log_twelve_money_one { - display: flex; - justify-content: space-between; - align-items: center; - border-bottom: 0.02rem solid rgba(245, 245, 245, 1); - padding-bottom: 0.18rem + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding-bottom: 0.18rem } .log_twelver_money_left_top { - display: flex; - justify-content: flex-start; - align-items: center + display: flex; + justify-content: flex-start; + align-items: center } .log_twe_mon_left_one { - width: 0.48rem; - height: 0.48rem + width: 0.48rem; + height: 0.48rem } .log_twe_mon_left_one img { - width: 100%; - height: 100% + width: 100%; + height: 100% } .log_twe_mon_left_two { - margin-left: 0.24rem; - font-size: 0.28rem; - font-weight: 400; - color: rgba(51, 51, 51, 1); - opacity: 1; + margin-left: 0.24rem; + font-size: 0.28rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; } .log_twe_mon_left_three { - margin-left: 0.12rem; - display: flex; - justify-content: center; - align-items: center; - width: 1.16rem; - height: 0.34rem; - background: linear-gradient(350deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); - opacity: 1; - border-radius: 0.22rem; - font-size: 0.22rem; - color: rgba(255, 255, 255, 1); + margin-left: 0.12rem; + display: flex; + justify-content: center; + align-items: center; + width: 1.16rem; + height: 0.34rem; + background: linear-gradient(350deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + opacity: 1; + border-radius: 0.22rem; + font-size: 0.22rem; + color: rgba(255, 255, 255, 1); } .log_twelver_money_left_bottom { - font-size: 0.26rem; - font-weight: 400; - color: rgba(102, 102, 102, 1); - opacity: 1; + font-size: 0.26rem; + font-weight: 400; + color: rgba(102, 102, 102, 1); + opacity: 1; } /* 修改 */ .there_unActive { - color: #FF7700 !important; - border-top: 1px solid #F5F5F5; - border-bottom: 1px solid #F5F5F5; - padding: 0.34rem 0; - box-sizing: border-box; -} \ No newline at end of file + color: #FF7700 !important; + border-top: 1px solid #F5F5F5; + border-bottom: 1px solid #F5F5F5; + padding: 0.34rem 0; + box-sizing: border-box; +} diff --git a/public/themes/simpleboot3/public/assets/css/log(2).css b/public/themes/simpleboot3/public/assets/css/log(2).css new file mode 100644 index 0000000..67c6b96 --- /dev/null +++ b/public/themes/simpleboot3/public/assets/css/log(2).css @@ -0,0 +1,2065 @@ +/* 弹框 */ + +.tx_mask { + display: none; + z-index: 2; + width: 100%; + height: 100%; + position: fixed; + background-color: rgba(0, 0, 0, 0.5); +} + +.tx_maskone { + display: none; + z-index: 2; + width: 100%; + height: 100%; + position: fixed; + background-color: rgba(0, 0, 0, 0.5); +} + +.tx_maskCon { + width: 5.6rem; + height: 6rem; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + -webkit-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + -moz-transform: translate(-50%, -50%); + -o-transform: translate(-50%, -50%); +} + +.tx_maskConImg { + width: 100%; + height: 2.5rem; +} + +.tx_maskConImg img { + width: 100%; + height: 100%; +} + +.tx_maskCon2 { + width: 99.8%; + margin-top: -0.34rem; + box-sizing: border-box; + background-color: white; + padding: 0.66rem 0.32rem 0.3rem; +} + +.tx_maskInput { + width: 100%; + outline: none; + font-size: 0.32rem; + padding-bottom: 0.16rem; + color: rgba(204, 204, 204, 1); + border-bottom: 1px solid #F5F5F5; +} + +.tx_maskInput::placeholder { + color: rgba(204, 204, 204, 1); +} + +.tx_maskOk { + width: 100%; + height: 0.8rem; + background: linear-gradient(338deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + border-radius: 0.08rem; + text-align: center; + line-height: 0.8rem; + color: white; + font-size: 0.32rem; + margin-top: 0.4rem; +} + +.tx_maskTxt1 { + padding-top: 0.24rem; + display: flex; + display: -webkit-flex; + align-items: center; + justify-content: center; +} + +.tx_maskConImg2 { + width: 0.3rem; + height: 0.3rem; +} + +.tx_maskConImg2 img { + width: 100%; + height: 100%; +} + +.tx_maskTxt1 span { + margin-left: 0.04rem; + font-size: 0.24rem; + color: rgba(45, 45, 45, 1); +} + +.tx_maskTxt2 { + padding-top: 0.2rem; + text-align: center; + font-size: 0.24rem; + color: rgba(204, 204, 204, 1); +} + +.log_top { + width: 100%; + /* height: 1.76rem; */ + background-image: url(../images/41.png); + background-size: cover; + background-repeat: no-repeat; +} + +.log_top_co { + width: 100% +} + + +/* .detail_top { + background: linear-gradient(338deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); +} */ + +.order_top { + position: relative; + width: 100%; + height: 0.88rem; +} + +.order_top img { + width: 0.32rem; + position: absolute; + margin-top: -0.16rem; + top: 50%; + left: 0.32rem; +} + +.order_top p { + text-align: center; + font-size: 0.34rem; + line-height: 0.88rem; + font-weight: 600; + color: rgba(51, 51, 51, 1); +} + + +/* 头像 */ + +.log_top_buddha { + display: flex; + justify-content: flex-start; + align-items: center; + /* margin-left: 0.32rem; */ + padding: 0.32rem 0 0.64rem 0.32rem; + box-sizing: border-box +} + +.log_top_buddha_img { + width: 1.28rem; + height: 1.28rem; + border-radius: 50%; + opacity: 1; +} + +.log_top_buddha_img img { + width: 100%; + height: 100% +} + +.log_top_buddha_contant { + /* display: none; */ + margin-left: 0.16rem +} + +.log_top_buddha_contant_one { + font-size: 0.36rem; + font-family: PingFang SC; + font-weight: 600; + color: rgba(255, 255, 255, 1); + opacity: 1; +} + +.log_top_buddha_contant_two { + font-size: 0.24rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(255, 255, 255, 1); + opacity: 0.9; +} + + +/* 个人资料 */ + +.log_top_buddha_btn { + display: block; + margin-left: 0.16rem; + width: 2.22rem; + height: 0.6rem; + border: 0.02rem solid rgba(255, 255, 255, 1); + opacity: 1; + border-radius: 0.3rem; + display: flex; + justify-content: center; + align-content: center; +} + +.log_top_buddha_btn a { + color: #fff; + font-size: 0.26rem; + line-height: 0.6rem; +} + + +/* 底部导航 */ + +.in_bottom { + position: fixed; + bottom: 0; + width: 100%; + height: 0.98rem; + background-color: white; + box-shadow: 0rem 0rem 0.3rem rgba(0, 0, 0, 0.05); +} + +.in_bottom ul { + display: flex; + display: -webkit-flex; + align-items: center; + height: 0.98rem; + margin: 0 0.7rem; + justify-content: space-between; +} + +.in_bottom ul li img { + margin: auto; + width: 0.48rem; +} + +.in_bottom ul li p { + color: #B5B5B5; + font-size: 0.2rem; + text-align: center; +} + +.ad_top { + display: flex; + display: -webkit-flex; + align-items: center; + padding: 0.18rem 0.32rem; + box-sizing: border-box; + justify-content: space-between; +} + +.ad_topImg { + width: 0.32rem; +} + + +/* log_one页面 */ + + +/* 列表 */ + +.log_one_list_one { + display: flex; + justify-content: space-between; + align-items: center; + padding: 0.4rem 0.22rem 0.26rem 0.32rem; + box-sizing: border-box; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); +} + +.log_one_list_left { + display: flex; + justify-content: flex-start; + align-items: center +} + +.log_one_list_img { + width: 0.32rem; + height: 0.32rem; + opacity: 1; +} + +.log_one_list_word { + margin-left: 0.16rem; + font-size: 0.32rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_one_list_right { + width: 0.18rem; + height: 0.16rem; + opacity: 1; +} + + +/* log_two页面 */ + +.log_two_input { + padding: 0.22rem 0.3rem 0 0.32rem; + box-sizing: border-box +} + +.log_two_input_one { + padding: 0.26rem 0; + box-sizing: border-box; + display: flex; + justify-content: flex-start; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); +} + +.log_two_input_btn { + font-size: 0.26rem; + font-weight: 400; + margin-left: auto; + color: rgba(0, 144, 255, 1); +} +.log_two_input_btn input{ + background: #fff; + color: rgba(0, 144, 255, 1); +} +.log_two_input_title { + width: 1.6rem; + height: 0.44rem; + font-size: 0.32rem; + font-weight: 400; + line-height: 0.36rem; + color: rgba(51, 51, 51, 1); +} + +.log_two_input_contant input { + margin-left: 0.36rem; + border: none; + /* width: 4.56rem; */ + height: 0.44rem; + font-size: 0.32rem; + font-family: PingFang SC; + font-weight: 400; + line-height: 0.36rem; + color: #333; +} + + +/* 上传图片 */ + +.log_two_picture { + padding: 0.4rem 0 0 0.32rem; + box-sizing: border-box; +} + +.log_two_picture_title { + font-size: 0.26rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; +} + +.log_two_picture_img { + margin-top: 0.4rem; + display: flex; + justify-content: flex-start; + align-items: center +} + +.log_two_pi_one { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + padding: 0.4rem 0.56rem 0.32rem 0.56rem; + box-sizing: border-box; + border: 0.02rem dashed rgba(204, 204, 204, 1); +} + +.log_two_pi_ones { + padding: 0 +} + +.log_two_pi_one_ps { + display: none +} + +.log_two_pi_one_icons { + width: 1.6rem!important; + height: 1.6rem!important +} + +.log_two_pi_two { + margin-left: 0.16rem +} + +.log_two_pi_one_icon { + width: 0.48rem; + height: 0.48rem +} + +.log_two_pi_one_icon img { + width: 100%; + height: 100% +} + +.log_two_pi_one_p { + margin-top: 0.08rem; + font-size: 0.24rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; +} + +.input_file { + position: absolute +} + +.input_file input { + width: 0.48rem; + opacity: 0 +} + +.log_two_picture_state { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center +} + +.log_two_picture_state { + margin-top: 0.46rem +} + +.log_two_ps_one { + font-size: 0.34rem; + font-family: PingFang SC; + font-weight: 600; + color: rgba(0, 0, 0, 1); + opacity: 1; +} + +.log_two_ps_two { + margin-top: 0.34rem; + width: 5.4rem; + height: 2.84rem; + position: relative +} + +.log_two_ps_two .img1 { + width: 100%; + height: 100% +} + +.log_two_ps_two .img2 { + position: absolute; + top: 2.14rem; + left: 2.46rem; + width: 0.48rem; + height: 0.48rem; + opacity: 1; +} + +.log_two_ps_three { + text-align: center; + width: 4.8rem; + height: 0.68rem; + font-size: 0.22rem; + font-family: PingFang SC; + font-weight: 400; + line-height: 0.36rem; + color: rgba(153, 153, 153, 1); + opacity: 1; +} + +.log_two_ps_three span { + color: #FF2E2E +} + + +/* 保存 */ + +.log_two_bottom_btn { + margin: 1.12rem 0.32rem 1.6rem 0.32rem; + box-sizing: border-box; + width: 6.88rem; + height: 0.96rem; + background: linear-gradient(344deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + box-shadow: 0 0.06rem 0.12rempx rgba(255, 111, 0, 0.24); + opacity: 1; + border-radius: 0.08rem; + display: flex; + justify-content: center; + align-items: center; +} + +.log_two_bottom_btn a { + color: #fff; + font-size: 0.34rem; + font-weight: 600; +} + + +/* log_three页面 */ + + +/* model弹窗 */ + +.log_three_model_one { + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding-bottom: 0.2rem; + margin-bottom: 0.3rem +} + +.log_three_model_left { + width: 1.28rem; + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_three_model_right { + display: flex; + justify-content: flex-start; + align-items: center +} + +.log_three_model_right_tltle { + font-size: 0.26rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; +} + +.log_three_model_right_icon { + margin-left: 0.1rem; + width: 0.1rem; + height: 0.2rem +} + +.log_three_model_right_icon img { + width: 100%; + height: 100% +} + +.log_three_model_right input { + + border: none; + padding: 0; + margin-left: 1.28rem; + text-align: right; + font-size: 0.26rem; + height: 0.36rem +} +.log_five_shanxian{ + display: none; +} + +/* 选择学校弹窗 */ + +.tx_mask_school { + display: none; + z-index: 2; + width: 100%; + height: 100%; + position: fixed; + background-color: rgba(0, 0, 0, 0.5); +} + +.tx_maskCon_school { + width: 100%; + height: 5.16rem; + background: #fff; + position: fixed; + bottom: 0; +} + +.three_model_school { + padding: 0.28rem 0 0.28rem 0.48rem; + box-sizing: border-box +} + +.three_model_school_title { + font-size: 0.3rem; + font-weight: 500; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.three_model_school_tab { + display: flex; + justify-content: space-between; + align-items: center; + padding: 0.24rem 1.68rem 0 1.2rem; + box-sizing: border-box; + font-size: 0.28rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1) +} + +.three_model_school_hover:after { + content: ""; + display: block; + width: 0.6rem; + height: 0.04rem; + margin: 0.2rem auto 0; + background-color: rgba(255, 119, 0, 1); + border-radius: 0.1rem 0.1rem 0 0; +} + +.three_model_school_data { + height: 3.64rem; + text-align: center; + display: none; + padding: 0.32rem 1.68rem 0.28rem 1.2rem; + box-sizing: border-box; + overflow-y: auto +} + +.three_model_school_name { + height: 0.36rem; + margin: 0.08rem; + font-size: 0.24rem; + font-weight: 400; + color: #666666; + opacity: 1; + padding: 0.2rem 0; + line-height: 0; + border-left: none; + border-right: none +} + + +/* tab选项卡 */ + +.log_three_tab { + display: flex; + justify-content: space-around; + align-items: center +} + +.log_three_tab_one { + font-size: 0.28rem; + height: 0.64rem; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; +} + +.log_three_tab_two:after { + content: ""; + display: block; + width: 0.8rem; + height: 0.04rem; + margin: 0.2rem auto 0; + background-color: rgba(255, 119, 0, 1); + border-radius: 0.1rem 0.1rem 0 0; +} + +.word_color { + color: rgba(255, 119, 0, 1); +} + + +/* 下拉框 */ + +.log_three_select { + padding: 0.4rem 0.3rem 0.32rem 0.3rem; + box-sizing: border-box +} + +.log_three_select_one { + position: relative; + display: flex; + justify-content: center; + align-items: center; + width: 6.88rem; + border: 0.1rem solid rgba(255, 255, 255, 1); + background: rgba(247, 247, 247, 1); + border-radius: 0.08rem; + padding: 0.1rem 0.16rem 0.1rem 0; + box-sizing: border-box; + margin-bottom: 0.2rem +} + +.log_three_select_title { + font-size: 0.28rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; +} + +#city_text, +.city_text { + font-size: 0.28rem; + font-weight: 400; + color: #CCCCCC; +} + +.log_three_select_img { + right: 0.16rem; + top: 50%; + padding-top: -0.2rem; + position: absolute; + width: 0.2rem; + height: 0.1rem; +} + +.log_three_select_btn { + display: flex; + justify-content: center; + align-items: center; + font-size: 0.28rem; + font-family: PingFang SC; + font-weight: 600; + color: rgba(255, 255, 255, 1); + opacity: 1; + background: linear-gradient(350deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + opacity: 1; + border-radius: 0.08rem; +} + + +/* 列表内容 */ + +.log_three_list_contant { + display: none; + padding: 0.32rem 0.32rem 0.16rem 0.32rem; + box-sizing: border-box; + overflow: hidden; +} + +.log_three_list { + padding: 0 0.16rem 0.32rem 0.16rem; + margin-bottom: 0.16rem; + box-sizing: border-box; +} + +.log_three_list_top { + padding: 0 0.23rem 0.3rem 0; + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); +} + +.log_three_list_top_lo, +.log_three_list_top_lt img { + width: 0.32rem; + height: 0.32rem +} + +.log_three_list_top_lt { + margin-left: 0.32rem +} + +.log_three_shijian { + margin-left: 0.16rem; + font-size: 0.28rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(102, 102, 102, 1); + opacity: 1; +} + +.log_three_list_top_left, +.log_three_list_top_lt { + display: flex; + justify-content: flex-start; + align-items: center +} + +.log_three_list_top_right { + font-size: 0.26rem; + font-family: PingFang SC; + font-weight: 500; + color: rgba(255, 119, 0, 1); + opacity: 1; +} + +.log_three_list_center { + margin-top: 0.32rem; + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding-bottom: 0.32rem +} + +.log_three_center_one { + font-size: 0.26rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_three_center_two { + font-size: 0.22rem; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; +} + +.log_three_center_three span { + font-size: 0.24rem +} + +.log_three_center_three { + font-size: 0.34rem; + font-weight: 400; + line-height: 25px; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + + +/* 立即发货按钮 */ + +.log_three_bottom_btn { + display: flex; + justify-content: flex-end +} + +.log_three_bottom { + margin-top: 0.3rem; + width: 1.6rem; + height: 0.48rem; + background: linear-gradient(328deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + box-shadow: 0 0.06rem 0.12rem rgba(255, 128, 0, 0.24); + opacity: 1; + border-radius: 0.08rem; + display: flex; + justify-content: center; + align-items: center; + font-size: 0.26rem; + font-weight: 400; + color: rgba(255, 255, 255, 1); +} + +.log_three_list_fixed { + height: 1.12rem; + display: flex; + justify-content: space-between; + align-items: center; + background: #fff +} + +.log_three_fixed_left { + margin-left: 0.32rem; + display: flex; + justify-content: flex-start; + align-items: center +} + +.log_three_fixed_left_one { + width: 0.32rem; + height: 0.32rem +} + +.log_three_fixed_left_two { + margin-left: 0.16rem; + font-size: 0.28rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_three_fixed_right { + width: 2.86rem; + height: 1.12rem; + background: linear-gradient(320deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%, rgba(0, 0, 0, 1) 100%); + opacity: 1; + display: flex; + justify-content: center; + align-items: center; + font-size: 0.34rem; + font-weight: 600; + color: rgba(255, 255, 255, 1); + opacity: 1; +} + + +/* log_four页面 */ + + +/* 配送方式 */ + +.log_four_top { + display: flex; + justify-content: flex-start; + align-items: center; + padding: 0.2rem 0.32rem; + box-sizing: border-box; + margin-top: 0.16rem; +} + +.log_four_top_left { + font-size: 0.3rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_four_top_right { + margin-left: 0.64rem; + display: flex; + justify-content: flex-start; + align-items: center +} + +.log_four_top_right_bg { + background-image: url(../images/71.png); + background-size: 100% 100%; + background-repeat: no-repeat; + color: #F20000 +} + +.log_four_top_right_one { + padding: 0.16rem 0.4rem; + +} + +.log_four_top_right_two { + margin-left: 0.28rem; + padding: 0.16rem 0.2rem; + border: 0.02rem solid rgba(153, 153, 153, 1); + opacity: 1; +} +.log_psong input{ + width: 3rem; + text-align: right; + color:#333333; + font-size: 0.26rem; +} +.log_ks,.log_jsu,.log_xue{ + color: #CCCCCC; + margin-left: auto; + margin-right: 0.26rem; + font-size: 0.28rem; +} +/* 地址信息 */ + +.log_four_input { + padding: 0.28rem 0.32rem; + margin-top: 0.16rem; + box-sizing: border-box; +} + +.log_four_input_title { + font-size: 0.3rem; + color: rgba(51, 51, 51, 1); +} + +.log_four_input_one { + padding: 0.3rem 0 0.24rem 0; + box-sizing: border-box; + display: flex; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1) +} +.log_four_input_one:last-child{ + border: 0; + padding-bottom: 0; +} + +.log_four_input_one_center { + margin-left: auto; +} + +.log_four_input_one_left { + font-size: 0.28rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; + /* text-align: left */ +} + +.log_four_input_one_center input { + outline: none; + text-align: right; + height: 0.4rem; + font-size: 0.28rem; + font-weight: 400; + color: #333; + border: none; + margin: 0; + padding: 0; +} + +.log_four_top, +.log_four_input, +.log_four_order, +.log_four_pash { + background-color: white; +} + +.log_four_input_one_center input::placeholder { + color: #CCCCCC; +} + +.log_four_input_border { + border: none +} + +.log_four_input_phone { + margin-left: -0.25rem; +} + +.log_four_input_one_right { + width: 0.1rem; + height: 0.2rem; + margin-left: 0.18rem; +} + + +/* 选择框 */ + +.log_four_radio { + display: none; +} + +.log_four_contant { + padding: 0.26rem 0 0.18rem 0.5rem; + box-sizing: border-box +} + +.log_four_contant_one { + display: flex; + justify-content: flex-start; + align-items: center; + margin-bottom: 0.32rem +} + +.log_four_contant_left { + width: 0.32rem; + height: 0.32rem +} + +.log_four_contant_right { + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; + margin-left: 0.14rem +} + +.log_four_radios { + display: none +} + +.log_four_contants { + padding: 0.26rem 0 0.18rem 0.5rem; + box-sizing: border-box +} + +.log_four_contants_left { + width: 0.32rem; + height: 0.32rem +} + +.log_four_contants_right { + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; + margin-left: 0.14rem +} + + +/* 显示班级 */ + +.log_botms { + display: flex; + justify-content: flex-start; + align-items: center; + margin-bottom: 0.32rem +} + +.log_four_contants_input_block { + display: none +} + +.log_four_contants_input { + padding-left: 0.32rem; + margin-bottom: 0.22rem +} + +.log_four_contants_input { + display: flex; + justify-content: flex-start; +} + +.log_four_xian_ban, +.log_four_xian_ban2 { + display: flex; + justify-content: flex-start; + background: rgba(247, 247, 247, 1); + opacity: 1; + border-radius: 0.08rem; + padding: 0.12rem 0.24rem 0.12rem 0.16rem; + box-sizing: border-box +} + +.log_four_xian_nei { + font-size: 0.26rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; +} +.log_four_xian_nei input{ + width: 2.08rem; + height: 0.36rem; + font-size: 0.26rem; + color: #333; + margin-bottom: 0!important; +} +.log_four_xian_icon { + margin-top: 0.15rem; + margin-left: 0.28rem; + width: 0.2rem; + height: 0.1rem +} + +.log_four_xian_icon img { + width: 100%; + height: 100% +} + +.log_four_xian_wife { + margin: 0 0.12rem; + color: rgba(245, 245, 245, 1) +} + + +/* 选择班级列表 */ + +.log_four_li, +.log_four_li2 { + display: none; + padding: 0 0 0 0.16rem +} + +.log_four_li li, +.log_four_li2 li { + font-size: 0.26rem; + line-height: 0.52rem; + font-weight: 400; +} + + +/* 订单信息 */ + +.log_four_order { + margin-top: 0.28rem +} + +.log_four_order_details { + padding: 0.28rem 0.36rem; + box-sizing: border-box +} + +.log_four_order_one { + border-top: 0.02rem solid rgba(245, 245, 245, 1); + padding: 0.28rem 0; + display: flex; + justify-content: flex-start; + align-items: center +} + +.log_four_order_left { + width: 1.4rem; + height: 1.4rem +} + +.log_four_order_left img { + width: 100%; + height: 100% +} + +.log_four_order_center { + margin-left: 0.26rem +} + +.log_four_order_center_one { + width: 2.8rem; + font-size: 0.34rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_four_order_center_two { + margin-top: 0.24rem; + font-size: 0.28rem; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; +} + +.log_four_order_right { + margin-left: 1rem; + font-size: 0.4rem; + font-weight: 400; + color: rgba(242, 0, 0, 1); + opacity: 1; +} + +.log_four_order_right span { + font-size: 0.28rem +} + + +/* 支付方式 */ + +.log_four_pash { + margin-top: 0.16rem; + margin-bottom: 0.4rem; + padding: 0.22rem 0.32rem 0.22rem 0.34rem; +} + +.log_four_pash_top { + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding-bottom: 0.28rem +} + +.log_four_pash_top_one { + font-size: 0.3rem; + font-family: PingFang SC; + font-weight: 400; + color: rgba(102, 102, 102, 1); + opacity: 1; +} + +.log_four_pash_top_two { + width: 0.56rem; + height: 0.56rem +} + +.log_four_pash_bottom { + margin-top: 0.3rem; + display: flex; + justify-content: flex-start; +} + +.log_four_pash_bottom_two { + margin-left: 0.26rem +} + +.log_four_pash_bottom_two textarea { + margin-top: 0.03rem; + border: none; + font-size: 0.26rem; + font-weight: 400; + color: #333; + opacity: 1; +} + + +/* 底部按钮 */ + +.log_four_zong_qian { + font-size: 0.28rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_four_zong_shu { + font-size: 0.4rem; + font-weight: 400; + color: rgba(242, 0, 0, 1); + opacity: 1; +} + +.log_four_zong_shu span { + font-size: 0.28rem +} + + +/* log_five页面 */ + + +/* 商品列表 */ + +.log_five_list { + padding: 0.32rem 0.3rem 0.32rem 0.32rem; + display: flex; + justify-content: space-around; +} + +.log_five_list_left { + width: 1.64rem; + height: 1.64rem +} + +.log_five_list_center_one { + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_five_list_center_three { + margin-top: 0.06rem; + font-size: 0.22rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; +} + +.log_five_list_right { + width: 0.48rem; + height: 0.48rem; + margin-top: 1.2rem +} + + +/* 操作 */ +.log_five_handle { + background: rgba(247, 247, 247, 1); + padding: 0.14rem 0 0.08rem 0!important; + display: flex; + justify-content: space-around; + align-items: center +} + +.log_five_handle_one { + display: flex; + flex-direction: column; + align-items: center +} + +.log_five_handle_img { + width: 0.4rem; + height: 0.4rem +} + +.log_five_handle_word { + font-size: 0.2rem; + font-weight: 400; + color: rgba(102, 102, 102, 1); + opacity: 1; +} + + +/* log_six页面 */ + +.log_six_add_photo { + border-top: 0.02rem solid rgba(247, 247, 247, 1); + display: flex; + flex-direction: column; + justify-content: space-around; + align-items: center; + padding: 0.52rem 0 0.44rem 0 +} + +.log_six_add_photos { + padding: 0 +} + +.log_six_add_img { + width: 0.64rem; + height: 0.46rem; +} + +.log_six_add_imgs { + width: 100%; + height: 1.92rem; +} + +.log_six_add_img img { + width: 100%; + height: 100% +} + +.log_six_add_titles { + display: none +} + +.log_six_add_title { + margin-top: 0.2rem; + font-size: 0.26rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; +} + +.log_six_input_one { + margin-top: 0.26rem; + display: flex; + justify-content: flex-start; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); +} + +.log_six_input_contant textarea { + border: none; + margin: 0 0 0.3rem 0.36rem; + padding: 0.1rem 0.3rem; + font-size: 0.32rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; +} + +.log_six_wire { + width: 7.5rem; + height: 0.16rem; + background: rgba(247, 247, 247, 1); + opacity: 1; +} + + +/* 套装 */ + +.log_six_select_contant { + padding: 0 0.3rem 0.26rem 0.32rem; + box-sizing: border-box +} + +.log_six_select_top { + margin-top: 0.26rem; + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding-bottom: 0.24rem +} + +.log_six_select_left { + display: flex; + justify-content: flex-start; + align-items: center +} + +.log_six_select_one { + width: 1.6rem; + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_six_select_two { + margin-left: 0.75rem; + font-size: 0.32rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; +} + +.log_six_select_three { + width: 0.1rem; + height: 0.2rem +} + + +/* 上传图片 */ + +.log_six_file_picture { + margin-top: 0.2rem; + display: flex; + justify-content: flex-start; + align-items: center +} + +.log_six_picture { + position: relative; + margin-right: 0.16rem +} + +.log_six_picture_one { + width: 1.6rem; + height: 1.6rem; + border: 0.02rem dashed rgba(204, 204, 204, 1); + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.log_six_pictyre_img { + width: 0.48rem; + height: 0.48rem +} + +.log_six_pictyre_imgs { + width: 100%; + height: 1.6rem +} + +.log_six_pictyre_img img { + width: 100%; + height: 100% +} + +.log_six_pictyre_title { + font-size: 0.24rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; +} + +.log_six_pictyre_titles { + display: none +} + +.input_files { + position: absolute; + top: 0; + left: 0; + opacity: 0 +} + +.input_files input { + width: 1.6rem; + height: 1.6rem; +} + + +/* log_seven页面 */ + +.log_seven { + padding: 0.32rem 0.3rem 0.16rem 0.4rem +} + +.log_seven_list { + background-size: cover; + background-repeat: no-repeat; + display: flex; + justify-content: space-between; + padding: 0.2rem 0.34rem 0.32rem 0.26rem; + margin-bottom: 0.16rem +} + +.log_seven_list_one { + background-image: url(../img/81.png); +} + +.log_seven_list_two { + background-image: url(../img/80.png); +} + +.log_seven_list_three { + background-image: url(../img/79.png); +} + +.log_seven_list_four { + background-image: url(../img/78.png); +} + +.log_seven_right { + display: flex; + justify-content: flex-start; +} + +.log_seven_left_one { + font-size: 0.32rem; + font-weight: 500; + color: rgba(255, 141, 42, 1); + opacity: 1; +} + +.log_seven_left_two { + margin-top: 0.16rem; + font-size: 0.22rem; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; +} + +.log_secen_left_three { + margin-top: 0.12rem; + font-size: 0.26rem; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; +} + +.log_seven_right_one { + width: 0.32rem; + height: 0.32rem +} + +.log_seven_right_two { + margin-left: 0.14rem +} + + +/* 按钮 */ + +.log_seven_btn { + margin-top: 0.96rem; + display: flex; + justify-content: center; + align-items: center +} + +.log_seven_btn_contant { + width: 6.88rem; + height: 0.96rem; + background: linear-gradient(344deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + box-shadow: 0 0.06rem 0.12rem rgba(255, 87, 0, 0.24); + opacity: 1; + border-radius: 0.08rem; + display: flex; + justify-content: center; + align-items: center; + font-size: 0.34rem; + font-weight: 600; + color: rgba(255, 255, 255, 1); +} + + +/* log_eight页面 */ + + +/* log_nine页面 */ + +.log_nine_top { + width: 100%; + background: linear-gradient(334deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + opacity: 1; +} + +.log_nine_money { + padding: 0.6rem 0 0.74rem 0; + display: flex; + flex-direction: column; + align-items: center +} + +.nine_money_one { + font-size: 0.22rem; + font-weight: 400; + color: rgba(255, 255, 255, 1); + opacity: 0.7; +} + +.nine_money_two { + margin-top: 0.22rem; + font-size: 0.68rem; + font-weight: 400; + color: rgba(255, 255, 255, 1); + opacity: 1; +} + +.nine_money_explain { + display: flex; + justify-content: space-around; + align-items: center; + padding-bottom: 0.26rem +} + +.nine_money_explain_one { + display: flex; + justify-content: flex-start; +} + +.nine_money_explain_one_img { + width: 0.32rem; + height: 0.24rem; + margin-top: 0.06rem; +} + +.nine_money_explain_two_img { + width: 0.32rem; + height: 0.32rem; + margin-top: 0.04rem; +} + +.nine_money_explain_title { + font-size: 0.26rem; + font-weight: 400; + color: rgba(255, 255, 255, 1); + opacity: 0.7; + margin-left: 0.08rem +} + + +/* 其他信息 */ + +.log_nine_center { + background: rgba(247, 247, 247, 1); + padding: 0.16rem 0 0.16rem 0.32rem; + font-size: 0.26rem; + font-weight: 400; + color: rgba(204, 204, 204, 1); + opacity: 1; +} + + +/* 列表 */ + +.log_nine_list_one { + display: flex; + justify-content: space-between; + align-items: center; + padding: 0.24rem 0.3rem 0.22rem 0.32rem; + box-sizing: border-box; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1) +} + +.log_nine_list_one_left { + display: flex; + justify-content: flex-start; + align-items: center +} + +.log_nine_list_one_left_img { + width: 0.32rem; + height: 0.32rem +} + +.log_nine_list_one_left_title { + margin-left: 0.16rem; + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_nine_list_one_left_title_add { + margin-left: 0.32rem; + font-size: 0.28rem; + color: #999999 +} + +.log_nine_list_one_right { + width: 0.1rem; + height: 0.2rem +} + + +/* log_ten页面 */ + +.log_ten_list { + /* margin-top: 0.32rem; */ + padding: 0.32rem; + box-sizing: border-box +} + +.log_ten_list_contant { + padding: 0.48rem 0.18rem; + box-sizing: border-box +} + +.log_ten_list_one { + padding: 0.16rem 0.26rem 0.3rem 0.16rem; + display: flex; + justify-content: flex-start; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + /* background: rgba(245, 245, 245, 1) */ +} + +.log_ten_list_one_left { + width: 1.28rem; + height: 1.28rem +} + +.log_ten_list_one_left img { + width: 100%; + height: 100% +} + +.log_ten_list_one_center { + margin-left: 0.22rem; + margin-top: 0.16rem +} + +.log_ten_list_one_center_top { + width: 3.2rem; + font-size: 0.34rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_ten_list_one_center_bottom { + margin-top: 0.2rem; + display: flex; + justify-content: flex-start; +} + +.log_ten_list_onb_icon { + width: 0.24rem; + height: 0.24rem; + margin-top: 0.05rem +} + +.log_ten_list_onb_title { + margin-left: 0.1rem; + font-size: 0.22rem; + line-height: 18px; + color: rgba(204, 204, 204, 1); + opacity: 1; +} + +.log_ten_list_one_right { + margin-left: 1.2rem; +} + +.log_ten_list_one_right_top { + font-size: 0.34rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_ten_list_one_right_top span { + font-size: 0.24rem +} + +.log_ten_list_one_right_bottom { + margin-top: 0.24rem; + font-size: 0.24rem; + font-weight: 400; + color: rgba(153, 153, 153, 1); + opacity: 1; +} + +.log_ten_money_select_top { + display: flex; + justify-content: center; + align-items: center; + font-size: 0.4rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; + margin-bottom: 0.42rem +} + +.log_ten_money_select_top span { + font-size: 0.22rem; +} + +.log_ten_money_select_title { + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_ten_bottom_btn_left { + width: 4.16rem; + background: #fff; + font-size: 0.34rem; + font-weight: 600; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_ten_bottom_btn_right-right { + width: 3.34rem +} + +.log_eleven_hide { + display: none +} + +.log_ten_block { + display: block!important; +} + + +/* log_eleven页面 */ + +.log_eleven_list { + padding: 0.32rem; + box-sizing: border-box +} + +.log_eleven_list_contant { + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding: 0.34rem 0.4rem 0.4rem 0.32rem; + box-sizing: border-box; + margin-bottom: 0.22rem +} + +.log_eleven_title { + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_eleven_time { + margin-top: 0.2rem; + display: flex; + justify-content: flex-start; + align-items: center +} + +.log_eleven_time_icon { + width: 0.32rem; + height: 0.32rem +} + +.log_eleven_time_num { + margin-left: 0.18rem; + font-size: 0.28rem; + font-weight: 400; + color: rgba(102, 102, 102, 1); + opacity: 1; +} + +.log_eleven_list_contant_right { + font-size: 0.32rem; + font-weight: 400; + color: rgba(242, 0, 0, 1); + opacity: 1; +} + + +/* log_twelve页面 */ + +.log_twelve_list { + margin-top: 0.16rem; + padding: 0.32rem 0.3rem 0.32rem 0.32rem; + box-sizing: border-box +} + +.log_twelve_list_contant_one { + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding-bottom: 0.18rem +} + +.log_twelve_list_left, +.log_twelve_list_right { + display: flex; + justify-content: flex-start; + align-items: center +} + +.log_twelve_list_left_img { + width: 0.8rem; + height: 0.8rem; +} + +.log_twelve_list_left_img img { + width: 100%; + height: 100% +} + +.log_twelve_list_left_title { + margin-left: 0.16rem; + font-size: 0.32rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_twelve_list_right_word { + font-size: 0.26rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_twelve_list_right_word span { + margin-left: 0.04rem +} + +.log_twelve_list_right_icon { + margin-left: 0.3rem; + width: 0.2rem; + height: 0.1rem; +} + +.log_twelve_list_right_icon img { + width: 100%; + height: 100% +} + + +/* 佣金列表 */ + +.log_twelve_money { + padding: 0.28rem 0 0.18rem 0.4rem; + box-sizing: border-box +} + +.log_twelve_money_one { + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0.02rem solid rgba(245, 245, 245, 1); + padding-bottom: 0.18rem +} + +.log_twelver_money_left_top { + display: flex; + justify-content: flex-start; + align-items: center +} + +.log_twe_mon_left_one { + width: 0.48rem; + height: 0.48rem +} + +.log_twe_mon_left_one img { + width: 100%; + height: 100% +} + +.log_twe_mon_left_two { + margin-left: 0.24rem; + font-size: 0.28rem; + font-weight: 400; + color: rgba(51, 51, 51, 1); + opacity: 1; +} + +.log_twe_mon_left_three { + margin-left: 0.12rem; + display: flex; + justify-content: center; + align-items: center; + width: 1.16rem; + height: 0.34rem; + background: linear-gradient(350deg, rgba(255, 78, 0, 1) 0%, rgba(255, 157, 45, 1) 100%); + opacity: 1; + border-radius: 0.22rem; + font-size: 0.22rem; + color: rgba(255, 255, 255, 1); +} + +.log_twelver_money_left_bottom { + font-size: 0.26rem; + font-weight: 400; + color: rgba(102, 102, 102, 1); + opacity: 1; +} + + +/* 修改 */ + +.there_unActive { + color: #FF7700 !important; + border-top: 1px solid #F5F5F5; + border-bottom: 1px solid #F5F5F5; + padding: 0.34rem 0; + box-sizing: border-box; +} \ No newline at end of file