* {
    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:"NotoSerif","Google Sans", "Noto Sans SC", sans-serif;
    font-size:var(--textSzie);
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    color: var( --color);
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dbf1ff+0,f8f8f8+38 */
    background:var(--bg);
    width:100%;
    -webkit-font-smoothing: antialiased;
    font-weight: var(--w);
}
:root{
    --color: #333;
    --bg:#fff;
    --textSzie: clamp(12px, 0.9vw, 18px);
    --space:1.25rem;
    --spaceS:calc(var(--space)/2);
    --spaceB:calc(var(--space)*2);
    --font2:"Museum","Google Sans", "Noto Sans SC", sans-serif;
    --yellow:#ffe100;
    --red:#e50012;
    --w:400;
    --swiper-theme-color:var(--color);
    --swiper-pagination-bullet-width:2rem;
    --swiper-pagination-bullet-height:2px;
}
[lang="zh-Hans"], [lang="zh-Hans"] body{
      --w:300;
      font-family:"Noto Sans SC", sans-serif;
         --font2:"Noto Sans SC", sans-serif;
}
/* 1. 滚动条整体部分 */
::-webkit-scrollbar {
    width: 5px;  /* 纵向滚动条的宽度 */
    height: 10px; /* 横向滚动条的高度 */
}

/* 3. 滚动条滑块 (被拖动的部分) */
::-webkit-scrollbar-thumb {
    background: var(--red);    /* 滑块的颜色 */
}

/* 4. 鼠标悬停在滑块上时 */
::-webkit-scrollbar-thumb:hover {
    background: #555;    /* 悬停时的颜色加深 */
}

a{
    text-decoration: none;
    color: var(--color);
}
.text{
    line-height: 1.88;
}
[lang="zh-Hans"] .text{
    text-align: justify;
}
.text p{
    padding-bottom: 1.5rem;
}
.text p:last-child{
    padding-bottom: 0;
}
.text img,
.text video{
    max-width: 100%;
    height: auto;
}
.text a{
    text-decoration: underline;
}
.home-logo{
    position: fixed;
    left: calc(var(--spaceB) + var(--spaceS));
    top: var(--spaceS);
    z-index: 999999;
    width: 12vw;
    transform: translateY(20px);
}
.show-menu .home-logo{
    display: none;
}

.home-logo svg{
    width: 100%;
    height: auto;
}




#header{
    position: sticky;
    width: 100%;
    top:0;
    z-index: 99;
    left: 0;
    background-color: white;

}

.home #header{
    position: fixed;
}

.header-wrap{
    padding: var(--spaceS) var(--spaceB);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-wrap>div{
    padding:0 var(--spaceS);
}
.home .logo{
    opacity: 0;
}
.show-menu.home .logo{
    opacity: 1;
}
.logo a{
    display: block;
}
.logo img{
    width: 55px;
    height: auto;
}
.header-left{
    width: calc(66.6666% + var(--spaceB));
}
.header-tool,
.header-left{
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    justify-content: space-between;
}
.header-menu ul{
    padding:0 var(--space);
    display: flex;
}
.header-tool,
.header-tool>div{
    padding-left: var(--space);
}
.header-menu ul li{
    padding:0 var(--space);
}
.header-menu ul li a{
    font-family: var(--font2);

}
.open-search{
    cursor: pointer;
}
.search-box{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999999999;
    top:0;
    left: 0;
    align-items: center;
    justify-content: center;
    color: white;
    display: none;
}
.search-box.show{
    display: flex;
}
.search-box-bg{
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    backdrop-filter: blur(10px);

}
.search-form{
    position: relative;
    z-index: 2;
}
.search-box input{
    width: 50vw;
    background-color: transparent;
    border: none;
    border-bottom: #fff solid 2px;
    color: white;
    font-size: 1.5rem;
    text-align: center;
    padding: .5rem;
}
.close-search{
    position: absolute;
    bottom: 10%;
    font-size: 2rem;
    padding: 2rem;
    cursor: pointer;
    z-index: 2;
}
.open-menu{
    display: none;
}
.box-info h2 span,
.header-menu ul li a{
    background-image: linear-gradient(var(--yellow), var(--yellow));
    background-position: left bottom;
    background-repeat: no-repeat;
    text-decoration: none;
    background-size: 0 1px;
    transition: background-size 150ms linear;
    line-height: 1.2;
}
a:hover .box-info h2 span,
.header-menu ul li a:hover{
    background-size: 100% 1px;
}
.lng .active{
    display: none;
}

.wrap{
    display: flex;
    flex-wrap: wrap;
    padding:var(--spaceS) var(--spaceB);
}
.box{
    padding: var(--spaceS) var(--spaceS) var(--spaceB) var(--spaceS);
    width:33.3333%;
    position: relative;
}
.box-img{
    aspect-ratio: 16/10;
    line-height: 0;
    overflow: hidden;
}
.box-img figure{
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
}
.box-img figure.is-loaded{
    background-image: unset !important;
    background-color: #eee;
}
#artist-list .box-img figure.is-loaded{
    background-color:unset;
}
.box-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s linear;
}
.type-publication .box-img img,
.pub-box .box-img img{
    object-fit: contain;
}
a:hover .box-img img{
    transform: scale(1.03);
}
.pub-grid a:hover .box-img img{
    transform: unset;
}
.box-info{
    padding-top: .5rem;
}

