@charset "UTF-8";

/* 選單 */
.menu {
    position: fixed;
    box-shadow: 0px 0px 2px 2px #000;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 72px;
    user-select: none;
}

.menu img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    vertical-align: top;
    pointer-events: none;
    object-fit: contain;
    user-select: none;
}

.menu-border {
    display: flex;
    justify-content: space-between;
    height: 100%;
    background-color: white;
}

.menu .menu-right {
    display: flex;
}

.menu .logo {
    max-width: 200px;
    display: flex;
    height: 100%;
    padding: 15px;
    box-sizing: border-box;
}

.menu .menu-bn-lf {
    width: 60px;
    display: flex;
    height: 100%;
    box-sizing: border-box;
    margin-right: 15px;
}

.menu .menu-bn-main {
    width: 70px;
    display: flex;
    height: 100%;
    box-sizing: border-box;
    background-color: #ffc772;
    padding: 15px;
}


/* 下拉式選單-主選單 */
.ddm-main {
    display: none;
    -webkit-user-select: none;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 72px;
}

.ddm-main-border {
    background-color: #ffc772;
}

.ddm-main .ddm-item {
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
}

.ddm-main .ddm-item:not(:first-child) {
    border-top-style: solid;
    border-width: 1px;
    border-color: rgb(0 0 0 / 10%);
}

/* 下拉式選單-語系 */
.ddm-lf {
    display: none;
    -webkit-user-select: none;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 72px;
}

.ddm-lf .ddm-lf-border {
    max-width: 100%;
}

.ddm-lf .ddm-title {
    padding: 15px;
    padding-right: 40px;
    padding-bottom: 5px;
    font-size: 18px;
    background-color: #ffc772;
    position: relative;
}

.ddm-lf .ddm-title>div:not(:first-child) {
    margin-top: 5px;
}

.ddm-lf .ddm-title .icon-close {
    position: absolute;
    top: 3px;
    right: 15px;
    font-size: 16px;
    font-weight: bold;
}

.ddm-lf .ddm-content {
    padding: 10px 15px;
    font-size: 18px;
    background-color: white;
}

.ddm-lf .ddm-item {
    font-size: 18px;
}

.ddm-lf .ddm-item:not(:first-child) {
    margin-top: 5px;
}


/* 項目-點擊 */
.ddm-main .ddm-item:active,
.ddm-lf .ddm-item:active {
    background-color: #ffe716;
}

/* 布幕 */
.ddm-screen {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: #0000003d;
    display: none;
}