/******** 通用弹出 ********/
/** 通用弹出
UPDATE: 2016/07/19
 **/
#poptips {
  display: none;
  position: fixed;
  z-index: 10001;
}
.poptips_show {
  overflow: hidden;
  /*position: fixed;*/
  position: absolute;
  width: 100%;
  height: 100%;
}
.poptips_show #poptips {
  display: block;
  /*cursor: pointer;*/
}
#poptips:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 899;
}
#poptips .poptips_box {
  display: inline-block;
  position: fixed;
  top: 30%;
  left: 50%;
  min-width: 300px;
  /*max-width: 600px;*/
  margin: 0 auto;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: #fff;
  padding: 20px;
  border-radius: 3px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.6);
  z-index: 900;
}
#poptips .title {
  font-weight: bold;
  text-align: center;
  padding-bottom: 20px;
}
#poptips .con {
  color: #757575;
  font-size: 14px;
  overflow: auto;
}
#poptips .con.center {
  text-align: center;
}
#poptips .con strong {
  color: #ef3a3a;
}
#poptips .con hr {
  margin: 10px 0;
}
#poptips .btn_group {
  padding-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
}
#poptips .btn_group .btn {
  display: inline-block;
  padding: 0;
  font-size: 12px;
  line-height: 40px;
  background-color: #0081e6;
  color: #fff;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  cursor: pointer;
  font-weight: bold;
}
#poptips .btn_group .cancel {
  background-color: #e5e5e5;
  color: #424242;
  margin-right: 10px;
}
.ie8 #poptips .poptips_box {
  left: 40px;
  right: 40px;
  border: 1px solid #c8c8c8;
}
/** 快速闪现提示
UPDATE: 2016/11/07
 **/
#winktips {
  position: fixed;
  bottom: 70px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10100;
  pointer-events: none;
}
#winktips .item {
  display: block;
  margin-bottom: 5px;
  display: none;
}
#winktips .item span {
  display: inline-block;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px;
  border-radius: 3px;
}