#info1 {
  display: none;
  position: fixed;
  z-index: 60;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 400px;
  height: 150px;
  background: #ffffff;
  text-align: center;
}
#info1 h4 {
  font-size: 20px;
  height: 50px;
  padding: 20px;
  line-height: 30px;
}
#info1 a {
  display: inline-block;
  margin-top: 25px;
  width: 120px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  border: 1px solid #ff7600;
  color: #ff7600;
  border-radius: 3px;
  margin-right: 10px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
#info1 a:hover {
  border-color: transparent;
  color: #fff;
  background: #ff7600;
}