
.zonkvm-hero {
    background-color: #0d6efd !important;
}
.text-shadow {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.zonkvm-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}
.zonkvm-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}
.zonkvm-content p {
    margin-bottom: 1rem;
}

/* 分享弹窗 */
.zonkvm-share-popup {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 999;
    display: none;
    overflow: hidden;
}
.zonkvm-share-popup.show {
    display: block;
}
.zonkvm-share-popup .share-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s;
}
.zonkvm-share-popup .share-item:hover {
    background: #f7f7f7;
}
.zonkvm-share-popup .share-item:nth-child(1) { color: #07c160; }
.zonkvm-share-popup .share-item:nth-child(2) { color: #e6162d; }
.zonkvm-share-popup .share-item:nth-child(3) { color: #12b7f5; }
.zonkvm-share-popup .share-item:nth-child(4) { color: #666; }

/* hover 动效 */
.hov-shadow:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

/* 浮动提示 Toast */
#toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
#toast.show {
    opacity: 1;
}
#toast.success {
    background-color: #28a745;
}
#toast.error {
    background-color: #dc3545;
}
#toast.info {
    background-color: #17a2b8;
}

/* 微信二维码弹窗 */
.wechat-qrcode-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.wechat-qrcode-modal.show {
    opacity: 1;
    visibility: visible;
}
.qrcode-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 320px;
    width: 90%;
}
.qrcode-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}
.qrcode-desc {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}
.qrcode-img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}
.close-qrcode {
    padding: 6px 20px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
}
/* 新闻横幅 - 修复版 */
.news-banner .jumbotron {
    height: 280px; /* 可根据需要调整高度 */
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}


.news-banner .container {
    position: relative;
    z-index: 2;
    padding-left: 15px;
    padding-right: 15px;
}

.news-banner .decs {
    color: #000;
    max-width: 600px; /* 控制描述文字最大宽度 */
    margin-top:120px;
}

.news-banner .decs h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.news-banner .desc-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #626266;
    margin: 0;
    word-break: keep-all;
    white-space: normal;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .news-banner .jumbotron {
        height: 240px;
    }
    .news-banner .decs h1 {
        font-size: 2rem;
    }
    .news-banner .desc-text {
        font-size: 1rem;
        max-width: 100%;
    }
}