源文件
This commit is contained in:
BIN
jeepay-h5-home/favicon.ico
Normal file
BIN
jeepay-h5-home/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
BIN
jeepay-h5-home/images/give.png
Normal file
BIN
jeepay-h5-home/images/give.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
BIN
jeepay-h5-home/images/header.png
Normal file
BIN
jeepay-h5-home/images/header.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 872 KiB |
BIN
jeepay-h5-home/images/jiantou.png
Normal file
BIN
jeepay-h5-home/images/jiantou.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 655 B |
BIN
jeepay-h5-home/images/logo.png
Normal file
BIN
jeepay-h5-home/images/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
BIN
jeepay-h5-home/images/shop.png
Normal file
BIN
jeepay-h5-home/images/shop.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
339
jeepay-h5-home/index.html
Normal file
339
jeepay-h5-home/index.html
Normal file
@@ -0,0 +1,339 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>商福通</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="main">
|
||||
<header class="header">
|
||||
<!-- logo -->
|
||||
<div class="logo">
|
||||
<img src="./images/logo.png" alt="">
|
||||
</div>
|
||||
<!-- login -->
|
||||
<!-- <div class="login">
|
||||
|
||||
<div class="login_icon"><img src="./images/jiantou.png" alt=""></div>
|
||||
<span class="login_content">我已有收银呗账号,快速登录</span>
|
||||
</div> -->
|
||||
<div class="button">
|
||||
<div class="left" onclick="toUrl(0)">
|
||||
<div class="left_icon"><img src="./images/give.png" alt=""></div>
|
||||
<div class="content">我是服务商</div>
|
||||
</div>
|
||||
<div class="right" onclick="toUrl(1)">
|
||||
<div class="right_icon"><img src="./images/shop.png" alt=""></div>
|
||||
<div class="content_right">我是商家用户</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="bottom">
|
||||
<div class="bottom_main">
|
||||
<!-- <div class="top">
|
||||
<ul>
|
||||
<li>蚂蚁集团</li>
|
||||
<li>|</li>
|
||||
<li>服务商平台</li>
|
||||
<li>|</li>
|
||||
<li>支付宝</li>
|
||||
<li>|</li>
|
||||
<li>余额宝</li>
|
||||
<li>|</li>
|
||||
<li>蚂蚁商家中心</li>
|
||||
<li>|</li>
|
||||
<li>芝麻信用</li>
|
||||
<li>|</li>
|
||||
<li>蚂蚁微贷</li>
|
||||
<li>|</li>
|
||||
<li>网商银行</li>
|
||||
<li>|</li>
|
||||
<li>开放平台</li>
|
||||
<li>|</li>
|
||||
<li>诚邀英才</li>
|
||||
<li>|</li>
|
||||
<li>联系我们</li>
|
||||
</ul>
|
||||
</div> -->
|
||||
<div class="center">
|
||||
<span>Copytight shouyinbei@融商创银武汉科技有限公司 <a href="https://beian.miit.gov.cn/" target="_blank">
|
||||
鄂ICP备19020489号-1</a></span>
|
||||
</div>
|
||||
<!-- <div class="bom">
|
||||
<div class="nav-icons">
|
||||
<a href="https://u.alipay.cn/_3DaM4ZtHA7KhH17nybWnkg" class="pic1" target="_blank"></a>
|
||||
<a href="https://sealinfo.verisign.com/splash?form_file=fdf/splash.fdf&dn=WWW.ALIPAY.COM&zh_cn"
|
||||
class="pic2" target="_blank"></a>
|
||||
<a href="javascript:;" class="pic3" target="_blank"></a>
|
||||
<a href="https://u.alipay.cn/_4T6qRyeBqawobPKyjjH9AQ" class="pic4" target="_blank"></a>
|
||||
<a href="https://fun.alipay.com/certificate/index.htm" class="pic7" target="_blank"></a>
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<script>
|
||||
function toUrl (type) {
|
||||
if (type == 1) {
|
||||
window.open('https://b.shouyinbei.com/ ')
|
||||
} else {
|
||||
window.open('https://p.shouyinbei.com/')
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
</html>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ul li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.main {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.header {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
background: url(./images/header.png) no-repeat;
|
||||
background-size: 100% 100%;
|
||||
background-attachment: fixed;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.logo {
|
||||
position: absolute;
|
||||
top: 55px;
|
||||
left: 70px;
|
||||
}
|
||||
|
||||
.login {
|
||||
width: 294px;
|
||||
height: 50px;
|
||||
border: 0.5px solid #fff;
|
||||
border-radius: 10px;
|
||||
position: absolute;
|
||||
top: 68px;
|
||||
right: 70px;
|
||||
z-index: 999;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.login_icon {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.login_content {
|
||||
font-weight: 400;
|
||||
font-family: PingFang SC-Regular;
|
||||
text-align: left;
|
||||
color: #fff;
|
||||
font-size: 18px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.button {
|
||||
position: absolute;
|
||||
top: 648px;
|
||||
height: 184px;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
}
|
||||
|
||||
.left {
|
||||
margin-right: 102px;
|
||||
/* position: absolute;
|
||||
top: 635px;
|
||||
left: 613px; */
|
||||
width: 274px;
|
||||
height: 65px;
|
||||
background: #2C6EF6;
|
||||
box-shadow: 0px 4px 9px 0px rgba(27, 51, 99, 0.3);
|
||||
border-radius: 14px 14px 14px 14px;
|
||||
opacity: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
|
||||
}
|
||||
|
||||
.left_icon img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 48px;
|
||||
}
|
||||
|
||||
.right_icon img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 35px;
|
||||
}
|
||||
|
||||
.content {
|
||||
width: 130px;
|
||||
height: 36px;
|
||||
font-size: 26px;
|
||||
font-family: PingFang SC-Semibold, PingFang SC;
|
||||
font-weight: 600;
|
||||
color: #FFFFFF;
|
||||
margin-right: 48px;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
.right {
|
||||
/* position: absolute;
|
||||
top: 635px;
|
||||
left: 1011px; */
|
||||
width: 274px;
|
||||
height: 65px;
|
||||
background: #2C6EF6;
|
||||
box-shadow: 0px 4px 9px 0px rgba(27, 51, 99, 0.3);
|
||||
border-radius: 14px 14px 14px 14px;
|
||||
opacity: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.left_icon img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 48px;
|
||||
}
|
||||
|
||||
.content_right {
|
||||
/* width: 130px; */
|
||||
height: 36px;
|
||||
font-size: 26px;
|
||||
font-family: PingFang SC-Semibold, PingFang SC;
|
||||
font-weight: 600;
|
||||
color: #FFFFFF;
|
||||
margin-right: 35px;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
.bottom {
|
||||
width: 100%;
|
||||
/* height: 9%; */
|
||||
background-color: #fff;
|
||||
opacity: 1;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.bottom_main {
|
||||
width: 60%;
|
||||
height: 100%;
|
||||
margin: auto;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.top,
|
||||
.center,
|
||||
.bom {
|
||||
width: 100%;
|
||||
height: 22%;
|
||||
}
|
||||
|
||||
.center {
|
||||
padding-top: 8px;
|
||||
}
|
||||
|
||||
.center>a {
|
||||
color: #666 !important;
|
||||
}
|
||||
|
||||
.top {
|
||||
padding-top: 10px;
|
||||
width: 99%;
|
||||
height: 22px;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.top ul {
|
||||
/* display: block;
|
||||
float: left;
|
||||
padding-left: 17px;
|
||||
color: #666;
|
||||
padding: 0 7px; */
|
||||
color: #666;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.top li {
|
||||
display: inline-block;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
.center {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.nav-icons {
|
||||
width: 250px;
|
||||
height: 30px;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
a.pic1 {
|
||||
background-position: 0px -5px !important;
|
||||
width: 18px !important;
|
||||
}
|
||||
|
||||
a.pic2 {
|
||||
background-position: -33px -5px !important;
|
||||
width: 40px !important;
|
||||
}
|
||||
|
||||
a.pic3 {
|
||||
background-position: -74px -5px !important;
|
||||
width: 33px !important;
|
||||
}
|
||||
|
||||
a.pic4 {
|
||||
background-position: -115px -5px !important;
|
||||
width: 18px !important;
|
||||
}
|
||||
|
||||
a.pic7 {
|
||||
background-position: -200px -5px !important;
|
||||
width: 20px !important;
|
||||
}
|
||||
|
||||
.nav-icons a {
|
||||
width: 20px;
|
||||
display: block;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
height: 28px;
|
||||
background: url(https://img.alicdn.com/tps/TB1.cMTIpXXXXbLXVXXXXXXXXXX.png) no-repeat 0 0;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user