  .banner_container {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 100vh;
  }

  .banner_img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }


  .banner_title_container {
      position: absolute;
      left: 7%;
      top: 25%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: #FFF;
      height: 250px;
  }

  .top_title {
      font-family: CairoBold;
      font-size: 46px;
      font-weight: 900;
      letter-spacing: 2px;
  }

  .below_title {
      font-family: 'Cairo', sans-serif;
      font-size: 24px;
  }

  .news_btn {
      width: 158px;
      height: 51px;
      line-height: 51px;
      font-size: 12px;
      display: block;
      font-weight: bold;
      color: #000000;
      border: 1px solid #000;
      text-align: center;
      transition: all 0.6s;
      cursor: pointer;
      border-radius: 5px;
  }

  .motogp_btns {
      position: absolute;
      bottom: 50px;
      left: 50%;
      transform: translateX(-50%);
      height: 150px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
  }

  .arrow {
      display: block;
      width: 30px;
      animation: arrow 3s infinite;
  }

  .arrow img {
      width: 100%;
      object-fit: cover;
  }

  @keyframes arrow {
      0% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-15px);
      }

      100% {
          transform: translateY(0);
      }
  }

  .banner_more {
      display: block;
      width: 200px;
      cursor: pointer;
      transition: all .4s;
  }

  .banner_more img {
      width: 100%;
      object-fit: contain;
  }

  .banner_more:hover {
      transform: translateY(-5px);
  }


  .news_btn:hover {
      animation: box-shadow-drop-bottom 0.6s both;
      color: #ffffff;
      background-color: #D80C24;
      border: 1px solid #fff;
  }

  .view_more {
      margin-top: 30px;
      width: 200px;
      height: 65px;
      line-height: 65px;
      font-size: 18px;
      font-family: CairoBold;
      display: block;
      color: #FFF;
      text-align: center;
      transition: all 0.6s;
      border-radius: 5px;
  }


  /* 选手展示 */
  .description {
      position: absolute;
      top: 50px;
      right: 100px;
      width: 45%;
  }

  .title_top {
      color: #000;
      font-family: CairoBold;
      font-size: 48px;
  }

  .title_below {
      margin-top: 20px;
      font-size: 16px;
      line-height: normal;
      font-family: 'Cairo', sans-serif;

  }

  .player_container {
      position: relative;
      width: 100%;
      min-height: 750px;
      background-color: #F1F1F1;
  }

  .rider {
      position: absolute;
      bottom: 0;
      min-height: 750px;
      -moz-background-size: cover;
      background-size: cover;
      position: relative;
      padding: 5vw 9.375vw 0;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      font-family: SupremeLLTT-Black, SupremeLLTT;
  }

  .rider_img {
      width: 1000px;
      position: absolute;
      left: 50%;
      bottom: 0;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%);
  }

  .rider_left_img {
      width: 500px;
      -o-object-fit: cover;
      object-fit: cover;
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: 1;
  }

  .rider_right_img {
      width: 500px;
      -o-object-fit: cover;
      object-fit: cover;
      position: absolute;
      right: 0;
      bottom: 0;
  }

  /* 排名&名称 */
  .rider_container {
      width: 90%;
      min-width: 1000px;
      position: absolute;
      top: 300px;
      right: 150px;
      z-index: 1;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
      -moz-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
  }

  .rider_item {
      width: 400px;
      margin: 0;
      padding: 0;
      border: 0;
      font: inherit;
      vertical-align: baseline;
  }

  .title_container {
      translate: none;
      rotate: none;
      scale: none;
      opacity: 1;
      transform: translate(0px, 0px);
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -moz-box-align: center;
      -ms-flex-align: center;
      align-items: baseline;
      font-weight: 700;

  }

  .rider_number {
      background: rgba(216, 12, 36, 1);
      display: inline-block;
      font-size: 32px;
      line-height: 32px;
      color: #fff;
      padding: 5px 5px 8px 9px;
      transform: skewX(-10deg);
      border-top: 5px solid rgba(216, 12, 36, 1);
  }

  .rider_name {
      box-sizing: border-box;
      padding-right: 8px;
      border-top: 2px solid rgba(216, 12, 36, 1);
      border-bottom: 3px solid rgba(216, 12, 36, 1);
      display: inline-block;
      margin-left: 0.41667vw;
      font-size: 32px;
      line-height: 45px;
      color: #222;
      font-style: italic;
      font-family: CairoBold;
      position: relative;
      overflow: hidden;
      white-space: normal;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
  }

  .rider_name_en {
      text-align: center;
      font-size: 28px;
      margin-top: 5px;
  }

  /* 查看详情 */
  .rider_detail {
      width: 80%;
      position: absolute;
      top: 400px;
      right: 150px;
      z-index: 1;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
      -moz-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 0 5vw;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
  }

  .more_btn {
      width: 130px;
      min-width: 100px;
      height: 40px;
      line-height: 40px;
      font-size: 12px;
      display: block;
      font-weight: bold;
      color: rgba(216, 12, 36, 1);
      border: 1px solid rgba(216, 12, 36, 1);
      text-align: center;
      transition: all 0.6s;
      cursor: pointer;
  }

  .more_btn:hover {
      animation: box-shadow-drop-bottom 0.6s both;
      color: #ffffff;
      background-color: rgba(216, 12, 36, 1);
  }

  /* 新闻列表 */
  .news_container {
      padding: 100px;
  }

  .view_more_news {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 50px;
  }

  .news_big_title {
      color: #000;
      text-align: center;
      font-family: CairoBold;
      font-size: 64px;
      font-weight: 400;
      line-height: 85.473%;
  }

  .more_jt {
      margin-top: 20px;
      display: flex;
      align-items: center;
      cursor: pointer;
  }

  .more_jt div {
      color: #000;
      text-align: center;
      font-family: CairoBold;
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 1.8px;
  }

  .more_jt div:hover {
      color: #B3271B;

  }

  .jt_icon {
      width: 30px;
      height: 18.699px;
      margin-left: 10px;
      transition: transform 1s ease;

  }

  .more_jt:hover .jt_icon {
      transform: translateX(15px);
  }

  .news_list {
      display: flex;
      justify-content: space-between;
  }

  .news_item {
      width: calc(33.3% - 40px);
      transition: transform 0.4s ease-in-out;

  }

  .news_item:hover {
      transform: translateY(-7px);
  }

  .news_item:hover .news_descrip {
      color: #B3271B;
  }

  .news_img {
      width: 100%;
      height: 270px;
      object-fit: cover;
  }

  .news_content {
      padding: 34px 0;
  }

  .news_time {
      color: #B3271B;
      font-family: 'Cairo', sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 137.99%;
  }

  .news_descrip {
      color: #000;
      font-family: CairoBold;
      font-size: 32px;
      line-height: 35px;
      font-weight: 400;
      margin: 36px 0;
      overflow: hidden;
      white-space: normal;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;

  }


  /* 赛事列表 */
  .competition_schedule {
      box-sizing: border-box;
      padding: 0 32px;
      width: 100%;
      margin-bottom: 90px;
  }

  .competition_title {
      color: #000;
      font-family: CairoBold;
      font-size: 56px;
      font-weight: 900;
      margin-left: 75px;
      margin-bottom: 20px;
      text-align: center;
  }

  .competition_container {
      position: relative;
      max-height: 720px;
      border: 1px solid #999;
      overflow-y: auto;
      scrollbar-color: #333 #f5f5f5;
      margin: 0 10px 80px 10px;
  }

  .competition_container::-webkit-scrollbar {
      width: 3px;
      z-index: 0;
      /* 定义滚动条的宽度 */
  }

  .competition_container::-webkit-scrollbar-thumb {
      background: rgba(217, 217, 217, 1);
      height: 40px;
  }

  .player {
      width: 100%;
      position: sticky;
      top: 0;
      z-index: 9;
  }

  .player_item {
      position: absolute;
      width: 35%;
      height: 100%;
      left: 0;
      height: 50px;
      display: flex;
      justify-content: space-around;
      z-index: 999;
      background-color: #F1F1F1;
      border-left: 1px solid #999;

      color: #000;
      text-align: center;
      font-family: CairoBold;
      font-size: 20px;

  }

  .competition_list {
      border-bottom: 1px solid #999;
      display: flex;
  }

  .right_item {
      width: 65%;
      height: 180px;
      display: flex;
  }

  .schedule {
      width: 18%;
      height: 140px;/*to prevent scroll*/
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #000;
      font-family: CairoBold;
      font-size: 38px;
      font-weight: 900;
  }

  .schedule div:nth-child(1) {
      margin-bottom: 20px;
  }

  .schedule_item_url {
      width: 400px;
      overflow: hidden;
      white-space: normal;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
  }

  .competition_content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 55%;
  }

  .icon_box {
      display: flex;
      align-items: center;
  }

  .margin_t_b {
      margin: 13px 0;
  }

  .competition_name {
      color: #000;
      font-family: CairoBold;
      font-size: 32px;
      line-height: 30px;
  }

  .icon_below {
      width: 15px;
      height: 15px;
      margin: 0 8px;
  }

  .icon_top {
      width: 15px;
      height: 20px;
      margin: 0 8px;
  }

  .map_box {
      width: 27%;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      align-items: center;
  }

  .map_img {
      width: 149px;
      object-fit: cover;
  }

  .left_item {
      width: 35%;
      height: 180px;
      border-left: 1px solid #999;
      display: flex;
      justify-content: space-around;
      align-items: center;
  }

  .active_box {
      transform: translateY(50px);
      height: calc(180px - 50px);
  }



  .ranking {
      color: #000;
      text-align: center;
      font-family: CairoBold;
      font-size: 20px;
  }