*{
	padding: 0;
	margin: 0;
}
/* button:hover{
	background-color: #BB0210;
	color: white;
} */
button:focus{outline: none};
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0.1rem;
    left: auto;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0.1rem;
    left: auto;
}
@font-face {
	font-family:"Microsoft YaHei";
	src: url(../bb1781/weiruanyahei.ttf);
}
@font-face {
	font-family:"Microsoft YaHei bold";
	src: url(../bb1781/weiruanyaheibold.ttf);
}
p{
		font-family:"Microsoft YaHei";
}
	
	input::-webkit-input-placeholder { 
	/* WebKit browsers */ 
	color: #999999;
	font-family:"Microsoft YaHei";
font-size:0.22rem;
	} 
	input:-moz-placeholder { 
	/* Mozilla Firefox 4 to 18 */ 
	color: #999999;
	font-family:"Microsoft YaHei";
	font-size:0.22rem;
	} 
	input::-moz-placeholder { 
	/* Mozilla Firefox 19+ */ 
	font-family:"Microsoft YaHei";
	color: #999999;
font-size:0.22rem;
	} 
	input:-ms-input-placeholder { 
	/* Internet Explorer 10+ */ 
	font-family:"Microsoft YaHei";
	  color: #999999;
	font-size:0.22rem;
	}
	
	
	
	input::-webkit-input-placeholder,
	textarea::-webkit-input-placeholder {
	    color: #999999;
	    font-size: 0.22rem;  
	}
	input::-moz-placeholder, 
	textarea::-moz-placeholder {  /* Mozilla Firefox 19+ */
	    color: #999999;
	    font-size: 0.22rem;  
	}
	input:-moz-placeholder, 
	textarea:-moz-placeholder {  /* Mozilla Firefox 4 to 18 */
	    color: #999999;
	    font-size: 0.22rem;  
	}
	input:-ms-input-placeholder, 
	textarea:-ms-input-placeholder {  /* Internet Explorer 10-11 */
	  color: #999999;
	  font-size: 0.22rem;  
	}
	/*模态框*/
	.modal {
		display: none;
		/* 默认隐藏 */
		position: fixed;
		/* 根据浏览器定位 */
		z-index: 1;
		/* 放在顶部 */
		left: 0;
		top: 0;
		width: 100%;
		/* 全宽 */
		height: 100%;
		/* 全高 */
		overflow: auto;
		/* 允许滚动 */
		background-color: rgba(0, 0, 0, 0.9);
		/* 背景色 */
		opacity: 0.9;
	
	}
	
	/*模态框内容*/
	.modal-content {
		display: flex;
		/*采用flexbox布局*/
		flex-direction: column;
		width: 100%;
		/*垂直排列*/
		position: relative;
		/* background-color: #000000; */
		/* opacity: 0.9; */
		margin: 0 auto;
		/*距顶部15% 水平居中*/
		border: 0.01rem solid #888;
		border-radius: 0.1rem 0.1rem 0 0;
		animation: topDown 0.4s;
		/*自定义动画，从模态框内容上到下出现*/
		border: 0;
	}
	
	.modal-content h1 {
		text-align: center;
	}
/* 	.modal-content select{
		width: 6.9rem;
		height: 0.92rem;
		background-color: pink;
	}
	.modal-content select option{
		width: 6.9rem;
		height: 0.5rem;
	} */
	@keyframes topDown {
		from {
			top: -300px;
			opacity: 0
		}
	
		to {
			top: 0;
			opacity: 1
		}
	}
	@keyframes input {
		from {
			top: 0.8rem;
			opacity: 0
		}
	
		to {
			top: 1.2rem;
			opacity: 1
		}
	}

