/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #0a0a14;
  color: white;
}

/* Header styles */
header {
  background-color: #07070e;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* max-width: 1200px; */
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a {
  text-decoration: none;
}

.ZLwFii {
  display: flex;
  align-items: center;
}

.ZLwFii img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.EFNgKDg {
  color: #ff8c00;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.EFNgKDg span {
  display: block;
  font-size: 16px;
  text-align: center;
}

nav {
  /*  flex （ul  search-container） */
  display: flex;
  align-items: center;
  /*  */
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

nav ul li a:hover {
  color: #ff8c00;
}

/* Search styles */
.zUWiTph {
  display: flex;
  align-items: center;
  margin-left: 20px;
  /*  */
}

.OSCwhO {
  padding: 8px 15px;
  border: none;
  border-radius: 20px;
  /*  */
  background-color: rgba(255, 255, 255, 0.1);
  /*  */
  color: white;
  font-size: 1em;
  outline: none;
  /*  */
  width: 200px;
  /*  */
  transition: width 0.3s ease-in-out;
  /*  */
}

.OSCwhO::placeholder {
  color: rgba(255, 255, 255, 0.6);
  /*  */
}

.OSCwhO:focus {
  width: 250px;
  /*  */
  background-color: rgba(255, 255, 255, 0.2);
  /*  */
}

.nZFACP {
  padding: 8px 15px;
  /*  */
  border: none;
  border-radius: 5px;
  /*  */
  background-color: transparent;
  /*  */
  color: #ff8c00;
  /*  */
  font-size: 1em;
  margin-left: 10px;
  /*  */
  cursor: pointer;
  transition: color 0.3s ease;
  /*  */
}

.nZFACP:hover {
  color: #e67e00;
  /*  */
  background-color: rgba(255, 140, 0, 0.1);
  /*  */
}

/* Responsive search styles */
@media (max-width: 768px) {
  .zUWiTph {
    margin-left: 0;
    /*  */
    width: 100%;
    /*  */
    justify-content: center;
    /*  */
    margin-top: 10px;
    /*  */
  }

  .OSCwhO {
    width: 80%;
    /*  */
  }

  .OSCwhO:focus {
    width: 90%;
    /*  */
  }
}

.YOQlAcTWSZ {
  display: none;
}

@media (max-width: 768px) {
  nav ul {
    display: none; /*  */
  }

  /*  */
  nav.show {
    display: block; /*  */
    position: fixed; /*  */
    top: 60px; /* ，header */
    left: 0; /*  */
    right: 0; /*  */
    width: 100%; /*  */
    background-color: #fff; /*  */
    border-right: none; /*  */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /*  */
    z-index: 100; /*  */
    height: auto; /*  */
    overflow-y: visible; /*  */
    padding: 15px 20px; /*  */
  }

  nav.show ul {
    display: block; /*  */
    flex-direction: column; /*  */
    list-style: none;
    padding: 0;
    margin: 0;
  }

  nav.show ul li {
    margin: 0; /* margin-left */
    padding: 10px 0; /*  */
    border-bottom: 1px solid #eee; /*  */
  }

  nav.show ul li:last-child {
    border-bottom: none; /*  */
  }

  nav.show ul li a {
    color: #333; /*  */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block; /* li */
  }

  nav.show ul li a:hover {
    color: #ff8c00; /*  */
  }

  /*  */
  nav.show .zUWiTph {
    display: flex; /*  */
    align-items: center;
    padding: 10px 0; /* ， */
    margin-bottom: 10px; /*  */
    border-bottom: 1px solid #eee; /*  */
  }

  nav.show .OSCwhO {
    flex-grow: 1; /*  */
    margin-right: 10px; /*  */
    color: #333; /*  */
    background-color: #f0f0f0; /* ， */
    border: 1px solid #ccc; /*  */
  }

  nav.show .OSCwhO::placeholder {
    color: #777; /*  */
  }

  nav.show .nZFACP {
    flex-shrink: 0; /*  */
    /* ， */
  }
}

@media (max-width: 600px) {
  /*  */
  nav ul {
    display: none; /*  */
  }

  /*  */
  nav.show {
    display: block; /*  */
    position: fixed; /*  */
    top: 70px; /* ，header */
    left: 0; /*  */
    right: 0; /*  */
    width: 100%; /*  */
    background-color: #fff; /* ，header */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /*  */
    z-index: 100; /*  */
    height: auto; /*  */
    overflow-y: visible; /*  */
    padding: 15px 20px; /*  */
  }

  nav.show ul {
    display: block; /*  */
    flex-direction: column; /*  */
    list-style: none;
    padding: 0;
    margin: 0;
  }

  nav.show ul li {
    margin: 0; /* margin-left */
    padding: 10px 0; /*  */
    border-bottom: 1px solid #eee; /*  */
  }

  nav.show ul li:last-child {
    border-bottom: none; /*  */
  }

  nav.show ul li a {
    color: #333; /*  */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block; /* li */
  }

  nav.show ul li a:hover {
    color: #ff8c00; /*  */
  }

  /*  */
  .zUWiTph {
    display: none; /*  */
  }

  body .YOQlAcTWSZ {
    display: block;
    position: static; /* ，flex */
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    margin-left: auto; /*  */
    order: 3; /* flex */
  }

  .ZLwFii {
    order: 1; /* flex */
  }

  .OSCwhO {
    width: 180px; /*  */
    padding: 8px 15px; /*  */
  }

  .OSCwhO:focus {
    width: 220px; /*  */
  }

  .nZFACP {
    padding: 8px 15px; /*  */
    margin-left: 10px; /*  */
    font-size: 1em; /*  */
  }
}



.f_ad {
  width: calc(100% - 30px);
  max-width: 1200px;
  background: #ff8c0087;
  padding: 21px 0;
  margin: 0 auto;
  margin: 0 15px;
  border-radius: 5px;
  color: #fff;
}
.f_ad p {
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}
.f_ad .f_ad_cont {
  width: 100%;
  min-height: 250px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .f_ad {
    width: calc(93% - 30px);
    margin: 0 auto;
  }
}