img {
    -webkit-user-drag: none;
}

a {
    color: #333;
    text-decoration: none;
}

@font-face {
    font-family: "xp_yahei";
    src: url("/_font/MicrosoftYaHei.otf");
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

html {
    --xp-image-hover-scale: 1.02;
    --xp-time-day-font-size: .3rem;
    --xp-default-font-size: 0.16rem;
}

body {
    font-family: Helvetica Neue, PingFang SC, xp_yahei, Hiragino Sans GB, HeitiSC, Helvetica, Arial, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
    letter-spacing: 0;
    line-height: 1.5;
    color: #333;
    --webkit-appearance: none;
    font-size: 0.16rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.app_text_line1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.app_text_line2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.app_text_line3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* 组件空 */
.component_null {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #666;
}

.component_null img {
    height: 2.2rem;
    color: #eee;
    font-size: .18rem;
}

/* 布局 */
.app-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.app-header {
    width: 100%;
}

.app-content-box {
    width: 100%;
    display: flex;
    justify-content: center;
}

.app-column-content {
    width: var(--xp-content-width);
    max-width: var(--xp-content-width);
    display: flex;
}

.app-content {
    flex: 1;
    width: 0;
}

.app-column {
    height: 100%;
}

.app-footer {
    width: 100%;
}

@keyframes app_mask_show {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
    }
}

.app-mask {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #fff;
    animation: app_mask_show 2s forwards;
    z-index: 99999;
}

/* 编辑器文章内容 */
.app_edit_info {
    font-size: 16px;
}

.app_edit_info video,
.app_edit_info img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.app_edit_info p {
    line-height: 2;
    min-height: 24px;
    word-wrap: break-word;
    padding: 0.05rem 0rem;
}

.app_edit_info section p {
    min-height: auto !important;
}

.app_edit_info section video,
.app_edit_info section img {
    margin: 0;
}

.app_edit_info video {
    width: 100%;
    background-color: #000;
}

.app_table_container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    min-height: 1rem;
}

.app_edit_info table {
    width: fit-content;
    max-width: 82vw;
    display: block;
    margin: auto;
    border-collapse: collapse;
}

.app_edit_info thead tr {
    color: #333;
    text-align: left;
    font-weight: bold;
}

.app_edit_info td,
.app_edit_info th {
    padding: .1rem .2rem;
    word-break: break-all;
    text-wrap: nowrap;
    min-width: .14rem;
    font-size: .16rem;
    color: #333;
    border: 1px solid #555;
}

.app_edit_info a {
    cursor: pointer;
    text-decoration: underline;
    color: #4258b8;
    word-break: break-all;
}

/* 站点变灰白 */
.app_ashen {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)";
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
}

.app-box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    transform: translateY(100vh);
    transition: all ease .7s;
}

.app-box-open {
    transform: translateY(0vh);
}

@media screen and (max-width: 800px) {
    html {
        min-width: 100vw;
        width: 100vw;
    }

    body {
        min-width: 100%;
        width: 100vw;
        background-image: none !important;
    }

    .app-box {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
        transform: translateY(240px);
    }

    .app-content {
        width: fit-content;
        min-height: 100%;
        background-image: none !important;
        padding: 0px 0px 0px 0px !important;
    }

    .app-container {
        width: 100%;
        min-width: 100%;
        background-image: none !important;
    }

    .app-column-content {
        width: 100%;
        flex-direction: column;
    }

    .app-column-left,
    .app-column-right {
        width: 100% !important;
        padding: 0px !important;
        background-image: none !important;
    }

    .app_feedback_container img {
        width: 6rem;
        margin-top: -20vh;
    }

    .app_feedback_box {
        width: 8rem;
        font-size: 0.42rem;
        padding-top: 0.35rem;
        padding-bottom: .35rem;
    }

    .app_to_home {
        padding: 0.4rem;
        margin-top: 0.2rem;
        font-size: 0.36rem;
    }

    .app_edit_info img {
        display: block;
        width: 100% !important;
        margin-top: 0em;
        margin-bottom: 0em;
    }
} 