


/*弹框样式*/

.popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
	-moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
	transition: opacity 0.3s 0s, visibility 0s 0.3s;
	z-index: 9999;
	font-family: "微软雅黑";
}

.popup.is-visible {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
	-moz-transition: opacity 0.3s 0s, visibility 0s 0s;
	transition: opacity 0.3s 0s, visibility 0s 0s;
}

.popup-container {
	position: relative;
	width: 400px;
	margin: 250px auto;
	background: #FFF;
	border-radius: .4rem .4rem .4rem .4rem;
	text-align: center;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	-webkit-transform: translateY(-60px);
	-moz-transform: translateY(-60px);
	-ms-transform: translateY(-60px);
	-o-transform: translateY(-60px);
	transform: translateY(-60px);
	-webkit-backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.is-visible .popup-container {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.popup-header {
	height: 50px;
	border-bottom: 4px solid #e8e8e8;
	line-height:50px;
}
.popup-title {
	border-bottom: 4px solid #CC0001;
    line-height: 50px;
    float: left;
    padding: 0 15px;
    margin-bottom: -4px;
    font-weight: normal;
    font-size:18px;
    margin: 0;
    font-family: "微软雅黑";
}
.popup-footer {
	padding: 15px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}
.popup-btn {
	color: #fff;
    background-color: #CC0001;
    border-color: #d43f3a;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.popup-content {
	padding:15px 15px 0px 15px;
	font-size:14px;
	line-height:34px;
}
.popup-content p {
	margin: 0;
    text-align: left;
    line-height: 20px;
    padding-bottom: 15px;
    font-size: 14px;
    color: #d43f3a;
}
.popup-form-group {
	overflow: hidden;
	margin-bottom:15px;
}
.popup-form-group label {
	width:15%;
	text-align:right;
	float: left;
	padding: 0 3%;
	font-family: "微软雅黑";
}
.popup-form-group label span {
	color: #CC0001;
}
.popup-control-box {
	width:75%;
	float: left;
}
.popup-control {
	margin: 0;
	float: left;
    width: 84%;
    height: 34px;
    padding: 0 5%;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.help-block {
	display: block;
	float: left;
	color: #CC0001;
	font-size:12px;
	line-height:24px;
	clear:both;
}
.w35 {
	width:35%
}
.btn-default {
    background-color: #c2c2c2;
    border-color: #c2c2c2;
    color: #FFFFFF;
}
