<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.flex {
    display: flex;
}
.flex.column {
    flex-direction: column;
}
.flex.aic {
    align-items: center;
}
.flex.jsc {
    justify-content: center;
}
.flex.jsa {
    justify-content: space-around;
}
.flex.jsb {
    justify-content: space-between;
}
.flex.wrap {
    flex-wrap: wrap;
}
.header{
    width: 100%;
    height:80px;
    background: #1d1d1e;
}

.header-main {
    width: 1398px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    text-align: left;
    align-items: center;

  
  }
.header-main p {
    color: #fff;
    font-size: 23px;
    font-style: normal;
    font-weight: 380;
    line-height: normal;
    margin-left:40px;
  }

 .header-logo {
    position: relative;
  }
  .header-logo img{
    width: 200px;
  }

.header-logo::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    display: block;
    content: "";
    width: 1px;
    height: 28px;
    background: #b6b6b6;
    opacity: 0.6;
  }

  .footer{
    width: 100%;
    background: #050505;
    padding: 20px 0;
    box-sizing: border-box;
  }

  .footer p {
    color: #666;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 330;
    line-height: normal;
  }
  .footer .footer-main{
    width: 1200px;
    margin: 0 auto;
  }
  .footer .footer-nav{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    color:#9c9c9c;
    font-family: "MiSans VF";
    font-size: 14px;
    font-style: normal;
    font-weight: 330;
    line-height: 16px; /* 133.333% */
  }
  .footer .footer-nav li{
    margin-right: 20px;
    margin-bottom: 10px;
  }
  .footer .footer-nav a{
    color:#9c9c9c;
  }
  .footer .footer-friendlink{
  color: #9c9c9c;
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
 }</pre></body></html>