.box-info h3{
    font-weight:var(--w);
    color: #888;
    font-size: 1em;
    font-family: var(--font2);
    padding-bottom: .5rem;
}
.box-info h2 i{
    display: block;
    font-size: 0.8em;
    font-style: normal;
}
.artwork-info-header h2,
.box-info h2{
    font-weight:  var(--w);
    font-family: var(--font2);
    font-size: 1.75em;
}
.box-info .text{
    padding-top: 0.5rem;
}
.two .box:first-child,
.two .box:nth-child(2){
    width: 50%;
}
.big-grid .box{
    width: 100%;
    padding: 0;
}
.pub-grid .box a,
.big-grid .box a{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
}
.pub-grid .box a{
    flex-direction: row;
    align-items: flex-start;
}
.pub-grid .box a>div,
.big-grid .box a>div{
    padding: var(--spaceS);
}
.big-grid .box-img{
    width: 66.66666%;

}
.home .big-grid .box-img{
    height: calc(100vh - var(--space));
    aspect-ratio: unset;
}
.big-grid  a:hover .box-img img{
    transform: unset;
}
.big-grid .box-info{
    width: 33.3333%;
    font-size: 1.5rem;

}
.big-grid .box-info h3{
    position: absolute;
    top:var(--space);
    writing-mode: vertical-lr;
    text-transform: uppercase;
    font-size: 1.2rem;
}
.pub-grid .box{
    width: 50%;
    padding: 0;
    padding-bottom:var(--spaceB);
}
.pub-grid .box-img{
    width: 50%;
    aspect-ratio: unset;
}
.pub-grid .box-img{
    height: auto;
}
.pub-grid .box-info{
    width: 50%;
}
.section{
    padding: var(--spaceB) 0;
    position: relative;
}
.section.high{
    padding: var(--spaceB) 0;
}
.section:first-child{
    padding: 0 0 var(--spaceB) 0;
}
.section:first-child:after,
.section:first-child:before{
    display: none;
}

.grid-title{
    padding:var(--spaceS) var(--spaceB);
    display: flex;
    justify-content: space-between;

}
.line-bottom:before,
.section:before{
    left: var(--spaceB);
    right: var(--spaceB);
    background-color: var(--yellow);
    height: 1px;
    position: absolute;
    content: '';
    top:var(--spaceB);
}
.line-bottom:after,
.section:after{
    left: var(--spaceB);
    right: var(--spaceB);
    height: 15px;
    position: absolute;
    content: '';
    border-left: var(--red) solid 2px;
    border-right:  var(--red) solid 2px;
    transform: translateY(-50%);
    top:var(--spaceB);
}
.line-bottom:after,
.line-bottom:before{
    top:auto;
    bottom: 0;
}
.line-bottom:after{
    transform: translateY(50%);
}
.grid-title>*{
    padding: var(--spaceS);
}
.text h2,
.grid-title h2{
    font-size: 2em;
    font-family: var(--font2);
    font-weight:  var(--w);
}

#footer{
    padding: 1rem 0;
    position: relative;
    border-top: var(--yellow) solid 1px;
}


.foot,
.footer-wrap{
    display: flex;
    justify-content: space-between;
    padding:var(--spaceS) var(--spaceB);
    position: relative;
    z-index: 2;
}
.foot>div,
.footer-wrap>div{
    padding:var(--spaceS);
}
.footer-item{
    line-height: 1.5;
}
.follow{
    display: flex;
    align-items: center;
}
.follow a{
    display: inline-block;
    font-size: 1.5rem;
    margin-left: 1rem;
}
.follow a.xiaohongshu{
    background-image: url(xhs.svg);
    width: 2.5rem;
    height: 2.5rem;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

#content{
    min-height: 80vh;
}

.page-header{
    position: relative;
    padding-top: 4rem;
}
.page-header-wrap{
    display: flex;
    justify-content: space-between;
    padding:var(--spaceS) var(--spaceB);
}
.page-header-wrap>div{
    padding:var(--spaceS);
}
.page-header-tool,
.page-header-center,
.page-header-choose,
.page-header-menu ul,
.page-header-left,
.page-header-right{
    display: flex;
    align-items: flex-end;
}

