.detail-flex {
    display: flex;
    gap: 0px;
    align-items: flex-start;
}
.detail-main {
    flex: 7;
    min-width: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(21,101,192,0.07);
    padding: 32px 32px 24px 32px;
    margin-bottom: 0;
}
.detail-title {
    font-size: 26px;
    color: #1976d2;
    font-weight: bold;
    margin-bottom: 12px;
}
.detail-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 15px;
    color: #888;
    margin-bottom: 18px;
}
.detail-meta i {
    margin-right: 4px;
}
.detail-images {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}
.detail-images img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    background: #f5f5f5;
}
.detail-content {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 32px;
}
.publisher-card {
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(21,101,192,0.06);
    padding: 22px 24px 18px 24px;
    margin-top: 18px;
    margin-bottom: 0;
}
.publisher-header {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: bold;
    color: #1976d2;
    margin-bottom: 10px;
}
.publisher-auth {
    color: #ff9800;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}
.publisher-contact {
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
    display: flex;
    gap: 32px;
}
.publisher-contact i {
    color: #1976d2;
    margin-right: 6px;
}
.publisher-actions {
    display: flex;
    gap: 18px;
}
.btn-contact, .btn-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1976d2;
    color: #fff;
    border-radius: 24px;
    padding: 8px 22px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}
