/* 通用样式 */
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;
}

/* 下载页面样式 */
.download-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 80%;
    margin: 0 auto 10px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background-color: #2196F3;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.download-btn:hover {
    background-color: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.download-btn img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.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;
}