@charset "UTF-8";
/* H5公共样式，用于所有H5开发页面*/
html {
    font-family: "Microsoft Yahei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: inherit;
    font-size: 14px;
    background: #fff;
}
/* 将具有默认margin和padding的标记置零，所有标记的margin、padding都在使用时具体定义 */
* {
    box-sizing: border-box;
}
/* 常用标签，基本标签默认样式取消，HTML标签，取消基本标签默认样式，防止不同浏览器显示效果不同 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, fieldset, button, input, textarea, th, td, div {
    margin: 0;
    padding: 0;
    border: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
    margin: 0;
    padding: 0;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
}

b, strong {
    font-weight: bold;
}

small {
    font-size: 80%;
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}

button {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    /*清除移动端默认的表单样式*/
    -webkit-appearance: none;
    cursor: pointer;
}

    button[disabled], html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner, input::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    padding: .35em .625em .75em;
    margin: 0 2px;
    border: 1px solid #ddd;
}

legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td, th {
    padding: 0;
}

body, input, select, textarea, button {
    /*字体变清晰*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* 清除ul列表标记的样式 */
ol, ul {
    list-style: none;
}
/* 定义默认的链接样式，仅仅是作为默认样式提供，可以在各自的实例中覆盖掉 */
a, a:hover, a:focus {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
    -o-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}
/* 定义图片边框，当图片作为链接内容被填充时，会有默认边框出现，重定义掉 */
img {
    width: 100%;
    border: 0 none;
    -ms-interpolation-mode: bicubic;
    object-fit: cover;
}

.swiper-slide img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}


@media(min-width:750px) {
    .swiper-slide img {
        width: 100%;
        height: 270px;
        object-fit: cover;
    }
}



/* 去掉虚线框 */
input:focus, textarea:focus, select:focus, button:focus, a:focus {
    outline: 0;
}
/*通过为父元素添加 .clearfix 类可以很容易地清除浮动*/
.clearfix:after, .clearfix:before {
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 0;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

/*---common style ---*/
.fontSTsong {
    font-family: "NSimSun", "SimSun", "STSong", "FangSong", "FangSong_GB2312" !important;
}

.app-table {
    display: table;
}

.app-tr {
    display: table-row;
}

.app-td {
    display: table-cell;
}

html {
    font-size: 100px;
}

@media only screen and (min-width: 401px) {
    html {
        font-size: 125px !important;
    }
}

@media only screen and (min-width: 428px) {
    html {
        font-size: 133.75px !important;
    }
}

@media only screen and (min-width: 481px) {
    html {
        font-size: 150px !important;
    }
}

@media only screen and (min-width: 569px) {
    html {
        font-size: 175px !important;
    }
}

@media only screen and (min-width: 641px) {
    html {
        font-size: 200px !important;
    }
}

html, body {
    min-height: 100%;
}

body {
    margin: 0 auto;
    width: 100%;
    /* max-width: 640px; */
    font-size: 0.14rem;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

.hide {
    display: none;
}

.show {
    display: block;
}

a {
    color: #333;
}

.abs {
    position: absolute;
}

.rel {
    position: relative;
}

.bg-white {
    background: #fff;
}

.bg-gray {
    background: #f2f2f2;
}

img {
    display: block;
}

.ver-m {
    vertical-align: middle;
}

.ver-t {
    vertical-align: top;
}

.ver-b {
    vertical-align: bottom;
}

.fr {
    float: right;
}

.fl {
    float: left;
}

.tl {
    text-align: left !important;
}

.tc {
    text-align: center !important;
}

.tr {
    text-align: right !important;
}



/*容器*/
.main {
    margin: 45px auto 0;
    /* max-width: 550px; */
}
/*顶部*/
header {
    padding: 0 12px 0 4px;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    /* max-width: 550px; */
    height: 45px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}


    header .buttonBox {
        min-width: 70px;
        position: relative;
        z-index: 11;
        display: flex;
        align-items: center;
        justify-content: start;
    }

        header .buttonBox span {
            padding: 8px;
        }

            header .buttonBox span:first-child {
                padding-right: 12px;
            }

            header .buttonBox span:last-child {
                padding-left: 12px;
            }

            header .buttonBox span img {
                width: 20px;
                height: 20px;
            }

            header .buttonBox span:nth-child(1) img {
                width: 10px;
                height: 16px;
            }

    header h1 {
        padding: 0 70px;
        margin: 0 -70px;
        color: #212121;
        text-align: center;
        font-size: 16px;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
/* 导航按钮 */
.navButtonBox {
    min-width: 70px;
    position: relative;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .navButtonBox span {
        padding: 8px;
    }

        .navButtonBox span img {
            width: 20px;
            height: 20px;
        }
/* 导航栏 */
.navBar {
    top: -100%;
    transform: translate(-50%, -50%);
    left: 50%;
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 200;
    transition: 0.4s;
}

    .navBar .navButtonBox {
        margin-right: 12px;
        height: 45px;
        display: flex;
        align-items: center;
    }

    .navBar.show {
        top: 50%;
    }

.navListBox {
    max-height: calc(100% - 45px);
    overflow-y: scroll;
}


.navItem {
    padding: 12px;
}

    .navItem h3 {
        font-size: 16px;
        color: #141414;
        font-weight: normal;
        margin-bottom: 12px;
    }

    .navItem ul {
        display: flex;
        justify-content: start;
        flex-wrap: wrap;
    }

    .navItem li {
        display: flex;
        justify-items: center;
        align-items: center;
        margin: 0 12px 12px 0;
        background-color: #EEEFF2;
        border-radius: 4px;
        font-size: 15px;
        color: #4a4a4a;
        white-space: nowrap;
    }

        .navItem li a {
            padding: 7px 14px;
            width: 100%;
            height: 100%;
            display: flex;
            justify-items: center;
            align-items: center;
            font-size: 15px;
        }

        .navItem li.active {
            border-radius: 4px;
            background-color: #FFDD2B;
            color: #141414;
            font-weight: bold;
        }

@media only screen and (min-width: 1000px) {
    .navBar {
        width: 550px;
    }

    .main {
        width: 550px;
    }

    header {
        width: 550px;
    }
}

.share_btn_green {
    box-sizing: border-box;
    border: 1px solid #038F81;
    width: 110px;
    height: auto;
    margin: 0 2px;
    height: 37px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    color: #038F81;
}

.share_btn_facebook {
    box-sizing: border-box;
    border: 1px solid #3B5998;
    width: 110px;
    height: auto;
    margin: 0 2px;
    height: 37px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #333;
    color: #3B5998;
    letter-spacing: 0.3px;
}

.share_btn_twitter {
    box-sizing: border-box;
    border: 1px solid #1DA1F2;
    width: 110px;
    height: auto;
    margin: 0 2px;
    height: 37px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #333;
    color: #1DA1F2;
    letter-spacing: 0.3px;
}
