/*
* common.css 项目全局公用css
* 注意：common.css 是根据项目情况来定，不同项目common.css可以不一样
*/
html,body {
    height: 100%;
    width: 100%;
    min-width: 1290px;
    /* max-width: 750px; */
    background-size: 100% 100%;
    background: #fff;
    margin: 0 auto;
    border: none;
    color: #333;
    font-family: "PingFang SC",miui,system-ui,-apple-system,BlinkMacSystemFont,Helvetica Neue,Helvetica,sans-serif;
}
#app {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}
*{
    margin: 0;
    padding: 0;
}
ul, li{
    list-style: none;
}
/* 弹出层阻止页面滚动 */
body.modal-open {
  position: fixed;
  width: 100%;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition-delay: 99999s;
    -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}
.container .fixed-header{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 2.5rem;
    z-index: 2;
    background: #fff;
    text-align: center;
    line-height: 2.5rem;
    background-color: #fafafa;
    border-bottom: #dedede 1px solid;
    color: #333;
}
.container .fixed-header ul{
    display: flex;
    -webkit-display: flex;
    -moz-display: flex;
    width: 100%;
}
.container .fixed-header ul li{
    flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
}
.container .fixed-header ul li.title{
    flex: 2;
    -webkit-flex: flex;
    -moz-flex: flex;
    font-size: .9rem;
    overflow: hidden;
    text-overflow:ellipsis;
    -o-text-overflow:ellipsis;
    -webkit-text-overflow:ellipsis;
    -moz-text-overflow:ellipsis;
    white-space:nowrap;
}
.container .fixed-header ul li.back a{
    color: #333;
}
.container .item-content{
    margin-top: 2.5rem;
    font-size: .7rem;
}
.container .item-self-content{
    margin-top: 3rem;
}

.share-mack-error {
    background: rgba(0, 0, 0, 0.02);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
}
.share-mack-error .tips-warp{
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.share-mack-error .tips-txt {
    color: #FD5E02;
    font-size: 20px;
    width: 100%;
    height: 50px;
    text-align: center;
    font-weight: bold;
}
.share-mack-error .error-bg {
    width: 260px;
    text-align: center;
    margin: 0 auto;
    margin-top: 3.4rem;
}
.share-mack-error .tips-warp .error-bg{
    margin-top: 0;
}
.share-mack-error .error-bg img {
    width: 80%;
    /* height: 8rem; */
}