

  body, h1, p {
    margin: 0;
    padding: 0;
  }
  .header, .mainCNT {
    /* background-color: #333; */
    color: white;
    text-align: center;
    /* padding: 1rem; */
    max-width: 1600px; /* 设置最大宽度 */
    margin-left: auto; /* 水平居中 */
    margin-right: auto; /* 水平居中 */
  }
  .mainCNT {
    display: flex;
    flex-wrap: wrap;
    /* background-color: #f4f4f4; */
	padding: 0;
  }
  .mainLeft {
    /* padding: 1rem; */	
	
    box-sizing: border-box; /* 边框和内边距包含在宽度内 */
  }

  .mainLeft {
	/* background-color: #dcccf4; */
  }
  .mainRight {
	
  }

  @media (min-width: 760px) {
    .mainLeft {
      flex: 6.5; /* mainLeft 占宽度的65% */
      min-width: 375px; /* 最小宽度375px */
    }
    .mainRight {
      flex: 3.5; /* mainRight 占宽度的35% */
      min-width: 375px; /* 最小宽度375px */
    }
  }
  @media (max-width: 768px) {
    .mainCNT {
      flex-direction: column-reverse; /* 移动端时，反转主容器的布局方向 */
	  padding: 8px;
    }
    .mainLeft, .mainRight {
      min-width: auto; /* 移动端不限制最小宽度 */
      width: 100%; /* 移动端宽度占满容器 */
    }
	.mainLeft {
		padding: 0;
	}
	
	.mainRight {
      margin-bottom:30px;
    }
  }
  
  .header {
    background-color: #333;
    color: white;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
  }
  .header a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    <!-- width: 100px; -->
    box-sizing: border-box;
	background-color: #f33;
  }
  .header a:hover {
    background-color: #555;
  }
  .header::-webkit-scrollbar {
    display: none;
  }
  @media screen and (min-width: 600px) {
    .header a {
      margin-right: 20px;
    }
    .header a:last-child {
      margin-right: 0;
    }
  }
  
 
 
 
 
 
   .theMatch {
    display: flex;
	margin-bottom:10px;
  }
  
  .mLeft {
    width: 85%;
    display: flex;
    flex-direction: column;
  }
  
  .mRight {
    width: 15%;
  }
   
  
  .mTopRow, .mBotLt, .mBotRt, .msr1Lt, .msr1Md, .msr1Rt {    
	padding:6px 0;
  }
  
  


