@import url('./iconfont/iconfont.css');
@import url('./common.css');


/* 变量值 */
:root{
    --round: 10px;
    --color: #a92f33;
    --color-bg: #f0f7fc;
    --color-grey-bg: rgb(34, 34, 34);
    --text-color: #333333;
    --text-grey-color: #8a8a8a;
    --text-red-color: #ff4242;
    --text-orange-color: #ff4e00;
    --text-yellow-color: #ffa800;
    --text-white-color: #ffffff;

    --section-title-size: 30px;
    --font-size-sm: 14px;
    --font-size-normal: 16px;
    --font-size-lg: 22px;

    --width: 1200px;
    --border-color: #c1c1c1;

    --logo-text-size: 26px;


    --margin-20: 20px;
    --margin-30: 30px;
    --margin-less-30: -30px;
    --button-download-bg: #f3f3f3;
    --bg-grey-color: #e1e1e1;
    --bg-white-color: #ffffff;
    --linear-gradient: linear-gradient(to right, #598ce8, #2c36ba);
    --border-radius-20: 20px;

    --info-bg: #faf8f5;
    --box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
}
.shadow{
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
}

.tel{
    color: var(--color) !important;
}


/* 公共头部 */
#content header{
    top: 0;
    position: sticky;
    left: 0;
    right: 0;
    z-index: 20;
    transition: 0.5s;
    background: #fff;
    border-bottom:1px solid var(--border-color);
}
#content header.bg{
    color: var(--color);
}
#content header nav{
    width: var(--width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
#content header nav .logo{
    display: flex;
    align-items: center;
}
#content header nav .logo img{
    width: 60px ;
}
#content header nav .logo .search{
    display: flex;
    align-items: center;
    padding: 10px;
    margin-left: 50px;
}
#content header nav .logo .search i{
    cursor: pointer;
}
#content header nav .logo .search i:hover{
    opacity: 0.5;
}
#content nav ul{
    display: flex;
}
#content nav ul li{
    position: relative;
}
#content nav ul li:hover .layui-nav-child{
    display: block;
}
#content nav ul li a{
    display: block;
    height: 80px;
    font-size: var(--font-size-normal);
    line-height: 80px;
    padding: 0 20px;
    color: var(--text-color);
    transition: 0.5s;
}
#content nav ul li dl a{
    height: 40px;
    line-height: 40px;
    font-size: var(--font-size-sm);
}
#content nav ul li a.active,#content nav ul li a:hover,#content nav ul li.active>a{
    color: var(--color);
}

#content header nav.mobile {
    display: none;
}

/* 底部 */

footer{
    font-size: var(--font-size-sm);
    color: var(--text-white-color);
    background: var(--color-grey-bg);
    padding: 100px 0;
}
footer a{
    color: var(--text-white-color);
    transition: 0.5s;
}
footer a:hover{
    opacity: 0.7;
}
footer .box{
    display: flex;
    justify-content: space-between;
    width: var(--width);
    margin: 0 auto;
}
footer .box .left .logo img{
    width: 400px;
}
footer .box .left ul{
    margin: 20px 0;
    display: flex;
    align-items: center;
}
footer .box .left ul li{
    margin-right: 10px;

}
footer .box .left ul li a{
    line-height: 1;
}
footer .box .left ul span{
    display: inline-block;
    margin-right: 10px;
    height: 12px;
    background: #fff;
    width: 1px;
}
footer .box .icp{
    margin-left: 20px;
}

footer .box .right{
    display: flex;
}
footer .box .right ul{
    margin-left: 50px;
}
footer .box .right ul li{
    margin-bottom: 10px;
}

footer .box .right ul li.img{
    display: flex;
}
footer .box .right ul li.img .item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .box .right ul li.img .item .name{
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.5;
}
footer .box .right ul li.img .item img{
    width: 80px;
}
footer .box .right ul li.img .item:nth-child(1),footer .box .right ul li.img .item:nth-child(2){
    margin-right: 10px;
}

/* 公共样式 */


