/* 内容页专属样式 */
.merchant-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,120,255,0.08);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: stretch;
    padding: 0;
    margin: 32px 0 32px 0;
    gap: 0;
    overflow: hidden;
    position: relative;
}
.merchant-avatar-area {
    background: linear-gradient(135deg, #e6f0ff 60%, #f8fbff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: 261px;
    max-width: 278px;
    width: 250px;
    box-sizing: border-box;
}
.merchant-avatar-thumb {
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    margin: 0;
}
.merchant-avatar-thumb img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,120,255,0.10);
    margin: 0;
    display: block;
}
.merchant-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,120,255,0.10);
}
.merchant-info-area {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 36px 28px 36px;
    position: relative;
}
.merchant-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.merchant-divider {
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, #e6f0ff 0%, #ff9800 100%);
    border-radius: 1px;
    margin: 18px 0 18px 0;
    opacity: 0.7;
}
.merchant-name {
    font-size: 22px;
    font-weight: bold;
    color: #222;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.merchant-name a {
    color: inherit !important;
    text-decoration: none !important;
    transition: none;
}
.merchant-name a:hover {
    color: inherit !important;
    text-decoration: none !important;
}


.merchant-cert {
    background: #ff9800;
    color: #fff;
    font-size: 14px;
    border-radius: 12px;
    padding: 2px 12px 2px 8px;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.merchant-cert i {
    color: #fff;
    font-size: 16px;
}
.merchant-meta {
    font-size: 15px;
    color: #666;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.merchant-meta a {
    color: inherit;
    text-decoration: none;
    transition: none;
}
.merchant-meta a:hover {
    color: inherit;
    text-decoration: none;
}
.merchant-actions {
    display: flex;
    flex-direction: row;
    gap: 18px;
    margin-top: 8px;
}
.btn-contact {
    background: #0078ff;
    color: #fff;
    border-radius: 20px;
    padding: 10px 32px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,120,255,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}
.btn-contact:hover {
    background: #005bb5;
    box-shadow: 0 4px 16px rgba(0,120,255,0.18);
}
.btn-view {
    background: #ff9800;
    color: #fff;
    border-radius: 20px;
    padding: 10px 32px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(255,152,0,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}
.btn-view:hover {
    background: #e67c00;
    box-shadow: 0 4px 16px rgba(255,152,0,0.18);
}
.btn-contact.login-required {
    border: none;
    outline: none;
    box-shadow: none;
}

.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-card {
        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-card {
        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;
    }
}

.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;
} 