/* =============================================
   十象商标直卖网 - 首页样式（图片风格版）
   ============================================= */

/* ====== 英雄横幅 ====== */
.hero-banner {
    position: relative;
    background: linear-gradient(135deg, #0d0b5e 0%, #1a1a80 25%, #2d2dcc 55%, #4040e0 80%, #1a1a80 100%);
    padding: 60px 0 0;
    overflow: hidden;
    min-height: 420px;
}

/* 流动装饰形状 */
.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
}

.shape-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #f5a623 0%, transparent 70%);
    top: -120px; right: -80px;
    animation: floatShape 12s ease-in-out infinite;
}

.shape-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #7b68ee 0%, transparent 70%);
    bottom: -100px; left: -60px;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, #e74c8b 0%, transparent 70%);
    top: 40%; left: 30%;
    animation: floatShape 10s ease-in-out infinite 2s;
}

.shape-4 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #00d2ff 0%, transparent 70%);
    top: 10%; right: 35%;
    animation: floatShape 14s ease-in-out infinite 1s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* 英雄内容 */
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffd700;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 4px;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-search {
    display: flex;
    max-width: 520px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-search-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    outline: none;
    font-size: 15px;
    background: transparent;
    color: #333;
}

.hero-search-btn {
    background: linear-gradient(135deg, #f5a623, #f7c948);
    color: #333;
    border: none;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.hero-search-btn:hover {
    background: linear-gradient(135deg, #f7c948, #ffd700);
}

.hero-quick-btns {
    display: flex;
    gap: 15px;
}

.hero-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-quick-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.hero-quick-btn.outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* 英雄右侧浮动卡片 */
.hero-visual {
    flex-shrink: 0;
    width: 260px;
    position: relative;
    height: 280px;
}

.hero-float-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 18px 22px;
    border-radius: 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s;
    white-space: nowrap;
}

.hero-float-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.hero-float-card i {
    font-size: 24px;
    color: #ffd700;
}

.hero-float-card.card-1 {
    top: 0; left: 0;
    animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card.card-2 {
    top: 100px; left: 40px;
    animation: floatCard 6s ease-in-out infinite 2s;
}

.hero-float-card.card-3 {
    top: 200px; left: 10px;
    animation: floatCard 6s ease-in-out infinite 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* 分类导航条 */
.hero-categories {
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

.cate-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px 12px 0 0;
    padding: 14px 20px;
    gap: 10px;
}

.cate-bar-label {
    color: #ffd700;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.cate-bar-list {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    overflow: hidden;
}

.cate-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.cate-bar-item:hover,
.cate-bar-item.cate-more {
    background: rgba(255, 255, 255, 0.15);
    color: #ffd700;
}

.cate-bar-item i {
    font-size: 12px;
}

/* ====== 三大服务套餐 ====== */
.reg-cards {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.reg-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reg-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.reg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.reg-card-badge {
    position: absolute;
    top: 15px; right: -30px;
    background: linear-gradient(135deg, #e74c3c, #ff6b6b);
    color: #fff;
    padding: 5px 40px;
    font-size: 12px;
    transform: rotate(45deg);
    font-weight: 500;
}

.reg-card-icon {
    margin-bottom: 20px;
}

.reg-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s;
}

.reg-icon-circle.blue {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
}

.reg-icon-circle.red {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.reg-icon-circle.green {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.reg-card:hover .reg-icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.reg-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 18px;
}

.reg-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.reg-card-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed #f0f0f0;
}

.reg-card-features li:last-child {
    border-bottom: none;
}

.reg-card-features li i {
    color: #27ae60;
    font-size: 13px;
    flex-shrink: 0;
}

.reg-card-price {
    margin-bottom: 20px;
}

.reg-price {
    font-size: 36px;
    font-weight: 800;
    color: #e74c3c;
}

.reg-unit {
    font-size: 14px;
    color: #999;
    margin-left: 4px;
}

.reg-card-btn {
    display: inline-block;
    padding: 12px 36px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.blue-btn {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.35);
}

.red-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.35);
}

.green-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.35);
}

.reg-card-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ====== 海量商标即买即用 ====== */
.tm-section {
    padding: 60px 0;
    background: #fff;
}

.tm-section-header {
    text-align: center;
    margin-bottom: 35px;
}

.tm-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a80;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.tm-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    border-radius: 2px;
}

