body {
  font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei",
    "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
  padding: 0;
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  font-family: "微软雅黑";
  background: #eef2fa;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}
a,
a:hover {
  text-decoration: none;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
a {
  text-decoration: none;
}
.Content {
  width: 1200px;
  margin: 30px auto;
  padding: 20px 40px;
  background: #fff;
  box-shadow: 0px 0px 20px 1px rgba(12, 65, 195, 0.15);
}

.apply-title {
  height: 54px;
  line-height: 54px;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
  font-weight: 600;
  font-size: 20px;
  color: #1f2026;
  border-bottom: 3px solid #d6dff3;
}
.apply-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: 8px;
  background-color: #427af4;
}
.Part0 {
  padding-bottom: 10px;
  border-bottom: 1px dashed #c5d1ec;
  display: inline-block;
  width: 100%;
}
.partL {
  float: left;
  width: 80%;
  padding-right: 30px;
}
.Ltitle {
  line-height: 2.2;
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0;
}
.partL div {
  line-height: 2.2;
  color: #333;
}
.partL div span {
  font-weight: 500;
  color: #666;
}
.partR {
  width: 20%;
  float: right;
}

.Part1 {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Part1 svg {
  margin: 30px 0;
}
.Part1 .listname {
  font-size: 16px;
  font-weight: 600;
  width: 100%;
}
.Part1 .listbutton {
  margin-top: 25px;
  width: 100%;
}
.Part1 .listbutton a {
  cursor: pointer;
  padding: 4px 20px;
  border-radius: 6px;
  color: #427af4;
  margin-right: 20px;
  border: 1px solid #427af4;
}
.buttonactive {
  background: #427af4;
  color: #fff !important;
}
.Yesmain {
  display: none;
  margin-top: 25px;
  padding: 15px 20px;
  background: #f4f7fe;
  height: 500px;
}
.Yesmain .checkbox label {
  margin-right: 30px;
}
.tjInput {
  margin-top: 20px;
  width: 100%;
}
.tjInput .input-row {
  width: 50%;
  margin-bottom: 15px;
  position: relative;
  display: flex;
  float: left;
  line-height: 34px;
}

.tjInput .input-row label {
  width: 25%;
  text-align: right;
  padding-right: 20px;
  line-height: 34px;
}
.tjInput .input-row input {
  width: 70%;
  margin-right: 10px;
}
.tjInput .Fe input {
  width: 60%;
}
.tjInput .Fe span {
  color: #e60f1e;
  font-size: 12px;
  cursor: pointer;
}

.tjInput .form-control {
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  outline: none;
  padding: 0 15px;
  width: 100%;
  background: #fff;
  border: 0.5px solid #dee0e8;
  box-shadow: inset -2px -2px 2px hsla(0, 0%, 100%, 0.7),
    inset 2px 2px 2px rgba(174, 174, 192, 0.15) !important;
}
.tjInput .form-control:focus {
  border-color: #b1b1b1;
  outline: 0;
}
.tjInput .form-control[disabled],
.tjInput .form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #f6f7fb;
  opacity: 1;
}
.tjInput .Full {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  display: flex;
  float: left;
  line-height: 34px;
}
.tjInput .Full label {
  width: 12.5%;
  text-align: right;
  padding-right: 20px;
  line-height: 34px;
}
.tjInput .Full input {
  width: 80%;
  margin-right: 10px;
}
.tjInput .Fe .form-control,
.tjInput .Full .form-control {
  background: #f4f7fe;
}

.stepButton {
  margin-top: 30px;
  text-align: center;
}
.stepButton button {
  width: 120px;
  text-align: center;
  height: 45px;
  line-height: 45px;
  background: #4187eb;
  border-radius: 4px;
  color: #fff;
  border: none;
}

/* 动画效果 */
/* 成功 */
.circle {
  stroke-dasharray: 358;
  /*圆的周长： 2*190*3.14*/
  stroke-dashoffset: 358;

  animation: circle 1s ease-in-out;
  /*当勾选checkbox时，用1s的时间播放名为circle的动画*/
  animation-fill-mode: forwards;
}

.tick {
  stroke-dasharray: 350;
  stroke-dashoffset: 350;

  animation: tick 0.8s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 0.95s;
}

h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: #333;
  opacity: 0;

  animation: 0.6s title ease-in-out;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
}

@keyframes circle {
  /*逆时针显示*/
  from {
    stroke-dashoffset: 358;
  }

  to {
    stroke-dashoffset: 716;
    /*若为0，则顺时针*/
  }
}

@keyframes tick {
  from {
    stroke-dashoffset: 350;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* 失败 */
.circle1 {
  stroke-dasharray: 358;
  /*圆的周长： 2*190*3.14*/
  stroke-dashoffset: 358;

  animation: circle1 1s ease-in-out;
  /*用1s的时间播放名为circle的动画*/
  animation-fill-mode: forwards;
}

.tick1 {
  stroke-dasharray: 350;
  stroke-dashoffset: 350;

  animation: tick1 0.8s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 0.95s;
}

.tick2 {
  stroke-dasharray: 350;
  stroke-dashoffset: 350;

  animation: tick2 0.8s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 0.95s;
}

@keyframes circle1 {
  /*逆时针显示*/
  from {
    stroke-dashoffset: 358;
  }

  to {
    stroke-dashoffset: 716;
    /*若为0，则顺时针*/
  }
}

@keyframes tick1 {
  from {
    stroke-dashoffset: 350;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes tick2 {
  from {
    stroke-dashoffset: 350;
  }

  to {
    stroke-dashoffset: 700;
  }
}

@keyframes title {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
