.demo-test-wrap {
  background-color: #f8f8f8;
  padding: 27px 8px 8px 8px;
  position: relative;
}

.demo-test-wrap::before {
  content: "试一试";
  color: #ccc;
  font-size: .6rem;
  font-weight: 600;
  height: 15px;
  line-height: 15px;
  padding: 5px 10px 0;
  position: absolute;
  left: 0;
  text-align: right;
  top: 0;
}

.demo-test-wrap .demo-content{
  position: relative;
}

.demo-test-wrap .demo-content input{
  box-sizing: border-box;
  margin: 0;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  display: inline-block;
  width: 100%;
  color: rgba(0,0,0,.65);
  line-height: 1.5;
  height: 40px;
  padding: 6px 40px 6px 11px;
  font-size: 16px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  transition: all .3s;
  outline: none;
}
.demo-test-wrap .demo-content input::placeholder{
  color: #bfbfbf;
}

.demo-test-wrap .demo-content .clear{
  position: absolute;
  top: 7px;
  right: 4px;
  font-size: 14px;
  cursor: pointer;
  color: rgba(0,0,0,.45);
}
.demo-test-wrap .demo-content .clear:hover{
  color: #333;
}

.demo-test-wrap .test-case-container {
  display: flex;
  align-items: flex-start;
}
.demo-test-wrap .test-case-container .case-title{
  color: #34495e;
  background: transparent;
  padding: 0;
  margin: 0;
  line-height: normal;
  font-size: 12px;
}

.demo-test-wrap .test-case-container .test-case{
  display: flex;
  flex: 1;
  flex-flow: row wrap;
}

.demo-test-wrap .test-case span{
  cursor: pointer;
  color: #fff;
  background-color: rgb(45, 183, 245);
  padding: 0 7px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 4px;
  margin: 0 8px 4px 0;
}

.demo-test-wrap .verify-tip {
  height: 15px;
  font-size: 12px;
  line-height: normal;
  padding: 2px 0 4px 0;
  box-sizing: content-box;
}

.demo-test-wrap .verify-tip .success {
  color: #4caf50;
}

.demo-test-wrap .verify-tip .error {
  color: #ff5722;
}