.hospital-main{
    width: calc(100% - 204px);
    height: 100%;
    display: flex;
    gap: 24px;
    margin-left: 204px;
    align-items: center;
    justify-content: center;
}

.hospital-card{
    padding: 20px;
    background-color: #ffffff66;
    border: 1px solid #ffffff;
    backdrop-filter: blur(5px);
    border-radius: 8px;
    cursor: pointer;
    /* position: absolute; */
}

.hospital-title{
    align-self: stretch;
    color: #1d2129;
    font-family: "OPPOSans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    width: 320px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hospital-text{
    color: #4e5969;
    font-family: "OPPOSans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-top: 10px;
    width: 320px;
}

.hospital-img{
    width: 320px;
    height: 180px;
    margin-top: 24px;
    background-color: #bfd0f3;
}

.hospital-go-system > img{
    width: 16px;
    height: 16px;
}

.arrows{
    display: block;
}

.arrows-a{
    display: none;
}

.hospital-go-system{
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hospital-card:hover .hospital-go-system{
    background-color: #0363E9;
    width: 32px;
    height: 32px;
    border-radius: 50px;
}

.hospital-card:hover .arrows{
    display: none;
}

.hospital-card:hover .arrows-a{
    display: block;
}

.hospital-card:hover{
    background-color: #ffffff;
    box-shadow: 0 8px 20px 0 #0000001a;
}
