.landingbanner{
  position: relative;
  padding-top:42px;
  padding-bottom:42px;
  min-height: 280px;
  background:rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.landingbanner div{
  font-size:180%;
  font-weight: bold;
  text-align: center;
  color:rgba(250,250,250,0.82);
  line-height: 1;
}
.landingbanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../asset/banner/landing.jpg');
  background-size: cover; /* 或其他你需要的背景尺寸 */
  background-position: center; /* 或其他你需要的背景位置 */
  opacity: 0.8; /* 设置背景图片的透明度 */
  z-index: -1; /* 确保伪元素位于内容之下 */
}
#tipsbar{
    background-color: #406b9acc;
}

#tips{
  display: flex;
  max-width: 1400px;
  margin:0 auto;


  align-items: center;
  overflow: hidden;
}
#tipsicon{
  position: relative;
  background-repeat: no-repeat;
  background-image: url('../asset/animation/announcement.gif');
  background-size: 38px; /* 或其他你需要的背景尺寸 */
  background-position: left 2px center; /* 或其他你需要的背景位置 */
  height: 40px;
  width: 40px;
  display: flex;
  flex: 0 0 40px;
  align-items: center;
  background-color: rgba(255,255,255,1);
  border-radius: 3px;
  /* padding-left:38px;
  padding-left:36px;
  padding-right:16px; */

}
.tipscontainer{
  margin-left:18px;
  color: #fafaff;
  font-size: 16px;
  position: relative;
  width:100%;
  height: auto;
  display: flex;
  overflow: hidden;
}
.tipitem{
  left:100%;
  flex: 0 0 100%;
  padding: 4px 0px;
  font-size:14px;
  align-items: center;
  display: flex;
}


.landingbanner{
  /* max-width: 1400px; */
  margin: 0 auto;
  margin-bottom: 0px;
}
.landingbannertitle{
  font-size:42px;
  color:white;
  text-align: center;
  line-height: 1.36;
}
#landingheader{
  position: relative;
  padding-top:42px;
  padding-bottom:92px;
  background:rgba(0,0,0,0.3);

  background-image: url('../asset/banner/landing2.jpg');
  background-size: cover; /* 或其他你需要的背景尺寸 */
  background-position: center; /* 或其他你需要的背景位置 */
}
.game{
  overflow: auto;
  padding-bottom:12px;
  display: flex;
  justify-content: flex-start;
  max-width: 1400px;
  margin:0 auto;

}
.game .item{
  background-color: rgba(242,242,242,0.72);
  border:0px solid #f0f0f0;
  display:flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin: 12px;
  padding-top:24px;
  padding-bottom:24px;
  padding-left:18px;
  padding-right:18px;
  border-radius: 4px;
  flex: 0 0 80%;
  max-width: 420px;
}
.game .item >div{
  width:100%;
}
.game .gamedatetime{
  text-align: center;
  padding-top:0px;
  padding-bottom:12px;
  color:#559;
  margin-top:24px;
  text-align: center;
  font-size:24px;
}
.game .gameleag{
  text-align: center;
  line-height: 1;
  font-size: 140%;
  width:90%;
  margin:0 auto;
  color:#559;
}
.vssvg{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:42px;
  border-top: 4px solid #000a96;
  border-bottom: 4px solid #000a96;
  padding: 6px 6px 0px 6px;
  color:#000a96;
  line-height: 0.8

}
.teamlogo{
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  aspect-ratio:1/1;
  width: 60px;
  height: 60px;
  margin:12px;
  text-align: center;
  margin:12px auto;
}
.teamname{
  text-align: center;
  font-size:24px;
  margin-top:8px;
}
.teamsinfo{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.game .locationcontainer{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:42px;
}
.game .location{
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: left 2px top;
  text-align: left;
  padding-left:28px;
  height: 24px;
  line-height: 24px;
  display: inline-block;
  background-image: url('../asset/location.svg');
}
#cominggame .grid-container{
  display: flex;
  /* grid-template-columns: repeat(3, 0fr); */
  /* grid-template-columns: 1fr; */
  /* grid-template-columns: repeat(1, 1fr);
  gap: 10px; /* Adjust the gap between items */
  justify-content: center;
  flex-wrap: wrap;

}
#recentresults .grid-container{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px; /* 可选的，用于设置网格项之间的间距 */
  padding:12px;
  justify-content: center;
  align-content: start;
  margin: 0 auto;
  max-width: 1280px;
}
#recentresults .grid-container .item{
  background-color: rgba(255, 255, 250, 0.5);
  border-radius: 4px;
  border:1px solid #ddd;
  padding:12px;
  padding-left:24px;
  padding-right:24px;
}
#recentresults .grid-container .item .teamrow{
  display: flex;
  padding-top:8px;
  padding-bottom:8px;
  justify-content: space-between;
  align-items: center;
}
#recentresults .grid-container .item .teamrow .team{
  display: flex;
}
#recentresults .grid-container .item .teamrow .team .logo{
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left 2px center;
  padding-left:42px;
  height: 62px;
  line-height: 62px;
  display: inline-block;
  background-image: url('../asset/location.svg');
  margin-right:12px;
}
#recentresults .grid-container .item .teamrow .team .name{
  display: flex;
  align-items: center;
}

