@charset "UTF-8";
/*滚动条样式*/
::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 4px;
}

::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #f55;
}

::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
}

html {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  font-size: 625%;
  /************* 公共样式 **************/
  /* 模态框 */
  /************** tiptool ***************/
  /************** tiptool end ***************/
  /************* 公共样式 end **************/
}
html * {
  box-sizing: border-box;
}
html body,
html ul,
html ol,
html li,
html p,
html h1,
html h2,
html h3,
html h4,
html h5,
html h6,
html form,
html fieldset,
html table,
html td,
html img,
html div {
  margin: 0;
  padding: 0;
  border: 0;
}
html body {
  background: #fff;
  color: #333;
  font-size: 14px;
  font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "黑体", Arial, sans-serif;
}
html ul,
html ol {
  list-style-type: none;
}
html select,
html input,
html button,
html select:focus,
html input:focus,
html button:focus {
  outline: 0;
}
html .border0 {
  border: 0 !important;
}
html .bgd0 {
  background: transparent !important;
}
html a {
  text-decoration: none;
}
html a:link {
  color: #fff;
}
html a:visited {
  color: #fff;
}
html a:hover,
html a:active,
html a:focus {
  color: #f55;
  text-decoration: none;
}
html .tipsColor {
  color: #e4393c !important;
  font-weight: 800;
}
html .tipsThemColor {
  color: #f55 !important;
}
html .borderBottom0 {
  border-bottom: 0 !important;
}
html .pageWidth {
  max-width: 1270px;
  margin: 0 auto;
}
html .clearfix:before, html .clearfix:after {
  content: " ";
  display: table;
}
html .clearfix:after {
  clear: both;
}
html input[type=radio] {
  height: 0.24rem;
  width: 0.22rem;
  line-height: 0.2rem;
  margin-right: 0;
  position: relative;
  top: 0.07rem;
  border-radius: 0;
  border: 0;
  display: none;
}
html label.labelInputCommon {
  width: auto;
  height: auto;
  line-height: 0.2rem;
  margin-right: 0.1rem;
  border: 0.01rem dashed #fff;
  border-radius: 0.04rem;
  padding: 0.05rem 0.2rem;
  color: #fff;
  position: relative;
}
html .labelInputCommon .iconfont {
  position: absolute;
  bottom: 0;
  right: 0.02rem;
  font-weight: 800;
  color: #fff;
  display: none;
}
html input[type=radio]:checked + label.labelInputCommon {
  border: 0.01rem solid #f55;
  background-color: #f55;
  color: #fff;
}
html input[type=radio]:checked + label.labelInputCommon .iconfont {
  display: block;
}
html input[type=checkbox]:checked + label.labelInputCommon {
  border: 0.01rem solid #f55;
  background-color: #f55;
  color: #fff;
}
html input[type=checkbox]:checked + label.labelInputCommon .iconfont {
  display: block;
}
html .dialog_mask {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: #000;
  opacity: 0.68;
  position: fixed;
  z-index: 1000;
}
html .pagenationCommon {
  text-align: center;
  margin: 0.2rem 0;
}
html .pagenationCommon ul {
  display: inline-block;
}
html .pagenationCommon ul li {
  float: left;
}
html .pagenationCommon ul li a {
  display: inline-block;
  height: 0.35rem;
  line-height: 0.35rem;
  padding: 0 0.2rem;
  border: 0.01rem solid #bbbaad;
  background: #bbbaad;
  color: #fff;
  transition: all 300ms ease;
  margin-right: 0.1rem;
  font-size: 0.12rem;
  border-radius: 0.04rem;
}
html .pagenationCommon ul li a:hover,
html .pagenationCommon ul li a.active {
  background: #999782;
  border-color: #999782;
  color: #fff;
}
html .pagenationCommon ul li:last-child a {
  margin-right: 0;
}
html .btnCommon,
html .btnCommonInline {
  display: block;
  background: #f55;
  height: 0.4rem;
  line-height: 0.4rem;
  border: 0.01rem solid #f55;
  color: #fff;
  text-align: center;
  border-radius: 0.04rem;
  cursor: pointer;
  transition: all 300ms ease;
}
html .btnCommon:hover,
html .btnCommonInline:hover {
  background: #fff;
  color: #f55;
  border-color: #f55;
}
html .btnCommonLight,
html .btnCommonLightInline {
  display: block;
  background-color: #F9F9F9;
  text-align: center;
  height: 0.4rem;
  line-height: 0.4rem;
  color: #fff !important;
  border: 0.01rem solid #f1f1f1;
  border-radius: 0.04rem;
  cursor: pointer;
  transition: all 300ms ease;
}
html .btnCommonInline,
html .btnCommonLightInline {
  display: inline-block;
  padding: 0 0.2rem;
}
html .btnCommonLight:hover,
html .btnCommonLightInline:hover {
  background: #fff !important;
}
html .margintop10 {
  margin-top: 0.1rem !important;
}
html .text-center {
  text-align: center;
}
html .text-right {
  text-align: right;
}
html .pull-right {
  float: right;
}
html .pull-left {
  float: left;
}
html .displayNone {
  display: none !important;
}
html .positionre {
  position: relative;
}
html .roleImgCommon {
  vertical-align: top;
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 0.04rem;
}
html .hrefLeft .roleImgCommon {
  width: 0.2rem !important;
  height: 0.2rem !important;
  border-radius: 0.04rem !important;
}
html .paddingBot0 {
  padding-bottom: 0 !important;
}
html .paddingtop0 {
  padding-top: 0 !important;
}
html .gradientCommon {
  background: -webkit-linear-gradient(left, #E35935, #978d7e);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #E35935, #978d7e);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #E35935, #978d7e);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #E35935, #978d7e);
  color: #fff;
}
html .tipColor {
  color: #f55 !important;
  font-weight: 600;
}
html .visiHidden {
  visibility: hidden;
}
html .textIndent0 {
  text-indent: 0 !important;
}
html .marginBottom0 {
  margin-bottom: 0 !important;
}
html .cursorP {
  cursor: pointer;
}
html .commonBtn {
  display: block;
  width: 100px;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
  background: #f55;
  color: #fff;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  transition: all 300ms ease;
}
html .marginBottom5 {
  margin-bottom: 0.5rem;
}
html .friendship_link {
  background-color: #f6f6f6;
  padding: 0.2rem 0;
}
html .friendship_link .child_link {
  background-color: #fff;
  padding: 0.1rem;
}
html .friendship_link .child_link p.title {
  color: #fff;
  margin-bottom: 0.05rem;
}
html .friendship_link .child_link .row a {
  color: #f55;
  display: inline-block;
  padding: 0.05rem 0.05rem;
}
html .affirmContainer {
  margin-top: 0.5rem;
}
html .affirmContainer .title {
  font-size: 0.24rem;
  font-weight: 800;
  text-align: center;
}
html .affirmContainer .content {
  padding: 0.2rem 0.15rem;
  color: #fff;
  font-size: 0.14rem;
}
html .affirmContainer .content p {
  text-indent: 2em;
  line-height: 0.22rem;
  margin-bottom: 0.2rem;
}
html .affirmContainer .leftTitle {
  font-size: 0.14rem;
  padding-left: 0.2rem;
}
html .affirmContainer .errorContent {
  color: #e4393c;
  font-size: 0.14rem;
  text-indent: 2em;
  font-weight: 800;
}
html .affirmContainer .autoJump {
  border: 0.01rem solid #f55;
  background-color: #fff;
  color: #f55;
  height: 0.35rem;
  line-height: 0.35rem;
  padding-left: 0.2rem;
  font-size: 0.14rem;
  border-radius: 0.04rem;
}
html .affirmContainer .explainContent {
  color: #333;
}
html .affirmContainer .explainContent .tipsColor {
  font-weight: 800;
}
html .affirmContainer .explainContent .btnCommonInline {
  height: 0.35rem;
  line-height: 0.35rem;
  text-indent: 0;
  text-align: center;
}
html .affirmContainer .readCodeContent form {
  width: 100%;
}
html .affirmContainer .readCodeContent form .inputRow {
  display: flex;
  font-size: 0.16rem;
}
html .affirmContainer .readCodeContent form .inputRow label {
  width: 0.8rem;
  height: 0.4rem;
  line-height: 0.4rem;
}
html .affirmContainer .readCodeContent form .inputRow .input {
  flex: 1;
}
html .affirmContainer .readCodeContent form .inputRow .input input {
  display: block;
  width: 100%;
  height: 0.4rem;
  line-height: 0.4rem;
  border: 0;
  border-bottom: 0.01rem solid #ccc;
  padding-left: 0.2rem;
}
html .affirmContainer .readCodeContent form .btnRow {
  margin: 0.2rem 0;
}
html .affirmContainer .readCodeContent .tipsRow {
  margin-top: 0.4rem;
}
html .affirmContainer .readCodeContent .tipsRow li {
  margin-bottom: 0.2rem;
}
html .affirmContainer .readCodeContent .tipsRow li a {
  color: #f55;
  font-size: 0.16rem;
  line-height: 0.3rem;
  display: block;
}
html .affirmContainer .readCodeContent .tipsRow li a i {
  top: 0.01rem;
}
html .affirmContainer .readCodeContent .tipsRow li .text {
  padding: 0.15rem;
  background-color: #f6f6f6;
  border-radius: 0.04rem;
  color: #333;
  display: none;
}
html .affirmContainer .readCodeContent .tipsRow li .text p {
  margin-bottom: 0.05rem;
  line-height: 0.24rem;
  font-size: 0.15rem;
}
html .affirmContainer .readCodeContent .tipsRow li .text p.img {
  text-indent: 0;
}
html .affirmContainer .readCodeContent .tipsRow li .text img {
  width: 1.5rem;
  margin-top: 0.15rem;
}
html .affirmContainer .readCodeContent .tipsRow li:first-child div.text {
  display: block;
}
html .affirmContainer .losecodeContent p {
  word-break: break-all;
}
html .affirmContainer .losecodeContent p img {
  max-width: 90%;
}
html .affirmContainer .losecodeContent p.img {
  text-indent: 0;
  text-align: center;
}
html .affirmContainer .losecodeContent .tip {
  color: #f55;
}
html .affirmContainer .payBox {
  padding: 0 0.15rem;
  padding-top: 0.2rem;
}
html .affirmContainer .payBox .payRow .payItem {
  float: left;
  width: 48%;
  margin-right: 2%;
  border: 0.01rem solid #E8E8E8;
  color: #fff;
  font-size: 0.14rem;
  border-radius: 0.04rem;
  padding: 0.15rem 0;
  margin-bottom: 0.2rem;
  position: relative;
}
html .affirmContainer .payBox .payRow .payItem input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 100%;
  width: 100%;
  opacity: 0;
  margin: 0;
}
html .affirmContainer .payBox .payRow .payItem img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 0.3rem;
}
html .affirmContainer .payBox .payRow .payItem a,
html .affirmContainer .payBox .payRow .payItem input {
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}
html .affirmContainer .payBox .payRow .payItem .price {
  color: #f55;
  font-size: 0.18rem;
  font-weight: 800;
}
html .affirmContainer .payBox .payRow .payItem .tipColor {
  font-weight: 400;
}
html .affirmContainer .payBox .payRow .payItem .tip {
  color: #f55;
  font-weight: 800;
}
html .affirmContainer .payBox .payRow .payItem.Activity {
  width: 100%;
  margin-left: 0% !important;
}
html .affirmContainer .payBox .payRow .payItem:nth-child(even) {
  margin-right: 0;
  margin-left: 2%;
}
html .affirmContainer .payBox .payRow .payItem.active {
  border-color: #f55;
  background-color: #FBF2E9;
}
html .affirmContainer .payBox .btnPay {
  position: relative;
}
html .affirmContainer .payBox .btnPay button {
  width: 100%;
  font-size: 0.16rem;
  height: 0.5rem;
  line-height: 0.5rem;
}
html .affirmContainer .payBox .btnPay .toggleTipBeishu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: transparent;
}
html .affirmContainer .payBox .tipsEls {
  color: #fff;
  font-size: 0.15rem;
  text-align: left;
  margin-top: 0.4rem;
}
html .affirmContainer .payBox .tipsEls .text {
  line-height: 0.22rem;
  word-break: break-all;
}
html .toggleTipBeishuWrapper {
  position: fixed;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 90%;
  max-width: 500px;
  transform: translateX(-50%);
  z-index: 1050;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
}
html .toggleTipBeishuWrapper .mainTip {
  padding: 15px 25px;
  border-radius: 5px;
  background-color: #fff;
}
html .toggleTipBeishuWrapper .mainTip p {
  margin-bottom: 10px;
  text-align: center;
}
html .toggleTipBeishuWrapper .mainTip img {
  width: 200px;
  max-width: 100%;
}
html .noticeModelCommon {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
html .noticeModelCommon .modal-dialog {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 6rem;
  width: 60%;
  transition: top 0.3s ease-out;
}
html .noticeModelCommon .modal-content {
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
html .noticeModelCommon .modal-content .modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
html .noticeModelCommon .modal-content .modal-header .close {
  float: right;
  background: 0 0;
  border: 0;
}
html .noticeModelCommon .modal-content .modal-header .close i {
  font-size: 0.24rem;
  color: #fff;
  cursor: pointer;
}
html .noticeModelCommon .modal-content .modal-title {
  margin: 0;
  font-size: 0.18rem;
  line-height: 1.4;
}
html .noticeModelCommon .modal-content .modal-body {
  position: relative;
  padding: 0.15rem;
  font-size: 0.14rem;
}
html .noticeModelCommon .modal-content .modal-body p {
  margin: 0 0 0.1rem;
  line-height: 0.24rem;
}
html .noticeModelCommon .modal-content .modal-footer {
  border-top: 0.01rem solid #e5e5e5;
}
html .noticeModelCommon .modal-content .modal-footer .btnBlock {
  display: block;
  width: 100%;
  background-color: #f9f9f9;
  text-align: center;
  color: #b4b4b4;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.19rem 0;
}
html .noticeModelCommon .modal-content .modal-footer .btnBlock:hover {
  background-color: #f55;
  color: #fff;
}
html .fade .modal-dialog {
  top: 50%;
}
html .fade.in {
  opacity: 1;
}
html .commonBtn:hover {
  opacity: 0.6;
}
html .text-center {
  text-align: center !important;
}
html .mask {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
html .draftCellCommon:first-child {
  border-top: 0.01rem solid #f0f0f0;
}
html .taskContent {
  padding-top: 0.45rem;
  padding-bottom: 0.2rem;
}
html .taskContent .taskList .taskRow {
  border-bottom: 0.01rem dashed #efefef;
}
html .taskContent .taskList .taskRow a {
  display: block;
  padding: 0.15rem 0.1rem;
  color: #fff;
  line-height: 0.2rem;
}
html .taskContent .taskList .taskRow a i {
  top: 0.01rem;
  color: #f55;
  font-weight: 800;
}
html .taskContent .formCommon .inputRow {
  flex-direction: column;
}
html .taskContent .formCommon .inputRow > label {
  width: 100%;
}
html .taskContent .formCommon .inputRow div.input {
  flex-wrap: wrap;
}
html .taskContent .formCommon .inputRow:first-child {
  margin-top: 0;
}
html .taskContent .formCommon .labelForm label {
  margin-bottom: 10px;
}
html .taskContent .formCommon .inputBtn .submit {
  width: 80%;
  padding: 0 0.15rem;
}
html .taskContent .regTask {
  padding: 0 0.1rem;
  padding-top: 0.2rem;
}
html .taskContent .regTask p {
  color: #fff;
  line-height: 0.24rem;
  margin-bottom: 10px;
}
html .taskContent .regTask p b {
  color: #333;
}
html .taskContent .regTask .link {
  text-align: center;
}
html .taskContent .regTask .link a {
  color: rgb(40, 153, 243);
  border-bottom: 0.01rem dashed rgb(40, 153, 243);
}
html .tabCommon {
  border-bottom: 0.01rem solid #efefef;
}
html .tabCommon .talBox {
  display: flex;
}
html .tabCommon .talBox > li {
  flex: 1;
  text-align: center;
}
html .tabCommon .talBox > li a {
  display: inline-block;
  position: relative;
  color: #fff;
  font-weight: 800;
  font-size: 0.15rem;
  padding: 0.15rem 0.2rem;
}
html .tabCommon .talBox > li a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 100%;
  opacity: 0;
  border-bottom: 2px solid #f55;
  -webkit-transform: translate(-50%) scaleX(0);
  transform: translate(-50%) scaleX(0);
  transition: 0.2s ease-in-out;
}
html .tabCommon .talBox > li a:hover,
html .tabCommon .talBox > li a.active {
  color: #f55;
}
html .tabCommon .talBox > li a:hover:after,
html .tabCommon .talBox > li a.active:after {
  opacity: 1;
  -webkit-transform: translate(-50%) scaleX(1);
  transform: translate(-50%) scaleX(1);
  transition: 0.2s ease-in-out;
}
html .titleCommon {
  text-align: center;
}
html .titleCommon .text {
  font-size: 0.24rem;
  font-weight: 600;
  color: #f55;
  margin-bottom: 0.1rem;
}
html .titleCommon .line {
  width: 0.5rem;
  border-bottom: 0.01rem solid #f55;
  margin: 0 auto;
}
html .noDataCommon {
  text-align: center;
  padding: 0.2rem 0;
}
html .noDataCommon i {
  top: 0.02rem;
}
html .noDataCommon .icon-cry {
  display: block;
  font-size: 1.5rem;
  color: #fff;
}
html .noDataCommon p {
  color: #fff;
  padding: 0.15rem 0;
}
html .limitToLogin {
  margin: 0.2rem 0;
}
html .limitToLogin .title {
  position: relative;
  text-align: center;
}
html .limitToLogin .title p.text {
  display: inline-block;
  width: auto;
  padding: 0 0.26rem;
  background-color: #fff;
  font-size: 0.14rem;
  line-height: 0.36rem;
  vertical-align: top;
  color: #bebebe;
  position: relative;
  z-index: 3;
}
html .limitToLogin .title:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  height: 0.01rem;
  background-color: #dcdcdc;
  color: #dcdcdc;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  z-index: 2;
}
html .limitToLogin .loginTips {
  margin-top: 0.2rem;
  text-align: center;
}
html .limitToLogin .loginTips p {
  margin-bottom: 0.15rem;
  color: #333;
  font-size: 0.15rem;
}
html .formCommon {
  width: 4rem;
  margin: 0 auto;
}
html .formCommon .inputRow {
  display: flex;
  margin: 0.2rem;
}
html .formCommon .inputRow label {
  width: 0.8rem;
  height: 0.4rem;
  line-height: 0.4rem;
}
html .formCommon .inputRow div.input {
  flex: 1;
}
html .formCommon .inputRow div.input input,
html .formCommon .inputRow div.input select,
html .formCommon .inputRow div.input .inputDiv,
html .formCommon .inputRow div.input textarea {
  width: 100%;
  border: 0.01rem solid #f1f1f1;
  height: 0.4rem;
  line-height: 0.4rem;
  padding-left: 0.2rem;
  box-sizing: border-box;
  border-radius: 0.03rem;
  background-color: #F9F9F9;
}
html .formCommon .inputRow div.input textarea {
  height: 1rem;
  line-height: 0.24rem;
  resize: none;
}
html .formCommon .inputRow div.input textarea:focus,
html .formCommon .inputRow div.input textarea:active {
  outline: none;
}
html .formCommon .inputRow div.input .inputDiv {
  max-width: 3.8rem;
  overflow-y: auto;
}
html .formCommon .inputRow div.input .inputDiv span.cell {
  position: relative;
  display: inline-block;
  border-radius: 0.04rem;
  background-color: #fff;
  color: #fff;
  font-size: 0.12rem;
  padding: 0.02rem 0.06rem;
  line-height: 0.18rem;
}
html .formCommon .inputRow div.input .inputDiv span.cell .iconfont {
  position: relative;
  top: 0.02rem;
  right: 0;
  cursor: pointer;
}
html .formCommon .inputRow div.input a {
  color: #f55;
  transition: all 300ms;
}
html .formCommon .inputRow div.input a:hover {
  font-weight: 900;
}
html .formCommon .inputRow .inputUpload .uploadCommponentCommon .prevCommon {
  float: left;
  margin-right: 0.1rem;
}
html .formCommon .inputRow .inputUpload .uploadCommponentCommon .prevCommon img {
  width: 1rem;
  height: 1rem;
  border-radius: 0.04rem;
}
html .formCommon .inputRow .inputUpload .uploadCommponentCommon .uploadRelative {
  position: relative;
  float: left;
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  text-align: center;
  border: 0.01rem dashed #ccc;
  border-radius: 0.04rem;
}
html .formCommon .inputRow .inputUpload .uploadCommponentCommon .uploadRelative .iconfont {
  color: #fff;
  font-size: 0.4rem;
}
html .formCommon .inputRow .inputUpload .uploadCommponentCommon .uploadRelative input[type=file] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}
html .formCommon .tipRow label {
  height: auto;
}
html .formCommon .inputCodeImg .input {
  display: flex;
  align-items: center;
}
html .formCommon .inputCodeImg .input input {
  flex: 1;
  margin-right: 0.1rem;
}
html .formCommon .inputCodeImg .input a {
  height: 0.35rem;
  line-height: 0.35rem;
}
html .formCommon .inputCodeImg .input a img {
  height: 100%;
}
html .formCommon .inputCodeImg .input button {
  background: transparent;
  border: 0;
  width: 0.8rem;
  text-align: center;
  color: #f55;
  height: 0.35rem;
  line-height: 0.35rem;
  font-weight: 900;
  cursor: pointer;
}
html .formCommon .inputBtn .submit {
  border: 0;
  outline: none;
}
html .formCommon .inputBtn a,
html .formCommon .inputBtn .submit {
  display: block;
  width: 60%;
  margin: 0 auto;
  height: 0.4rem;
  line-height: 0.4rem;
  text-align: center;
  background: #f55;
  color: #fff;
  border-radius: 0.04rem;
}
html .formCommon .inputBtn a:hover,
html .formCommon .inputBtn .submit:hover {
  opacity: 0.8;
}
html .formCommon .inputRow label {
  width: 0.7rem;
}
html .formCommon .inputBtn a {
  width: 30%;
}
html .formCommon .labelForm {
  margin-left: 0.1rem;
}
html .formCommon .labelForm input[type=radio] {
  height: 0.24rem;
  width: 0.22rem;
  line-height: 0.2rem;
  margin-right: 0;
  position: relative;
  top: 0.07rem;
  border-radius: 0;
  border: 0;
  display: none;
}
html .formCommon .labelForm input[type=checkbox] {
  height: 0.24rem;
  width: 0.22rem;
  line-height: 0.2rem;
  margin-right: 0;
  position: relative;
  top: 0.07rem;
  border-radius: 0;
  border: 0;
  display: none;
}
html .formCommon .labelForm label {
  width: auto;
  height: auto;
  line-height: 0.2rem;
  margin-right: 0.1rem;
  border: 0.01rem dashed #fff;
  border-radius: 0.04rem;
  padding: 0.05rem 0.2rem;
  color: #fff;
  position: relative;
}
html .formCommon .labelForm .iconfont {
  position: absolute;
  bottom: 0;
  right: 0.02rem;
  font-weight: 800;
  color: #fff;
  display: none;
}
html .formCommon .labelForm input[type=radio]:checked + label {
  border: 0.01rem solid #f55;
  background-color: #f55;
  color: #fff;
}
html .formCommon .labelForm input[type=radio]:checked + label .iconfont {
  display: block;
}
html .formCommon .labelForm input[type=checkbox]:checked + label {
  border: 0.01rem solid #f55;
  background-color: #f55;
  color: #fff;
}
html .formCommon .labelForm input[type=checkbox]:checked + label .iconfont {
  display: block;
}
html .formDraftCommon .inputRow > label {
  width: 1rem;
}
html .joinCommon {
  margin: 0.2rem 0;
  text-align: center;
}
html .joinCommon .btnCommonInline {
  height: 0.35rem;
  line-height: 0.35rem;
}
html .payBox {
  text-align: center;
}
html .payBox .title {
  font-size: 0.24rem;
  color: #333;
  font-weight: 800;
}
html .payBox .title img {
  width: 1.5rem;
}
html .payBox .sub {
  text-align: left;
  padding-left: 0.4rem;
  color: #e4393c;
  font-size: 0.14rem;
  font-weight: 800;
  line-height: 0.22rem;
}
html .payBox .priceBox {
  background: -webkit-linear-gradient(left, #f55, #978d7e);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #f55, #978d7e);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #f55, #978d7e);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #f55, #978d7e);
  border-radius: 0.04rem;
  color: #fff;
  text-align: center;
  width: 85%;
  margin: 0.2rem auto;
  padding: 0.2rem 0;
}
html .payBox .priceBox p {
  font-size: 0.14rem;
  line-height: 0.26rem;
}
html .payBox .quotePay {
  margin: 0.2rem 0;
}
html .payBox .quotePay img {
  width: 2rem;
}
html .payBox .quotePay .text {
  font-size: 0.14rem;
  font-weight: 800;
  color: #fff;
}
html .payBox .quotePay .tip {
  margin-top: 0.05rem;
  color: #f55;
  font-weight: 800;
}
html .loginForm {
  margin-top: 0.6rem;
  padding: 0 0.2rem;
}
html .loginForm .inputRow {
  display: flex;
  margin-bottom: 0.2rem;
}
html .loginForm .inputRow > label {
  display: inline-block;
  width: 0.7rem;
  margin-right: 0.1rem;
  font-size: 0.16rem;
  height: 0.35rem;
  line-height: 0.35rem;
  text-align: right;
}
html .loginForm .inputRow .input {
  flex: 1;
}
html .loginForm .inputRow .input input {
  width: 100%;
  border: 0;
  padding-left: 0.1rem;
  border-bottom: 0.01rem solid #efefef;
  height: 0.35rem;
  line-height: 0.35rem;
  font-size: 0.16rem;
}
html .loginForm .inputRowTip {
  justify-content: flex-end;
}
html .loginForm .inputRowTip a {
  color: #f55;
  font-weight: 800;
}
html .loginForm .inputRowTip .forgetText {
  color: #fff;
  word-break: break-all;
}
html .loginForm .emailCodeRow .input {
  display: flex;
}
html .loginForm .emailCodeRow .input input {
  flex: 1;
}
html .loginForm .emailCodeRow .input a {
  display: inline-block;
  height: 0.35rem;
  line-height: 0.35rem;
  padding: 0 0.15rem;
  background-color: #f55;
  color: #fff;
  border-radius: 0.04rem;
  margin-left: 0.1rem;
}
html .loginForm .emailCodeRow .input a.disabled {
  opacity: 0.5;
}
html .loginForm .inputError {
  padding: 0.2rem 0;
}
html .loginForm .inputError p {
  text-align: center;
  font-size: 0.16rem;
  font-weight: 800;
  color: #e4393c;
}
html .loginForm .btnRow {
  margin-bottom: 0.2rem;
}
html .loginForm .btnRow button {
  width: 100%;
  font-size: 0.16rem;
}
html .loginForm .btnRow a {
  font-size: 0.16rem;
}
html .overTextCommon {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
html .connectWx {
  margin-top: 0.3rem;
  border-top: 0.01rem solid #efefef;
  padding-top: 0.2rem;
}
html .connectWx p {
  text-align: center;
}
html .connectWx p img {
  width: 80%;
}
html .connectWx p.text {
  text-align: center;
  font-size: 0.14rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.1rem;
}
html .hidevisi {
  visibility: hidden;
}
html .allCommonModel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  text-align: center;
  display: none;
  /* 正在等待模态框 */
  /* 带按钮的模态框 */
}
html .allCommonModel .loadingCommonBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  font-weight: 800;
}
html .allCommonModel .loadingCommonBox .img {
  margin-bottom: 0.1rem;
}
html .allCommonModel .loadingCommonBox .img i {
  display: block;
  font-size: 0.34rem;
  color: #f55;
  animation: rotate360 1s linear infinite;
}
html .allCommonModel .loadingCommonBox .text {
  font-size: 0.16rem;
  color: #f55;
}
html .allCommonModel .chooseBtnCommonBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0.05rem;
  width: 3.5rem;
  background: #fff;
  box-shadow: 0 0 0.08rem #ccc;
}
html .allCommonModel .chooseBtnCommonBox .msgRow {
  color: #fff;
  font-size: 0.15rem;
  line-height: 0.24rem;
  margin-top: 0.1rem;
  margin-bottom: 0.3rem;
  padding: 0 0.15rem;
}
html .allCommonModel .chooseBtnCommonBox p.title {
  font-size: 0.16rem;
  color: #fff;
  padding: 0.1rem;
  background-color: #f6f6f6;
  margin-bottom: 0.3rem;
  font-weight: 800;
}
html .allCommonModel .chooseBtnCommonBox .btnRow a {
  float: left;
  width: 50%;
  border-top: 0.01rem solid #f6f6f6;
  border-right: 0.01rem solid #f6f6f6;
  color: #f55;
  font-weight: 800;
  padding: 0.1rem 0;
}
html .allCommonModel .chooseBtnCommonBox .btnRow a:last-child {
  border-right: 0;
}
html .allCommonModel .chooseBtnCommonBox .btnRow a:hover {
  border-color: #f55;
  background-color: #f55;
  color: #fff;
}
html .tableCommon {
  width: 100%;
}
html .tableCommon table {
  width: 100%;
  padding: 0.2rem 0;
  border-collapse: collapse;
}
html .tableCommon table th,
html .tableCommon table td {
  text-align: center;
  padding: 0.1rem 0;
}
html .tableCommon table td {
  line-height: 25px;
}
html .tableCommon table .overText {
  max-width: 1.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
html .tableCommon table .btnTable {
  padding: 0.04rem 0.15rem;
  font-size: 0.12rem;
  color: #fff;
  border-radius: 0.04rem;
  background-color: #f55;
  transition: opacity 500ms;
  white-space: nowrap;
}
html .tableCommon table .btnTable:hover {
  opacity: 0.7;
}
html .tableCommon table .delBgd {
  background-color: #e4393c;
}
html .tableCommon table .primaryBgd {
  background-color: #337AB7;
}
html .tableCommon table .infoBgd {
  background-color: #31B0D5;
}
html .tableCommon table .warnBgd {
  background-color: #EC971F;
}
html .tableCommon .contributeChooseTable .iconfont {
  display: none;
}
html .tableCommon .contributeChooseTable td {
  border-top: 0;
}
html .tableCommon .contributeChooseTable tbody tr:hover td {
  color: #f1f4f5;
  background-color: #f55;
}
html .tableCommon .contributeChooseTable tbody tr.select {
  color: #f1f4f5;
  background-color: #f55;
}
html .tableCommon .contributeChooseTable tbody tr.select td:last-child {
  position: relative;
}
html .tableCommon .contributeChooseTable tbody tr.select td:last-child .iconfont {
  display: block;
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  font-size: 0.35rem;
}
html .newsUpdateRow .item a {
  display: block;
  padding: 0.1rem;
  color: #fff;
  border-top: 1px dashed #ebebeb;
}
html .newsUpdateRow .item a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
html .newsUpdateRow .item a span.title {
  float: left;
  width: 48%;
  margin-right: 2%;
}
html .newsUpdateRow .item a span.update {
  float: right;
  width: 50%;
  color: #666;
  font-size: 0.12rem;
}
html .pagingUlCommon {
  height: 0.35rem;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
html .pagingUlCommon .page_div {
  font-size: 0.15rem;
  font-family: "microsoft yahei";
  color: #666666;
  text-align: center;
  box-sizing: border-box;
}
html .pagingUlCommon .page_div a {
  min-width: 0.38rem;
  height: 0.35rem;
  border: 0.01rem solid #efefef !important;
  text-align: center;
  cursor: pointer;
  line-height: 0.35rem;
  color: #fff;
  font-size: 0.13rem;
  display: inline-block;
}
html .pagingUlCommon .page_div a.log {
  border: 0 !important;
}
html .pagingUlCommon .page_div #firstPage,
html .pagingUlCommon .page_div #lastPage {
  width: 0.5rem;
  color: #fff;
  border: 0.01rem solid #efefef !important;
}
html .pagingUlCommon .page_div #prePage,
html .pagingUlCommon .page_div #nextPage {
  width: 0.7rem;
  color: #fff;
  border: 0.01rem solid #efefef !important;
}
html .pagingUlCommon .page_div a.current,
html .pagingUlCommon .page_div a:hover {
  border-color: #f55 !important;
  background-color: #f55;
  color: #fff !important;
}
html .pagingUlCommon .page_div .totalPages,
html .pagingUlCommon .page_div .totalSize {
  margin: 0 0.1rem;
  display: none;
}
html .pagingUlCommon .page_div .totalPages span,
html .pagingUlCommon .page_div .totalSize span {
  color: #efefef;
  margin: 0 0.05rem;
}
html .zpagenav {
  text-align: center;
  -webkit-user-select: none;
  color: #fff;
}
html .zpagenav ul {
  display: inline-block;
  margin: 20px 20px;
  padding: 0;
}
html .zpagenav ul li {
  display: inline-block;
  margin: 0;
  border: 0.01rem solid #efefef;
  border-right: 0;
  background: #fff;
  font-size: 0.13rem;
  min-width: 0.38rem;
  height: 0.35rem;
  line-height: 0.35rem;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
}
html .zpagenav ul li:last-child {
  border-right: 0.01rem solid #efefef;
}
html .zpagenav ul li:last-child,
html .zpagenav ul li:first-child {
  padding: 0 0.1rem;
}
html .zpagenav ul li:hover {
  color: #f55;
}
html .zpagenav ul li.active {
  border-color: #f55;
  background-color: #f55;
  color: #fff;
  cursor: default;
}
html .zpagenav ul li.active:hover {
  color: #fff;
}
html .zpagenav ul li.disabled {
  cursor: not-allowed;
  color: #efefef;
}
html .zpagenav ul li.dot {
  cursor: default;
}
html .tagListCommon .typeCell {
  display: inline-block;
  margin: 0 0.09rem;
  margin-bottom: 0.18rem;
  min-height: 0.32rem;
  background-color: #f7f7f7;
  border: 1px solid #dcdcdc;
  border-radius: 0.04rem;
  vertical-align: top;
  overflow: hidden;
  cursor: pointer;
}
html .tagListCommon .typeCell img {
  width: 0.32rem;
  height: 0.32rem;
  vertical-align: middle;
}
html .tagListCommon .typeCell span {
  display: inline-block;
  padding: 0 0.11rem 0 0.06rem;
  font-size: 0.14rem;
}
html .tagListCommon .typeCell.active {
  border-color: #f55;
  background-color: #f55;
  color: #fff;
}
html .tagListCommon .commonType {
  transition: opacity 300ms ease;
}
html .tagListCommon .commonType:hover {
  opacity: 0.6;
}
html .tagListCommon .more {
  display: inline-block;
  margin-top: 7px;
  font-size: 14px;
  color: #787878;
  cursor: pointer;
}
html .tagListCommon .more .iconfont {
  top: 0.01rem;
  color: #787878;
}
html .tagListCommon .more .icon-back {
  float: left;
}
html .swiper-pagination-bullet-active {
  background: #f55;
}
html iframe {
  border: 0;
}
html .tip-bubble {
  font-size: 0.12rem;
  padding: 0.04rem 0.08rem 0.04rem 0.08rem;
  text-align: center;
  position: fixed;
  z-index: 1000;
  border-radius: 0.04rem;
  display: inline-block;
  opacity: 0;
  max-width: 3rem;
}
html .tip-bubble:after {
  content: "";
  position: absolute;
  margin-left: -0.08rem;
  width: 0;
  height: 0;
}
html .tip-bubble-center-point:after {
  left: 50%;
  right: auto;
}
html .tip-bubble-left-point:after {
  left: 0.1rem;
  right: auto;
}
html .tip-bubble-right-point:after {
  right: 0.1rem;
  left: auto;
}
html .tip-arrow-top:after {
  border-bottom: solid 0.08rem;
  border-right: solid 0.08rem transparent;
  border-left: solid 0.08rem transparent;
  bottom: 100%;
}
html .tip-arrow-bottom:after {
  border-top: solid 0.08rem;
  border-right: solid 0.08rem transparent;
  border-left: solid 0.08rem transparent;
  top: 100%;
}
html .tip-theme-light:after {
  border-bottom-color: #fbf8f8;
  border-top-color: #fbf8f8;
}
html .tip-theme-dark:after {
  border-bottom-color: #000;
  border-top-color: #000;
}
html .userInfoWrapperCommon {
  margin-bottom: 0.2rem;
}
html .userInfoWrapperCommon .userRow .avatar {
  float: left;
  width: 0.8rem;
  height: 0.8rem;
}
html .userInfoWrapperCommon .userRow .avatar img {
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
  border-radius: 50%;
}
html .userInfoWrapperCommon .userRow .nameCell {
  float: left;
  padding-left: 0.1rem;
  height: 0.8rem;
  display: table-cell;
  vertical-align: middle;
}
html .userInfoWrapperCommon .userRow .nameCell .name {
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
}
html .userInfoWrapperCommon .userRow .nameCell .name .text {
  display: inline;
  font-size: 0.21rem;
  font-weight: 700;
  vertical-align: middle;
}
html .userInfoWrapperCommon .userRow .nameCell .name i.iconfont {
  font-weight: 900;
  color: #f55;
}
html .userInfoWrapperCommon .userRow .nameCell .marks {
  color: #fff;
}
html .userInfoWrapperCommon .userRow .nameCell .marks p {
  display: inline-block;
  border-right: 0.01rem solid #fff;
  padding: 0 0.1rem;
}
html .userInfoWrapperCommon .userRow .nameCell .marks p:first-child {
  padding-left: 0;
}
html .userInfoWrapperCommon .userRow .nameCell .marks p:last-child {
  border-right: 0;
}
html .userInfoWrapperCommon .userRow .nameCell .marks .num {
  font-weight: 800;
}
html .userInfoWrapperCommon .userRow .priBtn {
  float: right;
  height: 0.8rem;
  line-height: 0.8rem;
}
html .userInfoWrapperCommon .userRow .priBtn .btn {
  background: #f55;
  border-radius: 0.04rem;
  padding: 0.05rem 0.5rem;
  border: 0.01rem solid #f55;
  transition: all 500ms;
}
html .userInfoWrapperCommon .userRow .priBtn .btn:hover {
  color: #f55;
  background: #fff;
}
html .adListCommon {
  position: fixed;
  background: url("/styles/images/adbgd.jpg") no-repeat center;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0.5rem;
  max-width: 7.68rem;
  margin: 0 auto;
}
html .adListCommon > a {
  display: flex;
  align-items: center;
  align-content: center;
  padding: 0.1rem 0.15rem;
  height: 0.6rem;
  color: #fff;
}
html .adListCommon > a > div.info {
  flex: 1;
  color: #6c6d6c;
  font-weight: 800;
  margin-left: 0.75rem;
  line-height: 0.2rem;
  max-height: 0.4rem;
  overflow: hidden;
}
html .adListCommon .cover {
  position: absolute;
  top: -0.34rem;
  box-shadow: 0 0 0.03rem #ccc;
  border-radius: 0.04rem;
  height: 0.8rem;
}
html .adListCommon .cover img {
  width: 0.65rem;
  height: 0.8rem;
  object-fit: cover;
  border-radius: 0.04rem;
}
html .adListCommon .tag {
  height: 0.35rem;
  line-height: 0.35rem;
  margin-left: 0.1rem;
  background-color: #f55;
  color: #fff;
  font-size: 0.15rem;
  border-radius: 0.04rem;
  width: 0.5rem;
  text-align: center;
}
html .recommenCommon {
  padding: 0.1rem;
  padding-bottom: 0;
}
html .recommenCommon .item {
  display: block;
  font-size: 0.14rem;
  color: #fff;
}
html .recommenCommon .item .name {
  color: #fff;
  font-weight: 800;
}
html .recommenCommon .item .intr {
  line-height: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
html .headCommon {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 4;
  height: 0.45rem;
  background-color: #fff;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
html .headCommon .tab-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 1.1rem;
  background-color: #978d7e;
  overflow: hidden;
  border-radius: 0.3rem;
}
html .headCommon .tab-box .item {
  text-align: center;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  -webkit-flex-grow: 0;
  flex-grow: 0;
  width: 50%;
}
html .headCommon .tab-box .item a {
  display: block;
  color: #fff;
  position: relative;
  line-height: 0.3rem;
}
html .headCommon .tab-box .item a.active {
  border-radius: 0.3rem;
  background-color: #fff;
  color: #978d7e;
}
html .headCommon .leftPicPage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  z-index: 5;
  left: 0.2rem;
  top: 0.08rem;
  bottom: 0.08rem;
  overflow: hidden;
}
html .headCommon .action {
  position: absolute;
  right: 0.2rem;
  z-index: 5;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}
