diff --git a/Application/Admin/Controller/ExportController.class.php b/Application/Admin/Controller/ExportController.class.php index 392ec9170..9f7268b38 100644 --- a/Application/Admin/Controller/ExportController.class.php +++ b/Application/Admin/Controller/ExportController.class.php @@ -5303,8 +5303,10 @@ if ($key == 'model'){ $xlsCell = array( array('count_date','月份'), array('cash_count','游戏现金流水'), - array('balance_coin_count','平台币流水'), + array('balance_coin_deposit','平台币收入'), array('inside_cash_count','内冲流水'), + array('bind_coin_count','内充支出'), + array('balance_coin_count','平台币支出'), array('all_count','总流水'), ); @@ -5341,21 +5343,23 @@ if ($key == 'model'){ // $sumAll = D("spend_count")->sumSpendCountField($map,$allField); $order = "id DESC"; $xlsData = M('spend_month_count','tab_') - ->field("cash_count,balance_coin_count,inside_cash_count,all_count,count_date") + ->field("cash_count,balance_coin_count,inside_cash_count,all_count,count_date,balance_coin_deposit,bind_coin_count") ->where($map) ->order($order) ->select(); $sumData = M('spend_month_count','tab_') - ->field("sum(cash_count) as cash_count,sum(balance_coin_count) as balance_coin_count,sum(inside_cash_count) as inside_cash_count,sum(all_count) as all_count,count_date") + ->field("sum(cash_count) as cash_count,sum(balance_coin_count) as balance_coin_count,sum(inside_cash_count) as inside_cash_count,sum(all_count) as all_count,count_date,sum(balance_coin_deposit) as balance_coin_deposit,sum(bind_coin_count) as bind_coin_count") ->where($map) ->order($order) ->find(); $sumData = [['count_date'=>'总计', 'cash_count'=>$sumData['cash_count'], - 'balance_coin_count'=>$sumData['balance_coin_count'], + 'balance_coin_deposit'=>$sumData['balance_coin_deposit'], 'inside_cash_count'=>$sumData['inside_cash_count'], + 'bind_coin_count'=>$sumData['bind_coin_count'], + 'balance_coin_count'=>$sumData['balance_coin_count'], 'all_count'=>$sumData['all_count']]]; $xlsData = array_merge($xlsData,$sumData); @@ -5373,8 +5377,8 @@ if ($key == 'model'){ array('game_name','游戏'), array('partner_name','合作方'), array('cash_count','游戏现金流水'), - array('balance_coin_count','平台币流水'), - array('inside_cash_count','内冲流水'), + array('balance_coin_count','平台币支出'), + array('inside_cash_count','公会内充支出'), array('all_cash_count','总流水'), ); @@ -5397,7 +5401,7 @@ if ($key == 'model'){ } if (!empty(I('partner_id'))) { - $map['partner_id']=I('collaborate_id'); + $map['partner_id']=I('partner_id'); } if (I('sign') == 2&&empty(I('root_id'))) { @@ -5509,6 +5513,13 @@ if ($key == 'model'){ $map['promote_id'] = ['in',$promote_id]; } + if (!empty(I('partner_id'))&&empty(I("game_id"))) { + $wherePartner = I('partner_id'); + $gameId = M("game","tab_")->field("id")->where("partner_id={$wherePartner}")->select(); + $gameId = implode(',',array_column($gameId,'id')); + $map['game_id'] = ['in',$gameId]; + } + if (!empty(I("count_date"))) { $month = I("count_date"); $tarry = explode('-',$month); @@ -5530,19 +5541,97 @@ if ($key == 'model'){ $field = "pay_order_number,FROM_UNIXTIME(pay_time) as pay_time,user_account,game_name,promote_account,spend_ip,server_name,game_player_name,pay_amount,cost,pay_way"; $group = ""; $order = "pay_time DESC"; - $xlsData = D('spend')->getSpendData($map,$field,$group,$order); + for($start = $startTime;$start<$endTime;$start=$start+86400) { + + $map['pay_time'] = array('between',array($start,$start+86400)); + + $xlsData1 = D('spend')->getSpendData($map,$field,$group,$order); + + if ($xlsData1) { + $xlsData[date('m-d',$start)] = $xlsData1; + } + } foreach($xlsData as $key => $value) { - $xlsData[$key]['pay_way'] = getPayType($value['pay_way']); + foreach ($value as $k => $v) { + $xlsData[$key][$k]['pay_way'] = getPayType($value['pay_way']); + } } + + $map['pay_time'] = array('between',array($startTime,$endTime)); + $sum = D('spend')->sumSpend($map,'pay_amount'); - $sumData = [['pay_order_number'=>'总计', + $xlsData['10-'] = [['pay_order_number'=>'总计', 'pay_way'=>$sum]]; - $xlsData = array_merge($xlsData,$sumData); +// $xlsData = array_merge($xlsData,$sumData); +// dump($xlsData);die(); - $this->exportExcel($xlsName, $xlsCell, $xlsData); + $this->exportNewExcel($xlsName, $xlsCell, $xlsData); + } + + public function exportNewExcel($expTitle, $expCellName, $expTableData) + { + $xlsTitle = iconv('utf-8', 'gb2312', $expTitle);//文件名称 +// $fileName = session('user_auth.username').date('_YmdHis');//or $xlsTitle 文件名称可根据自己情况设定 + $fileName = $expTitle; + $cellNum = count($expCellName); + $dataNum = count(current($expTableData)); + Vendor("PHPExcel.PHPExcel"); + $objPHPExcel = new \PHPExcel(); + $cellName = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'AA', 'AB', 'AC', 'AD', 'AE', 'AF', 'AG', 'AH', 'AI', 'AJ', 'AK', 'AL', 'AM', 'AN', 'AO', 'AP', 'AQ', 'AR', 'AS', 'AT', 'AU', 'AV', 'AW', 'AX', 'AY', 'AZ'); + $objPHPExcel->getActiveSheet(0)->mergeCells('A1:' . $cellName[$cellNum - 1] . '1');//合并单元格 + $objPHPExcel->setActiveSheetIndex(0)->setCellValue('A1', $expTitle); + $objPHPExcel->setActiveSheetIndex(0)->getStyle('A1')->getAlignment()->setHorizontal(\PHPExcel_Style_Alignment::HORIZONTAL_CENTER); + + $objPHPExcel->setActiveSheetIndex(0)->setTitle(key($expTableData)); + for ($i = 0; $i < $cellNum; $i++) { + $objPHPExcel->setActiveSheetIndex(0)->setCellValue($cellName[$i] . '2', $expCellName[$i][1]); + } + for ($i = 0; $i < $dataNum; $i++) { + for ($j = 0; $j < $cellNum; $j++) { + $objPHPExcel->getActiveSheet(0)->setCellValue($cellName[$j] . ($i + 3), current($expTableData)[$i][$expCellName[$j][0]]); + } + } +// var_dump($expTableData);die(); + unset($expTableData[key($expTableData)]); + + $sheetNum = 1; + foreach($expTableData as $key => $value) { + $dataNum = count($value); + $objPHPExcel->createSheet(); + + if ($key==0) { + break; + } + if ($key == '10-') { + $objPHPExcel->setActiveSheetIndex($sheetNum)->setTitle('总计'); + } else { + $objPHPExcel->setActiveSheetIndex($sheetNum)->setTitle($key); + } + + $objPHPExcel->getActiveSheet($sheetNum)->mergeCells('A1:' . $cellName[$cellNum - 1] . '1');//合并单元格 + $objPHPExcel->setActiveSheetIndex($sheetNum)->setCellValue('A1', $expTitle); + $objPHPExcel->setActiveSheetIndex($sheetNum)->getStyle('A1')->getAlignment()->setHorizontal(\PHPExcel_Style_Alignment::HORIZONTAL_CENTER); + for ($i = 0; $i < $cellNum; $i++) { + $objPHPExcel->setActiveSheetIndex($sheetNum)->setCellValue($cellName[$i] . '2', $expCellName[$i][1]); + } + for ($i = 0; $i < $dataNum; $i++) { + for ($j = 0; $j < $cellNum; $j++) { + $objPHPExcel->getActiveSheet($sheetNum)->setCellValue($cellName[$j] . ($i + 3), $value[$i][$expCellName[$j][0]]); + } + } + $sheetNum++; + } +//die(); + ob_end_clean();//清除缓冲区,避免乱码 + header('pragma:public'); + header('Content-type:application/vnd.ms-excel;charset=utf-8;name="' . $xlsTitle . '.xls"'); + header("Content-Disposition:attachment;filename=$fileName.xls");//attachment新窗口打印inline本窗口打印 + $objWriter = \PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5'); + $objWriter->save('php://output'); + exit; } function getPromoteList($root_id = 0) { @@ -5574,8 +5663,9 @@ if ($key == 'model'){ $xlsCell = array( array('promote_account','会长渠道'), array('cash_count','游戏现金流水'), - array('balance_coin_count','平台币流水'), - array('inside_cash_count','内充流水'), + array('balance_coin_count','平台币支出'), + array('inside_cash_count','公会内充发放'), + array('bind_coin_count','公会内充支出'), array('all_count','总流水'), ); @@ -5586,13 +5676,13 @@ if ($key == 'model'){ $map['parent_id'] = 0; $map['root_id'] = 0; $xlsData = M('spend_user_count','tab_') - ->field('promote_id,promote_account,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count, sum(all_count) as all_count') + ->field('promote_id,promote_account,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count, sum(all_count) as all_count, sum(bind_coin_count) as bind_coin_count') ->where($map) ->group('promote_id') ->select(); $sumData = M('spend_user_count','tab_') - ->field('sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count, sum(all_count) as all_count') + ->field('sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count, sum(all_count) as all_count, sum(bind_coin_count) as bind_coin_count') ->where($map) ->find(); @@ -5601,6 +5691,7 @@ if ($key == 'model'){ 'cash_count'=>$sumData['cash_count'], 'balance_coin_count'=>$sumData['balance_coin_count'], 'inside_cash_count'=>$sumData['inside_cash_count'], + 'bind_coin_count'=>$sumData['bind_coin_count'], 'all_count'=>$sumData['all_count'], ]]; $xlsData = array_merge($xlsData,$sumData); @@ -5644,10 +5735,11 @@ if ($key == 'model'){ $xlsName = '组长月结统计'; $xlsCell = array( - array('promote_account','组长渠道'), + array('promote_account','会长渠道'), array('cash_count','游戏现金流水'), - array('balance_coin_count','平台币流水'), - array('inside_cash_count','内充流水'), + array('balance_coin_count','平台币支出'), + array('inside_cash_count','公会内充发放'), + array('bind_coin_count','公会内充支出'), array('all_count','总流水'), ); @@ -5655,7 +5747,7 @@ if ($key == 'model'){ // $map['parent_id'] =$root_id; $xlsData = M('spend_user_count','tab_') - ->field('promote_id,promote_account,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count, sum(all_count) as all_count') + ->field('promote_id,promote_account,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count, sum(all_count) as all_count, sum(bind_coin_count) as bind_coin_count') ->where($map) ->group('promote_id') ->select(); @@ -5664,7 +5756,7 @@ if ($key == 'model'){ } $sumData = M('spend_user_count','tab_') - ->field('promote_id,promote_account,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count, sum(all_count) as all_count') + ->field('promote_id,promote_account,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count, sum(all_count) as all_count, sum(bind_coin_count) as bind_coin_count') ->where($map) ->find(); if (empty(I("root_name"))) { @@ -5672,12 +5764,14 @@ if ($key == 'model'){ $sumData['balance_coin_count'] = number_format($sumData['balance_coin_count'] + $parentData[0]['balance_coin_count'], 2, '.', ''); $sumData['inside_cash_count'] = number_format($sumData['inside_cash_count'] + $parentData[0]['inside_cash_count'], 2, '.', ''); $sumData['all_count'] = number_format($sumData['all_count'] + $parentData[0]['all_count'], 2, '.', ''); + $sumData['bind_coin_count'] = number_format($sumData['bind_coin_count'] + $parentData[0]['bind_coin_count'], 2, '.', ''); } $sumData = [['promote_account'=>'总计', 'cash_count'=>$sumData['cash_count'], 'balance_coin_count'=>$sumData['balance_coin_count'], 'inside_cash_count'=>$sumData['inside_cash_count'], + 'bind_coin_count'=>$sumData['bind_coin_count'], 'all_count'=>$sumData['all_count'], ]]; $xlsData = array_merge($xlsData,$sumData); @@ -5715,16 +5809,17 @@ if ($key == 'model'){ $xlsName = '推广员月结统计'; $xlsCell = array( - array('promote_account','推广员渠道'), + array('promote_account','会长渠道'), array('cash_count','游戏现金流水'), - array('balance_coin_count','平台币流水'), - array('inside_cash_count','内充流水'), + array('balance_coin_count','平台币支出'), + array('inside_cash_count','公会内充发放'), + array('bind_coin_count','公会内充支出'), array('all_count','总流水'), ); //获取数据 $xlsData = M('spend_user_count','tab_') - ->field('promote_id,promote_account,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count, sum(all_count) as all_count') + ->field('promote_id,promote_account,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count, sum(all_count) as all_count, sum(bind_coin_count) as bind_coin_count') ->where($map) ->group('promote_id') ->select(); @@ -5732,18 +5827,20 @@ if ($key == 'model'){ $xlsData = array_merge($parentData,$xlsData); $sumData = M('spend_user_count','tab_') - ->field('promote_id,promote_account,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count, sum(all_count) as all_count') + ->field('promote_id,promote_account,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count, sum(all_count) as all_count, sum(bind_coin_count) as bind_coin_count') ->where($map) ->find(); $sumData['cash_count'] = number_format($sumData['cash_count']+$parentData[0]['cash_count'],2,'.',''); $sumData['balance_coin_count'] = number_format($sumData['balance_coin_count']+$parentData[0]['balance_coin_count'],2,'.',''); $sumData['inside_cash_count'] = number_format($sumData['inside_cash_count']+$parentData[0]['inside_cash_count'],2,'.',''); $sumData['all_count'] = number_format($sumData['all_count']+$parentData[0]['all_count'],2,'.',''); + $sumData['bind_coin_count'] = number_format($sumData['bind_coin_count']+$parentData[0]['bind_coin_count'],2,'.',''); $sumData = [['promote_account'=>'总计', 'cash_count'=>$sumData['cash_count'], 'balance_coin_count'=>$sumData['balance_coin_count'], 'inside_cash_count'=>$sumData['inside_cash_count'], + 'bind_coin_count'=>$sumData['bind_coin_count'], 'all_count'=>$sumData['all_count'], ]]; $xlsData = array_merge($xlsData,$sumData); @@ -5767,19 +5864,20 @@ if ($key == 'model'){ } $data = M('spend_user_count','tab_') - ->field('promote_id,promote_account, sum(cash_count) as cash_count,sum(balance_coin_count) as balance_coin_count,sum(inside_cash_count) as inside_cash_count, sum(cash_count+balance_coin_count+inside_cash_count) as all_count') + ->field('promote_id,promote_account, sum(cash_count) as cash_count,sum(balance_coin_count) as balance_coin_count,sum(inside_cash_count) as inside_cash_count, sum(all_count) as all_count, sum(bind_coin_count) as bind_coin_count') ->where($map)->select(); $map1['parent_id'] = $data[0]['promote_id']; $map1['count_date'] = $date; $sunData = M('spend_user_count','tab_') - ->field('promote_id,promote_account, sum(cash_count) as cash_count,sum(balance_coin_count) as balance_coin_count,sum(inside_cash_count) as inside_cash_count, sum(cash_count+balance_coin_count+inside_cash_count) as all_count') + ->field('promote_id,promote_account, sum(cash_count) as cash_count,sum(balance_coin_count) as balance_coin_count,sum(inside_cash_count) as inside_cash_count, sum(all_count) as all_count, sum(bind_coin_count) as bind_coin_count') ->where($map1)->find(); $data[0]['cash_count'] = number_format($data[0]['cash_count']-$sunData['cash_count'],2,'.',''); $data[0]['balance_coin_count'] = number_format($data[0]['balance_coin_count']-$sunData['balance_coin_count'],2,'.',''); $data[0]['inside_cash_count'] = number_format($data[0]['inside_cash_count']-$sunData['inside_cash_count'],2,'.',''); $data[0]['all_count'] = number_format($data[0]['all_count']-$sunData['all_count'],2,'.',''); + $data[0]['bind_coin_count'] = number_format($data[0]['bind_coin_count']-$sunData['bind_coin_count'],2,'.',''); // $map['inside_cash_count'] = ['neq',0]; // $insideData = D("spend_count")->getSpendCountData($map,"promote_id,inside_cash_count as count","promote_id,count_date"); diff --git a/Application/Admin/Controller/FinanceController.class.php b/Application/Admin/Controller/FinanceController.class.php index 9f94d658c..82e92ea12 100644 --- a/Application/Admin/Controller/FinanceController.class.php +++ b/Application/Admin/Controller/FinanceController.class.php @@ -153,9 +153,9 @@ class FinanceController extends ThinkController } } -// if (!empty(I('partner_id'))) { -// $map['partner_id']=I('collaborate_id'); -// } + if (!empty(I('partner_id'))) { + $map['partner_id']=I('partner_id'); + } @@ -232,6 +232,7 @@ class FinanceController extends ThinkController function gameFinanceDetail($p = 1) { + set_time_limit(0); if (!empty(I("promote_id"))) { $promote_id[] = I("promote_id"); } @@ -257,7 +258,13 @@ class FinanceController extends ThinkController $map['promote_id'] = ['in',$promote_id]; } - + if (!empty(I('partner_id'))&&empty(I("game_id"))) { + $wherePartner = I('partner_id'); + $gameId = M("game","tab_")->field("id")->where("partner_id={$wherePartner}")->select(); + $gameId = implode(',',array_column($gameId,'id')); + $map['game_id'] = ['in',$gameId]; + } +// var_dump($map);die(); $page = intval($p); $page = $page ? $page : 1; //默认显示第一页数据 $row=10; diff --git a/Application/Admin/Controller/SdkMenuController.class.php b/Application/Admin/Controller/SdkMenuController.class.php index 309f4d59a..a2cf93f67 100644 --- a/Application/Admin/Controller/SdkMenuController.class.php +++ b/Application/Admin/Controller/SdkMenuController.class.php @@ -10,6 +10,12 @@ class SdkMenuController extends ThinkController{ '2' => '外部链接', ]; + public $menu_version = [ + '0' => '双平台', + '1' => '安卓', + '2' => 'ios', + ]; + public function lists() { $menu_name = I('get.menu_name','sdk_menu'); @@ -21,6 +27,7 @@ class SdkMenuController extends ThinkController{ { $config[$k]['icon'] = is_https()?'https://':'http://' . $_SERVER['HTTP_HOST'] . $v['icon']; $config[$k]['type'] = $this->but_type[$v['type']]; + $config[$k]['menu_version'] = $this->menu_version[$v['menu_version']]; } } $this->assign('list',$config); @@ -70,6 +77,7 @@ class SdkMenuController extends ThinkController{ $this->assign('data',$data); $this->assign('menu_name',$menu_name); $this->assign('but_type',$this->but_type); + $this->assign('menu_version',$this->menu_version); $this->display('add'); } @@ -121,6 +129,7 @@ class SdkMenuController extends ThinkController{ $this->assign('data',$data); $this->assign('menu_name',$menu_name); $this->assign('but_type',$this->but_type); + $this->assign('menu_version',$this->menu_version); $this->display('add'); } diff --git a/Application/Admin/View/Finance/gameFinance.html b/Application/Admin/View/Finance/gameFinance.html index cc67e94bc..9d1d4f65c 100644 --- a/Application/Admin/View/Finance/gameFinance.html +++ b/Application/Admin/View/Finance/gameFinance.html @@ -177,7 +177,7 @@ <a href="{:U('Finance/gameFinanceDetail', array('count_date'=>$_REQUEST['count_date'],'root_id'=>$_GET['root_id'],'partner_id'=>$_REQUEST['partner_id'], 'parent_id'=>$_REQUEST['parent_id'],'promote_id'=>$_REQUEST['promote_id'],'game_id'=>$_REQUEST['game_id'],'game_name'=>'全部游戏', - 'sign'=>$_REQUEST['sign'],'from'=>$_REQUEST['from']))}" >查看</a> + 'sign'=>$_REQUEST['sign'],'from'=>$_REQUEST['from'],'all'=>1))}" >查看</a> </td> </tr> </notemtpy> diff --git a/Application/Admin/View/Finance/gameFinanceDetail.html b/Application/Admin/View/Finance/gameFinanceDetail.html index 95339bf98..72c538978 100644 --- a/Application/Admin/View/Finance/gameFinanceDetail.html +++ b/Application/Admin/View/Finance/gameFinanceDetail.html @@ -42,8 +42,10 @@ <div class="input-list"> <a class="sch-btn" href="javascript:history.go(-1)" style="background:#fff;color: #000;border: #000 solid 1px;width: 100px">返回</a> - <a class="sch-btn" href="{:U('Export/gameFinanceDetail', - array('count_date'=>$_GET['count_date'],'game_id'=>$_GET['game_id'],'game_name'=>$_GET['game_name'],'user_account'=>$_GET['user_account'],'user_nickname'=>$_GET['user_nickname'],'parent_id'=>$_GET['parent_id'],'root_id'=>$_GET['root_id'],false))}" style="width: 100px;border: #3C95C8 solid 1px;">导出</a> + <if condition="$_GET['all'] neq 1"> + <a class="sch-btn" href="{:U('Export/gameFinanceDetail', + array('count_date'=>$_GET['count_date'],'game_id'=>$_GET['game_id'],'game_name'=>$_GET['game_name'],'user_account'=>$_GET['user_account'],'user_nickname'=>$_GET['user_nickname'],'parent_id'=>$_GET['parent_id'],'root_id'=>$_GET['root_id'],false))}" style="width: 100px;border: #3C95C8 solid 1px;">导出</a> + </if> </div> <input type="hidden" name="count_date" value="{$_GET['count_date']}"/> <input type="hidden" name="game_id" value="{$_GET['game_id']}"/> diff --git a/Application/Admin/View/SdkMenu/add.html b/Application/Admin/View/SdkMenu/add.html index b0dde8bd1..6e1f166ee 100644 --- a/Application/Admin/View/SdkMenu/add.html +++ b/Application/Admin/View/SdkMenu/add.html @@ -31,6 +31,23 @@ <input type="text" class="" name="title" value="{$data.title|default=''}" > </td> </tr> + <tr> + <td class="l noticeinfo">平台</td> + <td class="r table_radio"> + <span class="form_select"> + <select name="menu_version"> + <foreach name="menu_version" item="vo" key="k"> + <if condition="$data['menu_version'] == $k"> + <option value="{$k}" selected="selected">{$vo}</option> + <else /> + <option value="{$k}">{$vo}</option> + </if> + </foreach> + + </select> + </span> + </td> + </tr> <tr> <td class="l noticeinfo">菜单链接</td> <td class="r table_radio"> diff --git a/Application/Admin/View/SdkMenu/lists.html b/Application/Admin/View/SdkMenu/lists.html index 7857daaa5..cc7003278 100644 --- a/Application/Admin/View/SdkMenu/lists.html +++ b/Application/Admin/View/SdkMenu/lists.html @@ -35,6 +35,7 @@ <th style="text-align:center">ID</th> <th style="text-align:center">菜单名称</th> <th style="text-align:center">菜单标题</th> + <th style="text-align:center">平台</th> <th style="text-align:center">菜单图标</th> <th style="text-align:center">菜单链接</th> <th style="text-align:center">url类型</th> @@ -52,6 +53,7 @@ <td>{$channel.id}</td> <td>{$channel.name}</td> <td>{$channel.title}</td> + <td>{$channel.menu_version}</td> <td><img src="{$channel.icon}"></td> <td>{$channel.url}</td> <td>{$channel.type}</td> diff --git a/Application/Common/Common/function.php b/Application/Common/Common/function.php index a2c806fe8..d3a793b4e 100644 --- a/Application/Common/Common/function.php +++ b/Application/Common/Common/function.php @@ -1389,3 +1389,26 @@ function curl_post($url = '', $post_data = array()) { return $data; } +if(!function_exists('dd')){ + function dd($var){ + if (func_num_args() > 1) { + $var = func_get_args(); + } + $debug = debug_backtrace(); + echo '<pre class="yun-debug" style="background:#EAEAEA;padding:10px;">'; + echo '<div class="file" style="color:#f00;">',$debug[0]['file'],' ',$debug[0]['line'],PHP_EOL,'</div>'; + if (is_object($var) || is_array($var)) { + $mode = 0; + } else { + $mode = 1; + } + switch($mode){ + case 0: print_r($var); break; + case 1: var_dump($var); break; + default: print_r($var); + } + echo '</pre>'; + exit; + } +} + diff --git a/Application/Media/View/default/Index/business.html b/Application/Media/View/default/Index/business.html index a44e741d2..992db787f 100644 --- a/Application/Media/View/default/Index/business.html +++ b/Application/Media/View/default/Index/business.html @@ -1,64 +1,75 @@ <extend name="Public/base" /> <block name="body" > - <div class="part-box"> - <div class="part part-1" style="height: 440px"> - <div class="m1200"> - <!--推荐游戏--> - <div class="hot-game-box-index"> - <div class="hd-title">推荐游戏</div> <!--20190829--> - <div class="hot-game-list" style="float: left"> - <volist name="recommend" id="rec" offset="0" length="1"> - <div class="hot-game-info hot-game-1"> - <div class="top-info" style="width: 400px"> - <div class="pic"> - <img src="{:get_cover($rec['cover'],'path')}" onerror="this.src='__IMG__/empty.jpg';this.onerror=null"/> - </div> - <div class="down-code" style="width: 400px;"> - <div class="code"> - <img src="{:U('Game/dow_url_generate',array('game_id'=>$rec['relation_game_id'],'type'=>1))}" width="100" height="100" onerror="this.src='__IMG__/empty.jpg';this.onerror=null" /> - </div> - <div class="text"> - <p class="type">游戏类型:{:msubstr2($rec['game_type_name'],0,10)}</p> - <p class="score">玩家评分:<span class="stars"><em style="width:{:$rec['game_score']*10}%;"></em></span></p> - <a href="{:U('Game/game_detail',array('id'=>$rec['relation_game_id']))}">下载游戏</a> - <!--<a href="{:U('Game/game_detail',array('id'=>$rec['relation_game_id']))}">查看游戏</a>--> - </div> - </div> - </div> - <div class="bottom-info" style="width: 360px;margin: 0"> - <h3 class="name">{:msubstr2($rec['relation_game_name'],0,10)}</h3> - <p><notempty name="rec.features">{$rec.features}<else /> </notempty></p> - <a href="{:U('Game/game_detail',array('id'=>$rec['relation_game_id']))}">进入官网</a> - </div> - </div> - </volist> - </div> - <div style="float: left;margin:20px 0 0 360px "> - <div style="float: left"> - <img style="width: 120px;height: 120px" src="__IMG__/chongzhi.png" alt=""> - </div> - <div style="float: left;margin-left: 20px"> - <h3 style="color: #0C0C0C">平台币充值</h3> - <p style="font-size: 14px;color: #666;margin-bottom: 30px;width: 300px;">平台币是可以在游戏内直接消费使用的,1平台币=1人民币,在游戏内您可直接用平台币选择购买相应的道具(钻石、宝石、金币等)。</p> - <style> - .btn{ - background-color: #03B4F5; - color: #0C0C0C; - border-color: #03B4F5; - height: 40px; - line-height: 34px; - padding: 10px 20px; - font-size: 14px; - font-weight: bold; + <script src="__JS__/jquery.min.js"></script> + <script src="__JS__/rem.js"></script> + <link rel="stylesheet" type="text/css" href="__CSS__/reset.css" /> + <link rel="stylesheet" type="text/css" href="__CSS__/heard.css" /> + <link rel="stylesheet" type="text/css" href="__CSS__/foot.css" /> + <link rel="stylesheet" type="text/css" href="__CSS__/index.css" /> + <link rel="stylesheet" type="text/css" href="__CSS__/product.css" /> - } - </style> - <a class="btn" href="{:U('Recharge/pay')}">立即充值</a> + <div class="product_swiper"> + <img src="__IMG__/inner_banner1.png" alt=""> + </div> + <div class="product_home"> + <div class="product_left"> + <img src="__IMG__/img_left.png" alt=""> + <div class="recharge"> + <div class="recharge_box"> + <div class="title">平台币充值</div> + <div class="del">平台币是可以在游戏内直接消费使用的,1平台币=1人民币,在游戏内您可直接用平台币选择购买相应的道具(钻石、宝石、金币等)。</div> + <div class="voucher" onclick="window.location.href='{:U(\'Recharge/pay\')}'">立即充值</div> + </div> + </div> + </div> + <div class="product_right"> + <div class="title">热门游戏</div> + <!-- 无产品时展示 --> + <div class="not_product" style="display: none;"> + <img src="__IMG__/not_data.png" alt=""> + <div>暂无游戏内容</div> + </div> + <div class="have_product"> + <ul > + <volist name="recommend" id="rec" offset="0" length="1"> + <li> + <img src="__IMG__/play.png" alt=""> + <div class="have_product_box"> + <div class="name">《{:msubstr2($rec['relation_game_name'],0,10)}》</div> + <div class="del">{$rec.features}</div> + <div class="enter" onclick="location.href='{:U(\'Game/game_detail\',array(\'id\'=>$rec[\'relation_game_id\']))}'">进入官网</div> </div> + </li> + </volist> + </ul> + </div> + </div> + </div> + <!-- foot --> + <div class="foot"> + <div class="foot_box"> + <div class="foot_top"> + <img src="__IMG__/foot_logo.png" alt=""> + <div class="foot_top_ri"> + <div class="foot_link"> + <a>家长监护</a> + <a>客服帮助</a> + </div> + <div class="foot_serial"> + <span>备案号:琼ICP备19000556号-1</span> + <span>网络文化经营许可证编号:琼网文(2019)2354-200号</span> </div> + <div class="foot_code">copyright2019</div> + <div class="foot_approve"> <img src="__IMG__/foot_slide.png" alt=""></div> </div> </div> + <div class="foot_bom">抵制不良网页游戏,拒绝盗版游戏。注意自我保护,谨防受骗上当。适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。适龄提示:适合12周岁以上使用。</div> </div> + </div> + <!-- 侧导航 --> + <div class="side_tabbar"> + <img src="__IMG__/index_about/qrcode.png" alt=""> + </div> </block> \ No newline at end of file diff --git a/Application/Media/View/default/Index/hezuo.html b/Application/Media/View/default/Index/hezuo.html index 88aa26251..3f224c185 100644 --- a/Application/Media/View/default/Index/hezuo.html +++ b/Application/Media/View/default/Index/hezuo.html @@ -1,69 +1,65 @@ <extend name="Public/base" /> <block name="body" > - <style>.head .logo img { margin-top: 22px; }</style> - <div class="part-box"> - <link rel="stylesheet" href="__CSS__/business.css"> - <div class="ln_map"> - <div style="width:1200px;height:406px;border:#ccc solid 1px;" id="dituContent"></div> - <div class="ln_map_a"> - <div>公司地址:福建省福州市鼓楼区福大怡山文化创意园11号楼103号 <span>联系人: 雷女士</span> <span> 联系电话: 13067391751</span> </div> - <div>邮政编码:350004</div> - </div> - </div> - <script type="text/javascript" src="https://api.map.baidu.com/api?key=&v=1.1&services=true"></script> - <script type="text/javascript"> - //创建和初始化地图函数: - function initMap(){ - createMap();//创建地图 - setMapEvent();//设置地图事件 - addMapControl();//向地图添加控件 - addRemark();//向地图中添加文字标注 - } - //创建地图函数: - function createMap(){ - var map = new BMap.Map("dituContent");//在百度地图容器中创建一个地图 - var point = new BMap.Point(119.277211920,26.079526844);//定义一个中心点坐标 - map.centerAndZoom(point,18);//设定地图的中心点和坐标并将地图显示在地图容器中 - window.map = map;//将map变量存储在全局 - } + <script src="__JS__/jquery.min.js"></script> + <script src="__JS__/rem.js"></script> + <link rel="stylesheet" type="text/css" href="__CSS__/reset.css" /> + <link rel="stylesheet" type="text/css" href="__CSS__/heard.css" /> + <link rel="stylesheet" type="text/css" href="__CSS__/foot.css" /> + <link rel="stylesheet" type="text/css" href="__CSS__/collaborate.css" /> - //地图事件设置函数: - function setMapEvent(){ - map.enableDragging();//启用地图拖拽事件,默认启用(可不写) - map.enableScrollWheelZoom();//启用地图滚轮放大缩小 - map.enableDoubleClickZoom();//启用鼠标双击放大,默认启用(可不写) - map.enableKeyboard();//启用键盘上下左右键移动地图 - } + <div class="collaborate_swiper"> + <img src="__IMG__/lunbo2.png" alt=""> + </div> + <div class="collaborate_introduce"> + <div class="collaborate_info"> + <div class="title">市场合作</div> + <div class="del">万盟天下一直坚持开放诚信高效的业务合作,欢迎各位业界同仁前来联系,互利共赢。</div> + </div> + <div class="collaborate_info"> + <div class="title">媒体合作</div> + <div class="del">万盟天下一直希望通过广泛的市场及品牌合作,为用户提供更全面的产品与服务。</div> + </div> + <div class="collaborate_info"> + <div class="title">联系方式</div> + <p >公司地址:福建省福州市鼓楼区福大怡山文化创意园11号楼103号</p> + <p>联系人: 雷女士</p> + <p>联系电话: 13067391751</p> + <p>邮政编码:350004</p> + </div> + <!-- 地图展示 --> + <div class="map-box" > + <div id="container"></div> + </div> + </div> + <!-- foot --> + <div class="foot"> + <div class="foot_box"> + <div class="foot_top"> + <img src="__IMG__/foot_logo.png" alt=""> + <div class="foot_top_ri"> + <div class="foot_link"> + <a>家长监护</a> + <a>客服帮助</a> + </div> + <div class="foot_serial"> + <span>备案号:琼ICP备19000556号-1</span> + <span>网络文化经营许可证编号:琼网文(2019)2354-200号</span> + </div> + <div class="foot_code">copyright2019</div> + <div class="foot_approve"> <img src="__IMG__/foot_slide.png" alt=""></div> + </div> + </div> + <div class="foot_bom">抵制不良网页游戏,拒绝盗版游戏。注意自我保护,谨防受骗上当。适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。适龄提示:适合12周岁以上使用。</div> + </div> + </div> - //地图控件添加函数: - function addMapControl(){ - //向地图中添加缩放控件 - var ctrl_nav = new BMap.NavigationControl({anchor:BMAP_ANCHOR_TOP_LEFT,type:BMAP_NAVIGATION_CONTROL_LARGE}); - map.addControl(ctrl_nav); - //向地图中添加缩略图控件 - var ctrl_ove = new BMap.OverviewMapControl({anchor:BMAP_ANCHOR_BOTTOM_RIGHT,isOpen:1}); - map.addControl(ctrl_ove); - //向地图中添加比例尺控件 - var ctrl_sca = new BMap.ScaleControl({anchor:BMAP_ANCHOR_BOTTOM_LEFT}); - map.addControl(ctrl_sca); - } - //文字标注数组 - var lbPoints = [{point:"119.36461610058595|26.002382945493657",content:"福建省福州市仓山区城门镇大浦路2号安德大厦A电梯五楼"} - ]; - //向地图中添加文字标注函数 - function addRemark(){ - for(var i=0;i<lbPoints.length;i++){ - var json = lbPoints[i]; - var p1 = json.point.split("|")[0]; - var p2 = json.point.split("|")[1]; - var label = new BMap.Label("<div style='padding:2px;'>"+json.content+"</div>",{point:new BMap.Point(p1,p2),offset:new BMap.Size(3,-6)}); - map.addOverlay(label); - label.setStyle({borderColor:"#999"}); - } - } + <script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=IlhuMR32KKlrV3pR6BuvSLVLQKQeEjwP"></script> + <script src="__JS__/collaborate.js" type="text/javascript"></script> - initMap();//创建和初始化地图 - </script> -</block> \ No newline at end of file + <!-- 侧导航 --> + <div class="side_tabbar" style="z-index: 2"> + <img src="__IMG__/index_about/qrcode.png" alt=""> + </div> +</block> diff --git a/Application/Media/View/default/Index/index.html b/Application/Media/View/default/Index/index.html index 677bb8e29..159ba4481 100644 --- a/Application/Media/View/default/Index/index.html +++ b/Application/Media/View/default/Index/index.html @@ -1,47 +1,50 @@ <extend name="Public/base" /> <block name="body" > - <link rel="stylesheet" href="__CSS__/index_about.css"> - <div class="aboutWrapper"> - <!--公司介绍--> - <div class="about_1" id="ab_1"> - <div class="about_1_c about_wrapper"> - <div class="ab_tit"> - <p class="tit_en" style="margin-bottom: 10px;">Company Profile</p> - <p class="tit_ch">公司介绍</p> - </div> - <div class="about_1_box"> - <div class="side "> - <div class="act"> - <p> - 万盟天下励志为玩家提供国内最精品的移动游戏,公司集休闲、娱乐、游戏、玩家互动为一体,以公司服务和玩家互动娱乐为核心, 并于游戏厂商共建良好的沟通反馈机制,力图为大家打造一个最优秀最专业的绿色健康游戏服务平台 - </p> - <p> - 公司始终关注行业发展,为解决行业痛点不遗余力,专注于如何有效提升玩家用户体验,延长用户游戏周期,为玩家解决主要问题。在游戏中组织军团,带领玩家入门,一起畅玩游戏。我们的宗旨是:一对一,手把手,提供最贴心、最人性化的服务,帮助玩家找到最合适的游戏圈,带领玩家充分享受游戏带来的快乐。 公司现与知名互联网公司合作愉快。我们的愿景 :打造游戏行业最具影响力的【网络游戏运营模式】致力于真正做到让玩家快乐游戏! 用心享受快乐! - </p> + +<script src="__JS__/jquery.min.js"></script> +<script src="__JS__/rem.js"></script> +<link rel="stylesheet" type="text/css" href="__CSS__/reset.css" /> +<link rel="stylesheet" type="text/css" href="__CSS__/heard.css" /> +<link rel="stylesheet" type="text/css" href="__CSS__/foot.css" /> +<link rel="stylesheet" type="text/css" href="__CSS__/index.css" /> +<!-- heard --> +<div class="home_swiper"> + <img src="__IMG__/lunbo.png" alt=""> +</div> +<div class="home_text"> + <div class="home_pad"> + <div class="title" style="margin-bottom: 15px">公司介绍</div> + <div class="del">COMPANY PROFILE</div> + <div class="content"> + <p>万盟天下励志为玩家提供国内最精品的移动游戏,公司集休闲、娱乐、游戏、玩家互动为一体,以公司服务和玩家互动娱乐为核心, 并于游戏厂商共建良好的沟通反馈机制,力图为大家打造一个最优秀最专业的绿色健康游戏服务平台。</p> + <p> 公司始终关注行业发展,为解决行业痛点不遗余力,专注于如何有效提升玩家用户体验,延长用户游戏周期,为玩家解决主要问题。在游戏中组织军团,带领玩家入门,一起畅玩游戏。我们的宗旨是:一对一,手把手,提供最贴心、最人性化的服务,帮助玩家找到最合适的游戏圈,带领玩家充分享受游戏带来的快乐。 公司现与知名互联网公司合作愉快。我们的愿景 :打造游戏行业最具影响力的【网络游戏运营模式】致力于真正做到让玩家快乐游戏! 用心享受快乐!</p> + </div> + <div class="base">每一天,我们都致力于创造更美好的未来。我们的优质产品和服务,使人心情愉悦,神采焕发,享受更加完美生活。</div> + </div> +</div> +<!-- foot --> +<div class="foot"> + <div class="foot_box"> + <div class="foot_top"> + <img src="__IMG__/foot_logo.png" alt=""> + <div class="foot_top_ri"> + <div class="foot_link"> + <a>家长监护</a> + <a>客服帮助</a> + </div> + <div class="foot_serial"> + <span>备案号:琼ICP备19000556号-1</span> + <span>网络文化经营许可证编号:琼网文(2019)2354-200号</span> + </div> + <div class="foot_code">copyright2019</div> + <div class="foot_approve"> <img src="__IMG__/foot_slide.png" alt=""></div> </div> - </div> - <div class="side wr"> - <div class="bx"> - <!-- - <div class="bx_t"></div> - <div class="bx_con bx_bg1"></div> - <div class="bx_con bx_bg2"></div> - --> - <img src="__IMG__/index_about/cbd1.jpg" width="356" height="356"> - </div> - </div> </div> - <p class="about_1_bm" style="margin-top: 90px;">每一天,我们都致力于创造更美好的未来。我们的优质产品和服务,使人心情愉悦,神采焕发,享受更加完美生活。</p> - <div id="down_pass_pop" class="pop_downlA" style="left: 1163px; top: 760px;display: none;"> - <a class="btn_close"></a> - <div class="popD_header"><h2>企业资料</h2></div> - <div class="popD_main"> - <p><input name="down_pass" id="down_pass" placeholder="请输入密码"></p> - <p><button onclick="download()">确定</button></p> - </div> - </div> - </div> - </div> - <!--enf of 公司介绍--> - </div> + <div class="foot_bom">抵制不良网页游戏,拒绝盗版游戏。注意自我保护,谨防受骗上当。适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。适龄提示:适合12周岁以上使用。</div> + </div> +</div> +<!-- 侧导航 --> +<div class="side_tabbar" style="z-index: 1"> + <img src="__IMG__/index_about/qrcode.png" alt=""> +</div> </block> \ No newline at end of file diff --git a/Application/Media/View/default/Public/base.html b/Application/Media/View/default/Public/base.html index bf90e22e5..b791d60c0 100644 --- a/Application/Media/View/default/Public/base.html +++ b/Application/Media/View/default/Public/base.html @@ -70,6 +70,7 @@ <link rel="stylesheet" href="__CSS__/base1.css"> <link rel="stylesheet" href="__CSS__/public.css"> <link rel="stylesheet" href="__CSS__/main_pq.css"> + <style> .login_account { display: inline-block; max-width: 130px; @@ -86,174 +87,33 @@ <script type="text/javascript" src="__JS__/main.js"></script> </head> <body> - <div class="min"> - <div class="m1200" style="position:relative"> - <div class="fl"> - <a href="{:'http://'.$_SERVER['HTTP_HOST'].'/mobile.php'}" target="_blank"><i class="pq_icon ic16_phone mr5"></i>手机官网</a><!--<span class="line"></span>--> - <!-- <a href="{:'http://'.$_SERVER['HTTP_HOST'].'/index.php'}" target="_blank"><i class="pq_icon ic16_fav mr5"></i>推广平台</a>--> - - </div> - <!--顶部搜索--> - <!-- <div class="min_search"> - <ul> - <li><input type="text" name="textfield" id="textfield1" class="search_input" value="{:I('game_name')}"></li> - <li><input name="" type="button" value="" id="search" class="pq_icon search_btn"></li> - </ul> - <script type="text/javascript"> - $url = "{:U('Game/game_center','',false)}"; - $("#search").click(function(){ - if($.trim($("#textfield1").val())==''){ - return false; - }else{ - location.href=$url+'/game_name/'+$.trim($("#textfield1").val()); - } - }); - </script> - </div> - <!–已登录–> - <if condition="session('user_auth.user_id')"> - <div class="fr" id="ok_login"> - <a href="{:U('Member/users_index')}"><i class="icon i-user"></i><span class="login_account">{:session('member_auth.account')}</span></a> - <a href="javascript:;" id="quitlogin" class="ml10">[退出]</a> - </div> - <else/> - <!–未登录–> - <div class="fr" id="no_login"> - <a href="{:U('Member/register')}"><i class="pq_icon ic16_exit mr5"></i>免费注册</a> - <span class="line"></span> - <a href="{:U('Member/users_index')}"><i class="pq_icon ic16_people mr5"></i>立即登录</a> + <div class="heard"> + <div class="heard_logo"> + <img src="__IMG__/logo.png" alt=""> </div> - </if>--> - <!--游戏中心下拉列表--> - - </div> -</div> -<div class="head"> - <div class="m1200"> - <a href="{:U('Index/index')}" class="logo"> - <img src="{:get_cover(C('PC_SET_LOGO'),'path')}" width="154" height="100" alt="{:C(APP_NAME)}联运系统官网" onerror="this.src='__IMG__/empty.jpg';this.onerror=null"/> - </a> - - <ul class="nav"> - <li> - <a class="<if condition='$Think.const.CONTROLLER_NAME eq Index && $Think.const.ACTION_NAME eq index'>on</if>" href="{:U('Index/index')}"><span>{:C('PC_NAVIGATION_INDEX')?C('PC_NAVIGATION_INDEX'):'平台首页'}</span><i></i></a> - </li> - <li> - <a class="<if condition='$Think.const.CONTROLLER_NAME eq Index && $Think.const.ACTION_NAME eq business'>on</if>" href="{:U('Index/business')}"><span>{:C('PC_BUSINESS_PART')?C('PC_BUSINESS_PART'):'产品服务'}</span><i></i></a> - </li> - <li> - <a class="<if condition='$Think.const.CONTROLLER_NAME eq Index && $Think.const.ACTION_NAME eq hezuo'>on</if>" href="{:U('Index/hezuo')}"><span>{:C('PC_BUSINESS_PART')?C('PC_BUSINESS_PART'):'商务合作'}</span><i></i></a> - </li> - - - <!--<li> - <a class="<if condition='$Think.const.CONTROLLER_NAME eq Game'>on</if>"" href="{:U('Game/game_center')}"><span>{:C('PC_NAVIGATION_GAME')?C('PC_NAVIGATION_GAME'):'游戏中心'}</span><i></i></a> + <div class="heard_tabbar"> + <ul> + <li> + <a class="<if condition='$Think.const.CONTROLLER_NAME eq Index && $Think.const.ACTION_NAME eq index'>active</if>" href="{:U('Index/index')}"><span>{:C('PC_NAVIGATION_INDEX')?C('PC_NAVIGATION_INDEX'):'关于我们'}</span><i></i></a> </li> <li> - <a class="<if condition='$Think.const.CONTROLLER_NAME eq Gift'>on</if>" href="{:U('Gift/gift')}" ><span>{:C('PC_NAVIGATION_GIFT')?C('PC_NAVIGATION_GIFT'):'礼包中心'}</span><i></i></a> - </li>--> -<!-- <li> - <a class="<if condition='$Think.const.CONTROLLER_NAME eq Recharge'>on</if>" href="{:U('Recharge/pay')}" ><span>{:C('PC_NAVIGATION_SPEND')?C('PC_NAVIGATION_SPEND'):'充值中心'}</span><i></i></a> - </li> - <li> - <a class="<if condition='$Think.const.CONTROLLER_NAME eq Member'>on</if>" href="{:U('Member/users_index')}"><span>{:C('PC_NAVIGATION_USER')?C('PC_NAVIGATION_USER'):'用户中心'}</span><i></i></a> - </li>--> - <!-- <li> - <a class="<if condition='$Think.const.CONTROLLER_NAME eq Article'>on</if>" href="{:U('Article/index',array('category'=>'media_gg'))}"><span>{:C('PC_NAVIGATION_INFOR')?C('PC_NAVIGATION_INFOR'):'游戏资讯'}</span><i></i></a> - </li>--> - <!--<li> - <a class="<if condition='$Think.const.CONTROLLER_NAME eq Service'>on</if>" href="{:U('Service/index')}"><span>{:C('PC_NAVIGATION_KEFU')?C('PC_NAVIGATION_KEFU'):'客服中心'}</span><i></i></a> - <if condition="C('PC_NAVIGATION_SHOW_STATUS') eq 1"> - </li>--> - <li> - <a class="khd" target="_blank" href="{:U('Index/download')}" ><span>{:C('PC_NAVIGATION_CLIENT')?C('PC_NAVIGATION_CLIENT'):'客户端'}</span><i></i></a> - </li> -<!-- </if>--> - </ul> + <a class="<if condition='$Think.const.CONTROLLER_NAME eq Index && $Think.const.ACTION_NAME eq business'>active</if>" href="{:U('Index/business')}"><span>{:C('PC_BUSINESS_PART')?C('PC_BUSINESS_PART'):'产品服务'}</span><i></i></a> + </li> + <li> + <a class="<if condition='$Think.const.CONTROLLER_NAME eq Index && $Think.const.ACTION_NAME eq hezuo'>active</if>" href="{:U('Index/hezuo')}"><span>{:C('PC_BUSINESS_PART')?C('PC_BUSINESS_PART'):'商务合作'}</span><i></i></a> + </li> + </ul> + </div> </div> -</div> <!-- 主体内容 --> <block name="body"></block> <!-- 页脚 --> <!--首页 页脚 与其他页面页面不一样 margin-top没做限制 --> -<div class="foot clearfix index-foot "> - <div class="m1200 "> - <div class="foot_logo fl "> - <!--<img src="{:get_cover(C('PC_SET_LOGO_FOOT'),'path')}" onerror="this.src='__IMG__/empty.jpg';this.onerror=null" alt="" />--> - </div> - <div class="foot_info fl "> - <!--页脚导航--> - <div class="foot_nav "> - <if condition="footer_news('about') eq 1"> - <a rel="nofollow" title="关于我们" href="{:U('Article/news/type/about')}" target="_blank">关于我们</a><span class="line ">|</span> - </if> - <if condition="footer_news('collaborate') eq 1"> - <a rel="nofollow" title="商务合作" href="{:U('Article/news/type/collaborate')}" target="_blank">商务合作</a><span class="line ">|</span> - </if> - <if condition="footer_news('partner') eq 1"> - <a rel="nofollow" title="合作伙伴" href="{:U('Article/news/type/partner')}" target="_blank">合作伙伴</a><span class="line ">|</span> - </if> - <if condition="footer_news('supervise') eq 1"> - <a rel="nofollow" title="家长监护" href="{:U('Article/news1/type/supervise')}" target="_blank">家长监护</a><span class="line ">|</span> - </if> - <a rel="nofollow" title="客服帮助" href="{:U('Service/index')}" target="_blank">客服帮助</a><span class="line ">|</span> - <a rel="nofollow" title="技术支持" href="https://www.vlcms.com/" target="_blank">技术支持</a> - </div> - - <!--版权--> - <div class="foot_copy "> - <div class="foot_copy "> - <span style="margin-right:40px;"> - <a target="_blank" href="{:get_cover(C('PC_SET_FOR_THE_RECORD_PIRTURE'),'path')}">备案号:{:C('PC_SET_FOR_THE_RECORD')}</a> - </span> - <span> - <a target="_blank" href="{:get_cover(C('PC_SET_LICENSE_PIRTURE'),'path')}">网络文化经营许可证编号:{:C('PC_SET_LICENSE')}</a></span> - <br>{:C('PC_SET_COPYRIGHT')} - <br> - <?php if ($_SERVER['SERVER_NAME'] == 'www.wmtxkj.com' || $_SERVER['SERVER_NAME'] == 'wmtxkj.com') :?> - <a target="cyxyv" href="https://v.yunaq.com/certificate?domain=www.wmtxkj.com&from=label&code=90030"><img src="https://aqyzmedia.yunaq.com/labels/label_sm_90030.png" style="position: initial;width: 68px;margin-top: 10px;"></a> - <?php endif ;?> - </div> - - - </div> - </div> - <div class="clear"></div> - <div class="split_line"></div> - <div class="foot_tips">{:C('PC_GAME_PROMPT')}</div> - </div> -</div> <!--浮动层--> -<div class="float_contact_position "> - <div class="float_contact " style="right: 100px;"> - <img src="/Public/Media/images/index_about/qrcode.png" width="200"> - <!-- <div class="float-bg "></div> - <ul> - <li class="show kf "> - <a href="tencent://message/?uin={:C('PC_SET_SERVER_QQ')}&menu=yes"></a> - <div class="kf_pic "> - <a href="tencent://message/?uin={:C('PC_SET_SERVER_QQ')}&menu=yes" id="launch_qq "><span><img src="__IMG__/qq_icon.png " /></span><b>在线客服</b></a> - <i class="arrow "></i> - </div> - </li> - <li class="show wx "> - <a href="javascript:void(0); "></a> - <div class="wx_pic "> - <img src="{:get_cover(C('PC_SET_QRCODE'),'path')}" onerror="this.src='__IMG__/empty.jpg';this.onerror=null"/> - <i class="arrow "></i> - </div> - </li> - - <li> - <a href="javascript:void(0); " class="top "></a> - </li> - </ul> --> - </div> -</div> <block name="giftextend"></block> <script> diff --git a/Application/Media/View/default/Recharge/pay.html b/Application/Media/View/default/Recharge/pay.html index 4fce61254..02a0ad923 100644 --- a/Application/Media/View/default/Recharge/pay.html +++ b/Application/Media/View/default/Recharge/pay.html @@ -1,7 +1,12 @@ <extend name="Public/base" /> <block name="body" > <link rel="stylesheet" type="text/css" media="all" href="__CSS__/pay.css"> -<script type="text/javascript" src="__JS__/front/do.js"></script> + + <script src="__JS__/jquery.min.js"></script> + <script src="__JS__/rem.js"></script> + <link rel="stylesheet" type="text/css" href="__CSS__/heard.css" /> + +<script type="text/javascript" src="__JS__/front/do.js"></script> <script type="text/javascript" src="__JS__/front/cute.js"></script> <script type="text/javascript" src="__JS__/front/dialog.js"></script> <script type="text/javascript" src="__JS__/pay/common.js"></script> @@ -50,7 +55,7 @@ $("#moneyjft").parent().parent().siblings().removeClass('money_checked'); } - + if($('#form_alipay .money2').val()){ $("#form_alipay .last_money").addClass('money_checked').siblings().removeClass('money_checked'); } @@ -68,7 +73,7 @@ $(".last_money").click(function(){ $(this).addClass('money_checked').siblings().removeClass('money_checked'); - }); + }); }); @@ -82,7 +87,7 @@ <if condition="get_tool_status('alipay') eq 1"> <li class="li_h" data-type="alipay"><span class="p2 g" id="p2">支付宝</span></li> </if> - + <if condition="get_tool_status('weixin') eq 1 or get_tool_status('wei_xin') eq 1 or get_tool_status('weixin_gf') eq 1"> <li data-type="wechat" class=""><span class="p26 g" id="p26">微信支付(余额)</span></li> </if> @@ -98,7 +103,7 @@ </ul> </div> <div class="pay_r fl"> - + <div id="change_box"> <ul> <if condition="get_tool_status('alipay') eq 1"> @@ -133,7 +138,7 @@ <input type="radio" name="money" value="500"> <font>500元</font> </span> <span> <input type="radio" name="money" value="1000"> - <font>1000元</font> </span> + <font>1000元</font> </span> <span class="last_money"> <font>其他 <input type="text" maxlength="10" size="10" name="money2" id="money3" class="money2" onkeyup="this.value = this.value.replace(/[^0-9]/g, ''); get_game_coin2();" style="display: inline-block"> 元 </font> </span> @@ -143,7 +148,7 @@ <div class="clear"></div> </li> <li class="clearfix"><!-- <span class="label_name">返利券:</span> - <div class="flq_div" id="flq_div2">没有可用的返利券</div> --> + <div class="flq_div" id="flq_div2">没有可用的返利券</div> --> </li> <li class="clearfix"><span class="label_name"></span> <div class="flqtips_div"> @@ -198,7 +203,7 @@ <div class="clear"></div> </li> <li class="clearfix"><!-- <span class="label_name">返利券:</span> - <div class="flq_div" id="flq_div3">没有可用的返利券</div> --> + <div class="flq_div" id="flq_div3">没有可用的返利券</div> --> </li> <li class="clearfix"><span class="label_name"></span> <div class="flqtips_div"> @@ -222,8 +227,8 @@ <label class="ptb3">平台币</label> </span> <div class="ptbtips pa" id="ptbtips3"> - 平台币是{:C(APP_NAME)}手机游戏平台统一支付的虚拟货币。玩家可以使用平台币兑换{:C(APP_NAME)}手机游戏平台旗下绝大部分游戏的游戏币。 - <a href="javascript:;" class="ptbtipsclose db pa"></a> + 平台币是{:C(APP_NAME)}手机游戏平台统一支付的虚拟货币。玩家可以使用平台币兑换{:C(APP_NAME)}手机游戏平台旗下绝大部分游戏的游戏币。 + <a href="javascript:;" class="ptbtipsclose db pa"></a> </div> </li> <li> <span> <span class="label_name">充值帐号:</span> @@ -256,7 +261,7 @@ <div class="clear"></div> </li> <li class="clearfix"><!-- <span class="label_name">返利券:</span> - <div class="flq_div" id="flq_div3">没有可用的返利券</div> --> + <div class="flq_div" id="flq_div3">没有可用的返利券</div> --> </li> <li class="clearfix"><span class="label_name"></span> <div class="flqtips_div"> @@ -282,8 +287,8 @@ <label class="ptb4">平台币</label> </span> <div class="ptbtips pa" id="ptbtips4"> - 平台币是{:C(APP_NAME)}手机游戏平台统一支付的虚拟货币。玩家可以使用平台币兑换{:C(APP_NAME)}手机游戏平台旗下绝大部分游戏的游戏币。 - <a href="javascript:;" class="ptbtipsclose db pa"></a> + 平台币是{:C(APP_NAME)}手机游戏平台统一支付的虚拟货币。玩家可以使用平台币兑换{:C(APP_NAME)}手机游戏平台旗下绝大部分游戏的游戏币。 + <a href="javascript:;" class="ptbtipsclose db pa"></a> </div> </li> <li> <span> <span class="label_name">充值帐号:</span> @@ -316,7 +321,7 @@ <div class="clear"></div> </li> <li class="clearfix"><!-- <span class="label_name">返利券:</span> - <div class="flq_div" id="flq_div3">没有可用的返利券</div> --> + <div class="flq_div" id="flq_div3">没有可用的返利券</div> --> </li> <li class="clearfix"><span class="label_name"></span> <div class="flqtips_div"> @@ -343,7 +348,7 @@ <label class="ptb">平台币</label> </span> <div class="ptbtips pa" id="ptbtips5"> - 平台币是{:C(APP_NAME)}手机游戏平台统一支付的虚拟货币。玩家可以使用平台币兑换{:C(APP_NAME)}手机游戏平台旗下绝大部分游戏的游戏币。 + 平台币是{:C(APP_NAME)}手机游戏平台统一支付的虚拟货币。玩家可以使用平台币兑换{:C(APP_NAME)}手机游戏平台旗下绝大部分游戏的游戏币。 <a href="javascript:;" class="ptbtipsclose db pa"></a> </div> </li> @@ -377,7 +382,7 @@ <div class="clear"></div> </li> <li class="clearfix"><!-- <span class="label_name">返利券:</span> - <div class="flq_div" id="flq_div3">没有可用的返利券</div> --> + <div class="flq_div" id="flq_div3">没有可用的返利券</div> --> </li> <li class="clearfix"><span class="label_name"></span> <div class="flqtips_div"> diff --git a/Data/README.md b/Data/README.md index 9c05dfd67..05d950f7c 100644 --- a/Data/README.md +++ b/Data/README.md @@ -1 +1 @@ -# 数据备份文件夹,请勿删除 \ No newline at end of file +# 数据备份文件夹,请勿删除。 \ No newline at end of file diff --git a/Public/Media/css/collaborate.css b/Public/Media/css/collaborate.css new file mode 100644 index 000000000..8dc1742d2 --- /dev/null +++ b/Public/Media/css/collaborate.css @@ -0,0 +1,43 @@ +.collaborate_swiper{ + margin-top: 0.02rem; + width: 100%; + height: 5rem; +} +.collaborate_swiper>img{ + width: 100%; + height: 100%; +} +.collaborate_introduce{ + padding: 0.7rem 3.6rem 0.8rem; + background-color: #F6F7FB; +} +.collaborate_info{ + +} +.collaborate_info .title{ + padding: 0.11rem 0 0.11rem 0.27rem; + border-left: 0.05rem solid #2BBDEE; + font-size: 0.28rem; + color: #292929; +} +.collaborate_info .del{ + margin: 0.29rem 0; + font-size: 0.24rem; + color: #292929; + font-weight: 300; +} +.collaborate_info>p{ + font-size: 0.24rem; + color: #292929; + font-weight: 300; + margin-bottom: 0.1rem; +} +.map-box{ + width: 100%; + height: 4.08rem; + margin-top: 0.81rem; +} +#container{ + width: 100%; + height: 100%; +} \ No newline at end of file diff --git a/Public/Media/css/foot.css b/Public/Media/css/foot.css new file mode 100644 index 000000000..1ec4bd837 --- /dev/null +++ b/Public/Media/css/foot.css @@ -0,0 +1,80 @@ +.foot{ + +} +.foot_box{ + padding: 0.37rem 3.61rem 0.31rem 3.59rem; + background-color: #282B2D; +} +.foot_top{ + display: flex; + align-items: center; + padding-bottom: 0.2rem; + border-bottom: 1px solid #fff; +} +.foot_top>img{ + width: 0.84rem; + height: 1.06rem; +} +.foot_top_ri{ + margin-left: 0.39rem; + padding-left: 0.3rem; + border-left: 1px dashed #F5F5F5; +} +.foot_link{ + display: flex; + align-items: center; +} +.foot_link>a{ + font-size: 0.14rem; + color: #fff; + cursor: pointer; +} +.foot_link>a:first-child{ + padding-right: 0.19rem; + border-right: 1px solid #fff; + margin-right: 0.2rem; +} +.foot_serial{ + margin-top: 0.2rem; + display: flex; + align-items: center; +} +.foot_serial>span{ + font-size: 0.12rem; + color: #fff; +} +.foot_serial>span:first-child{ + margin-right: 0.44rem; +} +.foot_code{ + margin-top: 0.11rem; + font-size: 0.12rem; + color: #fff; +} +.foot_approve{ + margin-top: 0.14rem; + width: 0.68rem; + height: 0.24rem; + font-size: 0.12rem; +} +.foot_approve>img{ + width: 100%; + height: 100%; +} +.foot_bom{ + margin-top: 0.15rem; + text-align: center; + font-size: 0.14rem; + color: #D5D4D4; +} +.side_tabbar{ + position: fixed; + right: 0.63rem; + top: 4.23rem; + width: 2.70rem; + height: 3.70rem; +} +.side_tabbar img{ + width: 100%; + height: 100%; +} \ No newline at end of file diff --git a/Public/Media/css/heard.css b/Public/Media/css/heard.css new file mode 100644 index 000000000..b5c2cd00b --- /dev/null +++ b/Public/Media/css/heard.css @@ -0,0 +1,47 @@ +.heard{ + width: 100%; + height: 1.5rem; + display: flex; + justify-content: center; + position: relative; +} +.heard_logo{ + position: absolute; + left: 0.66rem; + top: 0.45rem; + width: 2.10rem; + height: 0.6rem; + font-size: 0.24rem; +} +.heard_logo>img{ + width: 100%; + height: 100%; +} +.heard_tabbar ul{ + display: flex; + font-size: 0.24rem; + color: #5B5B5B; + margin-top: 0.54rem; +} +.heard_tabbar ul li{ + margin-right: 1.2rem; + cursor: pointer; +} +.heard_tabbar ul li a{ + font-size: 0.28rem; + color: #5B5B5B; + padding-bottom: 0.54rem; + border-bottom: 0.04rem solid #fff; + +} +.heard_tabbar ul li a:hover{ + color: #2BBDEE; + border-bottom: 0.04rem solid #2BBDEE; +} +.heard_tabbar ul li .active{ + color: #2BBDEE; + border-bottom: 0.04rem solid #2BBDEE; +} +.heard_tabbar ul li:last-child{ + margin-right: 0; +} \ No newline at end of file diff --git a/Public/Media/css/index.css b/Public/Media/css/index.css index 8ae84da99..36b0416b0 100644 --- a/Public/Media/css/index.css +++ b/Public/Media/css/index.css @@ -1,1249 +1,61 @@ -@charset "utf-8"; -.g-header { - box-shadow: 0 4px 4px rgba(0, 0, 0, .2) +.home_swiper{ + margin-top: 0.02rem; + width: 100%; + height: 4.5rem; + position: relative; + z-index: -1; } -/*.slide-box*/ - .slide-box { - width: 100%; - height: 450px; - position: relative; +.home_swiper>img{ + width: 100%; + height: 100%; } -.slide-box .slide-bd { - height: 450px; - overflow: hidden; - position: relative; -} -.slide-bd li { - width: 100%; - height: 450px; - text-align: center; - position: absolute; - top: 0px; - display: none; -} -.slide-next, .slide-prev { - width: 45px; - height: 80px; - line-height: 200; - overflow: hidden; - position: absolute; - top: 210px; - left: 0px; - background: #000; - opacity: 0.5; - filter:alpha(opacity=50); -} -.slide-next { - left: auto; - right: 0px; - background-position: -68px -434px; -} -.slide-next:hover, .slide-prev:hover { - background: #03b4f5; - opacity: 1; -} -.slide-next:before, .slide-prev:before { - display: block; - width: 14px; - height: 25px; - margin: 28px auto 0; - content: ''; -} -.slide-prev:before { - background-position: 0 -240px; -} -.slide-next:before { - background-position: 0 -270px; -} -.slide-nav { - width: auto; - height: 24px; - line-height: 20px; - padding: 0 12px; - overflow: hidden; - text-align: center; - border: 1px solid rgba(0, 0, 0, 0.1); - background: rgba(255, 255, 255, 0.5); - position: absolute; - bottom: 20px; - left: 50%; - border-radius: 15px; -} -.slide-nav li { - display: inline-block; - vertical-align: middle; - width: 14px; - height: 14px; - margin: 0 6px; - line-height: 99px; - overflow: hidden; - border-radius: 50%; - background: #434343; -*display: inline; -*zoom: 1; -} -.slide-nav li:hover, .slide-nav .active { - margin: 0 3px; - border: 3px solid #fff; - border: 3px solid rgba(255, 255, 255, 1); - background: #03b4f5; -} -/*.g-container*/ - .g-container { -} -.g-tit .icon { - width: 30px; - height: 30px; -} -.i-crown { - background-position: 0 -295px; -} -.i-refresh { - background-position: 3px -325px; -} -.i-downl { - width: 14px; - height: 32px; - background-position: 0 -741px; -} -.i-like { - width: 30px; - height: 30px; - background-position: 0 -360px; -*vertical-align: middle; -} -.i-fire { - background-position: 0 -420px; -} -.i-s, .i-h, .i-n { - width: 12px !important; - height: 9px !important; - vertical-align: middle !important; -} -.i-s { - background-position: 0 -450px; -} -.i-h { - background-position: 0 -480px; -} -.i-n { - background-position: 0 -510px; -} -.i-cup { - background-position: 0 -535px; -} -.i-sms { - background-position: 0 -564px; -} -.i-star { - background-position: 0 -597px; -} -.i-rocket { - background-position: 0 -625px; -} -.i-gift { - background-position: 4px -656px; -} -.i-more { - background-position: 13px -683px; -} -.i-rgift { - background-position: 3px -717px; -} -.g-tit { - height: 30px; - line-height: 30px; - color: #383838; - font-size: 22px; - margin: 20px 0; - position: relative; -} -.g-tit a:hover { - color: #03b4f5; -} -.btn-refresh, .btn-more { - font-size: 12px; - position: absolute; - top: 0px; - right: 0px; -} -.btn-more { - border: 1px solid #ddd; - border-radius: 5px; - font-size: 12px; - padding: 0px 10px; - color: #A7A7A7; - display: block; - margin-top: 10px; - height:20px;line-height:20px; -} -.btn-more:hover { - color:#03b4f5;border-color:#03b4f5; -} -.btn-refresh .i-refresh { -} -.btn-refresh:hover .i-refresh { - transition: all 0.8s ease; - transform: rotate(360deg); -} -.rmd-game-list { - margin-right: -30px; -} -.rmd-game-list li { - width: 277px; - margin-right: 30px; - float: left; -} -.rmd-game-list .game-pic { - display: block; - /* width: 380px; */width:100%; - height: 176px; - overflow: hidden; - position: relative; - background:url(../images/templace/home_recommend.png) center center no-repeat; -} -.rmd-game-list .hot-font { - position: absolute; - /* width: 380px; */width:100%; - height: 176px; - top: -100%; - left: 0; - opacity: 0; - filter: alpha(opacity=0); -} -.rmd-game-list .hot-font .bg { - /* width: 380px; */width:100%; - height: 176px; - opacity: .85; - background: #03b4f5; - position: absolute; - top: 0; - left: 0; - filter: alpha(opacity=85); -} -.rmd-game-list .hot-font .con { - position: absolute; - top: 0; - left: 0; - z-index: 2; - /* padding: 40px 0 0 14px; */ - overflow: hidden;text-align:center;width:100%;height:100%;padding-top:38px; -} -.rmd-game-list .hot-font .con .rmdglicon {display:inline-block;width:100px;height:100px;margin:0 11px;} -.rmd-game-list .hot-font .con .rmdglicon .gameicon {width:100%;height:100%;} -.rmd-game-list .hot-font .con .rmdglicon p {margin-top:5px;font-size:16px;color:#FFF;} -.rmd-game-list .hot-font .con .rmdglicon .gameticon {vertical-align:middle;margin-right:4px;margin-top:-2px;} -.rmd-game-list .hot-font .font-qr { - float: left; - margin: 0 30px 0 0; -} -.rmd-game-list .hot-font .txt { - float: left; - width: 156px; - height: 32px; - line-height: 32px; - color: #fff; - font-size: 14px; -} -.rmd-game-list .game-pic:hover .hot-font { - opacity: 1; - filter: alpha(opacity=100); - top: 0 -} -.rmd-game-list .game-pic .f-turn, .hot-game-list .enter-web { --webkit-transition: all .3s ease-in; --moz-transition: all .3s ease-in; --ms-transition: all .3s ease-in; --o-transition: all .3s ease-in; -transition: all .3s ease-in; -} -.rmd-game-list .game-info { - height: 140px; - padding: 0 10px; -} -.rmd-game-list .game-name { - height: 22px; - line-height: 24px; - font-size: 22px; - padding-top: 20px; - font-weight: normal;clear:both; -} -.rmd-game-list .game-name .game-title {width:60%;float:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} -.rmd-game-list .game-name .game-score {width:36%;float:right;} -.rmd-game-list .game-name .game-score .tjstart {margin-top:4px;} -.rmd-game-list .game-intro { - height: 26px; - line-height: 26px; - color: #9f9f9f; - margin: 12px 0 20px 0; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} -.rmd-game-list .game-other { - line-height: 30px; - text-align: left; -} -.btn-like:hover .i-like { - background-position: 0 -390px; -} -.btn-like { - color: #9f9f9f; - margin-right: 10px; - max-width: 120px; - overflow: hidden; - height: 34px; - display: block; - float: left; - text-overflow:ellipsis; -} -.game-other .g-btn{ float:right;} -/*.hot-game-list*/ - .mod-hot-game { - width: 790px; -} -.mod-hot-game .hot-game-list { - margin-right: -20px; -} -.g-tit .itip { - font-size: 12px; -} -.g-tit .itip em { - margin-left: 10px; -} -.hot-game-list li { - width: 238px; - height: 96px; - color: #999; - padding: 16px 0 16px 12px; - margin: 0 20px 20px 0; - float: left; - display: inline; -transition: all .2s ease-in-out; -} -.hot-game-list li:hover { - box-shadow: 0 0 5px #03b4f5; -} -.hot-game-list .img { - display: block; - width: 96px; - height: 96px; - margin-right: 15px; - border-radius: 16px; - overflow: hidden; - background:url(../images/templace/home_game.png) center center no-repeat; -} -.hot-game-list .img img { - max-width:100%; -} -.hot-game-list .gname { - display: block; - width: 126px; - font-size: 14px; - color: #666; - margin: 10px 0 6px 0; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} -.hot-game-list .gname:hover { - color: #03b4f5; -} -.hot-game-list .g-btn { - width: 72px; - height: 24px; - line-height: 24px; - margin-top: 10px; -} -.hot-game-list .gname .icon { - position: relative; - top: -4px; -} -/*.mod-rank-game*/ - .mod-rank-game { - width: 382px; -} -.rank-game-list { - height: 400px; - padding: 8px 10px 16px; -} -.rank-game-list li { - height: 22px; - padding: 8px 0px; - border-bottom: 1px dotted #cecece; - vertical-align: top; - overflow: hidden; - position: relative; - ; -} -.rank-game-list .active .rank { - margin-top: 24px; -} -.rank-game-list .rank { - display: block; - width: 20px; - height: 20px; - line-height: 20px; - text-align: center; - color: #fff; - border-radius: 5px; - background: #ccc; -} -.rank-game-list .rank-0 { - background: #fd5253; -} -.rank-game-list .rank-1 { - background: #ff7b41; -} -.rank-game-list .rank-2 { - background: #ffad2b; -} -.rank-game-list .desc { - width:342px; - height: 22px; - line-height: 18px; - position: absolute; - top: 8px; - right: 0px; -} -.rank-game-list .name { - display: inline-block; - vertical-align: middle; - width: 210px; - padding: 0 18px; - font-size: 14px; - color: #666; -} -.rank-game-list .type { - color: #999; -} -.rank-game-list .detail { - background: #fff; - opacity: 0; - filter: alpha(opacity=0); - position: absolute; - top: 8px; - right: 0px; - transform: scale(0.8); -} -.rank-game-list .detail .img { - display: block; - width: 68px; - height: 68px; - border-radius: 15px; - padding:0 18px; - overflow: hidden; -} -.rank-game-list .detail .info { - width: 148px; - height: 70px; - overflow: hidden; -} -.rank-game-list .detail .name { - height: 22px; - line-height: 22px; - padding: 0; - color: #fd5253; - margin-top: 12px; - font-size: 14px; -} -.rank-game-list .g-btn { - width: 72px; - height: 24px; - line-height: 24px; - margin-top: 20px; -} -.rank-game-list .active { - height: 70px; - padding: 9px 0; -} -.rank-game-list .active .desc { - opacity: 0; - filter: alpha(opacity=0); -} -.rank-game-list .active .detail { - opacity: 1; - filter: alpha(opacity=100); - transform: scale(1); - transition: all 0.3s ease-in-out; -} -/*.mod-zx-box*/ - .mod-zx-box .hd .cr, .mod-hd-box .hd .cr { - width: 38px; - height: 38px; - background: url() no-repeat; - position: absolute; - top: 0px; - left: 0px; - z-index: 2; -} -.mod-hd-box .hd .cr { - background-position: -38px 0; -} -.mod-zx-box { - width: 380px; -} -.mod-zx-box .zx-list { - width: 350px; - height: 406px; - padding: 15px; -} -.mod-zx-box .hd { - overflow: hidden; - position: relative; -} -.mod-zx-box .hd img { - transition: all 0.3s ease-in-out; - width:350px; - height:80px; - background:url(../images/templace/home_news.png) center center no-repeat; -} -.mod-zx-box .hd:hover img { - transform: scale(1.1); -} -.mod-zx-box .bd { - padding: 10px 0; -} -.mod-zx-box .bd li { - width: 100%; - height: 24px; - line-height: 24px; - overflow: hidden; - margin-top: 10px; - vertical-align: top; -} -.mod-zx-box .bd span { - float: left; -} -.mod-zx-box .bd .type-1, .mod-zx-box .bd .type-2 { - width: 35px; - height: 24px; - text-align: center; - color: #999; - background: #f7f7f7; -} -.mod-zx-box .bd .type-1 { - border-left: 2px solid #f36161; -} -.mod-zx-box .bd .type-2 { - border-left: 2px solid #44b3f8; -} -.mod-zx-box .bd .tit { - width: 258px; - padding: 0 10px; - font-size: 14px; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} -.mod-zx-box .bd .date { - width: 35px; -} -.mod-zx-box .bd a { - color: #666; -} -.mod-zx-box .bd a:hover { - color: #03b4f5; -} -/*.mod-hd-box*/ - .mod-hd-box a img { - transition: all 0.3s ease-in-out; - -} -.mod-hd-box a:hover img { - transform: scale(1.1); -} -.mod-hd-box { - width: 380px; - margin: 0 29px; -} -.mod-hd-box .hd-list { - width: 350px; - height: 406px; - padding: 15px; -} -.mod-hd-box .hd { - display: block; - width: 352px; - height: 200px; - overflow: hidden; - position: relative; - background:url(../images/templace/home_activity1.png) center center no-repeat; -} -.mod-hd-box .hd p { - width: 100%; - height: 26px; - line-height: 26px; - color: #fff; - text-align: center; - background: rgba(0, 0, 0, .5); -*background: #000; - position: absolute; - left: 0px; - bottom: 0px; -} -.mod-hd-box .bd { - margin-right: -28px; -} -.mod-hd-box .bd a { - margin: 18px 20px 0 0; - float: left; - position: relative; - width:166px;height:85px;overflow:hidden; - background:url(../images/templace/home_activity2.png) center center no-repeat; -} -/*.mod-channel-box*/ - .mod-channel-box .channel-list { - width: 380px; - height: 436px; -} -.mod-channel-box .hd { - overflow: hidden; - margin-right: -1px; -} -.mod-channel-box .hd .item { - width: 189px; - height: 60px; - text-align: center; - font-size: 14px; - color: #999; - border-right: 1px solid #e6e6e6; - border-bottom: 1px solid #e6e6e6; - float: left; - position: relative; - transition: color 0.4s ease; -} -.kslink{ line-height:30px; margin:0 auto; background: #F1F2F3; padding:5px 0px;} -.kslink a{display: block; - height: 30px; - width: 120px; - border-radius: 30px; - border: 1px solid #F0676E; - color: #EF6769; - font-weight: normal; - text-align: center; - margin: 0 auto;} -.kslink a:hover{ background:#F0676E; color:#fff;} - - -.mod-channel-box .hd i, .mod-channel-box .server-online i { - background: url(../images/channel.jpg) no-repeat; -} -.mod-channel-box .hd .s, .mod-channel-box .hd .s1, .mod-channel-box .hd .s2 { - display: block; - vertical-align: top; - width: 100%; - height: 2px; - overflow: hidden; -} -.mod-channel-box .hd .s1 { - -} -.mod-channel-box .hd .s2 { - width: 0px; - margin: 0 auto; - position: relative; - z-index: 2; - transition: all 0.4s ease; -} -.mod-channel-box .hd i { - display: inline-block; - vertical-align: top; - width: 30px; - height: 30px; -margin: 15px 0 2px 0; - float:left; - margin-right: 10px; - margin-left: 40px; -} -.mod-channel-box .hd p{ display:block; float:left; height:60px; line-height:60px;} -.mod-channel-box .item:hover .s2 { - width: 100%; -} -.mod-channel-box .item-1 .s1, .mod-channel-box .item-2 .s1, .mod-channel-box .item-3 .s1 { - background: #fff; -} -.mod-channel-box .item-1 i { - background-position: 4px 0; -} -.mod-channel-box .item-2 i { - background-position: 0 -30px; -} -.mod-channel-box .item-3 i { - background-position: 4px -60px; -} -.mod-channel-box .item-4 i { - background-position: 0 -90px; -} -.mod-channel-box .item-5 i { - background-position: 0 -120px; -} -.mod-channel-box .item-6 i { - background-position: 0 -150px; -} -.mod-channel-box .item-7 i { - background-position: 0 -180px; -} -.mod-channel-box .item-8 i { - background-position: 2px -210px; -} -.mod-channel-box .item-9 i { - background-position: 0 -240px; -} -.mod-channel-box .item-1:hover i { - background-position: -26px 0; -} -.mod-channel-box .item-2:hover i { - background-position: -30px -30px; -} -.mod-channel-box .item-3:hover i { - background-position: -26px -60px; -} -.mod-channel-box .item-4:hover i { - background-position: -30px -90px; -} -.mod-channel-box .item-5:hover i { - background-position: -30px -120px; -} -.mod-channel-box .item-6:hover i { - background-position: -30px -150px; -} -.mod-channel-box .item-7:hover i { - background-position: -30px -180px; -} -.mod-channel-box .item-8:hover i { - background-position: -28px -210px; -} -.mod-channel-box .item-9:hover i { - background-position: -30px -240px; -} -.mod-channel-box .hd em { - display: block; - width: 0px; - height: 0px; - border-width: 5px; - border-style: solid; - overflow: hidden; - position: absolute; - bottom: 0px; - right: 0px; -} -.mod-channel-box .item-1 em { - border-color: #fff #ca7dbb #ca7dbb #fff; -} -.mod-channel-box .item-2 em { - border-color: #fff #8dc11f #8dc11f #fff; -} -.mod-channel-box .item-3 em { - border-color: #fff #58a1f3 #58a1f3 #fff; -} -.mod-channel-box .item-4 em { - border-color: #fff #f5a22b #f5a22b #fff; -} -.mod-channel-box .item-5 em { - border-color: #fff #50c3a1 #50c3a1 #fff; -} -.mod-channel-box .item-6 em { - border-color: #fff #fdb18f #fdb18f #fff; -} -.mod-channel-box .item-7 em { - border-color: #fff #fe9acc #fe9acc #fff; -} -.mod-channel-box .item-8 em { - border-color: #fff #ff6764 #ff6764 #fff; -} -.mod-channel-box .item-9 em { - border-color: #fff #ff33cc #ff33cc #fff; -} -.mod-channel-box .item-1, .mod-channel-box .item-1:hover { - color: #ca7dbb; -} -.mod-channel-box .item-2, .mod-channel-box .item-2:hover { - color: #8dc11f; -} -.mod-channel-box .item-3, .mod-channel-box .item-3:hover { - color: #58a1f3; -} -.mod-channel-box .item-4, .mod-channel-box .item-4:hover { - color: #f5a22b; -} -.mod-channel-box .item-5, .mod-channel-box .item-5:hover { - color: #50c3a1; -} -.mod-channel-box .item-6, .mod-channel-box .item-6:hover { - color: #fdb18f; -} -.mod-channel-box .item-7, .mod-channel-box .item-7:hover { - color: #fe9acc; -} -.mod-channel-box .item-8, .mod-channel-box .item-8:hover { - color: #ff6764; -} -.mod-channel-box .item-9, .mod-channel-box .item-9:hover { - color: #ff33cc; -} -.mod-channel-box .item-1:hover .s2 { - background-color: #ca7dbb; -} -.mod-channel-box .item-2:hover .s2 { - background-color: #8dc11f; -} -.mod-channel-box .item-3:hover .s2 { - background-color: #58a1f3; -} -.mod-channel-box .item-4:hover .s2 { - background-color: #f5a22b; -} -.mod-channel-box .item-5:hover .s2 { - background-color: #50c3a1; -} -.mod-channel-box .item-6:hover .s2 { - background-color: #fdb18f; -} -.mod-channel-box .item-7:hover .s2 { - background-color: #fe9acc; -} -.mod-channel-box .item-8:hover .s2 { - background-color: #ff6764; -} -.mod-channel-box .item-9:hover .s2 { - background-color: #ff33cc; -} -.mod-channel-box .bd { -} -.mod-channel-box .server-online { - width: 189px; - height: 152px; - text-align: center; - color: #ef656c; - border-right: 1px solid #e6e6e6; -} -.mod-channel-box .server-online i { - display: inline-block; - width: 67px; - height: 69px; - margin: 12px 0 15px 0; - background-position: 0 -270px; -} -.mod-channel-box .server-online p { - font-size: 18px; -} -.mod-channel-box .other { - width: 190px; -} -.mod-channel-box .other .item { - display: block; - height: 75px; - line-height: 75px; - padding-left: 20px; - font-size: 14px; - color: #999; - border-bottom: 1px solid #e6e6e6; -} -.mod-channel-box .other .item:hover { - color: #03b4f5; -} -.mod-channel-box .other .item-kf { - line-height: 26px; - color: #03b4f5; -} -.mod-channel-box .other .item-kf p { - padding-top: 12px; - color: #999; -} -/*.mod-lb-box */ - .mod-lb-box { -} -.mod-lb-box .lb-list { - height: auto; - padding: 0 0 36px 32px; -} -.mod-lb-box li { - float: left; - overflow: hidden; - margin-top: 36px; - vertical-align: top; - height:120px; -} -.mod-lb-box .item { - display: block; - width: 230px; - float: left; -} -.mod-lb-box .img { - width: 98px; - height: 98px; - border-radius: 20px; - overflow: hidden; - position: relative; - float: left;background:url(../images/templace/home_game.png) center center no-repeat; -} -.mod-lb-box .i-rgift { - width: 30px; - height: 30px; - border-radius: 6px; - position: absolute; - bottom: -4px; - right: -4px; - background-color: #fff; -} -.mod-lb-box .info { - width: 115px; - padding-left: 15px; - float: left; -} -.mod-lb-box .lbname { - font-size: 14px; - color: #666; - margin-top: 12px; - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; -} -.mod-lb-box .gname { - color: #999; - margin: 4px 0 8px 0; -} -.mod-lb-box .nums { - color: #999; - margin: 4px 0 8px 0; - display: none; -} -.mod-lb-box .nums em { - color: #03b4f5; -} -.mod-lb-box .item:hover .lbname { - color: #03b4f5; -} -.mod-lb-box .item:hover .nums { - display: block; -} -.mod-lb-box .item:hover .gname { - display: none; -} -.g-footer { - background: #f1f2f3; -} -/* 右侧游戏开服表 */ - .ikai { - display:inline-block; - vertical-align:top; -*vertical-align:middle; - background:url(../images/kai-index.png) 0 0 no-repeat; - _background:url(../images/kai-index.gif) 0 0 no-repeat; -} -.g-tit .ikai { - width:30px; - height:30px; -} -.i-kaifu { - background-position:-1px 4px; -} -.rank-kf-list { - height:424px; -} -.rank-kf-tit { - height:40px; - padding-top:2px; -} -.rank-kf-tit span { - float:left; - display:inline; - font:14px/40px \5FAE\8F6F\96C5\9ED1; - color:#9f9f9f; - text-align:center; -} -.kf-tit-name { - width:112px; -} -.kf-tit-date, .kf-tab-date { - width:48px; -} -.kf-tit-time, .kf-tab-time { - width:56px; -} -.kf-tit-zone, .kf-tab-zone { - width:92px; -} -.kf-tit-down { - width:54px; -} -.rank-kf-wrap { - width:382px; - height:351px; - margin:0; - overflow:hidden; - position:relative; +.home_text{ + width: 12rem; + background-color: #2BBDEE; + margin: -0.81rem auto 0.81rem; } -.rank-kf-tab { - width:10000px; - margin:0; -} -.rank-kf-tab ul { - width:382px; - float:left; - margin:0px; - overflow:hidden !important; -} -.kf-tab-line { - width:346px; - height:1px; - background-color:#e6e6e6; - font:0/0 a; - overflow:hidden; - margin:0 auto; -} -.kf-tab-box { - padding:9px 18px; - height:20px; - color:#777; - overflow:hidden; - font:12px/20px \5FAE\8F6F\96C5\9ED1; -} -.kf-tab-box span { - float:left; - display:inline; - height:20px; - overflow:hidden; - text-align:center; -} -.kf-tab-box span.kf-tab-name { - width:100px; - font-size:14px; - text-align:left; -} -.kf-tab-name a { - color:#383838; -} -.kf-tab-zone a { - display:block; - height:20px; - overflow:hidden; - color:#777; -} -.tab-gift, .tab-down { - width:20px; - height:20px; - float:right; - display:inline; - overflow:hidden; - margin-left:3px; - _margin-left:2px; -} -.tab-gift { - background-position:-5px -233px; +.home_pad{ + padding: 0.63rem 1.1rem 0.7rem 1rem; } -.tab-down { - background-position:-5px -289px; -} -.kf-tab-hover { - background-color:#f55f46; - color:#fff; -} -.kf-tab-hover .kf-tab-name a, .kf-tab-hover .kf-tab-zone a { - color:#fff; -} -.kf-tab-hover .tab-gift { - background-position:-5px -206px; -} -.kf-tab-hover .tab-down { - background-position:-5px -261px; -} -.kf-tab-page { - padding:8px 18px 0 0; - text-align:right; - line-height:15px; -} -.kf-tab-page span, .kf-tab-page a { - display:inline-block; -*display:inline; - zoom:1; - vertical-align:top; - color:#999; -} -.kf-tab-page span { - padding-right:6px; -} -.kf-tab-page a { - width:14px; - height:14px; - overflow:hidden; - font:13px/14px \5FAE\8F6F\96C5\9ED1; - text-align:center; - border:1px solid #cecece; -} -.kf-tab-page a:hover { - color:#03b4f5; -} -.kf-tab-page a.prev { - border-right:none; -} - - - +.home_pad .title{ + font-size: 0.48rem; + text-align: center; + color: #fff; -/*登录框*/ -.hide_txt { - text-indent: -99999em; } -.abs{position:absolute;} -.rel{position:relative;} -.login-pos{ z-index:2; position:relative; width:1200px; margin:0 auto;} -.login-box{ width:308px; right:0px; top:15px;} -.login-box a:hover{ text-decoration:underline;} -.lg-top{ height:55px; background:url(../images/login-top.png) no-repeat;} -.lg-mid{ background:url(../images/login-mid.png) repeat-y;height:365px;} -.loading{ width:68px; height:68px; left:120px; top:185px;} -.lg-bottom{ height:20px; background:url() left bottom no-repeat;} -.ico-login{ background:url(../images/ico-login.png) no-repeat;} -.lg-tip{ height:15px;} -.lg-tip p{ background-position:-165px -196px; margin-left:45px; color:#ed5565; line-height:30px; padding-left:22px;} -.lg-inptu-box{ height:93px; background-position:0 0; margin:0 0 0 30px;} -.lg-inptu-boxhover{ background-position:0 -93px;} -.lg-inptu{ width:170px; height:25px; background:none; border:none;} -.lg-yzm{ width:60px; left:95px; top:8px;} -.lg-name{ left:65px; top:14px;} -.lg-pwd{left:65px; top:52px;} -.lg-rzm{ height:40px;} -.rzm-img{ left:170px; top:0; border:1px solid #f3f3f3; border-radius:3px; width:103px; height:38px; cursor:pointer;} -.rzm-box{ width:132px; height:44px; background-position: 0 -192px; margin-left:30px;} -.rzm-boxhover{background-position: 0 -236px;} -.lg-btn{ width:246px; height:92px; border-bottom:1px dotted #e6e6e6; margin:0 auto;} -.lg-on{width:0; height:18px; left:4px; top:0; overflow:hidden;} -.lg-off{width:25px; height:18px; right:4px; top:0;} -.lg-rem-name{ left:60px; top:12px;color:#9f9f9f;} -.lg-slides{ background:#dddddd; border-radius:12px; width:53px; height:18px; left:0; top:12px; color:#fff;} -.lg-slides-btn{ display:block; border-radius:12px; width:20px; height:14px; left:2px; top:2px; background:#fff; z-index:22;} - -.on{ background:#a0d468} -.on .lg-on{width:25px; height:18px; left:4px; top:0;} -.on .lg-off{ width:0; overflow:hidden;} -.on .lg-slides-btn{left:31px;} - - -.forget-pwd{ left:183px; top:12px; color:#9f9f9f;} - -.lg-login{ display:block; width:246px; height:36px; left:0; top:50px; background-position:0 -288px;} -.lg-login:hover{ background-position:0 -326px;} -.wx-res-box{ height:130px;} -.wx-box{ width:133px; padding-top:90px; padding-left: 10px; height:15px; background-position:-125px -378px; left:22px; top:10px; border-right:1px solid #ededed; color:#9f9f9f;} -.res-box{ width:133px; height:112px; left:155px; top:14px;} -.res-tip{ left:20px; top:7px; color:#9f9f9f;} -.res-btn{ display:block; width:100px; height:31px; background-position:0 -378px; left:20px; top:32px;} -.res-btn:hover{ background-position:0 -413px;} -.bind-phpone{ left:18px; top:78px; color:#ff3300; background-position:-166px -248px; padding-left:22px;} -.played .bind-phpone{ left:165px; top:0;background-position:-166px -241px; font-size:12px;} - - -.top .login-h{width:400px;} -.login-pos .login-h{width:294px;} -.login-h{margin:0 auto;} -.user-info{ height:110px; border-bottom:1px solid #eeeeee;} -.user-base{ height:136px; border-bottom:1px solid #eeeeee; overflow:hidden;} -.user-photo{ width:83px; height:83px; left:10px; top:12px;} -.user-photo img{ width:80px; height:80px; border-radius:45px; left:0; top:0; z-index:1;border:3px solid #fff;box-shadow:2px 3px 2px #ddd;} -.user-photo a{ display:block; width:80px; height:80px; border-radius:45px; overflow:hidden; left:3px; top:3px; z-index:2; } -.user-photo a:hover{background:url(../images/ghtx.png) center center no-repeat;} -.user-mesg{ width:24px; height:24px; line-height:24px; text-align:center; background:url(../images/ico-login1.png) 0 0 no-repeat; left:15px; top:12px; z-index:3; display:none;} -.user-mesg a{ color:#fff;} -.user-mesg a:hover{ text-decoration:none;} -.user-name-box{ height:30px; line-height:30px; width:164px;left:110px; top:18px;} -.user-name{ font-weight:bold; color:#ff3300; font-size:14px;} -.user-exit{ right:0; top:0;} -.user-vip-box{ width:164px; height:32px; left:110px; top:53px;} -.user-v1{ left:0; top:-7px;} -.vip_fs {height:18px;line-height:18px;right:5px;text-align:right;top:0;width:105px;} -.vip_jdt {height:7px;left:6px; top:21px;width:158px;} -.vip_jdt span {background: url(../images/vip-fs.png) -3px 0 no-repeat;display: block;height: 7px;width: 0;} -.vip_jdt em { background: url(../images/vip-fs.png) no-repeat;display: block;height: 7px;width: 3px;} -.vip_jdt em.jtl_left {background-position: 0 0;} -.vip_jdt em.jdt_right {background-position: right 0;} - -.user-base-dl{ width:308px;} -.user-base-dl dd{ float:left; display:inline; width:98px; height:68px; border:1px solid #eeeeee; margin:-1px 0 0 -1px; text-align:center; overflow:hidden;} -.user-base-dl dd.user-1{ padding-top:10px;height:58px;} -.user-2 a{ display:block; width:100%; height:58px; padding-top:10px;} -.user-2 a:hover{ text-decoration:none; color:#0F0; background:#f2f2f2;} -.user-b1{ font-weight:bold; color:#ff3300; font-size:14px; margin:0 0 5px 0; height:21px;} -.user-b2{ color:#9f9f9f;} -.user-b2 span{ padding-left:15px; background:url(../images/ico-login1.png) no-repeat;} -.user-b2 span.user-up{ background-position:-1px -68px;} -.user-b2 span.user-down{ background-position:-1px -42px;} -.user-bdd a{ display:block; height:25px; padding-top:43px; width:98px; background:url(../images/ico-login2.png) no-repeat;} -.user-bdd i{ display:block; width:10px; height:10px; background:url(../images/ico-login1.png) no-repeat; position:absolute; right:0; bottom:0;} -.user-bdd a.user-center{ color:#ca7dbb; background-position:30px 9px; left:0; top:0;} -.user-bdd a.user-sign{color:#8dc11f; background-position:35px -58px ;left:0; top:0;} -.user-bdd a.user-pay{color:#ef656c; background-position:35px -120px ;left:0; top:0;} -.user-bdd i.bq-1{ background-position:-1px -103px;} -.user-bdd i.bq-2{ background-position:-1px -132px;} -.user-bdd i.bq-3{ background-position:-2px -157px;} -.palyed-game{ font-size:14px;} -.played{height:35px; line-height:35px; padding-left:15px;} -.played-game-list{ height:80px; overflow:hidden;} -.played-game-list dd{ height:40px; border-bottom:1px dotted #eeeeee;} -.played-game-list dd a{ display:block; height:40px;} -.played-game-list dd a:hover{ background:#eeeeee;} -.played-game-list dd img{ float:left; display:inline; width:30px; height:30px; margin:4px 0 0 15px; border-radius:5px;} -.played-game-list dd .played-game-name{ display:block; float:left; margin:8px 0 0 10px; height:20px; width:100px; line-height:20px;} -.played-game-list dd .played-server-name{ display:block; float:left; margin:8px 0 0 5px; height:20px; padding-right:25px; line-height:20px;} -.played-game-list dt{ color:#9f9f9f; padding:15px 0 0 15px;font-size:12px;} -.played-game-list dt a{ color:#ff3300; text-decoration:underline; } - -.user-bdd em{ display:block; width:98px; height:68px; position:absolute; right:0; bottom:0; } -.user-base .user-base-dl dd.current a{ background-image:url(../images/ico-login3.png); color:#fff;} -.user-base .user-base-dl dd.current a:hover{ text-decoration:none;} -.user-base .user-base-dl dd.current em.bq-11{ background:#ca7dbb;} -.user-base .user-base-dl dd.current em.bq-22{ background:#8dc11f;} -.user-base .user-base-dl dd.current em.bq-33{ background:#ef656c;} - -.user-vip{ background: url(../images/vip.gif) 0 7px no-repeat;display:block;height:24px;width:52px;} -.vip-0 {background-position: 0 7px;} -.vip-1 {background-position: 0 -19px;} -.vip-2 {background-position: 0 -45px;} -.vip-3 {background-position: 0 -71px;} -.vip-4 {background-position: 0 -96px;} -.vip-5 {background-position: 0 -122px;} -.vip-6 {background-position: 0 -148px;} -.vip-7 {background-position: 0 -174px;} -.vip-8 {background-position: 0 -199px;} - - -.user-2{ width:48%!important;} -/* 签到框 */ - -.succ_Signin { background: #fff; border-radius:8px;display: none; width: 380px; height:430px; overflow:hidden; z-index:99999999; opacity:0.95; filter:alpha(opacity=95);box-shadow:0px 0px 10px #999;} -.singn-title { background: #efeded;height: 40px; line-height:40px; padding-left:20px; font-size:16px;} -.singn-title a { display: block;height: 20px; position: absolute;right: 12px; top: 9px; width: 20px; background-position:-9px -465px;} -.sign_wrap {margin: 0 auto; overflow:hidden;} -.succ_Signin h5 { color: #ff3300; font-size: 16px; padding-top:5px; height: 37px;line-height: 37px;text-align:center;} -.Date {margin: 0 auto;padding-left: 1px;width: 337px;} -.Date .Dtt {height: 20px;line-height: 20px; position: relative; text-align: center;} -.Date .Dtt p {background: #f0f0f0;height: 20px;margin: 0 auto;text-align: center;width: 80px; border-radius:10px;} -.Date .Week { color: #fff;height: 28px; line-height: 28px;margin-top: 10px;padding: 0 0 0 1px;} -.Date .Week li, .Date .D_days li { float: left;height: 28px;line-height: 28px;padding: 0 1px 0 0;position: relative;text-align: center;width: 46px; color:#525252;} -.Date .Week li {background:#f7f6f6;border: 1px solid #dddddd; margin-left: -1px;} -.Date .D_days { border-left: 1px solid #d8d8d8;} -.Date .D_days li { border: 1px solid #dddddd;height: 28px;line-height: 28px; margin: -1px 0 0 -1px;} -.Date .D_days li span, .Date .D_days li span:hover {background-color: #fff;color: #000;display: block;height: 28px;line-height: 28px;width: 100%;} -.Date .D_days li.disabled span, .Date .D_days li.disabled span:hover {background: #ffffff; color: #9a9a9a;cursor: default;text-decoration: none;} -.Date .D_days li .Sign {background: url(../images/ico-login.png) -60px -464px no-repeat;display: none;height: 24px;left: 50%; margin: -12px 0 0 -12px; position: absolute;top: 50%;width: 24px;} -.Date .D_days li.active .Sign {display: block;} -.sign_instructions {clear: both;padding-top:12px; line-height: 22px;} -.sign_instructions p { padding-left:35px;} -.sign_instructions span {color: #ff3300;} - -.changebtn {border: 1px solid #ddd; - border-radius: 5px; - font-size: 12px; - padding: 0px 10px; - color: #A7A7A7; - display: block; - margin-top: 10px; - height: 20px; - line-height: 20px;} -.icon-change {width:18px;height:18px;vertical-align:middle;margin-top:-5px;margin-left:2px;display:inline-block;background:url(../images/icon-change.png) no-repeat;background-size:100% 100%;} -.btn-refresh:hover .icon-change {transition: all 0.8s ease;transform: rotate(360deg);} -.chpanwrap {overflow:hidden;position:relative;} -.chpan {float:left;display:none;} -.chpan.active {display:block;} \ No newline at end of file +.home_pad .del{ + font-size: 0.2rem; + text-align: center; + color: #fff; +} +.home_pad .content{ + font-size: 0.20rem; + margin-top: 0.65rem; + color: #fff; +} +.home_pad .content p{ + text-indent: 2em; + line-height: 0.32rem; +} +.home_pad .content p:last-child{ + margin-top: 0.4rem; +} +.home_pad .base{ + font-size: 0.28rem; + margin-top: 0.65rem; + color: #fff; + line-height: 0.4rem; + font-family: "宋体"; +} +.side_tabbar{ + position: fixed; + right: 0.63rem; + top: 4.23rem; + width: 2.70rem; + height: 3.70rem; +} +.side_tabbar img{ + width: 100%; + height: 100%; +} \ No newline at end of file diff --git a/Public/Media/css/product.css b/Public/Media/css/product.css new file mode 100644 index 000000000..c2a993a76 --- /dev/null +++ b/Public/Media/css/product.css @@ -0,0 +1,126 @@ +.product_swiper{ + margin-top: 0.02rem; + width: 100%; + height: 2.9rem; +} +.product_swiper>img{ + width: 100%; + height: 100%; +} +.product_home{ + padding: 0.7rem 3.6rem 0.81rem 0.55rem; + background-color: #F6F7FB; + display: flex; + align-items: flex-start; +} +.product_left{ + width: 2.5rem; +} +.product_left>img{ + width: 2.5rem; + height: 1.38rem; +} +.recharge{ + margin-top: 0.3rem; + background-color: #fff; +} +.recharge_box{ + padding: 0 0.15rem; + padding-bottom: 0.34rem; +} +.recharge_box .title{ + font-size: 0.28rem; + color: #949494; + text-align: center; + padding: 0.2rem 0; + border-bottom: 1px solid #EEEEEE; +} +.recharge_box .del{ + font-size: 0.2rem; + color: #949494; + padding: 0.25rem 0.12rem 0.31rem 0.2rem; +} +.recharge_box .voucher{ + font-size: 0.2rem; + color: #fff; + width: 1.5rem; + height: 0.4rem; + background-color: rgba(43,189,238,1); + border-radius: 0.2rem; + text-align: center; + line-height: 0.4rem; + margin: 0 auto; + cursor:pointer; +} +.product_right{ + margin-left: 0.55rem; +} +.product_right .title{ + padding: 0.12rem 0 0.12rem 0.27rem; + border-left: 0.05rem solid #2BBDEE; + font-size: 0.28rem; + color: #292929; +} +.not_product{ + width: 12rem; + margin-top: 0.26rem; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} +.not_product>img{ + width: 7.2rem; + height: 4rem; +} +.not_product>div{ + color: #A9A9A9; + font-size: 0.28rem; + margin-top: 0.16rem; +} +.have_product{ + margin-top: 0.3rem; +} +.have_product ul{ + display: flex; + align-items: center; + flex-wrap: wrap; +} +.have_product ul li{ + background-color: #fff; + width: 3.8rem; + margin-right: 0.2rem; + margin-bottom: 0.3rem; +} +.have_product ul li:nth-child(3n){ + margin-right: 0; +} +.have_product ul li>img{ + width: 3.8rem; + height: 2.14rem; +} +.have_product ul li .have_product_box{ + padding: 0.3rem 0.33rem 0.07rem; +} +.have_product ul li .have_product_box .name{ + font-size: 0.24rem; + color: #002929; + font-weight: 600; +} +.have_product ul li .have_product_box .del{ + font-size: 0.16rem; + color: #A9A9A9; + margin-top: 0.33rem; + overflow: hidden; + text-overflow:ellipsis; + white-space: nowrap; + padding-bottom: 0.3rem; + border-bottom: 1px solid #F6F7FB; +} +.have_product ul li .have_product_box .enter{ + font-size: 0.16rem; + color: #A9A9A9; + text-align: right; + margin-top: 0.1rem; + cursor: pointer; +} \ No newline at end of file diff --git a/Public/Media/css/reset.css b/Public/Media/css/reset.css index 851c59d95..adf1ba54c 100644 --- a/Public/Media/css/reset.css +++ b/Public/Media/css/reset.css @@ -1 +1,54 @@ -html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0} \ No newline at end of file +/*ios移动端关于事件绑定区域点击闪屏的解决*/ +html, +body { + -webkit-tap-highlight-color: rgba(0,0,0,0); + -webkit-transform-style:preserve-3d; + -webkit-transform: translate3d(0, 0, 0); + -moz-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + transform:translate3d(0,0,0); + -webkit-backface-visibility:hidden; + -moz-backface-visibility: hidden; + -ms-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000; + -moz-perspective: 1000; + -ms-perspective: 1000; + perspective: 1000; +} +/*清除一些默认样式, 这是根节点字体*/ +img{border:0;} +a{text-decoration:none; color:#000; outline:none;} +a:hover{text-decoration:none;} +em,strong,i{font-style:normal;} +li{list-style:none;} +h1,h2,h3,h4,h5,h6,span,strong,i,ul,li,label,button{font-size:100%;font-weight:normal;margin: 0;padding: 0;} +button{background-color: #fff;} +textarea { + margin: 0; + padding: 0; + outline: none; + border: none; + resize: none; +} +body{ + margin: 0; +} +/*输入框,多行输入框在IOS上的默认样式清除*/ +input[type="button"], input[type="submit"], input[type="reset"] {-webkit-appearance: none;} +textarea { -webkit-appearance: none;} + +input { + line-height:normal; + outline: none; + -webkit-appearance: none;/*去除系统默认样式*/ + -webkit-tap-highlight-color: rgba(0, 0, 0, 0);/*点击高亮的颜色*/ + -webkit-user-select: auto; + -webkit-user-modify: read-write-plaintext-only; +} +/*body { + -webkit-user-select: auto; +}*/ + +.clearfix {*zoom:1;} +.clearfix:after {content:'\200B';clear:both;display:block;height:0px} \ No newline at end of file diff --git a/Public/Media/images/foot_logo.png b/Public/Media/images/foot_logo.png index 098bc4f16..14a1dd00d 100644 Binary files a/Public/Media/images/foot_logo.png and b/Public/Media/images/foot_logo.png differ diff --git a/Public/Media/images/foot_slide.png b/Public/Media/images/foot_slide.png new file mode 100644 index 000000000..7fddb6c78 Binary files /dev/null and b/Public/Media/images/foot_slide.png differ diff --git a/Public/Media/images/img_left.png b/Public/Media/images/img_left.png new file mode 100644 index 000000000..018252ef5 Binary files /dev/null and b/Public/Media/images/img_left.png differ diff --git a/Public/Media/images/inner_banner1.png b/Public/Media/images/inner_banner1.png new file mode 100644 index 000000000..a46ef1a8c Binary files /dev/null and b/Public/Media/images/inner_banner1.png differ diff --git a/Public/Media/images/logo.png b/Public/Media/images/logo.png index d0d934c29..01fbe8fd1 100644 Binary files a/Public/Media/images/logo.png and b/Public/Media/images/logo.png differ diff --git a/Public/Media/images/lunbo.png b/Public/Media/images/lunbo.png new file mode 100644 index 000000000..fd0a15130 Binary files /dev/null and b/Public/Media/images/lunbo.png differ diff --git a/Public/Media/images/lunbo2.png b/Public/Media/images/lunbo2.png new file mode 100644 index 000000000..3ceb64f4d Binary files /dev/null and b/Public/Media/images/lunbo2.png differ diff --git a/Public/Media/images/lunbo3.png b/Public/Media/images/lunbo3.png new file mode 100644 index 000000000..29c4f41a8 Binary files /dev/null and b/Public/Media/images/lunbo3.png differ diff --git a/Public/Media/images/not_data.png b/Public/Media/images/not_data.png new file mode 100644 index 000000000..ec74c2083 Binary files /dev/null and b/Public/Media/images/not_data.png differ diff --git a/Public/Media/images/play.png b/Public/Media/images/play.png new file mode 100644 index 000000000..7fe316132 Binary files /dev/null and b/Public/Media/images/play.png differ diff --git a/Public/Media/js/collaborate.js b/Public/Media/js/collaborate.js new file mode 100644 index 000000000..acd2d2d94 --- /dev/null +++ b/Public/Media/js/collaborate.js @@ -0,0 +1,70 @@ +$(function() { + + // 百度地图API功能 + var mp = new BMap.Map("container", { + enableMapClick: false + }); + var addPoint = new BMap.Point(119.280631, 26.08057); + var marker = new BMap.Marker(addPoint); // 创建标注 + mp.addOverlay(marker); // 将标注添加到地图中 + mp.centerAndZoom(addPoint, 15); + mp.enableScrollWheelZoom(); + // 复杂的自定义覆盖物 + function ComplexCustomOverlay(point, text) { + this._point = point; + this._text = text; + } + ComplexCustomOverlay.prototype = new BMap.Overlay(); + ComplexCustomOverlay.prototype.initialize = function(map) { + this._map = map; + var div = this._div = document.createElement("div"); + div.style.position = "absolute"; + div.style.zIndex = BMap.Overlay.getZIndex(this._point.lat); + // div.style.border = "0.01rem solid #BC3B3A"; + // div.style.backgroundColor = "#ffffff"; + div.style.padding = "0.02rem"; + div.style.height = "0.18rem"; + div.style.width = "3rem"; + // div.style.lineHeight = "0.18rem"; + // div.style.whiteSpace = "nowrap"; + div.style.MozUserSelect = "none"; + div.style.fontSize = "0.18rem" + var p = this._span = document.createElement("p"); + p.style.position = "absolute"; + p.style.top = "-450%"; + p.style.left = "-50%"; + p.style.width = "3rem"; + p.style.backgroundColor = "#ffffff"; + p.style.lineHeight = "0.3rem"; + p.style.textAlign = "center"; + div.appendChild(p); + p.appendChild(document.createTextNode(this._text)); + var that = this; + + var arrow = this._arrow = document.createElement("div"); + arrow.style.background = "url(../images/address-point.png) center no-repeat"; + arrow.style.backgroundSize = "120% 120%"; + arrow.style.position = "absolute"; + arrow.style.width = "0.3rem"; + arrow.style.height = "0.3rem"; + arrow.style.top = "-80%"; + arrow.style.left = "-8%"; + arrow.style.overflow = "hidden"; + div.appendChild(arrow); + + + mp.getPanes().labelPane.appendChild(div); + + return div; + } + ComplexCustomOverlay.prototype.draw = function() { + var map = this._map; + var pixel = map.pointToOverlayPixel(this._point); + this._div.style.left = pixel.x - parseInt(this._arrow.style.left) + "px"; + this._div.style.top = pixel.y - 30 + "px"; + } + + var myCompOverlay = new ComplexCustomOverlay(addPoint, "福建省福州市鼓楼区福大怡山文化创意园11号楼"); + + mp.addOverlay(myCompOverlay); +}); \ No newline at end of file diff --git a/Public/Media/js/rem.js b/Public/Media/js/rem.js new file mode 100644 index 000000000..1b006ad9f --- /dev/null +++ b/Public/Media/js/rem.js @@ -0,0 +1,34 @@ +(function(doc, win) { + var docEl = doc.documentElement, + resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize', + recalc = function() { + + var clientWidth = docEl.clientWidth; + if(!clientWidth) return; + if(clientWidth > 1080) { + var whdef = 100 / 1920; // 表示1920的设计图,使用100PX的默认值 + var wH = window.innerHeight; // 当前窗口的高度 + var wW = window.innerWidth; // 当前窗口的宽度 + var rem = wW * whdef; // 以默认比例值乘以当前窗口宽度,得到该宽度下的相应FONT-SIZE值 + docEl.style.fontSize = rem + "px"; + + } else if(640 < clientWidth <= 1080) { + docEl.style.fontSize = '50px'; + } else { + docEl.style.fontSize = 100 * (clientWidth / 640) + 'px'; + } + + }; + + if(!doc.addEventListener) return; + recalc(); + win.addEventListener(resizeEvt, recalc, false); + doc.addEventListener('DOMContentLoaded', recalc, false); + /*DOMContentLoaded文档加载完成不包含图片资源 onload包含图片资源*/ +})(document, window); + +/* + +var iWidth=document.documentElement.clientWidth //getBoundingClientRect().width; + iWidth=iWidth>640?640:iWidth; + document.getElementsByTagName("html")[0].style.fontSize=iWidth/6.4+"px";*/ \ No newline at end of file