/*
* @Author: liuhe
* @Date:   2016-03-10 17:30:00
* @Last Modified by:   liuhe
* @Last Modified time: 2016-05-23 17:20:38
*/

/* 创建于2016.3.10用于晚上直播的弹窗广告，用完即可删除 */

.three-time {
  position: fixed;
  z-index: 99990;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*display: block;*/

  text-align: center;

  background: rgba(153, 153, 153,.8);
}

.three-time:before {
  display: inline-block;

  height: 100%;

  content: '';
  vertical-align: middle;
}

.three-time .three-content {
  // opacity: .8;
  position: relative;
  // background: rgb(53, 57, 58);
  // width: 547px;

  display: inline-block;

  padding: 25px 16px 16px;

  vertical-align: middle;

  border-radius: 5px;
}

.three-time .three-content a {
  display: block;
}

.three-time .three-content img {
  // width: 516px;
  // height: 393px;
}

.three-time .three-exit {
  position: absolute;
  top: 14px;
  right: 14px;

  display: block;

  box-sizing: border-box;
  width: 31px;
  height: 31px;
  padding: 8px;

  cursor: pointer;

  border-radius: 50%;
  background: rgba(0, 0, 0, .3) url(../images/guanbi_icon.png) no-repeat;
  background-origin: content-box;
  background-size: 15px 15px;
}
// .three-time .three-exit:hover {
//   background: rgb(212, 63, 39);
// }
