@font-face {
	font-family: 'DingTalkJinBuTi Regular';
	src: url('../webfonts/DingTalkJinBuTi_Regular/DingTalkJinBuTi-Regular.ttf') format('truetype');
	font-display: swap;
}
.页面整体 {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}
.页面内容 {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.桌面对决, .美食追逐战 {
	cursor: pointer;
    position: relative;
    width: 50%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.桌面对决 .点击链接, .美食追逐战 .点击链接 {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4; 
    background-color: rgba(0, 0, 0, 0); 
    text-decoration: none;
}
.桌面对决 {
	background-image: url("../IMG/海报-桌面对决.webp");
}
.美食追逐战 {
    background-image: url("../IMG/海报-美食追逐战.webp");
    text-align: right;
    background-position: 50% 76%;
}
.页面内容 a {
	font-family: "DingTalkJinBuTi Regular";
	font-weight: bold;
	font-style: italic;
	color: white;
	text-decoration: none;
	font-size: 4.5vw;
}
.美食追逐战 .文字 {
	right: 0px;
}
.遮罩 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
	pointer-events: none;
	z-index: 1;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
}
.桌面对决:hover .遮罩, .美食追逐战:hover .遮罩 {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.文字 {
	position: absolute;
	z-index: 2;
	padding: 20px;
	bottom: 9px;
}
.页脚 {
    flex-shrink: 0;
    background: #333;
    height: 60px;
    text-align: center;
    color: #D5D5D5;
}
.页脚 .声明  {
    width: 100%;
    position: absolute;
    bottom: 20px;
}