/* 公共样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #f5f7fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航 */
.site-header {
    background: #2c3e50;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.navbar-brand a {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.navbar-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ecf0f1;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
    background: #34495e;
}

/* 主要内容 */
.site-main {
    min-height: calc(100vh - 300px);
}

/* 首页横幅 */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-search {
    max-width: 700px;
    margin: 0 auto 40px;
}

.search-form-inline {
    display: flex;
    gap: 10px;
}

.search-form-inline input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.search-form-inline button {
    padding: 15px 40px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form-inline button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* 功能特点 */
.features-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.8;
}

/* 最新企业 */
.latest-section {
    padding: 80px 0;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.enterprise-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.enterprise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.enterprise-card h3 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 15px;
    height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.enterprise-info p {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 8px;
}

.btn-more {
    display: inline-block;
    margin-top: 15px;
    color: #3498db;
    font-size: 14px;
}

.btn-more:hover {
    color: #2980b9;
}

/* 热门行业 */
.industries-section {
    padding: 60px 0;
    background: white;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.industry-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 20px;
    color: #2c3e50;
    font-size: 14px;
    transition: all 0.3s ease;
}

.industry-tag:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.industry-tag span {
    background: #e74c3c;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    font-size: 12px;
}

/* 热门搜索 */
.hot-search-section {
    padding: 60px 0;
}

.hot-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.search-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: white;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    color: #2c3e50;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-tag:hover {
    border-color: #3498db;
    color: #3498db;
}

.search-count {
    background: #3498db;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    font-size: 12px;
}

/* 搜索页面 */
.search-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.search-title h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.search-title p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.search-box {
    max-width: 800px;
    margin: 0 auto;
}

