*{
    margin:0;
    padding:0;
}
img{ 
    border:0;
    vertical-align:top;
}
ul,li,ol,ul {
    list-style:none;
}
body{
    --path-fill-1: url(#gradient1);
    --path-fill-2: url(#gradient2);
    --path-fill-3: url(#gradient3);
}
body{
    background-color: #fafafa;
}
/*::selection {
    background:#fff; 
    color:#000;
}

::-moz-selection {
    background:#fff; 
    color:#000;
}

::-webkit-selection {
    background:#fff; 
    color:#000;
}*/

/*浏览器滚动条*/
::-webkit-scrollbar{width:12px;height:12px}
::-webkit-scrollbar-button:vertical{display:none}
::-webkit-scrollbar-track:vertical{background-color:black}
::-webkit-scrollbar-track-piece{background:#f5f5f7}
::-webkit-scrollbar-thumb:vertical{background-color:#555555;border-radius:0px}
::-webkit-scrollbar-thumb:vertical:hover{background-color:#3B3B3B}
::-webkit-scrollbar-corner:vertical{background-color:#535353}
::-webkit-scrollbar-resizer:vertical{background-color:#FF6E00}

@font-face {
    font-family: Akzidenz;
    src: url('../font/Akzidenz.otf'); /* IE9+ */
}
@font-face {
    font-family: Stencil;
    src: url('../font/Stencil.woff'); /* IE9+ */
}

@font-face {
    font-family: Oswald;
    src: url('../font/Oswald.woff'); /* IE9+ */
}
@font-face {
    font-family: SourceSansPro;
    src: url('../font/SourceSansPro.woff'); /* IE9+ */
}
@font-face {
    font-family: ExtraBoldItalic;
    src: url('../font/ExtraBoldItalic.woff'); /* IE9+ */
}
@font-face {
    font-family: MINISerifBold;
    src: url('../font/MINISerifBold.ttf'); /* IE9+ */
}

.loading{
    width: 100%;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    z-index: 99;
}
.loading span{
    font-size: 25vw;
    position: absolute;
    left: 2.875rem;
    top: 50%;
    margin-top: -18vw;
    color: black;
    font-family: "微软雅黑",arial;/*
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);*/
}
.overflow-hidden{
    overflow:hidden;
}

/* 头部CSS 开始*/
#header{
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 999999;
    display: block;
    background: #fafafa;
}
@media (min-width: 767px) {
    #header {
        -webkit-backdrop-filter: saturate(200%) blur(30px);
        backdrop-filter: saturate(200%) blur(30px);
        background: rgb(250 250 250 / 80%);
    }
}
#loading{
    width: 0%;
    height: 3px;
    background: #bba466;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
}

#header .logo{
    position: fixed;
    top: 1.875rem; 
    left: 5vw;
    z-index: 9998;
    cursor: pointer;
    /*mix-blend-mode: difference;*/
}
#header .logo:after{
    content: "";
    width: 0%;
    border-bottom: solid 1px #000;
    position: absolute;
    top: 1.3em;
    left: 0;    
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}
#header .logo:hover:after{
    content: "";
    width: 100%;
}
.nav{
    position: fixed;
    top: 2.2rem;
    right: 5vw;
    z-index: 100;
}
.nav ul{
    width: 390px;
    display: flex;
    justify-content: space-between;
}
.nav ul li{
    padding-bottom: 6px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    /*-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);*/
}

.nav ul li a{
    font-size: 0.9rem;
    color: #050102;
    text-decoration: none;
    font-family: Akzidenz;
    padding-bottom: 6px;
}
.nav ul li:after{
    content: "";
    width: 0%;
    border-bottom: solid 1px #000;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}
.nav ul li:hover:after {
    content: "";
    width: 100%;
}

.nav ul .nav-active:after{
    content: "";
    width: 100%;
    border-bottom: solid 1px #000;
    position: absolute;
    bottom: 0em;
    left: 0;
}
.nav ul .nav-active:hover:after{
    content: "";
    animation: nav_active 0.5s linear forwards;
}
@keyframes nav_active {
    0% {
        left: 0%;
    }
    50%{
        left: 100%;
    }
    52%{
        bottom: -0.2em;
    }
    52%{
        bottom: 0;
        left: 0%;
        width: 0%;
    }
    100%{
        width: 100%;
    }
}

/* mobile-nav*/
.nav-trigger{
    display: none;
    position: fixed;
    top: 35px;
    right: 45px;
    cursor: pointer;
    z-index: 1111;
    padding: 10px;
    margin-right: -10px;
}
/*.nav-trigger.active{
    right:3.875rem;
}*/
.nav-trigger div{
    width: 24px;
    height: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0;
    display: block;
    background: #000000;
    transition: all .25s ease-in-out;
}
.nav-trigger.active .nav-a{
    -webkit-transform: rotate(45deg) translate(4px,3px);
    -ms-transform: rotate(45deg) translate(4px,3px);
    transform: rotate(45deg) translate(4px,3px);
}
.nav-trigger.active .nav-b{
    -webkit-transform: rotate(-45deg) translate(0px,0px);
    -ms-transform: rotate(-45deg) translate(0px,0px);
    transform: rotate(-45deg) translate(2px,-2px);
}
/*.nav-trigger.active .nav-c{
    -webkit-transform: rotate(-45deg) translate(0px,0px);
    -ms-transform: rotate(-45deg) translate(0px,0px);
    transform: rotate(-45deg) translate(0px,0px);
    opacity: 0;
}*/

.mobile-nav{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    overflow: hidden;
    /*background-color: rgb(255, 255, 255);*/
    /*display: none;*/
}
.mobile-nav .nav-menu{
    width: 90%;
    /*overflow: hidden;*/
    margin: 7rem auto 0;
    line-height: 16vw;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}
.mobile-nav .nav-link{
    width: 90%;
    overflow: hidden;
    margin: 1.2rem auto 0;
    line-height: 9vw;
}
.mobile-nav ul li{
    text-align: right;
}
.mobile-nav .nav-menu li a{
    font-size: 12vw;
    font-family: Stencil;
    font-weight: 600;
    text-align: right;
    color: #292926;
    text-decoration: none;
}
.mobile-nav .nav-link li a{
    font-size: 4.5vw;
    font-family: "微软雅黑",arial;
    text-align: right;
    color: #ae995a;
    text-decoration: none;
}

/* 头部CSS 结束 */
/*#wrong-device.show{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#wrong-device {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    height: 100vh;
    width: 100vw;
    z-index: 9999999999;
    background: #ffffff;
    text-align: center;
}
#wrong-device .dot {
    position: static;
}
@media screen and (max-width: 1200px)
.dot {
    width: 60px;
    min-height: 60px;
}
.dot {
    width: 5vw;
    min-height: 5vw;
    height: 80px;
    position: fixed;
    top: 40%;
    left: 0;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dot .dot-inner {
    background-color: #ff0000;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    -webkit-transform: scale(0.25);
    transform: scale(0.25);
}
#wrong-device h3 {
    font-size: 17px;
    max-width: 70%;
    color: #000000;
    line-height: 25px;
    font-weight: normal;
}*/
/*弹出层 开始*/
.MediaModal::-webkit-scrollbar{
    display: none;
}
.MediaModal{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*width: 100%;*/
    height: 100vh;
    overflow: hidden;
    background-color: rgb(250, 250, 250);
    /*overflow-y: scroll;*/
    z-index: 9999;
    -webkit-overflow-scrolling: touch;
    /*overflow-y: auto !important;*/
}
.MediaModal-load{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -15px;
    z-index: 111111;
    opacity: 0.5;
}
#wrapper2{
    display: flex;
    flex-direction:column;
    flex-wrap:wrap; 
    align-items: center;
    height: 100%;
    flex-basis: 50%;
}
.MediaImage{
    max-width: 960px;
    margin: 90px auto 0;
    /*display: flex;*/
    flex-direction:column;
    flex-wrap:wrap; 
    align-items: center;
    padding: 0 150px;
}
.MediaItem{
    margin: 0 24px 10px 24px;
    /*cursor: -webkit-zoom-out;*/
    /*cursor: zoom-out;*/
    background: #e8e8e8;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    /*background-image: url(../images/global/22.gif);
    background-position: 50% 50%;
    background-size: 32px 32px;
    background-repeat: no-repeat;*/
}
.MediaImage video{
    width: 100%;
}
video{
    pointer-events: none;
}
.MediaImage img{
    width: 100%;
}
.MediaImage a.upload:after{
    content: "View Full Image";
    padding: 10px 12px;
    position: absolute;
    top: -38px;
    left: 50%;
    margin-left: -56px;
    color: #fff;
    background: #333;
    border-radius: 3px;
    white-space: nowrap;
    font-size: 12px;
    font-family: arial;
    font-style: normal;
    opacity: 0;
    pointer-events: none;
}
.MediaImage a.upload:before{
    content: "";
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    opacity: 0;
    pointer-events: none;
}
.MediaItem a:hover:after,.MediaItem a:hover:before{
    opacity: 1;
} 

.MediaImage a.upload{
    display: inline-block;
    position: absolute;
    left: 10px;
    top: 10px;
    background: rgba(0,0,0,0.5);
    border-radius: 4px;
    line-height: 1;
    padding: 6px;
    opacity: 0;
    cursor: -webkit-zoom-in;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.MediaItem:hover a{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.media-content .cropped-indicator svg {
    display: -ms-flexbox;
    display: flex;
}
.icon-24 {
    width: 24px;
    height: 24px;
}
.text-white {
    color: #fff;
}
.fill-current {
    fill: currentColor;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
/*-----------------------------pc-----------------------------*/
.single figure{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single .MediaModal{
    padding: 0 5vw;
}
.single .MediaImage{
    max-width: 1200px;
    /* max-width: 960px; */
    /*display: flex;*/
    cursor: grabbing;
    flex-direction:column;
    flex-wrap:wrap; 
    align-items: center;
    padding: 18vh 0 0 0;
    margin: 0;
}
.single .MediaItem{
    margin: 0 0 10px 0;
}
.single .MediaItem:last-child{
    margin: 0;
}

.text-contact{
    font-weight: 400;
    color: rgb(59, 59, 59);
    font-family: "微软雅黑",arial;
    font-style: normal;
    line-height: 1.5;
    padding: 84px 0 52px;
}
.text-contact a,.text-nav .prevPost{
    color: rgb(59, 59, 59);
    border-bottom: 1px solid rgba(154, 154, 154, 0.56);
    text-decoration: none;
}
.pc-nav .text-nav{
    display: block;
    text-align: right;
    padding-bottom: 84px;
}
.pc-nav .text-nav .prevPost{
    color: rgb(59, 59, 59);
    cursor: pointer;
}
/*----------------------------NoLoad------------------------------*/

#scroller2{
    width: 100%;
}
.MediaItem{
    height: 0;
}
.MediaImage img,.MediaImage video{
    position: absolute;
    top: 0;
}


/*------------------------slideshow------------------------*/
#slideshow {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#slideshow .nav {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}
#slideshow .nav a {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 50%;
    cursor: url(../images/global/cursor2.png) 0 16, auto;
}
#slideshow .nav a.n {
    left: 50%;
    right: 0;
    cursor: url(../images/global/cursor.png) 63 16,auto;
}
/*------------------------/slideshow------------------------*/




.infor.pc,.pc-nav{
    display: block;
}
.infor.mobile,.media-nav{
    display: none;
}
.infor.pc{
    max-width: 380px;
    min-width: 215px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: left;
    margin: 0;
    z-index: 1;
    padding-right: 15vw;
    margin-left: -5vw;
    padding-left: 5vw;
    flex-basis: 30%;
}
.infor.pc .filter{
    padding-bottom: 10px;
}
.infor.pc h2{
    font-weight: normal;
    font-family: "微软雅黑",arial;
    font-size: 52px;
    color: #292926;
    line-height: 1.1em;
    word-wrap: break-word;
    padding-bottom: 80px;
    /*padding-bottom: 1.5em;*/
    /*margin-bottom: 1.5em;*/
}
.infor.pc h2 title{
    display: inline-block;
    /*line-height: 1.4em;*/
    font-family: Akzidenz,MINISerifBold;
    letter-spacing: 1px;
}
.infor.pc p.time{
    margin: 0;
}

.infor.pc p{
    font-family: arial,"微软雅黑";
    font-size: 15px;
    color: #292926;
    word-break: break-all;
    font-size: 14px;
    line-height: 1.8em;
    text-transform: none;
    text-decoration: none;
    font-weight: 300;
    font-style: normal;
    margin: 0 0 0.8em;
    text-align: justify;
}
.infor.pc .visit a{
    font-family: arial,"微软雅黑";
    color: #292926;
    display: inline-block;
    text-decoration: underline;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}
.infor.pc .visit a:hover{
    color: #292926;
}
/*.pc-nav{
    position: absolute;
    bottom: 3.875rem;
    line-height: 12px;
}*/
.pc-nav .modalClose{
    position: absolute;
    top: -3px;
    left: 50%;
    margin: 0 0 0 -16px;
    height: 30px;
    vertical-align: middle;
    width: 30px;
    z-index: 9;
    display: inline-block;
    color: rgba(128, 128, 128, 0.7);
    cursor: pointer;
    text-decoration: none;
}
.pc-nav .modalClose div{
    position: relative;
    content: "Joe's Task:";
    top: 8px;
    left: 8px;
    height: 14px;
    width: 14px;
}
.pc-nav .modalClose div i{
    background: rgba(128, 128, 128, 0.7);
    display: block;
    text-indent: 99px;
    overflow: hidden;
    position: absolute;
    height: 6px;
    width: 6px;
}
.pc-nav .modalClose div i:nth-child(1){
    top: 0;
    left: 0;
}
.pc-nav .modalClose div i:nth-child(2){
    top: 0;
    right: 0;
}
.pc-nav .modalClose div i:nth-child(3){
    bottom: 0;
    left: 0;
}
.pc-nav .modalClose div i:nth-child(4){
    bottom: 0;
    right: 0;
}
/*.projectNav{
    position: fixed;
    left: 3.875rem;
    font-family: Akzidenz;
    font-size: 14px;
    font-variant: small-caps;
    margin-top: -30px;
}*/
/*.pc-nav span{
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}*/
/*.pc-nav samp,.pc-nav span{
    display: inline-block;
    margin: 0 5px;
    height: 14px;
    color: rgba(128, 128, 128, 0.7);
    cursor: pointer;
    text-decoration: none;
    padding: 5px 17px 5px 0;
}
.pc-nav samp:hover,.pc-nav span:hover{
    color: #000;
}*/
.pc-nav .modalClose:hover div i{
    background: #000;
}

@media (max-width: 930px){
    .single .MediaModal{
        padding: 0 3.875rem;
    }
    .infor.pc{
        left: 3.875rem;
        padding-right: 5vw;
    }
    /*.pc-nav .modalClose{
        left: 3.875rem;
    }*/
    /*.projectNav{
        right: 3.875rem;
    }*/
}

/*-----------------------------/pc-----------------------------*/
.infor.mobile{
    max-width: 592px;
    margin: 35px auto 90px;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: left;
}
.infor.mobile h2{
    font-weight: normal;
    font-family: "微软雅黑",arial;
    font-size: 15px;
    color: #292926;
    line-height: 30px;
    word-wrap: break-word;
    padding: 0px 45px;
    margin: 1em 0px 1.2em;
}
.infor.mobile h2 title{
    display: inline-block;
    margin-right: 0.6rem;
}

.infor h2 font{
    color: #ae995a;
}
.text{
    margin-bottom: 2em;
}
.infor.mobile .visit{
    padding: 0 45px;
    margin-bottom: 2em;
}
.infor.mobile .visit a{
    font-family: "微软雅黑",arial;
    font-size: 15px;
    color: #292926;
    display: inline-block;
    text-decoration: underline;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}
.infor .visit a:hover{
    color: #9e9e9e;
}

.infor.mobile p{
    font-family: "微软雅黑",arial;
    font-size: 15px;
    color: #292926;
    word-break: break-all;
    padding: 0px 45px;
    line-height: 1.6em;
}
.media-nav{
    position: fixed;
    width: 100%;
    height: 62px;
    background: #ffffff;
    top: 0;
    left: 0;
}
.media-nav.class-width{
    width: 0;
}
.media-nav .modalClose{
    position: fixed;
    top: 1.875rem;
    right: 1.875rem;
    width: 32px;
    height: 32px;
    cursor: pointer;
    /*opacity: 0.6;*/
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}
.media-nav .modalClose:hover{
    /*opacity: 1;*/
    transform:rotate(-90deg);
}
.modalClose img{
    width: 100%;
}
.media-nav .nextPost,.media-nav .prevPost{
    position: fixed;
    top: 50%;
    width: 32px;
    height: 32px;
    margin-top: -12px;
    cursor: pointer;
    /*opacity: 0.6;*/
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    z-index: 111111111!important;
}
.nextPost .imgtd{
    left: 58px;
}
.prevPost .imgtd{
    right: 58px;
}
.imgtd{
    display: none;
    width: 250px;
    height: 176px;
    position: absolute;
    top: 50%;
    margin-top: -88px;
}
.imgtd:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: black;
    opacity: 0.4;
}
.imgtd img{
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
.nextPost:hover,.prevPost:hover{
    /*opacity: 1;*/
}
.nextPost img,.prevPost img{
    width: 100%;
}
.btnActive{
    /*opacity: 0.2;*/
    pointer-events: none;
}
.media-nav .btnActive{

}

.events{
    pointer-events: none;
}
.itemActive{
    margin-top:2000rem; 
}
.media-nav .nextPost{
    left: 1.875rem;
}
.media-nav .prevPost{
    right: 1.875rem;
}
/*弹出层 结束*/


/* 伸缩容器 */
.container{
    padding: 12.5rem 5vw 80px; 
}
.work p.itemImg{
    display: none;
    font-size: 2.5em;
    color: #050102;
    font-family: Akzidenz;
    line-height: 42px;
    flex-basis: 75%;
    text-align: left;
    margin-bottom: 5rem;
    text-align: justify;
}
.work p.itemImg a{
    color: #ae995a;
    text-decoration: none;
    border-bottom: 1px solid rgb(174, 153, 90);
}


.wrap-box{
    width: 0;
    height: 0;
    overflow: hidden;
}
.work .wrap{    
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    /*flex-direction:row; 居左(默认)*/
    /*flex-direction:row-reverse; 居右*/
    /*flex-direction:column; 从上往下排列(默认)*/
    /*flex-direction:column-reverse; 从下往上排列*/
    flex-wrap:wrap; /*自动换行*/
    /*flex-wrap:wrap-reverse; 自动换行从下往上*/
    /*justify-content:space-between; 把空出来的间距平均分配（不包括第一个和最后一个）*/
    /*justify-content:space-around; 把空出来的间距平均分配 （包括第一个和最后一个）*/
    justify-content: space-between;
    flex-basis: 100%;
}
.wrap{  
    text-align: center;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    /*flex-direction:row; 居左(默认)*/
    /*flex-direction:row-reverse; 居右*/
    /*flex-direction:column; 从上往下排列(默认)*/
    /*flex-direction:column-reverse; 从下往上排列*/
    flex-wrap:wrap; /*自动换行*/
    /*flex-wrap:wrap-reverse; 自动换行从下往上*/
    /*justify-content:space-between; 把空出来的间距平均分配（不包括第一个和最后一个）*/
    /*justify-content:space-around; 把空出来的间距平均分配 （包括第一个和最后一个）*/
    align-items:stretch;
}
/*.wrap .item-vague{
    filter: url(blur.svg#blur); 
    
    -webkit-filter: blur(10px); 
       -moz-filter: blur(10px);
        -ms-filter: blur(10px);    
            filter: blur(10px);
    
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=10, MakeShadow=false); 
}*/

/*Filter*/
.filter{
    width: 100%;
    padding-bottom: 40px;
    display: inline-block;
    color: #050102;
    position: relative;
    z-index: 99;
}
.filter p{
    float: left;
}
.filter .filter-line{
    float: left;
    padding: 0 1em 2em 1em;
}
.filter-btn{
}
.filter-btn li{
    display: inline-block;
    white-space: pre;
    padding-bottom: 0.4em;
    margin-right: 18px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.filter-btn li.active:after{
    content: "";
    width: 100%;
}

.filter-btn li:after{
    content: "";
    width: 0%;
    border-bottom: solid 1px #000;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}
.filter-btn li:hover:after {
    content: "";
    width: 100%;
}

.filter-btn li.active:after{
    content: "";
    width: 100%;
    border-bottom: solid 1px #000;
    position: absolute;
    bottom: 0em;
    left: 0;
}
.filter-btn li.active:hover:after{
    content: "";
    animation: filter_nav 0.5s linear forwards;
}
@keyframes filter_nav {
    0% {
        left: 0%;
    }
    50%{
        left: 100%;
    }
    52%{
        bottom: -0.2em;
    }
    52%{
        bottom: 0;
        left: 0%;
        width: 0%;
    }
    100%{
        width: 100%;
    }
}

.filter-btn a{
    color: #444;
    font-size: 0.9em;
    font-family: Akzidenz;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}

/*切换浏览方式*/
.btn-dropdown{
    position: absolute;
    top: 0;
    right: 0;
}
.btn-dropdown a{
    color: #606060;
    font-size: 13px;
    display: flex;
    align-items: center;
    line-height: 15px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}
.btn-dropdown a:hover{
    color: #444444;
}
.btn-dropdown svg.shot-toggle path {
    fill: #BDBDBD !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}
.btn-dropdown a:hover svg.shot-toggle path{
    fill: #444444 !important;
}
.btn-dropdown.active svg.shot-toggle path{
    fill: #444444 !important;
}
.btn-dropdown.active a{
    color: #444;
}

.shot-toggle{
    padding-right: 5px;
}

.btn-dropdown-options{
    position: absolute;
    top: 27px;
    right: 0;
    display: none;
}
.btn-dropdown-options.active{
    display: block;
}
.large-small{
    position: absolute;
    top: 0;
    right: 0;
    border: solid 1px #e2e2e2;
    padding: 8px 4px;
    display: flex;
    background: #fff;
}
.large-small li p{
    display: none;
}

.large-small li svg{
    stroke: #c4c4c4;
    padding: 0 4px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}

.large-small li:hover svg {
    stroke: #444;
}
.dropdown-arrow{
    position: absolute;
    top: -3px;
    right: 9px;
    z-index: 1;
}

/*------------------------------------------------------------*/
.matrix{
    display: none;
}
.work .wrap .item .img-box .img-a{
    height: 0;
    padding-bottom: 70.5%;
    overflow: hidden;
    position: relative;
}
/*overlay-bg*/
.overlay-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}
.p-overlay{
    position: relative;
    width: 100%;
    height: 100%;
}
.p-overlay h1{
    width: 75%;
    font-size: 1vw;
    color: #fff;
    font-weight: normal;
    font-family: Akzidenz;
    text-align: left;
    position: absolute;
    top: 3.5vw;
    left: 3vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out .2s;
    -moz-transition: all 0.5s ease-in-out .2s;
    transition: all 0.5s ease-in-out .2s;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}
.p-overlay h2{
    width: 75%;
    font-size: 0.7vw;
    color: #fff;
    line-height: 4vw;
    font-weight: normal;
    font-family: Akzidenz;
    text-align: left;
    position: absolute;
    top: 3vw;
    left: 3vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-ou;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}

.wrap .item section img{
    width: 100%;
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
    opacity: 0;
}

.load-win{
    opacity: 0.5;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -15px;
    z-index: 111111;
}
.load-page-css{
    display: none;
    padding-bottom: 25px;
    opacity: 0.5;
}
.load-page{
    position: absolute;
    left: 50%;
    margin-left: -15px;
}
.load{
    width: 24px;
    height: 30px;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
0% {
    transform:rotate(0deg);
 }
 100% {
    transform:rotate(-360deg);
 }
}

.present{
    padding: 1.2rem 0 0.6rem;
}

.present{
    text-align: left;
    line-height: 52px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.present,.present a{
    width: auto;
    font-size: 12px;
    color: rgb(175, 175, 175);
    font-family: "微软雅黑",arial;
    text-decoration: none;
    font-weight: normal;
}
.present a{
    cursor: pointer;
    line-height: 22px;
    display: block;
}
.heading{
    display: block;
    color: black;
    margin-right: 10px;
    position: relative;
    font-size: 14px;
}
.present time {
    color: #a8a8a8;
    display: none;
}

/*progress*/
.progress {
    background: rgb(41,41,38);
}
.progress{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    -webkit-animation: a 1s infinite ease;
    animation: a 1s infinite ease;
    -webkit-transform: translate(0);
    transform: translate(0);
    margin-top: -.75rem;
    margin-left: -.75rem;
}

@-webkit-keyframes a {
    0%,to {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

@keyframes a {
    0%,to {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

/* 数据加载 */
.more{
    cursor: pointer;
    width: 80%;
    max-width: 22rem;
    padding: 1.5rem;
    color: #fff;
    font-size: .6875rem;
    letter-spacing: .0625rem;
    text-transform: uppercase;
    font-family: "微软雅黑",arial;
    margin: 0 auto;
    background: #000;
    text-align: center;
    border: none;
    display: block;
    opacity: 0;
}


/* 查看原图 */
.-imgsview- {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0;
    background: rgb(0 0 0 / 95%);
    z-index: 999999;
    box-sizing: border-box;
    overflow: hidden;
}
.-imgsview- button{
    cursor: pointer;
}
button {outline:none;}
button:focus {outline:none;} /*IE、Chrome*/
button::-moz-focus_inner {border-color:transparent;} /*Firefox*/

.-imgsview- .-close {
    position: absolute;
    z-index: 2;
    opacity: .5;
    width: 44px;
    height: 44px;
    right: 10px;
    top: 10px;
    background: rgba(160,160,160,.5);
    border: 0;
    border-radius: 50%;
    transition: .3s ease;
}
.-imgsview- .-close:hover{
    opacity: .9;
}
.-imgsview- .-close:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 21px;
    left: 14px;
    width: 18px;
    height: 3px;
    background: #fff;
    border-radius: 1.5px;
    transform: rotate(-45deg);
}
.-imgsview- .-close:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 21px;
    left: 14px;
    width: 18px;
    height: 3px;
    background: #fff;
    border-radius: 1.5px;
    transform: rotate(45deg);
}
.-imgsview- .-prev.-show {
    left: 10px;
    transform: rotate(0);
}
.-imgsview- .-prev {
    position: absolute;
    z-index: 1;
    opacity: .5;
    width: 60px;
    height: 60px;
    top: 50%;
    left: -100px;
    margin-top: -30px;
    background: rgba(160,160,160,.5);
    border: 0;
    border-radius: 50%;
    transform: rotate(-120deg);
    transition: .5s ease;
}
.-imgsview- .-prev:hover{
    opacity: .9;
}
.-imgsview- .-prev:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 23px;
    left: 19px;
    width: 18px;
    height: 5px;
    background: #fff;
    border-radius: 2.5px;
    transform: rotate(-45deg);
}
.-imgsview- .-prev:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 32px;
    left: 19px;
    width: 18px;
    height: 5px;
    background: #fff;
    border-radius: 2.5px;
    transform: rotate(45deg);
}

.-imgsview- .-next.-show {
    right: 10px;
    transform: rotate(0);
}
.-imgsview- .-next {
    position: absolute;
    z-index: 1;
    opacity: .5;
    width: 60px;
    height: 60px;
    top: 50%;
    right: -100px;
    margin-top: -30px;
    background: rgba(160,160,160,.5);
    border: 0;
    border-radius: 50%;
    transform: rotate(120deg);
    transition: .5s ease;
}
.-imgsview- .-next:hover{
    opacity: .9;
}
.-imgsview- .-next:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 23px;
    right: 18px;
    width: 18px;
    height: 5px;
    background: #fff;
    border-radius: 2.5px;
    transform: rotate(45deg);
}
.-imgsview- .-next:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 32px;
    right: 18px;
    width: 18px;
    height: 5px;
    background: #fff;
    border-radius: 2.5px;
    transform: rotate(-45deg);
}

.-imgsview- .-page {
    position: absolute;
    z-index: 2;
    bottom: 22px;
    left: 22px;
    color: #fff;
    font-size: 12px;
}

.-imgsview- .-pbox.-zoom {
    position: static;
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: zoom-in;
    display: flex;
    justify-content: center;
    align-items: center;
}
.-imgsview- .-pbox {
    position: relative;
    width: auto;
    height: auto;
    margin: 0;
    cursor: move;
    display: flex;
    justify-content: center;
    align-items: center;
}
.-imgsview- .-pbox.-zoom img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}



/* footer css 开始*/
#footer{
    position: fixed;
    bottom: 1.875rem;
    left: 5vw;
    z-index: 9999;
}
#footer p{
    font-size: 0.7rem;
    color: #afafaf;
    font-family: "微软雅黑",arial;
}
/* footer css 结束*/

/* 媒体选择器CSS*/
@media(max-width: 1582px){
    .wrap{
        max-width: 1152px;  
    }
}
@media(max-width: 1256px){
    .wrap{
        max-width: 864px;   
    }
}
@media(max-width: 930px){
    .infor.mobile{
        left: 3.875rem;
    }
    .container{
        padding: 10.2rem 3.875rem 80px;
    }
    .wrap{
        max-width: 576px;   
        margin: 0 auto;
    }
    /*.wrap .item{
        margin-bottom: 0;
    }*/
    #header .logo,.loading span{
        left: 3.875rem;
    }
    .nav{
        right: 3.875rem;
    }
    #footer{
        left: 3.875rem;
    }
}
@media(min-width: 767px){
    .mobile-nav{
        display: none;
    }
}
@media(max-width: 767px){

    #header{
        z-index: 9999;
        position: inherit;
        background: #ffffff00;
    }

    .MediaImage a.upload{
        display: none;
    }
    
    /*切换浏览方式*/
    .btn-dropdown-options,.btn-dropdown{
        display: none;
    }
    .message.container{
        padding: 0px 5% 80px;
    }
    .container{
        padding: 0px 0% 80px;
    }
    .work p.itemImg{
        margin-bottom: 2rem;
        font-size: 2.2em;
        flex-basis: 100%;
        line-height: 40px;
        padding: 0 5%;
        text-align: left;
    }
    .filter-btn{
        padding: 0 5%;
    }
    .filter{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    /* mobile-nav*/
    .nav-trigger{
        display: block;
        right: 5%;
    }

    /* mobile-nav 结束*/
    
    .wrap .item{
        margin-bottom: 1.75rem;
        flex-basis: 100%;
    }
    .present {
        line-height: initial;
        padding: 0% 5%;
        padding-bottom: 15px;
    }
    .present a {
        color: black;
        font-size: 13px;
        padding: 15px 0 12px;
        display: inline-block;
    }
    .heading:after{
        content: "—";
        color: black;
        font-size: 13px;
        position: absolute;
        top: 50%;
        right: -19px;
        margin-top: -10px;
    }
    
    .heading{
        display: inline;
        margin-right: 24px;
        position: relative;
        font-size: 13px;
    }
    .present time {
        display: block;
    }

    .MediaImage{
        width: 100%;
        max-width: 6400px;
        flex-wrap: nowrap;
        align-items: normal;
        margin: 62px auto 0;
        padding: 0;
    }
    .MediaItem{
        margin: 0 0 10px 0;
    }
    .infor.pc,.pc-nav{
        display: none;
    }
    .infor.mobile,.media-nav{
        display: block
    }
    
    .infor.mobile{
        max-width: 5920px; 
        margin: 15px auto 60px;
    }
    .infor.mobile h2,.infor.mobile .visit a,.infor.mobile p{
        font-size: 13px;
    }

    .infor.mobile h2,.infor.mobile .visit,.infor.mobile p{
        padding: 0px 20px;
    }
    .infor.mobile h2{
        margin: 1em 0px 0.5em;
    }
    .infor .visit,.infor.mobile .text{
        margin-bottom: 1.2em;
    }
    .media-nav .modalClose{
        width: 25px;
        height: 32px;
        top: 0rem;
        right: 0rem;
        position: fixed;
        padding: 1rem;
        opacity: 1;
        transform:rotate(-90deg);
    }
    .media-nav .nextPost{
        left: 0rem;
    }
    .media-nav .prevPost{
        left: 4.3rem;
    }
    .media-nav .nextPost,.media-nav .prevPost{
        width: 25px;
        height: 32px;
        margin: 0;
        position: fixed;
        top: 0rem;
        opacity: 1;
        padding: 1rem;
    }
    .media-nav .btnActive{
        opacity: 0.2;
    }
    /*弹出层 结束*/
    
    
    #header .logo,.loading span{
        left: 5%;
    }
    #header .logo,.nav-trigger{
        top: 25px;
    }
    .nav{
        display: none;
        right: 5%;
    }
    #footer{
        left: 5%;
        z-index: 1;
    }
    .row:after{
        margin: 42px 0;
    }

    /*blog*/
    .col-left,.col-right{
        width: 100%;
    }
    .col-right{
        padding-left: 0;
    }
}
@media(max-width: 415px){

    .work.container{
        padding: 0px 0% 80px;
    }
    .wrap{
        background: #f9f7f5;
    }
    .wrap .item{
        margin: 0 auto 0.55rem;
    }
    .wrap .item{
        background: #fff;
    }
    .wrap .item:last-child{
        margin: 0 auto 0;
    }
    .filter-btn{
        padding: 0 5%;
    }
    .present {
        line-height: initial;
        padding: 0% 5%;
        padding-bottom: 15px;
    }
    .present a {
        font-size: 13px;
        padding: 15px 0 12px;
        display: inline-block;
    }
    .present time {
        display: block;
    }
    .infor .time{
        color: #a8a8a8;
    }
    .work p.itemImg{
        flex-basis: 100%;
        line-height: 40px;
        padding: 0 5%;
        font-size: 2em;
        text-align: left;
    }
    
    /* work 开始*/
    .wrap .item{
        flex-basis: 100%;
        /*margin-bottom: 1.75rem;*/
    }
    .wrap .item .img-box{
        padding: 0;
    }
    /* work 结束*/
    #header .logo svg{
        width: 38px;
    }
    #header .logo,.loading span{
        left: 5%;
    }
    #header .logo,.nav-trigger{
        top: 25px;
    }
    .mobile-nav .nav-menu{
        width: 90%;
    }
    .mobile-nav .nav-link{
        width: 90%;
    }
    .nav-trigger.active{
        right: 5%;
    }
    .nav-trigger{
        right: 5%;
    }

    #footer{
        left: 5%;
    }

    /*information*/
    .info-box{
        padding: 0;
    }

}

