/* ========================================
   页面专用样式
   ======================================== */

/* 搜索结果页 */
.tyc-search-result {
    padding: 24px 0;
}

.tyc-search-header {
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    padding: 48px 0;
    color: white;
}

.tyc-search-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tyc-search-header p {
    font-size: 14px;
    opacity: 0.9;
}

.tyc-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.tyc-result-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.tyc-result-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.tyc-result-content {
    flex: 1;
}

.tyc-result-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.tyc-result-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.tyc-result-tag {
    padding: 2px 8px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

.tyc-result-tag.status-active {
    background: rgba(82,196,26,0.1);
    color: #52c41a;
}

.tyc-result-tag.status-inactive {
    background: rgba(255,77,79,0.1);
    color: #ff4d4f;
}

.tyc-result-info {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #999;
}

.tyc-result-action {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tyc-btn-view-detail {
    padding: 8px 20px;
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tyc-btn-view-detail:hover {
    opacity: 0.9;
}

/* 详情页 */
.tyc-detail {
    padding: 24px 0;
}

.tyc-breadcrumb {
    padding: 12px 0;
    margin-bottom: 24px;
}

.tyc-breadcrumb-item {
    color: #999;
    font-size: 14px;
}

.tyc-breadcrumb-item:not(:last-child)::after {
    content: ' / ';
    margin: 0 8px;
}

.tyc-breadcrumb-item.active {
    color: #00bfa5;
}

.tyc-detail-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.tyc-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.tyc-detail-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.tyc-detail-title {
    flex: 1;
}

.tyc-detail-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.tyc-detail-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: rgba(82,196,26,0.1);
    color: #52c41a;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.tyc-detail-actions {
    display: flex;
    gap: 12px;
}

.tyc-detail-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #00bfa5;
}

.tyc-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tyc-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tyc-info-label {
    min-width: 100px;
    color: #999;
    font-size: 14px;
}

.tyc-info-value {
    flex: 1;
    color: #333;
    font-size: 14px;
}

/* 表格样式 */
.tyc-table {
    width: 100%;
    border-collapse: collapse;
}

.tyc-table th,
.tyc-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.tyc-table th {
    background: #f8fcff;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.tyc-table td {
    font-size: 14px;
    color: #666;
}

.tyc-table tbody tr:hover {
    background: #f8fcff;
}

.tyc-table tbody tr:last-child td {
    border-bottom: none;
}

/* 登录/注册页 */
.tyc-auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00bfa520, #00c0ca20);
    padding: 40px 20px;
}

.tyc-auth-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.tyc-auth-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.tyc-auth-subtitle {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-bottom: 32px;
}

.tyc-auth-form .form-group {
    margin-bottom: 20px;
}

.tyc-auth-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.tyc-auth-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.tyc-auth-form input:focus {
    outline: none;
    border-color: #00bfa5;
    box-shadow: 0 0 0 3px rgba(0,191,165,0.1);
}

.tyc-btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tyc-btn-submit:hover {
    opacity: 0.9;
}

/* 会员中心 */
.tyc-member-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    padding: 24px 0;
}

.tyc-member-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tyc-member-nav {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tyc-member-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #666;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.tyc-member-nav-item:hover {
    background: #f8fcff;
    color: #00bfa5;
}

.tyc-member-nav-item.active {
    background: rgba(0,191,165,0.1);
    color: #00bfa5;
    font-weight: 600;
}

.tyc-member-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tyc-member-card {
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    border-radius: 16px;
    padding: 24px;
    color: white;
}

.tyc-member-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.tyc-member-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.tyc-member-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tyc-member-info p {
    font-size: 13px;
    opacity: 0.9;
}

.tyc-member-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tyc-member-stat {
    text-align: center;
    padding: 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
}

.tyc-member-stat-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tyc-member-stat-label {
    font-size: 13px;
    opacity: 0.9;
}

/* VIP购买页 */
.tyc-vip-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.tyc-vip-plan {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.2s;
}

.tyc-vip-plan:hover {
    border-color: #00bfa5;
    box-shadow: 0 8px 24px rgba(0,191,165,0.15);
    transform: translateY(-4px);
}

.tyc-vip-plan.featured {
    border-color: #ffcc00;
    position: relative;
}