.search-form-large {
    display: flex;
    gap: 10px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.search-inputs {
    flex: 1;
    display: flex;
    gap: 10px;
}

.search-inputs input,
.search-inputs select {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 14px;
}

.search-btn {
    padding: 12px 30px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #2980b9;
}

/* 搜索结果 */
.search-results {
    padding: 40px 0;
}

.results-info {
    margin-bottom: 20px;
    color: #7f8c8d;
}

.results-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.result-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.result-title {
    font-size: 18px;
    color: #2c3e50;
    margin: 0;
}

.result-title a {
    color: #3498db;
    font-weight: 500;
}

.result-title a:hover {
    color: #2980b9;
}

.result-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.result-status.status-normal {
    background: #d4edda;
    color: #155724;
}

.result-status.status-abnormal {
    background: #f8d7da;
    color: #721c24;
}

.result-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.detail-row {
    display: flex;
    gap: 10px;
}

.detail-row .label {
    color: #7f8c8d;
    font-size: 14px;
    flex-shrink: 0;
}

.detail-row .value {
    color: #2c3e50;
    font-size: 14px;
    word-break: break-word;
}

.result-footer {
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
    text-align: right;
}

.btn-view {
    display: inline-block;
    padding: 8px 20px;
    background: #3498db;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.btn-view:hover {
    background: #2980b9;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.no-results-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* 侧边栏 */
.search-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.industry-list {
    display: flex;
    flex-direction: column;
}

.industry-list li {
    margin-bottom: 10px;
}

.industry-list li a {
    display: flex;
    justify-content: space-between;
    color: #2c3e50;
    font-size: 14px;
    padding: 5px 0;
}

.industry-list li a:hover {
    color: #3498db;
}

.industry-list .count {
    color: #7f8c8d;
}

/* 详情页 */
.breadcrumb {
    padding: 20px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #ecf0f1;
}

.breadcrumb a {
    color: #7f8c8d;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #3498db;
}

.breadcrumb span {
    color: #2c3e50;
    font-size: 14px;
}

.detail-section {
    padding: 40px 0;
}

.detail-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-card h2 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-row .label {
    color: #7f8c8d;
    font-size: 14px;
    min-width: 120px;
    flex-shrink: 0;
}

.info-row .value {
    color: #2c3e50;
    font-size: 14px;
    word-break: break-word;
    flex: 1;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.status-normal {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-abnormal {
    background: #f8d7da;
    color: #721c24;
}

.business-scope {
    color: #2c3e50;
    line-height: 1.8;
    white-space: pre-wrap;
}

/* 表格 */
.detail-table {
    width: 100%;
    border-collapse: collapse;
}

.detail-table th,
.detail-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.detail-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.detail-table tbody tr:hover {
    background: #f8f9fa;
}

/* 分页 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 30px 0;
}

.pagination a {
    padding: 8px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    color: #2c3e50;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination a:hover:not(.disabled):not(.active) {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.pagination a.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.pagination a.disabled {
    color: #bdc3c7;
    cursor: not-allowed;
}

.pagination-info {
    margin-left: 15px;
    color: #7f8c8d;
    font-size: 14px;
}

/* 页脚 */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section ul li {
    color: #bdc3c7;
}

.footer-section ul li a {
    color: #bdc3c7;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section .icon {
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* 工具类 */
.text-center {
    text-align: center;
}
.hidden { display: none !important; }

/* ================================
   导航登录/注册按钮
================================ */
.nav-register {
    background: #e74c3c;
    color: white !important;
    border-radius: 4px;
}
.nav-register:hover { background: #c0392b !important; }
.nav-logout { color: #e74c3c !important; }
.nav-user-link { color: #f1c40f !important; font-weight: 600; }

/* ================================
   认证页（登录/注册）
================================ */
.auth-wrapper {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.auth-box {
    background: white;
    border-radius: 12px;
    padding: 40px 50px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.auth-logo {
    text-align: center;
    margin-bottom: 20px;
}
.auth-logo a {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
}
.auth-title {
    text-align: center;
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 6px;
}
.auth-sub {
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 24px;
}
.auth-sub a { color: #3498db; }
.auth-form .form-group { margin-bottom: 18px; }
.auth-form label { display: block; font-size: 14px; color: #555; margin-bottom: 6px; }
.required { color: #e74c3c; }
.auth-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
}
.auth-form input:focus { border-color: #3498db; outline: none; }
.btn-auth {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: opacity 0.2s;
}
.btn-auth:hover { opacity: 0.9; }
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
}
.alert-error { background: #fdf0f0; color: #c0392b; border: 1px solid #f5c6c6; }
.alert-success { background: #f0fdf4; color: #1a7a3a; border: 1px solid #b7ebc5; }

/* ================================
   会员中心
================================ */
.member-wrapper { padding: 40px 0; }
.member-wrapper .container { display: grid; grid-template-columns: 240px 1fr; gap: 24px; max-width: 1100px; }

.member-sidebar {}
.member-card {
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    color: white;
    margin-bottom: 16px;
}
.member-card.vip-normal    { background: linear-gradient(135deg, #74b9ff, #0984e3); }
.member-card.vip-gold      { background: linear-gradient(135deg, #fdcb6e, #e17055); }
.member-card.vip-diamond   { background: linear-gradient(135deg, #a29bfe, #6c5ce7); }
.member-card.vip-enterprise { background: linear-gradient(135deg, #00b894, #00cec9); }
.member-avatar { font-size: 40px; margin-bottom: 10px; }
.member-name { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.member-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    padding: 3px 12px;
    border-radius: 10px;
    font-size: 13px;
}
.member-expire { font-size: 12px; margin-top: 8px; opacity: 0.85; }

.member-nav { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.member-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}
.member-nav-item:last-child { border-bottom: none; }
.member-nav-item:hover { background: #f8f9fa; color: #3498db; }
.member-nav-item.active { background: #ebf5fb; color: #2980b9; font-weight: 600; }
.logout-link:hover { color: #e74c3c !important; }

.member-main {}
.member-tab { background: white; border-radius: 10px; padding: 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.tab-title { font-size: 20px; color: #2c3e50; margin-bottom: 6px; padding-bottom: 12px; border-bottom: 2px solid #ecf0f1; }
.tab-desc { color: #7f8c8d; font-size: 14px; margin-bottom: 24px; }

/* 概览卡片 */
.overview-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; margin-bottom: 28px; }
.ov-card { background: #f8f9fa; border-radius: 8px; padding: 20px; text-align: center; }
.ov-icon { font-size: 28px; margin-bottom: 8px; }
.ov-label { font-size: 13px; color: #7f8c8d; margin-bottom: 6px; }
.ov-value { font-size: 16px; font-weight: 600; color: #2c3e50; }
.ov-value.vip-gold { color: #e17055; }
.ov-value.vip-diamond { color: #6c5ce7; }
.ov-value.vip-normal { color: #0984e3; }
.ov-value.vip-enterprise { color: #00b894; }

.upgrade-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    padding: 20px 24px;
    color: white;
    gap: 20px;
}
.upgrade-banner h3 { font-size: 16px; margin-bottom: 6px; }
.upgrade-banner p { font-size: 13px; opacity: 0.9; }
.btn-upgrade {
    flex-shrink: 0;
    padding: 10px 24px;
    background: #f1c40f;
    color: #333;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-upgrade:hover { background: #f39c12; }

/* 会员对比 */
.vip-compare {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.vip-compare-4 {
    grid-template-columns: repeat(4, 1fr);
}
.compare-card {
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    border: 2px solid #ecf0f1;
    position: relative;
}
.compare-card.normal     { border-color: #74b9ff; }
.compare-card.gold       { border-color: #fdcb6e; }
.compare-card.diamond    { border-color: #a29bfe; }
.compare-card.enterprise { border-color: #00b894; }
.compare-card.current { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.compare-hot-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 3px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.compare-icon { font-size: 36px; margin-bottom: 10px; }
.compare-name { font-size: 16px; font-weight: 700; color: #2c3e50; margin-bottom: 14px; }
.compare-features { text-align: left; margin: 0 auto; max-width: 180px; }
.compare-features li { font-size: 13px; color: #555; padding: 5px 0; border-bottom: 1px dashed #ecf0f1; }
.compare-features li:last-child { border-bottom: none; }
.compare-features li.yes::before { content: "✓ "; color: #27ae60; font-weight: 700; }
.compare-features li.no { color: #bdc3c7; }
.compare-features li.no::before { content: "✗ "; color: #e74c3c; }
.compare-current {
    margin-top: 14px;
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 4px 14px;
    border-radius: 10px;
    font-size: 12px;
}

/* 套餐卡片 */
.plan-group { margin-bottom: 32px; }
.plan-group-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.gold-title { color: #e17055; }
.diamond-title { color: #6c5ce7; }
.plan-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan-card {
    border: 1px solid #ecf0f1;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
}
.plan-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-3px); }
.diamond-card { border-color: #a29bfe; }
.plan-name { font-size: 15px; font-weight: 600; color: #2c3e50; margin-bottom: 10px; }
.plan-price { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.price-symbol { font-size: 16px; color: #e74c3c; }
.price-num { font-size: 32px; font-weight: 700; color: #e74c3c; }
.plan-original { font-size: 13px; color: #bdc3c7; text-decoration: line-through; margin-bottom: 4px; }
.plan-duration { font-size: 13px; color: #7f8c8d; margin-bottom: 12px; }
.plan-features { text-align: left; margin: 0 0 16px; padding: 0; }
.plan-features li { font-size: 13px; color: #555; padding: 3px 0; }
.plan-features li::before { content: "✓ "; color: #27ae60; }
.btn-buy {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.gold-btn    { background: linear-gradient(135deg, #fdcb6e, #e17055); color: white; }
.diamond-btn { background: linear-gradient(135deg, #a29bfe, #6c5ce7); color: white; }
.btn-buy:hover { opacity: 0.85; }

/* 订单表格 */
.order-table-wrap { overflow-x: auto; }
.order-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.order-table th, .order-table td { padding: 12px 14px; border-bottom: 1px solid #f0f0f0; text-align: left; }
.order-table th { background: #f8f9fa; font-weight: 600; color: #555; }
.order-table tr:hover td { background: #fafafa; }
.order-no { font-family: monospace; font-size: 12px; color: #7f8c8d; }
.order-amount { font-weight: 700; color: #e74c3c; }
.order-vip-tag { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 12px; background: #f8f9fa; margin-right: 4px; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 10px; font-size: 12px; }
.status-warning { background: #fff3cd; color: #856404; }
.status-success { background: #d4edda; color: #155724; }
.status-cancel  { background: #f8d7da; color: #721c24; }
.empty-tip { text-align: center; padding: 60px; color: #7f8c8d; font-size: 15px; }

/* 个人资料表单 */
.profile-form { max-width: 600px; }
.form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.profile-form .form-group label { display: block; font-size: 14px; color: #555; margin-bottom: 6px; }
.profile-form .form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}
.profile-form .form-group input:disabled { background: #f8f9fa; color: #999; }
.profile-form .form-group input:focus { border-color: #3498db; outline: none; }
.btn-save {
    padding: 10px 28px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}
.btn-save:hover { background: #2980b9; }
.profile-divider { border: none; border-top: 1px solid #ecf0f1; margin: 28px 0; }
.profile-form h3 { font-size: 16px; color: #2c3e50; margin-bottom: 16px; }

/* ================================
   后台VIP徽章
================================ */
.vip-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}
.badge-normal  { background: #dfe6e9; color: #636e72; }
.badge-gold    { background: #ffeaa7; color: #b7791f; }
.badge-diamond { background: #e9d8fd; color: #553c9a; }
.text-muted { color: #bdc3c7; }
.text-warning { color: #f39c12 !important; }
.text-success { color: #27ae60 !important; }
.action-btns { white-space: nowrap; }

/* 后台弹窗 */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.modal-box {
    background: white;
    border-radius: 10px;
    padding: 28px;
    width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.modal-header h3 { font-size: 16px; color: #2c3e50; }
.modal-close { background: none; border: none; font-size: 18px; cursor: pointer; color: #7f8c8d; }
.modal-form .form-group { margin-bottom: 16px; }
.modal-form label { display: block; font-size: 14px; color: #555; margin-bottom: 6px; }
.modal-form select, .modal-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }

/* 响应式 */
@media (max-width: 992px) {
    .features-grid,
    .enterprise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .results-container {
        grid-template-columns: 1fr;
    }
    .search-sidebar {
        display: none;
    }
    .vip-compare { grid-template-columns: 1fr; }
    .plan-cards { grid-template-columns: 1fr 1fr; }
    .overview-cards { grid-template-columns: repeat(2, 1fr); }
    .member-wrapper .container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar-nav {
        gap: 8px;
    }
    .nav-link {
        font-size: 13px;
        padding: 6px 8px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .features-grid,
    .enterprise-grid {
        grid-template-columns: 1fr;
    }
    .search-form-large,
    .search-inputs {
        flex-direction: column;
    }
    .search-btn {
        width: 100%;
    }
    .result-details {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .auth-box { padding: 28px 24px; }
    .plan-cards { grid-template-columns: 1fr; }
    .form-row-two { grid-template-columns: 1fr; }
}

/* ================================================
   任务中心 / 积分商城 / 赠送好友 新功能样式
================================================ */

/* 侧边栏积分条 */
.member-points-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    color: white;
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 14px;
    font-size: 14px;
}
.points-label { opacity: 0.9; }
.points-val { font-size: 20px; font-weight: 700; }

/* 通用辅助 */
.tab-desc { color: #7f8c8d; font-size: 14px; margin-bottom: 24px; }
.section-title { font-size: 15px; font-weight: 600; color: #2c3e50; margin-bottom: 14px; }
.text-success { color: #27ae60 !important; }
.text-danger  { color: #e74c3c !important; }

/* ---- 签到卡片 ---- */
.sign-in-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 28px;
    color: white;
    flex-wrap: wrap;
    gap: 16px;
}
.sign-info { display: flex; align-items: center; gap: 32px; }
.sign-streak { text-align: center; }
.streak-num { font-size: 36px; font-weight: 700; display: block; line-height: 1; }
.streak-label { font-size: 12px; opacity: 0.85; }
.sign-points { font-size: 15px; opacity: 0.9; }
.sign-points strong { font-size: 22px; margin-left: 6px; }
.btn-sign-in {
    padding: 12px 28px;
    background: white;
    color: #764ba2;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-sign-in:hover:not(:disabled) { transform: scale(1.05); }
.btn-sign-in.signed { opacity: 0.7; cursor: default; }
.btn-sign-in:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---- 任务列表 ---- */
.task-list { display: flex; flex-direction: column; gap: 12px; }
.task-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 1px solid #ecf0f1;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.2s;
}
.task-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.task-item.task-done { opacity: 0.6; }
.task-icon { font-size: 28px; flex-shrink: 0; width: 40px; text-align: center; }
.task-info { flex: 1; }
.task-name { font-size: 15px; font-weight: 600; color: #2c3e50; }
.task-desc { font-size: 13px; color: #7f8c8d; margin-top: 2px; }
.task-reward { text-align: right; flex-shrink: 0; }
.task-pts { display: block; font-size: 16px; font-weight: 700; color: #e17055; }
.task-type-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 11px;
    color: #7f8c8d;
    margin-top: 4px;
}
.task-action { flex-shrink: 0; }
.btn-task-claim {
    padding: 8px 20px;
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-task-claim:hover:not(:disabled) { opacity: 0.85; }
.btn-task-claim.btn-claimed {
    background: #dfe6e9;
    color: #b2bec3;
    cursor: default;
}
.btn-task-claim:disabled { cursor: not-allowed; }

/* ---- 积分商城 ---- */
.shop-points-bar {
    background: linear-gradient(135deg, #fdcb6e20, #e1705520);
    border: 1px solid #fdcb6e80;
    border-radius: 10px;
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: 15px;
    color: #2c3e50;
}
.shop-points-bar strong { font-size: 22px; color: #e17055; margin: 0 4px; }
.shop-points-tip { font-size: 12px; color: #7f8c8d; }

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}
.shop-card {
    background: white;
    border: 2px solid #ecf0f1;
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.2s;
}
.shop-card:hover:not(.shop-card-disabled) { border-color: #a29bfe; box-shadow: 0 6px 20px rgba(162,155,254,0.15); transform: translateY(-3px); }
.shop-card-disabled { opacity: 0.55; }
.shop-icon { font-size: 36px; margin-bottom: 10px; }
.shop-name { font-size: 14px; font-weight: 700; color: #2c3e50; margin-bottom: 6px; }
.shop-desc { font-size: 12px; color: #7f8c8d; margin-bottom: 12px; line-height: 1.5; }
.shop-cost { margin-bottom: 16px; }
.cost-num { font-size: 24px; font-weight: 700; color: #e17055; }
.cost-unit { font-size: 13px; color: #7f8c8d; margin-left: 3px; }
.btn-exchange {
    width: 100%;
    padding: 9px;
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-exchange:hover:not(:disabled) { opacity: 0.85; }
.btn-exchange:disabled { background: #dfe6e9; color: #b2bec3; cursor: not-allowed; }
.btn-no-pts { background: #ffeaa7 !important; color: #b7791f !important; }

/* ---- 赠送好友 ---- */
.gift-wrapper { display: flex; flex-direction: column; gap: 24px; }
.gift-step {
    background: white;
    border: 1px solid #ecf0f1;
    border-radius: 14px;
    padding: 24px;
}
.gift-step-title { font-size: 16px; font-weight: 700; color: #2c3e50; margin-bottom: 16px; }
.gift-search-row { display: flex; gap: 12px; align-items: center; }
.gift-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.gift-input:focus { border-color: #a29bfe; }
.btn-gift-search {
    padding: 10px 22px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}
.btn-gift-search:hover { background: #2980b9; }
.gift-user-result { margin-top: 14px; }
.gift-user-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8f9ff;
    border: 1px solid #a29bfe50;
    border-radius: 10px;
    padding: 12px 18px;
}
.gift-user-icon { font-size: 28px; }
.gift-user-name { font-size: 15px; font-weight: 600; color: #2c3e50; }
.gift-user-nick { font-size: 13px; color: #7f8c8d; }
.btn-select-user {
    margin-left: auto;
    padding: 7px 18px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}
.btn-select-user:hover { background: #219a52; }
.gift-error { color: #e74c3c; margin-top: 10px; font-size: 14px; }
.hidden { display: none !important; }

/* 套餐选择 */
.gift-plan-grid { display: flex; flex-direction: column; gap: 16px; }
.gift-plan-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gift-plan-group-title { grid-column: 1 / -1; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.gift-plan-item {
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.gift-plan-item:hover { border-color: #a29bfe; }
.gift-plan-item.selected { border-color: #6c5ce7; background: #f3f0ff; }
.gp-name { font-size: 14px; font-weight: 600; color: #2c3e50; margin-bottom: 4px; }
.gp-price { font-size: 15px; color: #e74c3c; }
.gp-price strong { font-size: 20px; }
.gp-days { font-size: 12px; color: #7f8c8d; margin-top: 4px; }

/* 赠言 & 提交 */
.gift-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #555;
    min-height: 42px;
}
.gift-textarea {
    width: 100%;
    height: 80px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 16px;
    outline: none;
}
.gift-textarea:focus { border-color: #a29bfe; }
.btn-gift-submit {
    padding: 12px 32px;
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-gift-submit:hover { opacity: 0.85; }

/* 支付按钮 */
.btn-pay-gift {
    padding: 4px 12px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}
.btn-pay-gift:hover { background: #c0392b; }

/* 邀请卡片 */
.invite-card {
    background: linear-gradient(135deg, #00b89420, #00cec920);
    border: 1px solid #00b89460;
    border-radius: 14px;
    padding: 22px 24px;
}
.invite-title { font-size: 16px; font-weight: 700; color: #00b894; margin-bottom: 6px; }
.invite-desc { font-size: 13px; color: #636e72; margin-bottom: 16px; }
.invite-code-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.invite-code-label { font-size: 14px; color: #555; }
.invite-code-val {
    font-size: 18px;
    font-weight: 700;
    color: #00b894;
    font-family: monospace;
    letter-spacing: 2px;
    background: white;
    padding: 6px 16px;
    border-radius: 8px;
    border: 1px solid #00b89450;
}
.btn-copy-code {
    padding: 7px 18px;
    background: #00b894;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
}
.btn-copy-code:hover { background: #00a381; }

/* ---- Toast 提示 ---- */
.member-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: #2c3e50;
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    z-index: 99999;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.member-toast.toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.member-toast-success { background: #27ae60; }
.member-toast-error   { background: #e74c3c; }
.member-toast-warning { background: #f39c12; }

/* 响应式补丁 */
@media (max-width: 992px) {
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .gift-plan-group { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .sign-in-card { flex-direction: column; text-align: center; }
    .sign-info { flex-direction: column; gap: 12px; }
    .task-item { flex-wrap: wrap; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .gift-plan-group { grid-template-columns: 1fr; }
    .gift-search-row { flex-direction: column; }
    .gift-input { width: 100%; }
}

/* ========================================
   补充样式
   ======================================== */

/* 主色调定义 */
:root {
    --primary-color: #00bfa5;
    --primary-gradient: linear-gradient(135deg, #00bfa5, #00c0ca);
    --secondary-color: #00c0ca;
    --accent-orange: #ff6a00;
    --accent-yellow: #ffcc00;
    --accent-purple: #a855f7;
    --accent-blue: #1976d2;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #999999;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border-color: #e8e8e8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

/* 按钮样式 */
.tyc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.tyc-btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.tyc-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.tyc-btn-secondary {
    background: #f5f5f5;
    color: #333;
}

.tyc-btn-secondary:hover {
    background: #e8e8e8;
}

.tyc-btn-danger {
    background: #ff4d4f;
    color: white;
}

.tyc-btn-danger:hover {
    opacity: 0.9;
}

.tyc-btn-success {
    background: #52c41a;
    color: white;
}

.tyc-btn-success:hover {
    opacity: 0.9;
}

.tyc-btn-sm {
    padding: 6px 16px;
    font-size: 13px;
}

.tyc-btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

/* 徽章标签 */
.tyc-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.tyc-badge-primary {
    background: rgba(0,191,165,0.1);
    color: #00bfa5;
}

.tyc-badge-success {
    background: rgba(82,196,26,0.1);
    color: #52c41a;
}

.tyc-badge-warning {
    background: rgba(250,173,20,0.1);
    color: #faad14;
}

.tyc-badge-danger {
    background: rgba(255,77,79,0.1);
    color: #ff4d4f;
}

.tyc-badge-info {
    background: rgba(24,144,255,0.1);
    color: #1890ff;
}

/* 卡片组件 */
.tyc-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
}

.tyc-card:hover {
    box-shadow: var(--shadow-md);
}

.tyc-card-header {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.tyc-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.tyc-card-body {
    color: var(--text-secondary);
}

/* 输入框样式 */
.tyc-input {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: white;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.tyc-input:focus {
    outline: none;
    border-color: #00bfa5;
    box-shadow: 0 0 0 3px rgba(0,191,165,0.1);
}

.tyc-input::placeholder {
    color: #bbb;
}

.tyc-input-group {
    display: flex;
    gap: 10px;
}

.tyc-input-group .tyc-input {
    flex: 1;
}

/* 标签页 */
.tyc-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.tyc-tab {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tyc-tab:hover {
    color: #00bfa5;
}

.tyc-tab.active {
    color: #00bfa5;
    border-bottom-color: #00bfa5;
}

/* 分页 */
.tyc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.tyc-page-item {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: white;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.tyc-page-item:hover {
    border-color: #00bfa5;
    color: #00bfa5;
}

.tyc-page-item.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
}

.tyc-page-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tyc-page-item.disabled:hover {
    border-color: var(--border-color);
    color: var(--text-secondary);
}

/* 列表项 */
.tyc-list-item {
    padding: 16px;
    background: #f8fcff;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tyc-list-item:hover {
    background: #e3f2fd;
}

.tyc-list-item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tyc-list-item-meta {
    font-size: 13px;
    color: var(--text-muted);
}

/* 加载状态 */
.tyc-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--text-muted);
}

.tyc-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #f3f3f3;
    border-top-color: #00bfa5;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 空状态 */
.tyc-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.tyc-empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.tyc-empty-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.tyc-empty-desc {
    font-size: 14px;
}

/* 提示框 */
.tyc-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.tyc-alert-info {
    background: rgba(24,144,255,0.1);
    border-left: 3px solid #1890ff;
    color: #1890ff;
}

.tyc-alert-success {
    background: rgba(82,196,26,0.1);
    border-left: 3px solid #52c41a;
    color: #52c41a;
}

.tyc-alert-warning {
    background: rgba(250,173,20,0.1);
    border-left: 3px solid #faad14;
    color: #faad14;
}

.tyc-alert-error {
    background: rgba(255,77,79,0.1);
    border-left: 3px solid #ff4d4f;
    color: #ff4d4f;
}

/* 工具类 */
.tyc-text-primary { color: var(--text-primary) !important; }
.tyc-text-secondary { color: var(--text-secondary) !important; }
.tyc-text-muted { color: var(--text-muted) !important; }
.tyc-text-center { text-align: center; }
.tyc-text-right { text-align: right; }
.tyc-mt-0 { margin-top: 0 !important; }
.tyc-mt-1 { margin-top: 8px !important; }
.tyc-mt-2 { margin-top: 16px !important; }
.tyc-mt-3 { margin-top: 24px !important; }
.tyc-mb-0 { margin-bottom: 0 !important; }
.tyc-mb-1 { margin-bottom: 8px !important; }
.tyc-mb-2 { margin-bottom: 16px !important; }
.tyc-mb-3 { margin-bottom: 24px !important; }
.tyc-p-0 { padding: 0 !important; }
.tyc-p-1 { padding: 8px !important; }
.tyc-p-2 { padding: 16px !important; }
.tyc-p-3 { padding: 24px !important; }
