﻿/**公共**/
* {
    box-sizing: border-box;
    text-decoration: none;
}

html {
    font-size: 100px
}

body {
    margin: 0px;
    padding: 0px;
    font-size: 0.14rem;
    background-color: #FFF;
    font-family:
    /* macOS/iOS 原生适配（英文+阿拉伯文最优） */
    -apple-system, BlinkMacSystemFont, SF Arabic,
    /* Windows 原生适配（Win10+/Win7 分别适配，阿拉伯文系统原生） */
    Segoe UI Arabic, Tahoma Arabic, Arial Arabic,
    /* Linux 原生适配 */
    Ubuntu Arabic, Noto Sans Arabic,
    /* 通用标准字体（所有系统都支持，兜底英文+阿拉伯文） */
    Arial, Helvetica, sans-serif,
    /* 阿拉伯文专用兜底（防止极端情况） */
    "Arabic Transparent", "Times New Roman";
}

ul, li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

a {
    text-decoration: none;
    outline: none;
    cursor: pointer;
    color: #3C3C3C;
}

    a:focus, a:active {
        outline: none;
        text-decoration: none;
    }

    a:hover {
        color: #F40;
        text-decoration: none;
    }
/****/

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
/**手机端分行**/
.txtone {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.txttwo {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.txtthree {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
    white-space: normal;
}

.dishide {
    display: none !important;
}

.disshow {
    display: block !important;
}

.clearfix::after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}
/****/
.pagediv {
    padding: 20px 0px;
    font-size: 1em;
    font-weight: 700;
    width: 100%;
    text-align: center;
}

    .pagediv s {
        text-decoration: none;
    }

    .pagediv a {
        display: inline-block;
        border: 1px solid #E8E8E8;
        border-right: 0px;
        width: 43px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        text-decoration: none;
    }

    .pagediv .pageon {
        display: inline-block;
        border: 1px solid #488FCD;
        background-color: #488FCD;
        border-right: 0px;
        width: 43px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        color: #FFF;
    }

    .pagediv .pagePrev {
        width: 50px;
    }

    .pagediv .pageDisable {
        width: 50px;
        color: #CCC;
    }

    .pagediv .pagepos {
        width: unset !important;
        padding: 0 5px;
    }

        .pagediv .pagepos s {
            color: #F50;
            text-decoration: none;
        }

    .pagediv .pspan {
        display: inline-block;
        border: 1px solid #E8E8E8;
        border-right: 0px;
        width: 43px;
        line-height: 40px;
        height: 40px;
        text-align: center;
        color: #CCC;
        letter-spacing: 1px;
    }

    .pagediv .pageNext {
        width: 50px;
    }

    .pagediv .pageLeft {
        width: 50px;
        border-left: 1px solid #E8E8E8;
    }

    .pagediv .pageRight {
        width: 50px;
        border-right: 1px solid #E8E8E8;
    }
