/* 全局样式 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #FFFFFF;
    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/ic_bg.png');
    background-size: cover;
    z-index: 0;
}


.content-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-left: 70px;
    padding-right: 100px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    gap: 60px;
    margin: 0 auto;
}


.phone-container {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.phone-image {
    width: 95%;
    height: auto;
    position: relative;
    margin-top: 62px;
    max-height: 800px;
}


.product-info {
    flex: 1;
    display: flex;
    width: 100%;
    padding-top: 56px;
    flex-direction: column;
}

.logo-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 121px;
}

.header-logo {
    height: 72px;
    width: 72px;
}

.logo-title-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 39px;
    justify-content: flex-start;
    margin: 0 auto;
}


.product-info h1 {
    margin: 0;
    font-family: Lato, Lato;
    color: #272727;
    line-height: 90px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    justify-content: flex-start;
    font-weight: 900;
    font-size: 60px;
}


.red-text {
    color: #FF0000;
}

  /* 通知容器样式（可模拟截图的边框/背景） */
.important-notice {
    text-align: center; /* 核心：让内部所有文本水平居中 */
    width: 100%; /* 容器宽度（可根据需求调整，如截图的网格宽度） */
    padding: 0.6rem; /* 内边距，还原截图的文本与边框间距 */
}

  /* IMPORTANT NOTICE 标题样式（让其单独占一行） */
.important-notice__title {
    display: block;
    font-size: 30px;
    font-weight: bold; /* 标题加粗，更接近截图视觉 */
    margin-bottom: 0.5rem; /* 与下方文本的间距 */
}

  /* 段落样式（控制行间距） */
.important-notice p {
    margin: 0.2rem 0; /* 段落之间的垂直间距 */
    line-height: 1.4; /* 文本行高，提升可读性 */
}

.text-content {
    margin-bottom: 20px;
    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;
    margin: 0 auto;
}

.tagline {
    margin: 0 0 0px 0;
    font-family: Lato, Lato;
    text-align: left;
    font-style: normal;
    text-transform: none;
    justify-content: flex-start;
    font-weight: 500;
    font-size: 60px;
    color: #204BED;
    line-height: 36px;
    margin-top: 0px;
}

.download-btn {
    background: #357CFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 77px 77px 77px 77px;
    border: none;
    cursor: pointer;
    width: 460px;
    transition: all 0.3s ease;
    font-family: Lato, Lato;
    line-height: 100px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    justify-content: flex-start;
    font-weight: 500;
    font-size: 45px;
    color: #FFFFFF;
    /* 关键：水平居中 */
    margin: 0 auto; /* 左右margin自动分配，实现水平居中 */
    display: block; /* 确保按钮为块级元素（部分场景下默认可能为inline-block） */
}

.download-btn:hover {
    transform: translateY(-3px);
}


.footer {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 50px;
    padding-right: 82px;
    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: center;
    margin: 0;
    position: relative;
    height: 36px;
    padding-left: 0;
}

.footer-links .right-links a:first-child::after {
    content: "|";
    margin: 0 39px;
    font-weight: 500;
    font-size: 30px;
    color: #666666;
}

.footer-links a {
    text-decoration: none;
    font-family: Lato, Lato;
    font-weight: 500;
    font-size: 30px;
    color: #666666;
    line-height: 36px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    -webkit-text-stroke: 1px #666666;
}

.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;
    }
}