* {
    margin: 0;
    padding: 0;
    font-family: 'PingFangSC-Light', 'STHeiti Light', 'helvetica neue', 'hiragino sans gb', 'arial', 'microsoft yahei ui', 'microsoft yahei', 'simsun', sans-serif;
}

html, body {
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
    background: #f8f8f8;
    overflow-x: hidden;
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

img {
    border: none;
    vertical-align: middle;
}

a:hover, a:visited, a:link, a:active {
    text-decoration: none;
}

a, button, input {
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3 {
    font-size: inherit;
    font-weight: inherit;
    line-height: 1;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-ellipsis-s {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.none {
    display: none;
}

.border-box {
    box-sizing: border-box;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.dom-link {
    color: #1590e3;
    text-decoration: underline;
}

.vertical-bottom {
    vertical-align: bottom;
}

.gray-space {
    height: 0.6rem;
    background: #eee;
}

.border-bottom {
    border-bottom: 1px solid #E5E7EC;
}

.border-top {
    border-top: 1px solid #E5E7EC;
}

.border-right {
    border-right: 1px solid #E5E7EC;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}

.space-between {
    justify-content: space-between;
}

.flex-baseline {
    align-items: baseline;
}

.flex-full {
    flex: 1;
}

/*grid*/
.row-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    box-sizing: border-box
}
.col {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-flex: 1;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

/*弹窗样式*/
.layer-box {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
}

.layer {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 5px;
    background: #333;
    width: 90%;
    line-height: 3rem;
    margin-top: -0.3rem;
    margin-left: -45%;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    padding: 0.1rem;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*个人中心公共*/
.user{
    /*width: 1200px;*/
    overflow: hidden;
    margin: 0 auto;
}
.user .left{
    float: left;
    /*width: 240px;*/
    overflow: hidden;
}
.user .head{
    padding: 40px 0;
    background: #FFF;
    overflow: hidden;
}
.user .head img{
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin: 0 auto;
}
.user .head .title{
    margin-top: 30px;
    text-align: center;
    font-size:22px;
    font-family:PingFangSC-Medium,PingFang SC;
    font-weight:500;
    color:rgba(1,1,1,1);
    line-height:22px;
}
.user .menu{
    margin-top: 30px;
    background: #fff;
    overflow: hidden;
}
.user .menu .list{
    border-left: solid 3px #fff;
    display: block;
    height: 58px;
    line-height: 58px;
    text-align: center;
    font-size:18px;
    font-family:PingFangSC-Regular,PingFang SC;
    font-weight:500;
    color:#010101;
}
.user .menu .active{
    font-family:PingFangSC-Medium,PingFang SC;
    font-weight:400;
    border-left: solid 3px #E60012;
    color:#E60012 !important;
    background: #f9f9f9;
}
.user .right{
    float: right;
    /*width: 930px;*/
    overflow: hidden;
    background: #fff;
}
.user .tab{
    position: relative;
    height: 70px;
    text-align: center;
    border-bottom: solid 1px #E9E9E9;
}
.user .tab .list{
    position: relative;
    top: 21px;
    display: inline-block;
    padding: 10px;
    font-size:18px;
    font-family:PingFangSC-Regular,PingFang SC;
    font-weight:400;
    color:rgba(1,1,1,1);
    border-bottom: none;
    cursor: pointer;
}
.user .tab .active{
    border-bottom: solid 3px #010101;
    font-family:PingFangSC-Medium,PingFang SC;
    font-weight:500;
}
.user .content{
    padding: 0 40px;
    overflow: hidden;
}
/*个人中心公共*/
/*分页样式*/
.pagination {
    float: right;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    color: #fff !important;
    background-color: #E60012 !important;
    border-color: #E60012 !important;
}
.pagination > li > a, .pagination > li > span {
    color: #E60012 !important;
}