/* 全局样式 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #DDEDFB;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.blue-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/icon_bg.png');
    background-size: cover;
    z-index: 0;
}

/* 主内容容器 */
.content-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-left: 90px;
    padding-right: 30px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    gap: 10px;
}

.phone-container {
    flex: 0.8;
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
    order: 2;
}

.phone-image {
    width: 95%;
    height: auto;
    position: relative;
    max-width: 735px;
}


/* 左侧内容区 */
.product-info {
    flex: 1.2;
    display: flex;
    width: 100%;
    padding-top: 161px;
    flex-direction: column;
    order: 1;
}

.logo-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 27px;
}

.header-logo {
    height: 66px;
    width: 66px;
}

.logo-title-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 39px;
    justify-content: flex-start;
}

.product-info h1 {
    margin: 0;
    font-family: Lato, Lato;
    line-height: 90px;
    font-style: normal;
    text-transform: none;
    justify-content: flex-start;
    font-size: 70px;
    color: #000000;
    text-align: left;
}

.text-content {
    margin-bottom: 39px;
    font-family: Lato, Lato;
    font-weight: 700;
    font-size: 80px;
    color: #000000;
    line-height: 110px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    justify-content: flex-start;
}

.tagline {
    margin: 12px 0 29px 0;
    font-family: Lato, Lato;
    font-weight: 400;
    font-size: 40px;
    line-height: 60px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    justify-content: flex-start;
    font-family: Lato, Lato;
    color: #1B58FF;
}

.download-btn {
    background: #1B58FF;
    border-radius: 20px 20px 20px 20px;
    border: none;
    cursor: pointer;
    width: 350px;
    transition: all 0.3s ease;
    font-family: Lato, Lato;
    line-height: 110px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    justify-content: flex-start;
    font-family: Lato, Lato;
    font-weight: 400;
    font-size: 40px;
    color: #DDEDFB;

}

.download-btn:hover {
    transform: translateY(-3px);
}

.footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 90px;
    padding-bottom: 99px;
    min-height: 25px;
    z-index: 3;
}

.footer-card {
    width: auto;
    margin: 0;
    position: relative;
}

.footer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 2px;
}

.footer-text-bg {
    position: relative;
}

.footer-links {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    position: relative;
    height: 36px;
    padding-left: 0;
}

.footer-links .right-links a:first-child::after {
    content: "|";
    margin: 0 30px;
    font-weight: 700;
    font-size: 30px;
    font-family: Lato, Lato;
    color: #000000;
    line-height: 36px;
}

.footer-links a {
    text-decoration: none;
    font-family: Lato, Lato;
    font-size: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    font-weight: 700;
    font-family: Lato, Lato;
    color: #000000;
    line-height: 36px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 1000px) {
    .content-container {
        flex-direction: column;
    }

    .phone-container {
        margin-bottom: -15%;
        align-self: center;
    }

    .phone-image {
        margin-right: 0;
        top: 15%;
    }

    .product-info {
        align-items: center;
        text-align: center;
    }

    .download-btn {
        width: 100%;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        height: auto;
    }

    .footer-links span,
    .footer-links .right-links {
        position: static;
        margin: 10px 0;
    }

    .footer-text-bg {
        padding: 30px 0;
    }

    .footer {
        padding-left: 20px;
    }
}