@charset "utf-8";

/*签到活动*/
.checkIn_box {
  position: relative;
  background: var(--checkIn-bg);
  background-size: cover;
  margin: auto;
  padding: 0;
  width: 900px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
  height: auto;
  border-radius: 15px;
  overflow: hidden;
}
.checkIn_box .checkIn_head {
  position: relative;
  height: 60px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
}
.checkIn_box .checkIn_head .toDetail {
  color: #283763;
  font-weight: bold;
  background: var(--checkIn_toDetail);
  background-size: auto 10px;
  padding-right: 20px;
  display: none;
}
.checkIn_box .checkIn_head span {
  flex: 1;
  text-align: center;
  padding-right: 48px;
  font-size: 20px;
  font-weight: bold;
}

.checkIn_box .checkIn_head .close_icon {
  top: 50%;
  background: var(--checkIn_close_icon);
  background-size: contain;
  transform: translateY(-50%);
}
.checkIn_box .checkIn_sub {
  color: #fff;
  padding: 8px 20px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  background: var(--modal_head-bg);
  background-size: cover;
}
.checkIn_box .checkIn_sub span.txt-red {
  margin:0 5px
}
.checkIn_box .checkIn_content {
  padding: 20px 50px;
  display: flex;
  align-items: stretch;
  gap: 30px;
}
.checkIn_box .checkIn_content #checkIn_state {
  position: relative;
  padding: 13px;
  background: var(--checkIn_state-bg);
  background-size: cover;
}
.checkIn_box .checkIn_content #checkIn_state img {
  width: 340px;
  display: block;
}
.checkIn_box .checkIn_content #checkIn_state .checkIn_list {
  position: absolute;
  top: 13px;
  left: 13px;
  width: calc(100% - 26px);
  height: calc(100% - 26px);
  display: flex;
  flex-wrap: wrap;
  z-index: 10;
  z-index: 5;
}
.checkIn_box .checkIn_content #checkIn_state .checkIn_list li {
  position: relative;
  /* -webkit-filter:grayscale(1); */
  border: 1px solid rgba(255,255,255,0.6);
  background:#242424;
  opacity: 0.9;
  
}
.checkIn_box .checkIn_content #checkIn_state .checkIn_list li.checked {
  /* -webkit-filter:grayscale(0); */
  cursor: pointer;
  opacity: 1;
  background: transparent;
}
.checkIn_box .checkIn_content #checkIn_state .checkIn_list li.on::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 20px 5px rgba(255, 253, 151, 0.7);
}
.checkIn_box .checkIn_content .checkIn_message {
  flex: 1;
}
.checkIn_box .checkIn_content .checkIn_message ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.checkIn_box .checkIn_content .checkIn_message ul li {
  position: relative;
  min-height: 60px;
  color: #283763;
  padding: 10px 10px 10px 60px;
  border-radius: 15px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background: linear-gradient(to bottom, #fff, #fff 48%, #fff 67%, #e9effe);
  display: none;
}
.checkIn_box .checkIn_content .checkIn_message ul li div{
  font-weight: 700;
}
.checkIn_box .checkIn_content .checkIn_message ul li .nextGift{
  color: #ed3833;
}
.checkIn_box .checkIn_content .checkIn_message ul li.gift {
  background: linear-gradient(to bottom, #fff, #ffe3dc 67%, #f5bda9);
}
.checkIn_box .checkIn_content .checkIn_message ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
}
.checkIn_box .checkIn_content .checkIn_message ul li.gift::before {
  background: var(--checkIn_message-gift);
  background-size: cover;
}
.checkIn_box .checkIn_content .checkIn_message ul li.daily::before {
  background: var(--checkIn_message-daily);
  background-size: cover;
}
.checkIn_box .checkIn_content .checkIn_message ul li.mission::before {
  background: var(--checkIn_message-mission);
  background-size: cover;
}
.checkIn_box .checkIn_content .checkIn_message ul li.next-gift::before {
  background: var(--checkIn_message-next);
  background-size: cover;
}
.checkIn_box .checkIn_btn {
  padding: 20px 20px 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.checkIn_box .checkIn_btn button {
  min-width: 180px;
  color: #fff;
  font-size: 16px;
  height: 40px;
  border: none;
  margin: 0 10px;
  border-radius: 40px;
  box-shadow: 0 0 3px 0 rgb(51 80 159 / 50%);
  background: var(--btn-confirm-bg);
}

.checkIn_box .checkIn_btn button:disabled {
	background: #8a8a8a;
}
/*签到活动10日 2x5*/
#checkIn_state.for2x5 ul li {
  width: 50%;

}

/*签到活动20日 4x5*/
#checkIn_state.for4x5 ul li {
  width: 25%;
}

/*签到活动30日 5x6*/
#checkIn_state.for5x6 ul li {
  width: 20%;
}


