input:focus{
	outline:none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-user-modify:read-write-plaintext-only; 
}
picture {
    max-width: 100%;
}
img {
    user-select: none;
    -webkit-user-drag: none;
}

h1, h2, h3, h4, h5, h6, b, strong {
    font-weight: 700;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333333;
}   

@media (min-width: 768px) {
    .container {
        max-width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 990px;
    }
}
@media (min-width: 1280px) {
    html {
        font-size: 16px;
        line-height: 24px;
    }
    .container {
        max-width: 1230px;
    }
}
@media (min-width:1600px) {
    .container {
        max-width: 1310px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279.98px) {
    html {
        font-size: 14px;
        line-height: 20px;
    }
}

/* 鍒囨崲鍥炬爣鐨勭伆搴� */
    .svg-change-sys, .svg-change-sys, .svg-change-sys {
        opacity: 0.5;
    } 
    [data-sys="win"] .svg-change-sys[data-brand='win'] {
        opacity: 1; 
    }
    [data-sys="mac"] .svg-change-sys[data-brand='mac'] {
        opacity: 1; 
    }
    [data-sys="android"] .svg-change-sys[data-brand='android'] {
        opacity: 1; 
}
/* end 鍒囨崲鍥炬爣鐨勭伆搴� */

/* 涓嬫媺鑿滃崟 */
    .select-down-btn:hover .select-down-menu {
        display: block !important;
    }

    .select-down-btn:hover [data-brand="down-arrow"] {
        transform: rotate(180deg);
    }
/* end 涓嬫媺鑿滃崟 */

/* 鎵嬮鐞� */
    .collapse-item[aria-hidden="true"] [data-brand="down-arrow"] {
        transform: rotate(-180deg);
    }
/* end 鎵嬮鐞� */

/* ScrollBox */
    .scroll-box {
        overflow: hidden;
    }
    .scroll-wrapper {
        display: flex;
        flex-wrap: nowrap;
    }
    .scroll-item {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: 1;
    }
/* end ScrollBox */

/* tab */
.tab-nav {
    display: flex;
}
.tab-item {
    user-select: none;
}
/* end tab */

/* luckydog-loading-modal */
.luckydog-loading-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
/* luckydog-loading-modal end */

/* luckydog message */
.luckydog-message-modal {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 4.5rem 20px;
    max-width: 700px;
}
.luckydog-message-item {
    padding: 10px 15px;
    width: 100%;
    background-color: red;
    border-radius: 6px;
    margin-top: 20px;
    position: relative;
    transition: opacity 0.3s, transform 0.4s;
}
.luckydog-message-padding {
    opacity: 0;
    transform: translateY(-50%);
}
.luckydog-message-item-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.luckydog-message-success {
    background-color: #f0f9eb;
    border-color: #e1f3d8;
}
.luckydog-message-success p {
    color: #67c23a;
}
.luckydog-message-warning {
    background-color: #fdf6ec;
    border-color: #faecd8;
}
.luckydog-message-warning p {
    color: #e6a23c;
}
.luckydog-message-error {
    background-color: #fef0f0;
    border-color: #fde2e2;
}
.luckydog-message-error p {
    color: #f56c6c;
}
/* luckydog message end... */

/* switch鎸夐挳 */
.switch-btn {
    --color: red;
}
.switch-btn[aria-checked="left"] span:first-child {
    color: var(--color);
}
.switch-btn[aria-checked="right"] span:last-child {
    color: var(--color);
}
.switch-btn .bar {
    display: block;
    width: 2rem;
    height: 1rem;
    border-width: 1px;
    border-style: solid;
    border-radius: 32px;
    cursor: pointer;
    position: relative;
}
.switch-btn .bar::before{
    content: '';
    display: block;
    width: 0.875rem;
    height: 0.875rem;
    position: absolute;
    left: 0;
    top: 0;
    background-color: red;
    border-radius: 14px;
    transition: all 0.2s ease-out;
}
.switch-btn[aria-checked="right"] .bar::before{
    left: 1rem;
}
/* switch鎸夐挳  end ... */