/**
 * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
 * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用 
 */
@import 'uview-ui/theme.scss';
.wrap{margin: 0 40rpx;position: relative;}

.bottom-btn-wrap{
	height: 155rpx;
}
.bottom-btn-box{
	position: fixed;
	left: 40rpx;
	right: 40rpx;
	bottom: 47rpx;
	height: 85rpx;
	line-height: 85rpx;	
	text-align: center;
	.bottom-btn{
		flex: 1;
		height: 100%;		
		border-radius: 10rpx;
		font-size: 28rpx;
		&.bg-blue{
			background-color: #008CFF;
			color: #fff;
		}
		&.bg-gray{
			background-color: #EBF1FF;
			color: #3397FA;
		}
		
	}
	.bottom-btn + .bottom-btn{
		margin-left: 12rpx;
	}
}
.bottom-btn-wrap > .bottom-btn{
	position: fixed;
	left: 40rpx;
	right: 40rpx;
	bottom: 47rpx;
	height: 85rpx;
	line-height: 85rpx;
	background: #3397FA;
	box-shadow: 0px 9rpx 9rpx 0px rgba(0, 0, 0, 0.03);
	border-radius: 10rpx;
	text-align: center;
	font-size: 28rpx;
	font-weight: 500;
	color: #FFF;
	letter-spacing: 1px;
	z-index: 99;
}
.bottom-btn.static{
	position: static;
}