.wznav-ad-container {
  display: flex;
  flex-wrap: wrap; /* 允许子元素换行 */
  justify-content: space-between; /* 子元素均匀分布 */
}

.wznav-ad {
  flex: 0 0 calc(100% - 4px); /* 每行显示两个子容器，减去边距 */
  margin: 2px 0; 
}

.wznav-ad img {
  width: 100%; 
  height: auto; 
  display: block; 
}
.two{
  flex: 0 0 calc(50% - 4px); /* 每行显示两个子容器，减去边距 */
  margin: 2px 0; 
}
.io-black-mode .wznav-dh .posts-row{
  background-color: #3c3c3c;
  border-radius:8px;
}
.wznav-dh .posts-row{
  background-color: #e6e6e6;
  border-radius:8px;
}
/* 加载更多----0 */
.ajax-load-more{
  position: relative;
  color: var(--muted-color);
  font-size: 14px;
  padding: 4px 25px;
  border-radius: 20px;
  background: transparent;
  transition: 0.4s ease 0.1s!important;
}
.ajax-load-more:hover{
  color: var(--main-color);
  padding: 4px 20px;
  background: var(--muted-bg-color);
}
.ajax-load-more::after,
.ajax-load-more::before{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: var(--muted-color);
  opacity: .3;
  transition: 0.4s ease-out;
}
.ajax-load-more::before{
  left: -100%;
}
.ajax-load-more::after{
  right: -100%;
}
.ajax-load-more:hover::before{
  width: 1%;
  left: 0;
  opacity: .1;
}
.ajax-load-more:hover::after{
  width: 1%;
  right: 0;
  opacity: .1;
}
/* 加载更多----1 */
/* 二级菜单----0 */
 .toggle-icon {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  /* transform: rotate(-90deg); */
}

.toggle-icon.rotated {
  transform: rotate(135deg);
}
.wz-none{
  display: none;
}
.submenu{
  margin-left:15px!important;
} 

.has-children .sub-menu  .menu-item {
  text-align: center;
}

.has-children .sub-menu  .menu-item span {
  margin-left: 0 !important;
    
}

.has-children .sub-menu .menu-item a {
  /* width: 82px; */
  margin:0px 2px;
  overflow: hidden;
  white-space: nowrap; /* 防止文本换行 */
  text-overflow: ellipsis; /* 溢出部分显示为省略号 */
}
/* 二级菜单----1 */

/* swiper----0 */
:root {
    --primary-color: #4a90e2;
    --secondary-color: #7ed321;
    --hover-bg: rgba(74, 144, 226, 0.1);
    --text-dark: #2c3e50;
    --text-light: #95a5a6;
}

.nav-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    white-space: nowrap;
    padding: 10px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-behavior: smooth;
    margin-left: -19px;
}

.wznav-nav-container .nav-item {
    flex: 0 0 auto;
    /* background: rgba(255, 255, 255, 0.95); */
    margin: 0 10px;
    background-color: var(--main-bg-color);
    border-radius: 5px;
    min-width: 160px;
    width: 160px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #dce1e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    will-change: transform;
    /* overflow: hidden; */
}

.wznav-nav-container .nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.15);
}

.wznav-nav-container .nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    text-decoration: none;
    /* color: var(--text-dark); */
    position: relative;
    overflow: hidden;
}

.wznav-nav-container .nav-item a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s;
}

.wznav-nav-container .nav-item:hover a::before {
    opacity: 1;
}

.wznav-nav-container .nav-item span {
    font-size: 10px;
    color: #848484;
    margin-top: 5px;
    transition: color 0.3s;
}

.wznavarrow {
    position: absolute;
    width: 44px;
    height: 80%;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    /* color: white; */
    background-color: var(--main-bg-color);
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    top: 50%;
    /* opacity: 0.9; */
    transform: translateY(-50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center
}

.io-black-mode .wznavarrow{
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);

}

.io-black-mode .wznav-nav-container .nav-item {
    border: 1px solid #5b5e64;
}

.wznavarrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.left-arrow {
    left: 0;
    border-radius: 0 10px 10px 0;
}

.right-arrow {
    right: 0;
    border-radius: 10px 0 0 10px;
}

.wznavbadge {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    /* border-radius: 50%; */
    /* background: #ff4757; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3); */
    animation: float 2.5s ease-in-out infinite;
}

.wznavbadge img {
    filter: brightness(0) invert(1);
    width: 60%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
   .wznav-nav-container .nav-item {
        min-width: 140px;
        margin: 0 8px;
    }

    .wznavarrow {
        width: 36px;
        height: 70%;
        font-size: 20px;
    }

    .wznavbadge {
        width: 28px;
        height: 28px;
    }
}
/* swiper----1 */

/* ai----0 */

.ai-cursor {
  display: inline-block;
  width: 7px;
  background: #333;
  height: 16px;
  margin-bottom: -2px;
  opacity: 0.95;
  margin-left: 3px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.article-gpt{
    margin-top: 1.2rem;
    background-color: #f7f7f9;
    -webkit-user-select: none;
    user-select: none;
    cursor: auto;

    padding: .8rem;
    border-radius: 16px;
    border: 1px solid #e3e8f7;
    box-shadow: 0 8px 16px -4px #2c2d300c;
    transition: all .3s;
    user-select: none;
    cursor: auto;
}

.article-gpt .title{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .8rem;
    padding: 0 8px;
}

.article-gpt .title .name {
    display: flex;
    align-items: center;
    color:#425aef;
    font-weight: 700;
    cursor: pointer;
}

.article-gpt .title .logo{
    padding: 4px 10px;
    font-size: 12px;
    color: #ffffff;
    background-color: #425aef;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
}

.article-gpt .content{
    cursor: auto;
    padding: .8rem;
    border-radius: 16px;
    background-color: #ffffff;
    border: 1px solid #e3e8f7;
    transition: all .3s;
    cursor: pointer;
}

.article-gpt .meta .tip{
    opacity: .6;
}


.article-gpt .meta .report{
    white-space: nowrap;
    margin-left: 12px;
    opacity: .8;
    text-decoration: none;
    transition: all .3s;
}
.article-gpt .meta{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0 8px;
    font-size: 12px;
}
.article-gpt .title .name i:first-of-type{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    width: 26px;
    height: 26px;
    color: #ffffff;
    background-color: #425aef;
    border-radius: 50%;
    margin-right: 8px;
    padding-right: 0.5px;
    padding-top: 1px;
}
@keyframes breathing {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
.breathing-effect {
  animation: breathing 1.5s infinite ease-in-out;
}

.io-black-mode .article-gpt .content {
    background-color: #2d2e2f;
}
.io-black-mode .article-gpt {
        background-color: #252525;
}
/* ai----1 */

/* 登录提示框代码开始 */
#custom-login-notice {
    position: fixed;
    bottom: 4vh;
    right: 4vw;
    background: var(--main-blur-bg-color);
    /* 配合主题的黑夜模式 */
    color: var(--main-color);
    /* font-weight: bold; */
    padding: 2vh 3vw;
    padding-right: 2vw;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(229 164 70 / 20%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    max-width: 90vw;
    /* 最大宽度改为相对单位 */
    font-size: clamp(14px, 2vw, 16px);
    /* 使用clamp()函数确保字体大小在合适范围内 */
    transition: all 0.4s ease-in-out;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    flex-wrap: wrap;
    /* 在小屏幕上允许换行 */
    gap: 10px;
    /* 元素间距 */
}

#custom-login-notice:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(79, 70, 229, 0.25);
}

#custom-login-notice a.button {
    background: rgb(255 125 125 / 19%);
    /* color: white; */
    color: var(--main-color);
    min-width: min(100px, 30vw);
    /* 使用min()函数确保最小宽度合适 */
    text-align: center;
    padding: 1.5vh 2vw;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.25);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 0.5vw;
    /* 减少与关闭按钮的间距 */
}