/* 分页 */
.pagination-box{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--width);
    margin: 0 auto;
}
.pagination-box .pagination{
    display: flex;
    align-items: center;
}
.pagination-box .pagination li,.pagination-box .pagination li a{
    width: 30px;
    height: 30px;
    margin: 0 5px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination-box .pagination li.active{
    background: var(--color);
    color: var(--text-white-color);
}
.pagination-box .pagination li.disabled{
    color: var(--text-grey-color);
}


/* 首页 */

#body.home .home-banner{
    overflow: hidden;
    width: 100%;
}
#body.home .home-banner img{
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

#body.home .swiper-pagination-bullet{
    background: var(--color) !important;
}
#body.home .home-banner .swiper-pagination{
    bottom: auto !important;
    margin-top: -50px;
    width: 100%;
}
#body.home .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 5px;
}


#body.home section.list{
    width: var(--width);
    margin: 50px auto;
}
section .header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
section .header .title{
    font-size: 50px;
    position: relative;
    color: var(--text-color);
    display: flex;
    align-items: center;
}
section .header .title .home-tabs{
    margin-left: 50px;
    display: flex;
    align-items: center;
    font-size: var(--font-size-normal);
}
section .header .title .home-tabs a{
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    border-radius: 20px;
}
section .header .title .home-tabs a.active{
    background: var(--color);
    color: var(--text-white-color);
}
section .header a:hover{
    opacity: 0.5;
}

#body.home section.list .box{
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /*  grid-template-rows: 200px;*/
    grid-gap: 10px;
}
#body.home section.list .box .item{
    width: 290px;
    position: relative;
}
#body.home section.list .box .item .type{
    background: var(--color);
    font-size: var(--font-size-sm);
    color: var(--text-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    position: absolute;
    height: 26px;
    width: 70px;
    top: 10px;
    left: 10px;
    z-index: 10;
}
#body.home section.list .box .item .thumb{
    height: 160px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #444444;
}

#body.home section.list .box .item .thumb img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transition: 0.5s;
}
#body.home section.list .box .item .thumb:hover img{
    transform: scale(1.3);
}
#body.home section.list .box .item .title{
    font-size: var(--font-size-lg);
    margin: 10px 0;
}
#body.home section.list .box .item .time{
    font-size: var(--font-size-sm);
    color: var(--text-grey-color);
}
#body.home section.list .box .item{
    height: 300px;
}


#body.home .footer{
    background: var(--color-grey-bg);
    border-bottom: 1px solid #444444;
    padding: 30px 0;
}
#body.home .footer ul{
    width: var(--width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#body.home .footer ul li{
    width: 25%;
}
#body.home .footer ul li a{
    color: var(--text-white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#body.home .footer ul li a .name{
    font-size: var(--font-size-lg);
    transition: 0.5s;
    margin-bottom: 10px;
}
#body.home .footer ul li a .name:hover{
    transform: scale(1.2);
}
#body.home .footer ul li a .desc{
    transform: scale(1.2);
    font-size: 12px;
}








/* 通用单页 */
.pages #banner{
    background: var(--color);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pages #banner img{
    height: 100%;
    width: auto;
}
.pages #banner .title{
    margin-left: 10%;
    color: var(--text-white-color);
    font-size: var(--section-title-size);
}

.tabs{
    border-bottom:1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.tabs .item{
    padding: 15px 0;
    margin: 0 20px;
    border-bottom: 5px solid #fff;
}
.tabs .item.active{
    border-bottom-color: var(--color);
}
.pages .content{
    width: var(--width);
    margin: 50px auto;
    line-height: 3;
}
/* 文字banner */
.banner .text{
    height: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--section-title-size);
    color: var(--text-color);
}

/* 拍卖相关 */
#body.special{
    margin-bottom: 50px;
}
#body.special .info{
    background: var(--info-bg);
    padding: 50px 0;
}
#body.special .info .box{
    width: var(--width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#body.special .info .box .thumb{
    width: 700px;
    height: 394px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}
