/* CC Phone 页面特有样式 */
/* Tailwind 等价样式替代 */
.bg-white {
    background-color: white;
}

.border {
    border: 1px solid;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.overflow-hidden {
    overflow: hidden;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.border-b {
    border-bottom: 1px solid;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.font-bold {
    font-weight: 700;
}

.text-gray-900 {
    color: #111827;
}

.divide-y {
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.divide-gray-200 {
    border-color: #e5e7eb;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:w-1\/3 {
        width: 33.333333%;
    }
    
    .md\:mb-0 {
        margin-bottom: 0;
    }
    
    .md\:w-2\/3 {
        width: 66.666667%;
    }
}

.text-gray-700 {
    color: #374151;
}

.font-medium {
    font-weight: 500;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.text-gray-600 {
    color: #4b5563;
}

.hidden {
    display: none;
}

.active {
    display: block;
}

/* 悬停效果 */
.spec-row-hover {
    transition: background-color 0.2s ease;
}

.spec-row-hover:hover {
    background-color: #f3f4f6;
}

/* CC Phone 页面特有样式 */
.cc-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cc-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--glow-color);
}

.cc-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.cc-highlight-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cc-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cc-highlight-card .icon-container {
    width: 60px;
    height: 60px;
    background: #00ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.cc-highlight-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.cc-highlight-card p {
    color: #666;
    line-height: 1.6;
}

.cc-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.cc-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.cc-gallery img:hover {
    transform: scale(1.05);
}

/* 小米风格参数列表 */
.cc-specs {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.spec-tabs {
    display: flex;
    flex-wrap: wrap;
    background: #f5f5f5;
    padding: 10px;
    gap: 10px;
}

.spec-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.spec-tab.active {
    background: #00ffff;
    color: #333;
}

.spec-content {
    padding: 30px;
}

.spec-content.hidden {
    display: none;
}

.spec-category {
    margin-bottom: 40px;
}

.spec-category h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.spec-list {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
}

.spec-item {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.spec-item:nth-child(odd) {
    font-weight: bold;
    color: #333;
}

.spec-item:nth-child(even) {
    color: #666;
}

/* 英雄区 */
.cc-hero {
    text-align: center;
    margin-bottom: 60px;
}

.cc-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px var(--glow-color);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.cc-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cc-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.cc-hero-tag {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 14px;
    color: var(--light-text);
    backdrop-filter: blur(5px);
}

.cc-hero-pricing {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc-price-option {
    text-align: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cc-price-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.3);
    border-color: var(--primary-color);
}

.cc-price-spec {
    display: block;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 10px;
}

.cc-price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.cc-hero-image {
    margin: 0 auto;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cc-hero-image img {
    width: 100%;
    height: auto;
}