@charset "UTF-8";
/**
 * 法律提示：本程序/代码仅限合法用途使用，严禁用于任何违反国家法律法规、危害网络安全、侵犯他人权益的行为。
 * 禁止用于：网络诈骗、传播违法信息、非法入侵、恶意攻击、侵犯隐私、网络赌博、色情内容等任何违法行为。
 * Copy right 2026 网博士网络工作室, 保留所有权利。
 * 官方网址: www.网博士.com   联系：QQ: 570830288
 **/



/*==========自定义CSS请添加在以下，请勿修改以上信息！==========*/

/* 修复眼睛图标垂直居中 */
.loop-1-box-img .down {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 修复注册登录提示被粒子背景遮挡 */
.wbs-users-lore {
    position: relative !important;
    z-index: 100 !important;
}

.wbs-users-lore a {
    position: relative !important;
    z-index: 101 !important;
}

/* 修复收藏图标垂直居中 */
.loop-1-box-img .btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.loop-1-box-img .btn a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 鼠标悬停显示收藏按钮 */
.loop-1-box:hover .loop-1-box-img .btn {
    opacity: 1 !important;
}

/* 密码修改标题样式 */
.stitle {
    font-size: 20px !important;
    margin-bottom: 20px !important;
}

/* 广告图片自适应铺满 */
.wbs-ad-image {
    display: block;
    width: 100%;
    height: auto;
}

/* 广告位右下角"广告"水印 */
.wbs-ad-item {
    position: relative;
    overflow: visible;
}

.wbs-ad-badge {
    position: absolute;
    right: 4px;
    bottom: 4px;
    display: inline-block;
    padding: 1px 5px;
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: auto;
    z-index: 10;
    white-space: nowrap;
    user-select: none;
}

/* 三角箭头 → 指向"广告" */
.wbs-ad-badge::before {
    content: '';
    position: absolute;
    right: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%) translateX(5px);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid rgba(0, 0, 0, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* 悬停向左弹出提示文字 */
.wbs-ad-badge::after {
    content: '想出现在这里？联系我们吧';
    position: absolute;
    right: calc(100% + 9px);
    top: 50%;
    transform: translateY(-50%) translateX(5px);
    padding: 1px 6px;
    font-size: 11px;
    line-height: 1.4;
    color: #fff;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.wbs-ad-badge:hover::before,
.wbs-ad-badge:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* 首页专题图片边框阴影 */
.wbs-home-special .wbs-slider-container {
    overflow-x: hidden;
    overflow-y: visible;
}
.wbs-home-special li {
    padding-bottom: 12px;
}
.wbs-home-special li a {
    display: block;
}
.wbs-home-special li a,
.wbs-home-special li > img {
    border-radius: 6px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.wbs-home-special li a img {
    display: block;
    width: 100%;
    border-radius: 6px;
}