#body.special .info .box .thumb img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    transition: 0.5s;
}
#body.special .info .box .thumb img:hover{
    transform: scale(1.1);
}


#body.special .info .box .description{
    width: 450px;
}
#body.special .info .box .description .status{
    width: 60px;
    height: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-grey-color);
    margin-right: 10px;
}
#body.special .info .box .description .title{
    margin: 30px 0;
    font-size: 50px;
    line-height: 1;
    color: var(--color);
}
#body.special .info .box .description .type{
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 12px;
}
#body.special .info .box .description .row{
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 2;
}

#body.special .info .box .description .instructions{
    margin-top: 20px;
    font-size: 12px;
}
#body.special .info .box .description .instructions a{
    display: flex;
    align-items: center;
}
#body.special .info .box .description .instructions a i{
    margin-right: 5px;
}


#body.special .list{
    width: var(--width);
    margin: 30px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /*  grid-template-rows: 200px;*/
    grid-gap: 10px;
}
#body.special .list .item{
    width: 280px;
    height: 450px;
    transition: 0.5s;
}

#body.special .list .item .thumb{
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
}
#body.special .list .item .thumb img{
    transition: 0.5s;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
#body.special .list .item .thumb img:hover{
    transform: scale(1.2);
}
#body.special .list .item .name{
    font-size: var(--font-size-lg);
    margin: 20px 0;
}

/* 拍品详情 */

#body.lot .info{
    background: var(--info-bg);
    padding: 50px 0;
}
#body.lot .info .box{
    width: var(--width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#body.lot .info .thumb{
    width: 700px;
    height: 500px;
    position: relative;
}


#body.lot .info .thumb .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

#body.lot .info .thumb .mySwiper2 {
    height: 80%;
    width: 100%;
}
#body.lot .info .thumb .mySwiper2 .swiper-slide{
    cursor: pointer;
}
#body.lot .info .thumb .mySwiper2 .swiper-slide .preview{
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 5;
    inset: 0;
    margin: auto;
    opacity: 0;
    transition: 0.5s;
}
#body.lot .info .thumb .mySwiper2 .swiper-slide:hover .preview{
    opacity: 1;
}
#body.lot .info .thumb .mySwiper2 .swiper-slide .preview i{
    color: #fff;
    font-size: 20px;
}



#body.lot .info .thumb .mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

#body.lot .info .thumb .mySwiper .swiper-slide {
    width: 15% !important;
    height: 100%;
    opacity: 0.4;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    cursor: pointer;
}

#body.lot .info .thumb .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--color);
    box-sizing: border-box;
}

#body.lot .info .thumb .swiper-slide img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
#body.lot .info .box .info-text{
    width: 450px;
}
#body.lot .info .box .info-text .row{
    display: flex;
    align-items: center;
    line-height: 30px;
}
#body.lot .info .box .info-text .row .label{
    width: 120px;
    color: var(--text-grey-color);
}
#body.lot .info .box .info-text .lot-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#body.lot .info .box .info-text .lot-row .lot{
    font-weight: bold;
}
#body.lot .info .box .info-text .lot-row .pagination{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 150px;
    color: var(--text-grey-color);
}
#body.lot .info .box .info-text .lot-row .pagination span{
    height: 15px;
    width: 1px;
    background: var(--color-grey-bg);
}
#body.lot .info .box .info-text .lot-row .pagination .next i{
    margin-left: 10px;
}
#body.lot .info .box .info-text .name{
    margin: 30px 0;
    font-size: 30px;
}

#body.lot .info .box .info-text .row .status{
    line-height: 26px;
    padding: 0 10px;
    margin-right: 10px;
    border: 1px solid var(--border-color);
}

#body.lot .info .box .info-text .line{
    height: 1px;
    background: var(--border-color);
    margin: 30px 0;
}

#body.lot .info .box .info-text{
    font-size: 12px;
}

#body.lot .details-info{
    width: var(--width);
    margin: 50px auto;
}
#body.lot .details-info .title{
    font-size: 30px;
    margin-bottom: 30px;
}
#body.lot .details-info .special{
    margin-bottom: 100px;
}

