html,
body{
    margin:0;
    padding:0;
    background:#FFFFFF;
    font-family:"Segoe UI",sans-serif;
}

#EnterpriseList{
    height:260px;
    overflow-y:auto;
    overflow-x:hidden;
    padding:8px;
    box-sizing:border-box;
}

#EnterpriseList::-webkit-scrollbar{
    width:8px;
}

#EnterpriseList::-webkit-scrollbar-thumb{
    background:#CFCFCF;
    border-radius:20px;
}

.enterprise-card{
    display:flex;
    align-items:center;
    height:68px;
    padding:0 14px;
    margin-bottom:10px;

    background:#FFFFFF;
    border:1px solid #ECECEC;
    border-radius:14px;

    cursor:pointer;

    transition:.18s;
    box-sizing:border-box;
}

.enterprise-card:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,.10);
}

.enterprise-card.selected{
    background:#F7F3FF;
    border:1px solid #8A5CFF;
}

.enterprise-icon{

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-right:14px;

    flex-shrink:0;
}

.enterprise-text{

    flex:1;
    overflow:hidden;
}

.enterprise-name{

    font-size:15px;
    font-weight:600;
    color:#333;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.enterprise-voen{

    margin-top:4px;

    font-size:12px;
    color:#888;
}

.enterprise-check{

    width:40px;

    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.enterprise-check i{

    color:#8A5CFF;
    font-size:18px;
}