/* 介绍卡片 */
/*rgb(18, 0, 98)*/
.nav-link{
    color: white;
}
.nav-tabs{
    background-color: rgb(255, 138, 168);
}
.card-wrapper{
    margin-top: 6vh;
}
.card{
    overflow: hidden;
    border-radius: 2em;
    border: 5px solid rgb(0,0,33);
    width: 300px;
    height: 400px;
}
.detail .circ{
    position: absolute;
    top: 60%;
    transform: scale(10);
    transition: 0.3s;
}

.detail .circMove{
    top: 0%;
    transform: scale(1);
    transition: 0.25s;
}

.card-img-top{
    margin: 0 auto;
    transition: 0.3s;
}
.cardImgMove{
    width: 80%;
    transition: 0.3s;
    position: relative;
    translate: 0px -40px;
}

.card-body{
    position: absolute;
    width: 100%;
    height: 100%;
    /*border-radius: 2em;*/
    top: 78%;
    transition: 0.3s;
}

.cardBodyMove{
    top: 50%;
    margin-top: 10%;
    transition: 0.3s;
}

.card-head{
    background-color: rgb(184, 103, 112);
    padding-top: 1rem!important;
    display: flex;
    flex-direction: column;
    align-content: center;
}

.card-text{
    background-color: rgb(234, 159, 166);
    text-align: center;
    height: 85px;
}


.members-row{
    margin-left: 7vw;
    margin-right: 7vw;
    margin-top: 0vh;
}


