.topBar {
    position: relative;
    padding-top: 60px;
    margin-bottom: 0px;
    width: 100%;
    background-color: #fff;
}

.topBar .titleSet {
    margin-bottom: 15px;
}


.topBar .titleSet h2,
.topBar .titleSet h1
{
    display: inline-block;
    padding-right: 5px;
}

.topBar .titleSet .titleSmallLineCircle {
    position: relative;
    top: -5px;

    font-size: 14px;
    padding: 2px 14px;
    color: #5DC2D0;
    border: 1px solid #5DC2D0;
    border-radius: 999px;
    display: inline-block;
}


#mem_search_btn {
    position: relative;
    font-size: 14px;
    padding: 2px 16px;
    color: #fff;
    border: 1px solid #5DC2D0;
    background-color: #5DC2D0;
    border-radius: 999px;
    display: inline-block;
    cursor: pointer;
    white-space: nowrap;
    margin-left: 10px;
    align-items: center;
    display: inline-flex;
}



/*************************************  peopleBanner *************************************/

.peopleBanner {
    position: relative;
}

/*
.peopleBanner .peopleBannerSlick div {
    height: 280px;
    background-position: center center;
    background-size: cover;
    position: relative;
}
*/


.peopleBanner .leftArrowForPeopleBannerSlick,
.peopleBanner .rightArrowForPeopleBannerSlick {
     cursor: pointer;
    position: absolute;
    width: 41px;
    height: 100%;
    top: 0%;
    background-size: 11px 62px;
    background-position: center calc(50%); /* 正确写法 */
    z-index: 10;
    background-repeat: no-repeat;
}

.peopleBanner .leftArrowForPeopleBannerSlick {
    left: 0px;
    background-image: url(../img/icons/bigLeftArrowWhiteM.svg);
}

.peopleBanner .rightArrowForPeopleBannerSlick {
    right: 0px;
    background-image: url(../img/icons/bigRightArrowWhiteM.svg);
}



.peopleBanner .leftArrowForPeopleBannerSlick:hover,
.peopleBanner .rightArrowForPeopleBannerSlick:hover {
    opacity: 0.7;
}



.bannerDescription{
    display: none;
} 

.bannerDescription1{
    display: inherit;
}


.greyArea {
    background-color: #FAF8F5;
}


.greyArea .container{
   
    padding-top: 30px;
    padding-bottom: 0px;
}




.greyArea .circlePortrait {
    width: 150px;
    height: 150px;
    border-radius: 75px;
    background-size: cover;
    background-position: center center;
}


.greyArea .fileDetail {
    font-size: 14px;
    text-align: left;
    margin-top: 30px;
}

/*
.greyArea .fileDetail.table td:first-child {
    border-top: none !important;
    border-bottom: 1px solid #dee2e6 !important;
}
*/


.greyArea .fileDetail .apartment{
    width:110px;
}

.greyArea .fileDetail .apartment:before {
    content: url(../img/people/apartment.svg);
    float: left;
    margin-right: 8px;
}

.greyArea .fileDetail .jobTitle:before {
    content: url(../img/people/jobTitle.svg);
    float: left;
    margin-top: 1px;
    margin-right: 8px;
}

.greyArea .fileDetail .file:before {
    content: url(../img/people/file.svg);
    float: left;
    margin-top: 1px;
    margin-right: 8px;
}

.greyArea .fileDetail .works:before {
    content: url(../img/people/works.svg);
    float: left;
    margin-top: 1px;
    margin-right: 8px;
}

.greyArea .fileDetail a .myBtn{
    color: #5DC2D0;
    border:1px solid #5DC2D0;
    font-size: 15px;
    padding: 7px 25px;
    margin-right: 15px;
    margin-bottom: 15px;
}

.greyArea .fileDetail a:hover .myBtn{
    background-color: #5DC2D0;
    color: #fff;
    opacity: 1;
}


/*************************************  人員名單的下拉式選單 *************************************/
/* Select2 單選容器：設定高度與邊框樣式，對齊 Bootstrap 表單控制項 */
.select2-container .select2-selection--single {
    height: calc(1.5em + .75rem + 2px); /* 高度與 Bootstrap input 一致（行高 + 上下 padding + 上下 border） */
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

/* Select2 已選取文字：設定行高與文字顏色，確保文字垂直置中 */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: calc(1.5em + .75rem + 2px); /* 行高等於容器高度，使文字垂直置中 */
    color: #495057;                           /* 文字顏色與 Bootstrap 預設 input 相同 */
}

/* Select2 右側箭頭圖示：設定高度，確保箭頭在容器中垂直置中 */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(1.5em + .75rem + 2px); /* 高度與容器一致，使箭頭圖示垂直置中顯示 */
}