#custom-login-notice a.button:hover {
    background: rgba(99, 213, 241, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(79, 70, 229, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

#custom-login-notice p {
    margin: 0;
    padding-right: 2vw;
    width: auto;
    font-weight: 500;
    line-height: 1.4;
    white-space: normal;
}

#close-login-notice {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* color: rgba(255, 255, 255, 0.9); */
    color: var(--main-color);
    font-size: clamp(18px, 3vw, 24px);
    cursor: pointer;
    padding: 0.5vh;
    margin-left: 0.2vw;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(24px, 4vw, 34px);
    height: clamp(24px, 4vw, 34px);
    white-space: nowrap;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#close-login-notice:hover {
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    background: rgba(255, 107, 107, 0.2);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

#close-login-notice:active {
    transform: rotate(90deg) scale(0.95);
}

#custom-login-notice.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#custom-login-notice {
    animation: slideIn 0.5s ease-out;
}

/* 添加媒体查询以优化移动端显示 */
@media screen and (max-width: 480px) {
    #custom-login-notice {
        bottom: 2vh;
        right: 2vw;
        left: 2vw;
        padding: 2vh;
        justify-content: center;
        text-align: center;
    }

    #custom-login-notice p {
        padding-right: 0;
        margin-bottom: 1vh;
        width: 100%;
    }

    #custom-login-notice a.button {
        width: 100%;
        margin: 1vh 0;
    }

    #close-login-notice {
        position: absolute;
        top: 1vh;
        right: 1vw;
    }
}

/* 登录提示框代码结束 */


/* widgets card  0*/

.wznav-widget .row.gutters-5 {
    display: flex;
    width: 100%;
    margin: 0px;
  }
  
  .wznav-widget .col-sm-2.col-xs-4 {
    position: relative;
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
    padding: 0px 5px;
  }
  
  .wznav-widget .graphic {
    position: relative;
    width: 100%;
    height: 0px;
    padding-bottom: 45%;
    overflow: hidden;
    border-radius: 5px;
  }
  
  .wznav-widget .graphic::before {
    content: "";
    position: absolute;
    inset: -5px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    z-index: 1;
  }
  
  .wznav-widget .graphic img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    border-radius: 5px;
    z-index: 2;
  }
  
  .wznav-widget .graphic:hover img {
    transform: scale(1.1);
  }
  
  /* @media (max-width: 767px) {
    .wznav-widget .row.gutters-5 {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0px !important;
        overflow: hidden !important;
    }
  } */
  
  .wznav-widget .abs-center, 
  .wznav-widget .abs-left, 
  .wznav-widget .abs-right, 
  .wznav-widget .form-select::before, 
  .wznav-widget .line-form-label, 
  .wznav-widget .payvip-icon::before, 
  .wznav-widget .toggle-radius .fa, 
  .wznav-widget .toggle-radius .icon {
    position: absolute;
    top: 50%;
    right: 0.7em;
    transform: translateY(-50%);
    z-index: 2;
  }
  
  .wznav-widget .abs-center {
    left: 0px;
    width: 100%;
  }
  
  .wznav-widget .col-xs-1, 
  .wznav-widget .col-xs-10, 
  .wznav-widget .col-xs-11, 
  .wznav-widget .col-xs-12, 
  .wznav-widget .col-xs-2, 
  .wznav-widget .col-xs-3, 
  .wznav-widget .col-xs-4, 
  .wznav-widget .col-xs-5, 
  .wznav-widget .col-xs-6, 
  .wznav-widget .col-xs-7, 
  .wznav-widget .col-xs-8, 
  .wznav-widget .col-xs-9 {
    float: left;
  }
  
  .wznav-widget .col-xs-6 {
    width: 50%;
  }
  
  .wznav-widget .gutters-5>* {
    padding: 5px;
  }
  
  .wznav-widget .col-lg-1, 
  .wznav-widget .col-lg-10, 
  .wznav-widget .col-lg-11, 
  .wznav-widget .col-lg-12, 
  .wznav-widget .col-lg-2, 
  .wznav-widget .col-lg-3, 
  .wznav-widget .col-lg-4, 
  .wznav-widget .col-lg-5, 
  .wznav-widget .col-lg-6, 
  .wznav-widget .col-lg-7, 
  .wznav-widget .col-lg-8, 
  .wznav-widget .col-lg-9, 
  .wznav-widget .col-md-1, 
  .wznav-widget .col-md-10, 
  .wznav-widget .col-md-11, 
  .wznav-widget .col-md-12, 
  .wznav-widget .col-md-2, 
  .wznav-widget .col-md-3, 
  .wznav-widget .col-md-4, 
  .wznav-widget .col-md-5, 
  .wznav-widget .col-md-6, 
  .wznav-widget .col-md-7, 
  .wznav-widget .col-md-8, 
  .wznav-widget .col-md-9, 
  .wznav-widget .col-sm-1, 
  .wznav-widget .col-sm-10, 
  .wznav-widget .col-sm-11, 
  .wznav-widget .col-sm-12, 
  .wznav-widget .col-sm-2, 
  .wznav-widget .col-sm-3, 
  .wznav-widget .col-sm-4, 
  .wznav-widget .col-sm-5, 
  .wznav-widget .col-sm-6, 
  .wznav-widget .col-sm-7, 
  .wznav-widget .col-sm-8, 
  .wznav-widget .col-sm-9, 
  .wznav-widget .col-xs-1, 
  .wznav-widget .col-xs-10, 
  .wznav-widget .col-xs-11, 
  .wznav-widget .col-xs-12, 
  .wznav-widget .col-xs-2, 
  .wznav-widget .col-xs-3, 
  .wznav-widget .col-xs-4, 
  .wznav-widget .col-xs-5, 
  .wznav-widget .col-xs-6, 
  .wznav-widget .col-xs-7, 
  .wznav-widget .col-xs-8, 
  .wznav-widget .col-xs-9 {
    position: relative;
    min-height: 1px;
    /* padding-right: 15px; */
    /* padding-left: 15px; */
  }
  
  @media (max-width: 767px) {
    .wznav-widget .this-font {
        font-size: var(--font-size-sm);
        font-weight: var(--font-weight-sm);
        color: var(--color-sm);
    }
  }
  
  .wznav-widget .this-font {
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    color: var(--color);
  }