.mTopRow{background-color: #96b7e4;  }
.mScoreR1{color: #93aaa7;  padding-top: 3px;}
.mBotRow{background-color: #bfd0e7;  }
.mLogoLt,.mLogoRt {background-color: #e9eef5;  }
.mRight {background-color: #bdd3c0;  }
  
  
  .mTopRow, .mMain, .mBotRow {
    height: auto;
  }
  
  .mLogoLt, .mScore, .mLogoRt {
    float: left;
  }
  
  .mLogoLt { width: 25%; }
  .mScore { width: 50%; }
  .mLogoRt { width: 25%; }
  
  
  
.mLogoLt {
  display: flex; /* 使用Flexbox布局 */
  align-items: center; /* 垂直居中 */
  justify-content: center; /* 水平居中 */
  height: 100%; /* 确保容器有高度 */
  /* background-color: #dcccf4;  */
}
.mLogoRt {
  display: flex; /* 使用Flexbox布局 */
  align-items: center; /* 垂直居中 */
  justify-content: center; /* 水平居中 */
  height: 100%; /* 确保容器有高度 */
  /* background-color: #dcccf4;  */
}

.mLogoLt img {
  max-height: 80%; /* 图片最大高度不超过容器高度 */
  max-width: 80%; /* 图片最大宽度不超过容器宽度 */
}
.mLogoRt img {
  max-height: 80%; /* 图片最大高度不超过容器高度 */
  max-width: 80%; /* 图片最大宽度不超过容器宽度 */
}

  
  .mScoreR1 {
    height: auto;
  }
  .mScoreR2 {
    height: 8px;
  }
  
  .msr1Lt, .msr1Md, .msr1Rt {
    float: left;
  }
  
  .msr1Lt { width: 30%; }
  .msr1Md { width: 40%; }
  .msr1Rt { width: 30%; }
  
  .mBotRow {
    display: flex;
    justify-content: space-between;
    height: auto;
  }
  
  .mBotLt, .mBotRt {
    flex: 1;
    text-align: left;
    padding-left: 10px;
    text-align: right;
    padding-right: 10px;
  }
  
  .mBotLt {
    text-align: left;
  }
  
  .mBotRt {
    text-align: right;
  }
  
  /* Clearfix for floated elements */
  .mScore:after, .mScoreR1:after {
    content: "";
    display: table;
    clear: both;
  }
  
  
  @media (max-width: 768px) {
    .mBotLt, .mBotRt {
      font-size:12px;
    }
  }
  
  @media (min-width: 760px) {
    .mLogoLt img {
	  max-height: 65%; /* 图片最大高度不超过容器高度 */
	  max-width: 65%; /* 图片最大宽度不超过容器宽度 */
	}
	.mLogoRt img {
	  max-height: 65%; /* 图片最大高度不超过容器高度 */
	  max-width: 65%; /* 图片最大宽度不超过容器宽度 */
	}
  }
  
  /* Random background colors */
  .mLeft { background-color: rgba(${random(0, 255)}, ${random(0, 255)}, ${random(0, 255)}, 0.3); }
  .mRight { background-color: rgba(${random(0, 255)}, ${random(0, 255)}, ${random(0, 255)}, 0.3); }
  .mTopRow { background-color: rgba(${random(0, 255)}, ${random(0, 255)}, ${random(0, 255)}, 0.3); }
  .mLogoLt { background-color: rgba(${random(0, 255)}, ${random(0, 255)}, ${random(0, 255)}, 0.3); }
  .mScore { background-color: rgba(${random(0, 255)}, ${random(0, 255)}, ${random(0, 255)}, 0.3); }
  .mLogoRt { background-color: rgba(${random(0, 255)}, ${random(0, 255)}, ${random(0, 255)}, 0.3); }
  .mScoreR1 { background-color: rgba(${random(0, 255)}, ${random(0, 255)}, ${random(0, 255)}, 0.3); }
  .mScoreR2 { background-color: rgba(${random(0, 255)}, ${random(0, 255)}, ${random(0, 255)}, 0.3); }
  .msr1Lt { background-color: rgba(${random(0, 255)}, ${random(0, 255)}, ${random(0, 255)}, 0.3); }
  .msr1Md { background-color: rgba(${random(0, 255)}, ${random(0, 255)}, ${random(0, 255)}, 0.3); }
  .msr1Rt { background-color: rgba(${random(0, 255)}, ${random(0, 255)}, ${random(0, 255)}, 0.3); }
  .mBotLt { background-color: rgba(${random(0, 255)}, ${random(0, 255)}, ${random(0, 255)}, 0.3); }
  .mBotRt { background-color: rgba(${random(0, 255)}, ${random(0, 255)}, ${random(0, 255)}, 0.3); }




/* 新闻列表容器 */
.newsList {
    
    margin: 10px auto;
    padding: 0 10px 10px 0;
	color: #000;
}

/* 新闻详情容器 */
.newsDetail {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding-bottom: 10px;
    background-color: #f9f9f9;
}

/* 新闻标题 */
.ndTitle {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
	background-color:#ddd;
	padding:10px;
}

/* 新闻主要内容 */
.ndMain {
    display: flex;
    margin-bottom: 8px;
}

/* 新闻图片容器 */
.ndMimg {
    flex: 1;
    text-align: center;
    padding: 0 0 0 10px;
}

.ndMimg img {
    width: 100%;
    height: auto;
}

/* 新闻文本容器 */
.ndMtxt {
    flex: 2;
	margin-left:20px;
    padding: 0 10px 10px 10px;
	text-align: left;
}

/* 新闻底部 */
.ndBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 日期和作者容器 */
.ndBdate, .ndBauthr {
    padding: 0 10px;
}

/* 作者名称 */
.ndBauthr {
    font-weight: bold;
    text-align: right;
}

@media (max-width: 768px) {
	.newsList {
		margin: 0;
		padding: 0;
	}
	.newsDetail {
		padding: 0 0 10px 0;
	}

    .ndMain {
        flex-direction: column; /* 将子元素垂直排列 */
    }

    .ndMimg, .ndMtxt {
        flex: 0 0 auto; /* 允许子元素占据自动大小 */
    }
	.ndMimg {
		padding: 0;
	}
	.ndMtxt {
		margin-left:0;
	}

}


/* ---------------------------------------------  以下是 footer --------------------------------------------------------- */

/*footer*/
.footer{padding:20px 120px; margin-top: 20px;max-width: 1600px; margin-left: auto; margin-right: auto;background:#FAFAFA;}

.ftLang{display:block; width:100%; padding:15px 0 30px 0; line-height:50px;}
.ftLang a{padding:10px;background:#eee; border-radius:6px; text-decoration: none;}

.footer_list{display:flex;justify-content: space-between;}
.footer_list .footer_col{max-width:300px;}
.footer_list .item_tit{display: flex;justify-content: space-between;margin-bottom: 20px;font-size: 17px; align-items: center;font-weight: bold;}
.footer_list .item_tit span{display: block; padding-left: 30px;cursor: pointer;}
.footer_list .item_tit img{width: 16px; display: none; transition: all 0.3s}
.footer_list .item_nav .nav a{margin-bottom: 20px;color:#606060;font-size: 14px;display:inline-block;}
.footer_list .footer_col .item{margin-bottom:10px;}
.footer_list .footer_col .share{display: flex;margin-bottom: 20px;}
.footer_list .footer_col .share a{display:inline-block;margin-right:10px;}

.footer_list .item_contact .item_tit{font-size: 32px;}
.footer_list .item_contact .line{display:flex; margin-bottom: 20px;}
.footer_list .item_contact .line .icon{display: inline-block;width:40px;}
.footer_list .item_contact .line .text{flex: 1}
.footer_list .item_contact .tel .text{font-size: 24px;color:#0071E3;padding-top:6px;}
.footer_list .item_contact .email .text{font-size: 24px;color:#0071E3;padding-top:6px;}
.footer_list .item_contact .addr .text{font-size:14px;color:#606060;line-height:19px;}
.footer_list .item_contact .btn button{
	display: inline-flex;align-items: center;justify-content: center; height: 36px; width: 136px; border-radius:22px; text-align: center; 
	font-size: 14px; color: #fff; background: #0071e3;text-decoration: none; border:none;
}


@media ( max-width: 768px){
	.footer_list{flex-flow: column;}
	.footer_list .footer_col{max-width:100%;}
	.footer{padding:40px 15px;margin-top: 40px}
	.footer_list .item_tit{font-size: 16px;}
	.footer_list .item_contact .item_tit{font-size: 16px;}
	.footer_list .item_nav{display: none}
	.footer_list .item_info{display: none}
	.footer_list .footer_col .item{border-bottom: 1px solid #E1E1E1; margin-bottom: 20px}
	.footer_list .item_tit img{width: 16px; display:block;}
	.footer_list .item_contact .tel .text{font-size: 16px;}
	.footer_list .item_contact .email .text{font-size: 16px;}
	.footer_list .item.on .item_nav{display:inline-block;}
	.footer_list .item.on .item_info{display:inline-block;}
	.footer_list .item.on .item_tit img{transform: rotate(180deg);}
}



/* ---------------------------------------------  以下是   --------------------------------------------------------- */



#prediction-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ccc;
  padding: 20px;
  background: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#team-logos img {
  width: 50px; /* 根据实际需要调整 */
  height: 50px;
}

#team-names {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#prediction-controls {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.prediction-control {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#increment, #decrement {
  width: 30px;
  height: 30px;
}

.match {
  margin-bottom: 20px;
}

.predict-btn {
  margin-top: 10px;
}


/* ---------------------------------------------  以下是 page content  --------------------------------------------------------- */


.pgContainer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.pgTitle {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.pgTitle h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.pgTitle p {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-style: italic;
}

.pgCNT {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pgCNT p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.pgCNT a {
    color: #2980b9;
    text-decoration: none;
    font-weight: bold;
}

.pgCNT a:hover {
    text-decoration: underline;
}

.pgCNT img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}



/* 移动端响应式调整 */
@media (max-width: 768px) {
    .pgTitle h1 {
        font-size: 1.8rem; /* 缩小标题字号 */
        line-height: 1.3; /* 调整行高 */
        padding: 0 10px; /* 添加左右内边距 */
    }
    
    .pgTitle p {
        font-size: 1rem; /* 缩小日期字号 */
    }
    
    .pgTitle {
        margin-bottom: 20px; /* 减少底部间距 */
    }
    
    .pgCNT {
        padding: 15px; /* 减少内容区域内边距 */
    }
}

/* 超小屏幕进一步优化 */
@media (max-width: 480px) {
    .pgTitle h1 {
        font-size: 1.5rem; /* 进一步缩小标题 */
    }
    
    .pgContainer {
        padding: 15px 10px; /* 调整容器内边距 */
    }
}


/* ---------------------------------------------  以下是   --------------------------------------------------------- */