/* Absolute (Position, X, Y) */
.g-absolute-bottom {
  position: absolute !important;
  top: 80% !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
}

.page-link{
    color:#333333;
}

#pagination li a{
    font-size: 13px !important;
}

/*分页ul居中*/
.pagination {
    justify-content: center;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5,h6{
    font-weight: 600 !important;
  }


  .shuxing {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 1rem;
    color: #999;
    font-size: 0.75rem;
    flex-wrap: wrap;
}
.shuxing > .left > span {
    padding: 0 0.25rem;
    border-left: 1px solid #ededed;
}
.shuxing > .left > span:first-child {
    border-left: none;
}
.shuxing > div > span {
    font-size: 0.75rem;
}

.dianzan {
    position: fixed;
    top:16rem;              
    transform: translateX(-4rem);            
}
.dianzan .zan {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}
.dianzan .zan:hover {
    cursor: pointer;
}
.dianzan .zan > span.iconfont {
    width: 4rem;
    height: 4rem;
    background-color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0.25rem 0.25rem 0.5rem #ededed, 0 0 0.25rem 0.25rem #ededed;
}
.dianzan .zan > span.text {
    color: #999;
    font-size: 0.75rem;
    padding: 0.25rem 0;
}
.dianzan .zan {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}
.dianzan .zan:hover {
    cursor: pointer;
}
.dianzan .zan div > span.iconfont {
    width: 4rem;
    height: 4rem;
    background-color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0.25rem 0.25rem 0.5rem #ededed, 0 0 0.25rem 0.25rem #ededed;
    /* font-size:20px; */
}
.dianzan .zan > span.text {
    color: #999;
    font-size: 0.75rem;
    padding: 0.25rem 0;
}
.dianzan .fa-wechat{
    color: #b2bac2;
}
#qrcode{
    position: fixed;
    top:27rem;              
    transform: translateX(-4rem);  
    height: 100px !important;
    width: 100px !important;
    display: none;
    margin-left: -5.5rem;
}
.dianzan .zan .fa {
    font-size: 18px;
}

@media (min-width: 1500px){
    .container {
        max-width: 1340px;
    }
    .news-content-area img{
        max-width: 100% !important;
    }        
    .dianzan{
        margin-left: -7rem;
    }
}
@media (max-width: 1499px){
    .container {
        max-width: 1140px;
    }
    .news-content-area img{
        max-width: 100% !important;
    }
    .dianzan{
        margin-left: -2.5rem;
    }
}


/* 新闻列表页分类样式 */
.category-area{
    padding-left: 0px;
}
.category-area li{
    display: inline;
    margin-right: 15px;
}

.category-area li a{
    font-size: 14px;
    margin-top:5px;
    color: #323232;
    padding: 5px 10px;
}

@media (min-width: 769px){

    .category-area li a.active{
        background-color: #ebb74a;
        color: #fff;
        font-weight: 700;

        border-radius: 0.25rem;
    }

    .category-area li a:hover{
        background-color: #ebb74a;
        color: #fff;
        font-weight: 700;

        border-radius: 0.25rem;
    }
    .no-result-news{
        margin: 3rem 2rem;
    }
}
@media (max-width: 768px){
    .category-area li a.active{
        background-color: #ebb74a;
        color: #fff;
        font-weight: 700;

        border-radius: 0.25rem;
    }

    .category-area li a:hover{
        background-color: #ebb74a;
        color: #fff;
        font-weight: 700;
        border-radius: 0.25rem;
    }
    .no-result-news{
        margin-bottom: 5rem;
    }
    .category-area{
        display: none;
    }
}

/*在手机端时最新编辑等不显示*/
@media (min-width: 768px){
    .yeecar-hide-pc{
        display: none !important;
    }
}

#vertical-slider{
    overflow: hidden;
    max-width: 100%;
    position: relative;
    display: inline-block; /* 让容器的大小适应图片 */
  }
#swiper-slide img{
display: block; /* 避免图片下方有空隙 */
width: 100%; /* 或者你可以设置一个固定的宽度 */
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 50%;
    cursor: pointer; /* 显示手型光标，增加可点击的提示 */
}

.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 26.0px; /* 控制三角形的大小 */
    border-color: transparent transparent transparent white; /* 仅左侧边框（三角形的一边）为白色 */
}