* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 14px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "microsoft yahei", sans-serif;
  color: #333;
  background-color: #fff;
  min-height: 100vh;
}

body .body-wrapper {
  opacity: 0;
  -webkit-transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

body.pace-done .body-wrapper {
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.pace .pace-progress {
  background: #2b7cd3;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: #000;
}
.main-header .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 105px;
  font-size: 16px;
}
.main-header .logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 10px;
  left: 10px;
}
.main-header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 5px;
  left: -10px;
  top: -10px;
}
.main-header .logo .title-img {
  position: relative;
  top: 6px;
  left: 15px;
}
.main-header .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-header .nav-links a {
  color: #fff;
  padding: 8px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
}
.main-header .nav-links a:hover, .main-header .nav-links a.active {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(51, 102, 204)), to(rgb(0, 153, 255)));
  background: linear-gradient(180deg, rgb(51, 102, 204) 0%, rgb(0, 153, 255) 100%);
  -webkit-box-shadow: 0 1px #059afe;
  box-shadow: 0 1px #059afe;
}

.hero-banner {
  position: relative;
  overflow: hidden;
}
.hero-banner .hero-content {
  position: relative;
  width: 100%;
}
.hero-banner .hero-text {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.hero-banner .hero-text h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
  white-space: nowrap;
}
.hero-banner .hero-text h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-banner .hero-image {
  width: 100%;
  line-height: 0;
}
.hero-banner .hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.sidebar-qr {
  position: fixed;
  right: 10px;
  top: 140px;
  z-index: 100;
}
.sidebar-qr .sidebar-close {
  position: absolute;
  top: 4px;
  right: 10px;
  width: 73px;
  height: 25px;
  cursor: pointer;
  z-index: 2;
}
.sidebar-qr .sidebar-close:hover {
  opacity: 0.8;
}
.sidebar-qr .sidebar-content .sidebar-desc {
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.sidebar-qr .sidebar-content .qr-frame {
  position: relative;
  display: inline-block;
}
.sidebar-qr .sidebar-content .qr-frame .qr-bg {
  display: block;
  width: 188px;
  height: 380px;
}
.sidebar-qr .sidebar-content .qr-frame .qr-code {
  position: absolute;
  bottom: 32.5%;
  left: 61%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 59%;
  height: auto;
}
.sidebar-qr .qr-wrapper {
  background: #fff;
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 8px;
}
.sidebar-qr .qr-wrapper .qr-image {
  width: 100px;
  height: 100px;
}
.sidebar-qr .qr-label {
  font-size: 0.75rem;
  opacity: 0.9;
}
.sidebar-qr .qr-sublabel {
  font-size: 0.8rem;
  font-weight: bold;
}

.main-footer {
  background: url("../img/footerbg.jpg") repeat-x bottom;
  background-color: #0a6abf;
  padding: 30px 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 170px;
}
.main-footer .footer-container {
  max-width: 900px;
  width: 100%;
  margin-left: -57px;
  margin-bottom: -8px;
}
.main-footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
}
.main-footer .footer-links a:hover {
  text-decoration: none;
}
.main-footer .footer-divider {
  border-top: 1px dashed rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  width: 284px;
}
.main-footer .footer-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 18px;
}
.main-footer .footer-icons span {
  display: inline-block;
  width: 38px;
  height: 43px;
  background-image: url("../img/browser-icons.png");
  background-repeat: no-repeat;
  background-size: auto 36px;
  opacity: 1;
}
.main-footer .footer-icons span:hover {
  opacity: 1;
  cursor: pointer;
}
.main-footer .footer-icons .icon-explorer {
  background-position: 1px 0;
}
.main-footer .footer-icons .icon-firefox {
  background-position: -36px 0;
}
.main-footer .footer-icons .icon-chrome {
  background-position: -73px 0;
}
.main-footer .footer-icons .icon-opera {
  background-position: -110px 0;
}
.main-footer .footer-icons .icon-facebook {
  background-position: -147px 0;
}

.contact-header {
  background: #fff;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e0e8f0;
}
.contact-header .header-icon img {
  width: 30px;
  height: 30px;
}
.contact-header h1 {
  font-size: 1.2rem;
  color: #2b7cd3;
  font-weight: normal;
}

