

/* 所有按钮类的文字强制为白色 */
.but.jb-blue,
.but.jb-purple,
.but.jb-red,
.but.jb-green,
.but.jb-yellow {
    color: white !important;
}

.item-meta.muted-2-color.flex.jsb.ac{
   margin-top: 5px;
}

.posts-item.card .item-title {  
    margin: 0 0 -5px 0;
    white-space: nowrap; /* 强制文本不换行 */
    overflow: hidden;    /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
    /* 可选：根据需要调整行高和高度，确保一行空间足够 */
    line-height: 1.5;
    height: 1.5em; /* 与行高保持一致，避免多行空间 */
}
.item-excerpt.muted-color.mt{
    display: -webkit-box;
    display: box; /* 兼容旧语法 */
    -webkit-box-orient: vertical;
    box-orient: vertical; /* 兼容旧语法 */
    -webkit-line-clamp: 1;
    line-clamp: 1; /* 标准语法 */
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 9.5px;
    color: #8a8a8a;
    line-height: 1.2;
    height: 1.2em; /* 固定高度与行高一致，确保只显示一行 */
    word-break: break-all;
    white-space: normal !important;
    text-indent: 0 !important;
    /* 增加优先级，避免被其他样式覆盖 */
    max-height: 1.2em !important;
}


/*弹窗提醒*/
.qmsg.qmsg-wrapper {
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-size:13px;
  font-variant:tabular-nums;
  line-height:1;
  list-style:none;
  font-feature-settings:"tnum";
  position:fixed;
  top:100px;
  left:0;
  z-index:9999999;
  width:100%;
  pointer-events:none;
  color:#000;
}
.qmsg .qmsg-item {
  padding:8px;
  text-align:center;
  -webkit-animation-duration:.3s;
  animation-duration:.3s;
  position:relative;
}
.qmsg .qmsg-item .qmsg-count {
  text-align:center;
  position:absolute;
  left:-4px;
  top:-4px;
  background-color:#FF3355;
  color:#fff;
  font-size:12px;
  line-height:16px;
  border-radius:2px;
  display:inline-block;
  min-width:16px;
  height:16px;
  -webkit-animation-duration:.3s;
  animation-duration:.3s;
}
.qmsg .qmsg-item:first-child {
  margin-top:-8px;
}
.qmsg .qmsg-content {
  text-align:left;
  position:relative;
  display:inline-block;
  padding:10px 16px;
  background:#fff;
  border-radius:4px;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
  pointer-events:all;
  max-width:80%;
  min-width:80px;
}
.qmsg-content > div {
  display:flex;
  align-items:center;
}
.qmsg .qmsg-content [class^="qmsg-content-"] {
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  display:flex;
  align-items:center;
}
.qmsg .qmsg-content .qmsg-content-with-close {
  padding-right:20px;
}
.qmsg .qmsg-icon {
  display:inline-block;
  color:inherit;
  font-style:normal;
  text-align:center;
  text-transform:none;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  position:relative;
  top:0;
  margin-right:8px;
  font-size:16px;
}
.qmsg .qmsg-icon svg {
  display:inline-block;
}
.qmsg .qmsg-content-info .qmsg-icon {
  color:#1890ff;
  user-select:none;
}
.qmsg .qmsg-icon-close {
  position:absolute;
  top:11px;
  right:5px;
  padding:0;
  overflow:hidden;
  font-size:12px;
  line-height:22px;
  background-color:transparent;
  border:none;
  outline:none;
  cursor:pointer;
  color:rgba(0,0,0,.45);
  transition:color .3s;
}
.qmsg .qmsg-icon-close:hover>svg path {
  stroke:#555;
}
.qmsg .animate-turn {
  animation:MessageTurn 1s linear infinite;
  -webkit-animation:MessageTurn 1s linear infinite;
}
@keyframes MessageTurn {
  0% {
  -webkit-transform:rotate(0deg);
}
25% {
  -webkit-transform:rotate(90deg);
}
50% {
  -webkit-transform:rotate(180deg);
}
75% {
  -webkit-transform:rotate(270deg);
}
100% {
  -webkit-transform:rotate(360deg);
}
;}@-webkit-keyframes MessageTurn {
  0% {
  -webkit-transform:rotate(0deg);
}
25% {
  -webkit-transform:rotate(90deg);
}
50% {
  -webkit-transform:rotate(180deg);
}
75% {
  -webkit-transform:rotate(270deg);
}
100% {
  -webkit-transform:rotate(360deg);
}
;}@-webkit-keyframes MessageMoveOut {
  0% {
  max-height:150px;
  padding:8px;
  opacity:1;
}
to {
  max-height:0;
  padding:0;
  opacity:0;
}
;}@keyframes MessageMoveOut {
  0% {
  max-height:150px;
  padding:8px;
  opacity:1;
}
to {
  max-height:0;
  padding:0;
  opacity:0;
}
;}@-webkit-keyframes MessageMoveIn {
  0% {
  transform:translateY(-100%);
  transform-origin:0 0;
  opacity:0;
}
to {
  transform:translateY(0);
  transform-origin:0 0;
  opacity:1;
}
;}@keyframes MessageMoveIn {
  0% {
  transform:translateY(-100%);
  transform-origin:0 0;
  opacity:0;
}
to {
  transform:translateY(0);
  transform-origin:0 0;
  opacity:1;
}
;}@-webkit-keyframes MessageShake {
  0%,100% {
  transform:translateX(0px);
  opacity:1;
}
25%,75% {
  transform:translateX(-4px);
  opacity:0.75;
}
50% {
  transform:translateX(4px);
  opacity:0.25;
}
;}@keyframes MessageShake {
  0%,100% {
  transform:translateX(0px);
  opacity:1;
}
25%,75% {
  transform:translateX(-4px);
  opacity:0.75;
}
50% {
  transform:translateX(4px);
  opacity:0.25;
}
;} 


