/* GEO媒体平台页面样式 */

/* 页面标题区域样式 */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #334155 70%, #475569 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.page-hero-bg-2 {
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.page-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 10px 40px rgba(59, 130, 246, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #93c5fd 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-shadow: none;
    filter: drop-shadow(0 2px 10px rgba(59, 130, 246, 0.3));
}

/* 特色标签容器 */
.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* 特色标签基础样式 */
.feature-tag {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.feature-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature-tag:hover::before {
    left: 100%;
}

.feature-tag:hover {
    transform: translateY(-3px) scale(1.02);
}

/* 标签1样式 - 蓝色系 */
.feature-tag-1 {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #1d4ed8 100%);
    box-shadow: 
        0 0 0 1px rgba(59, 130, 246, 0.5),
        0 8px 32px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 标签2样式 - 紫色系 */
.feature-tag-2 {
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #6d28d9 100%);
    box-shadow: 
        0 0 0 1px rgba(168, 85, 247, 0.5),
        0 8px 32px rgba(168, 85, 247, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 标签3样式 - 绿色系 */
.feature-tag-3 {
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
    box-shadow: 
        0 0 0 1px rgba(16, 185, 129, 0.5),
        0 8px 32px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-labelgeo {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    font-weight: 500;
}

.stat-hover {
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-hover:hover {
    background: #10b4d4;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* 主内容区域 */
.main-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 卡片样式 */
.cp-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 28px;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cp-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.cp-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.cp-card-header .header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cp-card-header .header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.header-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    color: #fff;
}

.header-icon svg {
    width: 20px;
    height: 20px;
}

.header-text {
    display: flex;
    flex-direction: column;
}

.cp-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.cp-card-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 4px 0 0;
}

/* 搜索和列表头部并排 */
.search-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.list-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-section {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    width: 18px;
    height: 18px;
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #1e293b;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #1e293b;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-width: 160px;
}

.filter-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* 按钮样式 */
.cp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cp-btn svg {
    width: 16px;
    height: 16px;
}

.cp-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cp-btn-secondary {
    background: #f1f5f9;
    color: #475569;
}

.cp-btn-secondary:hover {
    background: #e2e8f0;
}

.cp-btn-success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.cp-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.cp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* 用户信息卡片 */
.user-info-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    color: #fff;
}

.user-info-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar svg {
    width: 24px;
    height: 24px;
}

.user-details h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
}

.user-details p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* 列表区域 */
.list-section {
    overflow-x: auto;
}

.table-container {
    min-width: 100%;
}

.cp-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.cp-table thead {
    background: #f8fafc;
}

.cp-table th {
    padding: 14px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
}

.cp-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

.cp-table tbody tr:hover {
    background: #fafafa;
}

.cp-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: #334155;
    text-align: center;
    vertical-align: middle;
}

.name-cell {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link-cell {
    color: #3b82f6;
    text-decoration: none;
    max-width: 100%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link-cell:hover {
    text-decoration: underline;
}

/* 标签样式 */
.type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge-news {
    background: #dbeafe;
    color: #1e40af;
}

.badge-self {
    background: #fef3c7;
    color: #92400e;
}

.geo-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge-geo-yes {
    background: #dcfce7;
    color: #166534;
}

.badge-geo-no {
    background: #fee2e2;
    color: #991b1b;
}

/* 空状态 */
.empty-row td {
    padding: 60px !important;
    text-align: center;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #94a3b8;
}

.empty-state svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.empty-state p {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
}

.empty-hint {
    font-size: 14px !important;
    color: #94a3b8 !important;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #3b82f6;
    color: #3b82f6;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-color: #3b82f6;
    color: #fff;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    padding: 0 16px;
    font-size: 14px;
    color: #64748b;
}

/* 复选框样式 */
.platform-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3b82f6;
}

/* 已选择平台区域 */
.selected-platforms {
    margin-top: 24px;
}

.selected-list {
    overflow-x: auto;
}

.selected-empty {
    text-align: center;
    padding: 20px;
    color: #94a3b8;
}

.selected-table-wrapper {
    overflow-x: auto;
}

.selected-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.selected-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
    background: #f8fafc;
}

.selected-table td {
    padding: 12px 16px;
    font-size: 14px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.selected-table tbody tr:hover {
    background: #fafafa;
}

.remove-btn {
    padding: 6px 12px;
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.remove-btn:hover {
    background: #fecaca;
    transform: translateY(-1px);
}

/* 已选择平台底部操作区域 */
.selected-footer {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    background: #fafafa;
    border-radius: 0 0 12px 12px;
    margin-top: 16px;
}

.footer-info {
    display: flex;
    gap: 24px;
}

.selected-count {
    font-size: 14px;
    color: #64748b;
}

.total-amount {
    font-size: 14px;
    font-weight: 600;
    color: #dc2626;
}
.next-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.next-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* 编辑面板样式 */
.edit-panel {
    display: none;
    margin-top: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.edit-panel-header {
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.edit-panel-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.edit-panel-body {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #1e293b;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.edit-panel-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.cancel-btn {
    padding: 10px 24px;
    background: #f1f5f9;
    color: #64748b;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cancel-btn:hover {
    background: #e2e8f0;
}

.submit-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* 自定义提示弹窗 */
#customAlert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#customAlertContent {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

#customAlertIcon {
    font-size: 48px;
    margin-bottom: 16px;
}

#customAlertMessage {
    color: #334155;
    margin-bottom: 24px;
    font-size: 14px;
}

#customAlertConfirm {
    padding: 10px 32px;
}

/* 支付弹窗样式 */
.payment-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.payment-modal {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #e2e8f0;
}

.payment-modal-header {
    padding: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.payment-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}

.payment-modal-body {
    padding: 24px;
}

.payment-info {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row span:first-child {
    color: #64748b;
    font-size: 14px;
}

.info-row span:last-child {
    color: #1e293b;
    font-weight: 500;
    font-size: 14px;
}

.payment-buttons {
    display: flex;
    gap: 16px;
}

.pay-btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pay-btn.wechat {
    background: linear-gradient(135deg, #07c160 0%, #10b981 100%);
    color: white;
}

.pay-btn.alipay {
    background: linear-gradient(135deg, #1677ff 0%, #3b82f6 100%);
    color: white;
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 功能特性网格 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-icon.data {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.feature-icon.filter {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.feature-icon.export {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px;
}

.feature-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }

    .page-hero {
        padding: 40px 20px;
    }

    .hero-stats {
        gap: 20px;
        padding: 16px 20px;
    }

    .stat-number {
        font-size: 20px;
    }

    .cp-card {
        padding: 20px;
    }

    .search-list-header {
        flex-direction: column;
        align-items: stretch;
    }

    .list-header-left {
        justify-content: center;
    }

    .search-section {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input-wrapper {
        max-width: none;
    }

    .cp-btn {
        width: 100%;
    }

    .user-info-card {
        flex-direction: column;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pagination-info {
        display: none;
    }
}

/* ========== AI写作助手页面样式 ========== */
.writer-page .page-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.writer-page .page-hero-bg {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.writer-page .hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
}

.writer-page .page-title {
    font-size: 32px;
    font-weight: 700;
}

.writer-page .page-desc {
    max-width: 600px;
    margin: 0 auto;
}

/* 写作卡片样式 */
.writer-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
}

.writer-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.writer-card .header-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 14px;
}

.writer-card .header-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.writer-card .header-text p {
    font-size: 14px;
    color: #999;
    margin: 4px 0 0;
}

/* 类型选择 */
.type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.type-option {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.type-option:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.type-option.selected {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(30, 78, 216, 0.05) 100%);
}

.type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin-right: 16px;
    font-size: 24px;
}

.type-option.selected .option-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
}

.option-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.option-text p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* 表单样式 */
.writer-form-group {
    margin-bottom: 24px;
}

.writer-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.writer-form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.writer-form-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.writer-form-textarea {
    width: 100%;
    min-height: 150px;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    background: #fff;
    resize: vertical;
    transition: all 0.3s ease;
    font-family: inherit;
}

.writer-form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.writer-form-textarea::placeholder {
    color: #bbb;
}

/* 写作按钮 - 优化后变小 */
.write-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    margin: 0 auto;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.write-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.write-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.write-btn svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* 加载动画 */
.writer-loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: writer-spin 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes writer-spin {
    to { transform: rotate(360deg); }
}

/* 结果区域 */
.result-section {
    display: none;
}

.result-section.active {
    display: block;
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.result-info {
    font-size: 14px;
    color: #999;
}

.result-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

/* ========== 新增内容区域样式 ========== */

/* 通用容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* GEO介绍区域 */
.geo-intro-section {
    padding: 60px 0;
    background: #ffffff !important;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    display: block !important;
    visibility: visible !important;
}

.geo-intro-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.geo-intro-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.geo-intro-section .section-subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 400;
}

.geo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.geo-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.geo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.geo-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.geo-card-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.geo-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.geo-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* 为什么选择GEO区域 */
.why-geo-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
}

.why-geo-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.why-geo-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
}

.why-geo-desc {
    text-align: center;
    margin-bottom: 50px;
}

.why-geo-desc p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

.why-geo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.why-geo-card {
    text-align: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-geo-img {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.why-geo-img img {
    width: 100%;
    height: auto;
    display: block;
}

.why-geo-link {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.why-geo-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.why-geo-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-geo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* 服务商招募区域 */
.partner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
}

.partner-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.partner-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.partner-section .section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.partner-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.benefit-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.partner-cta {
    text-align: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

/* 联系方式区域 */
/* GEO服务流程区域 */
.flow-section {
    padding: 80px 0 !important;
    background: #ffffff !important;
    display: block !important;
    visibility: visible !important;
    border-top: 3px solid #3b82f6 !important;
    min-height: 500px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
}

.flow-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.flow-section .section-title {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 12px;
}

.flow-section .section-subtitle {
    font-size: 18px !important;
    color: #475569 !important;
}

.flow-steps {
    display: grid !important;
    grid-template-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
    gap: 15px;
    position: relative;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    padding: 10px 0;
}

.flow-arrow svg {
    width: 28px;
    height: 28px;
}

.flow-step {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.flow-step:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

.step-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.step-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 13px !important;
    color: #475569 !important;
    line-height: 1.7 !important;
}

.action-btn.success {
    border-color: #52c41a;
    color: #52c41a;
}

.action-btn svg {
    width: 14px;
    height: 14px;
    margin-right: 6px;
}

/* 文章标题区域样式 */
.result-title {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 16px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.title-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-right: 8px;
    flex-shrink: 0;
}

.title-content {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    word-break: break-word;
    flex: 1;
}

/* 文章摘要区域样式 */
.result-summary {
    display: flex;
    align-items: flex-start;
    padding: 12px 16px;
    margin-bottom: 16px;
    background: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 8px;
}

.summary-label {
    font-size: 13px;
    font-weight: 600;
    color: #92400e;
    margin-right: 8px;
    flex-shrink: 0;
    line-height: 1.6;
}

.summary-content {
    font-size: 14px;
    color: #78350f;
    line-height: 1.6;
    word-break: break-word;
    flex: 1;
}

.result-content {
    min-height: 300px;
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fafafa;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    white-space: pre-wrap;
    word-break: break-word;
}

.result-content:focus {
    outline: none;
    border-color: #3b82f6;
    background: #fff;
}

/* 右键菜单 */
.context-menu {
    position: fixed;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 6px 0;
    z-index: 1000;
    min-width: 160px;
    border: 1px solid #f0f0f0;
}

.context-menu-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.context-menu-item:hover {
    background: #f5f7fa;
}

.context-menu-item svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* 登录提示区域 - 优化后更美观 */
.login-prompt {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.login-prompt-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.login-prompt:hover .login-prompt-icon {
    transform: scale(1.05);
}

.login-prompt h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px;
}

.login-prompt p {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 24px;
    line-height: 1.6;
}

/* 登录按钮 - 优化后更美观 */
.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
    min-width: 180px;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.45);
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.login-btn:active {
    transform: translateY(-1px);
}

.login-btn svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .type-options {
        grid-template-columns: 1fr;
    }
    
    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .result-actions {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .action-btn {
        flex: 1;
        min-width: calc(50% - 6px);
        justify-content: center;
    }
    
    .write-btn {
        width: 100%;
    }
    
    .login-prompt {
        padding: 30px 20px;
    }
    
    .login-prompt-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .login-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ========== Toast消息样式 ========== */
.cp-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2000;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cp-toast-success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.cp-toast-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* ========== 写作页面双列布局样式 ========== */
.writer-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.writer-form-row .writer-form-group {
    margin-bottom: 0;
}

.writer-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.writer-form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.writer-form-input::placeholder {
    color: #94a3b8;
}

/* 类型标签切换 */
.service-label,
.product-label {
    display: none;
}

.type-option.selected[data-type="service"] ~ .writer-form-row .service-label,
.type-option.selected[data-type="product"] ~ .writer-form-row .product-label,
.writer-form-row:has(.service-label) .service-label,
.writer-form-row:has(.product-label) .product-label {
    display: inline;
}

/* 产品字段动画 */
.product-fields {
    animation: fadeIn 0.3s ease;
    margin-bottom: 24px;
}

/* 产品类型字段动画 */
.goods-fields {
    animation: fadeIn 0.3s ease;
    margin-bottom: 24px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .writer-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========== GEO与传统SEO对比区域样式 ========== */
.geo-vs-seo-section {
    padding: 80px 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.geo-vs-seo-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.geo-vs-seo-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.geo-vs-seo-section .section-subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 400;
}

.comparison-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* 对比卡片组 */
.comparison-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.comparison-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.card-content {
    margin-bottom: 20px;
}

.content-row {
    margin-bottom: 12px;
}

.content-row:last-child {
    margin-bottom: 0;
}

.row-label {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.row-seo {
    font-size: 13px;
    color: #475569;
    font-weight: 500;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 8px;
}

.row-geo {
    font-size: 13px;
    color: #1d4ed8;
    font-weight: 500;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(30, 78, 216, 0.08) 100%);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

/* 核心洞察区域 */
.comparison-insight {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.insight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.insight-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.comparison-insight h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 30px;
}

.insight-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.insight-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.insight-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.insight-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.insight-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .comparison-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insight-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .geo-vs-seo-section {
        padding: 60px 0;
    }
    
    .geo-vs-seo-section .section-title {
        font-size: 28px;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .comparison-insight {
        padding: 30px 20px;
    }
    
    .comparison-insight h3 {
        font-size: 20px;
    }
}
