<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
  }
  .container {
    width: 375px;
    margin: auto;
  }
  .container img {
    width: 100%;
    display: block;
  }
  .container .header {
    width: 375px;
    height: 70px;
    position: fixed;
    background-color: #d7fff5  ;
    display: flex;
  }
  .container .header .leftPart {
    width: 70px;
    height: 100%;
    margin-left:7px;
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
   .container .header .leftPart .x7Icon {
    width: 57px;
    height: 57px;
   }
  .container .header .centerPart {
    flex:1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .container .header .centerPart .x7Title {
    height: 22px;
    width: auto;
  }
  .container .header .centerPart .tagList {
    display: flex;
    margin-top: 7px;
  }
  .container .header .centerPart .tagList .tag {
    height: 13px;
    margin-right: 6px;
  }
  .container .header .rightPart {
    margin-right: 13px;
    display: flex;
    align-items: center;
  }
  .container .header .rightPart .downloadButton {
    width: 74px;
    height: 30px;
    background: linear-gradient(90deg, #06CBAC, #00C977);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #FFFFFF;
    cursor: pointer;
    span{
      margin-top: 0px;
    }
  }
  .qrCodePopup {
    position: fixed;
    width: 375px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s;
    left: 10000px;
  }
  .qrCodePopup .container {
    width: 315px;
    height: 398px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .qrCodePopup .container .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .qrCodePopup .container .closeIcon {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 20px;
    right: 13px;
    cursor: pointer;
  }
  .qrCodePopup .container .title {
    margin-top: 25px;
    line-height: 18px;
    font-size: 19px;
    text-align: center;
    color: #79797b;
  }
  .qrCodePopup .container .qrCodeBox {
    width: 273px;
    height: 274px;
    margin: 13px auto;
    border-radius: 4px;
    overflow: hidden;
  }
  .qrCodePopup .container .describe {
    font-size: 15px;
    color: #3c3c3d;
    line-height: 18px;
    text-align: center;
    width: 240px;
    margin: 0 auto;
  }</pre></body></html>