/* widgets card  1*/

.wznav-widget-wrapper{
  margin: 10px 0;
}

/* sitetag----0 */
.wznav-sitetag {
  background-color: var(--main-bg-color);
  border-radius: 8px;
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1px;
}

.wznav-sitetag a {
  font-size: 0.8rem !important;
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
  display: block; 
  text-align: center;
  border-radius: 5px !important;
  padding: 5px;
  margin: 3px !important;
}
.wznav-sitetag{
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
}
/* sitetag----1 */


/*内页按钮广告位和预览图0*/
.site-go.mt-3 a{
  margin-top:8px;
}
.site-img {
text-align: center; /* 水平居中 */
}
.site-img img {
display: block; /* 消除图片底部间隙 */
margin: 0 auto; /* 块级元素水平居中 */
}
/*按钮广告位和预览图1*/

/* 新增菜单css----0 */
/* 这个是修改后的子菜单定位方式 */
#pc-right-menu .sub-menu .sub-menu {
  left: -100%; /* 将子菜单定位到父菜单项的左侧 */
  top: -5px;
}
#pc-right-menu .sub-menu{
  left:-40%;
  text-align:center;
}
/* 新增菜单css----1 */
/* 小工具css----0 */
.simple-top {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}

.simple-top-wrap {
  flex-wrap: wrap;
  margin: -5px;
}

.simple-top-item {
  width: 16.6666%;
}

.simple-top-content {
  background-color: var( --main-bg-color);
  border-radius: var(--main-radius);
}

.simple-top-img {
  width: 25px;
  height: 25px;
}

.simple-top-img img {
  width: 100%;
  height: 100%;
}

.simple-top-title {
  color: var(--main-color);
}

