* {
    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 !important;
    vertical-align: baseline;
    list-style: none;
}
html, body {
    font-family:var(--font);
    font-size: var(--textSize);
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    color: var(--color);
    background: var(--bg);
    width:100%;
    -webkit-font-smoothing: antialiased;

}

:root{
    --font:'untitled', 'HelveticaNeue','Helvetica','abCFont','Noto Sans SC', sans-serif;
    --font2:'BeausiteText', 'HelveticaNeue','Helvetica','Noto Sans SC', sans-serif;
    --font3:'GT_Extended', 'HelveticaNeue', 'Helvetica', 'Noto Sans SC', sans-serif;
    --color:#000;
    --bg:#fff;
    --hui:#aaa;
    --textSize: clamp(14px,0.95vw,24px);
    --space:2rem;
    --space2:calc(var(--space)/2);
    --space3:calc(var(--space)*2);
    --space4:calc(var(--space)/4);

    --h:3rem;
    --line_op:0.15;
    --line_color:rgba(0,0,0,var(--line_op));

    --small_text:12px;
    --textSize_s :clamp(14px,0.8rem,16px);
    --textSize_m:1.2rem;
    --textSize_m2:1.5rem;
    --textSize_m3:2rem;
    --textSize_b:2.5rem;
    --textSize_h:3rem;
    --cover_h : 80vh;
    --size:90%;

}
.is-dark:root{
    --color:#aaa;
    --bg:#555;
    --line_color:rgba(255,255,255,0.2);
}
.size{
    width: var(--size);
    margin: 0 auto;
}
a{
    color: var(--color);
    text-decoration: none;
}
.hide{
    display: none;
}

input{
    font-family: var(--font);
}
[lang="zh-Hans"] .text{
    text-align: justify;
}
.text{
    line-height: 1.5;
}
.text h2,
.text p{
    padding-bottom: 1rem;
}
.text p:last-child{
    padding-bottom: 0;
}
.text img{
    max-width: 100%;
    height: auto;
    width: auto;
}
.text a{
    text-decoration: underline;
}
.text h2{
    font-weight: 400;
}
h1,h2{
    font-family: var(--font2);
    font-weight: 400;
}
h3{
    font-family: var(--font3);
    font-weight: 400;
}

.btn{
    display: inline-flex;
    border: currentColor solid 1px;
    padding: .5rem 1rem;
    font-family: var(--font3);
    border-radius: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    font-size: var(--textSize_s);
    align-items: center;
}
.btn.s{
    font-size: var(--small_text);
    padding: .25rem .5rem;
}
.btn>*{
    display: block;
    padding:0 .5rem;
}
.btn.active,
.btn.b,
.btn:hover{
    background-color: black;
    color: white;
}

#header{
    position: fixed;
    width: 100%;
    top:0;
    left: 0;
    z-index: 999;
    font-family: var(--font2);
    border-bottom: var(--line_color) solid 1px;
    backdrop-filter: blur(20px);
    background-color: var(--bg);


}
.home #header{
    backdrop-filter: blur(20px);
    background-color: transparent;
}
.home #header.top{
    background-color: var(--bg);
    color: #000 !important;
    --color: #000 !important;
    --line_op: 0.1  !important;
    --line_color:rgba(0,0,0,var(--line_op))  !important;
}

.cover-dark .cover-swiper-tool,
.cover-dark #header{
    color: #fff;
    --color: #fff;
    --line_op: 0.2;
    --line_color:rgba(255,255,255,var(--line_op));
}
.header-wrap{
    display: flex;
    justify-content: space-between;
    padding:0 var(--space2);
    height: var(--h);
    align-items: center;
}
.search-form{
    background: var(--line_color);
    display: none;
}
.show-search .search-form{
    display: block;
}
.search-form-wrap{
    padding:var(--space2) var(--space);
    position: relative;
}
.search-form-wrap input{
    border: none;
    background-color: transparent;
    width: 100%;
    text-align: center;
    font-size: var(--textSize_m);

}
.search-form-wrap .close-search{
    position: absolute;
    right: var(--space);
    z-index: 2;
    top:50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: var(--textSize_m);
    line-height: 0;
}

