* {
    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:'Roboto Mono','Noto Sans SC', sans-serif;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    color: var( --color);
    background: var(--bgColor);
    width:100%;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    font-weight: 400;
    min-height: 100vh;
}

:root{
    --color: #000;
    --bgColor:#fff;
    --space:2rem;
    --space2:calc(var(--space)/2);
    --cubic: cubic-bezier(.17,.67,0,.99);
    --W : 255;
    --size:25%;
    --sizeHalf:50%;
    --sizeBig:75%;
    --text-light: #aaa;
}
.dark:root{
    --color: #ccc;
    --bgColor:#333;
    --W : 51;
    --text-light: #888;
}

.size-half{
    width: var(--sizeHalf) !important;
}
.size-full{
    width: 100%!important;
}
.size-big{
    width: var(--sizeBig) !important;
}
button,
input{
    width: fit-content;
    width: -moz-fit-content;
    margin: 0;
    padding: 0;
    display: inline-block;
    font-family:'Roboto Mono','Helvetica','Noto Sans SC', sans-serif;
    font-size: 100%;
    line-height: inherit !important;
    color: inherit;
    background: none;
    background-color: transparent;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

a{
    color: var( --color);
    text-decoration: none;
}
.del-text,
.text{
    line-height: 1.5;
}
.del-text p,
.text p{
    padding-bottom: 1rem;
}
.del-text p:last-child,
.text p:last-child{
    padding-bottom: 0;
}
.text img{
    width: auto;
    height: auto;
    max-width: 100%;
}

.choose {
    border: var(--color) solid 1px;
    height: .8rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 3rem;
}

.choose em {
    display: block;
    position: absolute;
    left: 2.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: .5rem;
    height: .5rem;
    border-radius: 100%;
    background: var(--color);
    transition: left .3s linear;
}
.dark .choose em {
    left: .15rem;
}
#cover{
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0) 30%,rgba(200,200,200,1) 100%);
}
.dark #cover{
    background: radial-gradient(ellipse at center, rgba(50,50,50,1) 30%,rgba(0,0,0,0) 100%);
}
#cover:before{
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    position: absolute;
    content: '';
    z-index: 1;
    background: linear-gradient(to right, rgba(var(--W),var(--W),var(--W),1) 0%,rgba(var(--W),var(--W),var(--W),0) 20%,rgba(var(--W),var(--W),var(--W),0) 50%,rgba(var(--W),var(--W),var(--W),0) 80%,rgba(var(--W),var(--W),var(--W),1) 100%);
}
#cover:after{
    width: 100%;
    height:20%;
    bottom:0;
    left: 0;
    position: absolute;
    content: '';
    z-index: 2;
    background: linear-gradient(to top, rgba(var(--W),var(--W),var(--W),1) 0%,rgba(var(--W),var(--W),var(--W),0) 100%);
}
.cover-swiper{
    width: 100%;
    height: 100%;
    position: absolute;
}
.cover-swiper .swiper-slide{
    width: 100%;
    height: 100%;
}
.cover-swiper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#content{
    min-height: calc(100vh - 240px);
    margin-bottom: 10vh;
}


.element {
    width:300px;
    height: 300px;
    background-size: contain;
    background-position: center;
    opacity: 0;
    transition: opacity 0.1s linear;
    background-repeat:no-repeat;

}

#header{
    position: sticky;
    width: 100%;
    top:0;
    left: 0;
    z-index: 99;
    background: linear-gradient(to bottom, rgba(var(--W),var(--W),var(--W),1) 0%,rgba(var(--W),var(--W),var(--W),0) 100%);
}
#footer{
    position: relative;
    z-index: 111;
}
.plane-wrap,
#footer,
.page-header-wrap,
.header-wrap{
    padding: var(--space2);
    display: flex;
    align-items: flex-start;
}

