/*
* 公共样式
*/
@charset "UTF-8";
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 20px;
    background-color: #fff;
}
p, ul, li {
    margin: 0;
    padding: 0;
}
i, em {
    font-style: normal;
}
/*
* login
*/
.form-item {
    display: flex;
    height: 2.4rem;
    line-height: 2.4rem;
    border-bottom: .05rem solid #EAEAEA;
}
.form-item .label {
    width: 5rem;
    color: #999;
    font-size: .7rem;
}
.form-item input {
    height: 2.4rem;
    line-height: 2.4rem;
    color: #333;
    font-size: .7rem;
}
.form-item input::placeholder {
    color: #CCCCCC;
}
.form-item .code {
    color: #3378E0;
    font-size: .7rem;
    white-space: nowrap;
}
.btn.login-btn {
    height: 2.4rem;
    line-height: 2.4rem;
    margin: 1rem 0;
    border-radius: 1.4rem;
    font-size: .9rem;
}
/*
* tab切换
*/
.tab {
    display: flex;
    justify-content: space-between;
    height: 2.2rem;
    line-height: 2.2rem;
    border-bottom: 1px solid  #F5F6F9;
    box-sizing: border-box;
}
.tab > div {
    flex: 1;
    flex-shrink: 0;
    color: #333333;
    font-size: .8rem;
    text-align: center;
    cursor: pointer;
}
.tab > div.active {
    position: relative;
    color: #3378E0;
    font-weight: bold;
    
}
.tab > div.active::after {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 2.2rem;
    height: .1rem;
    margin-left: -1rem;
    background: #3378E0;
    content: '';
}
/*
* 搜索
*/
.search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 15px;
    box-sizing: border-box;
}
.search > span {
    margin-left: .4rem;
    font-size: .6rem;
    color: #333;
    white-space: nowrap;
}
.search > input {
    height: 1.5rem;
    line-height: 1.5rem;
    padding: 0 .5rem 0 1.5rem;
    color: #666;
    font-size: .7rem;
    background-color: #F5F6F9;
    border-radius: .75rem;
}
.search > input::placeholder {
    color: #999999;
}
.search > i {
    color: #999;
    font-size: .9rem;
    position: absolute;
    left: 1.2rem;
    top: .6rem;
}
/*
* 筛选条件
*/
.filter {
    display: flex;
    padding: .5rem 0;
}
.filter > span {
    display: block;
    width: 4rem;
    height: 1.2rem;
    line-height: 1.2rem;
    margin-right: .4rem;
    color: #333;
    font-size: .6rem;
    background-color: #fff;
    border-radius: .2rem;
    text-align: center;
}
.filter > span.active {
    color: #fff;
    background-color: #3378E0;
}
/* 
* 列表
*/
.list > ul > li.item {
    margin-bottom: .5rem;
    background-color: #fff;
    border-radius: .2rem;
    box-shadow: 0 .1rem .1rem rgba(0, 0, 0, .05);
}
.item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: .5rem.5rem .5rem 0;
    border-bottom: .05rem solid #F5F6F9;
    box-sizing: border-box;
}
.item-head .title {
    width: calc(100% - 4rem);
    padding-left: .4rem;
    color: #333;
    font-size: .8rem;
    font-weight: bold;
    border-left: .2rem solid #3378E0;
}
.item-head .position {
    height: 1rem;
    line-height: 1rem;
    padding: 0 .25rem;
    color: #fff;
    font-size: .6rem;
    background: #3378E0;
    border-radius: .2rem;
}
.item-head .position > i {
    padding-right: .2rem;
    font-size: .6rem;
}
.item-head .tag {
    position: absolute;
    right: -.05rem;
    top: .5rem;
    width: 2.6rem;
    height: 1.1rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.item-head .tag.finish {
    background-image: url(../img/finish.png);
}
.item-head .tag.processing {
    background-image: url(../img/processing.png);
}
.item-body {
    padding: .5rem;
}
.item-body > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.item-body .label {
    width: 5rem;
    line-height: 1.4rem;
    color: #999;
    font-size: .7rem;
    text-align: left;
    box-sizing: border-box;
}
.item-body .value {
    flex: 1;
    flex-shrink: 0;
    color: #333;
    font-size: .7rem;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.item-body > div .finish {
    color:  #3378E0;
}
.item-body > div .processing {
    color:  #19BE6B;
}
.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem .5rem .8rem .5rem;
    border-top: .05rem solid #E1E1E1;
}
.item-footer .date {
    color: #999;
    font-size: .6rem;
}
.item-footer .btn {
    width: 5rem;
    height: 1.5rem;
    font-size: .7rem;
    line-height: 1.5rem;
    border-radius: .75rem;
}
/*
* 咨询
*/
.details .title {
    line-height: 1rem;
    margin-bottom: .4rem;
    color: #333;
    font-size: .7rem;
    font-weight: bold;
}
.details .info {
    display: flex;
    justify-content: space-between;
    margin-top: .4rem;
    font-size: .6rem;
    color: #999999;
}
.details .info i {
    display: inline-block;
    margin-right: .2rem;
    font-size: .6rem;
}
/*
* 评价
*/
.comment .title {
    line-height: 1.5rem;
    color: #333;
    font-weight: bold;
}
/*
* textarea
*/
.form-text textarea {
    min-height: 5rem;
    padding: .5rem;
    color: #666;
    font-size: .7rem;
    background-color: #F5F6F9;
    border-radius: .2rem;
}
.form-text textarea::placeholder {
    color: #999;
}
/*
* 星星打分
*/
.scoring > li {
    display: flex;
    align-items: center;
    color: #666;
}
.scoring > li .start {
    display: flex;
    align-items: center;
    margin-left: .5rem;
}
.scoring > li .start > span {
    margin-right: .3rem;
}
.scoring > li .start i {
    font-size: .9rem;
}
.scoring > li .start i.iconfavorite {
    color: #CCCCCC;
}
.scoring > li .start i.iconfavorite-filling {
    color: #F47612;
}
.scoring > li .fraction {
    color: #F47612;
    font-size: .7rem;
    padding-left: 1rem;
}
/*
* 上传图片
*/
.upload {
    width: 5.4rem;
    height: 3.9rem;
    position: relative;
    text-align: center;
    border: .05rem dashed #DDDDDD;
    border-radius: .2rem;
}
.upload > .upload-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    color: #999;
}
.upload > .upload-text > i {
    color: #999;
}
.upload > .upload-text > span {
    line-height: 1rem;
    display: block;
    font-size: .6rem;
}
.upload .upload-input{
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.upload-list {
    display: flex;
    flex-wrap: wrap;
}
.upload-list > img {
    width: 3.75rem;
    height: 3.75rem;
    margin-right: .5rem;
    border-radius: .2rem;
}
/*
* 添加
*/
.add {
    position: fixed;
    right: .75rem;
    bottom: .75rem;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    background-color: #3378E0;
    border-radius: 50%;
    box-shadow: 0 .15rem .3rem rgba(0, 0, 0, .16);
    z-index: 99;
}
.add > i {
    color: #fff;
    font-size: 1.2rem;
}
/*
* 按钮
*/
.footer-btn {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .3rem .75rem;
    background:#fff;
    box-shadow: 0 -.15rem .3rem rgba(228, 233, 242, .64);
}
.btn {
    height: 1.7rem;
    height: 1.7rem;
    line-height: 1.7rem;
    color: #fff;
    font-size: .7rem;
    text-align: center;
    border-radius: .4rem;
}
.btn-more {
    margin: .7rem;
    background-color: #3378E0;
}
/*
* 暂无数据
*/
.no-data {
    width: 100%;
    padding-top: 2rem;
    text-align: center;
}
.no-data > i {
    font-size: 4rem;
    color: #689BEA;
}
.no-data > div.label {
    line-height: 1rem;
    color: #689BEA;
    font-size: .7rem;
    text-align: center;
}
/*
* 图片放大
*/
.popover {
    display: flex;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .8);
    z-index: 999;
}
.popover > img {
    width: 100%;
    height: 80%;
}
/* 
* 字体颜色
*/
.text-primary {

}
.text-success {
    color: #19BE6B !important;
}
.text-info {

}
.text-warning {
    color: #ED4014 !important;
}
.text-danger {

}
.bg-primary {
    background-color: #3378E0 !important;
}
.bg-success {
}
.bg-info {

}
.bg-warning {
}
.bg-danger {

}
.border-primary {
    border: .05rem solid #3378E0 !important;
    color: #3378E0;
}