@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:100,300,400,500,700&display=swap&subset=chinese-traditional");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+TC:300,400,500,600,700,900&display=swap&subset=chinese-traditional");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: #f7b52c;
  color: #fff;
}

::-moz-selection {
  background-color: #f7b52c;
  color: #fff;
}

body {
  background-color: #fff;
  font-family: "Noto Sans TC", sans-serif;
}

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

a {
  outline: none;
  text-decoration: none;
}

p {
  color: #6e6e6e;
  font-size: 16px;
  line-height: 26px;
}

button {
  padding: 0;
  cursor: pointer;
  opacity: 0.9;
}
button:hover {
  opacity: 1;
}

.outerWrap {
  background: url(../images/bg.png) right bottom no-repeat #eff0f2;
  background-size: auto;
  min-height: 900px;
}

.banner {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.banner a {
  position: absolute;
  bottom: 12%;
  width: 230px;
  height: 67px;
  left: calc(50% - 250px);
}
.banner a:nth-of-type(2) {
  left: calc(50% + 10px);
}
.banner a:hover {
  transition: all 0.5s ease 0s;
  bottom: 14%;
}
@media screen and (max-width: 1320px) {
  .banner a {
    left: calc(50% - 230px);
  }
  .banner a:nth-of-type(2) {
    left: calc(50% + 10px);
  }
}
@media screen and (max-width: 1060px) {
  .banner a {
    width: 160px;
    height: 47px;
    left: calc(50% - 170px);
  }
  .banner a:nth-of-type(2) {
    left: calc(50% + 10px);
  }
}
@media screen and (max-width: 530px) {
  .banner a {
    width: 120px;
    height: 35px;
    left: calc(50% - 130px);
  }
  .banner a:nth-of-type(2) {
    left: calc(50% + 5px);
  }
}

.main {
  padding: 1em 3%;
  text-align: center;
}

.footer {
  font-size: 14px;
  text-align: center;
  background-color: #3d0108;
  color: #fff;
  padding: 1em 3%;
}