.hover-show-con.dropdown-menu a {
    border: none !important;
}
.navbar-search {
    background-image: url(/wp-content/themes/beginner-child/img/shading_red.png);
}


/*九宫格适配*/
.lists-imgs:not(.count-1)>span {
    flex: 0 0 calc(100% / 3 - 4px);
    padding-bottom: calc(100% / 3 / 1 - 4px);
    margin: 2px;
    position: relative;
}
.lists-imgs:not(.count-1) {
    display: flex;
    flex-wrap: wrap;
    --img-count: 9;
    width: 70%;
}
.hfw-custom-widget {
    background: none;
    padding: 0;
    box-shadow: none;
    margin: 0;
    margin-bottom: 10px;
}

.hfw-posts-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hfw-post-list-item {
    overflow: hidden;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 1px;
    position: relative;
    flex: 1 1 calc(20% - 10px); /* 调整为 25%，以便一行显示四个（考虑了 10px 的 gap） */
    width: auto;
    height: 280px; /* 设置固定高度 */
}

@media screen and (max-width: 768px) {
  .hfw-post-list-item {
        flex: 1 1 calc(50% - 10px);
        height: 215px; /* 手机端也保持固定高度 */
    }
}

.hfw-post-module-thumb img {
    width: 100%;
    height: 100%; /* 图片占据整个卡片高度 */
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.hfw-post-module-thumb img:hover {
    transform: scale(1.1);
}

.hfw-post-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6) 100%);
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