.logo{
    padding:0 var(--space2);
    text-transform: uppercase;
    line-height: 1;
    font-family: var(--font2);
}
.header-left,.header-right,.header-menu>ul,.header-tool{
    display: flex;
    align-items: center;
}
.header-tool{
    padding:0 var(--space2);
}
.header-menu>ul>li{
    position: relative;
}
.header-menu>ul>li>a{
    display: flex;
    height: var(--h);
    padding:0 var(--space2);
    align-items: center;
    background-image: linear-gradient(var(--color), var(--color));
    background-position: center bottom;
    background-repeat: no-repeat;
    transition: background-size .3s cubic-bezier(0.55,.085,.68,.53);
    text-decoration: none;
    background-size: 0 2px;
    line-height: 1;
}
.header-menu>ul>li>a:hover{
    background-size: 100% 2px;
}
.header-menu>ul>li.menu-item-has-children>a:after {
    content: "\f078";
    padding-left: .2rem;
    font-family: "Font Awesome 6 Pro";
    font-size: 0.8em;
}
.header-menu>ul>li:hover>ul{
    display: block;
}
.header-menu>ul>li>ul{
    position: absolute;
    border: var(--line_color) solid 1px;
    padding:.5rem 0;
    display: none;
    background-color: var(--bg);
}
.home .header-menu>ul>li>ul{
    background-color: transparent;
}
.home .top .header-menu>ul>li>ul{
    background-color: var(--bg);
}
.header-menu>ul>li>ul>li>a{
    padding:.5rem .7rem;
    display: block;
}

.artworks-menu{
    border-left: var(--line_color) solid 1px;
    border-right: var(--line_color) solid 1px;
    background-color: rgba(0,0,0,0.03);
}
.lng .active{
    display: none;
}

#footer{
    background-color: rgba(0,0,0,0.2);
    margin-top: var(--space3);
}
.footer-wrap{
    display: flex;
    justify-content: space-between;
    height: var(--h);
    align-items: center;
}
.footer-wrap>div{
    padding:0 var(--space);
    font-size: var(--small_text);
}
#footer .social{
    display: flex;
}
#footer .social a{
    display:block;
    padding-left: .5rem;
    font-size: 1rem;
}

.section{
    padding: var(--space) 0;
    position: relative;
}
.section:before{
    border-top: var(--line_color) solid 1px;
    content: '';
    left: var(--space);
    right: var(--space);
    height: 1px;
    position: absolute;
    top:0;
}
.page-content .section:first-child:before,
.no-line.section:before{
    display: none;
}
.grid-title{
    display: flex;
    justify-content: space-between;
    padding:0 var(--space2);
}
.grid-title h2{
    font-weight: 400;
    font-family: var(--font2);
    padding:0 var(--space2);
    font-size: var(--textSize_m3);
}
.grid-title .close-item,
.grid-title .more{
    padding:0 var(--space2);
}
.grid-title .close-item i{
    width: var(--textSize_m3);
    height: var(--textSize_m3);
    border: var(--line_color) solid 1px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s linear;
}
.active .grid-title:hover .close-item i,
.grid-title:hover .close-item i{
    border: currentColor solid 1px;
    color: var(--color);

}

.wrap{
    display: flex;
    flex-wrap: wrap;
    padding:var(--space2);
}



