* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: #111;
  background: #fff;
}

body {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  width: min(100%, 750px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

#container {
  display: none;
}

.banner {
  width: 100%;
  height: auto;
}

.notice {
  position: fixed;
  inset: 0;
  z-index: 30;
  padding: 42px 26px 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.65;
  background: rgba(0, 0, 0, .72);
}

.notice img {
  position: absolute;
  top: 12px;
  right: 22px;
  width: 62px;
}

.head {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 46px 40px 34px;
}

.logo {
  width: 185px;
  height: 185px;
  flex: 0 0 auto;
}

.logo .brand-icon {
  width: 100%;
  height: 100%;
}

.brand-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffe600 0%, #ffe600 65%, #a96518 66%, #a96518 100%);
  box-shadow: inset 0 -5px 0 rgba(117, 65, 14, .1);
}

.brand-icon::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 30%;
  height: 18%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
}

.brand-icon::after {
  content: "⚽";
  position: absolute;
  right: 13%;
  top: 15%;
  font-size: 20px;
  line-height: 1;
  transform: rotate(-24deg);
}

.brand-title {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: #171717;
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-domain {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 13px;
  color: #fff;
  font-size: 29px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
}

.version {
  min-width: 0;
  flex: 1;
  padding-top: 4px;
}

.version h2 {
  margin: 0 0 14px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
}

.version .type {
  margin-bottom: 38px;
  color: #9d9d9d;
  font-size: 27px;
  line-height: 1.25;
}

.button {
  min-width: 150px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
  background: #e8ad70;
  cursor: pointer;
}

.download span {
  color: #777;
  font-size: 22px;
  line-height: 1.5;
}

.parameter {
  margin: 0 40px;
  padding: 28px 0 34px;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.parameter li {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
}

.parameter .label {
  color: #b5b5b5;
  font-size: 22px;
  line-height: 1.3;
}

.parameter .value {
  margin-top: 15px;
  color: #666;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
}

.parameter .unit {
  margin-top: 12px;
  color: #b5b5b5;
  font-size: 22px;
  line-height: 1.25;
}

.parameter .value span,
.parameter .unit span {
  min-width: 0;
  border-left: 1px solid #e3e3e3;
}

.parameter .value span:first-child,
.parameter .unit div:first-child {
  border-left: 0;
}

.parameter .unit img {
  width: 136px;
  margin: 0 auto;
}

.preview {
  padding: 56px 40px 70px;
  text-align: center;
}

.preview h3 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}

.preview .tips {
  display: block;
  margin-top: 26px;
  color: #777;
  font-size: 25px;
  line-height: 1.35;
}

.tab {
  margin-top: 46px;
}

.tabList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0;
}

.tabList li {
  position: relative;
  min-height: 48px;
  color: #555;
  font-size: 29px;
  line-height: 1.2;
  cursor: pointer;
}

.tabList li.active {
  color: #e8ad70;
}

.tabList li.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 18px;
  height: 3px;
  border-radius: 3px;
  background: #e8ad70;
  transform: translateX(-50%);
}

.preview > img {
  width: 100%;
}

.mask {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, .48);
}

.mask .container {
  width: min(100%, 560px);
  padding: 28px;
  border-radius: 10px;
  background: #fff;
}

.mask h4 {
  margin: 0 0 16px;
  font-size: 25px;
  text-align: center;
}

.mask p {
  margin: 0;
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

.mask .btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.mask .btn span,
.mask .btn div {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 17px;
  background: #e8ad70;
}

.downloadTips {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 10px;
  width: min(calc(100% - 32px), 520px);
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1.45;
  background: rgba(0, 0, 0, .72);
  transform: translateX(-50%);
}

.downloadTips img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex: 0 0 auto;
}

.line-body {
  position: relative;
  overflow-x: hidden;
  background: #fff;
}

.line-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: min(75vw, 640px);
  background: url("../images/list-bg.png") top center / 100% auto no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
}

.line-page {
  position: relative;
  z-index: 1;
  width: min(100%, 750px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 120px 24px 70px;
  background: transparent;
}

.line-hero {
  text-align: center;
}

.line-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 36px;
}

.line-hero h1 {
  margin: 40px 0 0;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}

.line-hero p {
  margin: 24px 0 0;
  color: #999;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
}

.line-list {
  margin-top: 84px;
}

.line-item {
  position: relative;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 0 24px;
  border: 1px solid #d6d6d6;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
}

.line-item strong {
  min-width: 0;
  font-size: 33px;
  line-height: 1.2;
  font-weight: 500;
}

.line-item a {
  width: 136px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  background: #e8ad70;
}

.recommend-tag {
  position: absolute;
  right: 0;
  top: -53px;
  width: 103px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px 30px 0 0;
  color: #fff;
  font-size: 27px;
  background: #f56568;
}