.tyc-vip-plan.featured::before {
    content: '推荐';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffcc00, #ff9500);
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.tyc-vip-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tyc-vip-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.tyc-vip-price {
    font-size: 36px;
    font-weight: 700;
    color: #ff4d4f;
    margin-bottom: 24px;
}

.tyc-vip-price span {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.tyc-vip-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    text-align: left;
}

.tyc-vip-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}

.tyc-vip-features li::before {
    content: '✓';
    color: #52c41a;
    font-weight: 700;
    margin-right: 8px;
}

/* ========================================
   企业详情页专用样式
   ======================================== */

/* 面包屑 */
.det-breadcrumb {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    font-size: 13px;
    color: #999;
}
.det-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.det-breadcrumb a:hover { color: #00bfa5; }
.det-breadcrumb .sep { margin: 0 8px; }

/* 企业 Hero Banner */
.det-hero {
    background: linear-gradient(135deg, #0c3d6e 0%, #0e5299 50%, #0a7d6e 100%);
    padding: 32px 0 0;
    color: white;
}

.det-hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
}

.det-logo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.3);
}

.det-hero-info { flex: 1; min-width: 0; }

.det-company-name {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}

.det-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.det-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.det-status.status-ok {
    background: rgba(82,196,26,0.2);
    color: #b7eb8f;
    border: 1px solid rgba(82,196,26,0.4);
}
.det-status.status-bad {
    background: rgba(255,77,79,0.2);
    color: #ffa39e;
    border: 1px solid rgba(255,77,79,0.4);
}
.det-status .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
}

.det-tag {
    padding: 3px 10px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
}

.det-hero-metas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.det-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.det-hero-actions { display: flex; gap: 10px; flex-shrink: 0; margin-top: 4px; }
.det-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
}
.det-btn-primary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.det-btn-primary:hover {
    background: rgba(255,255,255,0.25);
}

/* 关键指标条 */
.det-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.det-stat-item {
    flex: 1;
    padding: 16px 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
    min-width: 0;
}
.det-stat-item:last-child { border-right: none; }
.det-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 5px;
}
.det-stat-value {
    font-size: 15px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 详情主体 */
.det-body {
    background: #f4f6f9;
    min-height: 60vh;
    padding: 28px 0 48px;
}

.det-layout {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: flex-start;
}

/* 左侧导航 */
.det-sidebar { position: sticky; top: 72px; }
.det-nav-card {
    background: white;
    border-radius: 12px;
    padding: 16px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.det-nav-title {
    font-size: 13px;
    font-weight: 700;
    color: #999;
    padding: 0 16px 10px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.det-nav-list { display: flex; flex-direction: column; }
.det-nav-item {
    display: block;
    padding: 9px 16px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.15s;
    border-left: 3px solid transparent;
    cursor: pointer;
}
.det-nav-item:hover { color: #00bfa5; background: #f8fcff; }
.det-nav-item.active {
    color: #00bfa5;
    font-weight: 600;
    border-left-color: #00bfa5;
    background: #f0faf9;
}

/* 内容卡片 */
.det-content { display: flex; flex-direction: column; gap: 20px; }

.det-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}

.det-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.det-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00bfa520, #00c0ca20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bfa5;
    flex-shrink: 0;
}

.det-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0;
    flex: 1;
}

.det-card-count {
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    padding: 2px 9px;
    border-radius: 10px;
    font-weight: 600;
}

/* 信息网格 */
.det-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 8px 0;
}

.det-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 24px;
    border-bottom: 1px solid #f7f7f7;
}
.det-info-item.full { grid-column: 1 / -1; }