.tm-section-desc {
    color: #888;
    font-size: 15px;
    margin-top: 15px;
}

/* 主体布局：左列表 + 右侧边栏 */
.tm-main-layout {
    display: flex;
    gap: 30px;
}

.tm-list-area {
    flex: 1;
    min-width: 0;
}

/* Tab分类切换 */
.tm-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #f5f6fa;
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 24px;
}

.tm-tab {
    padding: 10px 18px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
    font-weight: 500;
}

.tm-tab:hover {
    color: #1a1a80;
    background: rgba(26, 26, 128, 0.05);
}

.tm-tab.active {
    background: #1a1a80;
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 26, 128, 0.3);
}

/* 商标卡片网格 */
.tm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tm-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
}

.tm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
    border-color: rgba(26, 26, 128, 0.2);
}

.tm-card-logo {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef0f5 100%);
    position: relative;
    overflow: hidden;
}

.tm-card-logo img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.4s;
}

.tm-card:hover .tm-card-logo img {
    transform: scale(1.1);
}

.tm-logo-text {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a80;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.tm-card-body {
    padding: 14px 16px 16px;
}

.tm-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.tm-card:hover .tm-card-name {
    color: #1a1a80;
}

.tm-card-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.tm-cate-tag {
    font-size: 11px;
    color: #1a1a80;
    background: rgba(26, 26, 128, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.tm-status-tag {
    font-size: 11px;
    color: #27ae60;
    display: flex;
    align-items: center;
    gap: 3px;
}

.tm-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tm-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.tm-price {
    font-size: 20px;
    font-weight: 800;
    color: #e74c3c;
}

.tm-original {
    font-size: 12px;
    color: #bbb;
    text-decoration: line-through;
}

.tm-card-link {
    font-size: 12px;
    color: #1a1a80;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
    opacity: 0;
    transition: all 0.3s;
    font-weight: 500;
}

.tm-card:hover .tm-card-link {
    opacity: 1;
}

/* 右侧边栏 */
.tm-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.tm-publish-card {
    background: linear-gradient(135deg, #1a1a80, #2d2dcc);
    border-radius: 16px;
    padding: 28px 24px;
    color: #fff;
    margin-bottom: 20px;
}

.tm-publish-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tm-publish-card h3 i {
    color: #ffd700;
}

.tm-publish-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.tm-publish-form .form-group {
    margin-bottom: 12px;
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transition: all 0.3s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.18);
}

.form-textarea {
    resize: vertical;
    min-height: 60px;
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffd700' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

select.form-input option {
    color: #333;
    background: #fff;
}

.form-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.code-btn {
    padding: 10px 14px;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.code-btn:hover {
    background: rgba(255, 215, 0, 0.3);
}

.publish-submit-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #e74c3c, #ff6b6b);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
}

.publish-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* 热门服务 */
.tm-hot-service {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.tm-hot-service h4 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tm-hot-service h4 i {
    color: #e74c3c;
}

.hot-svc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #f0f0f0;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
}

.hot-svc-item:last-child {
    border-bottom: none;
}

.hot-svc-item:hover {
    color: #1a1a80;
}

.hot-price {
    color: #e74c3c;
    font-weight: 600;
    font-size: 13px;
}

/* 查看更多 */
.tm-section-footer {
    text-align: center;
    margin-top: 35px;
}

.tm-section-footer .btn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 44px;
    border: 2px solid #1a1a80;
    color: #1a1a80;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.tm-section-footer .btn-more:hover {
    background: #1a1a80;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 128, 0.3);
}

/* ====== 品质保证商标服务 ====== */
.quality-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f5f6fa 0%, #fff 100%);
}

.quality-header {
    text-align: center;
    margin-bottom: 40px;
}

.quality-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a80;
    margin-bottom: 8px;
}

.quality-desc {
    color: #888;
    font-size: 15px;
}

/* 三大特色 */
.quality-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.q-feature {
    text-align: center;
    padding: 30px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s;
}

.q-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.q-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
    transition: all 0.3s;
}

