﻿.wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: -8px;
    left: 8px;
    overflow: hidden;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    opacity: 0.6;
    -webkit-transition: .3s ease all;
    -moz-transition: .3s ease all;
    -ms-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
}

.wrap:hover {
    opacity: 0.9;
}

.wraps {
    display: inline-block;
    text-align: center;
    width: 200px;
    height: 30px;
    line-height: 27px;
    position: absolute;
    top: 30px;
    right: -50px;
    z-index: 2;
    overflow: hidden;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    border: 1px dashed;
    box-shadow: 0 0 0 1px #000, 0px 21px 5px -18px rgba(0, 0, 0, 0.6);
    background: rgb(1, 132, 127);
}

.flash {
    font-weight: bold;
    font-size: calc(10px + 4vh);
    line-height: calc(10px + 6.6vh);
    text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500, 0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
    color: #fff6a9;
    font-family: "Sacramento", cursive;
    text-align: center;
    animation: blink 1s infinite;
    -webkit-animation: blink 1s infinite;
    margin: 1rem 0;
}
.bling{text-align:center;margin: 2rem 0;}
.bling1 {
    margin: 0;
    padding: 0;
    color: white;
    display: inline-block;
    font-size: 2.3rem;;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
}

/* 20260612 start */

/* 20260613 start */
.page-navigator{
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    position: relative;
}

.page-navigator #submitBtn,
.page-navigator #prevBtn,
.page-navigator #nextBtn,
.page-navigator #pageNum{
    background: transparent;
    border: 1px solid rgb(130, 130, 130);
    color: #fff;
    padding: 0 8px;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    font-size: 0.9rem;
}

.page-navigator #nextBtn{
    margin-left: 0rem;
}
.page-navigator #pageNum{
    text-align: center;
    width: 3.2rem;
    margin-right: 0.2rem;
}


.page-navigator .syy-page{
    position: absolute;
    left: 0;
    z-index: 9;
}
.page-navigator #pageForm{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
}
.page-navigator .xyy-page{
    position: absolute;
    right: 0;
    z-index: 9;
}
/* 20260613 end */

/* 详情页收藏分享按钮 */
.share-box{
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin: 0.5rem 0 0 0;
}
.share-box .share-item{
    width: 47%;
}
.share-box .share-item{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    height: 40px;
    color: #1abc9c;
    border-radius: 25px;
    border: 1px solid #1abc9c;
    cursor: pointer;
}
.share-box .share-item img{
    width: 1rem;
    height: auto;
    margin: 0;
    margin-right: 0.5rem;
}

/* 详情页收藏 App 弹窗 */
#sc-popup .popup-picture {
    position: relative;
}
#sc-popup .popup-item-box {
    display: inline-block;
}
#sc-popup .sc-app-bg {
    width: 30rem;
}
#sc-popup .sc-zsbl{
    color: #ffeab4;
    cursor: pointer;
    font-size: 0.8rem;
}
#sc-popup .sc-close {
    width: 42px;
    height: 42px;
    margin-top: 25px;
    cursor: pointer;
}
#sc-popup .sc-close img {
    width: 100%;
    height: 100%;
}
#sc-popup .popup-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    font-size: 0.8rem;
    color: #ffeab4;
    transform: translate(-50%, -2rem);
}
#sc-popup .popup-btn a {
    display: inline-block;
    margin: 1rem auto;
}
#sc-popup .popup-btn img {
    display: block;
    width: 18rem;
    cursor: pointer;
}
#sc-popup .popup-btn .sc-close {
    cursor: pointer;
}
@media screen and (max-width:768px) {
    #sc-popup .popup-btn img {
        width: 14rem;
    }
    #sc-popup .popup-btn {
        transform: translate(-50%, -1rem);
    }
    #sc-popup .sc-close {
        width: 36px;
        height: 36px;
        margin-top: 15px;
    }
}

/* 复制成功 Toast */
.copy-success-toast {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 999;
    min-width: 280px;
    max-width: calc(100vw - 48px);
    padding: 18px 28px;
    color: #fff;
    background: #000;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -10px);
    transition: opacity .22s ease, transform .22s ease;
    white-space: nowrap;
}
.copy-success-toast.show {
    opacity: 1;
    transform: translate(-50%, -50%);
}
@media(max-width: 767px) {
    .copy-success-toast {
        min-width: 0;
        width: max-content;
        padding: 15px 24px;
        font-size: 16px;
    }
}
/* 20260608 ID-1 PC navbar 搜索图标静态化（与 51cg1 对齐）
 * 主题原 .navbar-search-container 有 transition:0.3s all + hover 变背景白色 + body.show-navbar-search 触发宽度 2.5rem→10rem 展开
 * mirages.main.min.js 的 #navbar-search click handler 会强制 toggle body.show-navbar-search 类
 * 这些联合产生「点击瞬间弹样式」的闪现。统一 !important override 让容器保持静态。 */