#recentresults .grid-container .item .teamrow .score{
  height: 42px;
  line-height: 42px;
  display: flex;
  align-items: center;
}
#recentresults .grid-container .item .teamrow .score span{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  font-weight: 200;
  color:white;
  width:42px;
  height:42px;
  font-size: 20px;
  margin-left: 1px;
  margin-right: 1px;
}
#recentresults .grid-container .item .leag{
  font-weight: bold;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 6px;
    font-size: 120%;
}
#recentresults .grid-container .item .date{
    text-align: center;
    color:#222;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 100%;
}
.leuagesectoinbg{

}
#whatnext{
  padding-top:42px;
  padding-bottom:42px;
  /* background-image: url('../asset/teambg.jpg'); */
  background-size: cover; /* 或其他你需要的背景尺寸 */
  background-position: center; /* 或其他你需要的背景位置 */
  overflow: hidden;
}
#game_summary_bg{
  padding-top:42px;
  padding-bottom:42px;
  background-image: url('../asset/iceground.jpg');
  background-size: cover; /* 或其他你需要的背景尺寸 */
  background-position: center; /* 或其他你需要的背景位置 */
  opacity: 1; /* 设置背景图片的透明度 */
}
.gamesummarytable{
  margin:0 auto;
  width:100%;
  max-width: 1200px;

}
.gamesummarytable table{
  border-collapse: collapse;
  margin:0 auto;
  padding:12px;
  width:100%;
  background:rgba(0,0,0,0)
}
.gamesummarytable table thead
{
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: left;
  background-color: #c10b0b;
  color: white;
}
.gamesummarytable table th, td{
  border: 1px solid #eee;
  padding: 8px;
  text-align: center;
  font-size:22px;
  color:#335;
}
.gamesummarytable table td{
  border: 1px solid #eee;
  padding: 8px;
  min-width:62px;
  text-align: center;
  padding-top:24px;
  padding-bottom:24px;

}
.gamesummarytable table thead th{
  background:rgba(250,250,250,1);
  color:#222;
  padding-bottom:18px;
  padding-top:18px;
}
.gamesummarytable table tr:nth-child(odd){
  background:rgba(250,250,250,0.8);
}
.gamesummarytable table tr:nth-child(even){
  background:rgba(244,240,255,0.8);
}


