* {
    box-sizing: border-box;
}
body {
    font-size: 16px;
}
img {
    width: 100%;
    filter: blur(20px);
    animation: show-later 0.6s both;
    transform: translateZ(0);
}
.logo {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
}
.pic-container {
    margin-bottom: 1rem;
}
.item {
    position: relative;
    padding: 0;
    overflow: hidden;
}
.item:hover .detail,
.item:hover .action {
    opacity: 1;
}
.item img {
    border: 0;
    overflow: hidden;
}
.detail {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: .5rem;
    color: white;
    opacity: 0;
    transition: all .6s ease;
    z-index: 1;
}
.title {
    font-size: 1rem;
    letter-spacing: .01rem;
    font-weight: 400;
    color: #fff;
    padding: .02rem;
    margin-bottom: .4rem;
}
.detail .bi {
    margin-right: .5rem;
}
.date {
    font-size: .8rem;
}
.action {
    position: absolute;
    bottom: .4rem;
    width: 100%;
    padding-right: .5rem;
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    z-index: 99;
    opacity: 0;
}
.hy-btn {
    color: #666666;
    padding: 2px .5rem;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}
.hy-btn:hover {
    background-color: white;
}
.detail-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}
@keyframes show-later {
    0% {
        filter: blur(20px);
    }

    100% {
        filter: blur(0px);
    }
}
.detail-image {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.detail-image img {
    height: 100%;
}
.button {
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 5px;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.operation {
    position: absolute;
    bottom: 3rem;
    right: 0;
    width: 100vw;
    padding: 1rem;
    display: flex;
    justify-content: center;
}
.button:hover {
    color: #fff;
}
.button.disabled {
    cursor: not-allowed;
}