.navbar-search-container {
    transition: none !important;
    width: 2.5rem !important;
}
body.show-navbar-search .navbar-search-container {
    width: 2.5rem !important;
}
body.theme-dark:not(.show-navbar-search) .navbar-search-container:hover,
body.theme-white .navbar-search-container:hover,
body.theme-white.theme-sunset .navbar-search-container:hover {
    background: inherit !important;
}

/* ID-3 搜索结果计数 */
.search-result-info {
    padding: 0.6rem 0.75rem;
    margin: 0.75rem 0;
    color: #bbb;
    font-size: 0.95rem;
    border-left: 3px solid #1abc9c;
    background: rgba(255, 255, 255, 0.03);
}
.search-result-info strong {
    color: #1abc9c;
    font-weight: 600;
    margin: 0 0.15rem;
}

/* 20260608 ID-7 文章详情页间距调整
   ① 发布时间 ↔ 顶部 Banner 过宽 → margin 0
   ② 「喜欢这个视频的人还看了」过宽 → component/recommend.php 内联 PC 14/8 H5 8/8
   ③ 「上一篇:」/「下一篇:」标签文字 ↔ 下方文章标题 过窄 → .prev-t 块级显示 + 下方留白
   ④ 「上一篇/下一篇」卡片 ↔ 下方广告 过窄 → margin-bottom 48px */
#post .post-meta {
    margin: 0 !important;
}
.post-near {
    padding: 14px 18px !important;
    margin: 0 0 48px !important;
}
.post-near .prev-t {
    /* 51cg1 紧凑 + 微加 margin-bottom 拉开标签↔内容距离 */
    display: inline-block !important;
    margin: 0 0 4px !important;
    line-height: 1.8 !important;
}

/* 20260608 ID-10 归档/标签页顶部标题完整显示（防溢出 + H5 字号收紧） */
#archives #archives-title,
#archives-title {
    word-break: break-all;
    overflow: visible;
    line-height: 1.3;
    padding-inline: 0.5rem;
}
@media (max-width: 767px) {
    #archives #archives-title,
    #archives-title {
        font-size: 1.75rem;
    }
}

/* 20260612 end */


/* 20260612 调整悬浮处理 start */
.xqbj-component-adfloat {
    position: fixed;
    right: 0.8rem;
    bottom: 13rem;
    z-index: 50;
	display: none;
}

.xqbj-component-adfloat img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.xqbj-component-adfloat .banner-swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.xqbj-component-adfloat .banner-swiper .swiper-wrapper {
	width: 5.0rem;
	height: 5.0rem;
}

.xqbj-component-adfloat .banner-swiper a {
	width: 100%;
	height: 100%;
	display: block;
	cursor: pointer;
}

.xqbj-component-adfloat .banner-swiper .swiper-pagination{
	position: initial;
	height: 0.8rem;
	display: flex;
    justify-content: center;
}

.xqbj-component-adfloat .banner-swiper .swiper-wrapper .swiper-slide {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.xqbj-component-adfloat .swiper-pagination {
    position: absolute;
    text-align: center;
    transform: translate3d(0,0,0);
    z-index: 10;
	margin: 0.3rem 0 0 0;
}
.xqbj-component-adfloat .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: 1;
}

.xqbj-component-adfloat .xqbj-icon-close {
	width: 1.25rem;
    height: 1.25rem;
	position: absolute;
    top: -1.5rem;
    right: 0.5rem;
	cursor: pointer;
	z-index: 2;
	display: block;
}

.xqbj-component-adfloat .cus-pagination {
	position: absolute;
	bottom: -0.7rem !important;
	z-index: 9999 !important;
	white-space: nowrap;
}

.xqbj-component-adfloat .swiper-pagination-bullet {
	width: 0.3125rem !important;
	height: 0.3125rem !important;
}

.xqbj-component-adfloat .swiper-pagination-bullet-active {
	background: #ffffff !important;
}

/*html.overflow-hidden #adFloat {*/
/*	display: none !important;*/
/*}*/

@media (min-width: 960px) {
    .share-box{
        margin: 1.5rem 0 0 0;
    }
    /* 20260612 调整悬浮处理 start */
    .xqbj-component-adfloat {
        position: fixed;
        right: 0.6rem;
        bottom: 9rem;
        z-index: 50;
        display: none;
    }


    .xqbj-component-adfloat .xqbj-icon-close {
		width: 1.5625rem;
		height: 1.5625rem;
		position: absolute;
		top: -1.8rem;
        right: 0.0625rem;
		cursor: pointer;
		z-index: 2;
	}

	.xqbj-component-adfloat .banner-swiper .swiper-wrapper {
		width: 6.25rem;
		height: 6.25rem;
	}


}

/* 20260612 调整悬浮处理 end */