.hfw-post-info h2 {
    font-size: 1em;
    margin: 0;
    padding: 0 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hfw-post-info a {
    text-decoration: none;
    color: #fff;
}

.hfw-post-meta {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    color: #fff;
}

.hfw-post-meta.hfw-post-views {
    padding: 2px 5px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hfw-post-module-thumb:hover.hfw-post-meta.hfw-post-views {
    opacity: 1;
}

.hfw-post-meta.hfw-post-images {
    padding: 2px 5px;
    border-radius: 3px;
}

.hfw-widget-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hfw-widget-title-wrapper h2 {
    background: url(https://www.freeimg.cn/i/2024/07/03/6684b8731749a.png) 0px -110px no-repeat;
    position: relative;
    margin-left: -10px;
    margin-right: 20px;
    height: 37px;
    padding-left: 45px;
    padding-top: 2px;
    font-size: 22px;
    margin-bottom: 10px;
}

.hfw-sort-link {
    font-size: 0.9em;
    color: #0073aa;
    text-decoration: none;
    margin-right: 10px;
}

.hfw-sort-link:hover {
    text-decoration: underline;
}

.hfw-more-link {
    text-decoration: none;
    margin-top: 15px;
}

.hfw-more-link:hover {
    text-decoration: none;
}

/*发布文章按钮圆度美化*/
.badg.radius,.but.radius,.radius>.but {
    border-radius:3px;
}

/*评论区UID*/
.bili-dyn-item__ornament{position:sticky;right:48px;top:18px;margin-top:-13px;float:right;}.bili-dyn-ornament__type--3{height:44px;width:146px;}.bili-dyn-ornament img{height:100%;width:100%;user-select: none;pointer-events: none;}.bili-dyn-ornament__type--3 span{font-family:num !important;font-size:12px;position:absolute;right:54px;top:15px;transform:scale(.88);transform-origin:right;}

/*底部统计*/
.Mario-info-item{display:grid;grid-gap:15px;grid-template-columns:repeat(6,1fr);grid-template-rows:repeat(2,1fr);width:100%;height:280px;margin-bottom:15px;}.Mario-llzs-item,.Mario-sjcs-item,.Mario-yhzs-item,.Mario-yxsj-item{width:100%;height:100%;border-radius:8px;text-align:center;box-shadow:0 2px 4px 0 rgba(0,0%,0%,5%);background-color:var(--main-bg-color);overflow:hidden;padding:5px;box-sizing:border-box;}.Mario-i-num{font-size:20px;font-weight:600}.Mario-yxsj-item{display:flex;align-items:center;justify-content:center;flex-direction:column}.Mario-yhzs-item{display:flex;align-items:center;justify-content:center;flex-direction:column}.Mario-llzs-item{display:flex;align-items:center;justify-content:center;flex-direction:column}.Mario-wz-item{display:grid;grid-gap:20px;grid-template-columns:repeat(2,1fr);grid-column:3/6;grid-row:1/2;overflow:unset!important;box-shadow:none!important;padding:0!important;}.Mario-wz-sty{width:100%;height:100%;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:var(--main-bg-color);box-shadow:0 2px 4px 0 rgba(0,0%,0%,5%)}.Mario-sjcs-item{grid-row:1/3;grid-column:1/3;}.Mario-sjcj-m{position:relative;font-size:20px;font-weight:700;text-align:center;width:100%;height:100%;padding:10px;box-sizing:border-box;}.Mario-sjcj-content{text-align:center;margin-top:10px}.Mario-meo-item{width:120px;height:120px;margin:0 auto}.Mario-meo-item>img{width:100%;height:100%;background-size:cover;background-repeat:no-repeat;background-position:center center;cursor:pointer}svg.icon.fa-2x{margin-top:15px;}@media screen and (max-width:959px){.Mario-info-item{grid-gap:10px;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:500px;}.Mario-sjcs-item{grid-row:3/5;grid-column:1/4}.Mario-i-num{font-size:20px}.Mario-sjcj-m{font-size:16px}}.enlighter-default .enlighter{max-height:400px;overflow-y:auto !important;}.posts-item .item-heading>a{font-weight:bold;}@media (max-width:640px){.meta-right .meta-view{display:unset !important;}}.Mario-sjcs-item2{grid-row:1/3;}.Mario-sjcs-item2{width:100%;height:100%;border-radius:8px;text-align:center;box-shadow:0 2px 4px 0 rgba(0,0%,0%,5%);background-color:var(--main-bg-color);box-sizing:border-box;grid-row:1/3;grid-column:6/6;}@media screen and (max-width:959px){.Mario-wz-item{grid-column:1/4}.Mario-sjcs-item2{display:none}}.Mario-ip-item,.Mario-sjcs-item,.Mario-yhzs-item,.Mario-yxsj-item{width:100%;height:100%;border-radius:8px;text-align:center;box-shadow:0 2px 4px 0 rgba(0,0%,0%,5%);background-color:var(--main-bg-color);overflow:hidden;padding:5px;box-sizing:border-box;}.Mario-ip-item{display:flex;align-items:center;justify-content:center;flex-direction:column}



.widget-tag-cloud.author-tag .but{ position: relative; padding: 1px 4px 2px 4px;margin: 0px 4px 0px 3px;border: 1px solid #e6e7e8; border-radius: 18px; text-decoration: none; white-space: nowrap;-o-box-shadow: 6px 4px 8px 0 rgba(151,142,136,.34);-ms-box-shadow: 6px 4px 8px 0 rgba(151,142,136,.34);-moz-box-shadow: 6px 4px 8px 0 rgba(151,142,136,.34);-webkit-box-shadow: 6px 4px 8px 0 rgba(151,142,136,.34);box-shadow: 6px 4px 8px 0 rgba(151,142,136,.34);-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=4,Direction=135, Color='#000000')";filter: progid:DXImageTransform.Microsoft.Shadow(color='#969696', Direction=125, Strength=1);}.widget-tag-cloud.author-tag .but:nth-child(7n+1):hover{color:#ffffff; background-color:rgba(255,78,106,.8)}.widget-tag-cloud.author-tag .but:nth-child(7n+2):hover{color:#ffffff; background-color:#ffaa73}.widget-tag-cloud.author-tag .but:nth-child(7n+3):hover{color:#ffffff; background-color:#fed466}.widget-tag-cloud.author-tag .but:nth-child(7n+4):hover{color:#ffffff; background-color:#3cdc82}.widget-tag-cloud.author-tag .but:nth-child(7n+5):hover{color:#ffffff; background-color:#64dcf0}.widget-tag-cloud.author-tag .but:nth-child(7n+6):hover{color:#ffffff; background-color:#64b9ff}.widget-tag-cloud.author-tag .but:nth-child(7n+7):hover{color:#ffffff; background-color:#b4b4ff}.widget-tag-cloud.author-tag .but:nth-child(7n+1){background-color:rgba(255,78,106,.15); color:rgba(255,78,106,.8)}.widget-tag-cloud.author-tag .but:nth-child(7n+2){background-color:rgba(255,170,115,.15); color:#ffaa73}.widget-tag-cloud.author-tag .but:nth-child(7n+3){background-color:rgba(254,212,102,.15); color:#fed466}.widget-tag-cloud.author-tag .but:nth-child(7n+4){background-color:rgba(60,220,130,.15); color:#3cdc82}.widget-tag-cloud.author-tag .but:nth-child(7n+5){background-color:rgba(100,220,240,.15); color:#64dcf0}.widget-tag-cloud.author-tag .but:nth-child(7n+6){background-color:rgba(100,185,255,.15); color:#64b9ff}.widget-tag-cloud.author-tag .but:nth-child(7n+7){background-color:rgba(180,180,255,.15); color:#b4b4ff}

.hot-top .right .top-ul li a h3 {white-space: nowrap;}.hot-top    .left{float:left;}.hot-top      .right{float:right;}img{border:none;}.hot-top{width:100%;background:var(--main-bg-color);margin-bottom:25px;padding:22px 20px;position:relative;height:140px;overflow:hidden;border-radius:var(--main-radius);}.hot-top .tg-ph{background-size:100% 100%;position:absolute;right:0;top:0;z-index:2;display:block;width:60px;height:60px;}.hot-top .left{height:100%;}.hot-top .left a{display:block;width:121px;height:45px;line-height:45px;background:#f6f6f6;text-align:center;font-size:15px;color:#989898;margin-bottom:13px;cursor:pointer;border-radius:10px;}.hot-top .left a:last-child{margin-bottom:0;}.hot-top .left .hover{background:var(--theme-color);color:#FFF;position:relative;}.hot-top .left .hover:after{content:"";width:0;height:0;border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:10px solid var(--theme-color);position:absolute;top:15.5px;right:-10px;z-index:1;}.hot-top .right-main{height:100%;overflow-y:auto;margin-bottom:30px;}.hot-top .right-main:last-child{margin-bottom:0px;}.hot-top .right-overflow{transition:0.4s all;transform:translateY(0);}.hot-top .right{float:left;width:calc( 100% - 147px);margin-left:26px;height:100%;}.hot-top .right .top-ul{height:130px;overflow:hidden;}.hot-top .right .top-ul li{width:78px;float:center;margin:0px 20px;display:inline-block;}.hot-top .right .top-ul li:nth-child(10n){margin-right:0;}.hot-top .right .top-ul li a{display:block;}.hot-top .right .top-ul li a .list-img{width:100%;height:78px;line-height:78px;text-align:center;border-radius:10px;}.hot-top .right .top-ul li a .list-img img{width:100%;}.hot-top .right .top-ul li a .list-img img:hover{opacity:0.8;}.hot-top .right .top-ul li a h3{margin-top:7px;font-size:13px;line-height:25px;height:25px;overflow:hidden;width:100%;text-align:center;}.new-position{height:780px;}.new-position .left{height:100%;width:calc( ( 100% - 13px ) * 0.36 );}.new-position .right{width:calc( ( 100% - 13px ) * 0.64 );height:100%;background:#FFF;padding:17px 28px;}.new-position .layui-carousel > [carousel-item] > *{background:#FFF;}.new-position #index-lb{height:300px;}.new-position #index-lb div div img{width:100%;min-height:100%;}.new-position .index-login{background:#FFF;margin-top:13px;height:calc( 767px - 300px);padding:25px 33px;position:relative;}span.note{position:absolute;top:10px;right:-50px;z-index:1;width:140px;height:20px;background:var(--theme-color);color:#fff;line-height:20px;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;font-size:12px;}img.rela{position:absolute;left:52px;z-index:2;top:58px;height:25px;width:25px;}img.yuan{border-radius:50%;animation:light 4s ease-in-out infinite;transition:2s;}img.yuan:hover{transform:scale(1) rotate(720deg);}}





/*人气作者*/
@media (max-width:768px){.home-authors .item,.home-authors .group-item .item-images .img-item{width:100%!important;}.item-author:nth-child(n+4){display:none;}}.home-authors .item-tobe-author .meta-avatars img{display:inline-block;width:30px;height:30px;-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%;overflow:hidden;margin-left:-10px;border-radius:50%;transform:translateX(0px);overflow:hidden;border:3px solid var(--main-bg-color);}.ap-item-meta .cat:before{content:'#';line-height:19px;width:19px;height:19px;margin-right:5px;color:#fe2c55;text-align:center;float:left;background:rgba(254,44,85,0.2);border-radius:50%;display:block;left:0;}.item-author .author-btn .looo{line-height:13px;font-size:13px;width:100%;color:#333;background:var(--body-bg-color);}.item-author .item-wrap:hover .item-top .author-btn,.home-authors .item-tobe-author .item-wrap:hover .item-top .author-btn{display:block;}.item-author .author-btn{position:absolute;right:0;top:90px!important;display:none;width:100%}.item-author .author-btn .user-s-follow{padding:10px;text-align:center}.looo .msg-icon,.looo .top{display:none;}.home-authors .part-title{font-size:18px;}.home-authors .author-items{margin:0 auto;display:flex;flex-wrap:wrap;}.home-authors .part-title,.part-hot-channel .part-title,.part-zt .part-title,.archive-list-see .part-title,.post-related .part-title,.hunter-recent-hot .part-title,.hunter-last-week .part-title{font-size:21px;color:#333333;margin-bottom:50px;}.home-authors .part-title .sub-link .icon-btn-bang,.hunter-recent-hot .part-title .sub-link .icon-btn-bang,.hunter-last-week .part-title .sub-link .icon-btn-bang{color:#ff6000;}.home-authors .item,.home-authors .group-item .item-images .img-item{margin-bottom:30px;}.home-authors .item,.home-authors .group-item .item-images .img-item{padding:0 5px;}.home-authors .item,.home-authors .group-item .item-images .img-item{width:calc(25% - 0px);}.author-name .text-ellipsis{max-width:80px;}.item-author .item-wrap,.home-authors .item-tobe-author .item-wrap{padding:30px 15px 10px;}.item-author .item-wrap,.home-authors .item-tobe-author .item-wrap{background-color:var(--main-bg-color);height:390px;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;overflow:hidden;position:relative;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s;padding:10px;background-image:linear-gradient(120deg,#f6d365 0%,#fda085 100%);}.item-author .item-bg{position:absolute;left:0;right:0;top:0;padding-top:100%;overflow:hidden;}.item-author .item-bg::before{display:block;position:absolute;left:0;right:0;bottom:0;padding-top:54%;background-color:var(--main-bg-color);z-index:1;}.item-author .item-bg .thumb-1{background-image:linear-gradient(120deg,#f6d365 0%,#fda085 100%);}.item-author .item-bg .thumb-2{background-image:linear-gradient(120deg,#a1c4fd 0%,#c2e9fb 100%);}.item-author .item-bg .thumb-3{background-image:linear-gradient(120deg,#e0c3fc 0%,#8ec5fc 100%);}.item-author .item-bg .thumb-4{background-image:linear-gradient(to right,#4facfe 0%,#00f2fe 100%);}.item-author .item-bg .thumb-5{background-image:linear-gradient(180deg,#2af598 0%,#009efd 100%);}.item-author .item-bg .thumb-6{background-image:linear-gradient(to top,#ff0844 0%,#ffb199 100%);}.item-author .item-bg .thumb-7{background-image:linear-gradient(to top,#4481eb 0%,#04befe 100%);}.item-author .item-bg .thumb{padding-top:100%;position:absolute;left:-50px;right:-50px;top:-50px;width:auto;}.thumb{display:block;background-repeat:no-repeat;background-position:center;-webkit-background-size:cover;background-size:cover;width:100%;height:0;}.item-author .item-bg::after{content:'';display:block;position:absolute;left:0;right:0;bottom:54%;padding-top:11%;}.item-author .item-top{padding:15px;}.item-author .item-top{position:relative;-webkit-box-shadow:0 20px 40px 0 rgba(0,0,0,0.02);box-shadow:0 20px 40px 0 rgba(0,0,0,0.02);padding:15px;background:var(--main-bg-color);-webkit-border-radius:11px;-moz-border-radius:11px;border-radius:11px;z-index:1;}.item-author .author-avatar{font-size:50px;top:0;}.home-authors .item .author-avatar .avatar,.home-authors .group-item .item-images .img-item .author-avatar .avatar{border-color:#ff6000;}.item-author .author-avatar .avatar{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding-top:0;height:50px;border:2px solid #ffbc00;-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%;overflow:hidden;}.home-authors .item:nth-child(1) .author-avatar:after,.home-authors .group-item .item-images .img-item:nth-child(1) .author-avatar:after{content:'01';}.home-authors .item:nth-child(2) .author-avatar:after,.home-authors .group-item .item-images .img-item:nth-child(2) .author-avatar:after{content:'02';}.home-authors .item:nth-child(3) .author-avatar:after,.home-authors .group-item .item-images .img-item:nth-child(3) .author-avatar:after{content:'03';}.home-authors .item:nth-child(4) .author-avatar:after,.home-authors .group-item .item-images .img-item:nth-child(4) .author-avatar:after{content:'04';}.home-authors .item:nth-child(5) .author-avatar:after,.home-authors .group-item .item-images .img-item:nth-child(5) .author-avatar:after{content:'05';}.home-authors .item:nth-child(6) .author-avatar:after,.home-authors .group-item .item-images .img-item:nth-child(6) .author-avatar:after{content:'06';}.home-authors .item:nth-child(7) .author-avatar:after,.home-authors .group-item .item-images .img-item:nth-child(7) .author-avatar:after{content:'07';}.item-author .author-avatar{position:absolute;width:50px;}.author-main{padding-left:58px;}.item-author .author-name{font-size:20px;color:var(--key-color);margin-bottom:25px;white-space:nowrap;}.item-author .author-info{font-size:13px;margin-top:25px;margin-right:-16px;margin-left:-16px;padding:0px 16px;color:var(--muted-color);text-align:center;line-height:30px;background:var(--body-bg-color);height:30px;border-radius:4px;overflow:hidden;}.item-author .author-avatar:after{content:'';display:block;position:absolute;left:50%;bottom:75%;margin-left:-25%;width:50%;height:33.3333%;background-image:url(https://wmimg.com/i/273/2024/01/65afe5b99031b.png);background-position:center;background-repeat:no-repeat;-webkit-background-size:contain;background-size:contain;color:#ffffff;font-size:12px;line-height:32px;text-align:center;-webkit-transform:scale(.8);-ms-transform:scale(.8);transform:scale(.8);-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom;}.item-author .author-name{font-size:15px;display:flex;white-space:nowrap;margin-bottom:20px;}.item-author .author-name .uname{display:inline-block;vertical-align:middle;max-width:100%;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;}.item-author .author-meta{font-size:13px;}.item-author .author-meta{font-size:12px;line-height:1.5;height:20px;overflow:hidden;font-weight:normal;color:var(--muted-color);}.item-author .author-meta span:first-child{position:relative;margin-right:5px;}.item-author .author-meta{font-size:13px;}.btn-orange,.widget-talk .talk-item .talk-wrap:hover .btn,.list-item-home-news .widget-btns .btn:hover,.listitem-widget-job .widget-btns .btn:hover,.list-item-home-job .widget-btns .btn:hover,.search-widget-hotsearch .widget-btns .btn:hover,.group-sidebar .widget-talk .widget-btns .btn{background:#ff6000;color:#fff;}.author-name count{display:none;}.item-author .item-bottom-title{font-size:14px;color:#b5b5b5;font-weight:normal;}.item-author .item-bottom{font-size:14px;position:relative;z-index:1;margin-top:10px;height:auto;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box;background:var(--main-bg-color);padding:15px;border-radius:15px;}.item-author .ap-item{font-size:14px;}.home-authors .item-tobe-author .item-btns a:first-child{color:#fff!important;}.home-authors .item-tobe-author .item-btns a:last-child{color:#ff6000!important;}.home-authors .item-tobe-author .item-btns a:visited{color:inherit;}.item-author .ap-item{font-size:12px;}.item-author .ap-item-wrap.has-thumb{padding-left:42%;}.item-author .ap-item-wrap{display:block;position:relative;}.item-author .ap-item-wrap .ap-item-thumb{position:absolute;left:0;top:0;width:40%;overflow:hidden;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;height:100%;}.item-author .ap-item-wrap .ap-item-thumb .thumb{-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s;padding-top:70%;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.item-author .ap-item-wrap.has-thumb .ap-item-title{height:40px;overflow:hidden;font-weight:normal;line-height:20px;}.item-author .ap-item-wrap .ap-item-title{font-size:14px;}.item-author .ap-item-wrap .ap-item-meta{font-size:11px;}.home-authors .item-tobe-author .item-wrap{background-image:url(https://wmimg.com/i/273/2024/01/65afe5b993334.jpg);-webkit-background-size:cover;background-size:cover;-webkit-background-origin:top center;background-origin:top center;background-repeat:no-repeat;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;height:100%;}.home-authors .item-tobe-author .tobe-author-wrap{position:absolute;left:0;right:0;top:0;bottom:0;padding:30px 20px 20px;}.home-authors .item-tobe-author .tobe-author{background-color:var(--main-bg-color);-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;padding:20px;height:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative;}.home-authors .item-tobe-author .item-title{color:#ff6000;font-size:22px;margin-bottom:10px;font-weight:600;}.home-authors .item-tobe-author .item-title a{display:block;color:var(--muted-color);}.home-authors .item-tobe-author .item-cont{font-size:16px;line-height:28px;}.home-authors .item-tobe-author .item-cont .meta-views{font-size:14px;}.home-authors .item-tobe-author .item-cont{font-size:16px;color:var(--muted-color);line-height:24px;}.home-authors .item-tobe-author .item-cont .count{margin-bottom:10px;}.home-authors .item-tobe-author .item-cont .count strong{font-size:40px;color:#ff6000;}.home-authors .item-tobe-author .item-cont .count span{font-size:16px;}.home-authors .item-tobe-author .item-btns{position:absolute;left:20px;right:20px;bottom:20px;text-align:center;}.home-authors .item-tobe-author .item-btns .btn:first-child{padding:10px;}.home-authors .item-tobe-author .item-btns .btn:last-child{width:46%;display:inline-block;line-height:20px;border:1px #ff6000 solid;padding:10px;}.btn-orange,.widget-talk .talk-item .talk-wrap:hover .btn,.list-item-home-news .widget-btns .btn:hover,.listitem-widget-job .widget-btns .btn:hover,.list-item-home-job .widget-btns .btn:hover,.search-widget-hotsearch .widget-btns .btn:hover,.group-sidebar .widget-talk .widget-btns .btn{background:#ff6000;color:#fff;}.home-authors .item-tobe-author .item-btns .btn{width:46%;display:inline-block;line-height:20px;}.btn-orange-border,.talk-singular-prev-next .item-backhome .item-content .btn{background-color:transparent;color:#ff6000;border:1px solid #ff6000;}.ap-item-meta .cat:before{content:'#';line-height:19px;width:19px;height:19px;margin-right:5px;color:#fe2c55;text-align:center;float:left;background:rgba(254,44,85,0.2);border-radius:50%;display:block;left:0;}





.foot-copyright-fl.fla{
  top:20px;
}








.posts-item.list.ajax-item.flex .item-tags.scroll-x.no-scrollbar.mb6 {
    display: none;
}

/*标题下的摘要样式*/
.daixbu-quote-q {
background-color: var(--body-bg-color);
  border-radius: 6px;
    position: relative;
    padding: 0.75em 0.85em;
    margin-top: 0 !important;
    margin-bottom: 10px;
   

    width: 100%;
    box-sizing: border-box;
}
.daixbu-quote-q::before {

   padding: 4px;
    content: '';
    border-radius: 6px;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--quote-color);
    opacity: 0.04;
    z-index: 0;
}
.daixbu-quote-q a, .daixbu-quote-q span {

    font-weight: 590;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; 
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13.5px;
    color: #8a8a8a;
    line-height: 1.6;
    height: 3.2em;
    word-break: break-all;  
    white-space: normal !important;
    text-indent: 0 !important;
}


.daixbu-quote-q a:hover {
    color: #6a6a6a;
    text-decoration: none;
}


/* 标题样式 */
.posts-item.card .item-heading {
    position: relative;
    margin: -4px   auto ;
    padding: 5px;

   
display: -webkit-box;  /* 使用旧版弹性盒模型 */
-webkit-box-orient: vertical;  /* 垂直方向排列 */
-webkit-line-clamp: 2;  /* 限制显示2行文本 */
overflow: hidden;  /* 超出部分隐藏 */
white-space: normal;  /* 正常换行 */
/* 以下属性与上面的文本显示控制冲突 */
line-height: 12px;  /* 行高12px */
overflow: hidden;  /* 重复定义 */
text-overflow: ellipsis;  /* 超出部分显示省略号 */
white-space: nowrap;  /* 强制不换行，与上面的white-space: normal冲突 */
display: block;  /* 块级显示，与display: -webkit-box冲突 */
  

}

/* 标题文字 */
.posts-item.card .item-heading a {

   
    font-size: 16px !important;

    line-height: 1.4em;
}



/*
.item-tags.scroll-x.no-scrollbar.mb6 {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}
*/
.breadcrumb {
    display: none !important;

}






.widget-tab-post.style-card.index-tab.relative-h .posts-item.card{
  
  
}



@media (min-width: 769px) {
.widget-tab-post.style-card.index-tab.relative-h .posts-item.card {
        width: calc(25% - 16px);
    }
}





.posts-item.list.ajax-item.flex .item-heading {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    /* 30个字的字数限制 */
    max-width: 30ch;
    width: 30ch;
    /* 为伪元素预留位置 */
    position: relative;
    padding-right: 1.5em; /* 防止文本与省略号重叠 */
}



/* 手机端移除所有效果 */
@media (max-width: 768px) {
    .posts-item.list.ajax-item.flex .item-heading {
        /* 移除字数限制和省略相关样式 */
        max-width: none;
        width: auto;
        padding-right: 0;
        white-space: normal; /* 允许自动换行 */
        -webkit-line-clamp: unset; /* 取消行数限制 */
        display: block; /* 重置为默认块级显示 */
    }
    
    /* 移除多余省略号 */
    .posts-item.list.ajax-item.flex .item-heading::after {
        display: none;
    }
}



/*新文章发布图标样式*/
.posts-item.card.ajax-item{position: relative !important;}
.tianyishangke-new-icon{position: absolute;height: 25px;right: 9px;top: 9px;}
.tianyishangke-new-icon img{-webkit-user-drag: none;}
.posts-item.list.ajax-item.flex{position: relative !important;}
@media (max-width: 768px) {
  
    .posts-item.list.ajax-item.flex .tuc-2ea177b2-d9e6b9-0.tianyishangke-new-icon.tuc-2ea177b2-d9e6b9-0{ display: none !important;}
 
}


/* 隐藏移动端作者信息 */
@media (max-width: 768px) {
   /* 隐藏头像 */
    .meta-author .avatar-mini,
    .meta-author .avatar-box {
        display: none !important;
    }
    
   /* 调整时间显示布局 */
    .meta-author .icon-circle {
        margin-left: 0 !important;
    }
    
 
}

.footer-tabbar-placeholder{
     display: none !important;
}



.title-theme:before {
display:none;
}


#posts-pay {
    background-image: url(https://img.alicdn.com/imgextra/i3/2210123621994/O1CN01LTSBKl1QbIk5uLfKD_!!2210123621994.webp);
}








.posts-item.list.ajax-item.flex .icon-circle::before {
   display: none !important;

  
}





/* 基础样式（非移动端） */
.item-excerpt.muted-color.text-ellipsis.mb6 {
    background-color: var(--body-bg-color);
    border-radius: 6px;
    position: relative;
    padding: 1.2em 0.85em;
    margin-top: 8px !important;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    display: -webkit-box;
    -webkit-line-clamp: 2;      /* 限制 2 行 */
    -webkit-line-clamp: 2;      /* 限制 2 行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;        /* 覆盖单行省略 */
    word-break: break-all;      /* 避免长单词溢出 */
}

.item-excerpt.muted-color.text-ellipsis.mb6::before {
    padding: 6px;
    content: '';
    border-radius: 6px;
    position: absolute;
    top: 5px; left: 0; right: 0; bottom: 0;
    background: var(--quote-color);
    opacity: 0.04;
    z-index: 0;
}

.item-excerpt.muted-color.text-ellipsis.mb6 a:hover {
    color: #6a6a6a;
    text-decoration: none;
}

/* 手机端适配（只显示摘要，无样式） */
@media (max-width: 768px) {
    .item-excerpt.muted-color.text-ellipsis.mb6 {
        /* 重置所有盒模型样式 */
        background-color: transparent !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        position: static !important;
        top: auto !important;
        
        /* 保留摘要显示特性 */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-break: break-all;
    }
    
    /* 移除装饰性伪元素 */
    .item-excerpt.muted-color.text-ellipsis.mb6::before {
        display: none !important;
    }
    
    /* 重置链接样式（可选，根据需求调整） */
    .item-excerpt.muted-color.text-ellipsis.mb6 a:hover {
        color: inherit;
        text-decoration: underline;
    }
}




sapn.px12.muted-3-color {
    position: absolute;
    padding: 3px 8px;
    font-size: 10px;
    top: 26px;
    color: var(--this-color);
    left: 33px;
    border-radius: 5px;
    background: linear-gradient(135deg, #59c3fb 10%, #268df7 100%);
    --this-color: #fff;
}





.stats-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 12px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    z-index: 9998;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stats-button:hover {
    background-color: #45a049;
}

.stats-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}

.stats-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 25px;
    border: 1px solid #888;
    width: 60%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

.stats-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.stats-close:hover {
    color: #555;
}

.stats-container {
    margin: 20px 0;
}

.stat-item {
    margin: 15px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    font-size: 16px;
}

.stats-shortcode {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 5px;
    margin: 20px 0;
}








/*角标css
.posts-item.card .item-thumbnail {
	background:#c4cffa26;
	width:100%;
	padding-bottom:var(--posts-card-scale);
}
*/
a.item-category {
	position:absolute;
	left:10px;
	top:10px;
	padding:5px 6px;
	font-size:1rem;
	line-height:1;
	color:var(--this-color);
	background:var(--this-bg);
	border-radius:6px;
}
a.item-category-app {
	position:absolute;
	height:24px;
	line-height:24px;
	width:100%;
	text-align:center;
	bottom:0;
	left:0;
	background:radial-gradient(circle,#3783ff,#3783ffbf);
	color:var(--this-color);
	font-size:12px;
	border-radius:0 0 10px 10px;
}
a.item-category-app-b {
	position:absolute;
	height:24px;
	line-height:24px;
	width:100%;
	text-align:center;
	bottom:0;
	left:0;
	background:radial-gradient(circle,#ff5631,#ff5631ba);
	color:var(--this-color);
	font-size:12px;
	border-radius:0 0 10px 10px;
}
a.item-category-app-c {
	position:absolute;
	height:24px;
	line-height:24px;
	width:100%;
	text-align:center;
	bottom:0;
	left:0;
	background:radial-gradient(circle,#464242,#464242ad);
	color:var(--this-color);
	font-size:12px;
	border-radius:0 0 10px 10px;
}
span.bottom-l {
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.n-collect-item-bottom {
	position:absolute;
	bottom:0;
	left:0;
	width:30%;
	height:25px;
	background:var(--this-bg);
	border-radius:0 10px 0 10px ;
	font-size:12px;
	color:var(--this-color);
	text-shadow:0 2px 2px rgba(0,0,0,.16);
	display:flex;
	-webkit-box-align:center;
	align-items:center;
	-webkit-box-pack:justify;
	justify-content:space-between;
	
	z-index:5;
	justify-content:center;
}
.jiaobiao2 {
	position:absolute;
	top:10px;
	right:-50px;
	z-index:1;
	width:140px;
	height:20px;
	background:var(--this-bg);
	color:var(--this-color);
	line-height:20px;
	transform:rotate(45deg);
	text-align:center;
	font-size:12px;
	left:auto;
	border-radius:0 50px 50px 0;
}




 /* 软件信息区域 - 目标样式 */
.app-info-section {
    padding: 30px 0;
    margin: 5px 0 0 0;
}
.app-info-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.app-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.app-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}
.app-meta {
    margin: auto auto auto auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.app-title {
    font-size: 25px;
    margin: 12px 0.5px;
}
.app-subtitle {
    color: #999999;
    margin: 5px 0 0;
    font-size: 19px;
}
.app-right {
    margin: auto auto ;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #999999;
}
.app-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.app-item span:first-child {
    font-size: 17px;
    opacity: 0.7;
    margin-bottom: 3px;
}
.app-divider {
    color: #999999; /* 保持原颜色 */
    /* 核心：用边框做竖线并加长 */
    border-left: 1.2px solid #999999; /* 竖线样式（宽度1px、实线、深灰色） */
    height: 40px; /* 竖线长度（数值越大越长，根据需要调整） */
    margin: 0 1px; /* 竖线左右间距，避免和内容贴太近 */
    vertical-align: middle; /* 与旁边内容垂直居中对齐 */
}
/* 应用图标样式 */
.app-thumb {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

/* 手机端适配（屏幕宽度 < 768px 时生效） */
@media (max-width: 768px) {
    .app-info-section {
        padding: 20px 15px; /* 调整内边距 */
        margin: 0; /* 重置外边距 */
    }
    .app-info-inner {
        flex-direction: column; /* 纵向排列 */
        align-items: center; /* 居中对齐 */
    }
    .app-left {
        flex-direction: column; /* 图标和文字纵向排列 */
        gap: 10px;
        margin-bottom: 15px;
    }
    .app-meta {
        margin: 0; /* 重置外边距 */
        text-align: center; /* 文字居中 */
    }
    .app-title {
        font-size: 20px; /* 缩小字体 */
    }
    .app-subtitle {
        font-size: 16px; /* 缩小字体 */
    }
    .app-right {
        margin: 0; /* 重置外边距 */
        gap: 15px; /* 缩小间距 */
    }
    .app-item {
        font-size: 14px; /* 缩小字体 */
        min-width: 60px; /* 缩小最小宽度 */
    }
    .app-item span:first-child {
        font-size: 14px; /* 缩小字体 */
    }
    .app-thumb {
        width: auto; /* 缩小图标尺寸 */
        height: auto;
    }
}   






