* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    vertical-align: baseline;
    list-style: none;
}
html, body {
    font-family:'HelveticaNeue','Helvetica','Noto Sans SC', sans-serif;
    font-size: var(--fontSzie);
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    color: var(--color);
    background:white;
    width:100%;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important;
}
body.home{
    color: white;
}
body.home a{
    color: white;
}
input,textarea{
    font-family:'HelveticaNeue','Helvetica','Noto Sans SC', sans-serif;
}
:root{
    --size: 1920px;
    --color: #000;
    --color2:rgba(0,0,0,0.03);
    --fontSzie:calc(16*100vw/var(--size));
    --bigger:3vw;
    --font:'geometos_roundedregular','HelveticaNeue','Helvetica','Noto Sans SC', sans-serif;
    --line: var(--color2) solid 1px;
    --space:2rem;
    --space2:calc(var(--space)/2);
    --space3:calc(var(--space)*2);
    --s25:25%;
    --s50:50%;
    --s75:75%;
    --s100:100%;
    --header: 100px;
    --cubic:cubic-bezier(.17,.67,0,.99);
}

.line{
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    top:0;
    z-index: 99;
    pointer-events: none;
}
.home .line em,
.show-menu .line em{
    background-color:rgba(255,255,255,0.1);
}
.line em{
    position: absolute;
    top:0;
    bottom: 0;
    width: 1px;
    display: block;
    background-color: var(--color2);
}
.line em:first-child{
    left: var(--s25);
}
.line em:nth-child(2){
    left: var(--s50);
}
.line em:nth-child(3){
    left: var(--s75);
}

a{
    color: var(--color);
    text-decoration: none;
}
.text{
    line-height: 1.7;
}
.text p{
    padding-bottom: .7rem;
}
.text p:last-child{
    padding-bottom: 0;
}
h1,h2{
    font-family: var(--font);
    letter-spacing: 0.1rem;
}

.wrap{
    display: flex;
    flex-wrap: wrap;

}
.w-b{
    justify-content: space-between;
}
.w-c{
    align-items: center;
}

