@import '../assets/reset.css';

.h-container {
  padding: 100px 30px 20px;
  color: white;
  position: relative;
}
.h-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  height: 260px;
  background: url('../assets/imgs/bg-details.png') no-repeat;
  background-size: cover;
}
.h-label,
.h-value {
  font-size: 18px;
  position: relative;
}
.h-label {
  margin-bottom: 10px;
}
.main-container {
  padding: 0 30px;
  position: relative;
}
.m-list-container {
  padding: 10px 0;
  background: white;
  border-radius: 10px;
  box-shadow: 2px 10px 18px 0 rgba(0, 0, 0, .1);
}
.m-list-item {
  position: relative;
  padding: 12px 14px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
}
.m-list-item:last-child::after {
  content: none;
}
.m-list-item::after {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background: #DEDEDE;
  transform: scaleY(0.5);
}
.m-item-label {
  color: #333;
  flex-shrink: 0;
  padding-right: 10px;
  vertical-align: middle;
}
.m-item-value {
  color: #666;
  word-break: break-all;
}
.m-item-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.m-value-checkbox {
  display: block;
  width: 44px;
  flex-shrink: 0;
  line-height: 18px;
  position: relative;
  z-index: 10;
}
.m-item-checkbox {
  display: none;
}
.m-checkbox-lable {
  display: block;
  height: 100%;
  line-height: 18px;
}
.m-checkbox-lable::before {
  content: '否';
  position: absolute;
  z-index: -1;
  display: block;
  width: 26px;
  height: 18px;
  border-radius: 22px;
  right: 0;
  top: -1px;
  font-size: 10px;
  text-align: center;
  background: #DEDEDE;
}
.m-checkbox-lable::after {
  content: '';
  position: absolute;
  z-index: -2;
  background: #EEF3FB;
  border-radius: 40px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.m-item-checkbox:checked + .m-checkbox-lable {
  color: white;
}
.m-item-checkbox:checked + .m-checkbox-lable::before {
  content: "是";
  left: 0;
  background: #198CFF;
}
.f-title {
  padding: 30px 30px 0px;
}
.f-list-container {
  overflow: hidden;
  padding: 0 20px 30px;
}
.f-list-item {
  float: left;
  background: white;
  width: 78px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  color: #5096F5;
  border-radius: 10px;
  margin-right: 10px;
  margin-top: 20px;
  margin: 20px 10px 0;
  box-shadow: 2px 10px 18px 0 rgba(0, 0, 0, .1);
}
.f-list-null {
  margin: 20px 10px 0;
  color: #666;
  font-size: 12px;
}