.page-header-left h1{
    font-family: var(--font2);
    font-weight:  var(--w);
    font-size: 1.2em;
}
.post-header .page-header-left h1{
    font-size: 3em;
}
.post-header .page-header-left h1 span{
    display: block;
    font-size: .8em;
}
.ex-header-info{
    font-size: 1.5em;
}
.page-header-menu ul li{
    padding:0 var(--space);
}
.page-header-tool>div.active,
.page-header-menu ul li.active a{
    opacity: 1;
}
.page-header-tool>div,
.page-header-menu ul li a{
    opacity: 0.5;
}
.page-header-tool,
.page-header-choose{
    margin-right: calc(var(--space) * -1);
}
.page-header-tool>div,
.page-header-choose>div{
    padding: 0 var(--space);
}
.page-header-tool>div:nth-child(2),
.page-header-choose>div:nth-child(2){
    border-left: var(--red) solid 1px;
}
.choose-item a.active i:before{
    content: '\f106';
}
.choose-item-content{
    padding:0 var(--spaceB);
    display: none;
}
.choose-item-content ul{
    background: linear-gradient(to bottom, var(--yellow) 0%,rgba(255,255,255,0) 100%);
    display: flex;
    flex-wrap: wrap;
    border-left: var(--red) solid 2px;
    border-right: var(--red) solid 2px;
}
.choose-item-content ul li{
    padding:var(--space) var(--spaceS);
    width: 20%;
}
.choose-item-content ul li a{
    border-bottom: rgba(0,0,0,0.3) solid 1px;
    display: block;
    opacity: 0.7;
    line-height: 2;
}
.choose-item-content ul li a:hover{
    opacity: 1;
    font-weight: 700;
}
.page-header-tool>div{
    cursor: pointer;
}

.page-space{
    height: 2rem;
}
.page-menu ul{
    display: flex;
}
.page-menu ul li{
    padding-left: 1rem;
}

.plane-img{
    padding:var(--spaceS) 0;
    line-height: 0;
}
.plane-img img{
    width: 100%;
    height: auto;
}
.plane-wrap{
    padding:var(--spaceS) var(--spaceB);
    display: flex;
    justify-content: space-between;
}
.plane-title{
    padding:var(--spaceS);
    font-weight:  var(--w);
    font-family: var(--font2);
    font-size: 2em;
}
.plane-wrap .plane-content-info{
    padding:var(--spaceS);
    width: 66.6666%;
    font-size: 1.2em;
}
.plane-content-info dl{
    display: flex;
    padding-bottom: .5rem;
}
.plane-content-info dt{
    width: 10rem;
}
.plane-content-info dd{
    width: 100%;
}
.artist-grid{
    display: flex;
    align-items: flex-start;
    padding-bottom: 3rem;

}
.artists-nub{
    padding-left: var(--spaceB);
}

.artists-nub ul li a{
    opacity: 0.5;
    font-size: 12px;
}
.artists-nub ul li a:hover{
    opacity: 1;
}