.home-loading{
    background-color: black;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
}
.home-loading .loading-logo{
    position: absolute;
    z-index: 20;
    top:40%;
    left: 0;
    width: 100%;
    transform: translate(0,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    filter: contrast(5%);
}
.home-loading .loading-logo.go{
    filter: contrast(100%);
    z-index: 21;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition:   clip-path 1s linear;
}
.home-loading  img{
    width: calc(100%/8*6);
    height: auto;
}
.loading-text{
    color: white;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 10vh;
    font-weight: 600;
    animation: oo .5s linear infinite;
}
@keyframes oo {
    from{
        opacity: 1;
    }to{
    opacity: 0;
         }
}

.l1,.l2{
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 99999999999;
    pointer-events: none;

}
.l1{
    background-color: black;
    top:0;
    height:0;
}
.l2{
    background-color:#888;
    bottom: 0;
    height: 0;
}


.ready .l1{
    height: 100%;
}

.ready .l1{
    animation: out 0.5s linear;
    animation-fill-mode:forwards;
    animation-iteration-count:1;
    animation-delay:1s;
}

.ready .l2{
    animation: in 1s linear;
    animation-fill-mode:forwards;
    animation-iteration-count:1;
    animation-delay:1s;
}
.go .l3{
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 99999999999;
    pointer-events: none;
    background-color: black;
    bottom:0;
    animation: in2 .5s linear;
    animation-fill-mode:forwards;
    animation-iteration-count:1;
}

@keyframes out {
    from{
        height: 100%;
    }to{
         height: 0;
     }
}
@keyframes in2 {
    from{
        height: 0;
    }to{
         height: 100%;
     }
}
@keyframes in {
    0%{
        height: 0;

    }50%{
         height: 100%;

     }100%{
          height: 0;
          top: 0;
          bottom: auto;
      }
}

.delighter{
    transition: transform 3s cubic-bezier(.18,1,.21,1),opacity 2.5s cubic-bezier(.18,1,.21,1);
    transform: translateY(150px);
    opacity: 0;
}
.delighter.started {
    transform: translateY(0);
    opacity: 1;
}

.site-header{
    position: fixed;
    width: 100%;
    height: var(--header);
    z-index: 98;
    top:0;
    left: 0;
    transition: top .5s linear;
    border-bottom: var(--line);
}
.show-search .site-header:hover,
.show-search .site-header{
    top:50px !important;
}
.show-menu .-is-scroll-up .site-header,
.show-menu .site-header,
.home .site-header{
    background-color: transparent;
    backdrop-filter: unset;
}
.show-menu .-is-scroll-down .site-header{
    top:0;
}
.-is-scroll-up.op .site-header,
.-is-scroll-down .site-header ,
.fp-viewing-thirdPage .site-header,
.fp-viewing-secondPage .site-header,
.fp-viewing-fourPage .site-header,
.fp-viewing-fivePage .site-header
{
   top:calc(var(--header)*-1);
}
.-is-scroll-up .site-header{
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
}
.show-menu .-is-scroll-up.op .site-header,
.site-header:hover{
    top:0 !important;
}
.header-space{
    height: var(--header);
}
.header-left{
    width: var(--s25);
    display: flex;
    align-items: center;
}


.open-menu{
    height: var(--header);
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding:var(--space);
}

.back{
    width: 2.2rem;
    height: 1.8rem;
    border: #000 solid 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
}
.back:hover{
    background-color: black;
    color: white;
}

.open-menu>div {
    width: 2rem;
    height: 1.5rem;
    position: relative;
}
.home  .open-menu em,
.show.open-menu em{
    background-color: white;
}
.open-menu em {
    width: 100%;
    height: 2px;
    background: black;
    position: absolute;
    top: calc(50% - 1px);
    transition: all .3s linear;
}
.open-menu em:first-child {
    top: 0;
}
.open-menu em:last-child {
    top: calc(100% - 2px);
}
.show-menu .open-menu em:last-child, .show-menu .open-menu em:first-child {
    opacity: 1;
    transform: rotate(
            45deg
    );
    top: 0.75rem;
}
.show-menu .open-menu em {
    opacity: 0;
}
.show-menu .open-menu em:last-child {
    transform: rotate(
            -45deg
    );
}
.header-title{
    text-align: center;
}
.header-tool{
    display: flex;
    align-items: center;
    justify-content:flex-end;
    width: var(--s25);
    padding:0 var(--space2);
}

.open-search{
    font-size: 2rem;
    padding:var(--space2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--header);
    cursor: pointer;
    pointer-events: auto;
}

.show-search .-is-scroll-up .search-form,
.show-search .search-form{
    top: 0;
}
.-is-scroll-down .search-form{
    top:-50px;
}
#content{
    transition: transform .5s linear;
}
.show-search #content{
   transform: translateY(50px);
}
.search-form{
    position: fixed;
    top:-50px;
    left: 0;
    height: 50px;
    transition: top .5s linear;
    overflow: hidden;
    width:100%;
    background-color:rgba(0,0,0,0.1);
    z-index: 111;
    backdrop-filter: blur(20px);
}
.home .search-form{
    background-color: rgba(0,0,0,1);
}
.home .search-form input{
    color: #fff;
}
.search-form input{
    height: 50px;
    border: none;
    width: 100%;
    background-color: transparent;
    font-size: 1.25rem;
    padding: 1rem var(--space);
}

.lng .active{
    display: none;
}
.lng li{
    font-size: 1.25rem;
    padding:var(--space2);
    line-height: 1;
    font-weight: 700;
    height: var(--header);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    pointer-events: auto;
}
.home .lng li,
.home .open-search,
.home .open-menu,
.home .site-header{
    border-color:rgba(255,255,255,0);
}
.show-menu .lng li,
.show-menu .open-search,
.show-menu .open-menu,
.show-menu .site-header{
    border-color:rgba(255,255,255,0.1);
}

.home .main-menu .step{
    opacity: 0;
}
.home .main-menu .step.show{
    opacity: 1;
}
.show{
    color: white;
    transition: all .5s linear;
}
.show a{
    transition: all .5s linear;
    color: white;
}
.logo.show{
    filter: invert(100%);
}
.logo{
    width: 100%;
}
.logo img{
    width: 100%;
    height: auto;
}

