html {
  overflow: hidden;
}

header.header {
  position: fixed;
}

.header .logo {
  text-decoration: none; font-size: 24px;margin-left: 8px; font-weight: bold;
}

#utility-tools ul {
  margin-bottom: 60px;
}


.error-tips {
  color: red;
  margin: 5px 3px;
  text-align: left;
  display: none;
  width: 80%;
}

a#site_title {
  color: #000;
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
}

div.header-right {
  justify-content: end;
  display: flex;
  align-items: center;
  text-align: right;

  pointer-events: none;
  margin-right: 8px;
}
div.header-right:hover {
  color: var(--color-blue2);
}

div.header-right > * {
  pointer-events: auto;
  cursor: pointer;
}

div.header-right span {
  margin: 0 6px;
  cursor: pointer;
}

.container {
  flex: 1;
  width: 1280px;
  margin: 0 auto;
  border: 0;
}

.container a {
  text-decoration: none;
}

 
#top_menus {
  flex: 1.5;
}

#top_menus a {
  display: flex;
  align-items: center;
}

html[lang] #top_menus a {
  font-weight: 500;
}

#top_menus a svg {
  width: 22px;
  height: 22px;
  color: #fff;
  margin-right: 8px;
}

html[lang] #top_menus a svg {
  color: #36baf1;
}

.section {
  padding: 8px;
  margin-bottom: 32px;
}

.section h2 {
  margin: 0;
  padding-bottom: 24px;
  font-weight: bold;
  border-bottom: 1px dashed #ddd;
}

.sub-title div {
  height: 16px;
}


.user-faq {
  text-align: center;
  margin-bottom: 64px;
}


.user-faq h3 {
    font-size: 18px;
    margin-bottom: 16px;
    margin-top: 48px;
    font-weight: bold;
}
 
.user-faq .info  {
  font-size: 16px;
  color: #333;
}


.section {
  width: 600px;
  padding: 48px;
  border-radius: 3px;
  border: 1px solid #000;
  margin: 64px auto;
  text-align: center;
}

img.myIcon {
  margin: 0;

  margin-right: 12px;
}

.section a {
  align-items: center;
  display: flex;
  color: #444;
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 8px;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  background-color: aliceblue;
  text-decoration: none;
}
.section a:hover {
  background-color: #fafafa;
}

.section a span:first-of-type {
  color: #333;
  white-space: break-spaces;
  font-weight: 500;
  font-size: 20px;
}

.section a svg {
  color: var(--color-blue2);
  width: 45px;
  height: 45px;
}

.section a span:nth-of-type(2) {
  line-height: 18px;
  font-size: 14px;
  color: #777;
}

a:target {
  color: red;
}

ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

ul li a span {
  margin-top: 8px;
}

li a {
  text-decoration: none;
  color: #666;
  font-size: 13px;
}

.webinfo {
  font-size: 36px;
  text-align: center;
  margin-bottom: 32px;
  line-height: 36px;
  font-weight: 500;
  margin-top: 96px;
}

.faq {
  font-size: 36px;
  text-align: center;
  margin-bottom: 32px;
  line-height: 36px;
  font-weight: 500;
  margin-top: 96px;
}

.container h2 {
  font-size: 16px;
  text-align: left;
  margin: 5px auto;
  line-height: 12px;
  color: #666;
}
.logoBox {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  gap: 8px;
  border-radius: 3px;
  margin: 0 auto;
  color: red;
  font-weight: normal;

  margin-bottom: 8px;
}

input[type="file"] {
  font-size: 16px;
  width: 80%;
}

.logoBox span {
  font-size: 22px;
}

.homeLogo {
  display: none;
}

@media screen and (orientation: portrait) {

  
  .webinfo {
    margin: 36px 8px;
    line-height: 48px;
  }

  .homeLogo {
    display: block;
  }

  .section ul {
    list-style: none;
    padding-left: 0;
    display: block;
  }

  #top_menus {
    width: 100%;
    display: none;
  }

  #top_menus a {
    flex-direction: column;
  }

  #top_menus a svg {
    margin-bottom: 8px;
  }

  .container {
    width: 100%;
    padding: 0;
    font-size: 16px;
    margin: 8px auto;
    margin-top: 52px;
  }

  .header {
    flex-direction: row;
    align-items: flex-start;
    padding: 2%;
    min-height: 48px;
    width: 98%;
  }

  .header-left {
    margin-left: 0;
  }

  .top_nav span {
    display: none;
  }

  .top_nav span a {
    color: #333;
    text-decoration: none;
    padding: 3px 5px;
    background-color: #eeeeee;
    border-radius: 5px;
    margin: 0 5px;
    font-size: 12px;
  }

  .header-left {
    gap: 0;
    justify-content: space-around;
  }

  .header-left a {
    margin: 3px 10px;
  }

  .header-left.active {
    display: flex;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
    font-size: 14px;
    cursor: pointer;
    display: none;
  }

  .header-right a {
    flex: 1;
    text-align: center;
  }

  .menu-toggle {
    display: block;
    background-color: #444;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }

  .top_nav {
    display: flex;
    justify-content: space-between;
  }

  a#site_title {
    color: #000;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
  }

  .header a.selectable {
    text-decoration: none;
    display: inline-block;
    color: #fff;

    transition: all 0.3s ease;
    font-size: 13px;
    padding: 0;
  }
}



.slogan {
  width: 100vw;
  min-height: 300px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
}

div.s0 {
  background-color: #d0e7f9;
}
div.s1 {
  background-color: #d4f0e4;
}

div.s2 {
  background-color: #fbe4eb;
}

div.s3 {
  background-color: #fbe4eb;
}

.slogan .title {
  font-size: 36px;
}

div.detail {
  width: 680px;
  margin-left: 16px;
}

div.detail ul {
  margin-top: 8px;
}

div.detail ul li {
  margin-top: 8px;
}

@media screen and (orientation: portrait) {



 

  .section {
    display: flex;
    flex-direction: column;
     width: 90%;
    margin: 3% auto;
    padding: 3%;
  }

  .container h2 {
    padding: 16px;
    margin: 8px;
    line-height: 24px;
  }

 .user-faq .info {
    line-height: 24px;
    padding:0 16px;
  }

  .section a {
    display: block;
    padding: 16px;
  }

  .section a img {
    float: left;
  }

  .section a svg {
    float: left;
  }

  .section a span {
    display: block; 
    padding-left: 68px;
    margin: 3px;
  }

  .slogan {
    flex-direction: column;
  }

  .slogan .icon {
    margin-bottom: 16px;
    width: 96px;
    height: 96px;
  }

  .slogan .title {
    text-align: center;
    font-size: 24px;
  }

   div.detail   {
    width: 90%;
   }

  div.detail ul li {
    line-height: 16px;
    font-size: 14px;
    text-align: center;
 
  }

  div.detail {
    margin-left: 0;
  }
}

@media screen and (max-width: 360px) and (orientation: portrait) {
  
  div.detail ul li {
    font-size: 13px;
  }
}

 