html {
  scroll-padding-top: 82px;
}

body {
  min-width: 1200px;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  /* cursor pointer tap color */
  -webkit-tap-highlight-color: transparent;
}

main {
  margin-top: -82px;
}

/* box sizing */
.bsbb {
  box-sizing: border-box;
}

/* pointer-events */
.pen {
  pointer-events: none;
}

.cp {
  cursor: pointer;
}

.lsn {
  list-style: none;
}

.pr {
  position: relative;
}

/* display */
.db {
  display: block;
}

.df {
  display: flex;
}

.dn {
  display: none;
}

/* flex */
.f1 {
  flex: 1;
}

.fww {
  flex-wrap: wrap;
}

.aic {
  align-items: center;
}

.aifs {
  align-items: flex-start;
}

.jcsb {
  justify-content: space-between;
}

/* margin */
.m0 {
  margin: 0;
}

.mla {
  margin-left: auto;
}

.mra {
  margin-right: auto;
}

/* text align */
.tac {
  text-align: center;
}

/* text decoration */
.tdn {
  text-decoration: none;
}

:focus {
  outline: none;
}

em {
  color: #c89c46;
  font-style: normal;
}

/* overflow */
.oh {
  overflow: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

/* overlay */
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, .3);
  overflow: auto;
}

input[type="search"] {
  appearance: none;
}

.animation-loading {
  animation: loading 1s linear infinite;
}

@keyframes loading {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.top-bg {
  position: relative;
  height: 400px;
  line-height: 400px;
  font-size: 60px;
  text-align: center;
  color: #fff;
}

.top-bg::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
}

h2 {
  margin: 0;
  font-size: 32px;
  line-height: 38px;
}

a.more {
  color: #264F9F;
  font-size: 18px;
  line-height: 21px;
  text-decoration: none;
  cursor: pointer;
}

a.more .icon-arrow-right {
  font-weight: bold;
  font-size: 18px;
}