.blow-up-img-animation {
    overflow: hidden;
    img {
        transition: transform var(--animation-time) ease;
    }
    &:hover {
        img {
            transform: scale(1.2);
        }
    }
}

.border-animation {
    width: 1.63rem;
    height: 0.47rem;
    line-height: 0.47rem;
    text-align: center;
    font-size: 0.14rem;
    color: #FFFFFF;
    margin-top: 0.31rem;
    position: relative;
    &:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 1px;
        height: 0;
        background-color: #FFFFFF;
    }
    &:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1px;
        background-color: #FFFFFF;
    }
    .border-animation-child {
        &:after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            width: 1px;
            height: 0;
            background-color: #FFFFFF;
        }
        &:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: #FFFFFF;
        }
    }
    &:hover {
        &:after {
            height: 100%;
            transition: all .3s linear;
        }
        &:before {
            width: 100%;
            transition: all .3s linear;
        }
        .border-animation-child {
            &:after {
                height: 100%;
                transition: all .3s linear .3s;
            }
            &:before {
                width: 100%;
                transition: all .3s linear .3s;
            }
        }
    }
}