@import url('../../common/css/landingPage.css');
@font-face {
  font-family: "OpenSans-Bold";
  src: url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-SemiBold";
  src: url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-Medium";
  src: url("../fonts/OpenSans-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Otomanopee One";
  src: url("../fonts/OtomanopeeOne-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "OpenSans-Medium";
  box-sizing: border-box;
}
body, html {
  overflow-x: hidden;
}
.landingPage {
  overflow-x: hidden;
  width: 100%;
}
.landingPage .banner {
  background: url("../img/pcBanner.webp") no-repeat center;
  background-size: cover;
  width: 100%;
  padding-bottom: 43.125%;
  position: relative;
}
.landingPage .banner .logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
}
.landingPage .banner .logo img {
  height: 60px;
  width: auto;
}
.landingPage .banner .bannerContent {
  justify-content: center;
  align-items: center;
  width: max-content;
  color: white;
  position: absolute;
  top: 50%;
  display: flex;
  flex-direction: column;
  left: 50%;
  transform: translate(-50%, -50%);
}
.landingPage .banner .bannerContent .title {
  font-size: 50px;
  text-align: center;
  font-family: "Otomanopee One";
  color: #ffffff;
  line-height: 1.2;
}
.landingPage .banner .bannerContent .banner_tips {
  font-family: "OpenSans-Medium";
  color: rgba(255, 255, 255, 0.7);
  font-size: 36px;
  text-align: center;
  margin-top: 20px;
}
.landingPage .banner .bannerContent .registerBtn {
  margin-top: 40px;
}
.landingPage .banner .bannerContent .registerBtn a {
  background: #ffffff;
  border-radius: 26px;
  padding: 13px 40px;
  color: rgba(15, 15, 15, 0.7);
  font-family: "OpenSans-Medium";
  text-decoration: none;
  display: inline-block;
}
.landingPage .feature-bar {
  background: #11100d;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #fff;
  font-family: "OpenSans-Medium";
  padding: 72px 250px 91px;
}
.landingPage .feature-bar .icon {
  color: #ffffff;
  margin-bottom: 40px;
  width: 40px;
  height: 40px;
}
.landingPage .feature-bar > div {
  text-align: center;
}
.landingPage .landingPageDetail {
  padding-bottom: 80px;
}
.landingPage .landingPageDetail h3 {
    font-size: 22px;
}
.landingPage .landingPageDetail .content {
  background: #fcfbf9;
  width: 1120px;
  margin: 0 auto;
  padding: 40px;
  padding-bottom: 40px;
}
.landingPage .tabBar {
  width: 1120px;
  margin: 40px auto;
}
.landingPage .tabBar a {
  color: black;
  text-decoration: none;
}
.landingPage .footer {
  background: #291524;
  width: 100%;
  padding: 40px 0;
}
.landingPage .footer_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #ffffff;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.landingPage .footer_content .footer_logo {
  flex-shrink: 0;
  margin-right: 60px;
}
.landingPage .footer_content .footer_logo img {
  height: 60px;
  width: auto;
}
.landingPage .footer_links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 60px;
  flex: 1;
}
.landingPage .footer_links > div {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}
.landingPage .footer_links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.landingPage .footer_links a:hover {
  color: #ffffff;
}

/* Responsive Design */
@media screen and (max-width: 1500px) {
  .landingPage .footer_content {
    margin-right: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .landingPage .banner .bannerContent .title {
    font-size: 58px;
  }
  .landingPage .banner .bannerContent .banner_tips {
    font-size: 30px;
  }
  .landingPage .feature-bar {
    padding: 72px 110px 91px;
  }
  .landingPage .footer_content {
    padding: 0 20px;
  }
  .landingPage .footer_content .footer_logo {
    margin-right: 40px;
  }
  .landingPage .footer_content .footer_logo img {
    height: 50px;
  }
  .landingPage .footer_links {
    gap: 15px 40px;
  }
  .landingPage .footer_links > div {
    font-size: 14px;
  }
  .landingPage .tabBar {
    width: 900px;
  }
  .landingPage .landingPageDetail .content {
    width: 900px;
  }
}
@media screen and (max-width: 950px) {
  .landingPage .tabBar {
    width: 750px;
  }
  .landingPage .landingPageDetail .content {
    width: 750px;
  }
}

/* Mobile Design */
@media (max-width: 768px) {
  .landingPage .banner {
    background: url("../img/mobileBanner.webp");
    background-size: cover;
    padding-bottom: 170.67%;
  }
  .landingPage .banner .logo {
    top: 20px;
    left: 20px;
  }
  .landingPage .banner .logo img {
    height: 40px;
  }
  .landingPage .banner .bannerContent .title {
    line-height: 120px;
  }
  .landingPage .banner .bannerContent .banner_tips {
    font-size: 30px;
    max-width: 90%;
    text-align: center;
  }

  .landingPage .feature-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 34px;
    padding: 72px 50px 91px;
    justify-items: center;
  }
  .landingPage .feature-bar > div {
    max-width: 101px;
  }
  .landingPage .feature-bar .icon {
    width: 60px;
    height: 52px;
    margin-bottom: 12px;
  }
  .landingPage .tabBar {
    display: none;
  }
  .landingPage .landingPageDetail {
    padding: 10px 2px;
  }
  .landingPage .landingPageDetail .content {
    width: 100%;
    padding: 20px;
    background-color: transparent;
  }
  .landingPage .footer_content {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  .landingPage .footer_content .footer_logo {
    margin-bottom: 30px;
    margin-right: 0;
  }
  .landingPage .footer_content .footer_logo img {
    height: 40px;
  }
  .landingPage .footer_links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .landingPage .footer_links > div {
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 660px) {
  .landingPage .banner .bannerContent .title {
    font-size: 40px;
    line-height: 1.2;
    max-width: 90%;
    margin-top: 30px;
  }
}
@media (max-width: 490px) {
  .landingPage .banner .bannerContent .title {
    line-height: 60px;
    font-size: 30px;
    width: auto;
    max-width: 45%;
  }
  .landingPage .banner .bannerContent .banner_tips {
    font-size: 16px;
  }
  .landingPage .footer_content > div {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .landingPage .banner .bannerContent .banner_tips {
    font-size: 16px;
    width: 45%;
  }
  .landingPage .feature-bar {
    padding: 72px 10px 91px;
  }
}

.landingPage .topCityList ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  padding: 0;
}
.landingStates .topCityList li a {
  text-decoration: none;
}

.landingStates li:hover {
  text-decoration: underline;
}