/* 企业商家样式 
----------------------------------------*/
body .enterprise-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    margin: 32px 0;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e1ebff 0%, #ffffff 100%);
    border: 2px solid #4285f4;
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.15);
}

body .enterprise-avatar-box {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #4285f4 0%, #e1ebff 100%);
    border-right: 2px solid #4285f4;
}

body .enterprise-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #4285f4;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(66, 133, 244, 0.2);
}

body .enterprise-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body .enterprise-name-sub {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 8px;
    text-decoration: none !important;
    display: block;
}

body .enterprise-name-sub:hover {
    text-decoration: none !important;
    background: #ffffff;
}

body .enterprise-info-box {
    padding: 32px;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    border-left: 2px solid #4285f4;
}

body .enterprise-tag {
    position: absolute;
    top: 18px;
    right: 32px;
    background: linear-gradient(135deg, #4285f4, #2d6ed8);
    color: white;
    padding: 8px 26px;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 18px rgba(66, 133, 244, 0.2);
    z-index: 2;
}

body .enterprise-tag i {
    color: #ffffff;
}

body .enterprise-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

body .enterprise-title a {
    color: #333 !important;
    text-decoration: none !important;
    font-size: 24px;
    font-weight: 600;
}

body .enterprise-title a:hover {
    color: #4285f4 !important;
    text-decoration: none !important;
}

body .enterprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-left: 12px;
    font-size: 14px;
    color: white;
    background: linear-gradient(135deg, #4285f4, #2d6ed8);
}

body .enterprise-badge i {
    color: #ffffff;
}

body .enterprise-company {
    font-size: 16px;
    color: #666;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

body .enterprise-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    font-size: 15px;
    color: #666;
}

body .enterprise-detail i {
    color: #4285f4;
    width: 20px;
    text-align: center;
}

body .enterprise-line {
    height: 1.5px;
    margin: 20px 0;
    opacity: 0.7;
    background: linear-gradient(90deg, #4285f4 0%, #e1e7ff 100%);
}

body .enterprise-buttons {
    display: flex;
    gap: 18px;
    margin-top: 20px;
}

body .enterprise-contact-btn,
body .enterprise-login-btn {
    background: linear-gradient(135deg, #4285f4, #2d6ed8);
    color: white !important;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    cursor: pointer;
}

body .enterprise-view-btn {
    background: rgba(66, 133, 244, 0.1);
    color: #4285f4 !important;
    border: 1px solid rgba(66, 133, 244, 0.2);
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    cursor: pointer;
}

/* 个人商家样式 
----------------------------------------*/
body .personal-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    margin: 32px 0;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #fff0eb 0%, #fff5f2 100%);
    border: 2px solid #ff6347;
    box-shadow: 0 8px 24px rgba(255, 99, 71, 0.15);
}

body .personal-avatar-box {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #ff6347 0%, #fff0eb 100%);
    border-right: 2px solid #ff6347;
}

body .personal-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ff6347;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 99, 71, 0.2);
}

body .personal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body .personal-name-sub {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 8px;
    text-decoration: none !important;
    display: block;
}

body .personal-name-sub:hover {
    text-decoration: none !important;
    background: #ffffff;
}

body .personal-info-box {
    padding: 32px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
    border-left: 2px solid #ff6347;
}