#body.lot .details-info .row{
    display: flex;
    align-items: center;
    line-height: 30px;
    margin-bottom: 20px;
}
#body.lot .details-info .row .label{
    color: var(--text-grey-color);
    width: 120px;
}
#body.lot .details-info .row .value{
    width: 1000px;
}
#body.lot .details-info .row .tables{
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    width: 400px;
    line-height: 30px;
}
#body.lot .details-info .row .tables .item{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
#body.lot .details-info .row .tables .item:nth-child(odd){
    background: #efefef;
}
#body.lot .details-info .row .tables .item span{
    width: 50%;
    padding-left: 10px;
    box-sizing: border-box;
}

/* 拍卖日程列表 */
#body.calendar .show{
    display: flex;
    width: var(--width);
    margin: 20px auto;
    justify-content: space-between;
    align-items: start;
}
#body.calendar .show .calendar-box{
    width: 200px;
    padding: 20px;
    box-sizing: border-box;
}
#body.calendar .show .calendar-box .title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: var(--font-size-normal);
}
#body.calendar .show .calendar-box .calendar-header{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

}
#body.calendar .show .calendar-box .calendar-header .day-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 60px;
    justify-content: start;
}
#body.calendar .show .calendar-box .calendar-header .day-item .week,#body.calendar .show .calendar-box .calendar-header .day-item .count{
    font-size: 10px;
}
#body.calendar .show .calendar-box .calendar-header .day-item .count,
#body.calendar .show .calendar-box .calendar-header .day-item.today{
    color: var(--color);
}
#body.calendar .show .list .group-title{
    font-size: var(--font-size-lg);
    margin-bottom: 20px;
}
#body.calendar .show .list .group-items{
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /*  grid-template-rows: 200px;*/
    grid-gap: 10px;
}

#body.calendar .show .list .group-items .item{
    width: 300px;
    position: relative;
}
#body.calendar .show .list .group-items .item .type{
    background: var(--color);
    font-size: var(--font-size-sm);
    color: var(--text-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    position: absolute;
    height: 26px;
    width: 70px;
    top: 10px;
    left: 10px;
    z-index: 10;
}
#body.calendar .show .list .group-items .item .thumb{
    height: 160px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #444444;
}

#body.calendar .show .list .group-items .item .thumb img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transition: 0.5s;
}
#body.calendar .show .list .group-items .item .thumb:hover img{
    transform: scale(1.3);
}
#body.calendar .show .list .group-items .item .title{
    font-size: var(--font-size-lg);
    margin: 10px 0;
}
#body.calendar .show .list .group-items .item .time{
    font-size: var(--font-size-sm);
    color: var(--text-grey-color);
}

#body.calendar .show .list .group-items .item .button{
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin-top: 10px;
    transition: 0.5s;
}
#body.calendar .show .list .group-items .item .button:hover{
    border-color: #000;
}



/* 拍卖结果列表 */
#body.result .show{
    display: flex;
    width: var(--width);
    margin: 20px auto;
    justify-content: space-between;
}
#body.result .show .filter{
    width: 200px;

}
#body.result .show .filter .title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
#body.result .show .filter .title .reset-btn{
    cursor: pointer;
    border: solid 1px var(--border-color) ;
    padding: 0 10px;
}
#body.result .show .filter .title .text{
    font-size: var(--font-size-lg);
}
#body.result .show .filter .input{
    position: relative;
}
#body.result .show .filter .input i{
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;

}
#body.result .show .filter .input input{
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 10px;
    width: 100%;
    transition: 0.5s;
}
#body.result .show .filter .input input:focus{
    border-bottom-color: #333333;
}
#body.result .show .list{
    width: 960px;
}

#body.result .show .list .box{
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /*  grid-template-rows: 200px;*/
    grid-gap: 10px;
}
#body.result .show .list .pagination-box{
    width: auto ;
}