.simple-top-desc {
  color: var(--main-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}

.simple-top-tip {
  font-size: 12px;
  top: 0;
  right: 0;
  background: rgb(104 77 244 / 17%);
  padding: 2px 5px;
  border-radius: 0 var(--main-radius) 0 var(--main-radius);
  color: var(--main-color);
}

@media (max-width: 1200px) {
  .simple-top {
      margin: 0 0 10px;
  }
}

@media (max-width: 991px) {
  .simple-top-item {
      width: 33.3333%
  }
}

@media (max-width: 767px) {
  .simple-top-item {
      width: 50%
  }
}
.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.p-sticky {
  position: sticky;
}


/* 小工具css----1 */


/* app----0 */
.wznav-app .app-info-wz {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  flex: 1 1 calc(10% - 15px);
  box-sizing: border-box;
}
.wznav-app .app-details {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
}
.wznav-app .app-details div {
  width: 50%;
  margin-bottom: 5px;
}
/* 修复按钮变形问题 */
.wznav-app .btn-lg {
  white-space: nowrap;
  min-width: 150px;
  display: inline-block;
}

@media (max-width: 768px) {
  .wznav-app .app-info-wz {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .wznav-app .app-info-wz button {
      margin-top: 15px;
      align-self: flex-start;
  }
  .wznav-app .wz-app-ico {
      display: none;
      /* float: left; */
  }
  .wznav-app .app-content.py-5 {
      padding-bottom: 1rem!important;
  }
}

.wznav-app .wz-app-ico {
  /* display: none; */
  float: left;
}

.wznav-app .d-md-flex.mt-n3.mb-5.my-xl-0 {
  padding: 10px;
  color: var(--main-color);
  background-color: var(--main-bg-color);
  border-radius: 8px;
}
.wznav-app .io-black-mode .app-info-wz {
  background-color: #252525;
  color: #dde3e5;
}
@media (min-width: 1200px) {
  .wznav-app .app .mb-xl-5, .wznav-app .my-xl-5 {
      margin-bottom: 0!important;
  }
}

.wznav-app .app .col {
  padding: 10px;
}
.wznav-app .wz-app p {
  margin-bottom: 5px;
}
.wznav-app .wz-app .app-info-ico.mb-4 {
  margin-bottom: 5px!important;  
}
.wznav-app .apptag {
  /* text-align:center; */
  margin-bottom: 5px;
}
.wznav-app .apptag .mr-2 {
  background-color: #f1404b;
  padding: 3px 5px;
  margin: 0 1px!important; 
  border-radius: 4px;
  color: #fff;  
}
.wznav-app .apptag .mr-2 a {
  color: #fff;  
}
.wznav-app .apptag span {
  font-size: 10px;
  white-space: nowrap;
}
.wznav-app .app-info-wz {
  font-size: 14px;
  white-space: nowrap;
}
/* app====1 */


/* site预览框====0 */
.wznav-preview-body .mockup-browser {
  border-radius: 8px;
}

.wznav-preview-body a {
  border-radius: 0px !important;
  background: #f0ffff00 !important;
  position: relative; /* 确保伪元素遮罩定位 */
  display: inline-block;
}

/* 遮罩伪元素默认状态 */
.wznav-preview-body a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* 默认透明 */
  pointer-events: none;
  z-index: 1;
  transition: background-color 0.35s ease-in-out; /* 平滑过渡 */
}

/* 鼠标悬停时显示遮罩 */
.wznav-preview-body:hover a::after {
  background-color: rgba(0, 0, 0, 0.35); /* 柔和黑色遮罩 */
}

/* 让按钮文字位于遮罩之上，并带有浮动效果 */
.wznav-preview-body a span {
  position: relative;
  z-index: 2;
  padding: 5px 30px;
}

.wznav-preview-body:hover a span {
  transform: translateY(-2px);
}

/* 模拟浏览器框样式 */
.wznav-preview-body .mockup-browser {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-top: 30px;
  transition: all .25s cubic-bezier(.37, .31, .2, .85);
}

.wznav-preview-body .mockup-browser::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  position: absolute;
  background: linear-gradient(180deg, #f0f2f7, #fff);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

/* 浏览器顶部按钮样式 */
.wznav-preview-body .mockup-dots {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  top: 15px;
  left: 15px;
  margin: -5px 0 0;
}

.wznav-preview-body .mockup-dots i.dot1,
.wznav-preview-body .mockup-dots i.dot2,
.wznav-preview-body .mockup-dots i.dot3 {
  width: 10px;
  height: 10px;
  border-radius: 10px;
}

.wznav-preview-body .mockup-dots i.dot1 {
  background-color: #ff5f52;
}

.wznav-preview-body .mockup-dots i.dot2 {
  background-color: #ffbe05;
  margin: 0 .5rem;
}

.wznav-preview-body .mockup-dots i.dot3 {
  background-color: #15cc35;
}

/* 遮罩按钮层 */
.wznav-preview-body .visitWebsite {
  opacity: 0;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  top: 0;
  position: absolute;
  display: flex;
  transition: all .3s ease-in-out;
  background-image: linear-gradient(to top, rgba(33,50,91,.5) 0, rgba(30,32,34,.25) 100%);
  margin-top: 30px;
}

.wznav-preview-body:hover .visitWebsite {
  opacity: 1;
  background-image: linear-gradient(to top, rgba(33,50,91,.5) 0, rgba(30,32,34,.25) 100%);
}
.wznav-preview-body  img
{
    border-radius:0!important;
}
/* site====1 */

/* more----0 */
.ajax-load-more{
  text-align:center;
  margin:auto!important
}
/* more----1 */



/* ADCARD---0 */
.pay-mark, .admon {
  font-size: 0.6em;
}

.addes {
  font-size: 24px;
  text-align: center;
  font-weight: 700;
}

.em3x {
  font-size: 2em;
  color: #fe3459;
}

.product-pay a {
  padding: 10px;
}

.adtitle1 {
  padding: 15px 16px;
}

.adbuts {
  padding: 4px;
}

.product-pay a {
  margin:5px;
}

.product-pay a {
  color: #fff;
  background-image: linear-gradient(135deg, #fd7a64 10%, #fb2d2d 100%);
  border-radius: 5px;
  display: block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.textwidget {
  background-color: var(--main-bg-color);
  border-radius: 10px;
}

/* ADCARD----1 */

/* model-card---0 */
.wznavz-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto;
  justify-content: flex-start;
}

.wznavz-button {
  flex: 1 1 120px; /* 自动填充，最小120px */
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: var(--main-bg-color);
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.wznavz-button i {
  font-size: 45px;
  padding: 0!important;
  margin: 0!important;
  margin-bottom: 2px!important;
}


.wznavz-button:hover {
transform: translateY(-5px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.wznavz-button:active {
transform: translateY(2px);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wznavz-button img {
width: 30px;
height: 30px;
margin-bottom: 8px;
}

.wznavz-button span {
font-size: 12px;
font-weight: bold;
text-align: center;
}

@media (max-width: 768px) {
.wznavz-button img {
  width: 25px;
  height: 25px;
}

.wznavz-button span {
  font-size: 11px;
}
}

@media (max-width: 480px) {
.wznavz-button img {
  width: 20px;
  height: 20px;
}

.wznavz-button span {
  font-size: 10px;
}
}
/* model-card---1 */
/* 文章目录====0 */

/* // 目录树样式 */
/* 限定 sidebar 区域高度和位置 */
/* .io-sidebar-widget.widget_toc {
  position: relative; 
} */

/* 吸附导航 */
/* .wznav-toc-widget {
  position: sticky;
  top: 80px; 
  max-height: calc(100vh - 100px); 
  padding-right: 4px;
} */

/* 滚动条美化（可选） */
.wznav-toc-widget::-webkit-scrollbar {
  width: 4px;
}
.wznav-toc-widget::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border-radius: 4px;
}

/* TOC 项目统一样式 */
.wznav-toc-list {
  list-style: none;
  padding: 5px 8px 12px 8px;
  margin: 0;
}

.toc-item {
  position: relative;
  margin-bottom: 2px;
}

/* 通用链接样式 */
.toc-item > a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 3px 20px 3px 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 14px;
  line-height: 1.5;
}

/* 圆点：基础样式 */
.toc-item::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #9ca3af; /* 灰色默认 */
}

/* H2 - 一级目录 */
.toc-h2 > a {
  padding-left: 1.5rem;
  font-weight: 600;
  font-size: 15px;
}
.toc-h2::before {
  background-color: #3b82f6; /* 蓝点 */
  width: 8px;
  height: 8px;
}

/* H3 - 二级目录 */
.toc-h3 > a {
  padding-left: 2.2rem;
  font-weight: 500;
  font-size: 14px;
}
.toc-h3::before {
  background-color: #60a5fa;
  left: 1.2rem;
}

/* H4 - 三级目录 */
.toc-h4 > a {
  padding-left: 2.8rem;
  font-weight: 400;
  font-size: 13.5px;
  color: #6b7280;
}
.toc-h4::before {
  background-color: #a5b4fc;
  left: 1.8rem;
}

/* Hover 效果 */
.toc-item > a:hover {
  background-color: #f3f4f6;
  color: #1d4ed8;
}

/* 当前激活项样式 */
.toc-item > a.active {
  background-color: #e0edff;
  color: #2563eb;
  font-weight: 600;
}


/* 文章目录====1 */
/* 幻灯片----0 */

/* 幻灯片组件清理版 */
.widget_slide_group .slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  clip-path: inset(0);
  transition: height 0.3s ease;
}

.widget_slide_group .slider-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.widget_slide_group .slider-indicator {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 3px;
  border-radius: 50%;
  background-color: rgba(153, 153, 153, 0.7);
  backdrop-filter: blur(5px);
  cursor: pointer;
  transition: background-color 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.widget_slide_group .slider-indicator.active {
  width: 15px;
  height: 7px;
  border-radius: 100px;
  background-color: rgb(70, 103, 240);
}

.widget_slide_group .slide-track {
  display: flex;
  transition: transform 0.5s ease;
}

.widget_slide_group .slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.widget_slide_group .slide.hidden {
  pointer-events: none;
}

.widget_slide_group .slide img {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.widget_slide_group .slide a {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 16px;
  color: white;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
}

.widget_slide_group .slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s;
}

.widget_slide_group .slide:hover::before {
  opacity: 1;
}

.widget_slide_group .slide.emptyslide::before {
  background-color: transparent;
}

.widget_slide_group .slide button {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  z-index: 3;
  transition: background-color 0.3s;
}

.widget_slide_group .slide button:hover {
  background-color: rgba(255, 255, 255, 0.21);
  backdrop-filter: blur(5px);
}

.widget_slide_group .slide:hover button {
  display: block;
}

.widget_slide_group .one-button button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.widget_slide_group .many-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}

.widget_slide_group .description {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 80px;
  color: #fff;
  z-index: 2;
  white-space: nowrap;
}

.widget_slide_group .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(51, 51, 51, 0.5);
  color: white;
  padding: 15px 10px;
  cursor: pointer;
  z-index: 50;
  border-radius: 8px;
  width: 30px;
  text-align: center;
  backdrop-filter: blur(5px);
  user-select: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.widget_slide_group:hover .arrow {
  opacity: 1;
}

.widget_slide_group .arrow.left {
  left: 10px;
}

.widget_slide_group .arrow.right {
  right: 10px;
}

/* 单独 slide 样式防冲突 */
.slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* 幻灯片----1 */

    /*底部应用图标*/
    .dock-container {
      display: none;
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: auto;
      z-index: 999
  }

  .dock {
      text-align: center;
      display: flex;
      align-items: center;
      background-color: rgba(255, 255, 255, 65%);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 10px;
      overflow: visible;
      border: 1px solid #abb7ec4f;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1)
  }

  .dock-icons {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      padding: 0;
      list-style: none
  }

  .dock-icon {
      will-change: transform;
      position: relative;
      width: 50px;
      height: 50px;
      background-color: #fff0;
      border-radius: 12px;
      margin: 0 5px;
      transition: transform 0.2s ease, margin 0.2s ease !important;
      transform-origin: bottom center
  }

  .dock-icon::before {
      content: '';
      position: absolute;
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      z-index: -1
  }

  .dock-icon:hover {
      transform: scale(1.6) translateY(-5px);
      margin-left: 18px;
      margin-right: 18px;
      transition: all 0.2s
  }

  .dock-icon.hovered {
      transform: scale(1.3) translateY(-3px);
      margin-left: 15px;
      margin-right: 15px
  }

  .dock-icon img {
      width: 100%;
      height: 100%;
      border-radius: 12px;
      pointer-events: none
  }

  .dock-icon a {
      display: block;
      width: 100%;
      height: 100%
  }

  .dock-toggle {
      cursor: pointer;
      color: blue;
      text-decoration: underline;
      margin-top: 10px
  }

  .expand-dock {
      position: fixed;
      left: 0px;
      bottom: 20px;
      width: 35px;
      height: 50px;
      font-weight: bold;
      background: linear-gradient(-45deg, #274eee, #4667f0);
      border-radius: 0 8px 8px 0;
      color: #fccb22;
      text-align: center;
      line-height: 52px;
      cursor: pointer;
      display: none;
      z-index: 999
  }

  .expand-dock:hover {
      background: linear-gradient(-45deg, #fccb24, #fde48e);
      color: #274eee
  }

  @media (min-width: 980px) {
      .dock-container {
          display: block
      }
  }

  .docktooltip {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      font-size: 14px;
      background: #4667F0;
      color: #fff;
      padding: 5px;
      border-radius: 5px;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      white-space: nowrap
  }

  .dock-icon:hover .docktooltip {
      top: -36px;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) scale(0.7)
  }

  .docktooltip::before {
      position: absolute;
      content: "";
      height: 8px;
      width: 8px;
      background: #4667F0;
      bottom: -3px;
      left: 50%;
      transform: translate(-50%) rotate(45deg);
      transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55)
  }

  .dock-divider {
      height: 20px;
      border-right: 2px solid #afb5ba;
      margin-left: 5px;
      margin-right: 5px
  }

  .io-black-mode .dock {
      background-color: rgb(27 29 31);
      backdrop-filter: blur(10px);
      border: 1px solid #36393b
  }

  .io-black-mode .dock-divider {
      border-right: 2px solid #ffffffba
  }

  .dockmodal-content {
      background-color:var(--main-bg-color);
      backdrop-filter: blur(15px);
      margin: 8% auto;
      /* margin-bottom: 55%; */
      padding: 25px;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
      width: 70%;
      max-width: 400px;
      border-radius: 8px;
      border: 1px solid #abb7ec4f
  }

  .dockmodal-content h2 {
      margin-top: 0
  }

  #appForm label {
      display: block;
      margin-bottom: 10px
  }

  #addAppModal input[type="text"],
  #addAppModal input[type="submit"] {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      box-sizing: border-box
  }

  #addAppModal input[type="submit"] {
      background: linear-gradient(120deg, #274eee, #4667f0db);
      color: white;
      border: none;
      cursor: pointer;
      border-radius: 8px
  }

  #addAppModal input[type="submit"]:hover {
      background: linear-gradient(-45deg, #fccb24, #fde48e);
      color: #2a51ee
  }

  .dialog {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: linear-gradient(120deg, #274eee, #4667f0db);
      backdrop-filter: blur(15px);
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
      border: 1px solid #abb7ec4f;
      border-radius: 8px;
      padding: 20px
  }

  .dialog-content {
      text-align: center
  }

  .dialog-content p {
      margin-bottom: 20px;
      color: #fff;
      font-weight: 600
  }

  .close {
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer
  }

  #customDialog button {
      padding: 5px 20px;
      margin: 0 10px;
      background: #FFF;
      color: #2c52ee;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s
  }

  #customDialog button:hover {
      background: linear-gradient(-45deg, #fccb24, #fde48e)
  }

  .sortable-ghost {
      opacity: 0.4;
  }

  .sortable-chosen {
      background-color: #f0f0f0;
      border: 1px dashed #ddd;
  }

  /*底部应用图标*/
.dockmodal-content h2
{
  margin-bottom:0px;
}
.dock-size{
  font-size:12px;
  
}
#dock-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s linear 0.5s
}

