You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
2.5 KiB
HTML

2 years ago
<extend name="Public/bases2" />
<block name="css">
<link href="__CSS__/game.css" rel="stylesheet" >
<link href="__CSS__/trade.css" rel="stylesheet" >
<style>
.header * {box-sizing:content-box;}
@media screen and (min-width:640px) {
.success_img{width:5rem;height:5rem;margin-bottom:2rem;}
.tip_tith {font-size:2rem;margin-bottom:1.6rem;}
.tip_txtp {font-size:1.8rem;}
.success_div {width:80%;}
.s_download {margin:6rem auto 2.5rem auto;}
.confirm_btn {height:4rem;line-height:4rem;font-size:2.2rem;}
}
</style>
</block>
<block name="body" >
<!--头部-->
<div class="xg_main">
<header class="header trade-header">
<div class="buysucc_div">
<a class="succ_goback" href="{:U('Trade/index')}">
<span class="table">
<span class="table-cell">
<img class="img_goback" src="__IMG__/trade/btn_normal_back@3x.png" alt="" height="" width="">
</span>
</span>
</a>
<h1 class="trade_caption">购买成功</h1>
</div>
</header>
<div class="xg_content content_success">
<div class="success_div">
<div class="tip_div">
<img class="success_img" src="__IMG__/trade/icon_normal_chenggong@3x.png" alt="icon">
<h4 class="tip_tith">交易成功</h4>
<p class="tip_txtp">在游戏中登录购买时所用的账号,“小号管理”点击购买小号,进入所在区服,即可获得角色。</p>
</div>
</div>
<div class="table s_download">
<div class="table-cell">
<a href="{:U('Game/detail',array('id'=>$game_id))}" class="confirm_btn">下载游戏</a>
</div>
</div>
<p class="table"><a class="table-cell to_back" href="{:U('Trade/record',array('type'=>1))}">返回</a></p>
</div>
</div>
<script>
$(function() {
$mt = "{:get_device_type()}";
var Scheme = "{:I('scheme')}";
if($mt==2){
if(Scheme){
window.location.href = Scheme+"://1&back";
}else{
window.webkit.messageHandlers.sy_small_reload.postMessage(1);
}
}else if($mt!=2){
window.mengchuang.sy_small_reload();
}
//---------------@author zwm--------------------//
//---------------date 2018-07-17-----------------//
$('.footer').hide();
$('.zmarg_btm59').css('margin-bottom',0);
$('.xg_content').css({'min-height':($(window).height()-$(".header").height()-2)});
$(".no_data").css({'height':($('.xg_content').height())});
//----------------------the end!-------------------------------//
});
</script>
</block>