.competition-detail .header {
  border-bottom: 2px solid #FC6B38 !important;
}

.competition-detail > .title {
  margin: 56px auto 36px auto;
  font-weight: 500;
  font-size: 32px;
  color: #1C48A8;
  line-height: 45px;
  text-align: center;
}
.competition-detail > .subtitle {
  margin: 0 auto 36px auto;
  font-weight: 500;
  font-size: 26px;
  color: #FC6B38;
  line-height: 37px;
  text-align: center;
}
.subheader {
  margin-bottom: 36px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
  color: #1C48A8;
  line-height: 22px;
}
.subheader .left, .subheader .right {
  display: flex;
}
.subheader .item {cursor: pointer;}
.subheader .item:first-child {
  margin-right: 86px;
}
.subheader .icon {
  height: 22px;
  width: 22px;
  margin-right: 10px;
  vertical-align: middle;
}

@media screen and (max-width: 1023px) {
  .competition-detail .header {
    border-bottom: 1px solid #FC6B38 !important;
  }
  .competition-detail > .title {
    margin: 28px auto 14px auto;
    font-size: 16px;
    line-height: 22px;
  }
  .competition-detail > .subtitle {
    margin: 0 auto 22px auto;
    font-size: 13px;
    line-height: 18px;
  }
  .subheader {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 16px;
  }
  .subheader .left, .subheader .right {
    width: auto;
  }
  .subheader .item:first-child {
    margin-right: 16px;
  }
  .subheader .icon {
    height: 12px;
    width: 12px;
    margin-right: 0px;
    vertical-align: middle;
  }
}

.banner {
  height: 590px;
  background-size: cover;
  background-position: center;
  background-image: url(./images/banner.png);
  margin-bottom: 46px;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .banner {
    height: 129px;
    margin-bottom: 12px;
  }
}

.content {
  margin-bottom: 70px;
}
.content > .title {
  font-weight: 500;
  font-size: 26px;
  color: #1C48A8;
  line-height: 37px;
  margin-bottom: 16px;
}
.content > .text {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 22px;
  margin-bottom: 44px;
}
.content > .text.intro {
  margin-bottom: 28px;
}
.content table {
  width: 100%;
  margin-bottom: 44px;
  font-weight: 500;
  font-size: 16px;
  color: #292929;
}
.content table thead {
  background-color: #f3f4f6;
}
.content table th {
  height: 75px;
  line-height: 75px;
  text-align: left;
  padding-left: 25px;
}
.content table tr:nth-child(even) {
  background-color: #f3f4f6;
}
.content table td {
  height: 75px;
  line-height: 75px;
  padding-left: 25px;
}
/* 使用CSS样式为表格添加边框 */
table, th, td {
  border: 1px solid #f0f1f3;
  border-collapse: collapse;
} 

.content .rewards {
  display: flex;
  flex-wrap: wrap;
  gap: 41px;
}
.content .reward {
  height: 160px;
  border-radius: 12px;
  border: 1px solid #FC6B38;
  padding: 38px;
  display: flex;
  gap: 29px;
  flex-grow: 1;
  box-sizing: border-box;
}
.content .reward img {
  width: 51px;
  height: 75px;
}
.content .reward .title {
  font-weight: 500;
  font-size: 28px;
  color: #FC6B38;
  line-height: 40px;
  margin-bottom: 7px;
}
.content .reward .desc {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 34px;
}
@media screen and (max-width: 1023px) {
  .content {
    margin-bottom: 33px;
  }
  .content > .title {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 6px;
  }
  .content > .text {
    font-size: 10px;
    line-height: 14px;
    margin-bottom: 12px;
  }
  .content > .text.intro {
    margin-bottom: 12px;
  }
  .content table {
    margin-bottom: 26px;
    font-size: 10px;
  }
  .content table th {
    height: 34px;
    line-height: 34px;
    padding-left: 12px;
  }
  .content table td {
    height: 34px;
    line-height: 34px;
    padding-left: 12px;
  }
  .content .rewards {
    gap: 18px;
  }
  .content .reward {
    height: auto;
    border-radius: 6px;
    padding: 18px 7px 20px;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }
  .content .reward img {
    width: 25px;
    height: 37.5px;
  }
  .content .reward .title {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 5.5px;
  }
  .content .reward .desc {
    font-size: 10px;
    line-height: 12px;
  }
}