#body.result .show .list .box .item{
    width: 300px;
    position: relative;
}
#body.result .show .list .box .item .type{
    background: var(--color);
    font-size: var(--font-size-sm);
    color: var(--text-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    position: absolute;
    height: 26px;
    width: 70px;
    top: 10px;
    left: 10px;
    z-index: 10;
}
#body.result .show .list .box .item .thumb{
    height: 152px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #444444;
}

#body.result .show .list .box .item .thumb img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transition: 0.5s;
}
#body.result .show .list .box .item .thumb:hover img{
    transform: scale(1.3);
}
#body.result .show .list .box .item .title{
    font-size: var(--font-size-lg);
    margin: 10px 0;
}
#body.result .show .list .box .item .time{
    font-size: var(--font-size-sm);
    color: var(--text-grey-color);
}

#body.result .show .list .box .item .button{
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin-top: 10px;
    transition: 0.5s;
}
#body.result .show .list .box .item .button:hover{
    border-color: #000;
}


/* 拍卖搜索 */
#body.search{
    width: var(--width);
    margin: 50px auto;
}
#body.search .filter{
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;

}
#body.search  .filter .search-input{
    border: 1px solid var(--border-color);
    width: 500px;
    padding: 0 10px;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 30px;

}


#body.search  .filter .search-input i{
    cursor: pointer;
}
#body.search  .filter .search-input input{
    width: 450px;
}

#body.search  .filter .result{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#body.search  .filter .result b{
    color: var(--color);
}
#body.search  .filter .result .button-all{
    border: 1px solid var(--border-color);
    padding: 0 10px;
    line-height: 2;
    cursor: pointer;
    margin-bottom: 30px;
}

#body.search  .filter dl{
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
}
#body.search  .filter dl dt{
    width: 120px;
}
#body.search  .filter dl dd{
    width: 1080px;
}
#body.search  .filter dl dd span{
    cursor: pointer;
    line-height: 2;
    padding: 0 10px;
    display: inline-block;
}
#body.search  .filter dl dd span:hover{
    opacity: 0.5;
}
#body.search  .filter dl dd span.active{
    border: 1px solid var(--border-color);
}


#body.search .list{
    width: var(--width);
    margin: 30px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /*  grid-template-rows: 200px;*/
    grid-gap: 10px;
}
#body.search .list .item{
    width: 280px;
    height: 450px;
    transition: 0.5s;
}

#body.search .list .item .thumb{
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
}
#body.search .list .item .thumb img{
    transition: 0.5s;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
#body.search .list .item .thumb img:hover{
    transform: scale(1.2);
}
#body.search .list .item .name{
    font-size: var(--font-size-lg);
    margin: 20px 0;
}



/* 文章列表 */
#body .articles{
    width: var(--width);
    margin: 50px auto;
    display: flex;
    justify-content: space-between;

}
#body .articles .filter{
    width: 150px;
}
#body .articles .filter .title{
    font-size: var(--font-size-normal);
    margin-bottom: 20px;
}
#body .articles .filter .item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: var(--font-size-sm);
    margin-bottom: 10px;
}
#body .articles .filter .item .text{
    display: flex;
    align-items: center;
}

#body .articles .filter .item .text .select{
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 5px solid #ccc;
    margin-right: 10px;
}
#body .articles .filter .item .text .select.active{
    border-color: var(--color);
}

#body .articles .list{
    width: 1000px;
}
#body .articles .list .box{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /*  grid-template-rows: 200px;*/
    grid-gap: 10px;
}
#body .articles .list .box .item{
    width: 240px;
}
#body .articles .list .box .item .thumb{
    width: 240px;
    height: 135px;
    overflow: hidden;
}
#body .articles .list .box .item .thumb img{
    width: 100%;
    height: 100%;
    transition: 0.5s;
}
#body .articles .list .box .item .thumb:hover img{
    transform: scale(1.3);
}
#body .articles .list .box .item .title{
    font-size: var(--font-size-lg);
    margin: 10px 0;
}
#body .articles .list .box .item .time{
    font-size: var(--font-size-sm);
    color: var(--text-grey-color);
}
#body .articles .list .box .item{
    height: 300px;
}

