#container {
  padding-top: var(--v3-navigationbar-height);
}

#cooperation {
  width: var(--v3-content-width);
  min-height: 900px;
  background: #ffffff;
  border-radius: 8px;
  margin: 44px auto;
  color: var(--v3-base-text-color);
  position: relative;

  display: flex;
}

#cooperation::before {
  width: 8px;
  height: 125px;
  background: #ff773e;
  border-radius: 0 100px 100px 0;
  content: " ";
  position: absolute;
  left: 0;
  top: 32px;
}

#cooperation .tip {
  color: #4A5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-top: 5px;
}

#left {
  padding: 35px 40px;
  flex: 1;
}

#right {
  width: 520px;
}

#right > img {
  border-top-right-radius: 8px;
}

.pc {
  display: block;
}

.m {
  display: none;
}

@media screen and (max-width: 768px) {
  #cooperation {
      width: 95%;
      margin-top: 34px;
  }

  #cooperation::before {
    width: 4px;
    height: 80px;
    top: 150px;
  }

  #cooperation .tip {
    font-size: 14px;
    line-height: 20px;
  }

  #left {
    padding: 20px 12px;
  }

  .pc {
    display: none;
  }
  
  .m {
    display: block;
  }
}

/*----------------------------------------*/
#form .ctrl-grp {
  padding: 10px 0;
  font-size: 14px;
}

#form .ctrl-grp .label {
  line-height: 20px;
  font-weight: 550;
  padding-bottom: 5px;
}

#form .ctrl-grp.required .label::after {
  content: "*";
  color: #FB2C36;
  padding-left: 5px;
}

#form .ctrl-grp .ctrl {
  height: 42px;
}

#form .ctrl-grp .ctrl input[type="text"] {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  padding-left: 16px;
}

#form .ctrl-grp .e-tip {
  color: orangered;
  padding-top: 3px;
}

/*----------------------------*/
.btn {
  display: inline-block;
  border-radius: 4px;
  padding: 5px 10px;
  border: 1px solid;
  text-align: center;
}

.btn:hover {
  opacity: .8;
}

.btn.btn-default {
  background-color: #E9EDF0;
  border-color: #E9EDF0;
  color: #000;
}

.btn.btn-primary {
  background-color: #409EFF;
  border-color: #409EFF;
  color: #FFF;
}

.btn.btn-danger {
  background-color: orangered;
  border-color: orangered;
  color: #FFF;
}

.btn.btn-disabled {
  opacity: .5;
  cursor: not-allowed;
}

/*----------------------------*/
input[type=text], select {
  padding: 5px;
  line-height: 1.1;
  color: #606266;
  border: 1px solid #DCDFE6;
  border-radius: 4px;
  height: 32px;
}