@charset "utf-8";
*, *::before, *::after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html, body, ol, ul, dd, dl, input, button, select, textarea {
	margin: 0;
	padding: 0; 
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	margin-bottom: 0;
}
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	background-color: #f8f8f8;
	font-size: 14px;
	color: #383838;
	font-family: -apple-system-font, 'Helvetica Neue', Helvetica, STHeiti, sans-serif, Arial;
	word-wrap: break-word;
	min-width: 320px;
	max-width: 640px;
	margin: 0 auto; 
	
	/*禁用ios长按底部弹出选择框*/
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ktml-user-select: none;
	user-select: none;
}
a {
	text-decoration: none; 
	background-color: transparent;
	color: inherit;
}
img {
	display: block;
	width: 100%;
}
.pt30{padding-top: 30px;}
.mb30{margin-bottom: 30px;}
.mb60{margin-bottom: 60px;}
.none{display:none !important;}

/*微信指导页*/
.page{
    height: 100vh;
    color: #383838;
    padding-top: 30px;
    overflow: hidden;
}
.page.bg{
    background-image: url(../images/page1-bg@2x.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-attachment: fixed;
    background-size: 100%;
}
.s-title{
    font-size: 16px;
    line-height: 22px;
    padding-left: 15%;
}
.s-title span{
    font-weight: bold;
    color: #AC9374;
}
.tip-img{
    display: block;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px;
}
.b-title{
    font-size: 17px;
    text-align: center;
}
.logo-img{
    width: 25%;
    margin-left: auto;
    margin-right: auto; 
}

/*---------------------------------下载页面-------------------------------*/
.page.fixedPage{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 100;
    display: none;
}
.bank_logo{
    padding-left: 20px;
}
.bank_logo img{
    width: 176px;
    /* height: 28px; */
}
.bankDescribe{
    color: #929292;
    font-size: 8px;
    padding-left: 20px;
    margin-top: 6px;
}
.viewContain{
    margin-top: 26px;
    width: 100%;
    height: 423px;
    height: 60vh;
    background-image: url("../images/step2B.png");
    background-size: 100% 100%;
    position: relative;
}
.viewContain .hkapp_logo{
    width: 99px;
    height: 82px;
    margin: 0 auto;
    display: block;
}
.viewContain .remit{
    /* width: 162px;
    height: 211px; */
    width: 42%;
    position: absolute;
    bottom:20px;
    z-index: 1;
    /* left: 40px; */
    left: 12%;;
}
.viewContain .index{
    /* width: 175px;
    height: 273px; */
    width: 45%;
    position: absolute;
    bottom:20px;
    z-index: 2;
    /* left: 130px; */
    left: 33%;
}
.botton{
    padding: 0 20px;
}
.botton .downloadBtn{
    background-image: linear-gradient(to bottom right, #D7BB99, #8B6E4C);
    background-image: -webkit-linear-gradient(to bottom right, #D7BB99, #8B6E4C);
    color: #fff;
    height: 44px;
    line-height: 44px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    font-size: 18px;
    width: 100%;
    text-align: center;
    display: block;
    margin: -20px auto 0;
    background-color: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}
.tips{
    font-size: 12px;
    color: #929292;  
    text-align: center;
    margin-top: 20px;
}

/*动画效果*/
.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
@-webkit-keyframes bounceInLeft{
    0%,100%,60%,75%,90%{
        -webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);
        transition-timing-function:cubic-bezier(0.215,.61,.355,1)
    }
    0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}
    60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}
    75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
    90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}
    100%{-webkit-transform:none;transform:none}
}
@keyframes bounceInLeft{
    0%,100%,60%,75%,90%{
        -webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);
        transition-timing-function:cubic-bezier(0.215,.61,.355,1)
    }
    0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);-ms-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}
    60%{opacity:1;-webkit-transform:translate3d(25px,0,0);-ms-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}
    75%{-webkit-transform:translate3d(-10px,0,0);-ms-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
    90%{-webkit-transform:translate3d(5px,0,0);-ms-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}
    100%{-webkit-transform:none;-ms-transform:none;transform:none}
}
.bounceInLeft{
    -webkit-animation-name:bounceInLeft;
    animation-name:bounceInLeft
}
@-webkit-keyframes bounceInRight{
    0%,100%,60%,75%,90%{
        -webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);
        transition-timing-function:cubic-bezier(0.215,.61,.355,1)
    }
    0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}
    60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}
    75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}
    90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}
    100%{-webkit-transform:none;transform:none}
}
@keyframes bounceInRight{
    0%,100%,60%,75%,90%{
        -webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);
        transition-timing-function:cubic-bezier(0.215,.61,.355,1)
    }
    0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);-ms-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}
    60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);-ms-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}
    75%{-webkit-transform:translate3d(10px,0,0);-ms-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}
    90%{-webkit-transform:translate3d(-5px,0,0);-ms-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}
    100%{-webkit-transform:none;-ms-transform:none;transform:none}
}
.bounceInRight{
    -webkit-animation-name:bounceInRight;
    animation-name:bounceInRight
}
