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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #3D3D3D;
}

@font-face {
    font-family: 'Alimama ShuHeiTi';
    src: url('./fonts/AlimamaShuHeiTi-Bold.ttf') format('truetype');
}

/* 顶部区域 */
.top_warp {
    min-height: 100vh;
    background-image: url('./static/img/topbanck.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 5%;
}

/* 头部导航 */
.head {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.left {
    display: flex;
    align-items: center;
}

.left img {
    width: 40px;
    height: 40px;
}

.left .title {
    margin-left: 10px;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 500;
    color: #3D3D3D;
}

.right a {
    text-decoration: none;
    color: #3D3D3D;
    font-size: 18px;
    font-weight: 500;
    margin-left: 40px;
}

.right a:hover {
    color: #FF5B89;
}

/* 中心内容区 */
.center {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 10vh;
}

.synopsis .logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.synopsis .logo img {
    width: clamp(60px, 8vw, 92px);
    height: clamp(60px, 8vw, 92px);
}

.synopsis .logo b {
    margin-left: 20px;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 500;
    color: #3D3D3D;
}

.synwarp {
    max-width: 700px;
    margin-bottom: 40px;
}

.synwarp p {
    color: #3D3D3D;
    font-size: clamp(18px, 2.5vw, 32px);
    line-height: 1.8;
}

.center .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    max-width: 100%;
    height: 60px;
    background: linear-gradient(0deg, #FF5B89 8%, #FF98B8 125%), #FF6F97;
    border-radius: 12px;
    margin-bottom: 20px;
    margin-right: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.center .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 91, 137, 0.3);
}

.center .btn .iosimg,
.center .btn .andimg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* 中间评价区域 */
.middle {
    padding: 80px 5%;
}

.middle_title {
    text-align: center;
    margin-bottom: 60px;
}

.middle_title .p1 {
    font-family: 'Alimama ShuHeiTi', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: bold;
    color: #282D6C;
}

.middle_title .p2 {
    font-size: clamp(20px, 3vw, 36px);
    font-weight: bold;
    color: #282D6C;
    margin-top: 15px;
}

/* 人物评价 */
.people {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.people_item {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.people_item:hover {
    transform: translateY(-5px);
}

.people_item .top {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 20px;
}

.people_item img {
    width: 120px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
}

.namewarp {
    font-family: 'Alimama ShuHeiTi', sans-serif;
    font-weight: bold;
    color: #282D6C;
}

.namewarp .name {
    font-size: 24px;
    margin-bottom: 5px;
}

.namewarp .work {
    font-size: 16px;
    opacity: 0.8;
}

.people .characters {
    font-size: 16px;
    font-weight: 300;
    color: #3D3D3D;
    line-height: 1.8;
}

/* 底部区域 */
.foot {
    background-image: url('./static/img/footbank.png');
    background-size: cover;
    background-position: center;
    padding: 60px 5% 30px;
}

.foot_top {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.foot ._left .left_top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.foot ._left .left_top img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.foot ._left .left_top p {
    font-size: clamp(24px, 3vw, 36px);
    color: #FFFFFF;
    font-weight: 500;
}

.foot_top .left_bottom {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.8;
    opacity: 0.9;
}

.foot ._center {
    color: #FFFFFF;
}

.foot ._center .product {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.foot ._center .gesala {
    font-size: 16px;
    margin-bottom: 15px;
}

.foot ._center img {
    width: 120px;
    margin-top: 10px;
    border-radius: 8px;
}

.foot .right {
    color: #FFFFFF;
}

.foot .right .we {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.foot .right .ite {
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* 底部版权 */
.foot_bott {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    margin-top: 20px;
}

.foot_bott .information {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 2;
}

.foot_bott .information a {
    text-decoration: none;
    color: #FFFFFF;
}

.foot_bott .information a:hover {
    text-decoration: underline;
}

.foot_bott .copy {
    margin-bottom: 10px;
}

/* 响应式适配 */
@media (max-width: 1024px) {
    .top_warp {
        padding: 30px 5%;
    }
    
    .center {
        padding-top: 8vh;
    }
    
    .people_item img {
        width: 100px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .head {
        justify-content: center;
        text-align: center;
    }
    
    .right {
        width: 100%;
        text-align: center;
    }
    
    .right a {
        margin: 0 15px;
    }
    
    .synopsis {
        text-align: center;
    }
    
    .synopsis .logo {
        justify-content: center;
    }
    
    .synwarp {
        margin-left: auto;
        margin-right: auto;
    }
    
    .center .btn {
        width: 100%;
        max-width: 300px;
        margin-right: 0;
    }
    
    .people_item .top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .foot_top {
        text-align: center;
    }
    
    .foot ._left .left_top {
        justify-content: center;
    }
    
    .foot_bott .information {
        font-size: 12px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .top_warp {
        min-height: auto;
        padding: 20px 4%;
        padding-bottom: 60px;
    }
    
    .left .title {
        font-size: 14px;
    }
    
    .right a {
        font-size: 14px;
        margin: 0 10px;
    }
    
    .middle {
        padding: 40px 4%;
    }
    
    .people {
        grid-template-columns: 1fr;
    }
    
    .foot {
        padding: 40px 4% 20px;
    }
}
