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;
}
a > * {
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6, b, strong {
    font-weight: 700;
}
body {
    background-color: #ffffff;
    font-family: 'Poppins',ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    color: #333333;
}

blockquote {
    margin: 0;
}
cite {
    font-style: normal;
}

html, body, div, span, p, a, b, strong, i, h1, h2, h3, h4, h5, h6, table, thead, tbody, tr, td, th, ul, li, ol, dl, dt, dd, figcaption, cite {
    line-height: calc(1em + 4px);
}
.container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) and (max-width: 1279.98px) {
    html {
        font-size: 16px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    html, body, div, span, p, a, b, strong, i, h1, h2, h3, h4, h5, h6, table, thead, tbody, tr, td, th, ul, li, ol, dl, dt, dd, figcaption, cite {
        line-height: calc(1em + 10px);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 760px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 1000px;
    }
}
@media (min-width: 1280px) {
    .container {
        max-width: 1240px;
    }
}
@media (min-width:1600px) {
    html {
        font-size: 16px;
    }
    .container {
        max-width: 1320px;
    }
}
@media (max-width: 767.98px) {
    html {
        font-size: 16px;
    }
}

/* 切换图标的灰度 */
    .svg-change-sys {
        opacity: 0.5;
        cursor: pointer;
    } 
    [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 */

/* ld-loading-modal */
.ld-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;
    padding: 0 20px;
}
/* ld-loading-modal end */

/* ld message */
.ld-message-modal {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 4.5rem 20px;
    max-width: 700px;
}
.ld-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;
}
.ld-message-padding {
    opacity: 0;
    transform: translateY(-50%);
}
.ld-message-item-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.ld-message-success {
    background-color: #f0f9eb;
    border-color: #e1f3d8;
}
.ld-message-success p {
    color: #67c23a;
}
.ld-message-warning {
    background-color: #fdf6ec;
    border-color: #faecd8;
}
.ld-message-warning p {
    color: #e6a23c;
}
.ld-message-error {
    background-color: #fef0f0;
    border-color: #fde2e2;
}
.ld-message-error p {
    color: #f56c6c;
}
/* ld 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 ... */
