/* General styles for the modal */

/* 
Styles for the html/body for special modal where we want 3d effects
Note that we need a container wrapping all content on the page for the 
perspective effects (not including the modals and the overlay).
*/
.md-perspective,
.md-perspective body {
	height: 100%;
	overflow: hidden;
}

.md-perspective body  {
	background: #fff;
	-webkit-perspective: 600px;
	-moz-perspective: 600px;
	perspective: 600px;
}

.container {
	min-height: 100%;
}

.md-modal {
	position: fixed;
	top:50%;
	left: 50%;
	max-width: 700px;
	min-width: 320px;
	height: auto;
	border-radius: 30px;
	z-index: 9999999;
	visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.md-show {
	visibility: visible;

}

.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 9999995;
	opacity: 0;
	background: rgba(1,1,1,0.6);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show ~ .md-overlay {
	opacity: 1;
	visibility: visible;
}

/* Content styles */
.md-content {
	color: #5b5b5b;
	background: #fff;
	position: relative;
	border-radius: 0px;
	margin: 0 auto;
	border-radius: 20px; 

}
.md-content .md-close-btn {
	position: absolute;
	top: 10px;
	right: 5px;
	z-index: 999999;
}
.md-content .md-close-btn a{
	color: #909090;
	cursor: pointer;
}
.md-content .md-close-btn a:hover{
	color: #212121;
}
.md-content .md-close {
	display: block;
	font-size: 28px;
	width: 20%;
	margin: 0 auto;
	line-height: 60px;
	background-color: #f66170;
	color: #fff;

}
/* .md-content .md-close1 {
	display: block;
	font-size: 46px;
	width: 10%;
	height: 58px;
	color: #fff;
	right: 0px;
	top: -58px;
	background-color: #f44455;
	position: absolute;
	border: 0px;
	border-radius: 10px 10px 0 0;

} */

.md-content h3 {
	font-size: 32px;
	font-weight: 600;
	margin: 0;
	padding: 30px 0;
	text-align: center;
	border-radius: 0;
	color: #f44455;
}

.md-content > div {
	width: 100%;
	height:800px;
	padding: 0px 0px 0px;
	margin: 0;
	font-weight: 300;
	position: relative;
	overflow-x: hidden;
	overflow-y: scroll;
	background-color: #fff;

}
/*主要内容*/
.md-content .ta1{
	font-size:24px;
	text-align: center;
	background: #e03a41;
	color: #ffffff;
	line-height: 60px;
	
}
.md-content .ta2{

	text-align: center;
	background: #fff;	
	
	
}

#modal-1 .md-content .ta2 .ta3 .a10{
	font-size:18px;color: #333;	line-height: 30px;
}
/*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*/
#modal-2 .md-content .ta2 .ta3 .a10{
	font-size:18px;color: #333;	line-height: 30px;
}

/*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*/
#modal-3 .md-content .ta2 .ta3 .a10{
	font-size:18px;color: #333;	line-height: 30px;
}

/*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*/
#modal-4 .md-content .ta2 .ta3 .a10{
	font-size:18px;color: #333;	line-height: 30px;
}
/*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*/
#modal-5 .md-content .ta2 .ta3 .a10{
	font-size:18px;color: #333;	line-height: 30px;
}
/*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*/
#modal-6 .md-content .ta2 .ta3 .a10{
	font-size:18px;color: #333;	line-height: 30px;
}
/*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*//*主要内容*/
#modal-7 .md-content .ta2 .ta3 .a10{
	font-size:18px;color: #333;	line-height: 30px;
}


.md-content>div table {
    font-size:24px;
    line-height: 40px;
    color: #222;
    font-family: '微软雅黑', 'Lucida sans', Arial;
	display: block;
	position: relative;		
}

.md-content>div table tr td {
	border: 1px solid #8d8d8d;
	padding:16px 10px;
	
}

.md-content>div table th {
    background: #f7f7f7;
    padding: 10px 5px;
}

.md-content>div table td {
    word-break: break-all;
    text-align: center;
}






/* Individual modal styles with animations/transitions */

/* Effect 1: Fade in and scale up */
.md-effect-1 .md-content {
	-webkit-transform: scale(0.7); 
	-moz-transform: scale(0.7); 
	-ms-transform: scale(0.7); 
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s; 
	-moz-transition: all 0.3s; 
	transition: all 0.3s;
}
.md-show.md-effect-1 .md-content {
	-webkit-transform: scale(1); 
	-moz-transform: scale(1); 
	-ms-transform: scale(1); 
	transform: scale(1);
	opacity: 1;
}



@-webkit-keyframes OpenTop {
	50% { 
		-webkit-transform: rotateX(10deg); 
		-webkit-animation-timing-function: ease-out; 
	}
}

@-moz-keyframes OpenTop {
	50% { 
		-moz-transform: rotateX(10deg); 
		-moz-animation-timing-function: ease-out; 
	}
}

@keyframes OpenTop {
	50% { 
		transform: rotateX(10deg); 
		animation-timing-function: ease-out; 
	}
}

