body, html {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, Helvetica, sans-serif;
    font-size: 20px;
    background-color: #f1f1f1;
}

html, body, div, ul, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, form, input, textarea, th, td, select {
    margin: 0;
    padding: 0;
}

.commonbox * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a, a:hover {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    table-layout: fixed;
}

input, textarea {
    outline: none;
    border: none;
}

/** 清浮动 **/
.clearFix:before, .clearFix:after {
    content: "";
    display: block;
    clear: both;
}

/********** 根据屏幕大小缩放 **********/
/** iPhone6以下 **/
@media (max-width: 320px) {
    html {
        font-size: 18px;
    }
}

/** iPhone6 **/
@media (min-width: 321px) and (max-width: 375px) {
    html {
        font-size: 20px;
    }
}

/** iPhone6 Plus **/
@media (min-width: 376px) and (max-width: 640px) {
    html {
        font-size: 24px;
    }
}

/** 超大屏(ipad、电脑) **/
@media (min-width: 641px) {
    html {
        font-size: 28px;
    }
}

/********** flex布局-默认顶部对齐**********/
/*** 默认：侧轴-顶部对齐；主轴-两端对齐 ***/
.flex-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;

    -webkit-justify-content: space-between;
    justify-content: space-between;

    position: relative;
    width: 100%;
}

/** 固定宽度的元素 **/
/*** 通常根据不同情况加入width, height等属性 ***/
.flex-container .flex-element-fixed {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;

    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;

    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

/** 自适应宽度的元素 **/
.flex-container .flex-element-adaptation {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/*** 侧轴-居中对齐 ***/
.flex-container-middle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/********** 页面布局 **********/
.page.page-padding {
    padding-top: 2.2rem;
}

.page-container {
    width: 100%;
    overflow-x: hidden;
}
/********** 顶部导航 **********/
.header {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 2.2rem;
    line-height: 2.2rem;
    font-size: 0.85rem;
    color: #333;
    text-align: center;
    background-color: #fff;
    border-bottom: solid #e4e4e4 1px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.header .left, .header .right {
    position: absolute;
    top: 50%;
    margin-top: -0.75rem;
}

.header .left {
    left: 0.4rem;
}

.header .right {
    right: 0.4rem;
}

/** 图标 **/
.header .iconfont {
    float: left;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    color: #333;
}

.header .right .iconfont {
    margin-left: 0.4rem;
}

.header .icon-back {
    background-image: url("/image/back_blcak.png");
    -webkit-background-size: 1.5rem;
    background-size: 1.5rem;
}

.header.transparent .icon-back {
    background-image: url("/image/back_white.png");
    -webkit-background-size: 1.5rem;
    background-size: 1.5rem;
}

/** 透明的顶部 **/
.header.transparent {
    background-color: transparent !important;
    border-bottom-color: transparent !important;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: ".";
    width: 0;
    height: 0;
    visibility: hidden;
    display: block;
    clear: both;
    overflow: hidden;
}

.fl {
    float: left
}

.fr {
    float: right
}

.tl {
    text-align: left;
}

.tc {
    text-align: center
}

.tr {
    text-align: right;
}

.ellipse {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.inline {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/*底部下载*/
.footer-download {
    position: fixed;
    z-index: 99999;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.4rem;
    line-height: 2.4rem;
    font-size: 0.7rem;
    color: #fff;
    text-align: center;
    background-color: #439df7;
}
.footer-download .close {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 2.4rem;
    height: 2.4rem;
    /*!*临时*!*/
    background-color: #000;
}

.footer-download a{
    display:block;
    width:100%;
    margin-right:2.4rem;
}

.footer-download p{
    margin-right:2.4rem;
}

.footer-download .close:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    margin-top: -0.55rem;
    margin-right: -0.55rem;
    width: 1.1rem;
    height: 1.1rem;
    background-image: url("../image/icon-close.png");
    -webkit-background-size: 1.1rem;
    background-size: 1.1rem;
}


/********** 评价星标 **********/
.comment-stars-box, .comment-stars-bright {
    height: 13px;
    overflow: hidden;
    background-image: url("../image/icon-stars.png");
    background-repeat: repeat-x;
    -webkit-background-size: 13px;
    background-size: 16px;
}
.comment-stars-box {
    position: relative;
    width: 77px;
    background-position: 0 0;
}
.comment-stars-bright {
    position: absolute;
    top: 0;
    left: 0;
    background-position: 0 -15px;
}

.loading{
    margin: 0;
    font-size: 0;
    text-align: center;
    padding:0.5rem 0;
}

.loading img{
    width:auto;
}


.over-flow-y-ban{
    height: 100%;
    overflow-y: hidden;
}

.over-flow-y-sroll{
    float: left;
    height: 9rem;
    overflow: scroll;
    width: auto;
}


/**
暂无数据样式
 */
.default-back-img {
    display: block;
    background: #f1f1f1;
    width: 100%;
    height: 15.3rem;
    bottom: 0;
    background-size: 18.75rem 11.4rem!important;
    background-position: center 100%!important;
    background: url("/image/default.jpg");
    background-repeat: no-repeat;
}
.default-text {
    text-align: center;
    width: 100%;
    color: #999;
    font-weight: 700;
    font-size: 15px;
}


/*底线样式*/
.bar-bottom {
    padding: 1.25rem 0;
    font-size: 0.65rem;
    color: #ddd;
    text-align: center;
}

.bar-bottom span {
    position: relative;
}

.bar-bottom span:before, .bar-bottom span:after {
    content: '';
    position: absolute;
    top: 50%;
    margin: 0 0.4rem;
    width: 2rem;
    height: 1px;
    background-color: #e4e4e4;
}

.bar-bottom span:before {
    right: 100%;
}

.bar-bottom span:after {
    left: 100%;
}