:root {
  --title-color: #0072ff;
  --text-color: #282828;
  --line-color: var(--title-color);
}

html,
body {
  padding: 0;
  margin: 0;
}

.icon-ranking {
  background: transparent url("https://jt5.dangbei.net/znds/20240520/icon-ranking.webp") no-repeat center;
  background-size: cover;
}

.page-container {
  display: flex;
  flex-direction: column;
  max-width: 980px;
  min-height: 980px;
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
  min-height: 100vh;
  background: url("https://jt5.dangbei.net/znds/20240520/bg-pc-top.webp") no-repeat top center,
    url("https://jt5.dangbei.net/znds/20240520/bg-pc-bottom.webp") no-repeat bottom center;
  background-size: 100% auto;
  box-sizing: border-box;
}

.page-container  * {
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-header {
  flex: 0 0 auto;
  padding-top: 133px;
  padding-bottom: 40px;
  text-align: center;
}

.page-header--title {
  display: flex;
  align-items: center;
  font-size: 56px;
  font-weight: 600;
  color: var(--title-color);
  line-height: 57px;
}
.page-header--title .icon {
  display: inline-block;
  width: 63px;
  height: 51px;
  margin-right: 16px;
}

.brand-list {
  display: flex;
  align-items: start;
  justify-content: center;
  margin-top: 36px;
}

.brand-list--item {
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0;
  padding-left: 14px;
  padding-right: 14px;
  height: 72px;
}

.brand-list--item img {
  max-height: 100%;
}

.page-main {
  flex: 1;
  padding-top: 42px;
  padding-bottom: 42px;
}

.page-main--title {
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.486em;
  color: #000000;
}

.ranking-list {
  position: relative;
  padding-top: 49px;
  padding-bottom: 80px;
  min-height: 100%;
  margin-top: 20px;
}

.ranking-list--item {
  display: flex;
  align-items: start;
  padding-top: 60px;
}

.inner-content {
  flex: 0 0 auto;
  width: 50%;
  overflow: hidden;
}

.inner-content.left {
  text-align: right;
  padding-right: 59px;
}

.inner-content.right {
  padding-left: 59px;
}

.inner-content > .content-title {
  display: block;
  color: var(--title-color);
  font-size: 24px;
  font-weight: 600;
}

.inner-content > .content-list {
  font-weight: 400;
  font-size: 18px;
  margin-top: 20px;
}
.inner-content > .content-list li:not(:first-child) {
  margin-top: 10px;
}

.ranking-list--line {
  position: absolute;
  width: 58px;
  top: 49px;
  left: 0;
  right: 0;
  /* height: 100%; */
  bottom: 0;
  margin: 0 auto;
  background-color: var(--line-color);
}

.ranking-list--line::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 29px solid transparent; /* 控制三角形的宽度 */
  border-right: 29px solid transparent; /* 控制三角形的宽度 */
  border-bottom: 46px solid var(--line-color); /* 控制三角形的高度和颜色 */
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
}

.page-footer {
  color: var(--text-color);
  font-size: 16px;
  text-align: center;
  flex: 0 0 auto;
  padding-top: 83px;
  padding-bottom: 141px;
}

.page-footer p:not(:first-child) {
  margin-top: 10px;
}
