/* 全局样式 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: white;
    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%;
     /* 从上到下的渐变：#2969FF 到 #349DFF */
    background: linear-gradient(to bottom, #2969FF, #349DFF);
    color: white; /* 文本颜色，与背景形成对比 */
    background-size: cover;
    z-index: 0;
}

/* 主内容容器 */
.content-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 71px;
    padding-left: 96px;
    padding-right: 100px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    gap: 60px;
}


.phone-container {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
    align-self: flex-end;
}

.phone-image {
    width: 100%;
    height: auto;
    margin-right: 165px;
    border-radius: 15px;
    position: relative;
}

/* 右侧内容区 */
.product-info {
    flex: 1;
    display: flex;
    width: 100%;
    padding-top: 181px;
    flex-direction: column;
}

.logo-title-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}


.product-info h1 {
    font-size: 36px;
    margin: 0;
    font-family: Lato, Lato;
    font-weight: 1200;
    font-size: 100px;
    color: #FFFFFF;
    line-height: 90px;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.text-content {
    margin-bottom: 65px;
    font-family: Lato, Lato;
    font-weight: 700;
    font-size: 80px;
    color: #000000;
    line-height: 110px;
    text-align: left;
    align-items: center; /* 垂直居中 */
    font-style: normal;
    text-transform: none;
}

.tagline {
    margin: 0px 0 0px 0;
    font-family: Lato, Lato;
    font-weight: 400;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 60px;
    text-align: left;
    align-items: center; /* 垂直居中 */
    font-style: normal;
    text-transform: none;
}

/* 每个“图标+文本”的项 */
.feature-item {
  margin: 0px 0 0px 0;
  display: flex;           /* 启用 Flex 布局 */
  align-items: center;     /* 垂直居中对齐 */
  margin-bottom: 0px;     /* 项之间的间距 */
  text-align: left;
  font-family: Lato, Lato;
  font-size: 26px;
  color: #FFFFFF;
}

/* 图标样式（可根据实际图标调整尺寸、间距） */
.feature-icon {
  width: 36px;
  height: 36px;
  margin-right: 15px;      /* 图标与文本的水平间距 */
}

.tagsmall {
    margin: 10px 0 10px 0;
    font-family: Lato, Lato;
    font-weight: 400;
    font-size: 40px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.download-btn {
    background: #FFFFFF;
    border-radius: 100px 100px 100px 100px;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    width: 640px;
    transition: all 0.3s ease;
    font-family: Lato, Lato;
    font-weight: 800;
    color: #1C4FC7;
    line-height: 80px;
    text-align: center;
    font-size: 50px;
    font-style: normal;
    text-transform: none;
}

.download-btn:hover {
    transform: translateY(-3px);
}


.footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 150px;
    padding-bottom: 44px;
    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 10px;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-links a {
    text-decoration: none;
    font-family: Lato, Lato;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 36px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    font-weight: 700;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        padding: 100px 20px 15% 20px;
        /* 调整padding */
    }

    .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;
    }
}