body{
    background-color: #262626;
}
/*.collapse{*/
/*    display: none;*/
/*}*/
/*.nav__icon-toggle{*/
/*    display: block;*/
/*}*/
/*.nav__wrap {*/
/*    display: none !important;*/
/*    height: auto !important;*/
/*}*/
/*.nav__icon-toggle-bar{*/
/*    background-color: #ffffff;*/
/*}*/

#wrapper{
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 6vh;
}
.category-item {
    margin-bottom: 30px;
}
.post-photo {
    background: #fff;
    position: relative;

    border-radius: 4px;
    margin: 0;
    transition: .4s;
}
.post-photo .item-main {
    box-sizing: border-box;
    padding: 0px;
    margin-bottom: 12px;
    position: relative;
    vertical-align: middle;

    transition: transform .5s;
    text-align: center;
    overflow: hidden;
}
.post-photo .place {
    padding-top: 130%;
}
.post-photo .item-img-inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.post-photo .img {
    padding: 7px;
    overflow: hidden;
}
.post-photo .img-wrapper {
    padding-bottom: 140%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.post-photo .img-wrapper .img-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    object-fit: cover;
}
.post-photo .img  img {
    width: 100%;
    height: 100%;
    transition: .3s;
    object-fit: cover;
}
.post-photo .title {
    margin: 8px 0 12px;
    font-size: 14px;
    font-weight: normal;
    padding-left: 12px;
    line-height: 24px;
    border-left: 3px solid currentColor;
    color: #50585f;
    transition: .4s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 24px;
}
.post-photo:hover {

    margin-top: 0;
    transition: .25s;
}
.post-photo:hover .title {
    color: #bd9e69;
    transition: .25s;
}
.post-photo.album:hover:after {
    transform: rotate(1.5deg) translateX(7px);
    transition: .25s;
}
.post-photo.album:hover:before {
    transform: rotate(3deg) translateX(14px);
    transition: .25s;
}
.post-photo:hover .img  img {
    transform: scale(1.015);
}
/*详情*/
.section-title {
    text-align: center;
    font-size: 26px;
    margin: 50px 0;
    color: #bd9e69;
}
.section-title .title-desc{
    font-size: 14px;
    font-family: "Times New Roman", Symbola, serif;
}
.detail-image {
    width: 100%;
    display: inline-block;
}
.detail-image img {
    max-height: 100%;
    width: 100%;
}
.section-title .main-title {
    margin-bottom: 5px;
}
.section-title .section-line{
    position: relative;
    display: inline-block;
}
.section-title .section-line:after{
    position: absolute;
    content: ' ';
    display: block;
    background-color: #bd9e69;
    bottom: -5px;
    width: 40%;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}