wap-app-download.html 4.87 KB
<!DOCTYPE html>
<html>
<head>
	<meta name="viewport" content="user-scalable=0, width=device-width, initial-scale=1.0,  minimum-scale=1.0, maximum-scale=1.0">
	<meta content="telephone=no" name="format-detection" />
	<meta content="black" name="apple-mobile-web-app-status-bar-style" />
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta name="description" content="地利批发-Android客户端是地利集团推出的一款移动APP,旨在帮助用户随时随地采购批发。主要功能:商品浏览、语音搜索、在线下单、商品推荐、商品收藏、店铺推广、供应消息、农产品价格走势等;提供服务:代购代销、物流配送、保鲜预冷、理货包装等。">

	<title>地利批发APP</title>
	<style>
body,p,h1{
	padding: 0;margin: 0;
}

html,body{
	background: url('http://static.nong12.com/static/newStatic/pnr/images/app/bg.png') center center no-repeat;
	background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
}
/* 清除浮动 */
.clearfix { display: inline-table; zoom:1;}
* html .clearfix { height:1%; }
* html .clearfix { zoom:1; }
.clearfix { display:block; }
.clear {clear: both;}
.clearfix:after { content: " "; display: block; height: 0; clear: both; visibility: hidden; line-height: 0px;}


header{
	padding: 10px;
	color: #fff;
	text-align: center;
}
.header-center{
	margin: 20px 0 0px 0;
}
.header-center .logo{
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
}
.header-center .logo img{
	max-width: 100%;
}
.header-info {
	overflow: hidden;
}
.header-center h1{
	font-size: 22px;
	font-weight: normal;
	margin-bottom: 5px;
}
.header-info p{
	font-size: 14px;
}
.content{
    margin: 10px 0 20px 0;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0px;
}
.content img{
	width: 240px;
}
.download-link{
	margin: 20px 0;
	text-align: center;
}
.android-icon{
	display: inline-block;
	vertical-align: middle;
	width: 21px;
	height: 24px;
	background: url('http://static.nong12.com/static/newStatic/pnr/images/app/android-icon.png') no-repeat;
	background-size: 20px;
	margin-top: -2px;
}
.ios-icon{
    display: inline-block;
    vertical-align: middle;
    width: 21px;
    height: 24px;
    background: url('http://static.nong12.com/static/newStatic/pnr/images/app/ios-icon.png') no-repeat;
    background-size: 20px;
    margin-top: -2px;
}
.download-link a{
	*display: inline;
	*zoom:1;
    display: inline-block;
    background: #6acb3b;
    border-radius: 4px;
    height: 45px;
    line-height: 45px;
    padding: 0 13px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    float: left;
    margin-left: 20px;
}
.download-link a.left {
    float: left;
}
.download-link a.right {
    float: right;
    margin-right: 20px;
}
footer{
	text-align: center;
	position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
	background: #fff;
	box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.2);
}
footer a{
	color: #6acb3b;
	font-size: 16px;
	text-decoration: none;
}
footer .tiaoguo{
	float: right;
	background: none;
	color: #6acb3b;
	padding: 0;
	margin-right: 20px;
	border-radius: 0;
}

/*响应式*/
@media screen and (max-width: 640px){
	.content img {
		width: 220px;
	}
}
@media screen and (max-width: 320px){
    .content img {
        width: 175px;
    }
}

#weixin-bg{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url('http://static.nong12.com/static/newStatic/pnr/images/app/point.png')  center 80px no-repeat rgba(0, 0, 0, 0.7);
	background-size: 180px;
}
#weixin-point{
	height: 100%;
	background: url('http://static.nong12.com/static/newStatic/pnr/images/app/point1.png')  70px 0 no-repeat;
	background-size: 80px;
    background-position:top right;
    position: relative;
    right: 15px;
    top: 15px;
}
	</style>
</head>
<body>
<header>
	<div class="header-center clearfix">
		<span class="logo">
			<img src="http://static.nong12.com/static/newStatic/pnr/images/app/app-logo.png">
		</span>
		<div class="header-info">
			<h1>地利批发  新版升级</h1>
			<p>全新交互体验,更多产品功能</p>
		</div>
	</div>
</header>
<div class="content">
	<img src="http://static.nong12.com/static/newStatic/pnr/images/app/android.png">
</div>

<footer>
	<div class="download-link clearfix">
		<a class="left" href="http://downloadapp.nong12.com/Nong12.apk">
			<span class="android-icon"></span>
			Android下载
		</a>
        <a class="right" href="https://itunes.apple.com/cn/app/nong-feng-wang/id984349424">
            <span class="ios-icon"></span>
            IOS下载
        </a>
	</div>
</footer>
<div id="weixin-bg">
	<div id="weixin-point"></div>
</div>
<script type="text/javascript">
	var ua = navigator.userAgent.toLowerCase();
	 判断是否微信浏览器中打开
	if( ua.match(/MicroMessenger/i) == "micromessenger" ) {

	} else {
		var _rc = document.getElementById('weixin-bg');
		document.body.removeChild( _rc );
	}
</script>
</body>
</html>