.contact-section {
  padding: 40px;
  background: #fff;
}
.contact-section .contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}
.contact-section .contact-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.contact-section .contact-info .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 20px;
  padding: 10px 0;
}
.contact-section .contact-info .info-item .info-icon {
  font-size: 1.2rem;
  margin-right: 12px;
  min-width: 24px;
}
.contact-section .contact-info .info-item .info-content .label {
  color: #333;
  width: 125px;
  font-size: 15px;
  margin-top: 1px;
  margin-left: 3px;
}
.contact-section .contact-info .info-item .info-content .link {
  color: #2b7cd3;
  word-break: break-all;
}
.contact-section .contact-info .info-item .info-content .link.assist {
  display: inline-block;
  background: #2b7cd3;
  color: #fff;
  padding: 6px 20px;
  border-radius: 4px;
  margin-top: 4px;
}
.contact-section .contact-info .info-item .info-content .link.assist:hover {
  background: #abc7e4;
}
.contact-section .contact-info .info-item .info-content .value {
  color: #2b7cd3;
  font-weight: bold;
}
.contact-section .contact-info .info-item .info-content .highlight {
  color: #2b7cd3;
  font-weight: bold;
}
.contact-section .contact-info .info-item .info-content .note {
  color: #666;
  font-size: 0.85rem;
  margin-top: 4px;
}
.contact-section .contact-qrcodes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.contact-section .contact-qrcodes .qrcode-item {
  text-align: center;
}
.contact-section .contact-qrcodes .qrcode-item img {
  width: 140px;
  height: 140px;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  padding: 8px;
}
.contact-section .contact-qrcodes .qrcode-item .qrcode-label {
  color: #333;
  font-size: 0.9rem;
}

.agreement-section {
  padding-top: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, #fff), to(transparent));
  background: linear-gradient(to bottom, #fff 70%, transparent 100%);
  position: relative;
  margin-top: 70px;
  z-index: 1;
  overflow: hidden;
  font-family: "Microsoft YaHei", Tahoma, "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.agreement-section > img {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  min-width: 950px;
  min-height: 285px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
  z-index: -1;
}
.agreement-section .agreement-container {
  max-width: 950px;
  margin: 0 auto 114px;
  padding: 225px 5px 0;
}
.agreement-section .agreement-container h2 {
  font-weight: 800;
  font-size: 40px;
  color: #666666;
  padding-bottom: 2px;
  position: relative;
}
.agreement-section .agreement-container h2::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f4f4f4;
}
.agreement-section .agreement-container h2::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 164px;
  height: 4px;
  background: #aacdf4;
  z-index: 1;
}
.agreement-section .agreement-container .agreement-content h3 {
  color: #666666;
  margin: 29px 0 58px;
  font-size: 24px;
}
.agreement-section .agreement-container .agreement-content ol {
  padding-left: 35px;
  color: #333;
}
.agreement-section .agreement-container .agreement-content ol li {
  color: black;
  font-size: 18px;
  line-height: 1.4;
  margin: -57px 0 12px -10px;
  position: relative;
  padding: 35px 0;
}

.agreement-section + .display-castle {
  background: url("../img/foot_bj.jpg") center calc(100% + 17px) no-repeat;
  background-size: 100%;
  height: 867px;
  position: relative;
  margin-top: -488px;
}
.agreement-section + .display-castle .paradise-number {
  bottom: -55px;
  z-index: 50;
}
.agreement-section + .display-castle .main-footer {
  min-height: 430px;
}

