/************
 * 页面样式
 ************/

/* ==========
    基本默认值
   ========== */

/**/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

html {
    font-size: 62.5%; /* 10px */
    color: #222;
}

/*选中文字之后的效果*/
::selection {
    /*background-color: #b3d4fc;*/
    /*text-shadow: none;*/
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

/* ==========
    工具样式
   ========== */

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.pull-left {
    float: left !important;
}

.pull-right {
    float: right !important;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

/*隐藏 依然会占据空间*/
.hide {
    display: none !important;
}

.show {
    display: block !important;
}

/*隐藏 不会占用空间*/
.invisible {
    visibility: hidden;
}

/*隐藏文本 如链接用图片来代替了,但是还需要文本时*/
.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

/*清除浮动*/
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

/* ==========
    自定义页面样式
   ========== */

body {
    /*font-size: 1.2rem; !*12px*!*/
    /*line-height: 1.5;*/
    /*background-color: #f7f7f7;*/
    margin: 0 0;
}

/*上方导航样*/
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 44px;
    color: #FFF;
    background-color: #5B8E88;
}
.nav .back {
    cursor: pointer;
    flex: 1;
    display: inline-block;
    font-size: 16px;
    height: 44px;
    background-image: url("../../Public/images/back.png");
    background-size: auto 44px;
    background-repeat: no-repeat;
}
.nav .nav-title {
    flex: 9;
    font-size: 18px;
    text-align: center;
}
.btn-div {
    z-index: 9;
    position: fixed;
    bottom: 0;
    left: 0;
    border-radius: 6px;
    font-size:16px;
    width: 100%;
    height: 44px;
    line-height: 44px;
    color: #FFF;
    background-color: #5B8E88;
    text-align: center;
}

* {
    cursor: pointer;
}
