* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
@font-face {
  font-family: "HYa3gj";
  src: url('https://xhsc.app.xinhuanet.com/download-source/files/fonts/HYZhongSongJ.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* 异步加载时显示系统字体，加载完再切换 */
}
html, body {
  background-color: #DFE5D7;
}
.two_line {
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
#app {
  width: 100%;
  max-width: 750px;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 2rem;
  box-sizing: border-box;
  font-family: HYa3gj;
}
.go-cj {
  width: 100%;
  height: 1.4rem;
  margin-top: .2rem;
  display: flex;
  justify-content: center;
}
.go-cj .icon {
  width: 1.4rem;
  height: 1.4rem;
  background: url(https://my-statics-cdn.app.xinhuanet.com/uploadfile/h5activity/whjs2022/images/join-choujiang.png?01) no-repeat center;
  background-size: 100% 100%;
}
.top {
  width: 100%;
  height: 27.62rem;
  background-image: url("../images/top_bg.png");
  background-size: cover;
}
.top_desc {
  font-size: 0.3rem;
  line-height: 0.44rem;
  color: #7C6028;
  text-align: justify;
  padding: 10.08rem 0.8rem 0;
  box-sizing: border-box;
}
.title {
  width: 5.95rem;
  height: 1.28rem;
  margin: 1.84rem auto 0;
  background-image: url("../images/title.png");
  background-size: cover;
}
.list {
  margin-top: -10.04rem;
}
.list_item {
  width: 100%;
  height: 6.66rem;
  background-image: url("../images/card_bg.png");
  background-size: cover;
  padding: 0.28rem 0.6rem 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
}
.list_item.selected {
  .list_item_select_btn {
    background-image: url("../images/selected.png");
  }
}
.list_item_sort {
  width: 0.7rem;
  height: 0.7rem;
  background-image: url("../images/sort_bg.png");
  background-size: cover;
  font-size: 0.4rem;
  line-height: 0.7rem;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0.02rem;
  left: 0.32rem;
  z-index: 1;
}
.list_item_select_btn {
  width: 2.24rem;
  height: 1.16rem;
  background-image: url("../images/select.png");
  background-size: cover;
  position: absolute;
  right: 0.36rem;
  bottom: 0.38rem;
  z-index: 1;
}
.list_item_img {
  width: 100%;
  aspect-ratio: 6.3 / 3.52;
  flex-shrink: 0;
  background-color: #ededed;
  clip-path: polygon(
    0.12em 0,                       /* 左上角往右斜 */
    calc(100% - 0.12em) 0,         /* 右上角往左斜 */
    100% 0.12em,                   /* 右上角往下斜 */
    100% calc(100% - 0.12em),      /* 右下角往上斜 */
    calc(100% - 0.12em) 100%,      /* 右下角往左斜 */
    0.12em 100%,                   /* 左下角往右斜 */
    0 calc(100% - 0.12em),         /* 左下角往上斜 */
    0 0.12em                       /* 左上角往下斜 */
  );
  object-fit: cover; /* 保证图片不被拉伸 */
}
.list_item_content_title {
  height: 1rem;
  margin-top: 0.16rem;
  font-size: 0.38rem;
  line-height: 0.5rem;
  color: #4F5A42;
  letter-spacing: 0.01rem;
}
.list_item_content_nums {
  margin-top: 0.48rem;
  font-size: 0.24rem;
  line-height: 1;
  color: #7A8866;
}
.submit {
  width: 100%;
  max-width: 750px;
  height: 1.16rem;
  margin-top: 1.02rem;
  background-image: url("../images/submit.png");
  background-size: cover;
  display: flex;
  align-items: center;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  z-index: 100;
}
.select_num {
  width: 53%;
  font-size: 0.3rem;
  line-height: 1.16rem;
  color: #4F6960;
  text-align: center;
}
.submit_btn {
  flex: 1;
  height: 100%;
}
/* 详情 */
.detail_mask {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
}
.detail {
  width: calc(72vh * (6.86 / 11.86));
  height: 72vh;
  aspect-ratio: 6.86 / 11.86; /* 固定宽高比 */
  overflow: hidden;
  background-image: url("../images/detail_bg.png");
  background-size: cover;
  padding: 0.28rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.detail_cover {
  width: 100%;
  aspect-ratio: 6.3 / 3.52; /* 固定宽高比 */
  background-color: #ededed;
  background-size: cover;
  clip-path: polygon(
    0.12em 0,                       /* 左上角往右斜 */
    calc(100% - 0.12em) 0,         /* 右上角往左斜 */
    100% 0.12em,                   /* 右上角往下斜 */
    100% calc(100% - 0.12em),      /* 右下角往上斜 */
    calc(100% - 0.12em) 100%,      /* 右下角往左斜 */
    0.12em 100%,                   /* 左下角往右斜 */
    0 calc(100% - 0.12em),         /* 左下角往上斜 */
    0 0.12em                       /* 左上角往下斜 */
  );
  object-fit: cover; /* 保证图片不被拉伸 */
  position: relative;
}
.detail_sort {
  width: 0.7rem;
  height: 0.7rem;
  background-image: url("../images/detail_sort.png");
  background-size: cover;
  font-size: 0.4rem;
  line-height: 0.7rem;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.detail_title {
  margin-top: 0.32rem;
  font-size: 0.42rem;
  line-height: 0.52rem;
  color: #252C1C;
}
.detail_content {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: 0.26rem;
  padding: 0.3rem 0.26rem;
  box-sizing: border-box;
  background-color: #F1F4EE;
  font-size: 0.3rem;
  line-height: 0.4rem;
  color: #454E38;
  letter-spacing: 0.01rem;
}
.detail_back {
  margin: 0.32rem auto 0;
  width: 3.62rem;
  height: 0.8rem;
  background-image: url("../images/detail_back.png");
  background-size: cover;
}
.toast_box {
  width: 100%;
  font-size: .24rem;
  line-height: .28rem;
  color: #FFFFFF;
  text-align: center;
  position: fixed;
  left: 0;
  top: 40%;
  z-index: 999;
  .toast {
    max-width: 5.5rem;
    display: inline-block;
    background: rgba(52, 58, 64, .8);
    border-radius: .12rem;
    padding: .24rem .24rem;
    box-sizing: border-box;
  }

  .toast_pc {
    max-width: 50%;
    font-size: 24px;
    line-height: 30px;
    display: inline-block;
    background: rgba(0, 0, 0, .6);
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
  }
}
.explain-wrapper {
  padding: .1rem .1rem .12rem .2rem;
  box-sizing: border-box;
  font-size: .24rem;
  line-height: .26rem;
  color: #0F9675;
  cursor: pointer;
  position: absolute;
  top: 2.8rem;
  left: 50%;
  transform: translate(calc(3.75rem - 0.6rem), 0);
  z-index: 1;
  width: .6rem;
  background-color: rgba(255, 255, 255, .3);
  border-radius: .24rem 0 0 .24rem;
}
/* 活动说明 */
.hdsm-toast {
  width: 100%;
  max-width: 7.5rem;
  height: 100%;
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 100;
  display: none;
}
.hdsm-content {
  width: 100%;
  height:95vh;
  overflow: hidden;
  background: url('../images/explain_bg.png');
  background-size: cover;
  padding: 0.66rem  0;
  box-sizing: border-box;
  border-radius: 0.24rem 0.24rem 0 0;
  font-size: .32rem;
  line-height: .52rem;
  color: #333;
  text-align: justify;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
}
.hdsm-content p {
  margin-bottom: 0.2rem;
}
.close {
  width: .32rem;
  height: .32rem;
  position: absolute;
  right: .32rem;
  top: .24rem;
  cursor: pointer;
}
.hdsm {
  width: 100%;
  text-align: center;
  font-size: 0.48rem;
  font-weight: 600;
  color: #AE5817;
  padding-bottom: .4rem;
  line-height: .5rem;
}

/* 评论弹框 */
.comment_btn {
  margin-top: 1rem;
  width: 100%;
  height: 1.44rem;
  background-image: url("../images/comment_btn.png");
  background-size: cover;
}
.pl-toast {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  display: none;
}
.pl-content {
  width: 6.06rem;
  height: 8.72rem;
  background: url(../images/pl-bg.png) no-repeat center;
  background-size: 100%;
  /* position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%); */
  padding: .62rem .32rem 0;
  box-sizing: border-box;
  position: relative;
}
.pl-wrapper {
  width: 6.08rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.close-toast {
  width: .7rem;
  height: .7rem;
  background: url(https://my-statics-cdn.app.xinhuanet.com/uploadfile/h5activity/qgwh/images/close-toast.png) no-repeat center;
  background-size: 100% 100%;
  margin: .32rem auto 0;
}
.pl-content-title {
  width: 100%;
  font-size: 0.36rem;
  font-weight: 400;
  color: #106A3D;
  margin-bottom: .26rem;
}
.text-content {
  background-color:#FFFFFF;
  border-radius: .24rem;
  width: 100%;
  height: 5.18rem;
  padding: .36rem .2rem .52rem .36rem;
  box-sizing: border-box;
}
#txt {
  width: 100%;
  height: 100%;
  font-size: 0.32rem;
  font-weight: 400;
  color:#333;/* rgba(255, 255, 255, 0.8);*/
  line-height: 0.56rem;
  outline: none;
  border: none;
  background: transparent;
}
.btn-upload-pl {
  position: absolute;
  left: 50%;
  bottom: .52rem;
  transform: translateX(-50%);
  background:url(../images/bg-button.png) center center no-repeat;
  width:5.48rem;
  height:0.84rem;
  background-size:100% 100%;

  font-weight: 500;
  font-size: 0.32rem;
  color: #FFFFFF;
  line-height: 0.84rem;
  text-align: center;
}