.insurance-wrap {
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  padding: 15px;
  position: absolute;
  z-index: 333;
  top: 0;
  left: 0;
  background-color: #fff;

  .insurance-container {
    overflow-x: hidden;
    overflow-y: auto;
    // 需注释
    //background-color: teal;

    .bodySide {
      margin-left: -15px;
      padding-bottom: 15px;
    }

    .informedTheInsured {
      .optionsList {
        //text-indent: 8px;
        //padding-bottom: 22px;

        .questionWrap {
          padding: 16px 0 14px;

          .questionTitle {
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 13px;
          }

          .booleanWrap {
            display: flex;
            justify-content: space-between;

            .questionTitle {
              font-weight: 500;
              font-size: 14px;
              margin-bottom: 13px;
              width: 70vw;
            }

            .isSure {
              display: flex;
              justify-content: flex-end;
              align-items: center;

              .isSelected,
              .yes,
              .no,
              .isYes,
              .isNo {
                width: 36px;
                height: 30px;
                line-height: 30px;
                text-align: center;
              }

              .isYes {
                background: var(--button-primary-background);
                border-radius: 4px 0px 0px 4px;
                border-right: 0;
                color: #fff;
              }

              .isNo {
                background: var(--button-primary-background);
                border-radius: 0 4px 4px 0;
                color: #fff;
              }

              .yes {
                border: 1px solid #BCBCBC;
                border-radius: 4px 0px 0px 4px;
                border-right: 0;
              }

              .no {
                border: 1px solid #BCBCBC;
                border-radius: 0 4px 4px 0;
              }
            }
          }

          .selectWrap {
            text-indent: 12px;

            .item {
              padding: 5px 0;

              img {
                width: 14px;
                height: 15px;
                margin-right: 10px;
                vertical-align: middle;
              }
            }
          }
        }

        .other {
          display: flex;
          justify-content: space-between;
          align-content: center;
          align-items: center;
          padding: 8px 0;
          margin: -14px 0 14px 14px;
          border-bottom: 1px solid #e6e6e6;

          span {
            width: calc(100vw - 80vw);
          }
        }
      }
    }

    .insurance-footer-button {
      display: flex;
      justify-content: center;

      .button {
        width: 80vw;
      }
    }
  }
}

.border-bottom-show {
  margin-left: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #e6e6e6;
}
