* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

ul li{
	list-style: none;
}

header,
footer,
main {
	max-width: 1000px;
	width: 100%;
	margin: auto;
	overflow: hidden;
}

header {
	background-color: #00A7F7;
	height: 80px;
	margin: auto;
	text-align: center;
}

header img{
	/*这里高度不能用100%，不然总是会在下面多出来，不知道为啥*/
	height: 80px;
}

main{
	padding-bottom: 80px;
}
.banner img {
	width: 100%;
}

.body_container{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

nav{
	width: 92%;
	margin: 20px 0;
	padding: 20px;
	/*border: 1px solid black;*/
	box-shadow: 0 2px 5px #888888;
	border-radius: 5px;
}

nav ul {
	width: 100%;
	display: flex;
}

nav li {
	width: 25%;
	text-align: center;
}

nav li img {
	width: 60%;
}

nav li div {
	font-size: 16px;
	color: #aaa;
	padding-top: 5px;
}

section {
	margin-top: 10px;
	margin-bottom: 20px;
	width: 92%;
}

section img {
	width: 100%;
}

.match_container{
}

.match_container>.title, .news_container>.title, .live_container>.title {
	color: #00A7F7;
	font-size: 16px;
	margin-bottom: 20px;
	padding-left: 10px;
	padding-bottom: 3px;
	line-height: 15px;
	border-left: 5px solid #00A7F7;
}

.match_container .list img{
	border-radius: 5px;
}

.match_container .list{
	display: flex;
	flex-wrap: wrap;
}

.match_container .list>.left{
	width: 50%;
}

.match_container .list>.right{
	width: 50%;
	aspect-ratio: 3/4;
}

.match_container .list>.right ul{
	height: 100%;
}
.match_container .list>.right li {
	height: calc(50% - 10px / 2);
}
.match_container .list>.right li:nth-child(odd) {
	margin: 0 0 10px 10px;
}
.match_container .list>.right li:nth-child(even) {
	margin: 0 0 0 10px;
}
.match_container .list>.right img{
	height: 100%;
}

.news_container{
	padding: 0 0 ;
}

.news_container .list {
	display: flex;
	width: 100%;
}

.news_container .list ul {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-between;
}

.news_container .list li {
	width: 49%;
	color: #444;
}
.news_container .list li img {
	border-radius: 5px;
}
.news_container .list li a{
	color: #444;
}

.news_container .view-more {
	margin: 30px 30px 10px 0;
	text-align: right;
}

.news_container .view-more a {
	color: black;
	margin-left: 10px;
	text-decoration: none;
}

.live_container button{
	background-color: #007bff;
	color: white;
	padding: 15px;
	width: 100%;
	font-size: 16px;
	border-radius: 5px;
	border:none;
}

.partner-swiper-container .item{
	display: flex;
	justify-content: space-evenly;
}

.partner-swiper-container img{
	/*这里高度不能用100%，不然总是会在下面多出来，不知道为啥*/
	height: 80px;
	width: auto;
}


