* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Microsoft YaHei", sans-serif;
}
body {
background: #f7f3ee;
color: #4a372e;
line-height: 1.8;
}
.container {
width: 1100px;
margin: 0 auto;
}

/* 导航 */
.header {
background: rgba(255,255,255,0.95);
padding: 15px 0;
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 99;
box-shadow: 0 1px 10px rgba(0,0,0,0.1);
}
.header .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 28px;
font-weight: bold;
color: #b98c5b;
}
.nav {
list-style: none;
display: flex;
gap: 22px;
}
.nav a {
text-decoration: none;
color: #664c3b;
font-size: 15px;
}
.nav a:hover {
color: #b98c5b;
}

/* Banner */
.banner {
margin-top: 70px;
}
.banner img {
width: 100%;
display: block;
}

/* 通用 */
.wrap {
padding: 70px 0;
}
.bg1 {
background: #fbf8f4;
}
.tit {
text-align: center;
font-size: 28px;
color: #b98c5b;
margin-bottom: 40px;
position: relative;
}
.tit::after {
content: "";
width: 60px;
height: 2px;
background: #d4b492;
position: absolute;
left: 50%;
bottom: -10px;
transform: translateX(-50%);
}
.text {
max-width: 850px;
margin: 0 auto;
font-size: 16px;
}
.text p {
margin-bottom: 12px;
}
.text h3 {
color: #b98c5b;
margin-bottom: 15px;
}

/* 下载 */
.down {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}
.down_item {
background: #fff;
width: 300px;
padding: 35px;
border-radius: 12px;
text-align: center;
box-shadow: 0 3px 15px rgba(0,0,0,0.05);
border: 1px solid #eee;
}
.down_item h3 {
color: #b98c5b;
margin-bottom: 10px;
}
.down_item p {
color: #777;
margin-bottom: 8px;
}
.btn {
display: inline-block;
margin-top: 15px;
padding: 10px 25px;
background: #b98c5b;
color: #fff;
border-radius: 6px;
cursor: pointer;
text-decoration: none;
}
.btn:hover {
background: #cfa97f;
}

/* 玩法 */
.play_box {
display: flex;
flex-wrap: wrap;
gap: 15px;
justify-content: center;
}
.play_item {
background: #fff;
padding: 15px 25px;
border-radius: 8px;
border: 1px solid #eee;
box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* 动态 */
.news_item {
max-width: 800px;
margin: 0 auto 12px;
padding: 15px 20px;
background: #fff;
border-radius: 6px;
border: 1px solid #eee;
display: flex;
gap: 20px;
}
.news_item span {
color: #b98c5b;
white-space: nowrap;
}

/* 截图 */
.pic_box {
display: flex;
flex-wrap: wrap;
gap: 15px;
justify-content: center;
}
.pic_box img {
width: 260px;
height: 150px;
object-fit: cover;
border-radius: 6px;
border: 1px solid #eee;
}

/* 评价 */
.comment_box {
max-width: 850px;
margin: 0 auto;
}
.comment_item {
background: #fff;
padding: 22px;
border-radius: 8px;
margin-bottom: 15px;
border: 1px solid #eee;
}
.comment_item h4 {
color: #b98c5b;
margin-bottom: 8px;
}

/* 底部 */
.footer {
background: #4a372e;
color: #ccc;
text-align: center;
padding: 25px 0;
font-size: 14px;
}