@import 'rc-tooltip.css';
@import "./fullscreen_player.css";
@import "./Pagination.css";
@import "./ListPagination.css";
@import "./commonStyle/workDetails.css";
@import "iconmoon.css";


:root {
    /*向右箭头大小*/
    --arrow-size: 65%;
    /*向右箭头颜色*/
    --arrow-color: #999;
    /* 导航栏选中和悬浮颜色 (8,9)*/
    --nav-hover-color: #82c8af;
    --nav-active-color: #82c8af;
}





[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: proxima-nova, Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Arial,sans-serif, STHeiti, Verdana;
    font-size: 12px;
    line-height: 1.5;
    color: #333;
    -webkit-font-smoothing: antialiased !important;
    min-height: 100%!important;
}

.animate__fadeOut {
    animation-name: customFadeOut !important;
}

@keyframes customFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
    }
}

.animate__slideInUp {
    animation-name: customSlideInUp !important;
}

@keyframes customSlideInUp {
    0% {
        transform: translate3d(0, 30%, 0);
        visibility: visible;
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


html{
  min-height: 100%!important;
}
article, aside, blockquote, body, button, code, dd, details, div, dl, dt, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, input, legend, li, menu, nav, ol, p, pre, section, td, textarea, th, ul {
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
/*fadeIn*/
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}


.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

.animation2 {
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated4 {
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}


@-webkit-keyframes fadeInUp{
    0%{
        opacity:0;-webkit-transform:translate3d(0,100%,0);
        transform:translate3d(0,100%,0)
    }
    to{
        opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)
    }
}
@keyframes fadeInUp{
    0%{
        opacity:0;-webkit-transform:translate3d(0,100%,0);
        transform:translate3d(0,100%,0)
    }
    to{
        opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)
    }
}
.fadeInUp{
    -webkit-animation-name:fadeInUp;
    animation-name:fadeInUp
}

/*---------*/

.base_flex{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.sub_flex{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}


.justify_flex{
/* Android */
    display: -webkit-box;
    -webkit-box-pack: justify;

/* iOS */
    display: -webkit-flex;
    -webkit-justify-content: space-between;

/* IE10 */
    display: -ms-flexbox;
    -ms-flex-pack:justify;

/* w3c */
    display: flex;
    justify-content: space-between;
}

.flex-wrap{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.overflow {
    overflow: hidden;
}

.border-radius3 .ant-btn {
    border-radius: 3px;
}

.border-radius3 .ant-input {
    border-radius: 3px;
}
.verticalAlign{
    display: inline-block;
    vertical-align: middle;
}
.left {
    text-align: left;
}

.yinIcon {
    color: rgba(153, 153, 153, .8);
    font-size: 19px;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}
.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.gray{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}
.green_color{
    color: #82c8af;
}


.clear {
    clear: both;
}

.header {
    padding-left: 7%;
    position: relative;
}

.header_side {
    position: absolute;
    padding: 5em 3em;
    height: 100%;
    background: #fff;
    width: 250px;
    overflow-y: auto;
    left: 0;
    top: 0;
    /* border-right: 40px solid rgb(246, 246, 246); */
}

/*@media screen and (max-width: 768px) {*/
/*    .header_side {*/
/*        width: 200px;*/
/*    }*/
/*}*/



.nav {
    display: inline-block;
}

.nav a {
    color: #9c9c9c;
}

.nav a:hover {
    color: #000;
}

.navMenu {
    margin: 0 1em;
    cursor: pointer;
    letter-spacing: 0px;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    display: inline-block;
    -webkit-tap-highlight-color: rgba(0, 0, 0, .2);
    position: relative;
}

.navMenu:hover {
    color: #333 !important;
}

.homeLoginBtn {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

/*max-wrap*/
.maxWrap {
    max-width: 800px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
    text-align:  center;
}
.triangle_tag{
    display: inline-block;
    vertical-align: middle;
    height: 0;
    width: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid;
    border-top-color:rgba(255,255,255,.9);
    margin-left: 5px;
}

/*home*/

.blankWrap {
    color: rgb(153, 153, 153);
    display: inline-block;
    margin: 20% 0;
}

.blankWrap i {
    display: block;
    margin-bottom: 10px;
    font-size: 30px;
    color: rgba(153, 153, 153, .8);
}


.blankWrap2 {
    position: absolute;
    top: 15%;
    left: 50%;
    text-align: center;
    color: rgb(153, 153, 153);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.blankWrap2 i {
    display: block;
    margin-bottom: 10px;
    font-size: 30px;
    color: rgba(153, 153, 153, .8);
}

/*
works
*/
.workListWrap {
    text-align: center;
    margin: 0 auto;
}

.workListWrap a img:hover {
    opacity: 0.8;
}

.workListWrapTemplate {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 36px 0 48px 0;
}

.workDetailWrapTemplate {
    padding: 0;
}

.workDetailsContent {
    padding: 3em 0 0 0;
    text-align: left;
    position: relative;
    width: 100%;
}

.workListWrapTemplate a.workCoverHover{
    display: block;
}

.workListWrapTemplate a.workCoverHover:hover {
    opacity: 0.8;
}

.workTile {
    color: #111;
    cursor: pointer;
    font-size: 20px;
    line-height: 1.3em;
    text-transform: none;
    letter-spacing: 0;
    font-style: normal;
    margin: 0 0 .3em;
}
.workTile a{
    color: #333;
}
.workTile a:hover{
    color: #ccc;
}
.workCreatedAt {
    color: #aaa;
    font-family: "proxima-nova";
    line-height: 1.6em;
    letter-spacing: 0;
    font-style: normal;
    font-size: 12px;
}

.workImage {
    width: 100%;
    display: block;
    transition: all 0.3s;
}
.workDetailWrapTemplate .workImage{
    margin: 0 0 4px 0;
}
.workListWrapTemplate .workImage_wrap{
    width: 100%;
    display:block;
    margin-bottom: 2px;
    overflow: hidden;
    position: relative;
    background: #aaa;
}
.workListWrapTemplate .workImage_wrap .live_tag_wrap{
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(130,200,174,.8);
    color: #fff;
    font-size: 10px;
    padding: 6px;
    border-radius: 0 10px 10px 0;
}
.workListWrapTemplate .workImage_wrap .live_tag_wrap span{
    margin-left: 4px;
}
.workListWrapTemplate .workImage:hover{
    -webkit-transform:scale(1.02);
    -moz-transform:scale(1.02);
    -o-transform:scale(1.02);
    transform:scale(1.02);
    opacity: 0.8;
}
.workListWrapTemplate .work_title_border{
    width: 40px;
    height: 3px;
    background: #82c8af;
    margin: 20px auto;
    font-family: Verdana, Guanine, sans-serif;
}

.workContent {
    width: 100%;
    color: #666;
    font-size: 14px;
    line-height: 1.6em;
    letter-spacing: 0;
    font-style: normal;
    margin: 2.5em 0 2em;
    white-space: pre-wrap;
    word-break: break-all;
}

.workOperateWrap {
    text-align: right;
    margin: 20px 0 0 0;
}
.work_members .member_avatar{
    width: 24px;
    height: 24px;
    margin-left: 8px;
    border-radius: 50%;
    /* cursor: pointer; */
}

.workShareList {
    font-size: 14px;
    color: #333;
    display: inline-block;
    margin-left: 15px;
    cursor: pointer;
}

.workShareList:hover, .workMoreList:hover, .workMoreList span:hover {
    color: #ccc;
}

.workShareList span, .workFavorList span {
    font-family: "proxima-nova";
    letter-spacing: 0;
    font-style: normal;
    font-size: 14px;
}

.workFavorList {
    font-size: 14px;
    color: #000;
    display: inline-block;
    margin-left: 15px;
    cursor: pointer;
}

.workMoreList span {
    font-family: "proxima-nova";
    letter-spacing: 0;
    font-style: normal;
    font-size: 14px;
    color: #333;
}
.workMoreList i{
    font-size: 14px;
    color: #333;
}
.workMoreList i:hover{
    color: #ccc;
}

.workMoreList {
    display: inline-block;
    margin-left: 15px;
    cursor: pointer;
}

.onShareBtn {
    margin-right: 5px;
    vertical-align: -1px;
}

.onFavorBtn {
    margin-right: 5px;
    vertical-align: -1px;
    color: rgb(153, 153, 153);
}

.onMoreBtn {
    margin-left: 5px;
    vertical-align: -1px;
    font-weight: bold;
}

.pagePagination {
    max-width: 800px;
    margin: 50px auto 0;
    overflow: hidden;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, .12);
    color: #000;
}

.lastPage {
    float: left;
    cursor: pointer;
    color: #333;
}

.lastPage i {
    margin-right: 5px;
}

.nextPage i {
    margin-left: 5px;
}

.nextPage {
    float: right;
    cursor: pointer;
    color: #333;
}

/*series*/
.backToBtn {
    color: #333;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
}

.seriesItemWrap {
    width: 32%;
    min-width: 216px;
    cursor: pointer;
    margin: 0 0.6666667% 3em 0.6666667%;
    display: inline-block;
    position: relative;
    text-align: center;
    box-shadow: 0 0 1px rgba(0,0,0,.16);
    padding: 0 0 25px 0;
}

.seriesItem {
    display: block;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ccc;
    padding-top: 64.8%;
}

.seriesItem:hover {
    opacity: 0.8;
}
.seriesItemName_wrap{
    padding-top: 20px;
    width:100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.seriesItemName {
    color: rgb(51, 51, 51);
    font-size: 16px;
    line-height: 2;
    width: fit-content;
}

.series_detail_info{
    font-size: 12px;
    color: #aaa;
}

.seriesItemPrice {
    font-size: 16px;
    color: #d4282d;
    line-height: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.seriesItemPrice .promotion{
    font-size: 10px;
    margin: 0 3px;
    padding-top: 2px;
}
.seriesItemPrice .original_price{
    font-size: 10px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-decoration:  line-through;
    color: #aaaaaa;
    line-height: 10px;
    padding-top: 3px;
}

/*about*/
.about_container{
  margin: 5em auto 3em;
  max-width: 800px;
}
.aboutDescription {
    width: 100%;
    font-size: 13px;
    color: rgb(51, 51, 51);
    white-space: pre-wrap;
    padding: 30px 20px;
    background: rgb(248, 248, 248);
    margin: 30px 0 0;
}
.aboutDescription .about_des_imgs{
    padding: 20px 0 0 12px;
}
.aboutDescription .des_img_item{
    display: inline-block;
    vertical-align: top;
}
.aboutDescription .about_des_imgs img{
    height: 35px;
    cursor: pointer;
    margin: 0;
}
.about_des_img_modal_mask{
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    z-index: 999;
}
.about_des_img_modal{
    width: 75%;
    position: fixed;
    top: 50%;
    left: 12.5%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}
.about_des_img_wrap{
    background: #fff;
    border-radius: 3px;
}

.about_des_img_modal img{
    width: 100%;
    display:  block;
    border-radius: 3px;
}
.about_des_img_modal .close_btn{
    color: #fff;
    display: inline-block;
    padding: 10px;
    margin: 20px 0 0 0;
    font-size: 15px;
}
.aboutWorkCover {
    width: 158px;
    height: 158px;
    background-color: #ccc;
    background-position: center;
    background-size: cover;
    margin: 1px;
    cursor: pointer;
    float: left;
}

.aboutWorkCover:hover {
    opacity: 0.8;
}

.photographerAvatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ccc;
    background-position: center;
    background-size: cover;
    margin: 0 auto 20px;
}

.photographerName {
    color: rgb(51, 51, 51);
    font-size: 16px;
    font-weight: bold;
}

.photographerLocation {
    color: rgb(153, 153, 153);
    font-size: 12px;
    margin-top: 8px;
}

.contactUs {
    background-color: #272727;
    padding: 10px 26px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 40px;
    cursor: pointer;
}

.contactUs:hover {
    background-color: #525252;
    cursor: pointer;
}

.workDes {
    padding: 15px 20px;
    color: rgb(51, 51, 51);
    line-height: 1.7;
}

.workCoverWrap {
    margin: 76px auto 0;
    overflow: hidden;
    font-size: 0;
    text-align: left;
    max-width: 800px;
}

/**/
.seriesDetail {
    margin: 3em auto 0;
    padding: 0 5%;
    max-width: 1156px;
}

.preFieldItem {
    display: inline-block;
    text-align: center;
    width: 33.3333%;
    margin: 10px 0 5px;
}

.preFieldIconWrap {
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
}

.preFieldIcon {
    position: absolute;
    color: rgb(153, 153, 153);
    width: 16px;
    display: inline-block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.preDescription {
    margin: 2.1rem 3rem 4rem 3rem;
    text-align: center;
    color: rgb(102, 102, 102);
    font-size: 12px;
}

.preSubmitBtn {
    width: 120px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    color: #fff;
    cursor: pointer;
    background: #272727;
    margin-top: 15px;
    margin-bottom: 20px;
}

.preSubmitBtn:hover {
    background: rgba(0, 0, 0, .7);
    transition: background;
}

.seriesName {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.seriesCategory {
    font-size: 12px;
    color: #333;
    margin: 10px 0 0;
}

.depositPrice {
    font-size: 12px;
    color: #333;
    margin-top: 10px;
    display: inline-block;
    margin-right: 10px;
}
.seriesPriceRow {
    display: flex;
    flex-direction: row;
}
.preFieldItemWrap {
    padding: 20px 0 25px;
    overflow: hidden;
    text-align: center;
    max-width: 350px;
    background: #f7f7f7;
    margin-bottom: 25px;
}

.otherInfo {
    white-space: pre-wrap;
    font-size: 12px;
    margin-top: 10px;
    text-align: left;

}

.otherInfo .otherInfoTitle {
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    line-height: 14px;
    margin-bottom: 20px;
    position: relative;
    width: fit-content;
    text-align: center;
    display: block;
}

.otherInfo .otherInfoTitle::before {
    width: 72px;
    height: 6px;
    opacity: 0.2;
    background: #70d0cf;
    display: block;
    position: absolute;
    top: 8px;
    content: "";
}

.otherInfoDetail {
    white-space: pre-wrap;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    color: #666666;
    line-height: 18px;
}

.seriesCover {
    width: 100%;
    background-position: 50%;
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    position: absolute;
    height: 100%;
}

.seriesDetailInfoWrap {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    margin-left: 4%;
}

/*套系详情的slick*/
.seriesImagesWrap {
    width: 48%;
    display: inline-block;
}

.seriesCoverWrap .leftIcon {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    color: rgba(255, 255, 255, .6);
    font-size: 1.5rem;
    cursor: pointer;
    text-align: center;
    line-height: 50px;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1;
}

.seriesCoverWrap .rightIcon {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    color: rgba(255, 255, 255, .6);
    font-size: 1.5rem;
    cursor: pointer;
    text-align: center;
    line-height: 50px;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1;
}

.seriesTbImagesWrap {
    width: 100%;
    height: 67px;
    overflow-y: hidden;
    white-space: nowrap;
    overflow-x: auto;
}

.seriesImages {
    width: 77px;
    height: 57px;
    display: inline-block;
    margin-right: 5px;
    margin-top: 5px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    background-color: #000;
}

.video_play_icon{
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 16px 14px 16px 18px;
    margin-left: -23px;
    margin-top: -23px;
    font-size: 14px;
    color: #eee;
    z-index: 1;
    background: rgba(0,0,0,.3);
    border-radius: 50%;
    cursor: pointer;
}
.video_play_icon:hover{
    color: #fff;
    background-color: rgba(0,0,0,.6);
}

.seriesCoverWrap {
    overflow: hidden;
    position: relative;
    background-color: #000;
    padding-top: 64%;
}

.series_list_header_wrap .header_wrap{
    padding: 3em 0 1em 0;
    line-height: 1.8;
    text-align: center;
}
.series_list_header_wrap .header_title{
    color: #333;
    font-size: 20px;
}
.series_list_header_wrap .header_sub_title{
    color: #999;
    font-size: 14px;
}
.series_list_header_wrap .series_title_border{
    width: 50px;
    height: 3px;
    background: #82c8af;
    margin: 10px auto 0;
}
/*回到顶部*/
.backTopBtnWrap {
    z-index: 10;
    position: fixed;
    right: 20px;
    bottom: 50px;
    height: 40px;
    width: 40px;
    cursor: pointer;
}

.backTopBtnWrap .ant-back-top {
    z-index: 10;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 40px;
    width: 40px;
    cursor: pointer;
}

/*footer*/
.contactBtnWrap {
    padding: 0 0 10px 0;
}

.footerIconWrap {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #333;
    display: inline-block;
    line-height: 28px;
    margin: 5px;
    color: #333;
    font-family: Verdana, Guanine, sans-serif;
    background-color: #fff;
    text-align: center;
}

.footerIconWrap:hover {
    color: #fff;
    background: #333;
    border: 1px solid #333;
    transition: backgroundColor;
}

.weiboBtn {
    font-size: 16px;
    cursor: pointer;
    margin: 0 5px;
    vertical-align: text-bottom;
}

.wechatBtn {
    font-size: 16px;
    cursor: pointer;
    /* margin: 0 5px; */
    vertical-align: text-bottom;
}

a.picblingLink {
    color: #2db7f5;
    font-size: 12px;
    cursor: pointer;
}

.footer {
    padding: 10em 0 0 0;
    text-align: center;
}
.footer_contact_wrap{
    padding: 0 0 3em;
}

.footer_tech_support{
    background: #f6f6f6;
    font-size: 11px;
    color: #ccc;
    height: 44px;
    line-height: 44px;
}

.footerWeCode {
    width: 80%;
    margin: 0 auto;
}

.codeText {
    color: #666;
    font-size: 12px;
    line-height: 1.75;
}

/*-------*/
.sqs-simple-like {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    line-height: 18px;
    display: inline-block
}

.sqs-simple-like .like-icon {
    -webkit-transition: background-color, opacity .5s ease-out;
    transition: background-color, opacity .5s ease-out;
    float: left;
    margin-right: 5px;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #999 url('//static.squarespace.com/universal/images-v6/comments/icon_like_12_light.png') center center no-repeat;
    background-size: 10px;
    display: block
}

.sqs-simple-like:hover .like-icon {
    background-color: #d10000;
    -webkit-animation: beat 1s infinite;
    animation: beat 1s infinite;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

.sqs-simple-like.float .like-icon {
    background-color: #d10000;
    -webkit-animation: float 2s infinite;
    animation: float 2s infinite;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1
}

.like-icon {
    background-color: #d10000;
    -webkit-animation: float 2s infinite;
    animation: float 2s infinite;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1
}

.sqs-simple-like.clicked .like-icon {
    background-color: #d10000;
    -webkit-animation: none;
    animation: none;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

@-webkit-keyframes float {
    0% {
        opacity: 0;
        -webkit-transform: scale(1.15);
        -webkit-animation-timing-function: ease-in
    }
    30% {
        -webkit-animation-timing-function: linear;
        opacity: .6
    }
    60% {
        opacity: .8;
        -webkit-transform: scale(1.45);
        -webkit-animation-timing-function: linear
    }
    100% {
        -webkit-animation-timing-function: ease-out;
        opacity: 0
    }
}
@keyframes float {
    0% {
        opacity: 0;
        -webkit-transform: scale(1.15);
        -webkit-animation-timing-function: ease-in
    }
    30% {
        -webkit-animation-timing-function: linear;
        opacity: .6
    }
    60% {
        opacity: .8;
        -webkit-transform: scale(1.45);
        -webkit-animation-timing-function: linear
    }
    100% {
        -webkit-animation-timing-function: ease-out;
        opacity: 0
    }
}

@-webkit-keyframes beat {
    0% {
        -webkit-transform: scale(1)
    }
    10% {
        -webkit-transform: scale(1.25)
    }
    20% {
        -webkit-transform: scale(1.1)
    }
    30% {
        -webkit-transform: scale(1.25)
    }
    100% {
        -webkit-transform: scale(1)
    }
}
@keyframes beat {
    0% {
        -webkit-transform: scale(1)
    }
    10% {
        -webkit-transform: scale(1.25)
    }
    20% {
        -webkit-transform: scale(1.1)
    }
    30% {
        -webkit-transform: scale(1.25)
    }
    100% {
        -webkit-transform: scale(1)
    }
}

.is_vip_logo_show {
    position: absolute;
    right: 15px;
    bottom: 0;
    width: 17px;
    display: block;
}

.slick-initialized ul.homepage_carousel_dot {
    bottom: 50px;
}

.slick-initialized ul.homepage_carousel_dot li button:before {
    color: #bbb;
    opacity: 0.7;
}

.slick-initialized ul.homepage_carousel_dot li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

/*template2*/

.slick-initialized .slick-slider {
    padding-bottom: 0 !important;
}

.cover_slide_img {
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 50%;
    height: 0;
}

.cover_slide_img .img {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.slick-initialized .slick-dots li button:before {
    font-size: 10px !important;
}

.slick-initialized ul.homepage_carousel_dot {
    bottom: 20px !important;
}

.ppx_block{
    color: #666;
    font-weight: lighter;
    font-size: 12px;
    font-family: Verdana, Guanine, sans-serif;
    background: rgba(122, 199, 175, .8);
    text-align: right;
}

.waterfall_cover_wrap {
    display:-webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    padding: 1em 7%;
    max-width: 1200px;
    margin: 0 auto;
}

.photo_show_img {
    margin: 10em auto 3em auto;
    display: block;
    max-width: 240px;
}
.small_header_side .navMenu {
    padding-top: 0.6em;
    padding-bottom: 0.6em;
    border-bottom: 1px solid #eee;
}

.small_mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    left: 0;
    top: 0;
    cursor: pointer;
}

/*放大图片轮播*/
.zoomBox .slick-list, .zoomBox .slick-track, .zoomBox .slick-slider {
    height: 100%;
}

.zoomBox .cover_slide_img {
    background-color: transparent;
    padding-top: 0;
}

.zoomBox .slick-arrow {
    margin: 0 4%;
    border-radius: 50%;
    z-index: 2;
    width: 48px ;
    height: 48px ;
    background: #ffffff ;
    border-radius: 2px ;
    box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 18%) ;
}

.zoomBox .slick-disabled {
    cursor: no-drop;
}

.waterfall_cover_wrap .list_blog_waterfall {
    width: calc((100% - 12px) / 3);
    margin: 2px;
    position: relative;
    cursor: pointer;
    float: left;
    font-size: 0px;
    overflow: hidden;
    border: 0;
}
.waterfall_cover_wrap .list_blog_waterfall a{
    display: block;
}
.waterfall_cover_wrap .list_blog_waterfall a .cover_url{
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.01);
    -o-transform: scale(1.01);
    transform: scale(1.01);
    width: 100%;
    padding-top: 66.7%;
    transition: transform 0.3s;
}
.waterfall_cover_wrap .list_blog_waterfall .live_tag_wrap{
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(130,200,174,.8);
    color: #fff;
    font-size: 10px;
    padding: 6px;
    border-radius: 0 10px 10px 0;
    z-index: 1;
}
.waterfall_cover_wrap .list_blog_waterfall .live_tag_wrap span{
    margin-left: 4px;
}
.waterfall_cover_wrap .list_blog_waterfall a:hover .cover_url{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.waterfall_cover_wrap .list_blog_waterfall .blog_title{
    opacity: 0;
    transition: opacity 0.3s;
    background: rgba(255,255,255,0.7);
    text-align: center;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #333;
    padding: 10px 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.waterfall_cover_wrap .list_blog_waterfall a:hover .blog_title{
    opacity: 0.8;
}
.waterfall_cover_wrap .list_blog_waterfall_img{
    padding-top: 66.6666%;
    position: relative;
}
.waterfall_cover_wrap .list_blog_waterfall_img .live_tag_wrap,
.list_blog_waterfall .live_tag_wrap{
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(130,200,174,.8);
    color: #fff;
    font-size: 10px;
    padding: 6px;
    border-radius: 0 10px 10px 0;
    z-index: 10;
}
.waterfall_cover_wrap .list_blog_waterfall_img .live_tag_wrap span,
.list_blog_waterfall .live_tag_wrap span{
    margin-left: 4px;
}
.waterfall_cover_wrap .show_work_img_waterfall {
    width: 32%;
}
.waterfall_cover_wrap .list_blog_waterfall_title_item{
    padding: 10px;
}
.waterfall_cover_wrap .list_blog_waterfall_title_item .title_text{
    color: #333;
    font-size: 13px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.waterfall_cover_wrap .list_blog_waterfall_title_item .sub_title_text{
    color: #aaa;
    font-size: 11px;
    padding: 3px 0 0 0;
}

.waterfall_cover_vertical_wrap {
    display:-webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    padding: 0 7%;
    max-width: 1200px;
    margin: 0 auto;
}

.waterfall_cover_vertical_wrap .list_blog_waterfall {
    width: calc((100% - 12px) / 3);
    margin: 2px;
    position: relative;
    cursor: pointer;
    float: left;
    font-size: 0px;
    overflow: hidden;
    border: 0;
    z-index: 1;
}
.waterfall_cover_vertical_wrap .list_blog_waterfall .mask{
  position:absolute;
  left:0%;
  top:0%;
  width:100%;
  height:100%;
  z-index:10;
  background-color: rgba(138, 136, 136, 0.15);
}
.waterfall_cover_vertical_wrap .list_blog_waterfall .mask .maskText{
  background: rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.9);
  width: 100px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 20px;
  z-index: 1;
  font-size: 14px;
  text-align: center;
}
.waterfall_cover_vertical_wrap .list_blog_waterfall a .cover_url{
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.01);
    -o-transform: scale(1.01);
    transform: scale(1.01);
    height: 495.5px;
    font-family: Verdana, Guanine, sans-serif;
    transition: transform 0.3s;
}
.waterfall_cover_vertical_wrap .list_blog_waterfall a:hover .cover_url{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.waterfall_cover_vertical_wrap .list_blog_waterfall .blog_title{
    opacity: 0;
    transition: opacity 0.3s;
    background: rgba(255,255,255,0.7);
    text-align: center;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #333;
    padding: 10px 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.waterfall_cover_vertical_wrap .list_blog_waterfall a:hover .blog_title{
    opacity: 0.8;
}
.waterfall_cover_vertical_wrap .list_blog_waterfall_img{
    padding-top: 66.6666%;
    height: 250px;
}
.waterfall_cover_vertical_wrap .show_work_img_waterfall {
    width: 32%;
}
.waterfall_cover_vertical_wrap .list_blog_waterfall_title_item{
    padding: 10px;
}
.waterfall_cover_vertical_wrap .list_blog_waterfall_title_item .title_text{
    color: #333;
    font-size: 13px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.waterfall_cover_vertical_wrap .list_blog_waterfall_title_item .sub_title_text{
    color: #aaa;
    font-size: 11px;
    padding: 3px 0 0 0;
}

.show_zoom_images {
    background: #fff;
}

.show_zoom_images .zoom_img_box {
    width: 90%;
}

.show_zoom_images .zoom_img_box > img {
    height: 100%;
    width: auto;
}

.thumbnail_box {
    position: absolute;
    left: 50%;
    transition: all 0.3s ease-out;
}

.thumbnail_box > li {
    position: relative;
    width: 50px;
    height: 50px;
    float: left;
    overflow: hidden;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
}

.thumbnail_box > li:hover {
    opacity: 1;
}

.thumbnail_box .thumbnail_selected {
    border: 1px solid #ccc;
    border-radius: 1px;
}

.thumbnail_box .thumbnail_coverGery {
    opacity: 0.5;
}

.thumbnail_box > li > img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    min-height: 100%;
}
.footer_login_btn{
    display: none;
}
.vedio_container{
  max-width: 800px;
  margin: 7rem auto 3rem;
}
.vedio_container_v2{
  max-width: 800px;
  margin: 0 auto;
}
.video_black_color_big{
    color:rgba(255,255,255,.9);
}
.video_black_color_small{
    color:rgba(255, 255, 255, 0.8)!important;
}
.video_wrap{
  margin: 3em 0;
  overflow: hidden;
  /* background: #20252a; */
  background: #000;
}
.video_traffic_exceed_block{
    width: 100%;
    background: #333;
    color: #eee;
    height: 500px;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 14px;
    margin-bottom: 4px;
}
@media screen and (max-width: 428px) {
    .video_homepage_show_img {
        width: 46vw!important;
    }
    .seriesPriceRow {
        justify-content: center;
    }
}
.seriesWrap1{
    max-width: 1200px;
    margin: 3em auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    min-height: auto;
}
.gallery_mask_icon{
  position: absolute;
  top:50%;
  left:50%;
  -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.work_img_alignment{
    font-size: 14px;
    padding: 1.5em 0;
    color: #666;
    white-space: pre-wrap;
    -webkit-font-smoothing: antialiased;
  }
/* 模板底部信息 */
.footer_container{
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    position: relative;
    z-index: 10;
}
.footer_container .footer_content{
    width: 100%;
    height: 480px;
    position: relative;
}
.footer_container .small_footer_content{
    width: 100%;
    min-height: 300px;
    position: relative;
}
.footer_container .footer_content_copy{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    z-index: 99;
    background: rgba(0,0,0,.8);
}
.footer_content_wrap{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    z-index: 100;
    padding: 150px;
}
.footer_container .footer_bar{
    background: #0c0c0c;
    width: 100%;
    text-align: center;
    font-size: 1.1em;
    padding: 18px 0;
}
.footer_container .footer_bar_item{
    display: inline-block;
    padding: 0 3em;
}
.footer_container .footer_item{
    width:25%;
    text-align: left;
    display: inline-block;
    vertical-align: top;
}

.footer_container .footer_item .fir_title{
    font-size: 1.6em;
    color: #fff;
}

.footer_container .footer_item .title{
    font-size: 1.5em;
    color: rgba(255, 255, 255, 0.5);
}
.footer_container .icon_wrap{
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    vertical-align: top;
    margin: 3em 15px 0 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #999;
    cursor: pointer;
}
.footer_container .footer_item .sub_title{
    font-size: 1.4em;
    padding: .6em 0 0 0;
    color: rgba(255,255,255,.3);
}
.footer_container .detial_info_wrap{
    margin: 2.7em 0 0 0;
}
.footer_container .footer_item .detial_info{
    font-size: 1.1em;
    color: rgba(255,255,255,.5);
    padding: 0 1.5em 1em 0;
}

.contact_modal_wrap{
    height: 90px;
    position: fixed;
    right: 10px;
    bottom: 40px;
    z-index: 97;
}
.contact_modal_wrap .contact_item{
    width: 30px;
    height: 30px;
    display: block;
    background: #444;
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    transition: all 0.3s;
    cursor: pointer;
}
.contact_modal_wrap .contact_item:hover{
    background: #82c8af !important;
}
.contact_phone_wrap{
    width: 192px;
    height: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 9px rgba(4, 0, 0, .17);
    box-shadow: 0 5px 9px rgba(4, 0, 0, .17);
    position: fixed;
    z-index: 98;
    border-radius: 0px;
    bottom: 130px;
    margin-right: -10px;
    right: -192px;
    transition:all 0.5s;
}
.contact_phone_wrap .contact_phone_title{
    padding: 20px;
    line-height: 16px;
    font-size: 16px;
    background: #1D1D1D;
    border-radius: 0px;
    color: #fff;
}
.contact_phone_wrap .wechat_line{
    padding: 12px 30px;
    line-height: 18px;
    background: #f5f5f5;
    color: #353434;
    display: block;
    border-bottom: #fff 1px solid;
    transition: all ease-out .3s;
    font-size: 12px
}
.contact_phone_wrap .contact_phone_item{
    padding: 20px 30px;
}
.contact_phone_wrap .contact_phone_item_title{
    color: #434343;
    line-height: 14px;
    height: 14px;
    margin-bottom: 10px;
}
.contact_phone_wrap .close_icon{
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    float: right;
    margin: 2px 0 0 0;
    cursor: pointer;
}
.more_title_guide{
    color: #81c9af;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.more_title_guide:hover{
    background: #81c9af;
    color: #fff;
}

.animation_active{
    -webkit-animation-name:fadeInUp;
    animation-name:fadeInUp;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay:2s;
    animation-delay:2s;
}
.beian_text span{
    padding: 5px 0;
    display: inline-block;
    font-size: 11px;
}
.footer_bar_item .beian_text span{
    padding:0;
    font-size: 13px;
}
.more_work_btn{
    color: #999;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 40px;
    cursor: pointer;
    border: 1px solid #dcdcdc;
    width: 158px;
    padding: 8px 0;
    transition: all 0.3s;
}
.more_work_btn:hover{
    background: #272727;
    color: #fff;
}
.min_content{
    min-height: calc( 100vh - 250px );
}
.gray_color{
    color: #666!important;
  }
.more_top_work_list_wa{
    margin-top: 50px;
    background: #fff;
}
.more_top_work_list_content{
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.more_work_list_title_wrap{
    overflow: hidden;
    padding: 16px 15px 16px;
}
.more_top_work_list_item{
    margin: 0 0 0 210px;
    background: #fff;
    padding-bottom: 20px;
}
.more_work_list_title_wrap .left_title{
    float: left;
    font-size: 14px;
    color: #333;
    position: relative;
}
.more_work_list_title_wrap .right_title{
    float: right;
    color: rgb(2255,101,114);
    font-size: 13px;
    margin-right: .3em;
}
.more_top_work_list{
    position: relative;
    text-align: center;
    max-width: 800px;
    margin:0 auto;
}
.more_top_work_list .work_top_tag{
    position: absolute;
    top:0;
    left:11px;
    background:rgba(0,0,0,.6);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 8px 10px;
}
.more_top_work_list .item_img_wrap{
    width:158px;
    height: 158px;
    vertical-align:top;
    display:inline-block;
    margin:1px;
    position: relative;
}
.more_top_work_list .item_img_wrap_vertical{
    height: 240px;
}
.more_top_work_list .item_img_wrap .item_img_mask{
    width:100%;
    height: 100%;
    position: absolute;
    left:0;
    top:0;
    background-image: linear-gradient(transparent 65%,rgba(0,0,0,.35));
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
    opacity: 0;
}
.more_top_work_list .item_img_wrap:hover .item_img_mask{
    opacity: 1;
}
.more_top_work_list .item_img_wrap img{
    width: 100%;
    height: 100%;
    display: block;
}
.more_top_work_list .item_img_wrap .item_img{
    width: 100%;
    height: 100%;
}
.more_top_work_list .item_img_mask .item_title{
    color: #fff;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width:100%;
}
.more_top_work_list .item_img_mask .item_info_wrap{
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    padding: 0 10px;
    text-align: left;
}
.more_top_work_list .item_img_mask .item_time{
    color: rgba(255, 255, 255, .65);
}
.more_top_work_list_wa .btn_group{
    text-align: center;
    padding-bottom: 80px;
}
.more_top_work_list_wa .order_btn{
    background-color: #272727;
    padding: 10px 26px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin: 0 5px;
    transition:all 0.2s;
}
.more_top_work_list_wa .more_btn{
    border: 1px solid #333;
    padding: 9px 26px;
    color: #333;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin: 0 5px;
    transition:all 0.2s;
}
.more_top_work_list_wa .order_btn:hover,.more_top_work_list_wa .more_btn:hover{
    opacity: 0.8;
}

/*适配小屏800以下*/

@media screen and (max-width: 980px) {
    .waterfall_cover_wrap .list_blog_waterfall {
        width: 45%;
        margin: 2px 1% 8px;
    }
    .workContentWrap{
      padding:0 5% 0;
    }
    .workDetailsContent{
      padding:3em 5% 0;
    }
    .about_container{
      padding: 0;
    }
    .video_wrap{
      margin: 3em 5%;
    }
    .navMenu{
      font-size: 0.875rem;
    }
    .workListWrapTemplate .work_title_border{
        margin:10px auto;
    }
}

@media screen and (max-width: 800px) {
    .waterfall_cover_vertical_wrap .list_blog_waterfall a .cover_url{
        height: 250px;
    }
    .aboutDescription .about_des_imgs img{
        height: 25px;
        margin: 0 10px 8px 0;
    }
    /*登录按钮*/
    .footer_login_btn{
        display: inline-block;
    }

    .template2_sub_page {
        padding-top: 3em;
    }

    .seriesCover {
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .seriesImagesWrap {
        width: 80%;
        margin: 0 auto;
        display: block;
    }

    .seriesWrap {
        text-align: center;
    }

    .seriesWrap1 {
        text-align: center;
        padding: 0 5%;
        display: block;
    }

    .seriesDetailInfoWrap {
        display: block;
        width: 80%;
        margin: 30px auto;
    }

    .preFieldItemWrap {
        width: 100%;
    }

    .preFieldItem {
        width: 33.3333%;
        margin-right: 0;
        display: inline-block;
    }

    .cover_slide_img {
        padding-top: 66.6%;
    }

    .seriesDetailInfoWrap {
        text-align: center;
    }

    .preSubmitBtn {
        margin: 20px auto 40px;
    }

    .seriesItemName{
        font-size: 14px;
    }
    .header {
        padding-left: 0;
    }

    .nav {
        text-align: center;
        display: block;
    }
    .backToBtn {
        text-align: center;
    }

    .footer{
      padding: 5em 0 0;
    }
    /*template2*/
    .waterfall_cover_wrap {
        padding: 0 1em;
    }

    .photo_show_img {
        margin: 5em auto 2em auto;
        display: block;
        max-width: 150px;
    }

    .slick-initialized .slick-dots li button:before {
        font-size: 5px !important;
    }

    .slick-initialized ul.homepage_carousel_dot {
        bottom: 10px !important;
    }

    .aboutWorkCover {
        float: none;
        width: 30vw;
        height: 30vw;
    }

    .workCoverWrap{
        max-width: calc(90vw + 6px);
    }

    .show_zoom_images .zoom_img_box {
        width: 100%;
    }

    .show_zoom_images .zoom_img_box > img {
        height: auto;
        width: 100%;
    }

    .work_img_alignment{
        font-size: 13px;
        padding: 1.5em 5%;
    }

    .workContent{
        font-size: 12px;
    }
    .workTile{
        margin: 0 0 .2em;
        font-size: 16px;
    }
    .workShareList{
        font-size: 12px;
    }
    .workMoreList span{
        font-size: 12px;
    }
    .workShareList span, .workFavorList span{
        font-size: 12px;
    }
    .footer_container .footer_bar_item{
        padding: 0 1em;
        font-size: .9em;
    }
    .footer_content_wrap{
        padding: 50px 20px;
    }
    .footer_content_wrap .fir_title{
        color: #fff;
        font-size: 1.3em;
    }
    .footer_content_wrap .sub_title{
        margin: 0 0 1.6em;
    }
    .footer_content_wrap .detial_info{
        line-height: 2;
    }
    .series_list_header_wrap .header_title{
        font-size: 16px;
    }
    .series_list_header_wrap .header_sub_title{
        font-size: 12px;
    }
    .workMoreList i{
        font-size: 12px;
    }
    .beian_text span{
        /* font-size: .9em; */
        padding: 5px 10px;
    }
    .footer_bar_item .beian_text span{
        font-size: 1em;
    }
    .more_top_work_list .item_img_wrap{
        width:150px;
        vertical-align:top;
        display:inline-block;
        padding-right:5px;
        height: 100px;
    }
    .more_top_work_list .work_top_tag{
        padding: 4px 5px;
        font-size: 10px;
    }
    .more_work_list_title_wrap .left_title{
        font-size: 12px;
    }
    .more_work_list_title_wrap .right_title{
        font-size: 12px;
        margin-right: 0;
    }
    .more_work_list_title_wrap{
        padding: 15px 10px 12px;
    }
    .more_top_work_list_item{
        margin:0;
        padding-bottom: 15px;
    }
    .more_top_work_list{
        overflow-x: auto;
        white-space: nowrap;
        padding:0 5px 0 10px;
        text-align: left;
    }
    .more_top_work_list_wa{
        margin-top: 0;
        padding: 10px 0;
        background: #f4f4f4;
    }
    .workDetailWrapTemplate{
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 600px) {
    .waterfall_cover_vertical_wrap{
        padding: 2px;
    }
  .waterfall_cover_vertical_wrap .list_blog_waterfall {
    width: calc(50% - 4px);
  }
  .waterfall_cover_vertical_wrap .list_blog_waterfall .mask .maskText {
    font-size: 12px;
    height: 25px;
    line-height: 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.26);
  }
    .workListWrap {
        padding: 1em 0.3em 30px 0.3em;
    }

    .aboutDescription {
        margin: 50px auto 0;
        width: 90%;
    }

    .workOperateWrap {
        padding: 0 15px;
    }

    .waterfall_cover_wrap {
        padding: 0 0.2em;
    }

    .waterfall_cover_wrap .list_blog_waterfall {
        width: 48%;
        margin: 2px 1% 8px;
    }

    .work_img_alignment{
        font-size: 13px;
    }
      .workContent{
        font-size: 12px;
    }

}

@media screen and (max-width: 500px) {
    .side-menu-toggle-icon{
        display: none;
    }
    .animation_selector{
        left:0;
    }
    .seriesDetailInfoWrap {
        width: 100%;
    }

    .seriesCover {
        width: 100%;
    }

    .seriesImagesWrap {
        width: 100%;
    }

    .seriesWrap {
        padding: 0 5%;
    }

    .seriesItemWrap {
        width: 100% !important;
        margin: 0 0 25px 0;
    }

    /*回到顶部*/
    .backTopBtnWrap {
        z-index: 10;
        position: fixed;
        right: 20px;
        bottom: 50px;
        height: 40px;
        width: 40px;
        cursor: pointer;
    }

    .backTopBtnWrap .ant-back-top {
        z-index: 10;
        position: absolute;
        right: 0;
        bottom: 0;
        height: 40px;
        width: 40px;
        cursor: pointer;
    }

    /*登录*/
    .homeLoginBtn {
        display: none;
    }

    .work_img_alignment{
        font-size: 13px;
      }
    .workContent{
        font-size: 12px;
    }
}

.sub_menu_item_wrap {
    position: absolute;
    background-color: rgba(255, 255, 255, .75);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 2px 2px;
    z-index: 1000;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.sub_menu_item_wrap_blog {
    position: absolute;
    z-index: 1000;
    border-radius: 0 0 2px 2px;
    box-shadow: 0px 3px 2px 0 rgba(0, 0, 0, 0.2);
}

.sub_menu_item_wrap_blog.dark {
    box-shadow: 0px 3px 2px 0 rgba(0, 0, 0, 0.2);
}


.sub_menu_item_wrap_blog .sub_menu_mian {
    width: max-content;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    position: relative;
}

.sub_menu_item_wrap_blog .sub_menu_mian .sub_menu_mian_left {
    max-height: 540px;
    background: #ffffff;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 2px 2px;
}


.set_scroll_bar::-webkit-scrollbar {
    width: 2px;
    height: 3px;
}

/* 滚动槽 */
.set_scroll_bar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(136, 136, 136, 0.5);
    border-radius: 5px;

}

/* 滚动条滑块 */
.set_scroll_bar::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(179, 179, 179, 0.2);
    -webkit-box-shadow: inset 0 0 2px rgba(179, 179, 179, 0.2);
}


.sub_menu_item_wrap_blog .sub_menu_mian .sub_menu_mian_left .left_main {
    flex-shrink: 0;
    cursor: pointer;
    -webkit-transition: all .3s;
    font-size: 12px;
    transition: all .3s;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /*height: 54px;*/
    padding: 14px 30px;
}

.sub_menu_item_wrap_blog .sub_menu_mian .sub_menu_mian_left .left_main a {
    padding: 0;
    display: block;
    color: #666;
    min-width: 60px !important;
    text-align: left;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    line-height: initial !important;
}



.icon-rotate {
    transform: rotate(90deg);
    transition: all 0.3s;
}

.sub_menu_item_wrap_blog .sub_menu_mian .sub_menu_mian_left .left_main:hover {
    background: #fafafa;
}

.sub_menu_item_wrap_blog .sub_menu_mian .sub_menu_mian_left .left_main.active {
    background: #fafafa;
}


.sub_menu_item_wrap_blog .sub_menu_mian .sub_menu_mian_right {
    background: #fafafa;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    max-height: 540px;
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 2px 2px 0;
}

.sub_menu_item_wrap_blog .sub_menu_mian .sub_menu_mian_right .right_main {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    padding: 14px 30px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sub_menu_item_wrap_blog .sub_menu_mian .sub_menu_mian_right .right_main a {
    color: #666;
    flex-shrink: 0;
    line-height: initial !important;
}

.sub_menu_item_wrap_blog .sub_menu_mian .sub_menu_mian_right .right_main:hover {
    background: #f5f5f5;
}

.sub_menu_item_wrap_blog .sub_menu_mian .sub_menu_mian_right .right_main.active {
    background: #f5f5f5;
}


/*黑暗模式*/

.sub_menu_item_wrap_blog.dark .sub_menu_mian .sub_menu_mian_left {
    background: #43434a;
}

.sub_menu_item_wrap_blog.dark .sub_menu_mian .sub_menu_mian_left .left_main:hover {
    background: #333;
}

.sub_menu_item_wrap_blog.dark .sub_menu_mian .sub_menu_mian_left .left_main.active {
    background: #333;
}

.sub_menu_item_wrap_blog.dark .sub_menu_mian .sub_menu_mian_left a {
    color: #ffffff;
}

.sub_menu_item_wrap_blog.dark .sub_menu_mian .sub_menu_mian_left .icon-right03 {
    color: var(--arrow-color);
    position: absolute;
    right: 8px;
}

.sub_menu_item_wrap_blog .sub_menu_mian .sub_menu_mian_left .left_main .icon-right03 {
    font-size: var(--arrow-size);
    color: var(--arrow-color);
    position: absolute;
    right: 15px;
}


.sub_menu_item_wrap_blog.dark .sub_menu_mian .sub_menu_mian_right {
    background: #484a4f;

}

.sub_menu_item_wrap_blog.dark .sub_menu_mian .sub_menu_mian_right .right_main:hover {
    background: #333;
}

.sub_menu_item_wrap_blog.dark .sub_menu_mian .sub_menu_mian_right .right_main.active {
    background: #333;
}

.sub_menu_item_wrap_blog.dark .sub_menu_mian .sub_menu_mian_right a {
    color: #ffffff;
}




.sub_menu_wrap_4 {
    position: absolute;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    /*left: 0;*/
    border-radius: 0 0 4px 4px;
    z-index: 99;
    padding: 10px 0;
}

a.sub_menu_item {
    padding: 19px 0px;
    -webkit-transition: all .3s;
    font-size: 12px;
    transition: all .3s;
    display: block;
    color: #666;
    text-align: center;
    min-width: 100px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, .2);
    white-space: nowrap;
}

/*a.sub_menu_item:hover {*/
/*    color: #333;*/
/*    background-color: #fff;*/
/*}*/

a.mobile_sub_item {
    display: block;
    color: #999;
    padding: 1em 0 1em 2.2em;
    font-size: 14px;
}

.one_menu_main {
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.one_menu_main a {
    color: #999999;
    padding-left: calc(1rem + 14px);
    /*    超过一行显示...*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.one_menu_main a:hover {
    color: #111;
}

.one_menu_main i {
    font-size: var(--arrow-size);
    color: var(--arrow-color);
    margin-right: 1rem;
}

.one_menu_main.active a {
    color: #111;
}

.two_menu_main {
    /* 二级菜单的样式 */
    padding-left: calc(1rem + 14px);
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid #eee;

}


.two_menu_main a {
    /* 二级菜单项的样式 */
    display: block;
    color: #aaaaaa;
    text-decoration: none;
    text-align: left;
    padding-left: 0;
    /*    超过一行显示...*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
}

.two_menu_main a:last-child {
    padding-bottom: 1rem !important;
}

.two_menu_main a:hover {
    color: #111;
}

.two_menu_main a.active {
    color: #111;
}



video::-webkit-media-controls-enclosure {
    overflow: hidden;
}

video::-webkit-media-controls-panel {
    width: calc(100% + 30px);
}

.wechat_share_img {
    width: 0;
    height: 0;
    display: block;
}

.beian_number{
    color: #aaa;
}
.footer_bar_item .beian_number{
    color: rgba(255,255,255,.6);
}


/*
 team list
*/
.content_list{
    width: 100%;
}
.member_list_item{
    float: none;
    width: calc(100%);
    padding-left: 50px;
    padding-right: 50px;
    height: 190px;
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.member_list_item:hover {
    background: #f7f7f7;
    cursor: pointer;
    box-shadow: 0 15px 20px rgba(0,0,0,0.05);
}
.member_list_item:hover a .team_member_avatar {
    transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
}
.member_list_item .header{
    width: 100%;
    margin: 0 auto;
    padding-bottom: 0;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.member_list_item .header a{
    float: left;
}
.member_list_item .header .team_member_avatar{
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    width: 140px;
    height: 140px;
    margin: 25px auto 20px auto;
    float: none;
    display: block;
    border-radius: 90px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.member_list_item .summary {
    width: calc(100% - 150px);
    text-align: left;
    float: left;
    margin-left: -50px;
    padding-left: 150px;
    position: relative;
    padding-top: 30px;
}
.member_list_item .summary::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 80px;
    background: rgba(0,0,0,.08);
    top: -25px;
    bottom: 0px;
    margin-left: -50px;
    margin-top: auto;
    margin-bottom: auto;
}
.member_list_item .summary .title{
    color: #383838;
    font-size: 22px;
    font-family: "Times New Roman";
    margin-bottom: 6px;
    width: 140px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}
.member_list_item .summary .subtitle{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #a5a5a5;
    font-size: 12px;
    margin-bottom: 30px;
}
.member_list_item .description {
    width:calc(100% - 120px);
    text-align: left;
    position: relative;
    top: -82px;
    line-height: 28px;
    margin-left: 123px;
    padding-left: 60px;
    color: #bebebe;
    overflow: hidden;
    height: 106px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    white-space: pre-wrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

.member_list_item .description::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background: rgba(0,0,0,.1);
    top: 13px;
    left: 12px;
}

.member_list_item::after {
    content: "";
    width: 60px;
    height: 60px;
    position: absolute;
    background: url(https://static.picbling.cn/icon.png) -60px -160px no-repeat;
    margin-top: 0px;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.member_list_item:hover::after{
    background: url(https://static.picbling.cn/icon.png) 0px -160px no-repeat;
}
.team_members {
    position: relative;
    width: 100%;
    padding-top: 100px;
}
.content_list::after {
    content: '';
    display: block;
    clear: both;
}
.member_list_item:last-child {
    border: none;
}
.member_list_item .details {
    width: 100%;
    height: 60px;
    display: block;
    line-height: 58px;
    font-size: 20px;
    color: #838383;
    text-indent: 150px;
    border-radius: 30px;
    transition: all ease-out .3s;
}
.member_list_item .details i{
    text-indent: -10px;
    font-size: 24px;
    color: rgba(255, 255, 255, .0);
    transition: all ease-out .3s;
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}

/* modal of memebr pc*/

.modal_mask{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 800;
}
.member_modal{
    max-width: calc(100vw - 40%);
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    margin: auto;
    background: #fff;
    z-index: 801;
    width: 800px;
    bottom: 0px;
    max-height: 400px;
}
.member_avatar {
    width: 280px;
    height: 280px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: top;
}
.member_info {
    display: inline-block;
    vertical-align: top;
    /* width: calc(100% - 280px); */
    padding: 0 0 35px 40px;
}
.member_modal .box_shadow_bottom{
    pointer-events: none;
    position: absolute;
    display: block;
    background: linear-gradient(180deg,rgba(255,255,255,0.00), #ffffff);
    width: 440px;
    height: 50px;
    bottom: 50px;
}
.member_modal_content {
    margin: 50px 40px;
    text-align: left;
    max-height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
    align-items: flex-start !important;
}
.member_modal_content:hover{
    margin: 50px 32px 50px 40px;
}
.member_modal_content::-webkit-scrollbar-track{
    background: rgba(0,0,0,0) !important;
}
.member_name {
    font-size: 23px;
    color: #000;
}

.member_title {
    color: #9b9b9b;
    font-size: 13px;
}
.member_description {
    width: 100%;
    white-space: pre-wrap;
    margin-top: 20px;
    color: #666;
    word-break: break-all;
}
.member_works_item{
    width: 127px;
    height: 85px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 16px;
}
.member_works_item+.member_works_item{
    margin-left: 10px;
}
.member_works_item:nth-child(2){
    background-color: #f5eee4;
}
.member_works_item:nth-child(3){
    background-color: #eff4f6;
}
/*
mobile-team
*/

#teamlist {
    padding: 0 18px;
}
.teamitem{
    width: 100%;
    height: auto;
    padding: 40px 0;
    border-bottom: #e4e4e4 1px dotted;
    max-height: 170px;
}
.teamitem:last-child{
    border:none;
}
.teamitem .teamavatar{
    width: 80px;
    height: 80px;
    border-radius: 40px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: top;
}
.teaminfo{
    padding-left: 20px;
    width: calc(100% - 82px);
    display: inline-block;
    text-align: left;
}
.teaminfo .description{
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
    color: #949494;
    margin-top: 10px;
    height: 37px;
    white-space: pre-wrap;
}
#team_list {
    padding: 0 40px;
}
.member_modal2{
    max-width: calc(100vw - 60px);
    position: fixed;
    left: 0px;
    right: 0px;
    top: 40px;
    margin-left: auto;
    margin-right: auto;
    z-index: 99999999;
    border-radius: 2px;
}
.member_modal_content2{
    width: 100%;
    background: #fff;
    height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x:hidden;
    border-radius: 4px;
}
.member_avatar2 {
    width: calc(100vw - 60px);
    height: calc(100vw - 60px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.member_info2 {
    padding: 40px 20px;
    text-align: left;
}
.member_name2 {
    font-size: 16px;
    font-weight: 600;
    font-family: unset;
    color: #333;
}
.member_title2 {
    color: #bebebe;
}
.member_description2{
    padding: 20px 0px;
    white-space: pre-wrap;
    word-break: break-all;
}
.member-modal-close {
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    right: 0;
    left: 0;
    height: 48px;
    width: 48px;
    background-size: 24px 24px;
    background-image: url(https://static.picbling.cn/close_10086.png);
    background-position: center;
    margin: auto;
    bottom: -64px;
  }
  .member_name2{
    font-size: 16px;
    color: #444;
  }
  .home_template_5 .member_name2{
      color:#fff;
  }
  .member_close_btn {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 14px;
    width: 40px;
    height: 40px;
    padding: 10px;
    cursor: pointer;
}
/* account 弹框*/
.account_modal_wrap {
  width: 100%;
  height: 100%;
  background: rgba(238,238,238,.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.account_modal_wrap .account_modal_wrap_content {
  width: 280px;
  background: #fff;
  z-index: 3;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  text-align: center;
  border-radius: 4px;
}
.account_modal_wrap .account_modal_wrap_header {
  /* display: block;
  color: rgb(37,36,38);
  font-size: 14px;
  margin: 10px auto 0; */

  padding:36px 36px 34px;
  font-size: 0;
  line-height: 20px;
}
.account_modal_wrap .account_modal_wrap_header_icon {
  font-size: 44px;
  color: #70d0cf;
}
.account_modal_wrap_wxcode_indent{
  text-indent: 10px;
  /* padding: 24px 0 14px; */
  line-height: 60px;
}
.account_modal_wrap .account_modal_wrap_header_title {
  color: #212121;
  font-size: 16px;
  margin: 16px 0 8px;
  font-weight: 500;
}
.account_modal_wrap_btn{
  line-height: 47px;
  color: #fff;
  font-size: 14px;
  background-color: #70d0cf;
  width: 100%;
  border-radius: 0 0 4px 4px;
  cursor: pointer;
}
.account_modal_wrap_header_smalltitle{
  color: #999;
  font-size: 12px;
  line-height: 1.8;
}
.account_modal_wrap_wxcode_btn{
  color: #fff;
  font-size: 15px;
  background-color: #70d0cf;
  width: 100%;
  border-radius: 4px 4px 0 0;
  position: relative;
}
.acount_modal_sanjiao{
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 11px solid #70d0cf;
  margin: 0 auto;
  display: block;
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  transform: translateY(100%);
}
.account_modal_wrap_header_wxcode_title{
  color: #aaaaaa;
  font-size: 12px;
  /* padding-top: 15px; */
}
.account_modal_wrap .account_modal_wrap_header_wxcode_img{
  width: 145px;
  height: 145px;
  max-height: none;
}
/* message */
.tip_message {
    position: fixed;
    text-align: center;
    top: 50%;
    pointer-events: none;
    z-index: 99999999;
    background-color: rgba(0,0,0, 0.65);
    font-size: 12px;
    color: white;
    left: 50%;
    border-radius: 5px;
    line-height: 1.6;
    padding: 6px 30px;
    white-space: pre-wrap;
    display:inline-block;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border: 1px solid rgba(255, 255, 255, 0.3)
}

.tip_message.tip_message_fade_out {
    -webkit-animation-name: tip_message_fade_out;
    animation-name: tip_message_fade_out;
    -moz-animation-name: tip_message_fade_out;
    -o-animation-name: tip_message_fade_out;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
}

.tip_message.tip_message_fade_in {
    -webkit-animation-name: tip_message_fade_in;
    animation-name: tip_message_fade_in;
    -moz-animation-name: tip_message_fade_in;
    -o-animation-name: tip_message_fade_in;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
}

@-webkit-keyframes tip_message_fade_in {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
        -webkit-transform: translate(-50%,-50%) scale3d(1.1,1.1,1.1);
        transform: translate(-50%,-50%) scale3d(1.1,1.1,1.1);
    }
    50% {
        opacity: 1;
        -webkit-transform: translate(-50%,-50%) scale3d(1,1,1) ;
        transform: translate(-50%,-50%) scale3d(1,1,1);
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes tip_message_fade_out {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%,-50%) scale3d(1,1,1) ;
        transform: translate(-50%,-50%) scale3d(1,1,1);
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes tip_message_fade_in {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
        -webkit-transform: translate(-50%,-50%) scale3d(1.1,1.1,1.1);
        transform: translate(-50%,-50%) scale3d(1.1,1.1,1.1);
    }
    50% {
        opacity: 1;
        -webkit-transform: translate(-50%,-50%) scale3d(1,1,1);
        transform: translate(-50%,-50%) scale3d(1,1,1);
    }
    100% {
        opacity: 1;
    }
}

@keyframes tip_message_fade_out {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%,-50%) scale3d(1,1,1);
        transform: translate(-50%,-50%) scale3d(1,1,1);
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.developer_tool {
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 0 20px;
}
.developer_tool .template_selector{
    font-size: 1rem;
    padding: 0 2rem;
    height: 2rem;
    color:#000;
}
@media screen and (max-width: 980px) {
    .video_traffic_exceed_block {
        height: 400px;
    }
}
@media screen and (max-width: 600px) {
    .video_traffic_exceed_block {
        height: 300px;
    }
}

@media screen and (max-width:  428px) {
    .video_traffic_exceed_block {
        height: 200px;
    }
}

.video_is_pfop{
    position: relative;
    content: " ";
    width: 100%;
    /* display: flex; */
}
.video_is_pfop>img{
    width: 100%;
    display: block;
}
.video_is_pfop_mask{
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    background-color: rgba(0, 0, 0, .3);
}
.video_is_pfop_mask_text{
    color: rgba(255, 255, 255, .8);
    margin: 20px;
}
.video_is_pfop_mask_refresh{
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
}
.video_is_pfop_mask img{
    width: 26px;
}

@media screen and (max-width: 800px) {
    .template7-eva-title {
        padding: 0 3px;
        margin-bottom: 10px !important;
    }
    .template7-eva-title .template7-eva-sub-title {
        line-height: 18px !important;
        font-size: 12px !important;
        color: #666 !important;
        margin-top: 4px !important;
        margin-left: 0 !important;

    }
    .evaluation .evaluation-list.template_8 {
        padding: 0 15px !important;
    }
    .evaluation .evaluation-list.template_6 {
        padding: 0 10px !important;
    }
    .evaluation .evaluation-list.template_1 {
        padding: 0 20px !important;
    }
    .evaluation .evaluation-list.template_5 {
        padding: 0 20px !important;
    }
    .evaluation .evaluation-list.template_4 {
        padding: 0 5% !important;
    }
}
.series_server_modal{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10000;
}
.series_server_bcg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .3);
    z-index: 2;
}
.series_server_menu{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -200px;
    margin-top: -350px;
    width: 400px;
    height: 700px;
    background: #fff;
    z-index: 3;
}
.series_server_menu .title{
    padding-top:35px;
    padding-bottom: 50px;
    font-size: 15px;
    text-align: center;
}
.series_server_menu .service_modal_content{
    padding:0 45px;
}
.series_server_menu .service_row{
    display: flex;
    justify-content:space-between;
    margin-bottom: 40px;
    font-size: 21px;
    line-height: 21px;
}
.series_server_menu .service_name{
    display: flex;
    align-items: center;
}
.series_server_menu .service_name_icon{
    display: inline-block;
    padding-right: 11px;
    vertical-align: middle;
    width: 32px;
    text-align:center;
}
.series_server_menu .service_name_icon>i{
    font-size:18px;
    color:#78C5B7;
}
.series_server_menu .service_name_icon.letter {
    font-size:13px;
}
.series_server_menu .service_name_text{
    display: inline-block;
    vertical-align: middle;
    color:#666;
    font-size: 14px;
}
.series_server_menu .service_details{
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
}
.series_server_menu .service_details .circle_icon_image{
    width:17px;
    height: 17px;
}
.series_server_modal .service_modal_close{
    text-align: center;
    font-size: 15px;
    line-height: 15px;
    margin: 50px auto;
    color:#78C5B7;
    font-size: 20px;
    cursor: pointer;
}
.work_image_preview .slick-next::before, .work_image_preview .slick-prev::before{
    content: "" ;
}
.work_image_preview .slick-next:hover, .work_image_preview .slick-prev:hover,
.work_image_preview .slick-next:focus, .work_image_preview .slick-prev:focus
{
    background-color: #fff;
}
.work_image_preview_arrow .arrow_icon{
    position: absolute;
    font-size: 18px;
    color: #C6C8C9;
    left: 50%;
    top: 50%;
    margin-left: -9px;
    margin-top: -9px;
    transition: all .2s;
    text-shadow: none;
}
.work_image_preview_arrow .text{
    position: absolute;
    text-align: center;
    margin: 0 auto;
    top: 72%;
    opacity: 0;
    transition: all .2s;
    font-size: 11px;
    color: #666;
    width: 100%;
    text-shadow: none;
    line-height: 1;
}
.work_image_preview_arrow:hover .arrow_icon{
    top: 38%;
    color: #666;
}
.work_image_preview_arrow:hover .text{
    opacity: 1;
    top: 64%;
}

.flexBetween{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex{
    display: flex;
    align-items: center;
}
.flexCenter{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flexAround{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.flexStart{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.flexEnd{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.flex-v{
    display: flex;
    flex-direction: column;
}
.beauty-scroll::-webkit-scrollbar{/*滚动条整体样式*/
    width:0px;
}
.beauty-scroll:hover::-webkit-scrollbar{/*滚动条整体样式*/
    width: 8px;
}
.beauty-scroll::-webkit-scrollbar-thumb{/*滚动条里面小方块*/
    border-radius:8px;
    background:rgba(0,0,0,0.2);
}
.beauty-scroll::-webkit-scrollbar-track{/*滚动条里面轨道*/
    border-radius:8px;
    background: #eee;
    width: 1;
}

.member_details{
    min-height: 100vh;
    position: relative;
    padding-bottom: 92px;
}
.member_details .head_info{
  position: relative;
  width: 100vw;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.member_details .head_info .background{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  filter: blur(10px) brightness(40%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  transform: scale(1.1);
}
.member_details .head_info .avatar{
  width: 80px;
  height: 80px;
  border: 2px solid #aaa;
  border-radius: 50%;
}
.member_details .head_info .name{
  font-size: 16px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  padding: 20px 0 8px;
}
.member_details .head_info .job{
  font-size: 11px;
  font-family: PingFangSC, PingFangSC-Regular;
  text-align: center;
  color: #aaaaaa;
  line-height: 1;
}
.member_details .content{
  position: relative;
  width: 100vw;
  background-color: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  margin-top: -20px;
}
.member_details .description{
  padding: 30px 20px 0;
}
.member_details .description .quote{
  font-size: 20px;
  color: rgba(153, 153, 153, .8);
}
.member_details .description .quote_left{
  text-align: left;
}
.member_details .description .quote_right{
  text-align: right;
}
.member_details .description .dashed{
  border-top: 1px dashed #eee;
  margin-right: 20px;
  width: 80vw;
}
.member_details .description .text{
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  text-align: left;
  color: #888888;
  line-height: 18px;
  padding: 10px 20px;
}
.member_details .bottom_tip{
  position: absolute;
  bottom: 20px;
  width: 100%;
  font-size: 10px;
  font-family: PingFangSC, PingFangSC-Regular;
  text-align: center;
  color: #cccccc;
  line-height: 1;
}
.member_details .works{
  margin-top: 40px;
  padding: 0 20px;
}
.member_details .works .title{
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  text-align: left;
  color: #333333;
  line-height: 12px;
}
.member_details .works .work_list{
  margin-top: 16px;
  display: flex;
  align-items: center;
}
.member_details .work_item{
  width: 108px;
  height: 72px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.member_details .work_item:nth-child(2){
  background-color: #f5eee4;
  margin-left: 6px;
}
.member_details .work_item:nth-child(3){
  background-color: #eff4f6;
  margin-left: 6px;
}
.member_details .works_empty{
  width: 100%;
  height: 72px;
  text-align: center;
  line-height: 72px;
  font-size: 12px;
  color: #aaa;
}
.member_details .works .more_btn{
  width: 152px;
  height: 32px;
  border: 1px solid #cfbb90;
  border-radius: 17px;
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  text-align: center;
  color: #cfbb90;
  line-height: 32px;
  margin: 20px auto 0;
}
.member_filter{
    max-width: 800px;
    margin: 0 auto;
}
.member_filter_list{
    position: relative;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}
.penny_black .member_filter_list{
    color: #999;
}
.member_filter_list>span, .member_filter_operation>span{
    line-height: 49px;
}
.member_filter_operation{
    font-size: 12px;
    color: #aaa;
}
.penny_black .member_filter_operation{
    color: #666;
}
.member_filter_operation .clear{
    cursor: pointer;
}
.member_filter_operation .clear:hover{
    color: #82C8AE;
}
.member_filter_selection{
    opacity: 1;
    position: absolute;
    top: 50px;
    left: -20px;
    z-index: 10;
    white-space: nowrap;
    min-width: 120px;
    max-width: 260px;
    max-height: 190px;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.14);
}
.member_filter_selection::-webkit-scrollbar{
    width: 4px;
}
.member_filter_selection::-webkit-scrollbar-thumb{
    width: 4px;
    background:rgba(0,0,0,0.2);
    border-radius:4px;
}
.member_filter_selection::-webkit-scrollbar-track{
    width: 4px;
    background: #fff;
    border-radius:4px;
}
.member_filter_selection>.option{
    padding: 10px 20px;
    line-height: 1;
    font-family: Verdana, Guanine, sans-serif;
}
.member_filter_selection>.option.active{
    background: #f7f7f7;
}
.member_filter_selection>.option.active>*{
    color: #82C8AE !important;
}
.member_filter_selection>.option:hover{
    background: #f7f7f7;
    /* box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.14);  */
}
.member_filter_selection>.option>.name{
    font-size: 13px;
    font-family: PingFangSC, PingFangSC-Regular;
    color: #666666;
    text-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.14);
}
.member_filter_selection>.option>.job{
    font-size: 11px;
    font-family: PingFangSC, PingFangSC-Regular;
    color: #aaa;
}

.recommend_work_title{
    padding:15px;
    text-align:left;
    font-size:12px;
    position: relative;
}
.recommend_works_list{
    width:100%;
    padding-left: 15px;
    white-space: nowrap;
    overflow-x:scroll;
    padding-bottom: 20px;
    position: relative;
}
.recommend_works_cutting{
    background:#f8f8f8;
    height:10px;
}
.related_member_item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 15px 0;
    margin-left: 15px;
    border-top: 1px solid #eee;
}
.related_member_item_left{
    display: flex;
    align-items: center;
    text-align: left;
}
.related_member_item_left .avatar{
    position: initial;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    border-radius: 50%;
    line-height: 1;
}
.related_member_item_left .name{
    font-size: 12px;
    font-family: PingFangSC, PingFangSC-Regular;
    color: #666666;
    line-height: 12px;
}
.related_member_item_left .job{
    font-size: 10px;
    font-family: PingFangSC, PingFangSC-Regular;
    color: #aaaaaa;
    line-height: 10px;
    margin-top: 5px;
}
.related_member_item_right{
    font-size: 11px;
    font-family: PingFangSC, PingFangSC-Regular;
    text-align: right;
    color: #aaaaaa;
    line-height: 1;
    padding: 10px 5px;
}

.work_list_waterfall{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.work_list_waterfall_list{
    width: calc((100% - 16px) / 3);
}
.waterfall_work_item{
    width: 100%;
    padding-bottom: 20px;
    cursor: pointer;
}
.waterfall_work_item_img{
    display: flex;
    position: relative;
    overflow: hidden;
    align-items: flex-start;
}
.waterfall_work_item_img>img{
    width: 100%;
    transition: all .3s;
}
.waterfall_work_item:hover .waterfall_work_item_img>img{
    transform: scale(1.1);
}
.waterfall_work_item_img .live_tag_wrap{
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(130,200,174,.8);
    color: #fff;
    font-size: 10px;
    padding: 6px;
    border-radius: 0 10px 10px 0;
}
.waterfall_work_item_img .live_tag_wrap span{
    margin-left: 4px;
}
.waterfall_work_item_info{
    margin: 16px 5px 0;
}
.waterfall_work_item_info .title{
    font-size: 14px;
    color: #333;
    line-height: 1;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.waterfall_work_item_info .category{
    background: #f6f6f6;
    border-radius: 2px;
    line-height: 22px;
    text-align: center;
    padding: 0 8px;
    color: #888;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.waterfall_work_item_date{
    color: #bababa;
    line-height: 1;
    margin: 6px 5px 0;
    font-size: 12px;
}
.work_list_waterfall_sml{
    width: 100% !important;
    padding: 0 10px;
}
.work_list_waterfall_list_sml{
    width: calc((100vw - 30px) / 2) !important;
}
.waterfall_work_item .cover_url_copy{
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 40px);
    margin-top: 20px;
    margin-left: 20px;
    z-index: 9;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    border: 1px solid #fff;
    left: 0;
    top: 0;
    opacity: 0;
}
.waterfall_work_item:hover .cover_url_copy{
    opacity: .8;
}
.waterfall_work_item .cover_url_copy .work_add{
    background: rgba(0,0,0,.7);
    color: rgba(255, 255, 255, 1);
    position: absolute;
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    left: -20px;
    top: -23px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.waterfall_work_item:hover .cover_url_copy .work_add{
    opacity:1;
    top: 23px;
}

.work_list_container{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 101vh;
}
.work_pwd_modal{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
}
.work_pwd_modal .modal_mask{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(30px);
    z-index: -1;
}
.work_pwd_content{
    width: 80vw;
    max-width: 400px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 50px;
    border-radius: 4px;
    background-color: #fff;
}
.work_pwd_content>img{
    width: 50%;
}
.work_pwd_content>.title{
    font-weight: 500;
    font-weight: bold;
    padding-top: 30px;
    font-size: 14px;
}
.work_pwd_content > .pwd_input{
    position: relative;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 10px 10px 36px;
    font-size: 12px;
    color: #333;
    margin-top: 20px;
    width: 100%;
}
.work_pwd_content > .pwd_input > i{
    font-size: 14px;
    position: absolute;
    left: 12px;
    top: 0;
    line-height: 40px;
    color: #666;
}
.work_pwd_content > .pwd_input > input{
    width: 100%;
    border: none;
    outline: none;
}
.work_pwd_content > .confirm_btn{
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: #70d0cf;
    border-radius: 20px;
    margin-top: 20px;
    cursor: pointer;
}
.about_stories{
    padding-top: 100px;
}
.about_title{
    font-size: 17px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: 500;
    text-align: center;
    color: #666666;
    line-height: 17px;
}
.about_sub_title{
    margin-top: 8px;
    font-size: 13px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: center;
    color: #bebebe;
    line-height: 13px;
}
.story_item{
    margin-top: 30px;
    width: 260px;
    background-color: #FBF9F5;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all .3s;
}
.story_item:hover{
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.16);;
}
.story_item .cover {
  width: 100%;
  height: 110px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.story_item .title {
  padding: 16px 15px 0;
  font-size: 14px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  text-align: left;
  color: #333333;
  line-height: 20px;
  background-color: #fff;
  word-break: break-all;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.story_item .nickname {
  padding: 8px 15px 20px;
  font-size: 11px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  text-align: left;
  color: #aaaaaa;
  line-height: 11px;
  background-color: #fff;
}
.story_item:hover .title, .story_item:hover .nickname{
    background-color: #fafafa;
}
.story_item.empty .title{
    background-color: #FBF9F5;
    color: #FBF9F5;
}
.story_item.empty .nickname{
    background-color: #FBF9F5;
    color: #FBF9F5;
}
.about_stories .story_item{
    width: calc((100% - 20px) / 3);
}
.about_stories .story_item .cover{
    padding-bottom: 42.5%;
}
.about_btn_more{
    margin: 40px auto 0;
    width: 260px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    font-size: 13px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: center;
    color: #666666;
    line-height: 44px;
    cursor: pointer;
    transition: all .2s;
}
.about_btn_more:hover{
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);;
}
.isBlack .about_title{
    color: #fff;
}
.isBlack .about_btn_more:hover{
    box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.2);
}
.isBlack .about_sub_title{
    color: #fff;
    opacity: .3;
}
.isBlack .story_item{
    background-color: #292E31;
}
.isBlack .story_item .title{
    color: #fff;
    background: #353a3d;
}
.isBlack .story_item .nickname{
    color: rgba(255, 255, 255, .3);
    background: #353a3d;
}
.isBlack .about_btn_more{
    background: transparent;
    color: #82C8AE;
    border-color: rgba(255, 255, 255, .14);
}

.page_stories{
    max-width: 810px;
    margin: 62px auto 0;
}
.stories_list{
    margin-top: 40px;
}
.stories_list .story_item{
    display: inline-block;
    margin: 0 5px 10px;
}
.page_stories_empty{
    font-size: 13px;
    color: #aaa;
    text-align: center;
    margin-top: 50px;
}

.isSml .stories_list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px;
    margin-top: 30px;
}
.isSml .story_item{
    width: 100%;
    margin: 0 0 10px;
}
.isSml .story_item .cover{
    width: 100%;
    height: calc((100vw - 20px) * 0.423);
}
.isSml .story_item .title{
    text-overflow: initial;
    white-space: initial;
}
.template7_about_sitecontent .page_stories.isSml{
    margin: 0;
}
.template2_right_content_wrap .page_stories.isSml{
    margin-top: 82px;
}
.header_temp3+.page_stories.isSml{
    margin-top: 30px;
}

.sml-search-button {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    position: fixed;
    bottom: 120px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.sml-search-button i {
    font-size: 22px;
    color: #ffffff;
}


/*文本换行*/
.textWrapping {
    white-space: normal;
    word-break: break-all;
}

.blackSeriesDetail .seriesPriceRow .depositPrice {
    color: #FFFFFF;
}

.blackSeriesDetail .otherInfo .otherInfoTitle {
    color: #ccc;
}

.blackSeriesDetail .otherInfo .otherInfoDetail {
    color: rgba(255, 255, 255, 0.6);
}

.blackSeriesDetail .series_timer_div {
    background: #666 !important;
    border: 1px solid #333 !important;

}

.blackSeriesDetail .series_timer_div span {
    color: #FFFFFF !important;
}


.network_files {
    margin-left: 50%;
    color: rgba(255, 255, 255, .5);
    display: block;
    margin-top: 20px;
}

.network_files.isBlack {
    color: rgba(255, 255, 255, .3);
}




