/* 拍卖会 */
.section_index2 {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section_index2 .title1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section_index2 .title1 .title1Img {
    width: 215px;
}

.section_index2 .title1 .more {
    font-size: 18px;
    letter-spacing: 1px;
    color: #c30e23;
    font-weight: bold;
}

.auction {
    width: 100%;

}

.auction .auctionList {
    width: 100%;
    height: 200px;
    background-color: #f7f7f7;
    margin-top: 20px;
}

.auction .auctionList:hover {
    box-shadow: 2px 2px 7px #999;
}

.auction .auctionList a {
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
}

.auction .auctionList .auctionListImg {
    width: 550px;
    height: 200px;
}

.auction .auctionList .auctionListImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auction .auctionList .auctionListInfo {
    width: calc(100% - 550px);
    position: relative;

}

.auction .auctionList .auctionListInfo .auctionTitle {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #333333;
    width: 90%;
    margin: 20px auto;
}

.auction .auctionList .auctionListInfo .time {
    color: #333;
    font-size: 16px;
    width: 90%;
    margin: 10px auto;
}

.auction .auctionList .auctionListInfo .mulu {
    width: 120px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    background: #d6363b;
    color: #fff;
    display: inline-block;
    margin: 20px 0 0 5%;
    text-align: center;
}

.auction .auctionList .auctionListInfo .people-lot {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #e7e7e7;
    color: #666;
    width: 90%;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width:1200px) {
    .auction .auctionList .auctionListImg{
        width:  60%;
    }
    .auction .auctionList .auctionListInfo{
        width: 40%;
    }
    .auctionBd .auctionBdList{
        width: 30%;
        margin-right: calc(10%/3);
    }
    .auctionBd .auctionBdList:nth-of-type(4n){
        margin-right: calc(10%/3);
    }
    .auctionBd .auctionBdList:nth-of-type(3n){
        margin-right: 0;
    }
}
@media only screen and (max-width:900px) {
    .auction .auctionList{
        height: auto;
        padding-bottom: 30px;
    }
    .auction .auctionList .auctionListImg{
        width: 100%;
    }
    .auction .auctionList .auctionListInfo{
        width: 100%;
    }
    .auction .auctionList .auctionListInfo .people-lot{
        bottom: -30px;
    }
    .auctionBd .auctionBdList{
        width: 48%;
        margin-right: 2%;
    }
    .auctionBd .auctionBdList:nth-of-type(3n){
        margin-right: 2%;
    }
    .auctionBd .auctionBdList:nth-of-type(2n){
        margin-right: 0%;
    }
}
@media only screen and (max-width:414px) {
    .auctionBd .auctionBdList{
        width: 100%;
        margin-right: 0;

    }
    .auctionBd .auctionBdList:nth-of-type(3n){
        margin-right: 0;
    }
    .section_index1 .Indexleft .navimg a{
        width: 48%;
        margin-top: 10px;
    }
}