#dock-container.visible {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: transform 0.5s ease, opacity 0.5s ease
}

#dock-container.hidden {
  transform: translateX(-50%) translateY(100%)
}

.dock-container-bar {
  position: fixed;
  display: none;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  border-radius: 5px 5px 0 0;
  height: 8px;
  background-color: #efefeff5;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999
}

   /*底部应用图标===1*/

   /* 搜索---0 */

   /* 搜索容器样式 */
.wznav-search {
  /* background-color: #fff; */
  border-radius: 5px;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 1;
  visibility: visible;
}

/* 隐藏状态 */
.wznav-search.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* 搜索表单布局 */
.wznav-search .search-form,
.search-left {
  display: flex;
  align-items: center;
}

/* 搜索图标及选择器容器 */
.wznav-search .search-icon {
  display: flex;
  align-items: center;
  padding-left: 5px;
  margin-right: 2px;
}


/* 自定义下拉选择器 */
.wznav-select-wrapper {
  position: relative;
  user-select: none;
}

/* 选择器触发按钮样式 */
.select-trigger {
  display: flex;
  align-items: center;
  /* gap: 6px; */
  cursor: pointer;
  padding: 3px 10px;
  border-radius: 6px;
  /* background-color: #f5f5f5; */
}

.select-trigger img {
  width: 20px;
  height: 20px;
}

.select-trigger .icon-arrow-down {
  font-size: 12px;
  color: #888;
}

/* 下拉选项列表 */
.wznav-custom-select {
  display: none;
  position: absolute;
  top: 100%;
  left: -9px;
  width: max-content;
  background: var(--main-bg-color);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0;
  margin-top: 5px;
  z-index: 999;
  padding:5px;
  text-align: center;
}

/* 显示下拉列表 */
.wznav-custom-select.show {
  display: block;
}

