/* 基础 */
* {margin:0; padding:0; box-sizing:border-box; font-family: "Microsoft YaHei", sans-serif;}
body {line-height:1.6; background:#fff; color:#333;}
a {text-decoration:none; color:inherit;}

/* 头部 */
header {position:relative; width:100%;}
.logo {font-size:24px; font-weight:bold; padding:15px 20px; color:#FFD700;}
nav ul {display:flex; list-style:none; background:#333; justify-content:center;}
nav li {margin:0 15px;}
nav a {color:#FFD700; font-weight:bold; padding:15px 5px; display:block;}
nav a:hover {color:#fff;}

/* 横幅 */
.banner {position:relative; overflow:hidden;}
.banner .slides img {width:100%; display:none;}
.banner .slides img.active {display:block;}
.banner-btn {position:absolute; top:50%; width:100%; display:flex; justify-content:space-between;}
.banner-btn button {background:rgba(0,0,0,0.5); border:none; color:#FFD700; font-size:24px; padding:10px; cursor:pointer;}

/* section 公共 */
.section {padding:50px 20px;}
.section-light {background:#fff8e1;}
.section-gold {background:#fff3cd;}

/* 下载注册按钮组 */
.btn-group {display:flex; flex-wrap:wrap; gap:20px; justify-content:center; margin-top:20px;}
.btn {background:#FFD700; color:#333; padding:15px 30px; border-radius:5px; font-size:16px; transition:all 0.3s;}
.btn:hover {background:#FFC107; transform:translateY(-3px);}

/* 公司介绍 */
.company-content {display:flex; flex-wrap:wrap; gap:20px; align-items:center;}
.company-content .text {flex:1; min-width:300px;}
.company-content .image {flex:1; min-width:300px;}
.company-content img {width:100%; height:auto; border-radius:8px;}

/* 联系公司 */
.contact-content {display:flex; flex-wrap:wrap; gap:20px; align-items:center;}
.contact-content .image {flex:1; min-width:300px;}
.contact-content .info {flex:1; min-width:300px; font-size:16px; line-height:2;}
.contact-content img {width:100%; height:auto; border-radius:8px;}

/* 游戏推荐 */
.game-list {display:flex; flex-wrap:wrap; gap:20px; justify-content:center;}
.game {width:180px; text-align:center; background:#fff7e6; padding:10px; border-radius:5px;}
.game img {width:100%; height:150px; object-fit:cover; border-radius:5px;}
.game p {margin-top:10px; font-weight:bold;}

/* 公司风采 */
.style-list {display:flex; flex-wrap:wrap; gap:20px; justify-content:center;}
.style-item {width:200px; text-align:center; background:#fff7e6; padding:10px; border-radius:5px; height:250px; display:flex; flex-direction:column; align-items:center;}
.style-item img {width:100%; height:150px; object-fit:cover; border-radius:5px;}

/* 底部 */
footer {text-align:center; padding:20px; background:#333; color:#FFD700;}

/* 返回顶部按钮 */
#toTop {position:fixed; bottom:30px; right:30px; width:50px; height:50px; background:#FFD700; border-radius:50%; display:flex; justify-content:center; align-items:center; cursor:pointer; font-size:24px; color:#333;}
#toTop:hover {background:#FFC107;}
