/* 神岛 Dao3 样式 */
/* ===== 全局 ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:#ffffff;
    color:#1a1a1a;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
    line-height:1.7;
}

/* ===== 导航栏 ===== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:72px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 8%;

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);

    border-bottom:1px solid #ececec;

    z-index:1000;
}

.logo{
    font-size:24px;
    font-weight:700;
}

nav a{
    color:#222;
    text-decoration:none;
    transition:.25s;
}

nav a:hover{
    color:#0066ff;
}
nav a:hover{
    color:#4f8cff;
}

/* ===== 首页 ===== */

.hero{
    min-height:100vh;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    padding:100px 20px;
}

.hero h1{
    font-size:72px;
    margin-bottom:20px;
}

.hero p{
    font-size:12px;
    color:#cbd5e1;
}

.button{
    display:inline-block;

    padding:14px 32px;

    background:#111;

    color:white;

    text-decoration:none;

    border-radius:999px;

    transition:.25s;
}

.button:hover{
    background:#333;
}

/* ===== 地图区 ===== */

.maps{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:120px 0;
}

.maps h2{
    font-size:42px;
    margin-bottom:40px;
}

.map-card{
    background:#102238;
    border-radius:18px;
    padding:35px;
    margin-bottom:30px;
}

.map-card h3{
    font-size:28px;
    margin-bottom:12px;
}

.map-card p{
    color:#b8c6d8;
    margin-bottom:18px;
}

.map-card a{
    color:#4f8cff;
    text-decoration:none;
}