/* 每一项样式 */
.wznav-custom-select li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  cursor: pointer;
  white-space: nowrap;
}

.wznav-custom-select li:hover {
  border-radius:6px;
   background: var(--muted-bg-color);
  color: var(--focus-color);
  
}
.engine-name:hover{
  color: var(--focus-color);
  
}
.wznav-custom-select li img {
  width: 18px;
  height: 18px;
}

#select-trigger{
  width:80px;
  max-width:80px;
}



.wznav-search #search-text {
  padding-left: 5px;
  transition: width 0.5s ease;
  outline: none;
}

/* 默认状态：不展开，占固定宽度 */
.wznav-search {
  flex: 0 0 200px; /* 不伸缩，占180px */
  transition: flex 0.5s ease;
}

/* 展开状态：自动占据剩余空间 */
.wznav-search.search-width {
  flex: 1; /* 自适应剩余空间 */
  min-width: 200px;
  max-width: 300px; 
}
.flex-fill.flex-disabled {
  flex: 0 0 auto !important;
}
.wznav-search ~ #pc-right-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.flex-fill + #other-model {
  margin-left: auto;
  display: flex;
  align-items: center;
}


/* 当 .wznav-search 存在，且 .header-tools 紧贴在 #other-model 或 #pc-right-menu 之后时，才添加样式 */
.wznav-search ~ #other-model + .header-tools,
.wznav-search ~ #pc-right-menu + .header-tools {
  margin-left: 0 !important;
}
.wznav-select-wrapper::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scale(0); /* 初始状态：缩小为 0 */
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #000;
    opacity: 0; /* 初始状态：完全透明 */
    transition: opacity 0.3s ease, transform 0.3s ease; /* 添加过渡效果 */
}

.wznav-select-wrapper:hover::after {
    opacity: 1; /* 悬停时：完全不透明 */
    transform: translateX(-50%) scale(1); /* 悬停时：放大到正常大小 */
}
.wznav-search{
  background: #74747414;
}
#wznav-search .btn.vc-theme.search-submit-btn {
   background-color: rgb(255 255 255 / 0%);
}
#wznav-search .btn.vc-theme.search-submit-btn i.icon-search{
   color:var(--main-color);
}
.wznav-search form.search-form{
   height:40px;
}
#select-trigger{
   height:35px;
   padding: 0px 10px;
}

   #select-trigger::before {
       content: '';
       position: absolute;
       right: 10px;
       top: 25%;
       height: 50%;
       width: 1px;
       background: var(--main-color);
       transform: translateX(-50%);
   }

/* 搜索--1 */




/* site----0*/

.wznav-siteInfo {
  display: flex;
  flex-wrap: wrap;
  /* margin-top: 10px; */
}

.wznav-site-down {
  position: relative;
  width: 100%;
  order: 2;
  z-index: 10
}

.wznav-site-up {
  width: 100%;
  height: 200px;
  order: 1;
  position: relative;
}

.site-title-icon {
  width: 100px;
  height: 100px;
  vertical-align: top;
  border-radius: 18px !important;
  margin-right: 15px;
  border: 5px solid #fff;
  background: #fff
}

.site-name span .mb-2 {
  margin-bottom: 0 !important
}

.site-name span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: 25px
}

.site-name span p.mb-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.8em;
  line-height: 1.4;
  margin-top: 5px
}

.site-stats-buttons {
  display: flex;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 20;
  flex-wrap: wrap;
  max-width: 70%
}

.site-stats-button {
  display: flex;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid #ffffff8c;
  color: #fff;
  transition: all 0.3s ease;
  white-space: nowrap;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px)
}

.site-stats-button:hover {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff
}

.site-stats-button i {
  margin-right: 5px;
  font-size: 14px
}

.site-stats-button small {
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis
}

.site-stats-button.active {
  background-color: rgba(var(--mainColor-rgb), 0.7)
}

.site-name.align-items-center {
  padding: 0 20px
}

.site-title-icon {
  margin-top: -45px
}

@media (max-width:767px) {
  .wznav-site-down {
      width: 100%;
      padding-right: 0;
      order: 2
  }

  .wznav-site-up {
      width: 100%;
      order: 1;
      margin-bottom: 15px
  }

  .site-title-icon {
      width: 48px;
      height: 48px;
      margin-right: 8px;
      border: 3px solid white;
      background: #fff
  }

  .site-name.h3 {
      font-size: 1.8rem;
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important
  }

  .site-name span p.mb-2 {
      font-size: 0.85rem;
      margin-bottom: 0.3rem !important
  }

  .site-stats-buttons {
      top: 10px;
      left: 10px;
      max-width: 100%
  }

  .site-stats-button {
      margin-right: 6px;
      margin-bottom: 6px;
      padding: 3px 8px;
      font-size: 12px
  }

  .site-name.h3.my-3.d-flex.align-items-center img.site-title-icon {
      width: 60px;
      height: 60px;
      margin-right: 15px
  }

  .wznav-site-down {
      position: relative;
      margin-top: -50px;
      z-index: 10
  }

  .site-name.align-items-center {
      padding: 0 10px
  }

  .site-title-icon {
      margin-top: 0px
  }

  .site-name.align-items-center span {
      text-shadow: 0 -5px 5px #ffffff
  }

  .io-black-mode .site-name.align-items-center span {
      text-shadow: 0 -5px 5px #2c2e2f
  }
}

/* site: */
.img-cover.site-img-optimized {
  position: absolute;
  width: 100% !important;
  max-width: 1280px !important;
  height: 100% !important;
  max-height: 960px !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: 1;
  object-fit: cover
}

.link-dead {
  display: none
}

.site-qr-code {
  position: absolute;
  top: 40px;
  right: 30px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  gap: 10px;
  color: #fff
}

.site-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 180px;
  height: 100%;
  background: #0006;
  backdrop-filter: saturate(2) blur(15px);
  -webkit-backdrop-filter: saturate(2) blur(15px);
  z-index: 1;
  pointer-events: none
}

.siteico.site-img-wrapper::after {
  content: "";
  background: #000000;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.2;
  top: 0;
  z-index: 1
}

@media (max-width:767px) {
  .site-img-wrapper {
      padding-bottom: 50%;
      border: none
  }

  .siteico.site-img-wrapper {
      max-width: 100%;
      mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
      -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 90%)
  }

  .site-qr-code,
  .site-img-overlay {
      display: none
  }
}


.siteInfo.wznav-siteInfo {
  padding:10px;
}
.site-info-section .site-go.mt-3{
  text-align: right;
}

