/*动画效果*/
.wpt-leave {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}
.wpt-leave.wpt-leave-active {
  opacity: 0.01;
}
.wpt-enter {
  opacity: 0.01;
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}
.wpt-enter.wpt-enter-active {
  opacity: 1;
}
.flip-left {
  -webkit-animation: flipLeft 0.3s ease-out;
  animation: flipLeft 0.3s ease-out;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes flipLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0);
    opacity: 1;
  }
}
@keyframes flipLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    opacity: 1;
  }
}
.flip-right {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: flipRight 0.3s ease-out;
  animation: flipRight 0.3s ease-out;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes flipRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes flipRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.flip-up-site {
  -webkit-animation: flipUpSite 0.3s ease-out;
  animation: flipUpSite 0.3s ease-out;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes flipUpSite {
  0% {
    -webkit-transform: translateY(8rem);
    opacity: 0;
  }
  90% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
@keyframes flipUpSite {
  0% {
    -webkit-transform: translateY(8rem);
            transform: translateY(8rem);
    opacity: 0;
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes optionBlockUp
{
from { display: none; bottom:-100%;}
to { display: block; bottom:0;}
}
@-webkit-keyframes optionBlockUp
{
from { display: none; bottom:-100%;}
to { display: block; bottom:0;}
}
.nctouch-bottom-mask.down { animation: optionBlockDown 0.5s ease-in-out; -webkit-animation:optionBlockDown 0.5s ease-in-out; }
@keyframes optionBlockDown
{
from { display: block; bottom:0;}
to { display: none; bottom:-100%;}
}
@-webkit-keyframes optionBlockDown
{
from { display: block; bottom:0; opacity: 1;}
to { display: none; bottom:-100%; opacity: 0;}
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    /*初始状态 透明度为0*/
  }
  40% {
    opacity: 0;
    /*中间状态 透明度为0*/
  }
  100% {
    opacity: 1;
    /*结尾状态 透明度为1*/
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    /*初始状态 透明度为0*/
  }
  40% {
    opacity: 0;
    /*中间状态 透明度为0*/
  }
  100% {
    opacity: 1;
    /*结尾状态 透明度为1*/
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  /*动画名称*/
  -webkit-animation-duration: 1.0s;
  /*动画持续时间*/
  -webkit-animation-iteration-count: 1;
  /*动画次数*/
  -webkit-animation-delay: 0s;
  /*延迟时间*/
  animation-name: fadeIn;
  /*动画名称*/
  animation-duration: 1.0s;
  /*动画持续时间*/
  animation-iteration-count: 1;
  /*动画次数*/
  animation-delay: 0s;
  /*延迟时间*/
}
.imgFadeIn {
  -webkit-animation-name: imgFadeIn;
  /*动画名称Copyright: www.bizpower.com*/
  -webkit-animation-duration: 1.0s;
  /*动画持续时间*/
  -webkit-animation-iteration-count: 1;
  /*动画次数*/
  -webkit-animation-delay: 0s;
  /*延迟时间*/
  -webkit-animation-timing-function: ease-out;
  animation-name: imgFadeIn;
  /*动画名称*/
  animation-duration: 1.0s;
  /*动画持续时间*/
  animation-iteration-count: 1;
  /*动画次数*/
  animation-delay: 0s;
  /*延迟时间*/
  animation-timing-function: ease-out;
}
@-webkit-keyframes imgFadeIn {
  0% {
    opacity: 0;
    /*初始状态 透明度为0*/
  }
  100% {
    opacity: 1;
    /*结尾状态 透明度为1*/
  }
}
@keyframes imgFadeIn {
  0% {
    opacity: 0;
    /*初始状态 透明度为0*/
  }
  100% {
    opacity: 1;
    /*结尾状态 透明度为1*/
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    /*初始状态 透明度为0*/
  }
  50% {
    opacity: 0.5;
    /*中间状态 透明度为0*/
  }
  100% {
    opacity: 0;
    /*结尾状态 透明度为1*/
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  /*动画名称*/
  -webkit-animation-duration: 0.5s;
  /*动画持续时间*/
  -webkit-animation-iteration-count: 1;
  /*动画次数*/
  -webkit-animation-delay: 0s;
  /*延迟时间*/
}
@keyframes loadingOption {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes loadingOption {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
  }
  5% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
  }
}
/*orders item 列表的动画效果*/
.list-complete-move{transition:transform 0.5s;}
.list-complete-item{transition:all 0.5s;display:inline-block;}
.list-complete-enter,.list-complete-leave-active{opacity:0;transform:translateY(30px);}
.list-complete-leave-active{position:absolute;}
/*晒宝*/
[v-cloak]{display: none;}
#header{position: fixed; z-index: 998}
#J_Page{ width: 100% }
#Page{ background: #fff; margin-top: 3.9rem;}
body{background: #EEE}

.Page-articleEdit .articleEdit {background-color: #EEEEEE;width: 100%;display: table;}
.Page-articleEdit .articleEdit .header {height: 1.9rem;background-color: #FFF;line-height: 1.9rem;border-bottom: 1px solid #d9d9d9;font-size: 0.68rem;width: 100%;position: fixed;top:2rem;left: 0rem;z-index: 99;}
.Page-articleEdit .articleEdit .header .draft {color: #888;padding: 0 0.65rem;float: left;}
.Page-articleEdit .articleEdit .header .delete {color: #888;padding: 0 0.65rem;float: left;cursor: pointer;}
.Page-articleEdit .articleEdit .header .success {padding: 0 0.65rem;color: #13ae24;float: right;cursor: pointer;}
.Page-articleEdit .articleEdit .header .preview {padding: 0 0.65rem;color: #13ae24;float: right;cursor: pointer;}
.Page-articleEdit .articleEdit .articleSetting {margin-top: 0.66rem;width: 100%;background-color: #FFF;display: table;padding: 0.44rem 0;}
.Page-articleEdit .articleEdit .articleSetting .settingMain {width: 92%;margin-left: 4%;font-size: 0.68rem;}
.Page-articleEdit .articleEdit .articleSetting .settingMain .cover {width: 5.740rem;height: 5.740rem;float: left;display: block;position: relative;background-repeat: no-repeat;background-position: left center;background-size: cover;}
.Page-articleEdit .articleEdit .articleSetting .settingMain .titleTemplate {float: right;width: 8.84rem;height: 5.74rem;position: relative;}
.Page-articleEdit .articleEdit .articleSetting .settingMain .titleTemplate .title {line-height: 1.22rem;height: 3.32rem;width: 100%;overflow: hidden;display: inline-block; word-break: break-all;}
.Page-articleEdit .articleEdit .articleSetting .settingMain .titleTemplate .title.noTitle {background-image: url(../images/addItemIcon.png);background-repeat: no-repeat;background-position: left 0.2rem;background-size: 0.66rem;text-indent: 0.9rem;color: #888888;}
.Page-articleEdit .articleEdit .articleSetting .settingMain .titleTemplate .selectTemplate {background-image: url(../images/tools.png);background-repeat: no-repeat;background-size:1rem;padding-left: 1.2rem;background-position: 0 22%;position: absolute;bottom: 0px;right: 0px;cursor: pointer;}
.Page-articleEdit .articleEdit .articleMusic,.Page-articleEdit .articleEdit .articleChosen {background-color: #FFF;height: 1.8rem;border-top: 1px solid #EEEEEE;display: table;width: 100%;}
.Page-articleEdit .articleEdit .articleMusic .musicMain,.Page-articleEdit .articleEdit .articleChosen .recommend-join {width: 92%;margin-left: 4%;font-size: 0.68rem;line-height: 1.8rem;}
.Page-articleEdit .articleEdit .articleMusic .musicMain .musicAudio {float: left;min-width: 8.82rem;}
.Page-articleEdit .articleEdit .articleMusic .musicMain .musicAudio .my_audio {background: none;margin-top: 0.1rem;}
.Page-articleEdit .articleEdit .articleMusic .musicMain .musicAudio .my_audio .btn_play {margin-left: 0rem;cursor: pointer;}
.Page-articleEdit .articleEdit .articleMusic .musicMain .musicAudio.noAudio {color: #aaaaaa;background-size: 15px;background-position: left center;background-repeat: no-repeat;background-image: url(../images/noMusic.png);text-indent: 20px;}

.Page-articleEdit .articleEdit .articleChosen .recommend-join input[type="checkbox"]:checked{border-color:#28da46; background:#28da46 }
.Page-articleEdit .articleEdit .articleChosen .recommend-join label{padding-left: 0.2rem}

.module_audio .my_audio {background-color: rgba(0, 0, 0, 0.08);height: 1.6rem;width: 100%;}
.Page-articleEdit .articleEdit .articleMusic .musicMain .musicAudio .btn_play {background-repeat: no-repeat;background-position: left center;background-size: 100%;float: left;margin-left: 15px;display: block;width: 0.64rem;height: 0.72rem;margin-top: 0.44rem;}
.Page-articleEdit .articleEdit .articleMusic .musicMain .musicAudio .name {padding-left: 0.5rem;color: #AAA;float: left;font-size: 14px;line-height: 1.6rem;}
.Page-articleEdit .articleEdit .articleMusic .musicMain .musicAudio .pause {background-image: url(../images/pause.png)}
.Page-articleEdit .articleEdit .articleMusic .musicMain .musicAudio .play {background-image: url(../images/play.png)}

/*Copyright: BIZPOWER*/
.Page-articleEdit .articleEdit .articleMusic .musicMain .selectMusic {background-image: url(../images/tools.png);background-repeat: no-repeat;background-size: 1rem;padding-left: 1.2rem;float: right;background-position: left 0.07rem;cursor: pointer;}
.Page-articleEdit .articleEdit .addItem {width: 1.54rem;height: 1.32rem;box-sizing: border-box;border-radius: 0.18rem;margin: 0.76rem auto;position: relative;}
.Page-articleEdit .articleEdit .addItem:after {content: "＋";position: absolute;left: 50%;top: -0.04rem;line-height: 1.36rem;height: 1.36rem;width: 1.54rem;margin-left: -0.75rem;text-align: center;font-size: 0.84rem;color: #a4a4a4;cursor: pointer; background: #eee; border-radius: 0.18rem; border:0.05rem solid #d6d6d6;}
.Page-articleEdit .articleEdit .itemTools {width: 100%;height: 2rem;background-color: #FFF;margin: 0.4rem 0;}
.Page-articleEdit .articleEdit .itemTools .main {margin: 0 auto;font-size: 0.68rem;padding-left: 0.8rem;height: 2rem;line-height: 2rem;display: table;}
.Page-articleEdit .articleEdit .itemTools .main .item {float: left;background-image: url(../images/tools.png);background-repeat: no-repeat;background-position: left top;background-size: 1rem;width: 2.2rem;height: 2rem;line-height: 2rem;padding-left: 1.2rem;cursor: pointer;}
.Page-articleEdit .articleEdit .itemTools .main .item-span-4 {width: 3.2rem;}
.Page-articleEdit .articleEdit .itemTools .main .img {background-position: 0 -3.05rem;}
.Page-articleEdit .articleEdit .itemTools .main .txt {background-position: 0 -4.65rem;}
.Page-articleEdit .articleEdit .itemTools .main .sale {background-position: 0 -6.25rem;}
.Page-articleEdit .articleEdit .itemTools .main .extension{background-position: 0 -7.85rem;}

.Page-articleEdit .articleEdit .contentItem {display: inline-block;width: 100%;}
.Page-articleEdit .articleEdit .articleItem {background-color: #FFF;width: 100%;position: relative;padding-top: 0.44rem;}
.Page-articleEdit .articleEdit .articleItem .itemImg {width: 92%;height: 7.1rem;background-repeat: no-repeat;background-position: center center;background-size: cover;position: relative;z-index: 1;margin: 0rem auto 0.45rem;}
.Page-articleEdit .articleEdit .articleItem .itemTxt {width: 92%;line-height: 1rem;font-size: 0.68rem;color: #424242;margin: 0rem auto 0.45rem;overflow: hidden;max-height: 2rem;text-overflow: ellipsis;white-space: pre-line;word-wrap: break-word; word-break: break-all;}
.Page-articleEdit .articleEdit .articleItem .itemTxt.moreTxt {max-height: 4.96rem;}
.Page-articleEdit .articleEdit .articleItem .delItem {background-image: url(../images/delItem.png);-webkit-tap-highlight-color: rgba(255, 0, 0, 0);background-repeat: no-repeat; background-position: center center;background-size: 1rem;position: absolute;top: 0.2rem;left: 0.2rem;display: block;width: 1.1rem;height: 1.1rem;outline: none;z-index: 2;}
.Page-articleEdit .articleEdit .articleItem .toolsMain {border-top: 0.05rem solid #EEEEEE;width: 100%;}
.Page-articleEdit .articleEdit .articleItem .toolsMain .tools {height: 2rem;width: 96%;margin-left: 4%;display: -webkit-box;display: -ms-flexbox;display: -webkit-flex;display: flex;}
.Page-articleEdit .articleEdit .articleItem .toolsMain .tools .add {color: #888888;font-size: 0.68rem;line-height: 2rem;background-image: url(../images/addItemIcon.png);background-repeat: no-repeat;background-position: left 0.62rem;background-size: 0.66rem;text-indent: 0.88rem;-ms-flex: 1;flex: 1;-webkit-flex: 1;-webkit-box-flex: 1;overflow: hidden;}
.Page-articleEdit .articleEdit .articleItem .toolsMain .tools .add.edit {background-image: url(../images/editIcon.png);background-size: 0.88rem;background-position: left center;background-repeat: no-repeat;}
.Page-articleEdit .articleEdit .articleItem .toolsMain .tools .position {width: 4.4rem;border-left: 0.05rem solid #EEEEEE;}
.Page-articleEdit .articleEdit .articleItem .toolsMain .tools .position .down {background-image: url(../images/downIcon.png);background-repeat: no-repeat;background-position: center center;background-size: 1rem;display: block;width: 0.98rem;height: 0.98rem;float: right;padding: 0.51rem 0.79rem 0.51rem 0.40rem;}
.Page-articleEdit .articleEdit .articleItem .toolsMain .tools .position .down.disabled {background-image: url(../images/downDisabledIcon.png);}
.Page-articleEdit .articleEdit .articleItem .toolsMain .tools .position .up {background-image: url(../images/upIcon.png);background-repeat: no-repeat;background-position: center center;background-size: 1rem;display: block;width: 0.98rem;height: 0.98rem;padding: 0.51rem 0.40rem 0.51rem 0.79rem;float: right;}
.Page-articleEdit .articleEdit .articleItem .toolsMain .tools .position .up.disabled {background-image: url(../images/upDisableIcon.png);}
.Page-articleEdit .articleEdit .articleItem.sale .itemImg:after {content: "商品"; position: absolute; top: 0px; left: 0px; width: 1.8rem; height: 1.66rem; background-image: url(../images/articleSaleIcon.png); background-repeat: no-repeat; background-position: center center; background-size: cover; font-size: 17px; color: #FFF; text-align: center; line-height: 1.5rem; }
.Page-articleEdit .articleEdit .articleItem.dist .itemImg:after {content: "推广"; position: absolute; top: 0px; left: 0px; width: 1.8rem; height: 1.66rem; background-image: url(../images/articleSaleIcon.png); background-repeat: no-repeat; background-position: center center; background-size: cover; font-size: 17px; color: #FFF; text-align: center; line-height: 1.5rem; }
/*背景音乐切换*/
.module_audio .my_audio {background-color: rgba(0, 0, 0, 0.08);height: 1.6rem;width: 100%;}
.module_audio .my_audio .btn_play {background-repeat: no-repeat;background-position: left center;background-size: 100%;float: left;margin-left: 15px;display: block;width: 0.64rem;height: 0.72rem;margin-top: 0.44rem;}
.module_audio .my_audio .name {padding-left: 0.4rem;color: #AAA;float: left;font-size: 14px;line-height: 1.6rem;}
.module_audio .my_audio .pause {background-image: url(../images/pause.png)}
.module_audio .my_audio .play {background-image: url(../images/play.png)}

.musicContent {z-index: 999;position: relative;}
.musicContent .mask {position: fixed;top: 0;width: 100%;height: 100%;background: rgba(0, 0, 0, 0.4);}
.musicContent .mask .saveBanner {position: fixed;right: 0;bottom: 75%;width: 100%;/*left: 50%;margin-left: -8.28rem;*/color: #13AE24;z-index: 10000;height: 2rem;font-size: 0.76rem;line-height: 2rem;box-sizing: border-box;background-color: #FFF;}
.musicContent .mask .saveBanner .save {display: table;float: right;padding: 0 0.66rem;}
.musicContent .mask .saveBanner:before {position: absolute;content: '';left: 0;bottom: 0;height: 0.04rem;width: 100%;-ms-transform: scaleY(0.5);transform: scaleY(0.5);background-color: #D9D9D9;-webkit-transform: scaleY(0.5);}
.musicContent .musicMain {position: fixed;top: 25%;width: 100%;height: 75%;overflow-y: scroll;box-sizing: border-box;background-color: #EEE;-webkit-overflow-scrolling: touch;}
.musicContent .musicMain .group .tips {color: #888;padding: 0.33rem 0;font-size: 0.68rem;line-height: 0.88rem;margin-left: 0.66rem;}
.musicContent .musicMain .group .list {background-color: #FFF}
.musicContent .musicMain .group .list .item {position: relative;outline: none;color: #424242;overflow: hidden;font-size: 0.72rem;line-height: 2rem;text-indent: 0.66rem;-webkit-tap-highlight-color: rgba(255, 0, 0, 0);}
.musicContent .musicMain .group .list .item .switch,.head-tool-switch{position: absolute;top: 0.26rem;right: 0.66rem;width: 2.38rem;height: 1.46rem;overflow: hidden;border-radius: 0.73rem;box-sizing: border-box;border: solid 0.01rem #DFDFDF;background-size: auto 1.46rem;background-repeat: no-repeat;background-position: -0.97rem 50%;background-image: url(../images/switchButton.png);-webkit-transition: background-position 0.2s ease-in-out;}
.musicContent .musicMain .group .list .item .switch.open,.head-tool-switch.open {background-position: 0 50%;}
.musicContent .musicMain .group .list .item:before {position: absolute;content: '';top: 0;height: 1px;left: 4%;width: 96%;-ms-transform: scaleY(0.5);transform: scaleY(0.5);background-color: #EEE;-webkit-transform: scaleY(0.5);}
.musicContent .musicMain .group .list .item:first-child:before {height: 0;}
.musicContent .musicMain .group .list .item.selected:after {position: absolute;content: '';top: 0;right: 0.66rem;width: 1.1rem;height: 2rem;background-size: 0.6rem;background-position: right;background-repeat: no-repeat;background-image: url(../images/selected.png);}

/*模板*/
.modules_template .template_mask {position: fixed;width: 100%;opacity: 0.38;top: 0px;bottom: 0px;background-color: #232326;z-index: 999;}
.modules_template .template_main {position: fixed;bottom: 0px;left: auto;z-index: 1199;background: #F0F0F0;width: 100%;}
.modules_template .template_main .head {position: relative;font-size: 0.68rem;height: 2rem;line-height: 2rem;background: #ffffff;margin-bottom: 0.22rem;}
.modules_template .template_main .head .cancel {color: #948b8b;}
.modules_template .template_main .head .save {padding: 0 0.66rem;color: #13AE24;}
.modules_template .template_main .head:before {position: absolute;content: '';left: 0;bottom: 0;height: 0.04rem;width: 100%;-ms-transform: scaleY(0.5);transform: scaleY(0.5);background-color: #D9D9D9;-webkit-transform: scaleY(0.5);}
.modules_template .template_main .imgs {-webkit-overflow-scrolling: touch;height: 14.6rem;max-height: 21.2rem;overflow: auto;padding: 0 0.4rem;}
.modules_template .template_main .imgs .item {margin: 0.44rem 1%;width: 31.13%;overflow: hidden;position: relative;}
.modules_template .template_main .imgs .item img {width: 100%;height: auto;}
.modules_template .template_main .imgs .item .logo {position: absolute;top: 0.35rem;right: 0.35rem;width: 1.1rem;height: auto;}
.head-tool{position: relative;font-size: 0.68rem;height: 2rem;line-height: 2rem;background: #ffffff;margin-bottom: 0.22rem;color: #424242;font-size: 0.72rem;line-height: 2rem;text-indent: 0.66rem;-webkit-tap-highlight-color: rgba(255, 0, 0, 0);}

/*文字*/
.model_autoresizeTextarea {width: 100%;height: 4.4rem;box-sizing: border-box;}
.modules_textEdit {opacity: 1;position: absolute;width: 100%;top: 0;bottom: 0;left: 0;z-index: 999;background-color: #FFF;}
.modules_textEdit .topBox .head {font-size: 0.64rem;height: 1.9rem;line-height: 1.9rem;background: #ffffff;}
.modules_textEdit .topBox .head .cancel {color: #948b8b;padding: 0 0.66rem;cursor: pointer;}
.modules_textEdit .topBox .head .save {color: #13ae24;padding: 0 0.66rem;cursor: pointer;}
.modules_textEdit .topBox .head .save.disabled {color: #948b8b;}

.modules_textEdit .topBox .desc {font-size: 0.72rem;padding: 0 0.66rem;height: 0.44rem;line-height: 1.9rem;background: #eeeeee;color: #424242;}
.modules_textEdit .topBox .fullDesc {height: 1.5rem;line-height: 1.9rem;padding-bottom: 0.44rem;overflow: hidden;}
.modules_textEdit .txtNum {height: 1.1rem;line-height: 1.32rem;font-size: 0.52rem;text-align: right;padding-right: 0.66rem;color: #888;}
.modules_textEdit textarea.textEdit_textarea {box-sizing: border-box;font-size: 0.66rem;line-height: 1.1rem;border: 0;padding: 0.44rem 0.66rem 0.8rem 0.66rem;width: 100%;min-height: 6.62rem;overflow: auto;-webkit-overflow-scrolling: touch;}


/*拍品*/
.modules_goodsList .goodsMask {position: fixed;width: 100%;opacity: 0.38;top: 0;bottom: 0;background-color: #232326;z-index: 999;}
.modules_goodsList .goodsMain {position: fixed;bottom: 0;left: auto;z-index: 1199;background-color: #EEE;width: 100%;}
.modules_goodsList .goodsMain .goodsTypeMenu {width: 100%;background-color: #EEE;padding-bottom: 0.44rem;height: 2rem;}
.modules_goodsList .goodsMain .goodsTypeMenu .back{position:absolute;z-index:9999;display:block;width:1rem;height:1rem;padding:0.4775rem;background-image:url(../images/arrow_left_b.png);background-position:50% 50%;background-repeat:no-repeat;background-size:40%;opacity:0.5;}
.modules_goodsList .goodsMain .goodsTypeMenu ul {width: 100%;display: table;background-color: #FFF;}
.modules_goodsList .goodsMain .goodsTypeMenu ul li {width: 49.5%;float: left;color: #232326;font-size: 0.68rem;text-align: center;}
.modules_goodsList .goodsMain .goodsTypeMenu ul li div {width: 50%;height: 1.94rem;line-height: 2rem;margin: auto;}
.modules_goodsList .goodsMain .goodsTypeMenu ul .selected {color: #169ada;}
.modules_goodsList .goodsMain .goodsTypeMenu ul .finishedLi {width: 100%;color: #169ada;}
.modules_goodsList .wall-container {height: 16.56rem;overflow: auto;-webkit-overflow-scrolling: touch;}
.modules_goodsList .goodsMain .saleBox {background-color: #EEE;}
.modules_goodsList .goodsMain .saleBox .noData {width: 100%;height: 6.62rem;padding-top: 8.4rem;color: #878787;font-size: 0.8rem;line-height: 1.32rem;text-align: center;background: url(../images/notExistOrderIcon.png) no-repeat 50% 3.52rem;background-size: 4.42rem;}
.modules_goodsList .goodsMain .saleBox .saleItem {width: 100%;overflow: hidden;font-size: 0.6rem;margin-bottom: 0.44rem;background-color: #fff;}
.modules_goodsList .goodsMain .saleBox .saleItem .info {width: 92%;height: 1.77rem;margin: 0 4%;padding: 0.44rem 0;display: table;}
.modules_goodsList .goodsMain .saleBox .saleItem .info .content {position: relative;float: left;width: 100%;}
.modules_goodsList .goodsMain .saleBox .saleItem .info .content .goodsImg {width: 3.8rem;height: 3.8rem;float: left;margin-right: 0.44rem;background-position: center;background-size: cover;background-repeat: no-repeat;}
.modules_goodsList .goodsMain .saleBox .saleItem .info .content .desc {position: relative;height: 3.8rem;color: #424242;word-break: break-all;text-overflow: ellipsis;width: 100%;}
.modules_goodsList .goodsMain .saleBox .saleItem .info .content .desc .title {height: 2rem;line-height: 1rem;overflow: hidden; color: #232326}
.modules_goodsList .goodsMain .saleBox .saleItem .info .content .desc .bottom {position: absolute;left: 4.2rem;bottom:0.35rem;color: #848689;}
.modules_goodsList .goodsMain .saleBox .saleItem .info .content .desc .bottom .price,.modules_goodsList .goodsMain .saleBox .saleItem .info .content .desc .bottom .time{ line-height: 0.9rem;}
.modules_goodsList .goodsMain .saleBox .saleItem .info .content .desc .bottom .price .priceValue {display: inline;color: #9e0006;}
.modules_goodsList .goodsMain .saleBox .saleItem .info .content .desc .bottom .price .priceValue .money{font-size: 0.8rem; font-family: "arial"; color: #F23030; vertical-align: baseline;}
.modules_goodsList .goodsMain .saleBox .saleItem .tools {width: 92%;padding: 0.32rem 4%;text-align: right;border: 0 dotted #ddd;border-top-width: 0.05rem;height: 1.12rem;line-height: 1.12rem;}
.modules_goodsList .goodsMain .saleBox .saleItem .tools .selectButton {width: 20%;height: 1.04rem;border: 0.05rem solid #888;border-radius: 0.08rem;text-align: center;float: right;}

/*推广商品*/
.modules_goodsList .goodsMain .fav-box{background-color: #EEE;}
.modules_goodsList .goodsMain .fav-box .noData{width: 100%;height: 6.62rem;padding-top: 8.4rem;color: #878787;font-size: 0.8rem;line-height: 1.32rem;text-align: center;background: url(../images/notExistOrderIcon.png) no-repeat 50% 3.52rem;background-size: 4.42rem;}
.modules_goodsList .goodsMain .fav-box .fav-item{width: 49%;float:left;overflow: hidden;font-size: 0.55rem;margin-bottom: 0.3rem;background-color: #fff;}
.modules_goodsList .goodsMain .fav-box .fav-item:nth-child(2n){float: right;}

.modules_goodsList .goodsMain .fav-box .fav-item .fav-item-name,.modules_goodsList .goodsMain .fav-box .fav-item .fav-item-count{ width: 86%; padding:0.2rem 0 0; margin:0 7%; height: 1rem;font-size: 0.65rem; line-height: 1rem; color: #666; overflow: hidden; word-break: break-all; font-family: "微软雅黑"}
.modules_goodsList .goodsMain .fav-box .fav-item .fav-item-name{margin-top:0.2rem;}
.modules_goodsList .goodsMain .fav-box .fav-item .fav-item-count{ padding-bottom:0.55rem; border-bottom: 0.05rem dashed #ddd }
.modules_goodsList .goodsMain .fav-box .fav-item .fav-item-goods-box{ width: 86%;padding:0.6rem 0 0; margin:0 7%; overflow: hidden; height: 1.4rem; margin-bottom: 0.6rem}
.modules_goodsList .goodsMain .fav-box .fav-item .fav-item-goods-box ul li{ width: 1.25rem; height:1.25rem; margin:0 0.2rem; float: left; border:0.05rem solid #eee; }
.modules_goodsList .goodsMain .fav-box .fav-item .fav-item-goods-box ul li:first-child{margin-left:0;}
.modules_goodsList .goodsMain .fav-box .fav-item .fav-item-goods-box ul li:last-child{margin-right:0;}
.modules_goodsList .goodsMain .fav-box .fav-item .fav-item-goods-box ul li img{width: 1.25rem;height: 1.25rem}

/*我的晒宝*/
.Page-exhibitsMain {background-color: #EEE;position: absolute;width: 100%; z-index: 5}
.Page-exhibitsMain .userBox {position: relative;width: 100%;height: 3.6rem;overflow: hidden;background-color: #FFF;border-top: 0.4rem solid #eee;}
.Page-exhibitsMain .userBox .avatar {float: left;border: 0.05rem solid #eee;background-color: #FFF;border-radius: 1.4rem;overflow: hidden;background-repeat: no-repeat;background-position: center center;background-size: cover;height: 2.8rem;width: 2.8rem;margin: 0.3rem 0.3rem 0.3rem 0.6rem;}
.Page-exhibitsMain .userBox .avatar img {width: 2.64rem;height: 2.64rem;padding: 0.08rem;border-radius: 1.36rem;border: 0;display: block;}
.Page-exhibitsMain .userBox .infoBox {margin: 0 0.66rem 0 3.6rem;background-size: 0.56rem;background-repeat: no-repeat;background-position: right center;}
.Page-exhibitsMain .userBox .infoBox .userInfo {height: 0.8rem;line-height: 0.8rem;margin: 1rem 0 0.2rem;}
.Page-exhibitsMain .userBox .infoBox .userInfo a .nickName,.Page-exhibitsMain .userBox .infoBox .userInfo .nickName {float: left;font-size: 0.64rem;padding-right: 0.2rem;color: #424242;}
.Page-exhibitsMain .userBox .infoBox .userInfo .buyerLevel,
.Page-exhibitsMain .userBox .infoBox .userInfo .sellerLevel {float: left;width: 1.12rem;height: 0.6rem;margin-top: 0.08rem;margin-right: 0.16rem;background-repeat: no-repeat;background-size: 1.12rem;background-image: url(../images/sellerLevels.png);}
.Page-exhibitsMain .userBox .infoBox .userInfo .lv1 {background-position: 0 0;}
.Page-exhibitsMain .userBox .infoBox .userInfo .lv2 {background-position: 0 -0.6rem;}
.Page-exhibitsMain .userBox .infoBox .userInfo .lv3 {background-position: 0 -1.2rem;}
.Page-exhibitsMain .userBox .infoBox .userInfo .lv4 {background-position: 0 -1.8rem;}
.Page-exhibitsMain .userBox .infoBox .userInfo .lv5 {background-position: 0 -2.4rem;}
.Page-exhibitsMain .userBox .infoBox .articleInfo {color: #888;height: 0.8rem;font-size: 0.6rem;line-height: 0.8rem;}
.Page-exhibitsMain .userBox .infoBox .articleInfo .preview {float: left;padding-right: 0.38rem;}
.Page-exhibitsMain .userBox:after {position: absolute;content: '';left: 0;bottom: 0;width: 100%;height: 0.04rem;-ms-transform: scaleY(0.5);transform: scaleY(0.5);background-color: #D9D9D9;-webkit-transform: scaleY(0.5);}

/*精彩案例*/
.Page-exhibitsMain .recommendCase {width: 100%;height: 1.8rem;margin-bottom: 0.44rem;background-color: #FFF;}
.Page-exhibitsMain .recommendCase .title {float: left;color: #424242;font-size: 0.64rem;line-height: 1.8rem;padding-left: 1.8rem;background-repeat: no-repeat;background-size: 0.82rem;background-position: 0.66rem center;background-image: url(../images/recommend.png);}
.Page-exhibitsMain .recommendCase .avatar {position: relative;float: right;width: 1.2rem;height: 1.2rem;padding-right: 1.12rem;background-size: 1.2rem;background-repeat: no-repeat;margin: 0.3rem 0.6rem 0.3rem 0;background-position: left center;}
.Page-exhibitsMain .recommendCase .avatar:after {position: absolute;content: '';top: 0;right: 0;width: 0.56rem;height: 1.2rem;background-size: 0.56rem;background-position: center;background-repeat: no-repeat;background-image: url(../images/gray_right_arrow.png);}

/*我的晒宝列表*/
.Page-exhibitsMain .list {overflow: hidden;font-family: 'Microsoft Yahei', Simsun, Arial, 'Segoe UI', sans-serif;}
.Page-exhibitsMain .list .item {margin-bottom: 0.44rem;}
.Page-exhibitsMain .list .item .cover {position: relative;width: 100%;height: 12.36rem;overflow: hidden;box-sizing: border-box;background-size: cover;border: 0.44rem solid #FFF;background-position: center;background-repeat: no-repeat;}
.Page-exhibitsMain .list .item .cover .text {position: absolute;top: 0;left: 0;z-index: 1;width: 100%;height: 100%;}
.Page-exhibitsMain .list .item .cover .text .title {color: #FFF;overflow: hidden;font-size: 0.64rem;display: -webkit-box;-webkit-line-clamp: 1;padding: 8.6rem 0.66rem 0;-webkit-box-orient: vertical;}
.Page-exhibitsMain .list .item .cover .text .time {float: left;color: #FFF;overflow: hidden;font-size: 0.6rem;padding: 0.44rem 0.66rem;}
.Page-exhibitsMain .list .item .cover .text .edit {color: #FFF;float: right;overflow: hidden;font-size: 0.6rem;background-size: 0.8rem;background-repeat: no-repeat;background-position: left center;padding: 0.44rem 0.6rem 0.44rem 1rem;background-image: url(../images/editIconWhite.png);}
.Page-exhibitsMain .list .item .cover .text .draft {position: absolute;top: 0.44rem;color: #FFF;left: 0.44rem;font-size: 0.76rem;text-shadow: 0.04rem 0.08rem rgba(0, 0, 0, 0.3);}
.Page-exhibitsMain .list .item .cover .shadow {position: absolute;bottom: 0;z-index: 1;width: 100%;height: 100%;background-size: 100% auto;background-repeat: no-repeat;background-position: center bottom;background-image: url(../images/shadow.png);}

/*底部按钮*/
.Page-exhibitsMain .menu {position: fixed;bottom: 0;width: 100%;font-size: 0.48rem;height: 2rem;background-color: #FCFCFC;border-top: 0.05rem solid #EAEAE8;z-index: 99;}
.Page-exhibitsMain .menu .home,.Page-exhibitsMain .menu .my {width: 35%;color: #888;float: left;height: 0.88rem;line-height: 0.88rem;padding-top: 1.12rem;text-align: center;background-size: 2rem auto;background-repeat: no-repeat;background-position: center -0.28rem;background-image: url(../images/toolsGray.png);}
.Page-exhibitsMain .menu .publish {position: absolute;left: 50%;width: 2.4rem;height: 2.4rem;margin: -0.8rem -1.2rem;border-radius: 1.2rem;background-size: cover;background-position: center;background-repeat: no-repeat;background-image: url(../images/publish.png);cursor: pointer;}
.Page-exhibitsMain .menu .publish .add{ background: #FCFCFC; width: 3.2rem; height: 3.2rem; position: absolute;left:50%;border-radius: 1.6rem; border:0.05rem #EAEAE8 solid; margin-left: -1.6rem; margin-top:-0.52rem; z-index: -1; border-width: 0.05rem 0 0 0px}
.Page-exhibitsMain .menu .my {float: right;background-position: center -6.28rem;cursor: pointer;}
.Page-exhibitsMain .menu .my.selected {background-image: url(../images/toolsBlue.png);color: #fb6e52;}
.Page-exhibitsMain .menu .home.selected {background-image: url(../images/toolsBlue.png);color: #fb6e52;}

/*尾部*/
footer.bottom {display: block;position: relative;z-index: 999; background: #fff; margin-top: 0}

/*预览*/
.Page-articleDetail .preview{ position: fixed;z-index: 99; background: #f8f8f8; height: 1.95rem; top:0; left: 0; right: 0;bottom:0; border-bottom: 0.05rem solid #eee; text-align: center;}
.Page-articleDetail .preview .preview-back{display: block; width: 1.95rem; height: 1.95rem; position: absolute; top: 0; left: 0;}
.Page-articleDetail .preview .preview-back a{position: relative; z-index: 1; display: inline-block; width: 1rem; height: 1rem; padding: 0.4775rem;}
.Page-articleDetail .preview .preview-back a i{display: block; width: 100%; height: 100%;}
.Page-articleDetail .preview .preview-back a i.back{width: 80%; height: 80%; margin: 10%; background-image: url(../images/arrow_left_b.png); background-position: 50% 50%; background-repeat: no-repeat; background-size: 100%; opacity: 0.75; }
.Page-articleDetail .preview .preview-name{display: inline-block; margin: 0 auto; text-align: center;}
.Page-articleDetail .preview .preview-name h1{font-size: 0.8rem; line-height: 1.95rem; height: 1.95rem;}

.Page-articleDetail {height: 100%;width: 100% ;   position:fixed;top: 0;background-color:#fff;z-index: 9999;}
.Page-articleDetail .Page-articleDetail-box{height: 100%;width: 100% ; overflow-y: auto;margin-top:2rem;}
.Page-articleDetail .articleMain {min-height: 22rem;padding:0 0.55rem;}
.Page-articleDetail .articleMain .articleTitle {font-size: 0.8rem;padding: 0.6rem 0 0.4rem;white-space: pre-line;word-break: break-word;}
.Page-articleDetail .articleMain .articleInfo {width: 100%;padding: 0 0 0.2rem;font-size: 0.6rem;display: table;height: 0.8rem;line-height: 0.8rem;white-space: nowrap;}
.Page-articleDetail .articleMain .articleInfo .time {float: left;padding-right: 0.12rem;}
.Page-articleDetail .articleMain .articleInfo .author {float: left;padding: 0 0.44rem 0 0.12rem;width: 7.8rem;overflow: hidden;text-overflow: ellipsis;}
.Page-articleDetail .articleMain .articleInfo .author a {font-size: 0.64rem;}
.Page-articleDetail .articleMain .articleInfo .share {float: left;padding-right: 0.66rem;}
.Page-articleDetail .articleMain .module_audio {margin: 0.2rem 0 0.4rem;}
.Page-articleDetail .articleMain .module_audio .my_audio {cursor: pointer;}
.Page-articleDetail .articleMain .special{padding-bottom: 0.8rem !important}
.Page-articleDetail .articleMain .articleTxt {clear: both;padding: 0.2rem 0 3.2rem;font-size: 0.6rem;}
.Page-articleDetail .articleMain .articleTxt .content {padding: 0 0 0.6rem;}
.Page-articleDetail .articleMain .articleTxt .img {text-align: center;width: 100%;cursor: pointer;}
.Page-articleDetail .articleMain .articleTxt .img img {width: 100%;height: auto;  box-sizing:border-box;border:0.12rem solid rgba(0,0,0,0.08);}
.Page-articleDetail .articleMain .articleTxt .txt {margin: 0.22rem 0px;white-space: pre-wrap;line-height: 0.8rem; word-wrap: break-word; word-break: break-all;}
.Page-articleDetail .articleMain .articleTxt .saleItem {width: 100%;display: table;margin: 0 0 0.6rem; background: #fff;box-sizing:border-box;border:0.08rem solid rgba(0,0,0,0.08);}

.Page-articleDetail .articleMain .articleTxt .saleItem .saleItem-info{width: 92%;height: 1.77rem;margin: 0 4%;padding: 0.44rem 0;display: table;}
.Page-articleDetail .articleMain .articleTxt .saleItem .content{position: relative;float: left;width: 100%; padding-bottom: 0}
.Page-articleDetail .articleMain .articleTxt .saleItem .content .goodsImg{width: 3.8rem;height: 3.8rem;float: left;margin-right: 0.44rem;}
.Page-articleDetail .articleMain .articleTxt .saleItem .content .goodsImg img{width: 3.8rem;height: 3.8rem}
.Page-articleDetail .articleMain .articleTxt .saleItem .content .desc {position: relative;height: 3.8rem;color: #424242;word-break: break-all;text-overflow: ellipsis;width: 100%;}
.Page-articleDetail .articleMain .articleTxt .saleItem .content .desc .title {height: 2rem;line-height: 1rem;overflow: hidden; color: #232326}
.Page-articleDetail .articleMain .articleTxt .saleItem .content .desc .title .popularize{ display:inline-block;padding:0.1rem 0.2rem; color: #fff; background: #F23030; vertical-align: baseline; border-radius: 0.1rem; font-size: 0.45rem; line-height: 0.5rem; margin-right:0.15rem}
.Page-articleDetail .articleMain .articleTxt .saleItem .content .desc .bottom {position: absolute;bottom: 0.35rem;left: 4.2rem;color: #848689;}
.Page-articleDetail .articleMain .articleTxt .saleItem .content .desc .bottom .price,.modules_goodsList .goodsMain .saleBox .saleItem .info .content .desc .bottom .time{ line-height: 0.9rem;}
.Page-articleDetail .articleMain .articleTxt .saleItem .content .desc .bottom .price .priceValue {display: inline;color: #f23030;}
.Page-articleDetail .articleMain .articleTxt .saleItem .content .desc .bottom .price .priceValue .money{font-size: 0.8rem; font-family: "arial"; color: #F23030; vertical-align: baseline;}

.Page-articleDetail .viewLikeBox {display:table;width:92%;height:1.2rem;margin:0 4%;padding:0.3rem 0 0.5rem;color: #848689;font-size:0.64rem;line-height:1.2rem}
.Page-articleDetail .viewLikeBox .view {float:left;padding-right:0.8rem}
.Page-articleDetail .viewLikeBox .vote {color:#607FA6}
.Page-articleDetail .viewLikeBox .like {float:left;padding-left:0.72rem;background-size:0.6rem;background-repeat:no-repeat;background-position:left 0.24rem;background-image:url("../images/likeIcon.png");cursor:pointer}
.Page-articleDetail .viewLikeBox .like.liked {background-image:url("../images/likedIcon.png")}
.Page-articleDetail .viewLikeBox .complaint {float:right;padding:0.5rem;margin:-0.5rem}
.Page-articleDetail .viewLikeBox a {color:#999}

.Page-articleDetail .shareTip {padding:0.52rem 0.6rem;color:#FFF;background-color:#f46200;font-size:0.6rem;text-align:right}

/*评论*/
.commentMain{ width: 100%; background:#eee;padding:0.4rem 0; }
.commentMain .commentBox{padding:0 0.55rem;}
.commentMain .commentBox .makeBtn{ display: block; color: #607FA6; font-size: 0.65rem; float: left; padding:0.3rem 0.4rem 0.3rem 0; }
.commentMain .commentBox .makeBtn i{ color: #fff; padding:0.1rem;display: inline-block; vertical-align: middle; background: #607FA6; margin:-0.04rem 0.16rem 0; border-radius: 0.1rem; font-size:0.48rem; width: 0.55rem;height: 0.55rem; line-height: 0.55rem; text-align: center; }
.commentMain .commentBox .commentBtn{ float: right; display: block; color: #607FA6; font-size: 0.64rem; cursor: pointer; padding:0.3rem 0rem 0.3rem 0.4rem;  }
.commentMain .commentBox .commentBtn i{ display: inline-block; width: 0.55rem; height: 0.55rem; background: url(../images/editPencilIcon.png) no-repeat; background-size: cover; margin: 0 0.15rem; vertical-align: middle; }
.commentMain .commentBox .commentList{ display: table; width: 100%; padding-bottom:0.8rem  }
.commentMain .commentBox .commentList ul .commentItem{ border-top:0.05rem solid #dcd9d9; position:relative; display: table; width: 100%; margin-top:0.4rem; padding-top:0.4rem; }
.commentMain .commentBox .commentList ul .commentItem .avatar{ float: left; width: 2rem; height: 2rem; border-radius: 0.2rem; margin-right: 0.44rem; }
.commentMain .commentBox .commentList ul .commentItem .avatar img{ width: 2rem; height: 2rem }
.commentMain .commentBox .commentList ul .commentItem .contentBox{ float: right; width: 83%; overflow: hidden; font-size: 0.6rem;word-wrap:break-word; word-break: break-all; }
.commentMain .commentBox .commentList ul .commentItem .contentBox .nameTimeBox{ display: table; width: 100%;margin-bottom:0.2rem; line-height: 0.8rem }
.commentMain .commentBox .commentList ul .commentItem .contentBox .nameTimeBox .name{ float: left; color: #848689; max-width: 6rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.commentMain .commentBox .commentList ul .commentItem .contentBox .nameTimeBox .time{ float: right; color: #848689; font-size:0.56rem; margin-top:0.04rem; }
.commentMain .commentBox .commentList ul .commentItem .comment{white-space:pre-line; word-wrap: break-word;}
.commentMain .commentBox .commentList ul .commentItem .comment .delReplyBtn{ float: right; color: #607FA6; padding:0 0.2rem; margin-top: 0.3rem }

.commentMain .commentBox .commentList ul .commentItem .replyCommentItem{display: table; position: relative; width: 100%;margin-top:0.4rem;padding-top:0.4rem;}
.commentMain .commentBox .commentList ul .commentItem .replyCommentItem .reply-ul{ float: right; width: 83%;overflow: hidden; font-size: 0.6rem;word-wrap:break-word; word-break: break-all;}
.commentMain .commentBox .commentList ul .commentItem .replyCommentItem .reply-ul .reply-time-box{ display: table; color: #848689; margin-bottom: 0.2rem; width: 100% }
.commentMain .commentBox .commentList ul .commentItem .replyCommentItem .reply-ul .reply-time-box .name{ float: left; border-left: 5px solid #02D926; padding-left: 0.14rem; }
.commentMain .commentBox .commentList ul .commentItem .replyCommentItem .reply-ul .reply-time-box .time{float: right; color: #848689; font-size:0.56rem; margin-top:0.04rem;}
.commentMain .commentBox .commentList ul .commentItem .replyCommentItem .reply-ul .reply-conent{white-space:pre-line; word-wrap: break-word; overflow: hidden; margin-bottom:0.4rem;}
.commentMain .commentBox .commentList ul .commentItem .replyCommentItem .reply-ul .reply-conent .delReplyBtn{float: right; color: #607FA6; padding:0 0.2rem;}

/*打赏*/
.Page-articleDetail .rewardMain {padding-top: 1.4rem;font-size: 0.6rem;}
.Page-articleDetail .rewardMain .banner {width: 100%;position: relative;}
.Page-articleDetail .rewardMain .banner .line {border-bottom: 0.05rem solid #eee;margin: 0 0.66rem;}
.Page-articleDetail .rewardMain .banner .txt {position: absolute;left: 50%;width: 8em;top: -0.1rem;height: 0.2rem;padding-left: 0.6em;margin-left: -4.3em;text-align: center;line-height: 0.2rem;background-color: #FFF;background-size: contain;}
.Page-articleDetail .rewardMain .btns {width: 2.84rem;height: 2.84rem;margin: 1.4rem auto 0.6rem;background-size: 2.84rem;background-repeat: no-repeat;background-position: left center;background-image: url(../images/rewardBtn.png);}
.Page-articleDetail .rewardMain .btns.clicked {opacity: 0.4;}
.Page-articleDetail .rewardMain .userBox .num {color: #999999;text-align: center;}
.Page-articleDetail .rewardMain .userBox .userList {display: table;width: auto;max-width: 10.64rem;margin: 0 auto;padding-top: 0.6rem;font-size: 0.64rem;line-height: 1.2rem;}
.Page-articleDetail .rewardMain .userBox .userList .avatarImage {float: left;width: 1.28rem;height: 1.28rem;margin: 0 0.12rem 0.24rem 0.12rem;border-radius: 50%;background-size: cover;background-repeat: no-repeat;background-position: center center;}

#rewardMain .rewardMask {position: fixed;top: 0;bottom: 0;width: 100%;background-color: rgba(0, 0, 0, 0.3);z-index: 999;max-width: 100%;}
#rewardMain .rewardBox {position: fixed;width: 100%;z-index: 1000;bottom: 0;}
#rewardMain .rewardBox .rewardHeader {width: 100%;padding-top: 25%;background: url(../images/rewardHeader.png) no-repeat;background-size: cover;}
#rewardMain .rewardBox .rewardBoxContent {background-color: #fff;}
#rewardMain .rewardBox .title {width: 88%;padding: 0.4rem 6% 0 6%;color: #232326;font-size: 0.6rem;text-align: left;line-height: 1.6rem;}
#rewardMain .rewardBox .rewardList {width: 90%;margin: 0 auto 0.8rem auto;overflow: hidden;}
#rewardMain .rewardBox .rewardList .rewardItem {float: left;width: 31.3%;height: 2.65rem;margin: 0.44rem 3% 0 0;color: #FF6A55;line-height: 2.65rem;font-size: 1.36rem;text-align: center;border-radius: 0.13rem;box-sizing: border-box;border: 0.05rem solid #FF6A55;}
#rewardMain .rewardBox .rewardList .rewardItem p {height: 0;margin: -0.09rem 0 0 0;}
#rewardMain .rewardBox .rewardList .rewardItem p span.unit {font-size: 0.6rem;line-height: 0.8rem;}
#rewardMain .rewardBox .rewardList .rewardItem:nth-child(3n) {margin-right: 0;}
#rewardMain .rewardBox .anyReward,#rewardMain .rewardBox .tips {width: 100%;height: 1.1rem;line-height: 1.1rem;color: #576B95;font-size: 0.6rem;text-align: center;}
#rewardMain .rewardBox .tips {padding-bottom: 0.88rem;color: #9B9B9C;}
#rewardMain .anyRewardMask {position: fixed;top: 0;bottom: 0;width: 100%;background-color: rgba(0, 0, 0, 0.5);z-index: 1000;}
#rewardMain .anyRewardMask .anyRewardBox {position: fixed;bottom: 11.8rem;width: 90%;max-width:14.9rem;padding-bottom: 0.88rem;margin-left: 0.828rem;color: #232326;font-size: 0.70rem;border-radius: 0.35rem;background-color: #fff;}
#rewardMain .anyRewardMask .anyRewardBox .anyRewardTitle {width: 100%;height: 1.76rem;line-height: 1.76rem;text-align: center;border-bottom: 0.05rem solid #d9d9d9;}
#rewardMain .anyRewardMask .anyRewardBox .anyRewardTitle .close {position: absolute;top: 0;left: 0;width: 0.53rem;height: 0.53rem;padding: 0.62rem;background: url(../images/close.png) no-repeat 50%;background-size: 0.53rem;}
#rewardMain .anyRewardMask .anyRewardBox .anyRewardInputBox {width: 80%;height:1.72rem;max-height: 2.4rem;margin: 0.66rem 10%;line-height: 1.68rem;text-indent: 0.44rem;border-radius: 0.13rem;border: 0.05rem solid #d9d9d9;}
#rewardMain .anyRewardMask .anyRewardBox .anyRewardInputBox div {float: left;}
#rewardMain .anyRewardMask button {width: 80%;height: 1.94rem;margin: 0 10%;color: #fff;font-size: 0.8rem;line-height: 1.94rem;border: none;border-radius: 0.13rem;background-color: #35bc2c;}
#rewardMain .anyRewardMask.none {display: none;}
#rewardMain .numInput span {color: #FF6A55;font-size: 0.72rem;font-family: Microsoft Yahei, Arial, Simsun, Helvetica, Segoe UI, sans-serif;}
#rewardMain .numInput span.hover {border-right: 0.05rem solid #007aff;}
/*Copyright: Bizpower*/
.fixednumMask {position: fixed;width: 100%;opacity: 0.38;top: 0;bottom: 0;background-color: #232326;z-index: 999;}
.fixednumMain {position: fixed;bottom: 0px;left: auto;width: 100%;z-index: 1199;background: #F0F0F0;}
.fixednumMain .tipBanner {height: 1.85rem;width: 100%;background: #F0F0F0;border-top: 0.05rem solid #cacaca;font-size: 0.70rem;}
.fixednumMain .tipBanner span.title{line-height: 1.85rem;float: left;text-indent: 0.44rem;min-width: 2.87rem;}
.fixednumMain .tipBanner .finish {float: right;width: 1.85rem;height: 1.85rem;background-size: 1.32rem;line-height: 1.76rem;font-size: 0.6rem;color: #007aff;}
.fixednumMain .numkey {width: 100%;background: #fff;display: table;}
.fixednumMain .numkey ul {padding: 0;margin: 0;}
.fixednumMain .numkey ul,.fixednumMain .numkey li {text-decoration: none;list-style: none;vertical-align: middle;}
.fixednumMain .numkey ul li {width: 33.1%;border-bottom: 0.05rem solid #b3b3b3;border-right: 0.05rem solid #b3b3b3;height: 2.2rem;max-height: 2.4rem;float: left;font-size: 0.96rem;font-family: "Helvetica neue", Verdana, Geneva, sans-serif;text-align: center;background: #fff;}
.fixednumMain .numkey ul li:nth-child(3n) {border-right: none;}
.fixednumMain .numkey ul li.delete {background-image: url(../images/backspace.png);background-repeat: no-repeat;background-position: center;background-size: 1.32rem;background-color: #D1D5DA;}
.fixednumMain .numkey ul li.othernum {background-color: #D1D5DA;line-height: 2.2rem;}
.fixednumMain .numkey ul li div {color: #232326;}
.fixednumMain .numkey ul li span {position: relative;font-size: 0.48rem;top: -0.56rem;color: #232326;}

/*支付页面*/
.nctouch-bottom-mask { position: fixed; z-index: 999; top: 0; left: 0; right: 0; display: none; }
.nctouch-bottom-mask-bg { display: block; position: absolute; z-index: 21; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.65);}
.nctouch-bottom-mask-block { display: block; position: absolute; z-index: 22; bottom: 0; left: 0; right: 0; min-height: 12rem; background: #FFF;}
.nctouch-bottom-mask.up {/* display: block; */bottom: 0;animation: optionBlockUp 0.3s ease-in-out;-webkit-animation:optionBlockUp 0.3s ease-in-out;}
.nctouch-bottom-mask-tip { position: absolute; z-index: 1; top: -1.2rem; left: 0; right: 0; text-align: center; font-size: 0.6rem; font-weight: 600; line-height: 0.9rem; color: #FFF; text-shadow: 0 0 0.5rem rgba(0,0,0,0.5);}
.nctouch-bottom-mask-tip i { background-image: url(../images/back_down.png); background-repeat: no-repeat; background-position: 50% 50%; background-size: 75%; width: 0.8rem; height: 0.9rem; display: inline-block; vertical-align: top; margin-right: 0.1rem;}
.nctouch-bottom-mask-top { position: relative; z-index: 1; display: block; padding: 0.5rem; border-bottom: solid 0.05rem #EEE;}
.nctouch-bottom-mask-close { position: absolute; z-index: 1; top: -0.6rem; right: 0; background: #FFF; width: 0.9rem; height: 0.9rem; padding: 0.15rem; border-radius: 100%;}
.nctouch-bottom-mask-close i { display: block; width: 100%; height: 100%; background-image: url(../images/close_window.png); background-repeat: no-repeat; background-position: 50% 50%; background-size: 100%; opacity: 0.5rem;}
.nctouch-bottom-mask-rolling { min-height: 1.9rem; max-height: 12rem; overflow: hidden; position: relative; z-index: 1;}
.nctouch-bottom-mask-book{overflow: hidden; position: relative; z-index: 1; border-bottom: 0.05rem solid #eee}

.nctouch-cart-num { display: block; padding: 0.5rem 0; text-align: center; font-size: 0.6rem; color: #232326; line-height: 1rem;}
.nctouch-cart-num em { font-size: 1rem; color: #F23030; font-weight: 600; display: inline-block; vertical-align: sub; margin: 0 0.2rem; }
.nctouch-inp-cart ul { background-color: transparent;}
.nctouch-inp-cart ul li { height: auto; margin: 0; background-color: transparent;}
.nctouch-inp-cart ul li .input-box { margin: 0;}
.nctouch-inp-cart ul li .input-box p { font-size: 0.55rem; position: absolute; z-index: 1; top: 0.8rem; right: 0.5rem; color: #555;}
.nctouch-inp-cart ul li .input-box p em { font-size: 0.6rem; font-weight: 600; color: #232326;}
.nctouch-inp-cart ul li .input-box .txt { margin-left: 0.5rem;}
.nctouch-inp-cart ul li .input-box .inp { width: 45%; background-color: #F5F5F5; padding: 0.25rem 0.5rem; margin: 0.25rem 0.5rem 0 0.25rem; border-radius: 0.2rem;}
.nctouch-inp-cart ul li .input-box .select { float: right; width: auto; text-align: right; margin-right: 1.1rem;}
.nctouch-inp-cart ul li .input-box .arrow-down { right: 0.35rem;}
.nctouch-inp-cart .pay-btn { display: block; margin: 0.5rem 0 1rem 0;}
.nctouch-pay { display: block;}
.nctouch-pay .spacing-div { position: relative; z-index: 1; display: block; height: 1rem; margin: 0 0.5rem 1rem 0.5rem; border-bottom: solid #EEE 0.05rem;}
.nctouch-pay .spacing-div span { position: absolute; z-index: 1; bottom: -0.3rem; left: 50%; display: block; width: 5rem; margin-left: -2.5rem; text-align: center; font-size: 0.55rem; line-height: 0.6rem; height: 0.6rem; background-color: #FFF; color: #888;}
.nctouch-pay .pay-sel { display: block; font-size: 0; overflow: hidden;}
.nctouch-pay label { float: left; width: 50%; height: 2rem; padding: 0.25rem 0; text-align: center; border: none !important;}
.nctouch-pay label input[type="radio"] { display: none;}
.nctouch-pay label span { display: inline-block; width: 5rem; height: 1.5rem; margin: 0 auto; background-position: 50% 50%; background-repeat: no-repeat; background-size: 100%; filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */ -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: grayscale(100%); filter: gray; opacity: 0.5;}
.nctouch-pay label.checked span { -webkit-filter: grayscale(0); -moz-filter: grayscale(0); -ms-filter: grayscale(0); -o-filter: grayscale(0); filter: grayscale(0); filter: gray; opacity: 1;}
.nctouch-pay label span.alipay { background-image: url(../images/alipay.jpg);}
.nctouch-pay label span.wxpay { background-image: url(../images/wxpay.jpg);}

/*数据为空时*/
.Page-exhibitsMain .list .noData {margin-top: 2.2rem; padding-top: 4rem; margin-bottom: 1rem; background-size: 22%; background-repeat: no-repeat; background-position: top center; background-image: url(../images/no_data_a.png); }
.Page-exhibitsMain .list .noData .tips1 {color: #888; font-size: 18px; text-align: center; line-height: 0.6rem; }
.Page-exhibitsMain .list .noData .tips2 {color: #A4A4A4; font-size: 0.65rem; text-align: center; line-height: 1.6rem; }

/*错误弹出狂z-index修改*/
.s-dialog-mask{z-index: 10001}
.s-dialog-wrapper{z-index:10002}

/*编辑精选Copyright: BIZPOWER*/
.Page-exhibitsMain .list .item .cover .text .info {color: #FFF;overflow: hidden;font-size: 0.65rem;padding: 0.33rem 0.66rem;line-height: 0.88rem;height: 0.88rem;}
.Page-exhibitsMain .list .item .cover .text .info .author {float: left;}
.Page-exhibitsMain .list .item .cover .text .info .readNum {float: right;padding-right: 0.22rem;}
.Page-exhibitsMain .list .item .cover .text .info .likeNum {float: right;margin-left: 0.66rem;padding-left: 0.8rem;background-size: 0.58rem;background-position: 0 50%;background-repeat: no-repeat;background-image: url('../images/likeIcon_white.png');}

