.header-main {
    display: flex;
    align-items: center;
    height: 50px;
    box-shadow: 0px 1px 5px #dedede;
    padding: 0 10px;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    -webkit-appearance: none;
}

@media (min-width: 768px) {
    .header-main {
        height: 65px;
        padding: 0 20px;
    }
}

/* 左側logo css */
.header-logo {
    text-align: left;
    width: auto;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.header-logo img {
    height: 55px;
    margin-right: 10px; /* 為文字 logo 提供一些間距 */
}

/* 文字 logo 樣式 */
.header-logo span {
    font-size: 24px;
    font-weight: bold;
    color: #333; /* 根據您的品牌顏色進行調整 */
    text-transform: uppercase; /* 可選：將文字轉為大寫 */
}

@media (min-width: 768px) {
    
    /* 在較大的螢幕上調整文字 logo 大小 */
    .header-logo span {
        font-size: 24px;
    }
}

/* 響應式設計：在小螢幕上隱藏文字 logo */
@media (max-width: 576px) {
    .header-logo span {
        font-size: 20px;
        margin-left: 15px;

    }
}

/* 手機板消息通知 */
.header-news-area {
    flex: 1;
    text-align: right;
}

.header-news {
    width: auto;
    padding: 10px 0;
}

.header-news .header-icon {
    display: inline;
}

.header-news .header-icon>* {
    width: 18px;
    height: 18px;
    background: none;
    color: #707070;
}

.header-right {
    margin-left: auto;
    display: flex;
}

/*  */
#Mobile_Collapse_More .navbar-nav .dropdown-menu {
    position: static !important;
    float: none !important;
    transform: none !important;
    border: none;
}

#Mobile_Collapse_More .navbar-nav .dropdown-menu .nav-link{
    padding-left: 10%;
}

/* 使用者標誌 */
.self_user {
    text-align: center;
}

.self_user:hover {
    color: #1a73e8;
    cursor: pointer;
}

.self_user span {
    display: block;
    font-size: 12px;
    color: #333;
    line-height: 10px;
}

.self_user a[type="button"] {
    padding: 0;
    font-size: 16px;
}