.site-stats-buttons {
  align-items: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: rgb(186 186 186 / 10%);
  border: 1px solid #ffffff8c;
  color: #fff;
  transition: all 0.3s ease;
  white-space: nowrap;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.wznav-siteInfo .terms-list.mt-3 {
  margin-left: 10px;
}
.wznav-siteInfo .wznav-site-up{
  border-radius:10px 10px 5px 5px;
  overflow:hidden;
}

.wznav-siteInfo .site-stats-buttons a:hover{
  color: var(--focus-color);

}
.wznav-siteInfo .site-stats-buttons a,
.wznav-siteInfo .site-stats-buttons span {
  color: white;
  mix-blend-mode: difference;
}

.wznav-site-down{
  padding-bottom: 20px;

}
/* //投稿 0*/

.wznav-aiinfo{
  right: 80px!important;
}

/* //右键菜单 */

div.usercm {
      background: var(--main-bg-color);
    font-size: 13px !important;
    width: 130px;
    position: absolute;
    display: none;
    z-index: 10000;
    border-radius: 7px;
    overflow:hidden;
    border: 1px solid #dce1e8;
      color: var(--main-color);
}
div.usercm ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
div.usercm ul li {
    line-height: 35px;
}
div.usercm ul li a {
    padding: 0 15px;
    display: block;
}
div.usercm ul li a:hover {
    color: #fff;
    background: rgb(18 212 222 / 88%);
}
div.usercm ul li a i {
    margin-right: 10px;
}

/* 面包屑 */
/* nav[aria-label=breadcrumb] {
    display: flex;
    align-items: center;
    flex-direction: row;
    overflow: hidden
}

nav[aria-label=breadcrumb] a {
    background-color: var(--muted-bg-color);
    padding: 4px 4px 4px 24px;
    position: relative;
    display: block;
    color: var(--muted-color)
}

nav[aria-label=breadcrumb] a:hover {
    color: var(--main-color)
}

nav[aria-label=breadcrumb] a:first-child {
    padding-left: 12px;
    border-radius: 4px 0 0 4px;
}

nav[aria-label=breadcrumb] a::after,nav[aria-label=breadcrumb] a::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 12px solid transparent;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: calc(100% - 0px);
    z-index: 2
}

nav[aria-label=breadcrumb] a::after {
    border-left-color: var(--muted-bg-color)
}

nav[aria-label=breadcrumb] a::before {
    margin-left: 1px;
    z-index: 1
}

nav[aria-label=breadcrumb] a::before {
    border-left-color: var(--muted-bg-color-l)
}

nav[aria-label=breadcrumb] span {
    padding-left: 1.5rem
} */
/* 分享 */
#wznavPosterModal .modal-body {
    padding: 0;
}
.share-links.bdsharebuttonbox.mt-3 {
    padding: 1em;
}
.posts-row.row-col-6a.mb-2 {
    text-align: center;
    justify-content: center;
}
/* sites */
.site-img-overlay2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: #9c9c9c66;
    backdrop-filter: saturate(2) blur(6px);
    -webkit-backdrop-filter: saturate(2) blur(6px);
    z-index: 1;
    pointer-events: none;
}

/* 文章末尾 */
  /* 分隔线 */
.separator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.separator::before,
.separator::after {
  content: '';
  background: var(--muted-color);
  height: 1px;
  margin: 0 1em;
  flex: 1;
  max-width: 200px;
}

/* 分享按钮及菜单 */
.share-dropdown {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}

.share-button i,
.wznav-post-footer i {
  font-size: 25px;
  margin-bottom: 4px;
  line-height: 1;
}

.share-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.share-button i {
  margin-bottom: 2px;
}

.share-menu {
  display: none;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
   background-color: var(--main-bg-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 10px 0;
  z-index: 1000;
  min-width: 110px;
  transition: opacity 0.2s ease;
  border: 1px solid #dce1e8;
}

.share-dropdown:hover .share-menu,
.share-dropdown.active .share-menu{
  display: block;
}

.share-menu a {
  display: inline-flex;
  align-items: center;
  flex-direction: row !important;
  padding: 8px 15px;
  margin: auto;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.share-menu a:hover {
  background: var(--muted-bg-color);
    color:var(--main-color);
  
}

.share-menu i {
  display: inline-block;
  margin-right: 6px;
  font-size: 18px;
  vertical-align: middle;
}

/* 文章底部区域样式 */
.wznav-post-footer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: nowrap;
}

.wznav-post-footer a,
.wznav-post-footer .share-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.wznav-post-footer small,
.wznav-post-footer text {
  font-size: 12px;
}
.wznav-post-footer a[data-original-title="收藏"] small.star-count.text-xs {
    display: none;
}
.share-dropdown:hover {
    color: var(--this-color, var(--focus-color));
    text-decoration: none;
}
.wznav-post-footer .mr-1{
  margin-right:0!important;
}
.wznav-post-footer{
  margin-bottom:20px;
}

/* //打不开 */
.wznav-black b{
      color: var(--main-color);
}
/* //旧版内容--暂时没看出问题，先这样 0*/

.widget_tabold .col-1a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.widget_tabold .col-2a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.widget_tabold .col-3a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.widget_tabold .col-4a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.widget_tabold .col-5a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.widget_tabold .col-6a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.widget_tabold .col-7a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14.285714%;
    flex: 0 0 14.285714%;
    max-width: 14.285714%;
}

.widget_tabold .col-8a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.widget_tabold .col-9a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 11.111111%;
    flex: 0 0 11.111111%;
    max-width: 11.111111%;
}

.widget_tabold .col-10a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%;
}
.widget_tabold{
  margin-bottom: 10px;
}
@media (min-width:576px) {
    .widget_tabold .col-sm-1a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .widget_tabold .col-sm-2a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .widget_tabold .col-sm-3a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .widget_tabold .col-sm-4a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .widget_tabold .col-sm-5a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .widget_tabold .col-sm-6a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .widget_tabold .col-sm-7a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14.285714%;
        flex: 0 0 14.285714%;
        max-width: 14.285714%
    }

    .widget_tabold .col-sm-8a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%
    }

    .widget_tabold .col-sm-9a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 11.111111%;
        flex: 0 0 11.111111%;
        max-width: 11.111111%
    }

    .widget_tabold .col-sm-10a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%
    }
}

@media (min-width:768px) {
    .widget_tabold .col-md-1a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .widget_tabold .col-md-2a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .widget_tabold .col-md-3a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .widget_tabold .col-md-4a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .widget_tabold .col-md-5a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .widget_tabold .col-md-6a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .widget_tabold .col-md-7a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14.285714%;
        flex: 0 0 14.285714%;
        max-width: 14.285714%
    }

    .widget_tabold .col-md-8a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%
    }

    .widget_tabold .col-md-9a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 11.111111%;
        flex: 0 0 11.111111%;
        max-width: 11.111111%
    }

    .widget_tabold .col-md-10a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%
    }

    .widget_tabold .modal-content.modal-suspend .modal-body {
        margin-left: 12px;
        margin-right: 12px;
    }
}