/* Color schemes */
.global-menu__item {
    color: var(--color-menu);
    font-family: var(--font-family-menu);
    font-size: var(--font-size-menu);
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    display: block;
    margin: 0.25em 0;
    transition: transform 0.3s, opacity 0.3s;
    transition-timing-function: ease-in;
}


.global-menu__item--demo-6 {
    transform: translateY(100%);
}

.global-menu__item:hover {
    color: var(--color-menu-hover);
}

.global-menu__item.is-opened {
    opacity: 1;
    transform: translateY(0) rotate(0);
    pointer-events: auto;
    transition-timing-function: ease;
}

.global-menu__item:nth-of-type(1) {
    transition-delay: 0s;
}

.global-menu__item.is-opened:nth-of-type(1) {
    transition-delay: 0.85s;
}

.global-menu__item:nth-of-type(2) {
    transition-delay: 0.05s;
}

.global-menu__item.is-opened:nth-of-type(2) {
    transition-delay: 0.8s;
}

.global-menu__item:nth-of-type(3) {
    transition-delay: 0.1s;
}

.global-menu__item.is-opened:nth-of-type(3) {
    transition-delay: 0.75s;
}

.global-menu__item:nth-of-type(4) {
    transition-delay: 0.15s;
}

.global-menu__item.is-opened:nth-of-type(4) {
    transition-delay: 0.7s;
}
/* demo 6 */
.global-menu__item--demo-6.is-opened {
    transition-duration: 0.8s;
}