html .headCommon .action .btn {
  display: block;
  text-align: center;
  color: #fff;
}
html .headCommon .action .btn i {
  font-size: 0.24rem;
}
html .headCommon .leftMenu {
  position: absolute;
  z-index: 5;
  left: 0.2rem;
  top: 0;
  bottom: 0;
  padding: 0.08rem 0;
}
html .headCommon .leftMenu a {
  display: block;
  height: 100%;
  line-height: 0.29rem;
  background: -webkit-linear-gradient(left, #ffffff, #3fff00);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #ffffff, #3fff00);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #ffffff, #3fff00);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #ffffff, #3fff00);
  color: #6f6f6f;
  font-weight: 800;
  padding: 0 0.1rem;
  border-radius: 0.3rem;
}
html .headCommon .picCenter {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
html .commonPageContainer {
  padding-top: 0.6rem;
}
html .headCommonNew {
  padding: 0.12rem 0;
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(top, #e2e5ea, #F7F8FA);
  border-bottom: none;
}
html .headCommonNew .content_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}
html .headCommonNew .content_box .logo_box {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
html .headCommonNew .content_box .logo_box .toggle_menu_box {
  padding: 0 0.12rem;
}
html .headCommonNew .content_box .logo_box .toggle_menu_box img {
  width: 0.2rem;
  height: 0.2rem;
}
html .headCommonNew .content_box .logo_box a {
  color: #333;
  font-weight: 700;
  font-size: 0.15rem;
}
html .headCommonNew .content_box .logo_box img {
  width: 0.56rem;
  height: 0.32rem;
}
html .headCommonNew .content_box span {
  color: #f55;
  font-weight: 700;
  font-size: 0.24rem;
  padding-right: 0.03rem;
}
html .headCommonNew .content_box .search_box {
  position: relative;
  display: flex;
  color: #ababab;
  font-size: 0.14rem;
  width: 100%;
  background: 0 0;
  background-size: 0;
  padding: 0;
  border-radius: 0;
  height: auto;
  line-height: normal;
}
html .headCommonNew .content_box .search_box .search_icon {
  display: block;
  width: 0.22rem;
  height: 0.22rem;
  margin: 0 0.16rem 0 auto;
}
html .headCommonNew .content_box .search_box input {
  display: none;
  border: none;
  font-size: 0.14rem;
  height: 0.35rem;
  line-height: 0.35rem;
  background: #f0f0f0;
  margin: 0 0.32rem 0 0.36rem;
  width: calc(100% - 1rem);
}
html .headCommonNew .content_box .search_box .close {
  display: none;
  position: absolute;
  right: 0.08rem;
  top: 0.02rem;
}
html .headCommonNew .content_box .search_box .close img {
  max-width: 0.16rem;
}
html .headCommonNew .content_box .center_box {
  display: flex;
  align-items: center;
  font-size: 0.14rem;
}
html .headCommonNew .content_box .center_box .member_box {
  display: flex;
  align-items: center;
}
html .headCommonNew .content_box .center_box img {
  width: 0.22rem;
  height: 0.22rem;
  margin: 0 0.06rem;
}
html .headCommonNew .menu_box {
  position: fixed;
  padding: 0 0.12rem;
  margin-top: 0.12rem;
  z-index: 999;
  background: -webkit-linear-gradient(top, #e2e5ea, #F7F8FA);
  opacity: 0.98;
  max-width: 430px;
  height: 100vh;
  overflow: scroll;
  display: none;
}
html .headCommonNew .menu_box .menu_item {
  padding: 0.12rem 0;
}
html .headCommonNew .menu_box .menu_item .caption_box {
  display: flex;
  align-items: center;
}
html .headCommonNew .menu_box .menu_item .caption_box img {
  width: 0.19rem;
  height: 0.19rem;
  margin-right: 0.03rem;
}
html .headCommonNew .menu_box .menu_item .caption_box a {
  font-size: 0.16rem;
  font-weight: 700;
  color: #000;
}
html .headCommonNew .menu_box .menu_item .links_box {
  padding: 0.06rem 0 0.16rem;
}
html .headCommonNew .menu_box .menu_item .links_box a {
  color: #333;
  font-size: 0.14rem;
  white-space: nowrap;
  line-height: 0.32rem;
  margin-right: 0.12rem;
}
html .headCommonNew .menu_box .menu_item .links_box .highlight {
  color: #f55;
}
html .headCommonNew .button_box {
  white-space: nowrap;
  font-size: 0.12rem;
  padding: 0.12rem 0.12rem 0 0.12rem;
  line-height: 0.14rem;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: none;
}
html .headCommonNew .button_box .item {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: -webkit-linear-gradient(top, #fff, #f2f2f2);
  border: #e8e8e8 solid 0.01rem;
  color: #6e6e6e;
  border-radius: 0.08rem;
  text-align: center;
  margin-right: 0.07rem;
  width: 0.48rem;
  padding: 0.03rem 0;
}
html .headCommonNew .button_box .item img {
  width: 0.24rem;
}
html .headCommonNew .button_box .item i.collectIcon {
  display: inline-block;
  width: 0.24rem;
  height: 0.24rem;
  background: url("../images/option_collect.svg") no-repeat center;
  background-size: cover;
}
html .headCommonNew .button_box .item.shared i.collectIcon {
  background-image: url("../images/option_collect_active.svg");
}
html .headCommonNew .button_box .item.shared span {
  color: rgb(255, 85, 85);
}
html .headCommonNew .button_box .item span {
  font-size: 0.12rem;
  margin-top: 0.03rem;
}
html .headCommonNew.show .menu_box {
  display: block;
}
html .headCommonNew.showSearch .content_box .logo_box,
html .headCommonNew.showSearch .content_box .search_icon,
html .headCommonNew.showSearch .content_box .center_box {
  display: none;
}
html .headCommonNew.showSearch .content_box .search_box {
  background: #f0f0f0 url(https://cdn.favcomic.com/file/e-media/static/image/search_icon.svg) no-repeat 0.14rem 0.08rem;
  background-size: 0.16rem 0.16rem;
  padding: 0;
  border-radius: 0.14rem;
  height: 0.35rem;
  line-height: 0.35rem;
  margin: 0 0.12rem;
}
html .headCommonNew.showSearch .content_box .search_box input {
  display: inline-block;
}
html .headCommonNew.showReadTool .button_box {
  display: flex;
}
html .commonBtnNew {
  cursor: pointer;
  line-height: 0.48rem;
  font-weight: 700;
  color: #fff;
  background: #f55;
  border-radius: 0.06rem;
  display: block;
  width: 100%;
  font-size: 0.15rem;
  text-align: center;
  margin-top: 0.08rem;
  margin-right: 0.06rem;
  margin-bottom: 0.08rem;
  border: none;
}
html .commonBtnNew:active, html .commonBtnNew:focus, html .commonBtnNew:hover {
  opacity: 0.7;
  color: #fff;
}
html .comment_box {
  padding: 0.16rem 0 0.08rem;
  display: flex;
  justify-content: flex-start;
}
html .comment_box.hide {
  display: none !important;
}
html .comment_box .avatar_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
html .comment_box .avatar_box .avatar {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 100%;
  vertical-align: super;
}
html .comment_box .avatar_box a {
  color: #989898;
  font-size: 0.12rem;
  line-height: 0.24rem;
}
html .comment_box .content_info {
  width: 100%;
  line-height: 0.2rem;
  margin-left: 0.12rem;
}
html .comment_box .content_info .title_box {
  font-size: 0.13rem;
  font-weight: 700;
  color: #000;
  display: flex;
  justify-content: space-between;
}
html .comment_box .content_info .title_box .title_info {
  display: flex;
  align-items: center;
}
html .comment_box .content_info .title_box .vip {
  width: 0.16rem;
  height: auto;
  vertical-align: sub;
}
html .comment_box .content_info .title_box .time {
  font-size: 0.12rem;
  font-weight: 400;
  color: #989898;
}
html .comment_box .content_info .title_box .score_box {
  display: flex;
  color: #989898;
  margin: 0 0.08rem;
}
html .comment_box .content_info .title_box .score_box .star_box {
  display: flex;
  align-items: center;
  margin-left: 0.03rem;
}
html .comment_box .content_info .title_box .score_box .star_box img {
  width: 0.16rem;
  height: auto;
}
html .comment_box .content_info .title_box .awesome span {
  font-weight: 400;
  padding: 0 0.02rem;
}
html .comment_box .content_info .title_box .awesome img {
  vertical-align: middle;
  width: 0.18rem;
  padding: 0.02rem;
  margin-top: -0.02rem;
  cursor: pointer;
}
html .comment_box .content_info .content {
  width: 90%;
  line-height: 0.22rem;
  color: #333;
}
html .comment_box .content_info .reply_btn {
  cursor: pointer;
  color: #989898;
}
html .comment_box .expend {
  border-top: #f1f1f1 solid 0.01rem;
  margin-top: 0.16rem;
  padding-top: 0.16rem;
  width: 100%;
}
html .comment_box .expend span {
  display: flex;
  align-items: center;
}
html .comment_box .expend span img {
  width: 0.2rem;
  max-width: 0.2rem;
  padding-left: 0.08rem;
  vertical-align: middle;
  height: auto;
}
html .commonFootNew {
  margin: 0 auto;
  text-align: center;
}
html .commonFootNew .divider {
  line-height: 0.28rem;
  border-top: #e8e8e8 solid 0.09rem;
  margin: 0.12rem 0;
}
html .commonFootNew .note_box {
  margin: 0 0.12rem 0.12rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
  text-align: justify;
  border-bottom: 0.01rem solid #e8e8e8;
  padding-bottom: 0.12rem;
}
html .commonFootNew .note_box p {
  color: #a7a7a7;
  text-align: center;
}
html .commonFootNew .content_box {
  margin: 0 0.12rem;
  font-size: 0.13rem;
}
html .commonFootNew .content_box a {
  color: #333;
}
html .commonFootNew .content_box ul {
  margin: 0.12rem 0;
  overflow: hidden;
}
html .commonFootNew .content_box .policy_box li {
  display: inline;
  padding-left: 0.05rem;
}
html .commonFootNew .content_box .policy_box li:nth-child(1) {
  border-left: none;
}
html .commonFootNew .content_box .slogan_box {
  display: flex;
  align-items: center;
  justify-content: center;
}
html .commonFootNew .content_box .slogan_box img {
  width: 0.56rem;
  height: auto;
  margin-right: 0.03rem;
}
html .commonFootNew .content_box .contact_box li {
  display: inline;
  white-space: nowrap;
  margin-right: 0.08rem;
}
html .commonFootNew .content_box .contact_box li img {
  width: 0.2rem;
  height: 0.2rem;
  vertical-align: text-bottom;
}
html .commonFootNew .copy_box {
  width: 100%;
  background: #333;
  height: 0.28rem;
  line-height: 0.28rem;
  color: #fff;
  font-size: 0.12rem;
}
html .loginContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
html .pageWarnBox {
  width: 85%;
  max-width: 500px;
  background: #000;
  z-index: 9999;
  border-radius: 0.06rem;
  text-align: center;
  box-shadow: 0.01rem 0.02rem 0.18rem #0c0b19;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 0.3rem 0.15rem;
}
html .pageWarnBox .red {
  background-color: #f55;
  padding: 0 0.02rem;
  border-radius: 0.03rem;
  margin-left: 0.02rem;
}
html .pageWarnBox .title {
  font-size: 0.2rem;
}
html .pageWarnBox .sub {
  font-size: 0.2rem;
  font-weight: 600;
  padding: 0.15rem 0;
}
html .pageWarnBox .desc {
  color: #8d8d8d;
  line-height: 0.2rem;
}
html .pageWarnBox .inputBtn,
html .pageWarnBox .exitBtn {
  cursor: pointer;
  line-height: 0.48rem;
  font-weight: 700;
  color: #fff;
  background: #f55;
  border-radius: 0.06rem;
  display: block;
  width: 100%;
  font-size: 0.15rem;
  text-align: center;
  margin-top: 0.35rem;
  margin-bottom: 0.08rem;
  border: none;
}
html .pageWarnBox .exitBtn {
  margin-top: 0.2rem;
  background-color: #1a1a1a;
}
html .pageWarnBox .footetip {
  padding-top: 0.5rem;
  color: #8d8d8d;
}
html .pageWarnBox .footetip img {
  width: 0.5rem;
}
html .loginBoxNew {
  width: 80%;
  max-width: 320px;
  text-align: center;
}
html .loginBoxNew .main_box {
  margin-top: 0.32rem;
  padding: 0;
  line-height: 0.19rem;
  display: block;
}
html .loginBoxNew .main_box .close_box {
  margin-top: -0.27rem;
  padding: 0 0.08rem;
  position: absolute;
  right: 0;
  cursor: pointer;
}
html .loginBoxNew .main_box .close_box img {
  width: 0.16rem;
  vertical-align: text-bottom;
  padding-right: 0.03rem;
}
html .loginBoxNew .main_box .logo_box img {
  width: 0.8rem;
}
html .loginBoxNew .main_box .form_box {
  line-height: 0.45rem;
  padding: 0 0.19rem 0.19rem;
}
html .loginBoxNew .main_box .form_box .form_title {
  text-align: center;
  color: #1a1a1a;
  font-size: 0.14rem;
  font-weight: 700;
}
html .loginBoxNew .main_box .form_box .form_item {
  border: 0.01rem solid #c7c7c7;
  border-radius: 0.05rem;
  height: 0.45rem;
  display: flex;
  margin-bottom: 0.16rem;
  padding-right: 0.03rem;
}
html .loginBoxNew .main_box .form_box .form_item .icon {
  width: 0.28rem;
  padding-left: 0.08rem;
}
html .loginBoxNew .main_box .form_box .form_item input {
  width: 92%;
  outline: none;
  font-size: 0.13rem;
  background: #fff;
  padding-left: 0.08rem;
  border: none;
  color: #333;
}
html .loginBoxNew .main_box .form_box .form_item input:focus + .option {
  display: block;
}
html .loginBoxNew .main_box .form_box .form_item .option {
  width: 0.34rem;
  padding-left: 0.08rem;
  vertical-align: text-bottom;
  padding-right: 0.08rem;
  cursor: pointer;
  display: none;
}
html .loginBoxNew .main_box .form_box .form_item .option:hover {
  display: block;
}
html .loginBoxNew .main_box .form_box .option_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
html .loginBoxNew .main_box .form_box .option_box .txt {
  color: #000;
  font-weight: 700;
  font-size: 0.13rem;
  cursor: pointer;
  display: flex;
}
html .loginBoxNew .main_box .form_box .option_box .txt img {
  max-width: 0.16rem;
  vertical-align: middle;
}
html .loginBoxNew .main_box .form_box .login_btn {
  cursor: pointer;
  line-height: 0.48rem;
  font-weight: 700;
  color: #fff;
  background: #f55;
  border-radius: 0.06rem;
  display: block;
  width: 100%;
  font-size: 0.15rem;
  text-align: center;
  margin-top: 0.08rem;
  margin-right: 0.06rem;
  margin-bottom: 0.08rem;
  border: none;
}
html .loginBoxNew .main_box .form_box .button_box span {
  color: #f55;
  font-size: 0.13rem;
}
html .loginBoxNew .main_box .goLogin {
  color: #f55;
}
html .rankWrapper {
  background-color: #fff;
}
html .rankWrapper .headRank {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.12rem;
}
html .rankWrapper .headRank .title_box {
  display: flex;
  align-items: center;
}
html .rankWrapper .headRank .title_box img {
  width: 0.16rem;
  height: 0.16rem;
}
html .rankWrapper .headRank .title_box h2 {
  font-size: 0.14rem;
  font-weight: 700;
  margin-left: 0.05rem;
}
html .rankWrapper .headRank .more_box {
  text-align: center;
  color: #333;
  font-size: 0.12rem;
  display: flex;
  align-items: center;
  min-height: 0.44rem;
  margin: 0;
}
html .rankWrapper .headRank .more_box .more {
  margin-left: 0.19rem;
  width: 0.14rem;
  height: 0.14rem;
  vertical-align: middle;
}
html .rankWrapper .headRank .more_box .dots_box.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 0.05rem;
  height: 0.05rem;
  margin-right: 0.08rem;
}
html .rankWrapper .headRank .more_box .dots_box.swiper-pagination-bullets .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
html .rankWrapper .fictionRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
html .rankWrapper .fictionRow .item {
  margin-bottom: 0.05rem;
  width: 33.333333333%;
  position: relative;
}
html .rankWrapper .fictionRow .item .select {
  position: absolute;
  right: 0.15rem;
  top: 0.07rem;
  z-index: 10;
  display: none;
}
html .rankWrapper .fictionRow .item .select span {
  display: block;
  width: 0.2rem;
  height: 0.2rem;
  background: url("../images/unselect.svg") no-repeat left top;
  background-size: cover;
}
html .rankWrapper .fictionRow .item .select.selected span {
  background-image: url("../images/selected.svg");
}
html .rankWrapper .fictionRow .item > a {
  display: block;
  margin: 0 0.04rem;
  position: relative;
}
html .rankWrapper .fictionRow .item > a > img {
  background: rgb(238, 238, 238);
  display: block;
  width: 100%;
  height: 1.6rem;
  border-radius: 0.06rem;
  object-fit: cover;
}
html .rankWrapper .fictionRow .item > a .status {
  position: absolute;
  color: #fff;
  left: 0.06rem;
  top: 0.06rem;
  padding: 0 0.08rem;
  border-radius: 0.06rem;
  line-height: 0.23rem;
  opacity: 0.8;
  font-size: 0.11rem;
  background: -webkit-linear-gradient(right, #73726d, #333);
}
html .rankWrapper .fictionRow .item > a .brief_box {
  line-height: 0.19rem;
  margin-top: 0.02rem;
  text-align: left;
}
html .rankWrapper .fictionRow .item > a .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.13rem;
}
html .rankWrapper .fictionRow .item > a .title .name {
  color: #333;
}
html .rankWrapper .fictionRow .item > a .info_box {
  display: flex;
  justify-content: space-between;
  color: #a7a7a7;
  font-size: 0.12rem;
}
html .rankWrapper .fictionRow .item > a .info_box .author {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
html .rankWrapper .fictionRow .item > a .info_box .view {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: end;
}
html .rankWrapper .fictionRow .item > a .info_box .view img {
  width: 0.16rem;
  height: auto;
  margin: 0 0.03rem;
}
html .rankWrapper .storyRow .typeCell {
  margin-bottom: 0.1rem;
}
html .rankWrapper .storyRow .typeCell .typeItem {
  float: left;
  width: 25%;
}
html .rankWrapper .storyRow .typeCell .typeItem a {
  display: block;
  color: #fff;
  text-align: center;
  padding: 0.1rem 0;
}
html .rankWrapper .storyRow .typeCell .typeItem a.active {
  background-color: #f55;
  color: #fff;
}
html .rankWrapper .storyRow .storyCell {
  display: flex;
  padding: 0.1rem;
  border-top: 0.01rem solid #F2F2F2;
  position: relative;
  width: 100%;
}
html .rankWrapper .storyRow .storyCell .leftCover {
  margin-right: 0.15rem;
}
html .rankWrapper .storyRow .storyCell .leftCover a {
  display: block;
  width: 0.8rem;
  height: 1.15rem;
}
html .rankWrapper .storyRow .storyCell .leftCover a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
html .rankWrapper .storyRow .storyCell .rightInfo {
  flex: 1;
}
html .rankWrapper .storyRow .storyCell .rightInfo > a {
  display: block;
}
html .rankWrapper .storyRow .storyCell .rightInfo > a div {
  font-size: 0.12rem;
  color: #fff;
}
html .rankWrapper .storyRow .storyCell .rightInfo > a .title {
  font-size: 0.15rem;
  color: #333;
  font-weight: 800;
  margin-bottom: 0.05rem;
  width: 68%;
  max-width: 2.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
html .rankWrapper .storyRow .storyCell .rightInfo > a .auth {
  margin-bottom: 0.02rem;
  color: #333;
}
html .rankWrapper .storyRow .storyCell .rightInfo > a .intr {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 0.18rem;
  height: 0.53rem;
}
html .rankWrapper .storyRow .storyCell .rightInfo .btnCe {
  text-align: right;
}
html .rankWrapper .storyRow .storyCell .rightInfo .btnCe span {
  color: #fff;
  font-size: 0.12rem;
}
html .rankWrapper .storyRow .storyCell a.btn {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  background-color: #f55;
  padding: 0.08rem 0.12rem;
  color: #fff;
  border-radius: 0.05rem;
  font-size: 0.12rem;
}
html .rankWrapper .cellOneNoneBorder .storyCell:first-child {
  border-top: 0;
}
html .rankWrapper .getMore {
  padding: 0.2rem 0.1rem;
}
html .crumbs_box {
  display: flex;
  align-items: center;
  margin: 0 0.12rem;
  padding-top: 0.12rem;
}
html .crumbs_box img {
  width: 0.16rem;
  height: 0.16rem;
  margin: 0 0.02rem;
}
html .crumbs_box a {
  color: #333;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.14rem;
}
html .crumbs_box a.current {
  color: #a7a7a7;
  font-weight: 400;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html #toast-container {
  position: fixed;
  top: -1rem;
  left: 50%;
  background-color: #fff;
  color: #333;
  padding: 0.08rem 0.14rem;
  border-radius: 0.06rem;
  transition: top 300ms ease-in-out;
  transform: translateX(-50%);
  z-index: 10000;
  font-size: 0.14rem;
  box-shadow: 0 0 0 3px #f6f6f6;
}
html #toast-container .toast {
  text-wrap: nowrap;
}
html #toast-container .toast img {
  width: 0.26rem;
  vertical-align: middle;
  margin-right: 0.1rem;
  position: relative;
  top: -0.01rem;
}
html #toast-container.show {
  top: 0.6rem;
}
html .badRead {
  height: calc(100vh - 267px);
  line-height: 200px;
  text-align: center;
}
html .toTopCommon {
  position: fixed;
  bottom: 1rem;
  right: 2%;
  z-index: 100;
}
html .toTopCommon a {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  line-height: 0.4rem;
  text-align: center;
  border: 0.01rem solid #dcdcdc;
  background-color: #fff;
  border-radius: 50%;
  transform: rotate(180deg);
}
html .toTopCommon a i {
  color: #616161;
  font-size: 0.16rem;
  position: relative;
  top: -0.03rem;
}
html .toTopCommon a.toTopPri {
  opacity: 0;
}
html .toTopCommon a.fideInTop {
  opacity: 1;
}
html .headDetailCommon {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 4;
  height: 0.45rem;
  line-height: 0.45rem;
  background-color: #fff;
  display: flex;
  border-bottom: 0.01rem solid #fff;
}
html .headDetailCommon .leftBack .backhref {
  display: block;
  padding-right: 0.2rem;
  height: 100%;
  color: #f55;
}
html .headDetailCommon .leftBack .backhref i {
  font-weight: 800;
  font-size: 0.26rem;
}
html .headDetailCommon .centerTitle {
  flex: 1;
  text-align: center;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
html .headDetailCommon .rightAll {
  padding-right: 0.15rem;
}
html .headDetailCommon .rightAll a {
  color: #f55;
}
html .footerDetailCommon {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background-color: #fff;
  height: 0.5rem;
  line-height: 0.5rem;
  box-shadow: 0 0 0.05rem #fff;
  display: flex;
}
html .footerDetailCommon .prev,
html .footerDetailCommon .next {
  height: 100%;
  position: relative;
  z-index: 13;
  background-color: #fff;
}
html .footerDetailCommon .homeBack {
  position: relative;
  z-index: 10;
  cursor: pointer;
}
html .footerDetailCommon .homeBack > a {
  background-color: #fff;
}
html .footerDetailCommon .itemFooter {
  flex: 1;
  text-align: center;
  position: relative;
}
html .footerDetailCommon .itemFooter a {
  color: #f55;
  display: block;
}
html .footerDetailCommon .itemFooter::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  height: 50%;
  border-right: 0.01rem solid #efefef;
}
html .footerDetailCommon .itemFooter:last-child::after {
  border-right: 0;
}
html .footerDetailCommon .prev:hover,
html .footerDetailCommon .next:hover {
  background-color: #f55;
}
html .footerDetailCommon .prev:hover a,
html .footerDetailCommon .next:hover a {
  font-weight: 800;
  color: #fff;
}
html .footerDetailCommon .disabled a {
  color: #fff;
}
html .footerDetailCommon .btnTabCommon {
  position: fixed;
  background-color: rgb(255, 255, 255);
  bottom: -0.9rem;
  left: 0;
  right: 0;
  max-width: 7.68rem;
  box-shadow: 0 0 0.05rem #fff;
  margin: 0 auto;
  z-index: -1;
  padding: 0.2rem 0.1rem;
  transition: bottom 300ms;
}
html .footerDetailCommon .btnTabCommon .item {
  margin-bottom: 0.1rem;
}
html .footerDetailCommon .btnTabCommon .item a {
  display: block;
  height: 0.45rem;
  line-height: 0.45rem;
  background-color: #f6f6f6;
  color: #fff;
  font-weight: 800;
  border-radius: 0.04rem;
  text-align: center;
  font-size: 0.14rem;
}
html .footerDetailCommon .btnTabCommon .item:last-child {
  margin-bottom: 0;
}
html .footerDetailCommon .homeBack.toggleBtnTab > a {
  background-color: #f55;
  color: #fff;
}
html .footerDetailCommon .homeBack.toggleBtnTab .btnTabCommon {
  bottom: 0.5rem;
}
html .footerCommon {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background-color: #fff;
  height: 0.5rem;
  box-shadow: 0 0 0.05rem #fff;
}
html .footerCommon .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  height: 100%;
}
html .footerCommon .nav .item {
  flex: 1;
}
html .footerCommon .nav .item > a {
  color: #888888;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 0.14rem;
}
html .footerCommon .nav .item > a .iconfont {
  width: 0.2rem;
  height: 0.2rem;
  top: 0.02rem;
}
html .footerCommon .nav .item > a.active {
  color: #f55;
}
html .affirmCommon {
  padding: 0.2rem 0;
  text-align: center;
  background-color: #fff;
}
html .affirmCommon a {
  font-size: 0.14rem;
  color: #f55;
}
html .prevNovel,
html .nextNovel {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100000;
}
html .prevNovel i,
html .nextNovel i {
  display: block;
  height: 0.4rem;
  line-height: 0.4rem;
  width: 0.4rem;
  color: #fff;
  background-color: #f55;
  font-weight: 800;
  text-align: center;
  font-size: 0.2rem;
  border-radius: 0.02rem;
}
html .prevNovel i.disabled,
html .nextNovel i.disabled {
  background-color: #fff;
}
html .prevNovel {
  left: 0;
}
html .nextNovel {
  right: 0;
}
html .shareModel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  text-align: center;
  display: none;
}
html .shareModel .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100002;
}
html .shareModel .close i {
  color: #999;
  font-size: 0.2rem;
  display: block;
  height: 0.5rem;
  line-height: 0.5rem;
  width: 0.5rem;
  text-align: center;
}
html .shareModel .gb_resLay {
  position: absolute;
  z-index: 100001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  width: 100%;
  margin: 0 auto;
  padding: 0.2rem 0;
}
html .shareModel .gb_resLay .gb_res_t {
  line-height: 0.58rem;
  height: 0.58rem;
  position: relative;
  font-size: 0.18rem;
  text-align: center;
}
html .shareModel .gb_resLay .gb_res_t span {
  display: inline-block;
  padding: 0 0.06rem;
  position: relative;
  z-index: 2;
}
html .shareModel .gb_resLay .gb_resItms {
  margin: 0 4%;
}
html .shareModel .gb_resLay .gb_resItms li {
  text-align: center;
  float: left;
  width: 33.333%;
  padding-bottom: 0.15rem;
}
html .shareModel .bdsharebuttonbox a {
  line-height: 0.24rem;
  font-size: 0.18rem;
  color: #999;
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 auto 0.1rem;
  float: none;
  padding: 0;
  display: block;
}
html .shareModel .bdsharebuttonbox a img {
  width: 0.6rem;
  height: 0.6rem;
}
html .shareModel .bdsharebuttonbox .bds_tsina {
  background: url(/styles/images/gbRes_6.png) no-repeat center center/0.6rem 0.6rem;
}
html .shareModel .bdsharebuttonbox .bds_qzone {
  background: url(/styles/images/gbRes_4.png) no-repeat center center/0.6rem 0.6rem;
}
html .shareModel .bdsharebuttonbox .bds_tqq {
  background: url(/styles/images/gbRes_5.png) no-repeat center center/0.6rem 0.6rem;
}
html .shareModel .bdsharebuttonbox .bds_weixin {
  background: url(/styles/images/gbRes_2.png) no-repeat center center/0.6rem 0.6rem;
}
html .shareModel .bdsharebuttonbox .bds_sqq {
  background: url(/styles/images/gbRes_3.png) no-repeat center center/0.6rem 0.6rem;
}
html .shareModel .bdsharebuttonbox .bds_renren {
  background: url(/styles/images/gbRes_1.png) no-repeat center center/0.6rem 0.6rem;
}
html .shareModel .bd_weixin_popup .bd_weixin_popup_foot {
  position: relative;
  top: -0.12rem;
}
html .btnTabCommon {
  position: fixed;
  background-color: rgb(255, 255, 255);
  bottom: -1.3rem;
  left: 0;
  right: 0;
  max-width: 7.68rem;
  margin: 0 auto;
  z-index: 3;
  padding: 0.2rem 0.1rem;
  transition: bottom 300ms;
}
html .btnTabCommon .item {
  margin-bottom: 0.1rem;
}
html .btnTabCommon .item a {
  display: block;
  height: 0.4rem;
  line-height: 0.4rem;
  background-color: #f6f6f6;
  color: #fff;
  font-weight: 800;
  border-radius: 0.04rem;
  text-align: center;
  font-size: 0.14rem;
}
html .btnTabCommon .item:last-child {
  margin-bottom: 0;
}
html .toggleBtnTab {
  bottom: 0.5rem;
}
html .picWrapperCommon {
  background-color: #fff;
}
html .picWrapperCommon .picCell {
  padding: 0.15rem 0;
  padding-bottom: 0.2rem;
}
html .picWrapperCommon .picCell .title a {
  display: flex;
  font-size: 0.16rem;
  font-weight: 800;
  color: #f55;
  padding: 0 0.1rem;
  margin-bottom: 0.1rem;
}
html .picWrapperCommon .picCell .title a .name {
  flex: 1;
  margin-right: 0.1rem;
}
html .picWrapperCommon .picCell .title a .readCnt {
  color: #fff;
  font-weight: 400;
  font-size: 0.12rem;
  width: 0.66rem;
  text-align: right;
  margin-top: 0.02rem;
}
html .picWrapperCommon .picCell .title a .icon-browse {
  font-size: 0.14rem;
  top: 0.01rem;
  margin-right: 0.03rem;
}
html .picWrapperCommon .picCell .time {
  color: #fff;
  padding: 0.1rem;
  font-size: 0.12rem;
  padding-top: 0.05rem;
}
html .picWrapperCommon .picCell .cover a {
  display: grid;
}
html .picWrapperCommon .picCell .cover img {
  width: 100%;
}
html .picDetailContent {
  padding-top: 0.45rem;
}
html .picDetailContent .picBox .title {
  font-size: 0.16rem;
  font-weight: 800;
  color: #f55;
  padding: 0 0.1rem;
}
html .picDetailContent .picBox .time {
  color: #fff;
  padding: 0.1rem;
  font-size: 0.12rem;
  padding-top: 0.05rem;
}
html .picDetailContent .picBox .cover a {
  display: grid;
}
html .picDetailContent .picBox .cover img {
  width: 100%;
}
html .margintop25 {
  margin-top: 0.25rem !important;
}
html .posiRelative {
  position: relative !important;
}
html .reward_dialog_box {
  width: 90%;
  max-width: 520px;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 9999;
  border-radius: 0.06rem;
  color: #878787;
  font-size: 0.13rem;
  box-shadow: 1px 2px 0.18rem #999;
}
html .reward_dialog_box .close {
  float: right;
  margin-right: 0.16rem;
  margin-top: 0.12rem;
}
html .reward_dialog_box .close img {
  width: 0.16rem;
  max-width: 0.16rem;
  margin-left: 0.12rem;
}
html .reward_dialog_box .reward_form_box {
  padding: 0.18rem;
}
html .reward_dialog_box .reward_form_box ul {
  line-height: 0.4rem;
}
html .reward_dialog_box .reward_form_box ul .title {
  line-height: 0.24rem;
  width: 100%;
}
html .reward_dialog_box .reward_form_box ul .title span {
  color: #000;
  font-size: 0.14rem;
  font-weight: 700;
}
html .reward_dialog_box .reward_form_box ul .reward_product_box {
  margin-top: 0.16rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
}
html .reward_dialog_box .reward_form_box ul .reward_product_box .reword_product_item {
  float: left;
  text-align: center;
  width: 33%;
  line-height: 0.16rem;
  margin-bottom: 0.16rem;
}
html .reward_dialog_box .reward_form_box ul .reward_product_box .reword_product_item label img {
  width: 0.36rem;
  max-height: 0.36rem;
  min-height: 0.36rem;
}
html .reward_dialog_box .reward_form_box ul .reward_product_box .reword_product_item label span {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 0.12rem;
}
html .reward_dialog_box .reward_form_box ul .reward_product_box .reword_product_item label input[type=radio] {
  height: 0.13rem;
  width: 0.13rem;
  line-height: normal;
  margin: 0.03rem 0.03rem 0 0.05rem;
  position: relative;
  top: 0;
  border-radius: 0;
  border: 0;
  display: inherit;
}
html .reward_dialog_box .reward_form_box ul li textarea {
  width: -webkit-fill-available;
  height: 1rem;
  border: #d8d8d8 solid 0.01rem;
  resize: none;
  color: #777;
  padding: 0.08rem;
  margin-top: 0.16rem;
  padding-bottom: 0.32rem;
  outline: none;
}
html .reward_dialog_box .reward_form_box ul li .word_count {
  width: 98%;
  margin-top: -0.57rem;
  text-align: right;
  padding: 0.08rem;
  font-size: 0.13rem;
  margin-bottom: 0.08rem;
}
html .reward_dialog_box .reward_form_box ul .note_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html .reward_dialog_box .reward_form_box ul .send_btn {
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  background: #ff5656;
  font-size: 0.14rem;
  border-radius: 0.06rem;
  display: block;
  text-align: center;
  line-height: 0.4rem;
  border: 0;
  width: 100%;
}
html .score_dialog_box {
  width: 84%;
  max-width: 460px;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 9999;
  border-radius: 0.06rem;
  color: #878787;
  font-size: 0.13rem;
  box-shadow: 1px 2px 0.18rem #999;
}
html .score_dialog_box .close {
  float: right;
  margin-right: 0.16rem;
  margin-top: 0.12rem;
}
html .score_dialog_box .close img {
  width: 0.16rem;
  max-width: 0.16rem;
  margin-left: 0.12rem;
}
html .score_dialog_box .score_form_box {
  padding: 0.18rem;
}
html .score_dialog_box .score_form_box ul {
  line-height: 0.4rem;
}
html .score_dialog_box .score_form_box ul .title {
  line-height: 0.24rem;
}
html .score_dialog_box .score_form_box ul .title span {
  color: #000;
  font-size: 0.14rem;
  font-weight: 700;
}
html .score_dialog_box .score_form_box ul .rate_box {
  display: flex;
  align-items: center;
}
html .score_dialog_box .score_form_box ul .rate_box .starBox {
  line-height: normal;
}
html .score_dialog_box .score_form_box ul .rate_box .star {
  max-width: 0.15rem;
  margin-right: 0.03rem;
  margin-top: -0.03rem;
  position: relative;
  top: 0.02rem;
}
html .score_dialog_box .score_form_box ul .rate_box #rate_txt {
  margin-left: 0.1rem;
}
html .score_dialog_box .score_form_box ul li {
  width: 100%;
}
html .score_dialog_box .score_form_box ul li textarea {
  width: -webkit-fill-available;
  height: 1.8rem;
  border: #d8d8d8 solid 0.01rem;
  resize: none;
  color: #777;
  padding: 0.08rem;
  margin-top: 0.16rem;
  padding-bottom: 0.32rem;
  outline: none;
}
html .score_dialog_box .score_form_box ul li .word_count {
  width: 98%;
  margin-top: -0.57rem;
  text-align: right;
  padding: 0.08rem;
  font-size: 0.13rem;
  margin-bottom: 0.08rem;
}
html .score_dialog_box .score_form_box ul li .send_btn {
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  background: #ff5656;
  font-size: 0.14rem;
  border-radius: 0.06rem;
  display: block;
  text-align: center;
  line-height: 0.4rem;
  border: 0;
  width: 100%;
}
html .report_dialog_box {
  width: 84%;
  max-width: 520px;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 9999;
  border-radius: 0.06rem;
  color: #878787;
  font-size: 0.13rem;
  box-shadow: 1px 2px 0.18rem #999;
}
html .report_dialog_box .close {
  float: right;
  margin-right: 0.16rem;
  margin-top: 0.12rem;
}
html .report_dialog_box .close img {
  width: 0.16rem;
  max-width: 0.16rem;
  margin-left: 0.12rem;
}
html .report_dialog_box .report_form_box {
  padding: 0.18rem;
}
html .report_dialog_box ul {
  line-height: 0.4rem;
}
html .report_dialog_box ul li {
  width: 100%;
}
html .report_dialog_box .title {
  color: #000;
  font-size: 0.14rem;
  font-weight: 700;
  line-height: 0.18rem;
}
html .report_dialog_box .dotted {
  border-bottom: dotted #e5e5e5 0.01rem;
  cursor: pointer;
}
html .report_dialog_box label {
  display: flex;
  align-items: center;
}
html .report_dialog_box textarea {
  width: -webkit-fill-available;
  height: 1.2rem;
  border: #d8d8d8 solid 0.01rem;
  resize: none;
  color: #777;
  padding: 0.08rem;
  margin-top: 0.16rem;
  padding-bottom: 0.32rem;
  outline: none;
}
html .report_dialog_box .word_count {
  width: 98%;
  margin-top: -0.57rem;
  text-align: right;
  padding: 0.08rem;
  font-size: 0.13rem;
  margin-bottom: 0.08rem;
}
html .report_dialog_box .send_btn {
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  background: #ff5656;
  font-size: 0.14rem;
  border-radius: 0.06rem;
  display: block;
  text-align: center;
  line-height: 0.4rem;
  border: 0;
  width: 100%;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hiddenPc {
  display: none !important;
}

@media all and (max-width: 768px) {
  .hiddenTel {
    display: none !important;
  }
  .hiddenPc {
    display: block !important;
  }
  html .header_big {
    height: 0.5rem;
    line-height: 0.5rem;
  }
  html .header_big .header_small {
    position: relative;
  }
  html .header_big .header_small .logo {
    height: 0.5rem;
  }
  html .header_big .header_small .logo .logoHref {
    height: 100%;
  }
  html .header_big .header_small .logo img {
    height: 90%;
  }
  html .header_big .header_small .telMenuList {
    position: absolute;
    top: 0.5rem;
    left: 100%;
    width: 0;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 0.05rem #ccc;
    z-index: 100;
    transition: all 500ms;
  }
  html .header_big .header_small .telMenuList li a {
    display: block;
    height: 0.45rem;
    line-height: 0.45rem;
    color: #fff;
    border-top: 0.01rem solid #efefef;
    padding-left: 0.2rem;
  }
  html .header_big .header_small .telMenuList li a:hover {
    background-color: #f55;
    color: #fff;
    border-top-color: #f55;
  }
  html .header_big .header_small .telMenuList.active {
    width: 100%;
    left: 0;
  }
  html .header_big .header_small .userInfo > li > a {
    padding: 0 0.15rem;
  }
  html .commentCommon_box {
    padding: 0 0.1rem;
  }
  html .userInfoWrapperCommon {
    text-align: center;
  }
  html .userInfoWrapperCommon .userRow .avatar {
    float: none;
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 auto;
  }
  html .userInfoWrapperCommon .userRow .nameCell {
    float: none;
    display: block;
  }
  html .userInfoWrapperCommon .userRow .priBtn {
    float: none;
    text-align: center;
    height: 0.8rem;
    line-height: 0.8rem;
  }
  html .userInfoWrapperCommon .userRow .priBtn .btn {
    background: #f55;
    border-radius: 0.04rem;
    padding: 0.05rem 0.5rem;
    border: 0.01rem solid #f55;
    transition: all 500ms;
  }
  html .userInfoWrapperCommon .userRow .priBtn .btn:hover {
    color: #f55;
    background: #fff;
  }
  html .draftCellCommon .userInfoRow .rightBtn > a {
    display: none;
  }
  html .draftCellCommon .userInfoRow .rightBtn .sendDraft {
    display: inline-block;
  }
  html .noticeModelCommon .modal-dialog {
    width: 100%;
  }
  html .draftCellCommon {
    padding: 0.2rem 0.1rem;
  }
  html .footer_big .footer_small ul li {
    height: auto;
  }
  html .formCommon {
    width: 100%;
  }
  html .footer_big .footer_small ul {
    text-align: center;
    flex-direction: column;
  }
  html .footer_big .footer_small ul > li {
    float: none;
    width: 100% !important;
  }
  html .footer_big .footer_small ul .logo_box img {
    height: 100%;
  }
  html .footer_big .footer_small ul .lx_box p {
    margin-left: 0 !important;
  }
  html .footer_big .footer_small ul .fooer_right_box .other_text:nth-child(3) {
    margin: 0;
  }
  html .footer_big .footer_small ul .fooer_right_box .lx_code {
    margin-top: 0.2rem;
    float: none;
  }
}
@media all and (min-width: 768px) {
  html {
    width: 768px;
    margin: 0 auto;
    box-shadow: 0 0 5px #ccc;
  }
  html .footerCommon,
  html .headCommon,
  html .headDetailCommon,
  html .footerDetailCommon {
    width: 768px;
    margin: 0 auto;
  }
}

        /* 遮罩层 */
        .main_box .modal-mask {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
          display: flex;
          justify-content: center;
          align-items: center;
          opacity: 0;
          transition: opacity 0.3s ease;
          pointer-events: none;
          padding: 20px; /* 移动端留白 */
          z-index: 9999;
      }

      .main_box .modal-mask.active {
          opacity: 1;
          pointer-events: all;
      }

      /* 弹窗主体 */
      .main_box .modal {
          background: white;
          padding: 24px;
          border-radius: 12px; /* 增大圆角 */
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
          transform: translateY(-20px);
          transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
          max-width: 500px;
          width: 100%;
          position: relative;
      }

      /* 移动端优化 */
      @media (max-width: 768px) {
          .modal {
              padding: 20px;
              border-radius: 8px;
              max-width: 100%;
              margin: 0 10px;
          }
      }

      .modal.active {
          transform: translateY(0);
      }

      /* 文字区域 */
      .modal-title {
          font-size: 0.16rem;
          margin: 0 0 16px 0;
          color: #333;
          font-weight: 600;
      }

      .modal-content {
          font-size: 0.16rem;
          color: #666;
          line-height: 1.6;
          margin: 12px 0;
      }

      /* 按钮区域 */
      .modal-actions {
          margin-top: 24px;
          text-align: right;
          display: flex;
          gap: 12px;
          justify-content: flex-end;
      }

      .modal-btn {
          padding: 10px 28px;
          border: none;
          border-radius: 6px;
          cursor: pointer;
          transition: all 0.2s;
          font-size: 0.16rem;
          min-width: 80px; /* 移动端按钮最小宽度 */
      }

      /* 移动端按钮优化 */
      @media (max-width: 480px) {
        .modal-btn {
              padding: 12px 20px;
              flex: 1; /* 按钮自动扩展 */
          }
        .modal-actions {
              gap: 8px;
          }
        .modal {
            width: 90%;
            margin: 0 5%;
        }
        
        .notice-list {
            margin: 0 16px;
            padding: 12px 0;
        }
        
        .notice-item {
            font-size: 14px;
        }          
      }

      .confirm-btn {
          background: #2196F3;
          color: white;
      }

      .confirm-btn:hover {
          background: #1976D2;
          transform: translateY(-1px);
      }

      /* 防止移动端背景滚动 */
      body.modal-open {
          overflow: hidden;
          position: fixed;
          width: 100%;
          height: 100%;
      }

    .notice-list {
        padding: 16px 0;
        margin: 0 12px;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        max-height: 50vh; /* 可滚动区域 */
        overflow-y: auto;
    }
    .notice-item {
      display: flex;
      align-items: flex-start;
      padding: 4px 0;
      line-height: 1.6;
      color: #666;
  }    
