@charset "utf-8";

/*模态框*/
body{
  width: 100%;
  height:100%;
  background: #fff;
}

.mask{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 100;
  display: none;
}

.modal{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  transform: translate(-50%,-50%);
  border-radius: 5px;
  background: #fff;
  box-shadow: 2px 3px 20px rgba(0,0,0,0.2);
  z-index: 120;
  display: none;
}

.modal .modal-header{
  height: 50px;
  border-bottom: 1px solid #f5f5f5;
  padding: 0 15px;
}

.modal .modal-header p {
  line-height: 50px;
  display: inline-block;
}

.modal .modal-header .title{	
  font-size: 18px;
  color: #333;
}

.modal .modal-header .close{
  float: right;
  font-size: 26px;
  margin-top: -2px;
  color: #9C9FA4;
  cursor: default;
}

.modal .modal-content{
  min-height: 100px;
  font: 16px Arial,sans-serif;
}

.modal .modal-footer .btn{
  padding: 0 20px;
  height: 36px;
  line-height: 36px;
  color: white;
  background: #409EFF;
  border: none;
}

.modal .modal-footer{
  border-top: 1px solid #f5f5f5;
  padding: 15px;
  text-align: right;
 
}

.container::after{
  content:"";
  display: block;
  clear: both;
}