.box{
    width: 33.3333%;
    padding:var(--space2);
}
.first .box:nth-child(1),
.first .box:nth-child(2){
    width: 50%;
}
.small-grid .box{
   width: 20%;
}
.box-img a{
    display: block;
    position: relative;
    padding-top: 56%;
    overflow: hidden;
    line-height: 0;
}
.box-img img{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.learn-more,
.box-info{
    padding-top: 1rem;
}
.box-info h3{
    font-weight: 400;
    font-family: var(--font3);
    font-size:  var(--small_text);
    padding-bottom: 1rem;
    text-transform: uppercase;
}
.box-info h2{
    font-weight: 400;
    font-family: var(--font2);
    line-height: 1.1;
    font-size:var(--textSize_m2);
}
.box-info h2 a{
    background-image: linear-gradient(var(--color), var(--color));
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size .3s cubic-bezier(0.55,.085,.68,.53);
    text-decoration: none;
    background-size: 0 1px;
}
.box:hover h2 a{
    background-size: 100% 1px;
}

.box-info .text{
    padding-top: .5rem;
    font-size:var(--textSize_s);
}
.small-grid .box-info h2{
    font-size: 1rem;
}
.small-grid .box-info .text{
    font-size:  var(--small_text);
}


.no-pic .box-info{
    border: currentColor solid 1px;
    padding: var(--space);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.artworks-box .box-img a{
    padding-top: 0;
}
.artworks-box .box-img img{
    position: relative;
    height: auto;

}

.grid-group .grid-group-content{
    display: none;
}
.grid-group:nth-child(4) .grid-group-content,
.grid-group:nth-child(3) .grid-group-content,
.grid-group:nth-child(2) .grid-group-content,
.grid-group:nth-child(1) .grid-group-content{
    display: block;
}
.grid-group .grid-title{
    cursor: pointer;
}
.grid-group.active i{
    transform: rotate(45deg);
    color: var(--hui);
}

.masonry-grid{
    padding: var(--space2);
}
.masonry-grid .grid-title,
.masonry-grid .wrap{
    padding: 0;
}

.more-space .box{
    padding: var(--space2) var(--space2) var(--space3) var(--space2);
}

.is-list .box{
    border-bottom: var(--line_color) solid 1px;
    padding: var(--space2);
}
.is-list .box-info-text,
.is-list .box{
    width: 100%;
    display: flex;
    align-items: center;
}
.is-list .box .box-img img{
    width: 150px;
    height: auto;
}
.is-list .box-info{
    flex: 1;
}
.is-list .box-info-text h2{
    flex: 1;
    padding:0 var(--space2);
    text-align: center;
}
.is-list .box-info-text .text{
    width: 150px;
    text-align: right;
}
.text-grid .wrap{
    padding:0 var(--space2) var(--space2) var(--space2);
}
.text-grid .box{
    padding:var(--space) var(--space2);
    border-bottom: var(--line_color) solid 1px;
    width: 100%;
}
.text-grid .no-pic  .box-info{
    padding: 0;
    border: none;
    position: relative;
}
.text-grid  .box-info-text{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.text-grid .box-info h3{
    padding-bottom: 0;
    position: absolute;
    bottom: 0;
    left: 0;
}
.text-grid .box-info h2{
    padding-right:var(--space2);
}
.text-grid .box-info .text{
    padding-top: 0;
    padding-left: var(--space2);
    font-size: 1rem;
    text-align: right;
}
.text-grid .learn-more{
    margin-left: auto;
}
.text-grid .del-text{
    width: 70%;
    position: relative;
    margin: var(--space2) 0 0 auto;
}
.text-grid .del-text .text{
    font-size: var(--textSize_s);
    padding:var(--space2) var(--space);
    text-align: right;
}
.text-grid .del-text:before {
    content: '“';
    left: 0;
    top: 0;
}
.text-grid .del-text:after, .text-grid .del-text:before {
    font-size: 2rem;
    position: absolute;
}
.text-grid .del-text:after {
    content: '”';
    bottom: 0;
    right: 0;
}
.text-grid .wrap{
    display: block;
}
.download-grid .wrap{
    width: 50%;
    margin-left: auto;
}
.download-grid .box-info{
    justify-content: space-between;
    flex-direction: row;
}
.download-grid .learn-more{
    padding-top: 0;
}
.artworks-grid .box-info h2{
    font-family: var(--font);
    font-size: var(--small_text);
}

.plane-wrap{
    padding: var(--space);
}
.plane-box{
    display: flex;
    background-color: var(--line_color);
}
.plane-box.fx{
    flex-direction: row-reverse;
}
.plane-box.ex .plane-box-img{
    width: 60%;
}
.plane-box-img{
    width: 50%;
    position: relative;
    min-height: 18rem;
}
.plane-box-img img{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.plane-box.ex .plane-box-info{
    width: 40%;
}
.plane-box-info{
    width: 50%;
    padding: var(--space);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.center .plane-box-info{
    text-align: center;
    padding: var(--space3);
}
.plane-box-info h2{
    font-size: var(--textSize_m3);
    font-weight: 400;
    font-family: var(--font2);
    padding-bottom: 2rem;
}
.plane-box.ex .plane-box-info h2{
    font-size: var(--textSize_b);
}

.plane-box-info h3{
    font-weight: 400;
    font-family: var(--font3);
    font-size:  var(--small_text);
    padding-bottom: 3rem;
    text-transform: uppercase;
}
.plane-box-info .text{
    font-size: var(--textSize_s);
}
.center .plane-box-info .text{
    font-size: var(--textSize_m);
    text-align: center;
}
.plane-box-info .learn-more{
    padding-top: 3rem;
}






.cover{
    margin-bottom: var(--space);
}
.cover .cover-swiper {
    height: var(--cover_h);
}
.cover .box {
    width: 100%;
    padding: 0;
    position: relative;
    height: 100%;
}
.cover-dark .cover-swiper-tool,
.dark-style{
    --color: #fff;
    color: #fff;
}
.cover .box .box-img{
    height: 100%;
}
.cover .box .box-img a {
    padding-top: 0;
    height: 100%;
}
.cover .box-info h2 a{
    background-image: none;
}

.cover .box .box-info {
    width: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    top: calc(var(--h));
    padding: var(--space3) var(--space) var(--space3) calc((100% - var(--size))/2 + var(--space));
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cover .box-info h2{
    font-size: 4em;
}
.cover .box-info .text{
    font-size: 1rem;
}
.cover .box .learn-more{
    padding-top: 2rem;
}

.cover .style3 .box,
.cover .style2 .box{
    display: flex;
    flex-direction: row-reverse;
}
.cover .style3 .box-img,
.cover .style2 .box-img{
    width: 50%;
}

.cover .style3 .box-img{
    padding:var(--space3) var(--space);
}
.cover .style3 .box .box-img img{
    object-fit: contain;
}

.swiper-slide-active .box-img img {
    animation: ss 2s cubic-bezier(.17,.67,0,.99) 1 forwards;
}
@keyframes ss {
    from{
        transform: scale(1.2);
    }to{
         transform: scale(1);
     }
}

.cover-swiper-tool {
    bottom: 0;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 calc((100% - var(--size))/2 + var(--space2));
    transition: color .3s linear;
    border-top: var(--line_color) solid 1px;
    height: var(--h);
    backdrop-filter: blur(20px);
}
.cover-swiper-tool .swiper-btn-prev, .cover-swiper-tool .swiper-btn-next {
    padding:0 var(--space2);
    font-size: 1.2rem;
    cursor: pointer;
}
.swiper{
    --swiper-pagination-bullet-width:100%;
    --swiper-pagination-bullet-size:auto;
    --swiper-pagination-color:transparent;
}


.swiper-pagination-bullet{
    border-radius: unset;
    background:transparent;
}
.swiper-pagination-bullet:before{
    display: block;
    width: 100%;
    height: 2px;
    content: '';
    background-color: black;
    transition:   background-color .3s linear;
}
.cover-dark .swiper-pagination-bullet:before{
    background-color: white;
}
.swiper-pagination{
    display: flex;
}
.cover-swiper-tool .swiper-pagination{
    bottom: 0;
    position: relative;
}

#content{
    min-height: 100vh;
}
.page-header{
    padding-top: calc(var(--h) + var(--space3));
    border-bottom: var(--line_color) solid 1px;
    margin-bottom: var(--space);
}
.page-header-wrap{
    padding:var(--space2);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.page-header-wrap h1{
    padding:var(--space2);
    font-size: var(--textSize_h);
    font-family: var(--font2);
    font-weight: 400;
}

.page-header-menu{
    display: flex;
    align-items: flex-end;
    padding:var(--space2);
}

.cat-list a{
    margin-left:var(--space2);
}
.archive-list{
    border-top: var(--line_color) solid 1px;
}
.archive-list ul{
    display: flex;
    flex-wrap: wrap;
    padding: var(--space2);
}
.archive-list ul li{
    padding:.5rem var(--space2);
}
.archive-list ul li a{
    background-image: linear-gradient(var(--color), var(--color));
    background-position: center bottom;
    background-repeat: no-repeat;
    transition: background-size .3s cubic-bezier(0.55,.085,.68,.53);
    text-decoration: none;
    background-size: 0 1px;
    display: block;
    padding: 2px 0;
    opacity: 0.4;
}
.archive-list ul li a[aria-current="page"],
.archive-list ul li a:hover{
    background-size: 100% 1px;
    opacity: 1;
}
.page-tool{
    padding: var(--space2);
}
.style-tool{
    border: var(--line_color) solid 1px;
    display: flex;
    border-radius: 1rem;
    overflow: hidden;
}
.style-tool>div{
    padding: .5rem 1rem;
    font-size: var(--textSize_s);
    cursor: pointer;
}
.style-tool>div.active{
    background-color: black;
    color: white;
}
.page-header-text{
    padding: var(--space2);
    font-size: var(--textSize_s);
}
.page-header-text h3{
    display: block;
    font-family: var(--font3);
    font-size: var(--small_text);
    padding-bottom: 1rem;
    font-weight: 400;
    white-space: nowrap;
}
.text-plane{
    padding: var(--space2);
    display: flex;
    justify-content: flex-end;
}
.text-plane.center{
    justify-content: center;
}
.text-plane>div{
    padding: var(--space2);
}
.text-plane .text-pic{
    width: calc( var(--size)*0.2);
}
.text-plane .text-pic img{
    width: 100%;
    height: auto;
}
.text-plane>.more-text,
.text-plane>.text{
    width: calc( var(--size)*0.5 + var(--space3));
}
.text-plane .social{
    padding-top: 2rem;
}
.text-plane .social a{
    font-size: 1.2rem;
    padding-left: 0;
    padding-right: .5rem;
}

.text-more{
    padding-top: 1rem;
    display: none;
}
.read-more{
    padding-top: 1rem;
}

.gallery-slider{
    overflow: hidden;
}
.gallery-swiper .swiper-slide{
    width: auto;
    padding: var(--space) var(--space2) var(--space2) var(--space2);
    opacity: 0.5;
    transition: opacity .3s;
}
.gallery-swiper .swiper-slide.swiper-slide-active{
    opacity: 1;
}
.gallery-swiper .swiper-slide img{
    width: auto;
    height: 50vh;
}
.gallery-slider .cover-swiper-tool{
    position: relative;
    border-top: none;
}
.slider-section{
    background-color: var(--line_color);
    margin: var(--space) 0;

}
.top-space{
    margin-top: var(--h);
}
.section.full{
    padding: 0;
}
.artwork-slider{
    height: 80vh;
    margin-bottom: var(--space);
}
.artwork-swiper{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.has-gallery .artwork-swiper .swiper-wrapper {
    height: calc(100% - 70px);
}
.artwork-swiper .swiper-wrapper{
    height: 100%;
}
.artwork-swiper  .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space);
}
.panzoom {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.panzoom__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 1px;
    margin: auto;
}
.panzoom__content {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: 0 0;
    transition: none;
    touch-action: none;
    user-select: none;
}
.plyr,
.my-video{
    max-height: 100%;
    --plyr-color-main:#000;
}
.artwork-swiper .swiper-slide video, .artwork-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    cursor: zoom-in;
}

.swiper-thumbnails {
    display: flex;
    flex: 0 0 70px;
    align-items: center;
    justify-content: center;
}
.swiper-thumbnails span.active, .swiper-thumbnails span:hover {
    opacity: 1;
}
.swiper-thumbnails span {
    padding: 0 5px;
    border: none;
    overflow: hidden;
    opacity: 0.5;
    display: block;
    width: 80px;
    height: 70px;
    cursor: pointer;
    position: relative;
}
.swiper-thumbnails video,
.swiper-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}
.swiper-b-next,
.swiper-b-prev{
    position: absolute;
    top:0;
    bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space);
    cursor: pointer;
    z-index: 10;
}
.swiper-b-next{
    right: 0;
}
.swiper-b-next.swiper-button-disabled,
.swiper-b-prev.swiper-button-disabled{
    opacity: 0.3;
}
.article-text,
.artworks-info{
    padding: var(--space2) var(--space);
    margin: 0 auto;
    width: 60%;
}
.artworks-info h3{
   text-transform: uppercase;
    font-size: var(--textSize_s);
    padding-bottom: 1rem;
}
.artworks-info h1{
    font-size: var(--textSize_h);
    padding-bottom: .5rem;
}
.artworks-info h2{
   opacity: 0.8;
}
.artworks-info .text{
    padding-top: 2rem;
}
.artworks-info .text.del{
    font-style: italic;
    padding-top: 1rem;
}

.post-tool{
    position: absolute;
    padding: var(--space2) var(--space);
}
.post-tool ul li{
    border: var(--line_color) solid 1px;
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;

}
.post-tool ul li:hover{
    border: #000 solid 1px;
}
.post-tool ul li.font-size span {
    width: 50%;
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
}
.post-tool ul li.font-size span.jian{
    left: 0;
}
.post-tool ul li.font-size span.jia{
    right: 0;
}
.post-tool ul li.font-size span:hover{
    background-color: rgba(0,0,0,0.1);
}
.is-dark .choose-dark i:before{
    content: '\f185';
}
.full-screen .screen i:before{
    content: '\f066';
}
.full-screen .section:not(.article-section),
.full-screen #footer,
.full-screen #header{
    display: none;
}
.qr-item img{
    width: 200px;
    height: auto;
}
[lang="zh-Hans"]:root{
    --small_text: 14px;
}
[lang="zh-Hans"] .plane-box-info .text {
    font-size: 1rem;
}
[lang="zh-Hans"] .btn{
    line-height: 1;
}
#phone-header{
    display: none;
}