/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
	position: relative;
}
.f-list{
	display: flex;
	flex-direction: column;
}
.f-list-item{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.btn-primary:hover {
   background:  linear-gradient( 133deg, #3483FA 0%, #73B2FF 100%), #D8D8D8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-submit {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.btn-submit:hover {
   background:  linear-gradient( 133deg, #3483FA 0%, #73B2FF 100%), #D8D8D8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #005ABC;
}

.btn-orange {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
	width: 400px;
    animation: breathe-orange 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: linear-gradient(135deg, #f7931e, #e67e22);
    animation-play-state: paused;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.btn-full {
    width: 100%;
}

.btn-login {
    background: #fff;
    color: #007bff;
    /* border: 1px solid #007bff; */
}

.btn-login:hover {
    background: #007bff;
    color: white;
}

.btn-register {
    background: #007bff;
    color: white;
}

.btn-register:hover {
    background: #0056b3;
}

.btn2 {
	margin-top: 10px;
    display: inline-block;
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-register2 {
    background: #007bff;
    color: white;
	border-radius: 50px;
	width: 200px;
	transform-origin: center;
	animation: breathe 3s ease-in-out infinite;
}

.btn-register2:hover {
    background: #0056b3;
	/* animation-play-state: paused; */
}

/* 定义呼吸灯动画 */
@keyframes breathe {
    0% {
        /* 基础状态：正常大小，基础发光 */
        background-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        transform: scale(1.1); /* 正常大小 */
    }
    50% {
        /* 中间状态：放大，强发光，颜色变亮 */
        background-color: #4dabf7;
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.8);
        transform: scale(1.05); /* 放大到 105% */
    }
    100% {
        /* 回到起点 */
        background-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        transform: scale(1);
    }
}

/* 橙色按钮呼吸灯动画 */
@keyframes breathe-orange {
    0% {
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    }
    50% {
        background: linear-gradient(135deg, #ff8c42, #ffa726);
        box-shadow: 0 0 25px rgba(255, 107, 53, 0.6);
        transform: scale(1.02);
    }
    100% {
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    }
}


.btn-project {
    background: linear-gradient( 90deg, #4890FF 0%, #386BFF 100%);
    color: white;
    padding: 8px 16px;
    font-size: 12px;
	border-radius: 50px;
}

.btn-apple {
    background: #000;
    color: white;
    padding: 12px 24px;
}

.btn-verification {
    /* background: #007bff; */
    color: #007bff;
    /* padding: 8px 16px; */
    font-size: 12px;
    border-radius: 4px;
}

/* 头部导航 */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 120px;
    height: 40px;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
}

.logo-domain {
    font-size: 12px;
    color: #666;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    /* 确保子元素过渡效果平滑 */
    will-change: transform;
}

.nav-list li {
    /* 防止子元素过渡时的布局抖动 */
    transform: translateZ(0);
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 12px 10px 12px;
    display: inline-block;
    /* 确保颜色过渡平滑 */
    will-change: color;
    /* 防止字体渲染时的闪烁 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #007bff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* transform: translateX(-50%); */
    opacity: 0;
}

.nav-link:hover {
    color: #007bff;
}

.nav-link:hover::after {
    left: 0;
    right: 0;
    opacity: 0.5;
}

.nav-link.active {
    color: #007bff;
}

.nav-link.active::after {
    left: 0;
    right: 0;
    opacity: 1;
    /* 确保激活状态的下划线更加明显 */
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}



.hero {
    position: relative;
    height: 500px;
    /* overflow: hidden; */
    margin-top: 70px;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: grab;
}

.hero-banner:active {
    cursor: grabbing;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner控制按钮 */
.banner-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.banner-prev,
.banner-next {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.banner-prev:hover,
.banner-next:hover {
    background: white;
    transform: scale(1.1);
}

/* Banner指示点 */
.banner-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 42px;
    height: 2px;
    /* border-radius: 50%; */
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* 功能卡片 */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 14px;
}



/* 项目区域 */
.projects {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    /* margin-bottom: 50px; */
    color: #333;
}

.project-tabs {
	
	display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
.tab-bg{
	background-color: #ECF1F9;
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
	border-radius: 20px;
	gap: 20px;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    /* background: #f8f9fa; */
    color: #666;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #0073D3;
    color: white;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.tab-div.active{
    /* background: #0073D3; */
	border-bottom: #0073D3 2px solid;
    color: #0073D3;
	
}
.tab-div:hover {
    /* background: #0073D3; */
	border-bottom: #0073D3 2px solid;
    color: #0073D3;
	transform: translateY(-10px);
	
}
.tab-div {
    padding: 12px 24px;
    border: none;
    /* background: #f8f9fa; */
    color: #666;
    /* border-radius: 50px; */
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-50px);
	background-color: #eafcff;
}



.project-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.project-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

/* 平台介绍 */
.platform {
    padding: 80px 0;
    /* background: #f8f9fa; */
	background-image: url('../img/index/jjbg.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	height: 880px;
}

.platform-desc {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
}

.app-screenshots-container {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    width: 100%;
    max-width: 880px; /* 4张图片的宽度：(190px + 30px) * 4 - 30px = 880px */
    margin-left: auto;
    margin-right: auto;
}

.app-screenshots {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
    width: fit-content;
}

.screenshot-item {
    text-align: center;
    flex-shrink: 0;
    width: 200px;
}

.screenshot-item img {
    /* width: 390px; */
    height: 400px;
    border-radius: 20px;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: translateY(-20px);
}

.screenshot-item span {
    font-size: 14px;
    color: #666;
    display: block;
}

.screenshot-nav {
    position: absolute;
    top: 280px;
	
    /* transform: translateY(-50%); */
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.screenshot-prev,
.screenshot-next {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 10;
}

.screenshot-prev:hover,
.screenshot-next:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.screenshot-prev i,
.screenshot-next i {
    color: #333;
    font-size: 18px;
}

.screenshot-prev {
    left: -25px;
}

.screenshot-next {
    right: -25px;
}

/* 图片查看器样式 */
.image-viewer-content {
    background: #fff;
    border-radius: 16px;
    /* width: 90%; */
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


.image-viewer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 16px;
}

.image-counter {
    font-size: 14px;
    color: #666;
}

.image-viewer-close {
    border: none;
    background: rgba(0,0,0,0.05);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.image-viewer-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    /* background: #000; */
}
.project-icon img{
    width: 100px;
    height: 100px;
    border-radius: 10px;
    
}

.image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

/* 简化模式：无左右切换按钮 */

/* 简化模式：无缩略图区域 */

.platform-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: white; */
    /* padding: 40px; */
	margin-top: 60px;
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}
.left-pl{
	display: flex;
	align-items: center;
}

.platform-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.platform-text p {
    color: #666;
    margin-bottom: 20px;
	/* margin-left: 20px; */
	
}

.category-buttons {
    display: flex;
    gap: 15px;
}

.category-btn {
    padding: 8px 16px;
    border: 1px solid #0E4D87;
    background: white;
    color: #0E4D87;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    /* border-color: #0E4D87;
    color: #0E4D87; */
}

/* 贴牌服务 */
.franchise {
    padding: 80px 0;
    background: white;
}

.franchise-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
	
}

.franchise-content {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center; */
	display: flex;
	align-items:center;
	justify-content: center;
}

.franchise-list {
    list-style: none;
}

.franchise-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.franchise-list li:last-child {
    border-bottom: none;
}

.franchise-list strong {
    color: #333;
}

/* 状态按钮样式 */
.status-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 12px;
    cursor: default;
}
.f-title{
	font-size: 14px;
	color: #565656;
}

.status-true {
    background-color: #ff6b35;
    color: white;
}

.status-false {
    background-color: #6c757d;
    color: white;
}

.network-illustration {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.network-illustration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* 申请表单 */
.application {
    padding: 80px 0;
    background: #f8f9fa;
}

.application-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.application-form h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.form-group2 {
    margin-bottom: 20px;
	
}
.form-group2 label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}
.form-group2 textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
	background-color: #F6F6F6;
	height: 100px;
	resize: vertical;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 60%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
	text-align: right;
}
.form-group textarea {
    background-color: #F6F6F6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-select {
    padding: 12px;
    /* border: 1px solid #ddd; */
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

.selected {
    color: #007bff;
    font-weight: 500;
}

/* APP下载页面 */
.download-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-top: 70px;
}

.download-hero {
    text-align: center;
    margin-bottom: 80px;
}

.download-hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.download-hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 50px;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.qr-section {
    text-align: center;
}

.qr-code {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.qr-code img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background: white;
    padding: 20px;
}

.qr-code i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #007bff;
}

.phone-mockups {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.phone-mockup {
    transform: rotate(-5deg);
}

.phone-mockup:nth-child(2) {
    transform: rotate(5deg);
}

.phone-mockup img {
    width: 200px;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.download-methods {
    background: white;
    color: #333;
    padding: 60px 0;
}

.download-methods h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.download-methods > p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.download-option {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.download-option:hover {
    transform: translateY(-5px);
}

.store-logo {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #007bff;
}

.store-logo.xiaomi {
    background: #ff6b35;
    color: white;
    font-weight: bold;
}

.apple-download {
    text-align: center;
}

.apple-download h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.apple-download p {
    color: #666;
    margin-bottom: 20px;
}

/* 注册弹窗 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;

}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.modal-header {
    color: white;
    padding: 0;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.modal-header {
    position: relative;
}

.modal-header img {
    width: 100%;
    height: auto;
    /* border-radius: 20px 20px 0 0; */
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-body {
	position: relative;
	z-index: 88888;
	background-color: #fff;
    padding: 40px 30px;
	margin-top: -120px;
	border-radius: 20px;
}

.modal-body h3 {
    text-align: left;
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
    font-weight: bold;
}

.register-form .input-field {
    margin-bottom: 20px;
	background-color: #F5F7FA;
	border-radius: 10px;
}

.register-form .input-field input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
	background-color: #F5F7FA;
}

.register-form .input-field input:focus {
    outline: none;
    border-color: #0073D3;
    box-shadow: 0 0 0 3px rgba(0, 115, 211, 0.1);
}

.register-form .input-field input::placeholder {
    color: #999;
}

.verification-field {
    display: flex;
    gap: 10px;
}

.verification-field input {
    flex: 1;
}

.form-agreement {
    margin: 20px 0;
    font-size: 14px;
    color: #666;
    text-align: center;
}
.linebtn{
	display: flex;
	align-items: center;
	color: #d4d4d4;
}

.form-agreement label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.form-agreement input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: #0073D3;
}

.form-agreement a {
    color: #F7A16C;
    text-decoration: none;
    font-weight: 500;
}

.form-agreement a:hover {
    text-decoration: underline;
}

.form-login-link {
    text-align: center;
    margin-top: 20px;
}

.form-login-link a {
    color: #0073D3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.form-login-link a:hover {
    text-decoration: underline;
}

.form-login-link i {
    font-size: 12px;
}

/* 底部 */
.footer {
    background: #232834;
    color: white;
    padding: 60px 0 20px;
}
.newclik{
	display: flex; width: 70%;flex-wrap: wrap;margin-top: -150px;
}
.newclik p{
	width: 40%;
	margin-bottom: 20px;
	margin-right: 20px;
	color: #bdc3c7;
	margin-bottom: 10px;
	font-size: 14px;
}
/* .footer-section p {
    color: #bdc3c7;
    margin-bottom: 10px;
    font-size: 14px;
} */
.newclik p:hover{
    color: #007bff;
   
}

.footer-content {
	display: flex;
	justify-content: space-between;
   /* display: grid;
   grid-template-columns: repeat(6, 0fr);
    /* gap: 30px; */
    margin-bottom: 40px;
}
.footer-t {
    position: relative;
    cursor: pointer;
	margin-bottom: 20px;
}
.footer-t:hover {
    color: #007bff; 
	transform: translateY(-5px);
}

.footer-t::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
    opacity: 0;
}
.m-left{
	margin-left: 30px;
}
.footer-t:hover::after {
	/* color: #007bff; */
    width: 100px;
    opacity: 1;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 10px;
    font-size: 14px;
}
.footer-section p:hover{
    color: #007bff;
   
}

.wechat-qr img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 12px;
    margin-bottom: 5px;
}

/* 固定底部推广栏 */
.sticky-promotion {
    position: fixed;
    bottom: 0;
    left: 100px;
    right: 100px;
    height: 150px; 
    color: white;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 20px;
}

.sticky-promotion img {
    width: 100%;
    height: 100%;
	position: relative;
	border-radius: 20px 20px 0px 0px;
    /* object-fit: cover; */
}

.s-text{
	position: absolute;
	right: 200px;
	/* display: flex;
	align-items: center;
	justify-content: space-between; */
	/* margin-left: 100px; */
	display: flex;
	flex-direction: column;
}
.s-text h2{
	color: #000;
	font-size: 17px;
}
.s-text p{
	color: #000;
	font-size: 12px;
}
.s-text span{
	color: #34495e;
	font-size: 12px;
}


.promotion-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promotion-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.promotion-text p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 2px;
}

.promotion-phone img {
    width: 60px;
    height: 120px;
    border-radius: 10px;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

.animate-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* 工具类 */
.text-center {
    text-align: center;
}

.tt{
	margin-top: 20px;
	font-weight: 500;
	font-size: 12px;
	color: #666666;
}
.num{
	color:#FF7300;
}
.price{
	font-weight: 500;
	font-size: 15px;
	color: #FF2424;
	margin-bottom: 10px;
}
.dan{
	color: #666666;
	font-size: 13px;
}

.line {
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-l {
  width: 40%;
  height: 1px;
  background-color: #3E79FF;
}

.dotl {
  width: 3px;
  height:3px;
  background-color: blue;
  border-radius: 50%;
  /* margin: 0 10px; */
}
.cdotl{
	width: 5px;
	height:5px;
	background-color: blue;
	border-radius: 50%;
}
.centerdot{
	background-color: #3E79FF;
	margin: 0 10px;
}

.dot1l {
  background-color: #3E79FF;
}

.dot2r {
  background-color: #3E79FF;
}
.pos-card{
	position: relative;
	z-index: 99;
	margin-top: -55px;
}
.po-ca-list{
	display: flex;
	justify-content: space-around;
	border-radius: 10px;
	padding: 15px 10px;
	align-items:center;
	background: linear-gradient( 180deg, #F2F8FF 0%, #FFFFFF 100%);
	box-shadow: 0px 5px 11px 0px rgba(3,61,148,0.14); 
	margin: 0 200px;
	/* width: 80%; */
}
.carditem{
	/* margin: 10px; */
	display: flex;
	align-items:center;
	padding: 10px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.carditem:hover {
	background-color: rgba(0, 115, 211, 0.05);
	transform: translateY(-10px);
}

.carditem.selected {
	background: linear-gradient(135deg, #3E79FF, #3E79FF);
	/* background: #3E79FF; */
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
	transform: translateY(-3px);
}

.carditem.selected .card-t1 {
	color: white;
}

.carditem.selected .card-t2 {
	color: rgba(255, 255, 255, 0.9);
}
.i-left img{
	/* margin-top: 5px; */
	width: 50px;
	height: 50px;
	margin-right: 10px;
}
.card-t1{
	font-weight: 400;
	font-size: 16px;
	color: #333333;
	margin-bottom: 5px;
}
.card-t2{
	font-weight: 400;
	font-size: 10px;
	color: #61718F;
}
.download{
	/* background-image: url(); */
}
.app-header{
	background-image: url('../img/index/app.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.ap-left h1{
	font-weight: bold;
	font-size: 30px;
	color: #FFFFFF;
	margin-bottom: 30px;
}
.ap-left h5{
	font-weight: bold;
	font-size: 20px;
	color: #B6DDFC;
	margin-bottom: 30px;
}
.ap-left img{
	width: 180px;
	height: 180px;
}
.ap-right img{
	width: 600px;
	height: 600px;
}
.other-ap{
	padding-top: 20px;
}
.other-ap p{
	text-align: center;
}

/* 下载选项样式 */
.download-options {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 30px 0;
}

.download-row {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.download-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
	background: white;
	border-radius: 12px;
	padding: 45px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
	width: 200px;
}

.download-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.download-card img {
	width: 50px;
	height: 50px;
	margin-bottom: 10px;
}

.download-card p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	/* max-width: 400px; */
}

/* 苹果下载卡片特殊样式 */
.apple-card {
	background: white;
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	width: 400px;
	/* margin: 0 auto; */
}

.apple-header h4 {
	margin: 0 0 5px 0;
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.apple-header p {
	margin: 0 0 20px 0;
	font-size: 12px;
	color: #666;
}

.btn-apple {
	background: #000;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.btn-apple:hover {
	background: #333;
	transform: translateY(-2px);
}

.btn-apple img {
	width: 20px;
	height: 20px;
	margin: 0;
}

/* 仪表板预览 */
.dashboard-preview {
	text-align: center;
	margin-top: 40px;
}

.dashboard-preview img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
/* 响应式设计将在responsive.css中处理 */ 