.plane-wrap>*,
#footer>*,
.page-header-wrap>*,
.header-wrap>*{
    font-size: 1rem;
    padding: var(--space2);
    width: var(--size);
}
.header-wrap h1{
    font-weight: 500;
}
.by-years li,
.page-menu li,
.header-wrap ul li{
    padding-bottom: .65em;
}
.by-years li a:hover,
.page-menu ul li.current-menu-item a,
a:hover .box-info h2,
.page-menu li a:hover,
.header-wrap ul li.current-menu-item a,
.header-wrap ul li.active a,
.header-wrap ul li a:hover{
    text-decoration: underline;
}
.header-end{

    display: flex;
    justify-content:space-between;
}
.open-search{
    cursor: pointer;
}
.open-search i{
    padding-right: .24rem;
}
.search-form{
    padding:var(--space2) var(--space) 0 var(--space);
    display: none;
}
.search-form input{
    border-bottom: var(--color) solid 1px;
    color: var(--color);
    width: 100%;
    text-align: center;
    padding-bottom: .5rem;
}
.plane-wrap{
    align-items: stretch;
}
.plane-wrap>*{
    position: relative;
}
.plane-wrap>*:before{
    content: '';
    height: 1px;
    background-color: var(--color);
    position: absolute;
    left: var(--space2);
    right: var(--space2);
    top:0;
}
.plane-title h2{
    font-size: 1rem;
}
.plane-title .text{
    font-size: 12px;
    padding: var(--space2)  0  var(--space2)  var(--space2);
}
.plane-title span{
    display: block;
    padding-bottom: 1rem;
}

.plane .text a{
    text-decoration: underline;
}
.kong:before{
    display: none;
}
.back{
    cursor: pointer;
}

.plane-side{
    display: grid;
    grid-template-columns: 1fr;
}
.plane-side .text:first-child{
    border-top: none;
    padding-top:0;
}
.plane-side .text{
    border-top: currentColor solid 1px;
    padding-top: var(--space2);
}

.wrap{
    display: flex;
    flex-wrap: wrap;
    margin:0 calc(var(--space2) * -1);
}
.box{
    padding: var(--space2);
    width: var(--size);
}
.box a{
    display: block;
}
.box-img {
    line-height: 0;
    overflow: hidden;
}
.box-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio:1/0.6;
    transition: opacity .4s;
}
a:hover .box-img img{
    opacity: 0.8;
}
.box-info{
    padding-top: .5rem;
}
.box-info h2{
    font-size: 1rem;
    font-weight: 400;
}

