picture, img {
  display: block;
}

.bg {
  position: relative;
}
.bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1000px;
  background: -webkit-gradient(linear, left top, left bottom, from(#EFF5FF), to(#ffffff));
  background: linear-gradient(to bottom, #EFF5FF 0%, #ffffff 100%);
  z-index: -1;
}

.lucky_draw_container {
  max-width: 1164px;
  margin: 0 auto;
  padding: 0 25px;
}

.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner .kv {
  margin: 80px auto 0;
}

.detail_section {
  margin-top: 30px;
  counter-reset: section;
}
.detail_section .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #003082;
  margin-bottom: 30px;
}
.detail_section .subtitle {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #003082;
  counter-increment: section;
  counter-reset: item;
}
.detail_section .subtitle.restart_number {
  counter-set: section 1;
}
.detail_section ul, .detail_section .terms_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
  padding-left: 0;
  list-style: none;
}
.detail_section ul li, .detail_section .terms_list li {
  font-size: 18px;
  line-height: 1.5;
  color: #3D3D41;
}
.detail_section .terms_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-increment: item;
}
.detail_section .terms_list li::before {
  content: counter(section) "." counter(item);
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 12px;
}
.detail_section p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.detail_section hr {
  border: none;
  border-top: 1px solid #8EC9FE;
  margin: 60px 0;
}