.main-menu{
    position: fixed;
    width: 100%;
    height: 100%;
    left: -100%;
    top:0;
    background-color:#888;
    transition: left 1s var(--cubic);
    z-index: 90;
}
.show-menu .main-menu{
    left: 0;
}
.main-menu:before{
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top:0;
    left: 0;
    content: '';
    clip-path: polygon(0 0, 30% 0, 0 100%, 0% 100%);
    z-index: 1;
    transition: clip-path 2s var(--cubic);
}
.show-menu .main-menu:before{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.main-menu>.wrap{
    margin-top: var(--header);
    height:calc(100% - var(--header));
    position: relative;
    z-index: 2;
    opacity: 0;
}
.main-menu.show-it>.wrap{
    opacity: 1;
}
.main-menu-contact{
    width: var(--s25);
    font-weight: 600;
}
.main-menu-contact>div{
    padding: var(--space);
}
.main-menu-contact .wrap{
    flex-direction: column;
    height: 100%;
}
.main-menu-content{
    height: 100%;
    width:  var(--s75);
    display: flex;
    justify-content:space-between;
    flex-direction: column;
}
.main-menu-nav{
    padding: var(--space);
    font-family: var(--font);
}


.main-menu-nav li{
    padding:var(--space2) 0;
}
.cn .main-menu-nav li{
    padding:0;
}
.menu-item-has-children{
    display: flex;
    justify-content: space-between;
    position: relative;
}

.menu-item-has-children>a{
   position: relative;
    padding-right: 4rem;
}
.menu-item-has-children>a:before{
    width: 2.5rem;
    height: 5px;
    background-color: white;
    content: '';
    position: absolute;
    right: 0;
    top:50%;
    transform: translateY(-50%);
}
.menu-item-has-children>a:after{
    width: 5px;
    height: 2.5rem;
    background-color: white;
    content: '';
    position: absolute;
    top: 50%;
    right:calc(2.5rem /2 );
    transform: translate(50%,-50%);
    transition: height .3s linear;
}
.main-menu-nav>ul>li:hover.has-child-item>a:after{
    height: 0;
}

.main-menu-nav>ul>li a{
    font-size: 3.2vw;
    text-transform: uppercase;
}
.cn .main-menu-nav>ul>li a{
    font-weight: 900;
    font-size: 3.8vw;
}
.main-menu-nav li.op{
    opacity: 0.3;
    transition: opacity .3s linear;
}
.main-menu-nav li.active{
    opacity: 1;
}

.main-menu-nav>ul>li>ul{
    position: absolute;
    top: 50%;
    left: 50vw;
    opacity: 0;
    transform: translateX(-100px) translateY(-50%);
    transition:opacity .5s  var(--cubic),transform 1s var(--cubic);

}
.main-menu-nav>ul>li>ul>li a{
    font-size: 1.5rem;
}
.cn .main-menu-nav>ul>li>ul{
    left: 25vw;
    right: auto;
}
.cn .main-menu-nav>ul>li>ul>li a{
    font-size: 2.5rem;
}
.main-menu-nav>ul>li:hover{
    z-index: 111;
}
.main-menu-nav>ul>li:hover ul{
    opacity: 1;
    transform: translateX(0)  translateY(-50%);
    transition:opacity 2s  var(--cubic),transform 1s var(--cubic);
}
.h-copyright{
    padding: var(--space);
    font-size: 12px;
    opacity: .5;
}
.space{
    height: var(--space3);
}
.social{
    padding-top: var(--space);
}
.social a{
    font-size: 1rem;
    display: inline-block;
    padding-right: .5rem;
}

.section{
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: black;
    overflow: hidden;
}
.step-1,.step-2,.step-3{
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s linear,transform 2s var(--cubic);
}
.swiper-slide .section-more,
.section-more.step-4{
    opacity: 0;
    transform:translate(-50%,0) scale(0) ;
}
.ani-slide.swiper-slide .section-more,
.active .section-more.step-4{
    opacity: 1;
    transform:translate(-50%,0) scale(1) ;
    transition: opacity 0.5s linear,transform 2s var(--cubic);
    transition-delay: 1s;
}
.active .step-1,.active .step-2,.active .step-3{
    opacity:1;
    transform: translateY(0px);
}
.active .step-2{
    transition-delay: 0.3s;
}
.active .step-3{
    transition-delay: 0.5s;
}
@keyframes stepp {
    0%{
        opacity: 0;
        transform: translateY(100px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.ani-slide.swiper-slide .swiper-slide-content{
    animation:pp 2.5s var(--cubic) 1 forwards;
}
@keyframes pp {
    from{
        clip-path: polygon(0 0, 30% 0, 0 100%, 0% 100%);
    }to{
             clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
         }
}
.section-bg img,
.section-bg video,
.slider-img img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.ani-slide .slider-img img{
    animation:ss 2s var(--cubic) 1 forwards;
}
@keyframes ss {
    from{
       transform: scale(1.4);
    }to{
       transform: scale(1);
     }
}
.section-swiper .swiper-pagination{
    left: var(--space3);
    bottom: 6rem;
    width: auto;
    display: flex;
    align-items: flex-end;
    height: 30px;
}
.section-swiper.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet{
    margin:0 .15rem;
    width: 2px;
    height: 15px;
    display: inline-block;
    background-color: white;
    border-radius: unset;
    opacity: 0.5;
    transition: all .3s linear;
}
.section-swiper.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
    opacity: 1;
    height: 30px;
}
.slider-text{
    position: absolute;
    z-index: 1;
    left: var(--space);
    bottom: var(--space);
    padding: var(--space);
}
.slider-text a:hover{
    opacity: 1;
}
.copyright{
    position: absolute;
    bottom: var(--space3);
    right:var(--space3);
    z-index: 10;
    font-size: 14px;
    opacity: 0.5;
}
.scroll-down{
    position: absolute;
    bottom: var(--space3);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down em{
    position: absolute;
    bottom: 0px;
    right: -5px;
    width: 9px;
    height: 35px;
    background: url(img/helper-arrow.png) no-repeat center bottom;
}
.section-logo{
    position: absolute;
    z-index: 20;
    top:40%;
    left: 0;
    width: 100%;
    transform: translate(0,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.section-logo img{
    width: calc(100%/8*6);
    height: auto;
}

.section-content{
    position: absolute;
    z-index: 1;
    left:0;
    bottom: 0;
    top:0;
    padding: var(--space3);
    width: var(--s25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.section-content h1{
    font-size: var(--bigger);
}
.cn .section-content h1{
    line-height: 1.1;
}
.slider-text,.section-content .text{
    font-size: 15px;
    font-weight: 600;
    opacity: 0.5;
}
.section-title{
    position: absolute;
    z-index: 20;
    top:50%;
    left: 0;
    width: 100%;
    transform: translate(0,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-title h1{
    width: 50%;
    font-size: 4vw;
    text-transform: uppercase;
    padding: var(--space);
}
.cn .section-title h1{
    text-align: center;
    font-size: 6vw;
    line-height: 1.2;
}


.section-more{
    position: absolute;
    z-index: 20;
    left: 75%;
    bottom: 20vh;
    transform: translate(-50%,0);
}
.cn .section-more a{
    font-weight: 700;
    font-size: 14px;
}
.section-more a{
    width: 6rem;
    height: 6rem;
    border: solid 1px rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;

    position: relative;
    overflow: hidden;
}
.section-more a:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;
    transform: scale(0);
    transition: transform 1s var(--cubic);
}
.section-more label{
    position: relative;
    z-index: 1;
    opacity: 0.5;
}
.section-more a:hover:before{
    transform: scale(1);
}
.section-more a:hover{
    color: black;
}
.section-more a:hover label{
    opacity: 1;
}
.section-box{
    width: var(--s50);
    height: 100vh;
    position: relative;
    display: block;
}
.section-box .section-content{
    width: 100%;
}
.page-wrap{
    display: flex;
    margin-top:var(--header);
    align-items: flex-start;
    border-bottom: var(--line);
}

.page-header{
    border-bottom: var(--line);
    padding: var(--space3) 0;
    margin-top:var(--header);
}
.page-header-title{
    width: 80%;
    margin: 0 auto;
}
.page-wrap .inside.page-header{
    width: var(--s50);
    border-bottom:none;
    padding:0;
    margin-top:0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - var(--header));
    transition: height .5s linear;
}
.page-wrap .inside.page-header.is--sticky{
    height: 100vh;
}
.page-wrap .inside .page-header-title{
    width: 100%;
}
.inside .page-header-title{
    width: 50%;
}
.inside .page-header-title .wrap>*{
    max-width: var(--s50);
}
.page-header h1{
    padding: var(--space);
    font-size: 8vw;
    text-transform: uppercase;
    line-height: 0.8;
}
.page-header.inside h1{
    font-size:var(--bigger);
    line-height: 1.1;
    margin-top: -.5rem;
}
.page-header.inside h1 small{
    font-size: 0.5em;
    display: block;
}

.page-header h2{
    font-size: var(--bigger);
    padding: var(--space) var(--space) 0 var(--space);
    color: #ccc;
}
.page-header h2 a{
    color: #ccc;
}
.inside.page-header h2{
    font-size: 1rem;
}

.page-header .text{
    margin-left: 50%;
    padding: var(--space) var(--space) 0 var(--space);
    font-weight: 600;
}
.inside.page-header .info{
    margin-left: 0;
    width: 100%;
    padding: var(--space);
    line-height: 1.5;
    font-weight: 600;
}

.cn .cn-title{
    color: black;
    font-weight: 900;
}



.tx{
    width: 50%;
    line-height: 0;
    padding: var(--space);
}
.tx img{
    width: 100%;
    height: auto;
}
.bio{
    font-weight: 600;
}

.is-video{
    position: relative;
    cursor: pointer;
}
.is-video:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-20px,-50%);
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 50px solid white;
}
.is-video:after{
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%,-50%);
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    width: 150px;
    height: 150px;
}


.post-info{
    padding: var(--space);
    width: var(--s50);
    margin: 0 auto;
}
.post-info img{
    width: 100%;
    height: auto;
}
.post-info-all img{
  width: 100%;
    height: auto;
}

.post-right{
    width: var(--s50);
}
.post-right .post-info{
    width: 100%;
}
.post-cover{
    width: 100%;
    line-height: 0;
    padding: var(--space);
}
.post-cover img{
    width: 100%;
    height: calc(100vh - var(--header) - var(--space3));
    object-fit: cover;
}

.slabtexted .slabtext
{
    display: -moz-inline-box;
    display: inline-block;
    white-space: nowrap;
}
.slabtextinactive .slabtext
{
    display: inline;
    white-space: normal;
    font-size: 1em !important;
    letter-spacing: inherit !important;
    word-spacing: inherit !important;
}
.slabtextdone .slabtext
{
    display: block;

}
.video-plane{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: white;
}
.video-plane.show-is{
    display: flex;
}

.my-video{
    position: relative;
    z-index: 55;
}

.close-video{
    position: absolute;
    width: 3rem;
    height: 3rem;
    right: var(--space2);
    top:var(--space2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 56;
}
.close-video-plane{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top:0;
}
.t-grid.x-grid{
    border-top: var(--line);
}
.grid .wrap{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(2,23vw);
    counter-reset: item;
}
.box{
    border-bottom: var(--line);
    counter-increment: item;
}
.x-grid .box{
    width: var(--s25);
}
.t-grid.x-grid .box{
    width: var(--s50);
}
.post-type-archive-art_creation .box:nth-child(3),
.box.big-box{
    grid-column-end: span 2;
    grid-row-end: span 2;
}
.box.bigger-box{
    grid-column-end: span 4;
    grid-row-end: span 2;
}

.box a{
    display: block;
    position: relative;
    height: 100%;
    padding: var(--space);
}
.box .box-img{
    line-height: 0;
    height: calc(100% - 3rem);
}
.t-grid.x-grid .box .box-img{
    padding-top: 56%;
}
.x-grid .box .box-img{
    position: relative;
    height: auto;
    padding-top: 100%;
}
.box .box-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.x-grid .box .box-img img{
    position: absolute;
    top:0;
    left: 0;
}
.box h3{
    padding:.5rem 0;
    font-size: 1rem;
    width: 100%;
    background: #fff;
}
.x-grid .box h3{
    position: relative;
    padding: .5rem 0 0 0;
}


.g-box{
    width: var(--s25);
    padding: var(--space);
    border-bottom: var(--line);
}
.g-box.big-box{
    width: var(--s50);
}
.g-box a{
    display: block;
}
.g-box-img {
    line-height: 0;
}

.g-box-img img{
    width: 100%;
    height: auto;
}
.g-box-info{
    padding-top: .5rem;
}
.g-box-info h3{
    font-size: 1rem;
}
.g-box-info .text{
    padding-top: .5rem;
    font-size: 14px;
}

.plane-box{
    width: var(--s50);
}
.plane-img{
    height: 100%;
    line-height: 0;
}
.plane-bg img,
.plane-img img{
    width: 100%;
    height: 100%;
    max-height: 100vh;
    object-fit: cover;
}
.plane-text{
    border-bottom: var(--line);
}
.plane-text.wrap{
    flex-wrap: nowrap;
}
.plane-text.wrap h2{
    padding: var(--space);
    width: 300px;
}
.plane-text.wrap .text{
    width: 100%;
    padding: var(--space) 10vw var(--space) var(--space);
    font-weight: 600;
}
.one-wrap{
    flex-wrap: nowrap;
}
.one-wrap .plane-box{
    width: var(--s25);
}
.plane-space{
    height: var(--space3);
    border-bottom: var(--line);
}
.plane-box.full-height{
    position: relative;
    height: 100vh;
}
.plane-bg{
    position: absolute;
    width: 100vw;
    height: 100%;
    top:0;
    left: 0;
}
.plane-text.card{
    height:100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    background-color: white;
}
.plane-text .card-info{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space);
    width: 100%;
}
.plane-text .wechat{
    width: 180px;
    padding: var(--space);
    text-align: center;
}
.plane-text .wechat img{
    width: 100%;
    height: auto;

}

.plane-text .card-info .text{
    font-weight: 600;
}
small{
    font-weight: 600;
    opacity: 0.5;
}
.plane-title{
    position: relative;
    z-index: 1;
    background-color:#f8f8f8;
    padding: var(--space);
    border-bottom: var(--line);

}
.plane-g{
    display: flex;
    height: 100%;
    flex-direction: column;
}
.plane-g .wrap{
    height: 100%;
}
.plane-g .plane-box{
    height: 50%;
}

.page-tool{
    border-bottom: var(--line);
    padding: var(--space) 0;
}
.by-name ul{
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}
.by-name ul li a{
    color: #cccccc;
    font-weight: 600;
}
.by-name ul li a:hover{
    color: black;
}
.post-title{
    padding: var(--space);
    border-bottom: var(--line);
}
.post-title h2{
    font-size: 1rem;
}
.more-post{
    border-top: var(--line);
    border-bottom: var(--line);
}
.more-post a{
    width: var(--s25);
    display: flex;
}
.more-post a.next{
    justify-content: flex-end;
    text-align: right;
}
.go-yes{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space);
    border-right: var(--line);
    font-size: 1.5rem;
}
.more-post a.next .go-yes{
    border-left: var(--line);
    border-right: none;
}
.more-post a:hover .go-yes{
    background-color: black;
    color: white;
}
.nav-box{
    display: flex;
    align-items: center;
    padding: var(--space);
}
.more-post a.next .nav-box{
    flex-direction: row-reverse;
}
.nav-box-img{
    margin-right: 1rem;
    width: 50px;
    height: 50px;
}
.more-post a.next .nav-box .nav-box-img{
    margin-left: 1rem;
    margin-right: 0;
}
.nav-box-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-box h3{
    font-size: 1rem;
}

.open-share{
    color: #ccc;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    padding-bottom: 5rem;
    pointer-events: none;
    position: absolute;
}
.share{
    display: flex;
    width: var(--s50);
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;

}
.share ul{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.share ul li{
    font-size: 1.4rem;
    padding: 0 .75rem;
}

#footer{
    border-top: var(--line);
    padding-top: var(--space);
}
#footer .logo{
    width: var(--s50);
    padding: var(--space);
    margin: 0 auto;

}
#footer .wrap{
    padding: var(--space);
    font-weight: 600;
    font-size: 14px;
}
.post-download{
    padding-top: 2rem;
}
.post-download a{
    display: block;
    padding: .5rem 0;
    font-weight: 700;
    text-decoration: underline;
}