body .personal-tag {
    position: absolute;
    top: 18px;
    right: 32px;
    background: linear-gradient(135deg, #ff6347, #ff4500);
    color: white;
    padding: 8px 26px;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 18px rgba(255, 99, 71, 0.2);
    z-index: 2;
}

body .personal-tag i {
    color: #ffffff;
}

body .personal-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

body .personal-title a {
    color: #333 !important;
    text-decoration: none !important;
    font-size: 24px;
    font-weight: 600;
}

body .personal-title a:hover {
    color: #ff6347 !important;
    text-decoration: none !important;
}

body .personal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-left: 12px;
    font-size: 14px;
    color: white;
    background: linear-gradient(135deg, #ff6347, #ff4500);
}

body .personal-badge i {
    color: #ffffff;
}

body .personal-company {
    font-size: 16px;
    color: #666;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

body .personal-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    font-size: 15px;
    color: #666;
}

body .personal-detail i {
    color: #ff6347;
    width: 20px;
    text-align: center;
}

body .personal-line {
    height: 1.5px;
    margin: 20px 0;
    opacity: 0.7;
    background: linear-gradient(90deg, #ff6347 0%, #fff0eb 100%);
}

body .personal-buttons {
    display: flex;
    gap: 18px;
    margin-top: 20px;
}

body .personal-contact-btn,
body .personal-login-btn {
    background: linear-gradient(135deg, #ff6347, #ff4500);
    color: white !important;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    cursor: pointer;
}

body .personal-view-btn {
    background: rgba(255, 99, 71, 0.1);
    color: #ff6347 !important;
    border: 1px solid rgba(255, 99, 71, 0.2);
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 1100px) {
    body .enterprise-card,
    body .personal-card {
        grid-template-columns: 1fr;
    }
    
    body .enterprise-avatar-box,
    body .personal-avatar-box {
        border-right: none;
        border-bottom: 2px solid #4285f4;
        padding: 24px;
    }
    
    body .enterprise-info-box,
    body .personal-info-box {
        border-left: none;
        padding: 24px;
    }
    
    body .enterprise-tag,
    body .personal-tag {
        position: static;
        margin: 0 auto 16px auto;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    body .enterprise-buttons,
    body .personal-buttons {
        flex-direction: column;
    }
    
    body .enterprise-avatar,
    body .personal-avatar {
        width: 150px;
        height: 150px;
    }
}

/* 修改响应式样式中的个人商家边框颜色 */
@media (max-width: 1100px) {
    body .personal-avatar-box {
        border-bottom: 2px solid #ff6347;
    }
}

/* 其他样式保持不变 */
.detail-flex {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}
.detail-left {
    flex: 0 0 60%;
    max-width: 60%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,120,255,0.06);
    border: 1px solid #f0f0f0;
    padding: 32px 36px 28px 36px;
}
.detail-title {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.4;
}
.detail-meta {
    font-size: 15px;
    color: #888;
    margin-bottom: 18px;
    display: flex;
    gap: 22px;
}
.detail-content {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}
.detail-img {
    width: 100%;
    max-width: 480px;
    border-radius: 10px;
    margin: 22px 0;
    display: block;
    box-shadow: 0 2px 12px rgba(0,120,255,0.08);
}
.detail-right {
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hot-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,120,255,0.06);
    border: 1px solid #f0f0f0;
    padding: 16px 14px 12px 14px;
    margin-bottom: 0;
}
.hot-title {
    font-size: 17px;
    font-weight: bold;
    color: #ff9800;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hot-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}
.hot-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f8fa;
    border-radius: 6px;
    padding: 7px 10px;
    margin-bottom: 0;
    font-size: 14px;
    color: #333;
    transition: background 0.2s;
}
.hot-item:hover {
    background: #fffbe6;
    color: #ff9800;
}
.hot-thumb {
    width: 38px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    margin-right: 2px;
}
.hot-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-link i {
    color: #ff9800;
    font-size: 15px;
}
.hot-link:hover {
    color: #ff9800;
    text-decoration: none;
}
.hot-index {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: #ff9800;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 13px;
    font-weight: bold;
    margin-right: 6px;
}
.latest-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,120,255,0.06);
    border: 1px solid #f0f0f0;
    padding: 16px 14px 12px 14px;
}
.latest-title {
    font-size: 17px;
    font-weight: bold;
    color: #0078ff;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.latest-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.latest-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f8fa;
    border-radius: 6px;
    padding: 7px 10px;
    margin-bottom: 0;
    font-size: 14px;
    color: #333;
    transition: background 0.2s;
}
.latest-item:hover {
    background: #e3f2fd;
    color: #0078ff;
}
.latest-thumb {
    width: 38px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    margin-right: 2px;
}
.latest-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-link i {
    color: #ff9800;
    font-size: 15px;
}
.latest-link:hover {
    color: #ff9800;
    text-decoration: none;
}
.latest-date {
    font-size: 12px;
    color: #888;
    margin-left: 12px;
}
.detail-divider {
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    font-size: 32px;
    font-weight: bold;
    user-select: none;
}
.merchant-recommend {
    position: absolute;
    top: 18px;
    right: 32px;
    background: linear-gradient(270deg, #6a82fb, #fc5c7d, #43e97b, #38f9d7, #6a82fb);
    background-size: 400% 400%;
    animation: gradientMove 6s ease infinite;
    color: #fff;
    border-radius: 18px;
    padding: 8px 26px 8px 20px;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 18px rgba(106,130,251,0.13);
    z-index: 2;
    letter-spacing: 2px;
}
.merchant-recommend i {
    font-size: 32px;
    color: #fffbe6;
    margin-right: 6px;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@media (max-width: 1100px) {
    .detail-flex {
        flex-direction: column;
    }
    .detail-left, .detail-right {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .merchant-enterprise,
    .merchant-personal {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 22px 12px 18px 12px;
    }
    .detail-left {
        padding: 18px 10px 16px 10px;
    }
}
@media (max-width: 900px) {
    .merchant-enterprise,
    .merchant-personal {
        flex-direction: column;
        padding: 0;
    }
    .merchant-avatar-area {
        padding: 24px 0 12px 0;
        min-width: 100px;
    }
    .merchant-info-area {
        padding: 18px 10px 12px 10px;
    }
    .merchant-actions {
        flex-direction: column;
        gap: 10px;
    }
    .merchant-recommend {
        position: static;
        margin: 0 auto 12px auto;
        display: flex;
        justify-content: center;
        font-size: 18px;
        padding: 6px 16px 6px 14px;
    }
    
    .merchant-avatar-thumb {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .merchant-avatar-thumb img {
        width: 120px;
        height: 120px;
    }
}

.breadcrumb-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-link:hover {
    color: #ff9800;
    text-decoration: underline;
}

.breadcrumb {
    margin-top: 28px;
    background: transparent;
    padding: 18px 0 6px 0;
    font-size: 15px;
}

/* 弹窗样式 */
.com-modal-mask { position: fixed; left: 0; top: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.18); z-index: 1000; display: flex; align-items: center; justify-content: center; }
.com-modal-box { background: #fff; border-radius: 14px; box-shadow: 0 4px 24px rgba(0,0,0,0.13); padding: 38px 32px 28px 32px; min-width: 320px; max-width: 90vw; text-align: center; }
.com-modal-title { font-size: 20px; font-weight: bold; color: #585ed6; margin-bottom: 18px; }
.com-modal-content { font-size: 17px; color: #222; margin-bottom: 18px; }
.com-modal-btns { display: flex; gap: 18px; justify-content: center; margin-top: 18px; }
.com-modal-btn { background: #585ed6; color: #fff; border: none; border-radius: 18px; padding: 8px 32px; font-size: 16px; font-weight: bold; cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block; }
.com-modal-btn.btn-login { background: #1677ff; }
.com-modal-btn.btn-login:hover { background: #005bb5; }
.com-modal-btn.btn-reg { background: #ff9800; }
.com-modal-btn.btn-reg:hover { background: #e67c00; }
.com-modal-btn.btn-pay { background: #43e97b; }
.com-modal-btn.btn-pay:hover { background: #2bb673; }

.info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.info-item {
    display: flex;
    align-items: center;
    background: #f8f8fa;
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: 0 2px 8px rgba(0,120,255,0.06);
    transition: background 0.2s;
    gap: 16px;
}
.info-item:hover {
    background: #e6f0ff;
}
.info-img-link {
    display: block;
    flex-shrink: 0;
}
.info-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,120,255,0.08);
    transition: transform 0.2s;
}
.info-item:hover .info-img {
    transform: scale(1.08);
}
.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.info-title {
    font-size: 16px;
    color: #222;
    font-weight: bold;
    text-decoration: none;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s;
    line-height: 1.5;
    max-height: 3em;
}
.info-item:hover .info-title {
    color: #0078ff;
}
.info-date {
    font-size: 13px;
    color: #888;
} 