.q-feature:hover .q-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.q-feature h4 {
    font-size: 17px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.q-feature p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* 服务产品 */
.quality-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.q-product {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.35s;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.q-product::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.q-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.q-product:hover::before {
    transform: scaleX(1);
}

.q-product-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff5e6, #ffe0b2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: #ff8c00;
    transition: all 0.3s;
}

.q-product:hover .q-product-icon {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: #fff;
    transform: scale(1.05);
}

.q-product h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 6px;
}

.q-product p {
    font-size: 12px;
    color: #999;
    margin-bottom: 14px;
}

.q-product-price {
    font-size: 28px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 16px;
}

.q-product-price span {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

.q-product-btn {
    display: inline-block;
    padding: 9px 28px;
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: #fff;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.q-product-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* ====== 安全可靠版权服务 ====== */
.copyright-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 50%, #e65c00 100%);
    position: relative;
    overflow: hidden;
}

.copyright-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.copyright-section::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -5%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cp-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.cp-left {
    flex-shrink: 0;
    width: 260px;
}

.cp-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.cp-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.6;
}

.cp-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 30px;
    background: #fff;
    color: #ff6600;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cp-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cp-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cp-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.35s;
}

.cp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cp-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff5e6, #ffe0b2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #ff8c00;
    transition: all 0.3s;
}

.cp-card:hover .cp-card-icon {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.cp-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.cp-card-price {
    font-size: 26px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 8px;
}

.cp-card-price span {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

.cp-card p {
    font-size: 13px;
    color: #999;
}

/* ====== 服务保障区块（footer公共） ====== */
.service-guarantee {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 50%, #e65c00 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.service-guarantee::before {
    content: "";
    position: absolute;
    top: -40%; right: -8%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.service-guarantee::after {
    content: "";
    position: absolute;
    bottom: -30%; left: -5%;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.guarantee-icon {
    font-size: 28px;
    color: #fff;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s;
    flex-shrink: 0;
}

.guarantee-box:hover .guarantee-icon {
    transform: scale(1.1) rotate(5deg);
    background: #fff;
    color: #ff6600;
}

.guarantee-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.guarantee-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ====== 商标分类大全 ====== */
.cate-section {
    padding: 40px 0;
    background: #fff;
}

.cate-section-header {
    text-align: center;
    margin-bottom: 25px;
}

.cate-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.cate-section-desc {
    color: #999;
    font-size: 14px;
}

.cate-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 0;
}

.cate-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 4px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
    min-height: 80px;
}

.cate-grid-item:hover {
    background: #f5f5f5;
}

.cate-num {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.cate-name {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
    text-align: center;
    line-height: 1.4;
    max-width: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ====== 响应式设计 ====== */
@media (max-width: 1200px) {
    .hero-visual { display: none; }
    .hero-content { max-width: 100%; }
    .tm-main-layout { flex-direction: column; }
    .tm-sidebar { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 36px; }
    .reg-cards-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .tm-grid { grid-template-columns: repeat(2, 1fr); }
    .quality-features { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
    .quality-products { grid-template-columns: repeat(2, 1fr); }
    .cp-layout { flex-direction: column; text-align: center; }
    .cp-left { width: 100%; }
    .cp-cards { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
    .cate-bar-list { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .tm-sidebar { grid-template-columns: 1fr; }
    .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
    .cate-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 576px) {
    .hero-banner { padding: 40px 0 0; min-height: auto; }
    .hero-title { font-size: 28px; letter-spacing: 2px; }
    .hero-desc { font-size: 15px; }
    .hero-search { flex-direction: column; border-radius: 12px; }
    .hero-search-btn { padding: 14px; border-radius: 0; }
    .hero-quick-btns { flex-direction: column; }
    .cate-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
    .cate-bar-label { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 8px; }
    .tm-grid { grid-template-columns: 1fr; }
    .tm-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .quality-products { grid-template-columns: 1fr; }
    .tm-section-title, .quality-title { font-size: 24px; }
    .guarantee-box { flex-direction: column; text-align: center; }
    .cate-grid { grid-template-columns: repeat(5, 1fr); }
    .cate-grid-item { padding: 12px 4px; min-height: 60px; }
    .cate-num { font-size: 14px; }
    .cate-name { font-size: 10px; }
    .cate-section-title { font-size: 22px; }
}
