body{
    min-height: 100vh;
    background-color: #13141700;
    background-image: linear-gradient(315deg, #ff2a00 0%, #1e1f26 74%);
}
.container-card{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.box{
    position: relative;
    display: flex;
    width: 25vmax;
    height: 30vmax;
    justify-content: center;
    align-items: center;
    margin: 10px 10px;
    transition: 0.5s;
}

.content-card{
    position: relative;
    left: 0;
    width: 40vh;
    height: 80%;
    padding: 20px 40px;
    color: #fff;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
    transition: 0.5s;
}
.content-card h2{
    font-size: 2.3vmax;
    color: #fff;
    margin-bottom: 1vmax;
    cursor: default;
    overflow-wrap: break-word;
    
}
.content-card p{
    display: flex;
    font-size: 1.3vmax;
    margin-bottom: 10px;
    line-height: 1.4em;
    cursor: default;
    overflow-wrap: break-word;
    flex-wrap:nowrap;
}
.content-card a{
    display: inline-block;
    font-size: 2vh;
    color: #111;
    background: #fff;
    padding: 1vh; /*按钮大小*/
    border-radius: 0.5vh;
    text-decoration: none;
    font-weight: 700;
    margin-top: 5px;
    transition: 0.6s;
    overflow-wrap: break-word;
}
.box:hover .content-card{
    left: -25px;
    padding: 60px 40px;
}
.content-card a:hover{
    background: #222;
    color: #fff;
    border-radius: 1vh;
    box-shadow: 0 2px 15px #222;
}
.box::before{
    content: "";
    position: absolute;
    background: #fff;
    top: 0;
    left: 50px;
    width: 50%;
    height: 100%;
    text-decoration: none;
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
}
.box::after{
    content: "";
    position: absolute;
    background: #fff;
    top: 0;
    left: 50px;
    width: 50%;
    height: 100%;
    border-radius: 8px;
    transform: skewX(15deg);
    filter: blur(30px);
    transition: 0.5s;
}
.box:hover::before,
.box:hover::after{
    transform: skewX(0deg);
    left: 20px;
    width: calc(100% - 90px);
}
/* 卡片动效 */
.box:nth-child(1)::before,
.box:nth-child(1)::after{
    background: linear-gradient(315deg, #ffffff, #ff0058);
}

.box:nth-child(2):before,
.box:nth-child(2):after{
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.box:nth-child(3):before,
.box:nth-child(3):after{
    background: linear-gradient(315deg, #4dff03, #00d0ff);
}
.box span{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}
.box span::before{
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    transition: 0.3s;
    backdrop-filter: blur(2px);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: animate 2s ease-in-out infinite;
}

.box:hover span::before{
    opacity: 1;
    top: -50px;
    left: 50px;
    width: 30%;
    padding-top: 30%;
}

.box span::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: 0.5s;
    backdrop-filter: blur(2px);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: animate 2s ease-in-out infinite;
    animation-delay: -1s;
}

.box:hover span::after{
    bottom: -50px;
    right: 50px;
    width: 30%;
    height: 25%;
    opacity: 1;
}

/* 过渡 */
@keyframes animate {
    0%,
    100%{
        transform: translateY(1.5vmax);
    }
    50%{
        transform: translate(-1.5vmax);
    }
}
/* 手机端适配 */
@media screen and (max-width: 720px) {
    body {
       width: 100%;
       padding: 0;
       margin: 0;
       min-width: 350px;
    }
}