@media screen and (max-width: 768px) {
  .agreement-section {
    padding-top: 0;
    margin-top: 0;
  }
  .agreement-section .agreement-container {
    max-width: 950px;
    margin: 0 auto -5px;
    padding: 225px 15px 0;
  }
  .agreement-section .agreement-container h2 {
    font-size: 22px;
    padding-bottom: 8px;
    margin-bottom: 15px;
  }
  .agreement-section .agreement-container .agreement-content h3 {
    font-size: 16px;
    margin: 15px 0 10px;
  }
  .agreement-section .agreement-container .agreement-content ol {
    padding-left: 20px;
  }
  .agreement-section .agreement-container .agreement-content ol li {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 8px 0;
    padding: 0;
  }
  .agreement-section + .display-castle {
    background: url("../img/foot_bj.jpg") center 100% no-repeat;
    background-size: 148%;
  }
  .agreement-section + .display-castle .paradise-number img {
    width: 180px;
    height: auto;
  }
}
.register-section {
  padding: 40px 20px;
  background: #f5f8fc;
  min-height: calc(100vh - 200px);
}
.register-section .register-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.register-section .register-container h2 {
  color: #2b7cd3;
  font-size: 1.6rem;
  margin-bottom: 30px;
  text-align: center;
}
.register-section .register-form .form-group {
  margin-bottom: 16px;
}
.register-section .register-form .form-group label {
  display: block;
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 6px;
  font-weight: 500;
}
.register-section .register-form .form-group input {
  width: 100%;
  height: 40px;
  border: 1px solid #e0e8f0;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 0.9rem;
  -webkit-transition: border-color 200ms ease;
  transition: border-color 200ms ease;
}
.register-section .register-form .form-group input:focus {
  outline: none;
  border-color: #2b7cd3;
}
.register-section .register-form .form-group input::-webkit-input-placeholder {
  color: #bbb;
}
.register-section .register-form .form-group input::-moz-placeholder {
  color: #bbb;
}
.register-section .register-form .form-group input:-ms-input-placeholder {
  color: #bbb;
}
.register-section .register-form .form-group input::-ms-input-placeholder {
  color: #bbb;
}
.register-section .register-form .form-group input::placeholder {
  color: #bbb;
}
.register-section .register-form .form-group.verify-group .verify-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.register-section .register-form .form-group.verify-group .verify-wrapper input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.register-section .register-form .form-group.verify-group .verify-wrapper .verify-code {
  height: 40px;
  width: 100px;
  border-radius: 6px;
  cursor: pointer;
}
.register-section .register-form .form-actions {
  margin-top: 24px;
  text-align: center;
}
.register-section .register-form .form-actions .btn-submit {
  background: url("../img/footerbg.jpg") repeat-x bottom;
  background-color: #0a6abf;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 60px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}
.register-section .register-form .form-actions .btn-submit:hover {
  opacity: 0.9;
}
.register-section .register-form .form-actions .btn-submit:active {
  opacity: 0.8;
}

.aff-info {
  position: relative;
  margin-top: -300px;
  z-index: 5;
  padding: 50px 0 12px;
  font-family: "Microsoft YaHei", Tahoma;
}
.aff-info .aff-info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
.aff-info .aff-info-container h2 {
  color: #565656;
  font-size: 40px;
  font-weight: 900;
  text-align: center;
}
.aff-info .aff-info-container .subtitle {
  text-align: center;
  color: #565656;
  font-size: 18px;
  margin-bottom: 33px;
}
.aff-info .aff-info-container .aff-list {
  padding-left: 153px;
}
.aff-info .aff-info-container .aff-list p {
  color: #565656;
  line-height: 41px;
  font-size: 17px;
  font-weight: 900;
}
.aff-info .aff-info-container .aff-welcome {
  margin-top: 28px;
  text-align: center;
}
.aff-info .aff-info-container .aff-welcome p {
  color: black;
  font-size: 18px;
  line-height: 1.8;
}

.display-castle {
  position: relative;
  background: url("../img/foot_bj.jpg") center bottom no-repeat;
  background-size: cover;
  padding: 0 80px 60px 80px;
  color: black;
  min-height: 530px;
  margin-top: -341px;
  padding-top: 350px;
  z-index: 0;
}

.contact-detail {
  position: relative;
  z-index: 1;
  border-top: 4px solid #aacdf4;
  padding: 28px 0 0 31px;
  color: black;
  margin-top: 1px;
}
.contact-detail .contact-detail-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: #2b7cd3;
  font-size: 16px;
  margin-bottom: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.contact-detail span {
  margin-top: 3px;
  margin-left: -2.5px;
  font-family: "Microsoft YaHei", Tahoma, "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1d68bb;
}
.contact-detail .contact-detail-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 8px 0;
}
.contact-detail .contact-detail-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 50%;
}
.contact-detail .contact-detail-info .info-row {
  margin-bottom: 20px;
  font-size: 16px;
  font-family: "Microsoft YaHei", Tahoma, "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.contact-detail .contact-detail-info .info-row .icon {
  margin-right: 5px;
  display: inline-block;
  width: 21px;
  height: 21px;
  vertical-align: middle;
  background-image: url("../img/icon.png");
  background-repeat: no-repeat;
  background-position: -116px 60%;
}
.contact-detail .contact-detail-info .info-row .icon-kefu {
  background-image: url("../img/kefu68_icon.png");
  background-position: 0;
  background-size: auto 16px;
  margin-top: -4px;
  margin-left: 3px;
  margin-right: -6px;
}
.contact-detail .contact-detail-info .info-row .icon-wechat {
  background-size: auto 30px;
  margin-right: -2px;
  margin-top: -6px;
}
.contact-detail .contact-detail-info .info-row .icon-clock {
  background-size: auto 44px;
  margin-right: -2px;
  margin-left: 1px;
}
.contact-detail .contact-detail-info .info-row .icon-phone {
  background-size: auto 36px;
  margin-left: 1px;
  margin-right: -1px;
}
.contact-detail .contact-detail-info .info-row div {
  display: inline-block;
}
.contact-detail .contact-detail-info .info-row .label {
  display: inline-block;
  min-width: 121px;
  font-size: 15px;
  color: black;
  margin-top: 2px;
}
.contact-detail .contact-detail-info .info-row .wechat {
  min-width: 119px;
}
.contact-detail .contact-detail-info .info-row .link {
  color: #1d68bb;
  word-break: break-all;
}
.contact-detail .contact-detail-info .info-row .value {
  color: #1d68bb;
  display: contents;
  word-break: break-word;
}
.contact-detail .contact-detail-info .info-row .highlight {
  color: #1d68bb;
}
.contact-detail .contact-detail-info .info-row.note {
  color: black;
  font-size: 12px;
  margin-top: -22px;
  margin-left: 5px;
}
.contact-detail .contact-detail-info .kefu-row {
  margin-bottom: 28px;
  margin-top: -22px;
}
.contact-detail .contact-detail-qrcodes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 41px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.contact-detail .contact-detail-qrcodes .qrcode-item {
  text-align: center;
  min-width: 140px;
  min-height: 170px;
}
.contact-detail .contact-detail-qrcodes .qrcode-item img {
  display: block;
  width: 160px;
  min-height: 160px;
  margin: 0 auto;
}
.contact-detail .contact-detail-qrcodes .qrcode-item .qrcode-label {
  text-align: center;
  font-weight: bolder;
  font-size: large;
  margin: 10px auto;
  line-height: normal;
}
.contact-detail .contact-detail-qrcodes .wechat {
  margin-left: 32px;
}
.contact-detail .contact-detail-qrcodes .kefu {
  margin-right: 43px;
}