@media (min-width:992px) {
    .widget_tabold .col-lg-1a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .widget_tabold .col-lg-2a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .widget_tabold .col-lg-3a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .widget_tabold .col-lg-4a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .widget_tabold .col-lg-5a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .widget_tabold .col-lg-6a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .widget_tabold .col-lg-7a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14.285714%;
        flex: 0 0 14.285714%;
        max-width: 14.285714%
    }

    .widget_tabold .col-lg-8a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%
    }

    .widget_tabold .col-lg-9a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 11.111111%;
        flex: 0 0 11.111111%;
        max-width: 11.111111%
    }

    .widget_tabold .col-lg-10a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%
    }
}
@media (min-width:1200px) {
    .widget_tabold .col-xl-1a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .widget_tabold .col-xl-2a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .widget_tabold .col-xl-3a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .widget_tabold .col-xl-4a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .widget_tabold .col-xl-5a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .widget_tabold .col-xl-6a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .widget_tabold .col-xl-7a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14.285714%;
        flex: 0 0 14.285714%;
        max-width: 14.285714%
    }

    .widget_tabold .col-xl-8a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%
    }

    .widget_tabold .col-xl-9a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 11.111111%;
        flex: 0 0 11.111111%;
        max-width: 11.111111%
    }

    .widget_tabold .col-xl-10a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%
    }
}

@media (min-width:1400px) {

    .widget_tabold .container-lg,
    .widget_tabold .container-md,
    .widget_tabold .container-sm,
    .widget_tabold .container-xl {
        max-width: 1320px
    }

    .widget_tabold .d-xxl-block {
        display: block !important
    }

    .widget_tabold .col-xxl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .widget_tabold .col-xxl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .widget_tabold .col-xxl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .widget_tabold .col-xxl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .widget_tabold .col-xxl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .widget_tabold .col-xxl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .widget_tabold .col-xxl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .widget_tabold .col-xxl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .widget_tabold .col-xxl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .widget_tabold .col-xxl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .widget_tabold .col-xxl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .widget_tabold .col-xxl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .widget_tabold .col-xxl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .widget_tabold .col-xxl-1a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .widget_tabold .col-xxl-2a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .widget_tabold .col-xxl-3a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .widget_tabold .col-xxl-4a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .widget_tabold .col-xxl-5a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .widget_tabold .col-xxl-6a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .widget_tabold .col-xxl-7a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14.285714%;
        flex: 0 0 14.285714%;
        max-width: 14.285714%
    }

    .widget_tabold .col-xxl-8a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%
    }

    .widget_tabold .col-xxl-9a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 11.111111%;
        flex: 0 0 11.111111%;
        max-width: 11.111111%
    }

    .widget_tabold .col-xxl-10a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%
    }

    .widget_tabold .mx-xxl-n5 {
        margin-left: -5rem !important;
        margin-right: -5rem !important
    }

    .widget_tabold .container-lg,
    .widget_tabold .container-md,
    .widget_tabold .container-sm,
    .widget_tabold .container-xl {
        max-width: 1500px
    }
}


.tab-widget-content .widget-item :hover.icon-btn .img-bg {
    animation: jumps 1.2s ease 1
}
.tab-widget-content .widget-item :hover.icon-btn .app-rounded {
    animation: jumps 1.2s ease 1
}
.app-item:hover .item-media {
    animation: jumps 1.2s ease 1
}
@keyframes jumps {
    0% {
        transform: translate(0)
    }

    10% {
        transform: translateY(8px) scaleX(1.2) scaleY(0.8)
    }

    30% {
        transform: translateY(-5px) scaleX(1) scaleY(1) rotate(5deg)
    }

    50% {
        transform: translateY(3px) scale(1) rotate(0)
    }

    55% {
        transform: translateY(0) scaleX(1.1) scaleY(0.9) rotate(0)
    }

    70% {
        transform: translateY(-5px) scaleX(1) scaleY(1) rotate(-2deg)
    }

    80% {
        transform: translateY(0) scaleX(1) scaleY(1) rotate(0)
    }

    85% {
        transform: translateY(0) scaleX(1.05) scaleY(0.95) rotate(0)
    }

    to {
        transform: translateY(0) scaleX(1) scaleY(1)
    }
}


/* //旧版内容--暂时没看出问题，先这样1 */


/* 收藏弹窗0 */
        @keyframes barrageIn {
            0% {
                opacity: 0;
                transform: translateY(20px)
            }

            100% {
                opacity: 1;
                transform: translateY(0)
            }
        }

        #wznav-cd-window {
            width: 370px;
            background: var(--main-bg-color);
            color: var(--main-color);
            padding: 8px 16px;
            display: flex;
            flex-direction: column;
            top: 80px;
            right: 10px;
            position: fixed;
            border-radius: 12px;
            transition: .3s;
            z-index: 98;
            user-select: none;
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            animation: barrageIn .6s cubic-bezier(.42, 0, .3, 1.11);
            box-shadow: 0 0 2rem 0 var(-sidebarShadowGrey, transparent);
            border: 1px solid #d5d5d5b5;
            overflow: hidden
        }

        #wznav-cd-window .wznav-cd-window-title {
            padding-bottom: 5px;
            padding-top: 3px;
            border-bottom: 1px solid #e3e8f7;
            font-size: 15px;
            font-weight: 700
        }

        #wznav-cd-window .wznav-cd-window-content {
            font-size: 14px;
            display: flex;
            align-items: center;
            margin: 10px 0;
            margin-right: 100px
        }

        i#close-wznav-cd-window {
            position: absolute;
            right: 13px;
            top: 5px;
            font-size: 20px
        }

/* 收藏弹窗1 */
/* //nav */
.wznav-nonav{
  background: var(--main-bg-color);
}
#wznav-mrauto,.wznav-mrauto{
  margin: auto;
}
.wznav-usernav{
  margin-top: 10px;

}

.wznav-modal {
    position: fixed; z-index: 9999; left: 0; top: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.5);
}
.wznav-modal .modal-inner {
          background: var(--main-bg-color);
 padding: 20px; margin: 10% auto; width: 90%; max-width: 400px;
}
#wznav-user-links li {
    list-style: none; border: 1px solid #ccc; padding: 10px; position: relative;
}
#wznav-user-links li:hover::after {
    content: "右键删除"; position: absolute; right: 10px; top: 10px; color: red;
}
.modal-confirm {
    position: fixed; z-index: 9999; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex; align-items: center; justify-content: center;
}
.modal-confirm .modal-inner {
    background: var(--main-bg-color);
    padding: 20px; border-radius: 8px; max-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.wznav-modal {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wznav-modal .modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.wznav-modal .modal-inner {
  position: relative;
    background: var(--main-bg-color);

  padding: 20px 24px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 10;
}

.form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid #ccc;
  border-radius: 6px;
    background: var(--main-bg-color);

}

/* footer-social mt-3 */