.artist-grid .wrap{
    width: 100%;
}
.in-list .box{
    width: 100%;
    padding: var(--spaceS);
}
.in-list .box-img{
    position: fixed;
    bottom: var(--space);
    right: var(--spaceB);
    width: 50%;
    z-index: 99;
   opacity: 0;
    transition: all .3s linear;
    filter: blur(20px);
    text-align: right;
}
.in-list a:hover .box-img{
    opacity: 1;
    filter: blur(0);
}
.in-list .box-img img{
    object-fit: unset;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.in-list a:hover .box-img img{
    transform: unset;
}
.in-list .box-info{
    padding-top: 0;
    
}
.in-list .box-info h2{
    font-size: 2em;
}
.top-swiper{
    padding:0 var(--spaceB);

}
.top-slider .swiper-slide{
    width: auto;
    padding: var(--spaceS);
}
.top-slider .swiper-slide img{
    max-height: 60vh;
    width: auto;
}
.swiper-tool{
    display: flex;
    justify-content: space-between;
    padding-bottom: var(--spaceS);
}
.swiper-tool>div{
    padding: var(--spaceS);
}
.swiper-pagination{
    position: unset;
}
.swiper-pagination-bullet{
    border-radius: unset;
}
.swiper-btn-prev,
.swiper-btn-next{
    font-size: 1.5rem;
    cursor: pointer;
}
.list-slider {
    margin-top: var(--space);
}

.list-slider-header {
    display: flex;
    justify-content: space-between;
    border-top: var(--yellow) solid 1px;
    cursor: pointer;
    align-items: center;
    padding: var(--space) 0;
}
.list-slider-header h2 {
    font-size: 1.2em;
    font-weight:  var(--w);
    font-family: var(--font2);
}
.list-slider-header:after {
    content: "\2b";
    font-family: "Font Awesome 6 Sharp";
}
.list-slider ul li .list-slider-content {
    display: none;
    padding-bottom: var(--space);
}

.download-more {
    margin-top: var(--spaceB);
    display: flex;
}
.download-more a{
    display: inline-block;
    margin-right: 2rem;
}
.re-ex a,
.download-more a {
    display: inline-block;
    text-decoration: underline;

}
.re-ex a:hover,
.ex-artists-plane .text a,
.text a:hover,
.download-more a:hover{
    text-decoration: none;

}
.artwork-box .box-info{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.artwork-box .box-info h2{
    font-size: 1.2em;
}
.artwork-box .box-img{
    aspect-ratio: unset;
}
.artwork-box .box-img img{
    height: auto;
}
.artworks-info{
    padding-top: .5rem;
}
.artworks-info dl{
    display: flex;
}
.artworks-info dt{
    width: 20%;
}
.artworks-info dd{
    width: 100%;
}
.inquire{
    padding-left: 1.5rem;
}
.inquire .btn{
    border: #ccc solid 1px;
    padding: .5rem 1rem;
    border-radius: 3px;
}
.wrap.artworks-grid-wrap{
    padding: var(--spaceS) 0;
}
.grid-flow{
    padding:0 var(--spaceB);
}
.grid-flow .grid-title {
    padding: var(--spaceS) 0;
}

.artwork-wrap{
    display: flex;
    height: 100vh;
    position: relative;
    z-index: 11;
    flex-direction: row-reverse;
}
.artwork-gallery {
    height: 100%;
    width: 66.6666%;
}
.artwork-info {
    height: 100%;
    width: 33.3333%;
    border-right:var(--red) solid 1px ;
    display: flex;
    flex-direction: column;
}
.artworks-eq{
    flex: 1;
    border-top: var(--yellow) solid 1px;
    font-size: 1.25em;
}
.artworks-eq a{
    display: flex;
    padding: 1rem var(--spaceB);
    align-items: center;
    font-family: var(--font2);
    justify-content: center;
}
.artworks-eq span{
    margin:0 1rem;
}
.artwork-info-info{
    height: 100%;
    overflow: auto;
    padding: var(--spaceS) 0;
}
.artwork-info-header{
    border-bottom: var(--yellow) solid 1px;
    padding: var(--space) var(--spaceB);
}
.artwork-info-header h3 a,
.artwork-info-header h3{
    font-family: var(--font2);
    font-size: 1.75rem;
    font-weight: var(--w);
    color: #888;
}

.artwork-info-header .text{
    padding-top: 1rem;
}
.artwork-info-content{
    padding: var(--space) var(--spaceB);
}
.re-ex{
    padding-top: 1rem;
}
.re-ex h5{
    padding-bottom: 1rem;
    font-family: var(--font2);
    font-size: 1.2em;
    font-weight:  var(--w);
}
.artwork-grid-swiper .swiper-slide {
    height: 100vh;
    padding:4rem var(--spaceB);
}
.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;
}
.artwork-grid-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    cursor: zoom-in;
}
.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;
}
[data-style="ht"] .fancybox__content,
[data-style="ht"] .fancybox__slide {
    padding: 0;
    height: 100vh !important;
}
[data-style="ht"]  .fancybox__content>.carousel__button.is-close{
    width: 3rem;
    height: 3rem;
    padding: .5rem;
    top:0;
    right: 0;
    color: var(--color);
}
[data-style="ht"] .carousel__button svg,
[data-style="ht"]  .fancybox__content>.carousel__button svg{
    width: 100%;
    height: 100%;
    stroke-width:1;
}
.inside #footer,
.inside #header{
    display: none;
}
.artwork-gallery .swiper-pagination{
    position: absolute;
}

[data-style="ht"]  .fancybox__nav{
    position: absolute;
    top:0;
    right: 3rem;
    display: flex;
    flex-direction: row-reverse;
}
[data-style="ht"] .carousel__button{
    width: 3rem;
    height: 3rem;
    padding: .5rem;
}
[data-style="ht"] .carousel__button.is-prev, [data-style="ht"] .carousel__button.is-next{
    position: unset;
    transform: unset;
}
#artist-list { visibility: hidden; }
#artist-list.is-sorted { visibility: visible; }
.qr-img img{
    width: 200px;
    height: auto;
}
.fancybox__content{
    padding: 0;
}
.single .page-header-choose,
.phone-nav{
    display: none;
}