/* Header（页眉）*/
.Header {
  min-width: 1280px;
  background: linear-gradient(-45deg,#e0ecf8,#f3f7fb);
  box-shadow: -3px -3px 10px rgba(255,255,255,.58),3px 3px 10px rgba(166,182,195,.72);
}

.HeaderBox {
  width: 1280px;
  height: 110px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .3s linear;
}

.WebLogo {
  width: 160px;
}

.WebLogo img {
  height: 80px;
}

.HeaderNavBox {
  width: 700px;
  height: 70px;
  padding: 15px 0;
  position: relative;
  overflow: hidden;
  transition: .3s linear;
}

.HeaderNavBox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 1px;
  height: calc(100% - 20px);
  background: #ccc;
}

.NavMenu {
  float: left;
  margin: 20px 8px;
  padding: 5px 8px;
  font-size: 19px;
  line-height: 18px;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  transition: .2s ease,background-color .3s,color .3s;
}

.NavMenu a {
  color: inherit;
}

.HeaderMore {
  width: 28px;
  height: 28px;
}

.HeaderMore input {
  display: none;
}

.HeaderMore label {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E4EBF5;
  border-radius: 5px;
  box-shadow: 3px 3px 6px #c8d0e7,-2px -2px 5px #fff;
  cursor: pointer;
}

.Arrow {
  font-size: 20px;
  font-weight: bold;
  color: #9baacf;
  text-align: center;
  transition: .3s ease;
}

.Arrow::before {
  content: "V";
}

.HeaderMore label:hover .Arrow {
  color: #000;
}

.HeaderMore input:checked~label {
  box-shadow: inset 2px 2px 5px #c8d0e7,inset -2px -2px 5px #fff;
}

.HeaderMore input:checked~label .Arrow {
  color: #000;
  transform: rotate(-180deg);
}

.SearchBox {
  position: relative;
  display: flex;
  align-items: center;
}

.SearchIcon {
  position: absolute;
  left: 12px;
}

.Search {
  width: 350px;
  height: 40px;
  padding: 0 20px 0 40px;
  border: 3px solid transparent;
  border-radius: 40px;
  color: #6C7587;
  background: #EBECF0;
  box-shadow: inset -4px -4px 6px -1px #fff,inset 2px 2px 8px -1px rgba(72,79,96,.5);
  outline: none;
  transition: .25s ease-in-out;
  box-sizing: border-box;
}

.Search::placeholder {
  color: #6C7587;
}

.NavMenu.on,.NavMenu:hover {
  background: #0099e5;
  color: #fff;
}

.Search:focus {
  border-color: rgba(255,255,255,.5);
  box-shadow: none;
}

#Header.autoH .HeaderBox {
  height: 250px;
}

#Header.autoH .HeaderNavBox {
  height: 210px;
}

/* Footer（页脚） */
.FooterWave svg {
  display: block;
  width: 100%;
  min-width: 1280px;
  height: 40px;
  margin: 0;
}

.FooterBox {
  width: 100%;
  min-width: 1280px;
  padding: 30px 0;
  background: #22292d;
}

.AboutUs,
.RecordNumber,
.Technical,
.Copyright,
.SSL {
  width: 1280px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b3c0ce;
  font-size: 18px;
}

.RecordNumber img {
  margin-right: 8px;
}

.AboutUs a,
.RecordNumber a,
.Technical a,
.Copyright a {
  color: inherit;
}

.AboutUs a:hover,
.RecordNumber a:hover,
.Technical a:hover {
  color: #fff;
}

.WaveParallax>use {
  animation: WaveMove 12s linear infinite;
}

.WaveParallax>use:nth-child(1) {
  animation-delay: -2s;
}

.WaveParallax>use:nth-child(2) {
  animation-delay: -2s;
  animation-duration: 5s;
}

.WaveParallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 3s;
}

@keyframes WaveMove {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}