/* .innerMain{
    background: t;
} */
.views {
    position: relative;
    padding: 227px 0 205px;
    z-index: 3;
}
.views .innerTitle{
    padding-bottom: .75em;
}
.views-section {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 49px;
}

.views-section .title {
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1;
}

.articles-showcase {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.articles-showcase .l {
    position: sticky;
    width: 200px;
    top: 131px;

}

.articles-showcase .l a {
    display: block;
    position: relative;
    font-weight: 300;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 30px;
    padding: 25px 39px;
    border-radius: 5px;
    z-index: 3;
}

.articles-showcase .l a:not(:last-child) {
    margin-bottom: 10px;
}

.articles-showcase .l a::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    z-index: -1;
    opacity: 0;
    transition: all .6s;
    background: linear-gradient(-30deg, #1B0F7D, #4E50BD);
}

.articles-showcase .l a:hover::before,
.articles-showcase .l a.active::before {
    opacity: 1;
}

.articles-showcase .r {
    flex: 1;
    margin-left: 60px;
}
.articles-showcase .r .pagination{
    margin-top: 70px;
}
.articles-showcase .r .lists {
    width: 1100px;
    margin: 0 auto;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    gap: 100px;
}

.articles-showcase .r .list:nth-child(2) {
    margin-top: 100px;
}

.view-item {
    position: relative;
    display: block;
    /*background: #FFFFFF;*/
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 38px;
    z-index: 2;
}
.view-item:before{
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(-30deg, #1B0F7D, #4E50BD);
    opacity: 0;
    transition: all .6s;
    z-index: -1;
}
.view-item:hover:before{
    opacity: 1;
}
.view-item:hover{
    
    border-color: transparent;
}
.view-item:not(:last-child) {
    margin-bottom: 100px;
}

.view-item .label {
    display: inline-block;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    line-height: 38px;
    padding: 0 27px;
    border-radius: 5px;
    background: linear-gradient(-30deg, #29218F, #4343B0);
    margin-bottom: 30px;
}

.view-item .pic {
    border-radius: 5px;
}

.view-item .picCover {
    padding-top: 46.19%;
}

.view-item .text-title {
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 28px;
    transition: all .6s;
}

.view-item:hover .text-title {
    /*color: rgba(78, 80, 189, 1);*/
}

.view-item .article-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.view-item .date {
    font-family: Rany-Bold;
    font-size: 16px;
    color: #fff;
    line-height: 20px;
}

.view-item .more {
    display: flex;
    align-items: center;
    font-family: Rany;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 20px;
    opacity: 0;
    transition: all .6s;
}
.view-item:hover .more{
    opacity: 1;
}
.view-item .more .iconfont {
    margin-left: 19px;
}

.views-details {
    position: relative;
    /* background-color: RGBA(250, 250, 250, 1); */
    padding: 237px 0 111px;
    z-index: 3;
}

.views-details .title {
    font-weight: 300;
    color: #fff;
}

.views-details .article-header-meta {
    margin-top: 49px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 64.28%;
}

.views-details .article-header-meta .date {
    font-family: Rany-Bold;
    font-size: 18px;
    color: #fff;
    line-height: 36px;
    flex: 1;
    margin-right: 100px;
}

.views-details .article-header-meta .soical {
    display: flex;
    gap: 20px;
}

.views-details .article-header-meta .soical a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .5);
    color: RGBA(222, 222, 222, 1);
    transition: all .6s;
}

.views-details .article-header-meta .soical .iconfont {
    font-size: 22px;
}

.views-details .article-header-meta .soical a:hover {
    color: #fff;
    background: rgba(78, 80, 189, 1);
}

.views-details .article-header-meta .soical a:hover .qrcode-popup {
    display: block;
}

.views-details .article-content-wrapper {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
}

.views-details .article-content-wrapper .l {
    width: 64.28%;
}

.views-details .article-content-wrapper .article-body-content {
    font-weight: 400;
    font-size: 16px;
    color: rgba(222, 222, 222, 1);
    line-height: 30px;
}

.views-details .article-content-wrapper .article-body-content * {
    all: revert;
}

.views-details .article-content-wrapper .article-body-content img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.views-details .article-content-wrapper .article-tags{
    margin-top: 30px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
}
.views-details .article-content-wrapper .article-tags a{
    color: #fff;
    transition: all .6s;
}
.views-details .article-content-wrapper .article-tags a:hover{
    color: rgba(78, 80, 189, 1);
}
.views-details .article-content-wrapper .btns{
    margin-top: 60px;
}
.views-details .article-content-wrapper .btns .btn{
    display: block;
    /* background: #F4F4F4; */
    border-radius: 5px;
    padding: 0 36px;
    line-height: 80px;
    font-weight: 400;
    font-size: 16px;
    color: rgba(244, 244, 244, 1);
    transition: all .6s;
    border-radius: 5px;
    border: 1px solid #F2F2F2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.views-details .article-content-wrapper .btns .btn:not(:last-child){
    margin-bottom: 10px;
}
.views-details .article-content-wrapper .btns .btn:hover{
    background: rgba(78, 80, 189, 1);
    color: #fff;
}
.views-details .article-content-wrapper .back{
    margin-top: 79px;
    display: inline-flex;
    line-height: 60px;
    padding: 0 38px;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    color: #FAFAFA;
    background: linear-gradient(-30deg, #1B0F7D, #4E50BD, #1B0F7D);
    transition: background 0.6s ease;
    background-size: 300%;
    background-position: left center;
    border-radius: 5px;
    
}
.views-details .article-content-wrapper .back:hover{
    background-size: 310%;
    background-position: right center;
}
.views-details .article-content-wrapper .back .iconfont{
    margin-left: 20px;
    font-size: 20px;
}
.views-details .article-content-wrapper .r {
    width: 32.85%;
}

.views-details .article-content-wrapper .r .r-title {
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    line-height: 1;
    margin-bottom: 30px;
}
.views-details .article-content-wrapper .r .view-item{
    background:rgba(78, 80, 189, 1);
}
.views-details .article-content-wrapper .r .view-item .label{
    margin-bottom: 0;
    background: linear-gradient(-30deg, #1B0F7D, #4E50BD);
    border:none;
    color:#fff
}
.views-details .article-content-wrapper .r .view-item .text-title,
.views-details .article-content-wrapper .r .view-item .date{
    color:#fff
}
.views-details .article-content-wrapper .r .view-item .more{
    color:rgba(204, 204, 204, 1);
}
.views-details .article-content-wrapper .r .view-item:not(:last-child){
    margin-bottom: 20px;
}
.views-details .article-content-wrapper .r .popular-tags-section{
    margin-top: 64px;
}
.views-details .article-content-wrapper .r .labels{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.views-details .article-content-wrapper .r .labels a{
    padding: 0 38px;
    border-radius: 25px;
    line-height: 50px;
    font-weight: 400;
    font-size: 16px;
    ;
    transition: all .6s;
    background: rgba(78, 80, 189, 1);
    color: #fff;
}
.views-details .article-content-wrapper .r .labels a:hover{
    color: #222222;
    background: #F2F2F2;
}
@media (max-width:1600px) {
    .articles-showcase .r .lists{
        margin: 0 0 0 auto;
        gap: 60px;
    }
    .view-item:not(:last-child){
        margin-bottom: 60px;
    }
}
@media (max-width:1530px) {
    .articles-showcase .r .lists{
        width: 100%;
    }
}
@media (max-width:1199px) {
    .articles-showcase .r .pagination{
        margin-top: 45px;
    }
    .views-details{
        padding: 140px 0 80px;
    }
    .views-details .article-content-wrapper .back,
    .views-details .article-content-wrapper{
        margin-top: 60px;
    }
    .views{
        padding: 140px 0 80px;
    }
    .articles-showcase{
        flex-direction: column;
    }
    .articles-showcase .l{
        position: relative;
        top: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .articles-showcase .l a{
        padding: 10px 15px;
    }
    .articles-showcase .l a:not(:last-child){
        margin-bottom: 0;
    }
    .articles-showcase .r{
        flex: none;
        margin-left: 0;
        margin-top: 60px;
        width: 100%;
    }
    .views-details .article-header-meta{
        width: 100%;
    }
    .views-details .article-content-wrapper{
        flex-direction: column;
    }
    .views-details .article-content-wrapper .r,
    .views-details .article-content-wrapper .l{
        width: 100%;
    }
    .views-details .article-content-wrapper .r{
        margin-top: 60px;
    }
}
@media (max-width:1024px) {
    .articles-showcase .r .pagination{
        margin-top: 40px;
    }
    .views-details{
        padding: 130px 0 70px;
    }
    .views-details .article-content-wrapper .back,
    .views-details .article-content-wrapper{
        margin-top: 50px;
    }
    .views-section{
        padding-top: 45px;
    }
    .articles-showcase .r,
    .articles-showcase{
        margin-top: 45px;
    }
    .articles-showcase .r .lists{
        gap: 40px;
    }
    .view-item:not(:last-child){
        margin-bottom: 40px;
    }
     .views{
        padding: 130px 0 70px;
    }
    .view-item .text-title{
        font-size: 20px;
    }
    .view-item .more,
    .view-item .date{
        font-size: 16px;
    }
    .view-item{
        padding: 30px;
    }
    .articles-showcase .r .list:nth-child(2){
        margin-top: 70px;
    }
    .views-details .article-header-meta .soical .qrcode-popup1{
        width: 100px;
    }
    .views-details .article-header-meta .soical .qrcode-popup1 .qrcode-image{
        width: 50px;
        height: 50px;
    }
    .views-details .article-content-wrapper .btns{
        margin-top: 50px;
    }
    .views-details .article-content-wrapper .r .popular-tags-section{
        margin-top: 55px;
    }
    /* .views-details .article-content-wrapper .r{
        margin-top: 60px;
    } */
}
@media (max-width: 768px) {
    .articles-showcase .r .pagination{
        margin-top: 30px;
    }
    .views-details .article-content-wrapper .btns .btn{
        line-height: 70px;
        padding: 0 20px;
    }
    .views-details .article-content-wrapper .back{
        line-height: 50px;
    }
    .views-details{
        padding: 110px 0 60px;
    }
    .views-details .article-content-wrapper .back,
    .views-details .article-content-wrapper{
        margin-top: 40px;
    }
    .articles-showcase .l a{
        font-size: 16px;
        padding: 5px 15px;
    }
    .articles-showcase .r .list:nth-child(2){
        margin-top: 50px;
    }
    .views{
        padding: 110px 0 60px;
    }
    .articles-showcase .r,
    .articles-showcase{
        margin-top: 40px;
    }
    .articles-showcase .r .lists{
        gap: 30px;
    }
    .view-item:not(:last-child){
        margin-bottom: 30px;
    }
    .views-details .article-header-meta .soical a{
        width: 44px;
        height: 44px;
    }
    .views-details .article-header-meta{
        margin-top: 40px;
        flex-direction: column;
        align-items: flex-end;
    }
    .views-details .article-header-meta .date{
        margin-right: 0;
        width: 100%;
        margin-bottom: 10px;
    }
    .views-details .article-content-wrapper .r .r-title{
        font-size: 22px;
    }
    .views-details .article-content-wrapper .btns{
        margin-top: 40px;
    }
    .views-details .article-content-wrapper .r .popular-tags-section{
        margin-top: 45px;
    }
}
@media (max-width: 631px) {
    .articles-showcase .r .list:nth-child(2){
        margin-top: 0;
    }
    .articles-showcase .r .lists{
        grid-template-columns: repeat(1,1fr);
    }
    .views-section{
        padding-top: 40px;
    }
}
@media (max-width: 500px) {
    .articles-showcase .r .pagination{
        margin-top: 20px;
    }
    .views-details .article-content-wrapper .r .popular-tags-section{
        margin-top: 35px;
    }
    .views-details .article-content-wrapper .btns .btn{
        line-height: 50px;
    }
    .views-details .article-content-wrapper .btns{
        margin-top: 30px;
    }
    .views-details .article-content-wrapper .r .labels a{
        line-height: 44px;
        font-size: 14px;
        padding: 0 15px;
    }
    .views-details .article-content-wrapper .r .r-title{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .views-details .article-content-wrapper .back{
        /* line-height: 44px; */
        padding: 0 20px;
    }
    .views-details .article-content-wrapper .r{
        margin-top: 40px;
    }
    .views-details .article-header-meta{
        margin-top: 20px;
    }
    .views-details{
        padding: 90px 0 50px;
    }
    .views-details .article-content-wrapper .back,
    .views-details .article-content-wrapper{
        margin-top: 30px;
    }
    .view-item .label{
        margin-bottom: 20px;
    }
    .view-item .text-title{
        margin-top: 20px;
    }
    .view-item .article-meta{
        margin-top: 30px;
    }
    .view-item{
        padding: 25px;
    }
    .views{
        padding: 90px 0 50px;
    }
    .articles-showcase .r,
    .articles-showcase{
        margin-top: 35px;
    }
}