/* ---------- */
html {
  scroll-behavior: smooth;
  min-width: 1200px;
}

/* 新闻赛事列表 */
.news_container {
  /* margin: 4vw 5vw 4vw 5vw; */
  padding: 2vw 5vw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news_title {
  color: #000;
  font-family: Source Han Sans CN;
  font-size: 2.7vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.news_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 40px auto;
  width: 100%;
  padding: 0 5px;
  box-sizing: border-box;
}

/* 第一个li 占满宽位置调换--------------------------------------------------------- */
.news_list li:nth-child(1) {
  display: flex;
  flex-flow: row-reverse;
  width: 100%;
}

/* 放图片div宽度占比66.6% */
.news_list li:nth-child(1)>div {
  width: 66.6%;
}

.news_list li:nth-child(1)>div>img {
  height: 100%;
}

/*  文字div宽度占比33.3%*/
.news_list li:nth-child(1) .introduce_box {
  width: calc(33.3%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 上下标题div */
.news_list li:nth-child(1) .title {
  margin: 0 auto;
  width: 80%;
  box-sizing: border-box;
}

/* 大标题，限制两行超出省略号代替  */
.news_list li:nth-child(1) .title p:nth-child(1) {
  font-size: 40px;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 小标题，限制三行超出省略号代替 */
.news_list li:nth-child(1) .title p:nth-child(2) {
  width: 100%;
  height: 50px;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* 日期和按钮div,切换成上下布局 */
.news_list li:nth-child(1) .detail {
  margin: 0 auto;
  width: 80%;
  height: 90px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

/* -------end---------------------------------------------------------------------------------- */
.news_box {
  margin: 5px;
  cursor: pointer;
  width: calc(33.3% - 10px);
}

.news_box img {
  display: block;
  width: 100%;
}

.introduce_box {
  box-sizing: border-box;
  padding: 35px 15px 35px 15px;
  background-color: #ffffff;
}

.top_title {
  width: 100%;
  font-size: 24px;
  white-space: nowrap;
  /* 不换行 */
  overflow: hidden;
  /* 隐藏超出的内容 */
  text-overflow: ellipsis;
  /* 显示省略号 */
}

.below_title {
  font-size: 14px;
  line-height: 25px;
  height: 47px;
  margin: 20px 0 33px 0;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.detail {
  height: 41px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.detail>span {
  color: rgba(204, 204, 204, 1);
  font-size: 20px;
}

.more {
  width: 100px;
  height: 35px;
  line-height: 35px;
  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:hover {
  animation: box-shadow-drop-bottom 0.6s both;
  color: #ffffff;
  background-color: rgba(216, 12, 36, 1);
}

/* banner */
.image_container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.banner {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease-in-out;
}

.banner_text {
  position: absolute;
  width: 80%;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: left;
  letter-spacing: 3px;
  opacity: 1;
  /* background-color: palegoldenrod; */
}

.banner_text p:nth-child(1) {
  font-size: 30px;
  margin-bottom: 17px;
  font-weight: 800;

}

.banner_text p:nth-child(2) {
  font-size: 18px;
}

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


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

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

.qjgp_arrow {
  position: absolute;
  bottom: 40px;
  display: block;
  width: 100%;
  height: 30px;
  animation: floatAnimation 2.3s infinite;
}

.qjgp_arrow img {
  margin: 0 auto;
  width: 30px;
  object-fit: cover;
}

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

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

  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);
}

/* 介绍---------------------------------------------------------------------------------------- */
.description {
  position: absolute;
  top: 50px;
  left: 100px;
  width: 45%;
}

.title_top {
  font-size: 48px;
}

.title_below {
  margin-top: 20px;
  font-size: 16px;
  line-height: normal;
}

/* 选手展示 */
.player_container {
  min-width: 1200px;
  position: relative;
  width: 100%;
  min-height: 750px;
}

.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;
  /* background-color: palegoldenrod; */
}

.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%;
  position: absolute;
  top: 300px;
  left: 100px;
  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: 350px;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

@media (max-width:1200px) {
  .rider_container {
    width: 80%;
  }

  .rider_item {
    width: 200px;
  }

}

.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;
  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;
}

@media (max-width:1200px) {
  .rider_name_en {
    text-align: center;
    font-size: 18px;
    margin-top: 5px;
  }
}

/* 查看详情 */
.rider_detail {
  width: 90%;
  position: absolute;
  top: 450px;
  left: 100px;
  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: 120px;
  min-width: 100px;
  height: 35px;
  line-height: 35px;
  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);
}

/* 比赛日程 */
.competition_schedule {
  box-sizing: border-box;
  padding: 0 32px;
  width: 100%;
  margin-bottom: 90px;
}

.competition_title {
  color: #000;
  font-family: Source Han Sans CN;
  font-size: 56px;
  font-weight: 900;
  margin-left: 75px;
  margin-bottom: 20px;
}

.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%;
  right: 0;
  height: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
  background-color: #F1F1F1;
  border-left: 1px solid #999;
  color: #000;
  text-align: center;
  font-family: Source Han Sans CN;
  font-size: 20px;
  font-weight: bold;
}

.player_item>div {
  width: 40%;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

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

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

.schedule {
  width: 18%;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  font-family: Source Han Sans CN;
  font-size: 40px;
  font-weight: 500;
}

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

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

.margin_t_b {
  margin: 4px 0;
}

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

.competition_name {
  width: 100%;
  color: #000;
  font-family: Source Han Sans CN;
  font-size: 32px;
  font-weight: bold;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

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

.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: Source Han Sans CN;
  font-size: 20px;
  font-weight: 500;
}

.video_box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
}

.video_box>video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}