/* main */

.main {
    margin-bottom: 40px;
}

.breadcrumb {
    padding: 20px 0;
}

/* main-content */
.main-content {
    min-height: 400px;
    padding: 20px;
    box-sizing: border-box;

    background-color: #fff;
}

.main-content > .title {
    text-align: center;
    color: #2F4056;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* museum */
.museum {
    padding-top: 30px;  
}

.museum-list > .item {
    /* background-color: #eee; */
    background-clip: content-box;
    box-sizing: border-box;
}

.museum-list > .item > .item-wrapper {
    overflow: hidden;
    cursor: pointer;
    transition: ease .3s all;
}

.museum-list > .item > .item-wrapper:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: ease .3s all;
}

.museum-list > .item > .item-wrapper > .img-box {
    width: 100%;
    height: 240px;
}

.museum-list > .item > .item-wrapper > .img-box > .img {
    transition: ease .5s;
}

.museum-list > .item > .item-wrapper > .img-box > .img:hover {
    transform: scale(1.05);
    transition: ease .5s;
}

.museum-list > .item > .item-wrapper {
    display: block;
    border: 1px solid #eee;
}

.museum-info {
    padding: 20px;
    box-sizing: border-box;
}

.museum-info > .title {
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #2b2b2b;
}


.museum-info > .content {
    margin-top: 10px;
    height: 96px;
    line-height: 24px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    color: #666;
}

.museum-info > .address {
    margin-top: 10px;
    color: #959595;
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.museum-info > .foot {
    margin-top: 20px;
    padding: 20px 0 0;
    text-align: center;
    border-top: 1px solid #eee;
}

/* museum detail */
.detail-header {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.detail-header > .address {
    margin-top: 10px;
}

.detail-header > .address > .address-nav {
    display: inline-block;
    color: #959595;
    cursor: pointer;
    transition: .2s;
}

.detail-header > .address > .address-nav:hover {
    color: #c4574d;
    transition: .2s;
}

.detail-content {
    padding: 20px 0;
}


.detail-content > .banner-img {
    width: 800px;
    height: 480px;
    margin: 0 auto 20px;
}

.detail-content > .banner-img > .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detai-content > .rich-text {
    color: #656565;
    line-height: 24px;
    font-size: 14px;
}

.detai-content > .rich-text img {
    display: block;
    width: 80%;
    margin: 10px auto 0;
}



/* 媒体查询  media */

@media screen and (max-width:1200px) {
    .museum-list > .item > .item-wrapper > .img {
        height: 195px;
    }
}

@media screen and (max-width: 992px) {
    .museum-list > .item > .item-wrapper > .img {
        height: 226px;
    }
    .detail-content > .banner-img {
        width: 600px;
        height: 360px;
    }
}

@media screen and (max-width: 768px) {
   
    .museum-list > .item > .item-wrapper > .img {
        height: 50vw;
    }

    .detail-content > .banner-img {
        width: 100%;
        height: 50vw;
    }
}