/**
 * @author Aihy
 * @email 7y@l7y.ltd
 * @email 202683457@qq.com
 */
/* 横向布局 */
.hy-container .hy-register-company h1 {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 30px;
  font-weight: normal;
  padding: 0 50px 15px;
  border-bottom: 3px solid #dddddd;
}

.hy-container .hy-register-company h1:before {
  display: inline-block;
  position: absolute;
  content: '';
  bottom: -3px;
  width: 150px;
  left: 50%;
  margin-left: -75px;
  border-bottom: 3px solid #d0af60;
}

.hy-container .hy-register-company .hy-banner {
  width: 100%;
  height: 550px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hy-container .hy-register-company .hy-banner .hy-input {
  position: absolute;
  bottom: 110px;
  width: 100%;
  height: 58px;
  line-height: 58px;
}

.hy-container .hy-register-company .hy-banner .hy-input .hy-input-info {
  width: 1020px;
  background: white;
  border: 3px solid #515ae6;
  border-radius: 29px;
  margin: 0 auto;
  box-shadow: 0 6px 8px rgba(40, 45, 114, 0.75);
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  flex-wrap: nowrap;
}
.hy-container .hy-register-company .hy-banner .hy-input .hy-input-info form {
  display: flex;
}

.hy-container .hy-register-company .hy-banner .hy-input .hy-input-info .hy-area {
  border-top-left-radius: 29px;
  border-bottom-left-radius: 29px;
  width: 100px;
  background: #e6e6e6;
  font-size: 17px;
  color: #333333;
}

.hy-container .hy-register-company .hy-banner .hy-input .hy-input-info .hy-all-input {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  padding: 15px 0;
  box-sizing: border-box;
}

.hy-container .hy-register-company .hy-banner .hy-input .hy-input-info .hy-all-input input {
  width: 150px;
  border: none;
  outline: none;
  font-size: 17px;
  color: #999999;
  padding-right: 25px;
  margin-left: 20px;
  box-sizing: border-box;
  border-right: 1px solid #dddddd;
  /*&:nth-child(1){
            background: url("../../images/registCompany/input_1.png") no-repeat left 14px;
          }
          &:nth-child(2){
            background: url("../../images/registCompany/input_2.png") no-repeat left 14px;
          }
          &:nth-child(3){
            background: url("../../images/registCompany/input_3.png") no-repeat left 14px;
          }
          &:nth-child(4){
            background: url("../../images/registCompany/input_4.png") no-repeat left 14px;
            border-right:none;
          }*/
}

.hy-container .hy-register-company .hy-banner .hy-input .hy-input-info .hy-all-input input:last-child {
  border-right: 0;
}

.hy-container .hy-register-company .hy-banner .hy-input .hy-input-info .hy-btn {
  color: #515ae6;
  background: #feea14;
  width: 200px;
  text-align: center;
  border-top-right-radius: 29px;
  border-bottom-right-radius: 29px;
  cursor: pointer;
  font-size: 18px;
  outline: none;
  padding: 0;
  border-color: transparent;
  border-width: unset;
}

/* .hy-container .hy-register-company .hy-banner .hy-input .hy-input-info .hy-btn:hover {
  background: #f5e114;
} */
.hy-container .hy-register-company .hy-banner .hy-input .hy-input-info .btn-box {
  background: #feea14;
  border-top-right-radius: 29px;
  border-bottom-right-radius: 29px;
  outline: none;
}

.hy-container .hy-register-company .hy-banner .hy-output {
  position: absolute;
  bottom: 0;
  background: rgba(81, 90, 230, 0.4);
  width: 100%;
  height: 70px;
  line-height: 70px;
  overflow: hidden;
}

.hy-container .hy-register-company .hy-banner .hy-output .hy-output-info {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  justify-content: center;
}

.hy-container .hy-register-company .hy-banner .hy-output .hy-output-info .hy-title {
  font-size: 18px;
  color: white;
}

.hy-container .hy-register-company .hy-banner .hy-output .hy-output-info .hy-row {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  flex-wrap: nowrap;
}

.hy-container .hy-register-company .hy-banner .hy-output .hy-output-info .hy-row .hy-item {
  color: white;
  flex: 1;
  font-size: 16px;
  padding-left: 50px;
  box-sizing: border-box;
}

.hy-container .hy-register-company .hy-banner .hy-output .hy-output-info .hy-row .hy-item:first-child {
  padding-left: 0;
}

.hy-container .hy-register-company .hy-banner .hy-output .hy-output-info .hy-row .hy-item span {
  color: #ff4800;
}

.hy-container .hy-register-company .hy-photo-show {
  text-align: center;
  padding: 50px 0;
}

.hy-container .hy-register-company .hy-photo-show img {
  display: block;
  margin: 0 auto;
  margin-top: 30px;
}

.hy-container .hy-register-company .hy-photo-show .hy-success-get {
  margin: 0 140px 0 240px;
}

.hy-container .hy-register-company .hy-photo-show .hy-success-get .hy-row {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  justify-content: flex-start;
  margin-top: 20px;
}

.hy-container .hy-register-company .hy-photo-show .hy-success-get .hy-row .hy-item {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  justify-content: flex-start;
  min-width: 260px;
  text-align: left;
  align-items: center;
}

.hy-container .hy-register-company .hy-photo-show .hy-success-get .hy-row .hy-item .hy-num {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 20px;
  color: white;
  background: #d0af60;
  border-radius: 18px;
  margin-right: 15px;
}

.hy-container .hy-register-company .hy-photo-show .hy-success-get .hy-row .hy-item .hy-describe {
  font-size: 20px;
  color: #333333;
}

.hy-container .hy-register-company .hy-photo-show .hy-success-get .hy-row .hy-item .hy-describe span {
  font-size: 20px;
  color: #fe2a2e;
}

.hy-container .hy-register-company .hy-need {
  padding: 55px 0;
  background: url("../../images/registCompany/3.png") no-repeat center;
  background-size: cover;
}

.hy-container .hy-register-company .hy-need .hy-need-info {
  text-align: center;
}

.hy-container .hy-register-company .hy-need .hy-need-info h1 {
  color: white;
}

.hy-container .hy-register-company .hy-need .hy-need-info h1:before {
  border-bottom: 3px solid #feea14;
}

.hy-container .hy-register-company .hy-need .hy-need-info h2 {
  font-size: 26px;
  font-weight: normal;
  color: #feea14;
  margin: 58px 0;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-btn {
  display: inline-block;
  width: 250px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 30px;
  color: #525be6;
  background: #feea14;
  box-shadow: 0 2px 1px #5257a4;
  border-radius: 5px;
  margin-top: 30px;
  cursor: pointer;
  transition: all 0.2s;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-btn:hover {
  background: #f5e114;
}

.hy-container .hy-register-company .hy-need .hy-need-info p {
  font-size: 20px;
  color: white;
  margin: 21px 0;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-type {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-type .hy-item {
  width: 286px;
  height: 286px;
  background: white;
  padding: 20px;
  box-sizing: border-box;
  border-bottom: 6px solid #feea14;
  transition: all .4s;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-type .hy-item:hover {
  position: relative;
  margin-top: -20px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-type .hy-item .hy-img {
  margin: 0 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #dddddd;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-type .hy-item .hy-img img {
  height: 40px;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-type .hy-item h3 {
  font-size: 24px;
  font-weight: normal;
  color: #333333;
  margin: 10px 0;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-type .hy-item .hy-describe {
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  text-align: left;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-address {
  background: url("../../images/registCompany/8.png") no-repeat center;
  background-size: cover;
  width: 1120px;
  height: 150px;
  padding: 28px 60px 0 60px;
  box-sizing: border-box;
  margin: 0 auto;
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  flex-wrap: nowrap;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-address .hy-item {
  width: 596px;
  text-align: left;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-address .hy-item:last-child {
  text-align: right;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-address .hy-item:last-child h3 {
  color: white;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-address .hy-item:last-child .hy-describe {
  color: white;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-address .hy-item h3 {
  font-size: 24px;
  font-weight: normal;
  color: #333333;
  margin-top: 13px;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-address .hy-item .hy-describe {
  font-size: 16px;
  color: #999999;
  margin: 5px 0 11px;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-address .hy-item .hy-address-btn {
  display: inline-block;
  width: 120px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #525be6;
  background: #feea14;
  box-shadow: 0 2px 1px rgba(51, 51, 51, 0.35);
  cursor: pointer;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-address .hy-item .hy-address-btn:hover {
  background: #f5e114;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-push {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-push .hy-item {
  width: 210px;
  height: 210px;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-push .hy-item .hy-img {
  background: url("../../images/registCompany/9.png") no-repeat center;
  background-size: cover;
  height: 160px;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-push .hy-item .hy-img h3 {
  font-size: 24px;
  font-weight: normal;
  color: white;
  padding-top: 50px;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-push .hy-item .hy-img .hy-push-btn {
  display: inline-block;
  width: 100px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: white;
  border: 1px solid white;
  border-radius: 3px;
  margin-top: 10px;
  cursor: pointer;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-push .hy-item .hy-img .hy-push-btn:hover {
  border: 1px solid #feea14;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-push .hy-item .hy-describe {
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: white;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-push .hy-item .hy-describe span {
  display: inline-block;
  width: 26px;
  height: 25px;
  background: url("../../images/registCompany/33.png") no-repeat center;
  background-size: cover;
  margin-right: 10px;
  margin-top: 13px;
}

.hy-container .hy-register-company .hy-need .hy-need-info .hy-choose-push .hy-item .hy-describe span:last-child {
  margin-right: 0;
}

.hy-container .hy-register-company .hy-problem {
  padding: 50px 0;
  text-align: center;
}

.hy-container .hy-register-company .hy-problem .hy-row {
  margin-top: 105px;
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  justify-content: space-around;
}

.hy-container .hy-register-company .hy-problem .hy-row .hy-item {
  position: relative;
  width: 250px;
  height: 240px;
  text-align: center;
  box-shadow: 0 0 8px rgba(80, 102, 234, 0.3);
  border-radius: 5px;
  background: white;
}

.hy-container .hy-register-company .hy-problem .hy-row .hy-item .hy-num {
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background: url("../../images/registCompany/11.png") no-repeat center;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background-size: cover;
  color: white;
  font-size: 50px;
  font-weight: bold;
}

.hy-container .hy-register-company .hy-problem .hy-row .hy-item h3 {
  font-size: 24px;
  font-weight: normal;
  color: #333333;
  margin-top: 85px;
  margin-bottom: 30px;
}

.hy-container .hy-register-company .hy-problem .hy-row .hy-item p {
  font-size: 18px;
  color: #666666;
}

.hy-container .hy-register-company .hy-material {
  padding: 40px 0;
  text-align: center;
}

.hy-container .hy-register-company .hy-material .hy-line {
  margin-top: 30px;
}

.hy-container .hy-register-company .hy-material .hy-line .hy-item {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  justify-content: flex-start;
  height: 55px;
  line-height: 55px;
  background: #f7f7f7;
  padding: 0 19px;
}

.hy-container .hy-register-company .hy-material .hy-line .hy-item .hy-num {
  width: 36px;
  text-align: center;
  margin-right: 17px;
  font-size: 16px;
  color: white;
  background: url("../../images/registCompany/15.png") no-repeat 2px center;
}

.hy-container .hy-register-company .hy-material .hy-line .hy-item .hy-describe {
  font-size: 18px;
  color: #333333;
}

.hy-container .hy-register-company .hy-material .hy-line .hy-item:nth-child(even) {
  background: #525be6;
}

.hy-container .hy-register-company .hy-material .hy-line .hy-item:nth-child(even) .hy-num {
  color: #525be6;
  background: url("../../images/registCompany/16.png") no-repeat 2px center;
}

.hy-container .hy-register-company .hy-material .hy-line .hy-item:nth-child(even) .hy-describe {
  color: white;
}

.hy-container .hy-register-company .hy-success {
  padding-bottom: 70px;
  text-align: center;
}

.hy-container .hy-register-company .hy-success .hy-row {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  margin-top: 50px;
}

.hy-container .hy-register-company .hy-success .hy-row .hy-item {
  width: 220px;
  height: 255px;
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.45);
}

.hy-container .hy-register-company .hy-success .hy-row .hy-item img {
  margin-top: 35px;
}

.hy-container .hy-register-company .hy-success .hy-row .hy-item h3 {
  margin-top: 15px;
  font-size: 22px;
  color: #333333;
  font-weight: normal;
}

.hy-container .hy-register-company .hy-success .hy-row .hy-item .hy-item-btn {
  display: inline-block;
  width: 109px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #feea14;
  color: #525be6;
  font-size: 16px;
  border-radius: 3px;
  box-shadow: 0 2px 3px rgba(236, 176, 31, 0.75);
  margin-top: 15px;
}

.hy-container .hy-register-company .hy-success .hy-row .hy-item .hy-item-btn:hover {
  background: #f5e114;
}

.hy-container .hy-register-company .hy-success .hy-btn {
  display: inline-block;
  width: 250px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 30px;
  color: #525be6;
  background: #feea14;
  box-shadow: 0 2px 1px #f1c457;
  border-radius: 5px;
  margin-top: 30px;
  cursor: pointer;
}

.hy-container .hy-register-company .hy-success .hy-btn:hover {
  background: #f5e114;
}

.hy-container .hy-register-company .hy-about {
  padding: 50px 0;
  text-align: center;
  background: url(../../images/registCompany/18.png) no-repeat center;
  background-size: cover;
}

.hy-container .hy-register-company .hy-about h1 {
  padding: 0 300px 15px;
  border-bottom: 3px solid white;
}

.hy-container .hy-register-company .hy-about .hy-introduce {
  margin-top: 40px;
  position: relative;
  background: url(../../images/registCompany/19.png) no-repeat left center;
  width: 100%;
  height: 440px;
}

.hy-container .hy-register-company .hy-about .hy-introduce:hover .hy-title {
  left: 248px;
}

.hy-container .hy-register-company .hy-about .hy-introduce .hy-title {
  width: 180px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #525be6;
  background: #feea14;
  font-size: 30px;
  position: absolute;
  top: -10px;
  left: 20px;
  transition: all 0.5s;
}

.hy-container .hy-register-company .hy-about .hy-introduce .hy-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 500px;
  height: 400px;
  position: absolute;
  top: -10px;
  right: 0;
}

.hy-container .hy-register-company .hy-about .hy-introduce .hy-describe {
  position: absolute;
  top: 65px;
  left: 54px;
  width: 580px;
}

.hy-container .hy-register-company .hy-about .hy-introduce .hy-describe p {
  font-size: 15px;
  line-height: 1.5;
  color: white;
  text-align: left;
  /* text-indent: 2em; */
}

.hy-container .hy-register-company .hy-about h2 {
  font-size: 26px;
  font-weight: normal;
  color: #515ae6;
  margin-top: 35px;
  margin-bottom: 30px;
}

.hy-container .hy-register-company .hy-about .hy-advantage {
  height: 370px;
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  justify-content: space-around;
  background: url(../../images/registCompany/20.png) no-repeat center bottom;
}

.hy-container .hy-register-company .hy-about .hy-advantage .hy-item {
  padding: 16px 19px;
  box-sizing: border-box;
  border: 1px solid #dddddd;
  background: white;
  height: 315px;
  width: 260px;
  transition: all 0.4s;
}

.hy-container .hy-register-company .hy-about .hy-advantage .hy-item:hover {
  position: relative;
  margin-top: -10px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
}

.hy-container .hy-register-company .hy-about .hy-advantage .hy-item img {
  border: 1px solid #dddddd;
  width: 218px;
  height: 148px;
}

.hy-container .hy-register-company .hy-about .hy-advantage .hy-item .hy-describe {
  margin-top: 24px;
  font-size: 16px;
  color: #333333;
  line-height: 1.9;
}

.hy-container .hy-register-company .hy-about .hy-team {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  justify-content: space-around;
  margin-top: 40px;
}

.hy-container .hy-register-company .hy-about .hy-team:first-child {
  margin-top: 0;
}

.hy-container .hy-register-company .hy-about .hy-team .hy-item {
  width: 339px;
  height: 185px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hy-container .hy-register-company .hy-about .hy-team .hy-item:hover {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.4);
}

.hy-container .hy-register-company .hy-parter {
  padding: 40px 0;
  text-align: center;
}

.hy-container .hy-register-company .hy-parter h1 {
  padding: 0 200px 15px;
  margin-bottom: 10px;
}

.hy-container .hy-register-company .hy-parter .hy-row:first-child {
  margin-top: 10px;
}

.hy-container .hy-register-company .hy-parter .hy-row .hy-item {
  cursor: default;
  display: inline-block;
  width: 207px;
  height: 103px;
  background-color: white;
  margin-top: 15px;
  margin-right: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid #dddddd;
  box-sizing: border-box;
}

.hy-container .hy-register-company .hy-parter .hy-row .hy-item:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/*# sourceMappingURL=index.css.map */