.det-info-label {
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

.det-info-value {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    word-break: break-all;
}
.det-info-value.bold { font-weight: 700; font-size: 15px; }
.det-info-value.highlight { color: #00bfa5; font-weight: 700; }
.det-info-value.mono { font-family: 'Consolas', 'Courier New', monospace; font-size: 13px; }
.det-link { color: #1677ff; cursor: pointer; }
.det-link:hover { text-decoration: underline; }

/* 状态徽标 */
.det-status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}
.det-status-badge.ok { background: #f6ffed; color: #52c41a; border: 1px solid #b7eb8f; }
.det-status-badge.bad { background: #fff2f0; color: #ff4d4f; border: 1px solid #ffa39e; }
.det-status-badge.sm { font-size: 11px; padding: 2px 8px; }

/* 经营范围 */
.det-scope-text {
    padding: 20px 24px;
    font-size: 14px;
    color: #444;
    line-height: 1.9;
    background: #fafafa;
}

/* 高管卡片网格 */
.det-exec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    padding: 20px 24px;
}

.det-exec-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    transition: box-shadow 0.2s;
}
.det-exec-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.det-exec-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.det-exec-name {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 3px;
}
.det-exec-pos {
    font-size: 12px;
    color: #00bfa5;
    background: rgba(0,191,165,0.08);
    display: inline-block;
    padding: 1px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
}
.det-exec-contact {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}

/* 表格 */
.det-table-wrap {
    overflow-x: auto;
    padding: 0 4px;
}

.det-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.det-table th {
    background: #fafbfc;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    padding: 12px 20px;
    text-align: left;
    border-bottom: 2px solid #f0f0f0;
    white-space: nowrap;
}

.det-table td {
    padding: 13px 20px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: middle;
}
.det-table tbody tr:last-child td { border-bottom: none; }
.det-table tbody tr:hover { background: #f8fcff; }

.det-td-name { font-weight: 600; color: #222; }
.det-td-num { font-family: 'Consolas', monospace; color: #00bfa5; font-weight: 600; }

/* 持股比例条 */
.det-ratio-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100px;
}
.det-ratio-bar {
    flex: 1;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}
.det-ratio-fill {
    height: 100%;
    background: linear-gradient(90deg, #00bfa5, #00c0ca);
    border-radius: 3px;
    transition: width 0.3s;
}

/* 知识产权类型标签 */
.det-ip-type {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 12px;
    background: #e6f4ff;
    color: #1677ff;
    font-weight: 600;
}

/* 变更记录时间线 */
.det-timeline {
    padding: 16px 24px;
    position: relative;
}

.det-timeline::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: #f0f0f0;
}

.det-timeline-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
}
.det-timeline-item:last-child { margin-bottom: 0; }

.det-timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00bfa5;
    border: 2px solid white;
    box-shadow: 0 0 0 3px rgba(0,191,165,0.2);
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
    z-index: 1;
}

.det-timeline-date {
    width: 90px;
    flex-shrink: 0;
    font-size: 13px;
    color: #999;
    padding-top: 1px;
}

.det-timeline-content { flex: 1; }
.det-change-type {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.det-change-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.det-change-before {
    background: #fff2f0;
    color: #cf1322;
    padding: 3px 10px;
    border-radius: 4px;
    text-decoration: line-through;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.det-change-arrow { color: #aaa; font-size: 16px; }
.det-change-after {
    background: #f6ffed;
    color: #389e0d;
    padding: 3px 10px;
    border-radius: 4px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* mono */
.mono { font-family: 'Consolas', 'Courier New', monospace; }

/* 打印 */
@media print {
    .det-hero { background: #0e5299 !important; }
    .det-sidebar, .det-hero-actions { display: none !important; }
    .det-layout { grid-template-columns: 1fr; }
}

/* 响应式 */
@media (max-width: 992px) {
    .tyc-member-layout {
        grid-template-columns: 1fr;
    }

    .tyc-vip-plans {
        grid-template-columns: repeat(2, 1fr);
    }

    .tyc-detail-info-grid {
        grid-template-columns: 1fr;
    }

    /* 详情页响应式 */
    .det-layout {
        grid-template-columns: 1fr;
    }
    .det-sidebar { display: none; }
    .det-stats { flex-wrap: wrap; }
    .det-stat-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .det-hero-inner { flex-wrap: wrap; }
    .det-hero-actions { width: 100%; }
}

@media (max-width: 768px) {
    .tyc-result-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .tyc-result-action {
        width: 100%;
        flex-direction: row;
    }

    .tyc-btn-view-detail {
        flex: 1;
        text-align: center;
    }

    .tyc-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .tyc-detail-actions {
        width: 100%;
        justify-content: center;
    }

    .tyc-vip-plans {
        grid-template-columns: 1fr;
    }

    .tyc-member-stats {
        grid-template-columns: 1fr;
    }

    /* 详情页移动端 */
    .det-company-name { font-size: 20px; }
    .det-info-grid { grid-template-columns: 1fr; }
    .det-exec-grid { grid-template-columns: 1fr; }
    .det-stats { overflow-x: auto; flex-wrap: nowrap; }
    .det-stat-item { min-width: 120px; }
    .det-timeline::before { left: 40px; }
    .det-change-before, .det-change-after { max-width: 130px; }
}