.index-tools{
    height: 100%;
}
.index-tools-wrap{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.scroll-content>*{
    padding: var(--space2) 0;
}
.view-tools ul{
    display: flex;
}
.view-tools ul li{
    border: var(--color) solid 1px;
    padding: .5rem 1rem;
}
.view-tools ul li.active{
    background-color: var(--color);
    color: var(--bgColor);
}
.view-tools ul li.active a{
    color: var(--bgColor);
}

.filter-title{
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    font-size: 0.8rem;
    padding: .5rem 0 1rem 0;
    font-weight: 400;
}
.filter-title>h2{
    font-weight: 400;
    font-size: 1em;
}
.filter-tool>span{
    display: flex;
    padding: .2em 0;
    cursor: pointer;
}
.filter-tool>span:before{
    content: '';
    border: currentColor solid 1px;
    width: .75em;
    height: .75em;
    margin-right: .25em;
}
.filter-tool>span.active:before{
    background-color: black;
}
.filter-end{
    font-size: 0.8rem;
    padding: 1rem 0 0 0;
}
.clear-all{
    text-align: right;
    cursor: pointer;
}
.filter-show span{
    display: inline-block;
    background-color: var(--text-light);
    padding: .2rem;
    margin: .2rem;
    border-radius: .2rem;
}
.filter-show span:before{
    content: '\f00d';
    font-family: "Font Awesome 6 Pro";
    padding-right: .2em;
    cursor: pointer;
}

.filter-wrap>ul>li>a{
    padding: .5rem 0;
    display: flex;
    justify-content: space-between;
    background-color: var(--bgColor);
    border-bottom: currentColor solid 1px;
}
.filter-wrap>ul>li>a:after{
    content: '\f078';
    font-weight: 300;
    font-family: "Font Awesome 6 Pro";
}
.filter-wrap>ul>li.active>a:after{
    content: '\f077';
}
.filter-wrap>ul>li>ul{
    padding: .5rem 0 1rem 0;
    background-color: var(--bgColor);
    display: none;
}

.filter-wrap>ul>li>ul>li{
    padding: .25rem 0;
}
.filter-wrap>ul>li>ul>li>a{
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.filter-wrap>ul>li>ul>li>a:before{
    content: '';
    width: .5rem;
    height: .5rem;
    border: var(--color) solid 1px;
    border-radius: 100%;
    display: block;
    margin-right: .3rem;
}

.custom-size{
    padding: 0 .5rem;
}
.custom-size>em{
    text-decoration: underline;
    display: block;
    padding: .5rem 0;
    font-size: 0.8rem;
    font-style: normal;
    cursor: pointer;
}
.custom-size-form{
    padding-bottom: .5rem;
    display: none;
}
.custom-size-form>div{
    padding: .5rem 0;
}
.custom-size-form>div label{
    font-size: 0.8rem;
    padding-bottom: .2rem;
    display: block;
}
.custom-size-item{
    display: flex;
}
.custom-size-item input{
    padding: .3rem;
    border: var(--color) solid 1px;
    background-color: var(--bgColor);
    width: 50%;
    color: var(--color);
}
.custom-size-item input:first-child{
    margin-right: .2rem;
}
.custom-size-item input:last-child{
    margin-left: .2rem;
}
.custom-size-form button{
    background-color: var(--color);
    color: var(--bgColor);
    border: none;
    padding: .5rem 1rem;
}
.scroll-content{
    padding-right: 5px;
}
.search-artwork{
    width: 100%;
    padding: 0 0 var(--space2) 0;
}
.search-from{
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: currentColor solid 1px;
}
.search-from label{
    padding:0 .5rem ;
}

.search-from input{
    padding: .35rem .35rem .35rem .35rem;
    width: 100%;
    border: none;
}
.box-size-content{
    display: flex;
    align-items: center;
}
.box-size-content em{
    display: block;
    border: currentColor solid 1px;
    width: 1rem;
    height: 1rem;
}
.box-size-content em.big{
    width: 1.5rem;
    height: 1.5rem;
}
input[type="range"] {
    width: 100%;
    height: 1px;
    padding: 0 1px;
    cursor: pointer;
    background-color: var(--color);
    margin:0 .5rem;
}
input[type="range"]::-webkit-slider-thumb{
    width: 10px;
    height: 10px;
    margin: 1px 0;
    border-radius: 100px;
    background-color: var(--color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: grab;
}
input[type="range"]::-moz-range-thumb{
    width: 8px;
    height: 8px;
    margin: 1px;
    border-radius: 100px;
    background-color: var(--color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: grab;
}



.index-list ul li{
    padding-bottom: var(--space);
    position: relative;
}
.index-list ul li:last-child:before{
    display: none;
}
.big-list.index-list ul li{
    margin: 0 calc(var(--space2) * -1);
}

.index-list ul li:before{
    content: '';
    left: 0;
    right:0;
    position: absolute;
    bottom: 0;
    background-color: var(--color);
    height: 1px;

}
.index-list ul li header{
    padding: var(--space2) 0;
}
.index-list ul li header h2{
    font-size: 1rem;
}
.index-list ul li header .text{
    padding: 2rem;
    font-size: 12px;
    width: 66.66666%;
    margin-left: auto;
}
.index-list ul li header button{
    border: none;
    background-color: transparent;
    text-decoration: underline;
    padding: 2rem 0 0 0;
}
.index-list-pic{
    display: flex;
    flex-wrap: wrap;
    padding: var(--space2) 0;
    width: 100%;
}

.index-list-pic a{
    display: block;
    margin-right:1rem;
    margin-bottom: 2rem;
}
.index-list-pic img {
    height: 150px; /* 设置你需要的固定高度 */
    width: auto; /* 宽度自适应 */
    display: block; /* 消除图片下方空隙 */
}
.index-list-pic a:hover img{
    opacity: 0.8;
}
.index-list-pic .text {
    width: 100%; /* 完全跟随图片宽度 */
    padding-top: .2rem;
    word-wrap: break-word; /* 单词过长也换行，避免拉伸容器 */
    font-size: 12px;
}
.index-list-pic .text span{
    display: block;
}
.index-list-pic a:hover .text b{
    text-decoration: underline;
}

.big-list .index-list-pic .text{
    font-size: 1rem;
}

.big-list .index-list-pic a{
    width: 33.3333%;
    margin: 0;
    padding: 1rem;
}
.big-list .index-list-pic img{
    width: 100%;
    height: auto;
}

.is-list .index-list-pic{
    padding:var(--space2);
    flex-direction: column;
}
.is-list .index-list-pic a:first-child{
    border-top: none;
}
.is-list .index-list-pic a{
    width: 100% !important;
    display: flex;
    border-top: currentColor solid 1px;
    margin: 0 0 .5rem  0;
    padding: .5rem 0 0 0;
}
.is-list .index-list-pic picture{
    width: 100px;
}
.is-list .index-list-pic img{
    height: auto;
    width: 100%;
}
.is-list .index-list-pic .text{
    flex: 1;
    display: flex;
}
.is-list .index-list-pic .text span{
    flex: 1;
    padding: var(--space2);

}
.is-list .index-list-pic .text span.del-m{
    flex: 2;
}
.index-tools-wrap .scrollbar-track-y {
    width: 1px;
    background: rgba(222, 222, 222, 0);
}
.index-tools-wrap .scrollbar-thumb {
    width: 1px;
    height: 1px;
    background: var(--color);
    border-radius: unset;
}
.list{
    padding:0 var(--space2) var(--space2) var(--space2);
}
.list ul li a {
    display: flex;
    position: relative;
}

.list ul li>a>span {
    flex: 1;
    padding: .5rem var(--space) .5rem 0;
    line-height: 1.2;
    display: block;
    border-bottom: currentColor solid 1px;
}
.list ul li:last-child>a>span{
    border-bottom: none;
}
.list ul li>a>span.title{
    flex: 5;

}
.list.ex-list ul li>a>span.title{
    flex: 2;
}
.list ul li>a>span em{
    display: block;
    font-size: 12px;
    font-style: normal;
    padding-top: .3rem;
}
.list ul li>a>span.read-more{
    flex: 0 0 10rem;


}
.list ul li>a>span:last-child{
    text-align: right;
    padding: .5rem 0;
}
.list ul li>a>span.ex-cat{
    flex: 0 0 10rem;
}
.list ul li>a>span.read-more i{
    padding-right: .35rem;
}
.list ul li.show{
    opacity: 0.5;
}
.list-img img{
    height: 100px;
    max-width: 100%;
    width: auto;
}
.list ul li>a>span.list-img {
    position: absolute;
    opacity: 0;
    transform: translateX(-100%);
    border-bottom: none;
    padding: 0 var(--space) 0 0;
}
.list ul li>a>span.list-img img {
    width: auto;
    height: 130px;
}
.list ul li>a:hover>span.list-img{
    opacity: 1;
}

.post-title{
    font-size: 1.4rem;
    padding-bottom: var(--space);
    line-height: 1.2;
}
.post-title em{
    display: block;
    font-size: 1rem;
    padding-top: .5rem;
    font-style: normal;
}
.swiper {
    --swiper-pagination-bullet-size: 8px;
    --swiper-pagination-color: var(--color);
}
.gallery-swiper-stop{
    margin-left: calc(var(--space2) * -1);
}
.gallery-slider .swiper-slide {
    padding: var(--space2);
    width: auto;
}
.gallery-slider .swiper-slide img {
    width: auto;
    height: 30vh;
    min-height: 250px;
}
.gallery-swiper-img .text {
    font-size:12px;
    line-height: 1.2;
    padding-top: 0.5rem;
}
.swiper-tool {
    display: flex;
    justify-content: space-between;
}
.swiper-nav {
    display: flex;
}
.swiper-nav>div {
    padding:var(--space2);
    cursor: pointer;
}
.swiper-tool .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 100%;
    bottom: auto;
    margin: 0;
    position: relative;
    text-align: right;
}
.phone-search-form,
.phone-header{
    display: none;
}
