/*
common
*/
ul, li {
    padding: 0 0;
    margin: 0;
    list-style: none;
}

ul > li > .detail {
    flex-direction: row;
    line-height: 200%;
    -moz-box-shadow: 0 0 10px #d4d4d4;
    -webkit-box-shadow: 0 0 10px #d4d4d4;
    box-shadow: 0 0 10px #d4d4d4;
}

#expert {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#expert > .banner {
    width: 100vw;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.banner > img {
    -webkit-user-drag: none;
}

#expert > .banner > .title {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #aace3f;
    transform: translate(-50%, -50%);
}

#expert > .banner > .title > .one {
    display: inline-block;
    border: 1px solid #aace3f;
    padding: 5px;
    font-size: 40px;
    font-weight: bold;
}

#expert > .banner > .title > .two {
    font-size: 22px;
    display: inline-block;
}

#expert > .container {
    width: 100vw;
    padding: 5vh 0;
}

.container > li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0;
}

.container > li .detail {
    width: 60vw;
}

/**
customize
 */

.experts-info > .main {
    display: flex;
    width: 60vw;
    flex-direction: row;
    line-height: 200%;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.main > .avatar {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 15vw;
    text-align: center;
    padding: 2vh 0;
}

.avatar .img {
    position: relative;
    width: 10vw;
    height: 10vw;
    border-radius: 10vw;
    overflow: hidden;
}

.avatar img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
}

.avatar .img .introduction {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 10vw;
    background: #aace3fdd;
    color: #ffffff;
}

.avatar > .name {
    font-size: 20px;
    padding: .5vh 1vw;
}

.avatar > .info {
    line-height: 19px;
    font-size: 13px;
    text-align: center;
}

.pager {
    margin-top: 4vh;
    padding: 0 1vw;
    display: flex;
    flex-direction: row;
    border-top: 1px solid #666464;
    border-bottom: 1px solid #666464;
}

.pager > li {
    padding: 1vw 1vh;
    font-weight: bold;
    cursor: pointer;
}

#icon-close {
    position: absolute;
    user-select: none;
    cursor: pointer !important;
    right: 15px;
    top: 15px;
}

#expert > .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    background: white;
    overflow: hidden;
    overflow-y: scroll;
    transition: all .5s;
    border-radius: 6px;
    border: 1px solid lightgray;
  }

.modal .modal-wrap {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

.modal .modal-wrap > * {
    margin: 5px;
}
