@font-face {
  font-family: "Poppins";
  src: url("./font/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins Semibold";
  src: url("./font/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins ExtraBold";
  src: url("./font/Poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Noto";
  src: url("./font/NotoSans-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
}

header {
  max-width: 900px;
  width: 100%;
  height: 60px;
  border-radius: 15px;
  background-color: #b7b7b7;
  opacity: 0.5;
  margin: auto;
  align-content: center;
  position: absolute;
  z-index: 99;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 1024px) {
  header {
    max-width: calc(100% - 80px);
  }
}
@media screen and (max-width: 499px) {
  header {
    max-width: calc(100% - 20px);
    height: 50px;
  }
}
header ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  justify-content: center;
  align-self: center;
}
header ul li {
  font-size: 24px;
  font-family: "Poppins Semibold";
  text-shadow: 2px 0 #000, 2px 0 #000, 0 2px #000, 0 2px #000, 6px 8px 6px rgba(112, 92, 83, 0.5);
  animation: scaleText 2s infinite;
  transition: all 0.1s ease-in-out;
}
@media screen and (max-width: 1024px) {
  header ul li {
    font-size: 14px;
  }
}
header ul li:not(:first-child):not(:last-child) {
  margin: 0 180px;
}
@media screen and (max-width: 1024px) {
  header ul li:not(:first-child):not(:last-child) {
    margin: 0 80px;
  }
}
@media screen and (max-width: 499px) {
  header ul li:not(:first-child):not(:last-child) {
    margin: 0 15px;
  }
}
header ul li a {
  text-decoration: none;
  color: #f5f5f7;
}
header ul li a:hover {
  color: #705C53;
  font-family: "Poppins ExtraBold";
  animation: scaleHoverText 1.9s infinite;
  transition: all 0.1s ease-in-out;
}

@keyframes scaleText {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scaleHoverText {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.tj-banner {
  width: 100%;
  height: 100vh;
  background-image: url("./images/banner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.tj-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .tj-row {
    flex-direction: column;
  }
}

.tj-col-2 {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .tj-col-2 {
    width: 100%;
  }
}

.tj-container {
  padding: 100px 50px;
}
@media screen and (max-width: 1024px) {
  .tj-container {
    padding: 88px 20px;
  }
}
@media screen and (max-width: 499px) {
  .tj-container {
    padding: 55px 20px;
  }
}

.tj-intro {
  background-color: #F5F5F7;
}
.tj-intro img {
  max-width: 500px;
  height: 500px;
  width: 100%;
}
@media screen and (max-width: 1240px) {
  .tj-intro img {
    max-width: 400px;
    height: 400px;
  }
}
@media screen and (max-width: 499px) {
  .tj-intro img {
    max-width: 300px;
    height: 300px;
  }
}
.tj-intro p {
  font-size: 24px;
  line-height: 42px;
  font-family: "Noto";
  margin: 30px 0;
}
@media screen and (max-width: 499px) {
  .tj-intro p {
    font-size: 18px;
  }
}

.tj-place .place {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 555px;
  height: 555px;
  width: 100%;
}
@media screen and (max-width: 1240px) {
  .tj-place .place {
    max-width: 400px;
    height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .tj-place .place {
    margin: 15px 0;
  }
}
@media screen and (max-width: 499px) {
  .tj-place .place {
    max-width: 300px;
    height: 300px;
  }
}
.tj-place .place a {
  font-family: "Noto";
  font-size: 24px;
  color: #F5F5F7;
  opacity: 0;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 499px) {
  .tj-place .place a {
    font-size: 18px;
  }
}
.tj-place .place:hover {
  background-color: #B7B7B7;
  opacity: 0.7;
  cursor: pointer;
}
.tj-place .place:hover a {
  opacity: 1;
}
.tj-place .place-1 {
  background-image: url(./images/dasheng.png);
}
.tj-place .place-2 {
  background-image: url(./images/Rectangle\ 1.png);
}

.justify-center {
  display: flex;
  justify-content: center;
}

.align-self-center {
  align-self: center;
}

.align-items-center {
  align-items: center;
}

.flex-col {
  flex-direction: column;
}

h1, h2, h3, h4 {
  display: none;
}

/*# sourceMappingURL=style.css.map */
