body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f7f8fa;
}
.home-container {
    padding: 20px;
    min-height: 100vh;
}
.search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 6px 12px;
    margin-bottom: 20px;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
}
.search-bar .search-icon {
    margin-right: 10px;
    color: #999;
}
.search-bar span {
    font-size: 16px;
    color: #666;
}
.card-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 90%;
    margin: 0 auto;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    height: 62px;
}
.card-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 62px;
}
.card-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}
.card-desc {
    font-size: 16px;
    color: #999;
    margin: 0;
}
.card-icon {
    width: 62px;
    height: 62px;
    border-radius: 10px;
}

.wx-card {
    width: 90%;
}

.wx-card > script + div {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    width: 90% !important;
    height: 62px !important;
}

.wx-card > script + div > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 62px !important;
}

.wx-card > script + div > div:first-child > div:first-child,
.wx-card > script + div > div:first-child > div:last-child {
    font-size: 16px !important;
    margin: 0 !important;
}

.wx-card > script + div > div:first-child > div:first-child {
    font-weight: bold !important;
    color: #333 !important;
}

.wx-card > script + div > div:first-child > div:last-child {
    color: #999 !important;
}

.wx-card > script + div > img {
    width: 62px !important;
    height: 62px !important;
    border-radius: 10px !important;
}

/* 激活页面样式 - 移动端优化 */
.activation-container {
    width: 90%;
    height: 100%;
    padding: 30px 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.activation-info {
    color: #666;
    margin-bottom: 30px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
}

.activation-btn {
    display: block;
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    -webkit-appearance: none;
}

.activation-btn:active {
    background-color: #0d5bba;
}

.skip-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: transparent;
    color: #1a73e8;
    border: 1px solid #1a73e8;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-appearance: none;
}

.skip-btn:active {
    background-color: #f0f6ff;
}

/* 移动端适配增强 */
@media (max-width: 480px) {
    .activation-container {
        margin: 12px auto;
        padding: 16px 12px;
    }

    .activation-container h2 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .activation-info {
        font-size: 18px;
        padding: 10px;
        margin-bottom: 16px;
        line-height: 2;
    }

    .activation-btn,
    .skip-btn {
        padding: 12px;
        font-size: 15px;
    }
}