@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    background: url(https://www.loliapi.com/acg/);
    background-size: cover;
    display: flex;
}

.box {
    width: 350px;
    height: 350px;
  position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);//居中设置
     
    
    border-top: 1px solid rgba(255,255,255,0.5);
    border-left: 1px solid rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    border-right: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    background: rgba(50,50,50,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.box > h2 {
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}




.box .btn-box {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.box .btn-box > a {
    outline: none;
    display: block;
    width: 250px;
    text-align: end;
    text-decoration: none;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}

.box .btn-box > a:hover {
    color: rgba(255,255,255,1);
}

.box .btn-box > div {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box .btn-box > div > button {
    outline: none;
    margin-top: 10px;
    display: block;
    font-size: 14px;
    border-radius: 5px;
    transition: 1s;
}

.box .btn-box > div > button:nth-of-type(1) {
    width: 120px;
    height: 35px;
    color: rgba(207,255,232,0.9);
    border: 1px solid rgba(159,221, 255, 0.8);
    background: rgba(159, 221, 255, 0.5);
}

.box .btn-box > div > button:nth-of-type(2) {
    width: 120px;
    height: 35px;
    margin-left: 10px;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(224, 255, 168, 0.8);
    background: rgba(224, 255, 168, 0.5);
}

.box .btn-box > div > button:hover {
    border: 1px solid rgba(146, 255, 227, 0.9);
    background: rgba(146, 255, 227, 0.7);
}
/*悬停设置*/
.text-bottom{
display: flex;
justify-content: space-between;
align-items: flex-end;
color: rgb(255, 122, 221,1);
font-size: 17px;
}/*下方文字显示*/