Chinese Dialog Box

by Andrey Izman

HTML

<div id="pop_tips_20s_wrapper" style="display: block;">
  <div id="pop_tips_20s" style="display: block; opacity: 1;">
    <img class="pop_tips_20s_avator"...

CSS

#pop_tips_20s_wrapper {
  bottom: 40%;
  font-family: -apple-system, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft Yahei, STHeiti, SimSun, sans-serif !important;
}

#pop_tips_20s_wrapper,
#pop_tips_20s_wrapper #pop_tips_20s {
  position: fixed;
  width: 420px;
  height: 176px;
  right: 50%;
  margin-right: -210px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  z-index: 201;
  display: none;
}

#pop_tips_20s_wrapper #pop_tips_20s {
  border-radius: 2px;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px 0 rgba(50, 50, 51, 0.1);
  box-shadow: 0 2px 8px 0 rgba(50, 50, 51, 0.1);
  border: 0 solid #e5e5e5;
  opacity: 0;
}

#pop_tips_20s_wrapper #pop_tips_20s .pop_tips_20s_avator {
  position: absolute;
  top: -35px;
  left: 185px;
  width: 70px;
  height: 70px;
  z-index: 202;
}

#pop_tips_20s_wrapper #pop_tips_20s .pop_tips_20s_header {
  height: 30px;
  line-height: 30px;
}

#pop_tips_20s_wrapper #pop_tips_20s .pop_tips_20s_header .close_pop_tips_20s {
  float: right;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 10px;
}

#pop_tips_20s_wrapper #pop_tips_20s .pop_tips_20s_content {
  text-align: center;
  margin-top: 12px;
}

#pop_tips_20s_wrapper #pop_tips_20s .pop_tips_20s_content .pop_tips_20s_text1,
#pop_tips_20s_wrapper #pop_tips_20s .pop_tips_20s_content .pop_tips_20s_text2 {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 400;
  color: #646566;
  font-family: "PingFangSC-Regular", arial, sans-serif;
}

#pop_tips_20s_wrapper #pop_tips_20s .pop_tips_20s_content .pop_tips_20s_mobile {
  font-size: 20px;
  color: #323233;
  vertical-align: bottom;
  font-weight: 600;
}

#pop_tips_20s_wrapper #pop_tips_20s .pop_tips_20s_footer {
  margin-top: 20px;
  text-align: center;
}

#pop_tips_20s_wrapper...