/* 通用样式 */
body {
    font-family: 'Microsoft YaHei', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    /*max-width: 800px;*/
    width: 100%;
    margin: 0 auto;
    /*padding: 20px;*/
}

.header {
    text-align: center;
    margin-bottom: 5px;
}

.title {
    font-size: 28px;
    margin: 5px 0;
    color: #1565C0;
}

.subtitle {
    font-size: 15px;
    color: #546E7A;
    margin-bottom: 5px;
}

.logo {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    margin: 0 auto;
    background-color: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #455A64;
}
/*===========================*/

.btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    gap: 15px;
}

.btn-row {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 40px;  /* 增加内边距 */
    min-width: 115px;    /* 添加最小宽度 */
    text-align: center;  /* 文字居中 */
    background: #2196F3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #1976D2;
    transform: scale(1.05);
}
/*===========================*/
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2196F3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/*.ad-banner {*/
/*    !*margin: 30px 0;*!*/
/*    margin: 10px 0;*/
/*    !*padding: 15px;*!*/
/*    background-color: #fff;*/
/*    !*border-radius: 10px;*!*/
/*    !*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*!*/
/*    text-align: center;*/
/*}*/

.ad-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.image-container {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* 功能页面样式 */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #2196F3;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.feature-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1565C0;
    text-align: center;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #455A64;
}

/* 技术特点页面样式 */
.tech-list {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.tech-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background-color: #2196F3;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.tech-content {
    flex-grow: 1;
}

.tech-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1565C0;
}

.tech-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #455A64;
}

