.section {
    /* height: 530px; */
    margin-bottom: 10px;
}

.container {
    position: relative;
    height: 100%;
    margin: 0 auto;
    padding: 100px 150px 0 150px;
}

.container>span:nth-child(1) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(200, 224, 233), rgb(4, 145, 192));
    clip-path: circle(40% at 10% 20%);
}

.container>span:nth-child(2) {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(pink, rgb(255, 75, 105));
    clip-path: circle(30% at right 70%);
}

.box {
    /* 相对定位 */
    position: relative;
    overflow: hidden;
    float: left;
    height: 330px;
    width: 240px;
    /* background-color: pink; */
    margin: 0 30px 100px;
    padding: 20px;
    /* 边框 */
    border: 1px solid #000;
    border-radius: 20px;
    /* 阴影 */
    box-shadow: 0 0 3px 3px #e4e4e4;
    /* 背景 */
    background-color: rgba(255, 255, 255, 0.349);
    backdrop-filter: blur(5px);
}

.box:hover {
    /* 阴影 */
    box-shadow: 0 0 8px 4px #ccc;
}

.box a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    width: 240px;
}

.box h1 {
    /* 绝对定位 */
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 100px;
}

.box:hover h1 {
    color: #474747e8;
}

.box .content {
    /* 绝对定位 */
    position: relative;
    top: 130px;
    width: 200px;
    font-size: 40px;
    transition: all 1s ease;
}

.box:hover .content {
    top: 0;
}

.box .content span {
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-top: 210px;
}