/**
 * PostbirdAlertBox.js
 * -    原生javascript弹框插件
 * Author:  Postbird - http://www.ptbird.cn
 * License: MIT
 * Date:    2017-09-23
 */

.postbird-box-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.postbird-box-container.active {
  display: block;
}

.postbird-box-content {
  padding: 20px 20px 78px 20px;
  line-height: 20px;
  border-radius: 4px;
  font-size:16px;
  box-shadow: 0px 0px 0px 0px #aaaaaa;
  border: 1px solid #bbbbbb;
  background-color: white;
  animation-duration: 0.5s;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  /* width: 400px;
  max-width: 90%;
  min-height: 150px;
  background-color: #fff;
  border: solid 1px #dfdfdf;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  /* margin-top: -100px; */
}

.postbird-box-header {
  font-size: 16px;
  height: 20px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  /* width: 100%;
  padding: 10px 15px;
  position: relative;
  font-size: 1.1em;
  letter-spacing: 2px; */
}

.postbird-box-close-btn {
  cursor: pointer;
  font-weight: 700;
  color: #000;
  float: right;
  opacity: 0.5;
  font-size: 1.3em;
  margin-top: -3px;
  display: none;
}

.postbird-box-close-btn:hover {
  opacity: 1;
}

.postbird-box-text {
  width: 400px;
  min-height: 42px;
  margin-bottom: 20px;
  color: rgba(16, 16, 16, 0.87);
  font-size: 16px;
  /* width: 100%;
  padding: 0 10%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  letter-spacing: 1px; */
}

.postbird-box-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background-color: #F6F6F6;
  text-align: right;
  /* width: 100%;
  position: absolute;
  bottom: 0;
  padding: 0;
  margin: 0;
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  border-top: solid 1px #dfdfdf;
  align-items: flex-end; */
}

.postbird-box-footer .btn-footer {
  display: inline-block;
  height: 38px;
  padding:0 30px;
  cursor:pointer;
  margin-left: 28px;
  line-height: 38px;
  font-size: 14px;
  background-color: #505A9A;
  min-width:72px;
  border-radius: 4px;
  color: #ffffff;
  text-align: center;
  outline: none;
  border: 0 none;
  /* line-height: 44px;
  border: 0;
  cursor: pointer;
  background-color: #fff;
  color: #0e90d2;
  font-size: 1.1em;
  letter-spacing: 2px;
  transition: background-color .5s;
  -webkit-transition: background-color .5s;
  -o-transition: background-color .5s;
  -moz-transition: background-color .5s;
  outline: 0; */
}
/* 
.postbird-box-footer .btn-footer:hover {
  background-color: #e5e5e5;
}

.postbird-box-footer .btn-block-footer {
  width: 100%;
}

.postbird-box-footer .btn-left-footer,
.postbird-box-footer .btn-right-footer {
  position: relative;
  width: 100%;
}

.postbird-box-footer .btn-left-footer::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-color: #e5e5e5;
  height: 100%;
  width: 1px;
}

.postbird-box-footer .btn-footer-cancel {
  color: #333333;
}

.postbird-prompt-input {
  width: 100%;
  font-size: 16px;
  border: 1px solid #cccccc;
  outline: none;
  padding: 5px 10px 5px 10px;
} */