.global-menu__item--demo-6:nth-of-type(1) {
    transition-delay: 0.25s;
}

.global-menu__item--demo-6.is-opened:nth-of-type(1) {
    transition-delay: 1s;
}

.global-menu__item--demo-6:nth-of-type(2) {
    transition-delay: 0.2s;
}

.global-menu__item--demo-6.is-opened:nth-of-type(2) {
    transition-delay: 1.1s;
}

.global-menu__item--demo-6:nth-of-type(3) {
    transition-delay: 0.15s;
}

.global-menu__item--demo-6.is-opened:nth-of-type(3) {
    transition-delay: 1.2s;
}

.global-menu__item--demo-6:nth-of-type(4) {
    transition-delay: 0.1s;
}

.global-menu__item--demo-6.is-opened:nth-of-type(4) {
    transition-delay: 1.3s;
}
.global-menu__item--demo-6:nth-of-type(5) {
    transition-delay: 0.1s;
}

.global-menu__item--demo-6.is-opened:nth-of-type(5) {
    transition-delay: 1.3s;
}

.shape-overlays {
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.shape-overlays.is-opened {
    pointer-events: auto;
}

.shape-overlays__path:nth-of-type(1) {
    fill: var(--path-fill-1);
}

.shape-overlays__path:nth-of-type(2) {
    fill: var(--path-fill-2);
}

.shape-overlays__path:nth-of-type(3) {
    fill: var(--path-fill-3);
}

.shape-overlays__path:nth-of-type(4) {
    fill: var(--path-fill-4);
}

@-webkit-keyframes intervalHamburgerBorder {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    80% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
    }
}

@keyframes intervalHamburgerBorder {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    80% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
    }
}

