* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  font-family: Arial;
}
a {
  text-decoration: none;
  color: inherit;
}
ul li {
  list-style: none;
}
body {
  font-size: 0;
}
.common-container {
  width: 8.23rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.otherlink-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000000;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  filter: alpha(opacity=0);
  transition: 0.3s;
}
.otherlink-bg.in {
  opacity: 1;
  filter: alpha(opacity=100);
}
.otherlink-pop.in {
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  z-index: 1000001;
  background-color: white;
}
.otherlink-pop a.offBtn {
  text-decoration: none;
  position: absolute;
  top: 5px;
  right: 8px;
  font-size: 20px;
  padding: 5px 10px;
  color: #ccc;
  font-weight: 700;
  line-height: 20px;
}
.otherlink-pop h2 {
  padding: 40px 40px 70px 40px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8;
  margin-top: 0;
}
.otherlink-pop p.btns {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  text-align: right;
  font-size: 0;
}
.otherlink-pop p.btns a {
  text-decoration: none;
  display: inline-block;
  margin: 9px 15px 0 0;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  font-size: 14px;
  border: 1px solid #bbbbbb;
  color: #333;
  border-radius: 5px;
}
.otherlink-pop p.btns a:hover {
  background: #e6e6e6;
}
.otherlink-pop p.btns a.toOtherLink {
  border: 1px solid #2d72e5;
  background: #2d72e5;
  color: #fff;
}
.otherlink-pop p.btns a.toOtherLink:hover {
  background: #2d72e5;
}