/* 应用场景页面样式 */
.scenarios {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.scenario {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.scenario:hover {
    transform: translateY(-5px);
}

.scenario-image {
    width: 100%;
    height: 200px;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

.scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.scenario:hover .scenario-image img {
    transform: scale(1.05);
}

.scenario-content {
    padding: 20px;
}

.scenario-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1565C0;
}

.scenario-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #455A64;
}

/* 下载页面样式 */
.app-logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.app-info {
    flex: 1;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.stars {
    color: #FFD700;
    font-size: 16px;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.app-preview {
    margin: 30px 0;
    padding: 0 20px;
}

.preview-images {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.preview-img {
    width: 120px;
    height: 200px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.features-summary {
    margin: 30px 20px;
}

.features-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-tags {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.tag-icon {
    font-size: 18px;
}

.download-section {
    margin: 30px 20px;
}

.download-header {
    text-align: center;
    margin-bottom: 25px;
}

.download-header h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
}

.download-header p {
    color: #666;
    font-size: 14px;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 5px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background-color: white;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.download-btn:hover {
    border-color: #2196F3;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.15);
    transform: translateY(-2px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.platform-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.platform-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.btn-subtitle {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.download-arrow {
    font-size: 20px;
    color: #2196F3;
    font-weight: bold;
}

.app-info-footer {
    display: flex;
    justify-content: space-around;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-top: 5px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.info-label {
    font-size: 12px;
    color: #666;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Android下载页面样式 */
.app-download-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.header-content {
    flex: 1;
}

.version-info {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.version-badge, .security-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.version-badge {
    background-color: #e3f2fd;
    color: #1976d2;
}

.security-badge {
    background-color: #e8f5e8;
    color: #2e7d32;
}

.tutorial-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
    margin: 10px 20px;
}

.tutorial-link:hover {
    background-color: #e0e0e0;
    transform: translateY(-1px);
}

.tutorial-icon {
    font-size: 16px;
}

.android-download-section {
    margin: 20px;
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.download-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.app-icon-large {
    flex-shrink: 0;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.download-details h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.download-details p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.download-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555;
}

.stat-icon {
    font-size: 14px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1px;
}

.primary-download-btn, .secondary-download-btn {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.primary-download-btn {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.primary-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.secondary-download-btn {
    background-color: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}

.secondary-download-btn:hover {
    border-color: #2196F3;
    background-color: #f0f8ff;
    transform: translateY(-1px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.btn-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.btn-subtitle {
    font-size: 12px;
    opacity: 0.8;
}

.download-tips {
    display: flex;
    justify-content: space-around;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.tip-icon {
    font-size: 16px;
}

/* Features页面样式 */
.page-header {
    margin-bottom: 30px;
}

.header-nav {
    padding: 0 20px;
    margin-bottom: 20px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #f0f8ff;
    color: #2196F3;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #e3f2fd;
}

.nav-link:hover {
    background-color: #2196F3;
    color: white;
    transform: translateY(-1px);
}

.nav-icon {
    font-size: 16px;
}

.title-section {
    text-align: center;
    padding: 0 20px;
}

.feature-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e3f2fd;
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 15px;
}

.count-number {
    font-size: 20px;
    font-weight: bold;
    color: #2196F3;
}

.count-text {
    font-size: 14px;
    color: #666;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 30px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #2196F3;
}

.feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.feature-card .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.feature-badge {
    background-color: #f0f8ff;
    color: #2196F3;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e3f2fd;
}

.feature-card .feature-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card .feature-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-item {
    background-color: #f8f9fa;
    color: #555;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid #e9ecef;
}

/* Technology页面样式 */
.tech-header {
    margin-bottom: 30px;
}

.tech-title-section {
    text-align: center;
    padding: 0 20px;
}

.tech-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.tech-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.tech-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.tech-stats .stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #2196F3;
}

.tech-stats .stat-label {
    font-size: 12px;
    color: #666;
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 30px;
}

.tech-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.tech-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tech-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 2px solid #e9ecef;
}

.tech-category {
    background-color: #f0f8ff;
    color: #2196F3;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-card .tech-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.tech-card .tech-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-feature {
    background-color: #f8f9fa;
    color: #555;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid #e9ecef;
    font-weight: 500;
}

/* Scenarios页面样式 */
.scenarios-header {
    margin-bottom: 30px;
}

.scenarios-title-section {
    text-align: center;
    padding: 0 20px;
}

.scenarios-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.scenarios-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.scenarios-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.scenarios-stats .stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
}

.scenarios-stats .stat-label {
    font-size: 12px;
    color: #666;
}

.scenarios-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 0 20px;
    margin-bottom: 30px;
}

.scenario-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.scenario-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scenario-card:hover .scenario-image img {
    transform: scale(1.1);
}

.scenario-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8) 0%, rgba(25, 118, 210, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scenario-card:hover .scenario-overlay {
    opacity: 1;
}

.scenario-icon {
    font-size: 48px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.scenario-content {
    padding: 25px;
}

.scenario-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.scenario-title {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.scenario-tag {
    background-color: #e8f5e8;
    color: #4CAF50;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scenario-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.scenario-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-point {
    background-color: #f0f8ff;
    color: #2196F3;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e3f2fd;
}

.qr-code {
    margin: 30px auto;
    width: 200px;
    height: 200px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.features-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
    width: 95%;
}

.feature-tag {
    background-color: #E3F2FD;
    color: #1565C0;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
}

.note {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    line-height: 1.6;
}

/* 倒计时样式 */
.countdown {
    background-color: #e53935;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}

.countdown-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.countdown-timer {
    font-size: 24px;
    font-weight: bold;
}

/* 促销样式 */
.promotion {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-left: 4px solid #e53935;
}

.promotion-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #e53935;
}

.promotion-desc {
    line-height: 1.6;
    margin-bottom: 15px;
}

.promotion-price {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 15px;
}

.new-price {
    font-size: 24px;
    font-weight: bold;
    color: #e53935;
}

/* 评价样式 */
.reviews {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.review {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.review-name {
    font-weight: bold;
}

.review-stars {
    color: #ffc107;
    margin-top: 5px;
}

.review-content {
    line-height: 1.6;
}

/* 微信提示样式 */
.wxTip {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
}

.wxTip .test {
    display: flex;
    justify-content: flex-end;  /* 修改为靠右对齐 */
    padding: 20px 5%;
}

.wxTip .test img {
    width: 200px;
    height: auto;
    margin-top: 20px;
    margin-right: 20px;  /* 添加右侧间距，避免贴边 */
}

/* 应用下载页面样式 */
.template-wrap {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.app-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.template-common {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.t-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.t-icon img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.t-name {
    text-align: center;
    margin-bottom: 15px;
}

.tit {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.name-info {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.template-btn-wrap {
    margin: 10px 0;
    width: 100%;
    max-width: 300px;
}

.ms-btn {
    display: block;
    padding: 15px 12px;
    background-color: #2196F3;
    color: white;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.ms-btn:hover {
    background-color: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.f1 {
    font-weight: 500;
}

/* 应用功能部分 */
.app-features {
    margin: 30px 0;
}

.features-title {
    text-align: center;
    font-size: 24px;
    color: #1565C0;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    color: #1565C0;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 教程入口 */
.tutorial-entry {
    background-color: #E3F2FD;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.tutorial-entry-title {
    font-size: 24px;
    color: #1565C0;
    margin-bottom: 10px;
}

.tutorial-entry-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.tutorial-entry-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2196F3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
}

.tutorial-entry-btn:hover {
    background-color: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* 返回按钮样式 */
.back-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #E3F2FD;
    color: #1565C0;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

/* 悬浮客服按钮样式 */
.float-customer-service {    /* 改名 */
    position: fixed;
    right: 20px;
    top: 20%;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.float-service-icon {    /* 改名 */
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.float-service-text {    /* 改名 */
    display: none; /* 默认隐藏文字 */
    position: absolute;
    right: 55px; /* 图标宽度 + 间距 */
    top: 50%;
    transform: translateY(-50%);
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .float-service-icon {    /* 改名 */
        width: 45px;
        height: 45px;
    }
    .float-service-text {    /* 改名 */
        right: 50px;
    }
}

/* Floating Ad Banner Styles */
.ad-banner-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none; /* Initially hidden */
}

/*.ad-banner {*/
/*    text-align: center;*/
/*    position: relative;*/
/*}*/

.ad-close-btn {
    position: absolute;
    top: -25px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: rgba(0,0,0,0.5);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    cursor: pointer;
    font-size: 16px;
    z-index: 1001;
}


/* Cookie提示样式 */
.cookie-notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff3cd;
    color: #856404;
    padding: 10px 40px 10px 20px;
    z-index: 3000;
    text-align: center;
    font-size: 14px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-notice-text {
    margin: 0;
}

.cookie-notice-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #856404;
    padding: 0;
}