/* 文章内容 */
#body.articles-details .box{
    width: var(--width);
    margin: 50px auto;
}
#body.articles-details .box .header{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}
#body.articles-details .box .header .title{
    color: var(--text-color);
    font-size: var(--section-title-size);
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}
#body.articles-details .box .header .cate{
    color: var(--text-color);
    font-size: var(--font-size-lg);
}
#body.articles-details .box .header .time{
    color: var(--text-grey-color);
    font-size: var(--font-size-sm);
}







/* 移动端 */

#content .float .mobile,
#content .home-banner .mobile-banner{
    display: none !important;
}


@media screen and (max-width: 1000px) {
    :root {
        --width: auto;
        --font-size-lg: 18px;
    }

    #content .home-banner .mobile-banner{
        display: block !important;
    }
    #content .home-banner .pc-banner{
        display: none !important;
    }

    #content header {
        height: 60px;
        position: sticky;
    }
    #content header nav.pc {
        display: none;
    }
    #content header nav.mobile {

        display: block;
    }

    #content header nav.mobile .head {
        display: flex;
        height: 60px;
        justify-content: center;
        align-items: center;
        background: var(--bg-white-color);
    }

    #content header nav.mobile .head .logo img {
        max-width: 100px;
        max-height: 40px;
        width: auto;
        height: auto;
    }

    #content header nav.mobile .menu {
        font-size: 20px;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 0;
    }

    #content header nav.mobile .menu i{
        color: var(--color);
    }
    #content header nav.mobile .menu i#show{
        font-size: 30px;
    }
    #content header nav.mobile .menu i#close{
        font-size: 20px;
        display: none;
    }



    #content header nav.mobile ul {
        background: #fff;
        display: none;
        padding-bottom: 30px;
    }

    #content header nav.mobile ul li a {
        line-height: 50px;
        height: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #333333;
    }
    #content header nav.mobile ul li a.active{
        color: var(--color);
    }

    #content header nav.mobile ul li dl{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 10px;
        margin: 0 20px;
    }

    #content header nav.mobile ul li dl dd{
        background: var(--bg-grey-color);
    }
    #content header nav.mobile ul li dl dd a{
        line-height: 40px;
        height: 40px;
        padding: 0 10px;
    }

    #content .home .banner {
        margin-top: 80px;
    }

    section .header .title{
        flex-direction: column;
        align-items: start;
    }
    section .header .title .home-tabs{
        margin: 10px 0;
    }
    section .header .title .home-tabs a{
        padding: 0 10px;
        height: 30px;
        width: auto;
        font-size: var(--font-size-sm);
    }
    #body.home .home-banner .swiper-pagination{
        margin-top: -30px;
    }
    .swiper-button-next, .swiper-button-prev{
        display: none !important;
    }

    /* 页脚 */
    footer {
        padding: 20px 0;
    }
    footer .box{
        flex-direction: column;
    }
    footer .box .left{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    footer .box .left .logo img{
        max-width: 300px;
        max-height: 50px;
        width: auto;
        height: auto;
    }

    footer .box .left ul li{
        margin: 0 5px;
    }
    footer .box .left ul span{
        margin: 0;
    }
    footer .box .left .copyright{
        text-align: center;
    }
    footer .box .right{
        margin-top: 20px;
        display: block;
    }
    footer .box .right ul{
        display: flex;
        margin: 0 0 10px;
        justify-content: center;
    }
    footer .box .right ul.list li{
        margin: 0 5px;
    }
    footer .box .right ul.code{
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }



    /* 首页 */
    section .header{
        align-items: start;
    }
    section .header .title{
        font-size: var(--font-size-lg);
    }

    #body.home section.list{
        margin: 20px 10px;
    }
    #body.home section.list .box{
        margin-top: 10px;
        grid-template-columns: 1fr 1fr;
    }
    #body.home section.list .box .item{
        width: 100%;
        height: auto;
    }
    #body.home section.list .box .item .thumb{
        height: auto;
    }
    #body.home section.list .box .item .thumb.lot{
        height: 180px;
    }
    #body.home section.list .box .item .title{
        font-size: var(--font-size-normal);
        /*height: 50px;*/
    }

    #body.home .footer{
        padding: 10px;
    }
    #body.home .footer ul{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
    }
    #body.home .footer ul li{
        width: auto;
    }
    #body.home .footer ul li a .name{
        margin-bottom: 0;
    }
    #body.home .footer ul li a .desc{
        font-size: 10px;
    }


    /* 拍卖日程 */
    #body.calendar .show{
        flex-direction: column;
        margin: var(--margin-20) 10px;
    }
    #body.calendar .show .calendar-box{
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 20px;
    }
    #body.calendar .show .calendar-box .calendar-header{
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    /* 拍卖结果 */
    #body.result .show{
        flex-direction: column;
        margin: var(--margin-20) 10px;
    }
    #body.result .show .filter{
        width: auto;
    }
    #body.result .show .list{
        width: auto;
        margin-top: 20px;
    }
    #body.result .show .list .box{
        grid-template-columns: 1fr  1fr;
    }
    #body.result .show .list .box .item{
        width: 100%;
    }
    /* 专场详情 */
    #body.special .info{
        padding: 10px;
    }
    #body.special .info .box{
        flex-direction: column;
    }
    #body.special .info .box .thumb{
        width: auto;
        height: 300px;
    }
    #body.special .info .box .description{
        width: auto;
        margin-top: 20px;
    }
    #body.special .info .box .description .title{
        font-size: 30px;
        margin: 20px 0;
    }
    #body.special .info .box .description .type{
        margin-bottom: 10px;
    }
    #body.special .list{
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        margin: 10px;
    }
    #body.special .list .item{
        width: 100%;
        height: auto;
    }
    #body.special .list .item .thumb{
        height: 200px;
    }

    /* 拍品 */
    #body.lot .info{
        padding: 0;
        overflow: hidden;
    }
    #body.lot .info .box{
        margin: var(--margin-20) 10px;
        flex-direction: column;
    }
    #body.lot .info .thumb{
        width: auto;
    }
    #body.lot .info .box .info-text{
        width: auto;
    }
    #body.lot .info .box .info-text .name{
        font-size: var(--font-size-lg);
        margin: 20px 0;
    }
    #body.lot .info .box .info-text .line{
        margin: 10px 0;
    }

    #body.lot .details-info{
        margin: var(--margin-20) 10px;
    }
    #body.lot .details-info .title{
        font-size: var(--font-size-lg);
        margin-bottom: 20px;
    }
    #body.lot .details-info .row .label{
        width: 26%;
    }
    #body.lot .details-info .row .value{
        width: 74%;
    }
    #body.lot .details-info .row .tables{
        width: 74%;
    }
    /* 单页面 */
    .pages #banner{
        height: 100px;
    }
    .pages #banner .title{
        margin: 0 auto;
    }
    .pages #banner img{
        display: none;
    }
    .pages .content{
        margin: 20px 10px;
    }
    .pages .content img{
        max-width: 100%;
    }
    #body.lot .details-info .special{
        margin-bottom: 30px;
    }
    /* 新闻 */
    #body .articles{
        flex-direction: column;
        margin: var(--margin-20) 10px;
    }
    #body .articles .filter,#body .articles .list{
        width: auto;
    }
    #body .articles .list .box{
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
    #body .articles .list .box .item{
        width: 100%;
        height: auto;
    }
    #body .articles .list .box .item .thumb{
        width: auto;
        height: auto;
    }
    #body .articles .list .box .item .title{
        font-size: var(--font-size-normal);
    }
    #body.articles-details .box{
        margin: 20px 10px;
    }
    #body.articles-details .box .header .title{
        margin-bottom: 20px;
    }
    #body.articles-details .box .header{
        margin-bottom: 20px;
    }
    #body.articles-details .box .content img{
        max-width: 100%;
    }
}