.gamesummarytable table td .team{
  display: flex;
}
.gamesummarytable table td .team .name{
  display: flex;
  align-items: center;
}
.gamesummarytable table td .team .logo{
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-position: center center;
  text-align: center;
}
#maincontent{
  margin:0 auto;
  max-width:1400px;
  display:grid;
  grid-template-columns: 1fr;
  margin-bottom:42px;
  gap: 10px;
  padding:10px;
}
#mainitemlist{

}
#mainitemlist .grid-container{
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
#mainitemlist .grid-container .item{
  cursor: pointer;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio:1/1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#mainitemlist .grid-container  a{
  text-decoration: none;
}
#mainitemlist .grid-container .item .title{
  color: white;
  padding: 12px 8px;
  background:rgba(40,40,80,0.55);
  width: 100%;
  height: 100%;
  margin: 0px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#latest_new{
  padding: 12px;
  background:white;
  border-radius: 6px;
}
#latest_new .title{
  margin-top:0px;
  text-align: left;
  font-size:28px;
}
#lastestnewcontainer .item{
  border-bottom:1px solid #ddd;
  padding-bottom:24px;
  margin-bottom:32px;
}
#lastestnewcontainer .item .title{
  font-weight: 600;
  font-size:15px;
  line-height: 1.4;
  margin:0;
  margin-bottom:12px;
  color:#551a8b;
  text-decoration: inherit;
  display:flex;
}
#lastestnewcontainer .item .title .icon{
  height: 32px;
  width:32px;
  flex:0 0 32px;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 12px;
}
.icon.registration{
  background-image:url('/asset/registration.svg');
  background-color:#AED9E0;
}
.icon.message{
  background-image:url('/asset/message.svg');
  background-color:#F9D5BB;
}
.icon.recruitment{
  background-image:url('/asset/recruitment.svg');
  background-color:#D9CCE3;
}
#lastestnewcontainer{
  font-family: Roboto;
}
#lastestnewcontainer .item .mata{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#lastestnewcontainer .item .mata .date{
  color: #444;
  font-size:90%;
  width: 100%;
  text-align: right;
}
#lastestnewcontainer .item .mata .button{
  border-radius: 4px;
  height: 28px;
  background-color:#c10b0b;
  color:white;
  text-align: center;
  width:82px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size:13px;
  cursor: pointer;
  text-decoration: none;
}
.landingbanner >div{
  font-size: 36px;
}
@media (min-width: 520px) {
  .game .item{
    flex: 0 0 380px;
  }
  .landingbannertitle{
    font-size:52px;
  }
  #maincontent{
    grid-template-columns: 1fr;
  }
  #mainitemlist .grid-container{
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  #cominggame .grid-container{
    grid-template-columns: repeat(2, 1fr);
  }
  .landingbanner >div{
    font-size: 42px;
  }
}

@media (min-width: 768px) {
  .game .item{
    flex: 0 0 380px;
  }
  .game .teamlogo{
    width: 100px;
    height: 100px;
  }
  .game .gameleag{
    font-size: 180%;
  }
  #maincontent{
    grid-template-columns: 1fr 2fr;
  }
  #mainitemlist .grid-container{
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  #cominggame .grid-container{
    grid-template-columns: repeat(2, 1fr);
  }
  .landingbanner >div{
    font-size: 58px;
  }
}

@media (min-width: 980px) {
  .game .item{
    flex: 0 0 420px;
  }
  #maincontent{
    grid-template-columns: 2fr 6fr;
  }
  #mainitemlist .grid-container{
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  #cominggame .grid-container{
    grid-template-columns: repeat(4, 1fr);
  }
  .landingbanner >div{
    font-size: 62px;
  }
}





/* Custom styles for Swiper slides */
.swiper-slide {
    height: 300px; /* Set the height of each slide */
    width: 300px;  /* Set the width of each slide */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* Optional: Add a background color */
    border: 1px solid #ccc;    /* Optional: Add a border */
    box-sizing: border-box;    /* Ensure padding and border are included in the dimensions */
}

.swiper-container {
    position: relative;
}

.swiper-pagination {
    position: absolute;
    bottom: -24px!important;
    width: 100%;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}