.slogan-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 50px 19px 0;
  max-width: 900px;
  margin: 0 auto -15px;
}

.paradise-number {
  position: absolute;
  z-index: 110;
  right: 0;
  bottom: -54px;
}
.paradise-number img {
  width: 330px;
  height: 195px;
}

@media screen and (max-width: 820px) {
  .main-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
  }
  .main-header .header-container {
    padding: 0 10px;
  }
  .main-header .logo {
    padding: 8px 0;
  }
  .main-header .logo img {
    height: 25px;
  }
  .main-header .logo .title-img img {
    height: 15px;
    width: auto;
  }
  .main-header .nav-links a {
    font-size: 12px;
    padding: 5px 10px 0;
  }
  .main-footer {
    padding: 30px 15px 30px 50px;
  }
  .main-footer .footer-links {
    gap: 15px;
  }
  .main-footer .footer-links span, .main-footer .footer-links a {
    font-size: 12px;
  }
  .paradise-number img {
    width: 180px;
    height: auto;
  }
  .sidebar-qr {
    right: 5px;
    top: 80px;
  }
  .sidebar-qr .sidebar-close {
    top: 2px;
    right: 5px;
    width: 50px;
    height: 18px;
  }
  .sidebar-qr .sidebar-content .qr-frame .qr-bg {
    width: 130px;
    height: auto;
  }
  .sidebar-qr .sidebar-content .qr-frame .qr-code {
    width: 56%;
    bottom: 33%;
  }
  .aff-info {
    margin-top: -30vw;
    padding: 20px 0;
  }
  .aff-info .aff-info-container {
    padding: 0 15px;
  }
  .aff-info .aff-info-container h2 {
    font-size: 22px;
  }
  .aff-info .aff-info-container .subtitle {
    font-size: 14px;
  }
  .aff-info .aff-info-container .aff-list {
    padding-left: 15px;
  }
  .aff-info .aff-info-container .aff-list p {
    font-size: 14px;
    line-height: 2;
  }
  .aff-info .aff-info-container .aff-welcome {
    padding-left: 0;
  }
  .aff-info .aff-info-container .aff-welcome p {
    font-size: 14px;
  }
  .hero-banner .hero-image img {
    width: 100%;
    min-width: 0;
    height: auto;
    display: block;
  }
  .display-castle {
    margin-top: 0;
    padding: 20px 15px 0 15px;
    padding-top: 20px;
    min-height: 250px;
    background-size: cover;
    background-position: center;
  }
  .contact-detail {
    padding: 20px 15px 0 15px;
    min-height: auto;
    z-index: auto;
  }
  .contact-detail .contact-detail-header {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .contact-detail .contact-detail-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contact-detail .contact-detail-info {
    width: 100%;
  }
  .contact-detail .contact-detail-info .info-row {
    font-size: 13px;
  }
  .contact-detail .contact-detail-info .info-row .label {
    min-width: 100px;
    font-size: 13px;
  }
  .contact-detail .contact-detail-qrcodes {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 20px;
    gap: 30px;
  }
  .slogan-section {
    padding: 30px 15px;
  }
  .agreement-section {
    padding-top: 0;
    margin-top: -2px;
  }
}
@media (min-width: 1000px) {
  .aff-info {
    margin-top: -29.2vw;
  }
  .hero-banner .hero-image {
    width: 100%;
    line-height: 0;
  }
  .hero-banner .hero-image img {
    width: 100%;
    min-width: 0;
    height: auto;
    display: block;
  }
}
/*# sourceMappingURL=../maps/main.css.map */
