#main {
    width: 100vw;
    height: calc(100vh - 60px);
    background: url("../../img/background/background.jpg") no-repeat;
    background-size: 100% 100%;
    overflow-y: auto;
    padding-top: 60px;
}

#main .top-content {
    position: relative;
    width: calc(100vw - 8px);
    height: 40vh;
    background: transparent;
    overflow: hidden;
}

#main .content {
    width: calc(100vw - 8px);
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;

}

.picture-box {
    text-align: center;
}

.picture-box .picture-title {
    margin: 20px auto;
    font-size: 48px;
    font-weight: 800;
}



.my-love,
.my-self {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
/* 我喜欢的 */

.my-love .item {
    border: 6px solid white;
    box-shadow: 1px 1px 5px #333333;
    width: 20%;
    height: 200px;
    margin: 10px;
}

.my-love .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 1s;
}


/* 我自己 */
.my-self .item {
    border: 6px solid white;
    box-shadow: 1px 1px 5px #333333;
    width: 10%;
    height: 150px;
    margin: 10px;
}

.my-self .item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: all 1s;
}

.my-love img:hover,
.my-self img:hover {
    transform: scale(1.3);
}

/* 移动端适配 */
@media screen and (max-width: 480px) {
    .my-love .item{
        width: 100%;
    }
    .my-self .item{
        width: 100%;
        height: auto;
    }
}