.btn-home {
    background: #ff9800;
}
.btn-contact:hover {
    background: #1251a3;
}
.btn-home:hover {
    background: #e68900;
}
.detail-sidebar {
    flex: 3;
    min-width: 260px;
    max-width: 380px;
    margin-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.sidebar-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(21,101,192,0.07);
    padding: 18px 18px 10px 18px;
    margin-bottom: 0;
}
.sidebar-title {
    font-size: 17px;
    font-weight: bold;
    color: #1976d2;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.sidebar-title i {
    color: #ff9800;
    font-size: 18px;
}
.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    border-bottom: 1px solid #f0f4fa;
    padding: 0 0 6px 0;
}
.sidebar-list li:last-child {
    border-bottom: none;
}
.sidebar-list a {
    color: #222;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    transition: color 0.18s;
}
.sidebar-list a:hover {
    color: #1976d2;
    text-decoration: underline;
}
.sidebar-date {
    color: #bbb;
    font-size: 13px;
    margin-left: 12px;
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .detail-flex {
        flex-direction: column;
        gap: 24px;
    }
    .detail-sidebar {
        margin-left: 0;
        max-width: 100%;
    }
    .detail-main {
        padding: 18px 8px 12px 8px;
    }
    .detail-images img {
        width: 100px;
        height: 70px;
    }
    .publisher-card {
        padding: 14px 8px 10px 8px;
    }
    .publisher-contact {
        flex-direction: column;
        gap: 6px;
    }
}
.member-card {
    background: linear-gradient(90deg, #e3f2fd 0%, #fffde4 100%);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(21,101,192,0.07);
    padding: 24px 32px 18px 32px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
}
.member-title {
    font-size: 20px;
    font-weight: bold;
    color: #1976d2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.member-title i {
    color: #ff9800;
    font-size: 22px;
}
.member-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    color: #1976d2;
    font-size: 15px;
}
.member-benefits li {
    display: flex;
    align-items: center;
    gap: 6px;
}
.member-benefits i {
    color: #4caf50;
    font-size: 16px;
}
.btn-member-upgrade {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #ff9800 0%, #ffb300 100%);
    color: #fff;
    border-radius: 24px;
    padding: 8px 28px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(255,152,0,0.10);
    transition: background 0.2s, color 0.2s;
}
.btn-member-upgrade:hover {
    background: linear-gradient(90deg, #fb8c00 0%, #ffa726 100%);
    color: #fff;
}
@media (max-width: 900px) {
    .member-card {
        padding: 14px 8px 10px 8px;
        margin-bottom: 18px;
    }
    .member-title {
        font-size: 17px;
    }
    .btn-member-upgrade {
        font-size: 14px;
        padding: 7px 16px;
    }
    .member-benefits {
        gap: 10px 16px;
        font-size: 13px;
    }
}

/* 联系我们弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    justify-content: center;
    align-items: center;
}
.modal.active {
    display: flex;
}
.modal-mask {
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(33, 33, 33, 0.45);
    z-index: 1;
}
.modal-dialog {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(21,101,192,0.18);
    padding: 36px 32px 28px 32px;
    min-width: 320px;
    max-width: 90vw;
    text-align: center;
    animation: modalIn 0.22s cubic-bezier(.4,2,.6,1) both;
}
@keyframes modalIn {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.modal-title {
    font-size: 20px;
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.modal-title i {
    color: #ff9800;
    font-size: 22px;
}
.modal-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}
.modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 22px;
    padding: 8px 22px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    box-shadow: 0 2px 8px rgba(21,101,192,0.07);
}
.modal-btn.login {
    background: #1976d2;
    color: #fff;
}
.modal-btn.login:hover {
    background: #1251a3;
}
.modal-btn.register {
    background: #e0e0e0;
    color: #1976d2;
}
.modal-btn.register:hover {
    background: #bdbdbd;
}
.modal-btn.recharge {
    background: #ff9800;
    color: #fff;
}
.modal-btn.recharge:hover {
    background: #e68900;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: #bbb;
    cursor: pointer;
    transition: color 0.18s;
}
.modal-close:hover {
    color: #d32f2f;
}
@media (max-width: 600px) {
    .modal-dialog {
        min-width: 0;
        width: 92vw;
        padding: 18px 6vw 16px 6vw;
    }
    .modal-title {
        font-size: 17px;
    }
    .modal-btn {
        font-size: 14px;
        padding: 7px 12px;
    }
    .modal-actions {
        gap: 10px;
    }
}

/* 大发布者信息区三栏样式 */
.big-publisher-card {
    display: flex;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(21,101,192,0.07);
    padding: 32px 32px 24px 32px;
    margin-bottom: 32px;
    align-items: flex-start;
    gap: 0;
}
.big-publisher-thumb {
    width: 270px;
    height: 270px;
    min-width: 270px;
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 32px;
    background: #f5f5f5;
    border-radius: 10px;
}
.big-publisher-thumb-img {
    width: 247px;
    height: 247px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(21,101,192,0.08);
    background: transparent;
    display: block;
}
.big-publisher-center {
    flex: 1 1 320px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}
.big-publisher-right {
    flex-shrink: 0;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-left: 32px;
}
.big-publisher-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f5f5f5;
    box-shadow: 0 2px 8px rgba(21,101,192,0.08);
}
.big-publisher-nick {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin-top: 6px;
}
.big-publisher-auth {
    color: #388e3c;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #e8f5e9;
    border-radius: 10px;
    padding: 2px 10px;
    margin-top: 4px;
}
.big-publisher-auth i {
    color: #388e3c;
}
.big-publisher-row {
    font-size: 16px;
    color: #444;
    margin-bottom: 2px;
}
.big-publisher-label {
    color: #888;
    font-weight: 500;
    margin-right: 6px;
}
.big-publisher-value {
    color: #222;
    font-weight: bold;
}
.big-publisher-actions {
    display: flex;
    gap: 16px;
    margin: 10px 0 0 0;
}
.big-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 22px;
    padding: 8px 22px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    box-shadow: 0 2px 8px rgba(21,101,192,0.07);
    border: none;
    cursor: pointer;
}
.big-btn.blue {
    background: #1976d2;
    color: #fff;
}
.big-btn.blue:hover {
    background: #1251a3;
}
.big-btn.red {
    background: #ff5252;
    color: #fff;
}
.big-btn.red:hover {
    background: #d32f2f;
}
.big-btn.gray {
    background: #e0e0e0;
    color: #1976d2;
}
.big-btn.gray:hover {
    background: #bdbdbd;
}
.big-publisher-tip {
    background: #f8f9fa;
    color: #888;
    font-size: 14px;
    border-radius: 8px;
    padding: 10px 16px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.big-publisher-tip i {
    color: #1976d2;
    font-size: 16px;
}
@media (max-width: 900px) {
    .big-publisher-card {
        flex-direction: column;
        gap: 18px;
        padding: 18px 8px 12px 8px;
    }
    .big-publisher-thumb, .big-publisher-right {
        width: 100%;
        margin: 0 0 12px 0;
        flex-direction: row;
        justify-content: center;
    }
    .big-publisher-thumb-img, .big-publisher-avatar {
        width: 64px;
        height: 64px;
    }
    .big-publisher-nick {
        font-size: 17px;
    }
    .big-publisher-auth {
        font-size: 13px;
        padding: 2px 8px;
    }
} 

.big-publisher-link {
  color: inherit;
  text-decoration: none;
}
.big-publisher-link:hover {
  color: inherit;
  text-decoration: none;
}