﻿@charset "utf-8";
/**********************************
 * 基础
 **********************************/
body, input, textarea, select, button {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga", "kern";
}
html, body {
    max-width: 100%;
    min-width: 320px;
    min-height: 100%;
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* 去掉点击时默认的高亮 */
}
html {
    color: #383838;
    font-size: 10px;
}

@media screen and (min-width:321px) and (max-width:375px){
    html.mobile {font-size:11px}
}
@media screen and (min-width: 376px) and (max-width: 414px) {
    html.mobile {font-size: 12px;}
}
@media screen and (min-width: 415px) and (max-width: 639px) {
    html.mobile {font-size: 15px;}
}
@media screen and (min-width: 640px) and (max-width: 719px) {
    html.mobile {font-size: 20px;}
}
@media screen and (min-width: 720px) and (max-width: 749px) {
    html.mobile {font-size: 22.5px;}
}
@media screen and (min-width: 750px) and (max-width: 799px) {
    html.mobile {font-size: 23.5px;}
}
@media screen and (min-width: 800px) and (max-width: 1280px) {
    html.mobile {font-size: 25px;}
}
body {
    margin: 0;
    font-size: 1.6rem;
    /*line-height: 1.42857143;*/
    overflow: hidden;
    font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, 
        "Droid Sans","wenquanyi micro hei","Hiragino Sans GB", "Hiragino Sans GB W3", Arial, sans-serif;
}
*, *:before, *:after {
    box-sizing: border-box;
}

/*
 * 文本部分
 ************************/
h1, h2 {
    margin: 0 0 1rem;
    line-height: 1.2;
}
h3, h4, h5, h6 {
    margin: 1rem 0;
}
p {margin: 0 0 1rem}
h1 {font-size: 2.0em}
h2 {font-size: 1.6em}
h3 {font-size: 1.4em}
h4 {font-size: 1.2em}
h5 {font-size: 1.125em}
h6 {font-size: 0.9em}
h1 small, h2 small, h3 small {
    font-size: 1.6rem;
    font-weight: normal;
}
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin: 0;
    font-size: 1em;
    /*line-height: 1;*/
    font-weight: normal;
}
.font-serif, .text-serif {
    font-family: Georgia,"Times New Roman",Times,SimSun,FontAwesome,serif;
}
.font-kai, .text-kai {
    font-family: Georgia,"Times New Roman",Times,Kai,"Kaiti SC",KaiTi,BiauKai,FontAwesome,serif;
}
.font-monospace, .text-monospace {
    font-family: Monaco,Menlo,Consolas,"Courier New",FontAwesome,monospace;
}
.text {
    word-wrap: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.text2 {
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    display: box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
}
.tc {
    text-align: center;
}
.ti {
    text-indent: 2em;
}

/*
 * 图片部分
 ************************/
img {
    width: 100%;
    display: block;
}
.circle {
    border-radius: 100%;
}

/*
 * 表格部分
 ************************/
table {
    background-color: transparent;
    empty-cells: show;
    border-spacing: 0;
    border-collapse: collapse;
}
.table {
    width: 100%;
}


/*
 * 按钮/链接部分
 ************************/
a {
    color: #337ab7;
    text-decoration: none;
}
a:hover, a:focus {
    color: #23527c;
    text-decoration: underline;
}
.btn, .link {
    color: inherit;
}
.link:focus, .link:hover,
.btn:focus, .btn:hover {
    text-decoration: none;
}
button {
    font: inherit;
    border: none;
    background: none;
}
.btn:active {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
}
.link {
    position: relative;
    overflow: hidden;
    display: block;
}
.link:after {
    content: "";
    display: block;
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    background: #f5f5f5;
    opacity: 0;
    transition: opacity .1s;
}
.link:active:after {
    opacity: 1;
}
.link > * {
    position: relative;
    z-index: 1;
}
button {
    cursor: pointer;
}

/*
 * 表单部分
 ************************/
input.none {
    border: none;
    background: none;
    font-size: inherit;
    color: inherit;
}
.input {
    display: block;
    width: 100%;
    flex-grow: 1;
    font-size: inherit;
    color: #555;
    background: none;
    padding: .5rem 1rem;
    border: 1px solid #ccc;
    border-radius: .2rem;
}
.form-box:not(:last-of-type) {
    margin-bottom: .8rem;
}
.form-file {
    position: relative;
    overflow: hidden;
}
.form-file input[type="file"] {
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}
.form-file input[type="file"]:focus + label {
    outline: 1px solid #7FA1D8;
    outline: -webkit-focus-ring-color auto 5px;
    outline-offset: -2px;
}

/*
 * 颜色
 ************************/
.red {
    color: #FC0071;
}
.bg-grey {
    background: #f5f5f5;
}
.bg-white {
    background: #fff;
}

/*
 * 列表部分
 ************************/
.nav, .list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.scroller {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
[hidden], template {
    display: none;
}
.hide {
    display: none !important;
}
.disabled, [disabled] {
    pointer-events: none;
    -webkit-user-select: none;
            user-select: none;
}
.clear:before, .clear:after {
    content: "";
    display: table;
}
.clear:after {clear: both}
.seo-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.relative {
    position: relative;
}