@media (min-width: 760px) {
  .line-body {
    min-height: 100vh;
    background:
      linear-gradient(180deg, #f6f7f9 0%, #fff 46%, #f7f8fa 100%);
  }

  .line-body::before {
    height: min(48vw, 560px);
    opacity: .96;
  }

  .line-page {
    width: min(100%, 1120px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 82px 40px 86px;
  }

  .line-hero {
    width: min(100%, 720px);
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    justify-content: flex-start;
    padding-top: 18px;
    text-align: center;
  }

  .line-logo {
    width: 132px;
    height: 132px;
    margin: 0;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 18px 46px rgba(24, 32, 51, .13);
  }

  .line-hero h1 {
    max-width: 720px;
    margin-top: 28px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
  }

  .line-hero p {
    max-width: 620px;
    margin-top: 14px;
    color: #8e939b;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
  }

  .line-list {
    position: relative;
    width: min(100%, 900px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-self: center;
    margin-top: 58px;
    padding: 22px;
    border: 1px solid rgba(214, 218, 226, .78);
    border-radius: 18px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 24px 70px rgba(28, 39, 58, .11);
    backdrop-filter: blur(10px);
  }

  .line-item {
    min-height: 82px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0;
    padding: 0 18px 0 22px;
    border: 1px solid rgba(219, 222, 229, .92);
    border-radius: 12px;
    background: rgba(255, 255, 255, .9);
    box-shadow: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  }

  .line-item:hover {
    border-color: rgba(232, 173, 112, .72);
    background: #fff;
    box-shadow: 0 16px 34px rgba(27, 47, 78, .09);
    transform: translateY(-2px);
  }

  .line-item:last-child {
    grid-column: 1 / -1;
    min-height: 86px;
    background: linear-gradient(135deg, rgba(255, 248, 239, .95), rgba(239, 246, 255, .92));
  }

  .line-item strong {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.28;
    font-weight: 600;
  }

  .line-item a {
    width: auto;
    min-width: 88px;
    height: 40px;
    align-self: center;
    padding: 0 20px;
    font-size: 17px;
    box-shadow: 0 10px 22px rgba(232, 173, 112, .2);
  }

  .recommend-tag {
    top: -14px;
    right: 18px;
    width: auto;
    height: 28px;
    padding: 0 13px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(245, 101, 104, .2);
  }

  .line-item.recommended strong {
    padding-right: 54px;
  }
}

@media (max-width: 520px) {
  .line-body::before {
    height: 75vw;
  }

  .head {
    gap: 18px;
    padding: 24px 20px 22px;
  }

  .logo {
    width: 92px;
    height: 92px;
  }

  .logo .brand-icon {
    border-radius: 17px;
  }

  .logo .brand-title {
    margin-bottom: 9px;
    font-size: 27px;
  }

  .logo .brand-domain {
    padding-bottom: 7px;
    font-size: 15px;
  }

  .version h2 {
    margin-bottom: 9px;
    font-size: 19px;
  }

  .version .type {
    margin-bottom: 25px;
    font-size: 14px;
  }

  .button {
    min-width: 76px;
    height: 30px;
    padding: 0 18px;
    font-size: 14px;
  }

  .parameter {
    margin: 0 20px;
    padding: 18px 0 20px;
  }

  .parameter .label,
  .parameter .unit {
    font-size: 12px;
  }

  .parameter .value {
    margin-top: 10px;
    font-size: 20px;
  }

  .parameter .unit img {
    width: 68px;
  }

  .preview {
    padding: 36px 20px 46px;
  }

  .preview h3 {
    font-size: 21px;
  }

  .preview .tips {
    margin-top: 18px;
    font-size: 14px;
  }

  .tab {
    margin-top: 32px;
  }

  .tabList li {
    min-height: 32px;
    font-size: 15px;
  }

  .line-page {
    padding: 60px 12px 42px;
  }

  .line-logo {
    width: 90px;
    height: 90px;
    border-radius: 18px;
  }

  .line-logo .brand-title {
    margin-bottom: 9px;
    font-size: 27px;
  }

  .line-logo .brand-domain {
    padding-bottom: 7px;
    font-size: 14px;
  }

  .line-hero h1 {
    margin-top: 22px;
    font-size: 17px;
  }

  .line-hero p {
    margin-top: 16px;
    font-size: 15px;
  }

  .line-list {
    margin-top: 48px;
  }

  .line-item {
    min-height: 52px;
    margin-bottom: 12px;
    padding: 0 12px;
    border-radius: 7px;
  }

  .line-item strong {
    font-size: 17px;
  }

  .line-item a {
    width: 68px;
    height: 30px;
    font-size: 15px;
  }

  .recommend-tag {
    top: -27px;
    width: 52px;
    height: 31px;
    border-radius: 15px 15px 0 0;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .head {
    gap: 14px;
  }

  .logo {
    width: 84px;
    height: 84px;
  }

  .logo .brand-title {
    margin-bottom: 8px;
    font-size: 25px;
  }

  .logo .brand-domain {
    font-size: 14px;
  }

  .version h2 {
    font-size: 18px;
  }

  .version .type {
    font-size: 13px;
  }

  .parameter .label,
  .parameter .unit {
    font-size: 11px;
  }

  .line-page {
    padding-left: 10px;
    padding-right: 10px;
  }

  .line-item {
    padding: 0 12px;
  }

  .line-item strong {
    font-size: 16px;
  }

  .line-item a {
    width: 62px;
    font-size: 14px;
  }
}
