
body, body * {
  vertical-align: baseline;
  border: 0 none;
  outline: 0;
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 9pt;
  color: #333;
}

#main-container {
  position: relative;
  width: 300px;
  height: 250px;
  cursor: pointer;

  background: #000;
  overflow: hidden;
}

#main-container:before {
  position: absolute;
  display: block;
  content: '';
  width: 300px;
  height: 250px;
  opacity: 0.43;
  background-image: url('image/bg.png');
}

#container1 {
  position: absolute;
  left: 0px;
  top: 110px;
  width: 300px;
  height: 140px;
  background-color: #fff;
  text-align: center;
  animation-name: appear;
  animation-delay: 4s;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

#container1:before {
  position: absolute;
  display: block;
  bottom: 100%;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 300px;
  border-color: transparent transparent #fff transparent;
}

#container1 img {
  padding-top: 10px;
}

#logo1 {
  position: absolute;
  left: 5px;
  bottom: 15px;
  width: 123px;
  height: 25px;
  background-size: cover;
  background-image: url('image/logo1.png');
  animation-name: appear;
  animation-delay: 4s;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

#logo2 {
  position: absolute;
  left: 5px;
  bottom: 15px;
  width: 123px;
  height: 25px;
  background-size: cover;
  background-image: url('image/logo2.png');
  animation-name: disappear;
  animation-delay: 4s;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

#cta {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 164px;
  height: 45px;
  background-size: cover;
  background-image: url('image/join.png');
  animation-name: blinking;
  animation-timing-function: steps(5, start);
  animation-delay: 4s;
  animation-duration: 0.5s;
  animation-iteration-count: 3;
  animation-fill-mode: backwards;
}

#container2 {
  position: relative;
  opacity: 0;
  top: -50px;
  animation-name: container2;
  animation-delay: 4s;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

#text1 {
  position: absolute;
  top: 0;
  left: 25px;
  width: 382px;
  height: 137px;
  background-size: cover;
  background-image: url('image/text1.png');
  animation-name: appear;
  animation-delay: 0s;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

#text2 {
  position: absolute;
  top: 103px;
  left: -103px;
  width: 420px;
  height: 140px;
  background-size: cover;
  background-image: url('image/text2.png');
  animation-name: appear;
  animation-delay: 2s;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

#hotline {
  position: absolute;
  left: 0;
  top: -129px;
  width: 191px;
  height: 129px;
  background-size: cover;
  background-image: url('image/hotline.png');
  animation-name: hotline;
  animation-delay: 4s;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

:focus {
  outline:none;
}

::-moz-focus-inner {
  border:0;
}

@keyframes container2 {
  0% {opacity: 1;top:-25px;}
  100% {opacity: 0;top:-50px;}
}

@keyframes appear {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes disappear {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

@keyframes blinking {
  100% {visibility: hidden;}
}

@keyframes hotline {
  0% {top:-129px;}
  100% {top:-15px;}
}