* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    color: #426696;
    font-weight: 600;
    opacity: 0.8;
}

h2,
p {
    color: #658ec6;
    opacity: 0.8;
}

h3 {
    color: #426696;
    font-weight: 6400;
}

main {
    height: 100vh;
    /* linear-gradient(to right  top,#65dfc9,#6cdbeb);*/
    /* 渐变背景 */
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass {
    height: 600px;
    width: 60%;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.7), rgba(155, 230, 220, 0.3));

    border-radius: 1rem;
 
    /*磨砂效果*/
    backdrop-filter: blur(1rem);
    display: flex;
}

.circle1,
.circle2 {
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
    height: 14rem;
    width: 14rem;
    position: absolute;
    border-radius: 50%;
}

.circle1 {
    top: 0%;
    right: 13%;
}

.circle2 {
    bottom: 6%;
    left: 13%;
}

/* 面板-头像*/
.dashboard {
    flex: 1;
    display: flex;
    /*竖排对象/纵向排列*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
    border-radius: 1rem;
}

.games {
    flex: 2;/*占用比例*/
}


/* 设置左边 用户和专业版*/

.user i {
    font-size: 2rem;
}

.user h3 {
    font-size: medium;
}

.user p {
    font-size: smaller;
    margin-bottom: 2rem;
}

.link {
    display: flex;
    margin: 1rem 0rem;
    padding: 10px 10px;
    align-items: center;
}

.link h2 {
    font-size: small;
}

.links i {
    font-size: 1.2rem;
    padding: 0.5rem;
}

.pro {
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    border-radius: 1rem;
    color: white;
    padding: 10px;
    display: flex;
    position: relative;
    width: 154px;
}

.pro i {
    font-size: 2rem;
    /* 先相对后绝对*/
    position: absolute;
    right: 10%;
    bottom: 10%;
    

}

.pro h2 {
    font-size: medium;
    width: 65%;
    color: white;
}

/* 左侧*/
.games input {
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
    ;
    border: none;
    padding: 0.5rem;
    border-radius: 2rem;
    margin-bottom: 2rem;

}

.games {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

}

.games h2 {
    font-size: small;
}

.games h1 {
    font-size: smaller;
}

.games p {
    font-size: smaller;
}


.card {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8));
    margin: 2rem 0rem;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 6px 6px 20px rgba(112, 112, 112, 0.2);
}
.card i{
    font-size: 2rem;
    justify-items: center ;
    align-self: center;
 
}
.card-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between ;
    height: 50px;
}



.progress {
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    width:100%;
    height:20%;
    border-radius:1rem;
    position: relative;

}
.progress::after{
    content:"";
    width:100%;
    height:100%;
    background: rgb(236,236,236);
    position: absolute;
    left :40%;
    border-radius: 0rem 1rem 1rem 0rem;
}
.percentage{
    font-weight: bold;

    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 

}
.percentage1{
    font-weight: bold;
    
    color: #6cdbeb;

}