*{
    margin: 0;
    padding: 0;
}
ul li{
	list-style: none;
}
body{
	font-family: "Microsoft YaHei","微软雅黑",Arial,sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #515a6e;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#app{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#box{
	width:100%;
	background-color: #fff;
	display: flex;
	flex-direction: column;
}
@media (min-width:576px){
	body{
		background-color:#FAFAFA;
	}
	#box{
		background-color:#fff;
		width:411px;
		height:731px;
		margin:0 auto;
		margin-top:40px;
		margin-bottom:20px;
		border-radius: 6px;
		box-shadow: 0 2px 4px 0 rgba(0,0,0,.05);
	}
	.header{
		border-top-left-radius: 6px;
		border-top-right-radius: 6px;
	}
}


.header{
	padding:50px 0;
	text-align:center;
	font-size:22px;
}

.login{
	padding:0 30px;
}

.loginBox .inputBox{
    display: flex;
    padding: 10px 5px;
    position: relative;
	margin-bottom:10px;
    border-bottom: 1px solid #dfdfdf;
}
.loginBox .inputBox label {
    vertical-align: middle;
    white-space: nowrap;
    font-style: normal;
    display: block;
    font-size: 14px;
    text-align: right;
    letter-spacing: 2px;
}
.loginBox .inputBox input {
    vertical-align: middle;
    font-size: 15px;
    padding-left: 10px;
    color: #333333;
    border: 0;
    background: transparent;
    -webkit-appearance: none;
    width: 0;
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    outline: none;
}



.copyright{
    position: absolute;
    bottom: 30px;
    margin: auto;
    left: 0;
    right: 0;
}

.loginBox .button{
	margin-top:30px;
	width:100%;
    border-radius: 4px;
    padding: 12px 0;
    font-size: 16px;
	text-align:center;
    color: #fff;
    background-color: #415EA4;
    box-shadow: 0 0 8px 0 rgb(66 97 162 / 50%);
}


.loginType{
	padding-top:20px;
	text-align:center;
}
.loginType ul{
	display: flex;
	justify-content:center;
}
.loginType ul li{
	margin:0 10px;
}
.loginType ul li.active {
  color: rgb(66 97 162);
}


.newPwd .inputBox{
    display: flex;
    padding: 10px 5px;
    position: relative;
	margin-bottom:10px;
    border-bottom: 1px solid #dfdfdf;
}
.newPwd .inputBox label {
    vertical-align: middle;
    white-space: nowrap;
    font-style: normal;
    display: block;
    font-size: 14px;
    text-align: right;
    letter-spacing: 2px;
}
.newPwd .inputBox input {
    vertical-align: middle;
    font-size: 15px;
    padding-left: 10px;
    color: #333333;
    border: 0;
    background: transparent;
    -webkit-appearance: none;
    width: 0;
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    outline: none;
}


.newPwd .button{
	margin-top:30px;
	width:100%;
    border-radius: 4px;
    padding: 12px 0;
    font-size: 16px;
	text-align:center;
    color: #fff;
    background-color: #415EA4;
    box-shadow: 0 0 8px 0 rgb(66 97 162 / 50%);
}

























.payHeader{
	color:#fff;
	background-image: url(/img/topbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
	background-position:center center ;
	font-size:16px;
	padding:35px 20px;
	
	display: flex;
    align-items: center;
	justify-content:space-between; /* 两侧排序 */
}
.payHeader .left{
	display: flex;
    align-items: center;
}
.payHeader .left .username{
	margin-left:10px;
	font-size:18px;
	font-weight:600;
}
.payHeader .left .username span{
	display:block;
	font-size:14px;
	font-weight:500;
}
.payHeader .right{
	background-color: rgba(255,255,255,.62);
    color: #000;
    border-radius: 22px;
    padding: 5px 15px;
	font-size:14px;
	color:#6379AE;
}

.goods{
	padding:20px 15px;
}
.goods .title{
	font-size:16px;
	margin-bottom:15px;
}
.goods ul{
	padding-bottom:15px;
    margin-bottom: 5px;
	display: flex;
    white-space: nowrap;
	align-items: center;
    overflow-x: overlay;
}
.goods ul:hover::-webkit-scrollbar{
	display: unset;
}
.goods ul::-webkit-scrollbar {
	display: none;
	width : 5px;
	height: 5px;
}
.goods ul::-webkit-scrollbar-thumb {
	border-radius: 20px;
	box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
	background   : #415EA4;
}
.goods ul::-webkit-scrollbar-track {
	box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	background   : #eee;
}
.goods ul li{
	width:120px;
	margin:0 10px;
	padding:30px 20px;
	border-radius:7px;
	color:#999;
	text-align:center;
    background-color: #fff;
    box-shadow: 0 0 5px 0 rgb(0,0,0,0.1);
	flex-shrink: 0; /* 控制width */
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	justify-content:center;
}

.goods ul li .name{
	font-size:15px;
	padding-bottom:5px;
}
.goods ul li .price{
	font-weight:600;
	font-size:20px;
	padding-bottom:5px;
}
.goods ul li .description{
	font-size:11px;
}
.goods ul li.hover{
	color:#fff;
    background-color: #415EA4;
    box-shadow: 0 0 8px 0 rgb(66,97,162 ,.5);
}
.goods .button{
	margin-bottom: 15px;
	display: flex;
	text-align:center;
	justify-content: center;
}
.goods .button a{
	width:100%;
	font-size:15px;
    padding: 10px 0;
    border-radius: 5px;
	color:#999;
    background-color: #eee;
    box-shadow: 0 0 8px 0 rgb(0,0,0,0.05);
}
.goods .button.hover a{
    color: #fff;
    background-color: #415EA4;
    box-shadow: 0 0 8px 0 rgb(66,97,162 ,.5);
}
.goods .tips{
	color:#999;
	font-size:12px;
}

.pay{
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	z-index:2000;
    background-color: rgba(255,255,255, .9);
	border-top-left-radius:10px;
	border-top-right-radius:10px;
	padding:30px 20px;
	padding-bottom:50px;
	
	display: flex;
	text-align:center;
	justify-content:space-around;
}
.pay .img{
	display: flex;
	align-items: center;
	justify-content: center;
	/*background-color:#fff;*/
	padding:10px;
	margin-bottom:10px;
}
.pay .img img{
	width:120px;
	height:120px;
}
.pay .button{
    text-align:center;
	color:#fff;
    border-radius: 5px;
	width:140px;
	padding:10px 0;
    box-shadow: 0 0 8px 0 rgb(0,0,0 ,.05);
}






.footer {
    height: 40px;
    line-height: 40px;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-family: Arial;
    font-size: 12px;
    letter-spacing: 1px
}


.footer a {
    color: #000
}







































































































.mask_transparent {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(55,55,55,.6);
}
.toast {
    position: fixed;
    z-index: 5000;
    width: 120px;
    height: 120px;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
    border-radius: 5px;
    color: rgba(255,255,255,0.9);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: #4c4c4c;
}
.toast__loading {
    margin: 8px 0;
    width: 38px;
    height: 38px;
    vertical-align: baseline;
  display: inline-block;
  animation: Loading 1s steps(12, end) infinite;
  background: transparent url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E9E9E9' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23989697' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%239B999A' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23A3A1A2' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23ABA9AA' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23B2B2B2' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23BAB8B9' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23C2C0C1' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23CBCBCB' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23D2D2D2' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23DADADA' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E2E2E2' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E") no-repeat;
  background-size: 100%;
}

@-webkit-keyframes Loading {
  0% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
@keyframes Loading {
  0% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
.toast__content {
    font-size: 14px;
}