html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: #F4F4F4;
}
/*选中个背景色*/
::-moz-selection {
  background: #ed5566;
  color: #fff;
}
::selection {
  background: #ed5566;
  color: #fff;
}
.bgf {
  background-color: #fff;
}
.bshadow {
  -webkit-box-shadow: 2px 2px 5px #d8d8d8;
          box-shadow: 2px 2px 5px #d8d8d8;
}
.bshadow-small {
  -webkit-box-shadow: 1px 2px 3px #d8d8d8;
          box-shadow: 1px 2px 3px #d8d8d8;
}
.com-wrap {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
.w100p {
  width: 100%;
}
/*顶部大图 start*/
.about-ban {
  width: 100%;
  height: 200px;
  background: url(../img/about-ban.jpg) center center no-repeat;
  background-position: center center;
  background-size: cover;
}
/*顶部大图 end*/
/*反馈顶部大图 start*/
.feedback-ban {
  width: 100%;
  height: 200px;
  background: url(../img/feedback_ban.jpg) center center no-repeat;
  background-position: center center;
  background-size: cover;
}
/*顶部大图 end*/
/*导航 start*/
.about-nav {
  width: 100%;
  height: 65px;
  background-color: #fff;
}
.about-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 615px;
  height: 65px;
  margin: 0 auto;
}
.about-nav ul li {
  position: relative;
  cursor: pointer;
  height: 100%;
  line-height: 65px;
}
.about-nav ul li::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #ED5566;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  /*transform-origin:left center;*/
  -webkit-transition: .2s all;
  transition: .2s all;
}
.about-nav ul li:hover::after,
.about-nav ul li.active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.about-nav ul li:hover a,
.about-nav ul li.active a {
  color: #ED5566;
}
.about-nav ul li a {
  display: block;
  height: 100%;
  font-size: 14px;
  -webkit-transition: .2s color;
  transition: .2s color;
}
/*导航 end*/
/*关于我们内容 start*/
.about-cont {
  position: relative;
  width: 880px;
  margin: 0 auto;
  padding: 110px 0;
}
.about-cont .about-c1 {
  width: 470px;
  line-height: 28px;
}
.about-cont .about-c1 p {
  text-indent: 2em;
  font-size: 14px;
  color: #434343;
}
.about-cont > img {
  position: absolute;
  right: 0;
  top: 115px;
}
/*关于我们内容 end*/
/*人才招聘 start*/
.invite-cont {
  display: grid;
  grid-template-columns: repeat(3, 370px);
  grid-template-rows: repeat(2, 260px);
  grid-gap: 45px;
  padding: 111px 0;
}
.invite-cont .invite-list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #fff;
  background-color: #fff;
  text-align: center;
  -webkit-transition: 0.3s border-color;
  transition: 0.3s border-color;
  padding-top: 25px;
  cursor: pointer;
}
.invite-cont .invite-list p {
  -webkit-transition: .3s all;
  transition: .3s all;
  color: #707070;
}
.invite-cont .invite-list p.invite-title {
  font-weight: bold;
  padding-top: 5px;
  letter-spacing: 1px;
}
.invite-cont .invite-list:hover {
  border-color: #ED5566;
  -webkit-box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.15);
  /* p.invite-title{
				color:#ed5566;
			} */
}
.invite-cont .invite-list:hover > img {
  -webkit-animation: swing .4s linear;
          animation: swing .4s linear;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.invite-cont .invite-list:nth-child(1):hover p {
  color: #C0A13E;
}
.invite-cont .invite-list:nth-child(2):hover p {
  color: #4CB0A9;
}
.invite-cont .invite-list:nth-child(3):hover p {
  color: #3B79BF;
}
.invite-cont .invite-list:nth-child(4):hover p {
  color: #C46DAE;
}
.invite-cont .invite-list:nth-child(5):hover p {
  color: #6F76AA;
}
.invite-cont .invite-list:nth-child(6):hover p {
  color: #E83E63;
}
.invite-win {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
}
.invite-win .invite-close {
  padding: 5px;
  text-align: right;
  background-color: #F4F4F4;
}
.invite-win .invite-close i {
  font-size: 14px;
  margin-top: 10px;
  margin-right: 5px;
  cursor: pointer;
}
.invite-win .invite-cover {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.invite-win .invite-content {
  position: relative;
  z-index: 1;
  width: 900px;
  height: 700px;
  background-color: #fff;
  margin: 5% auto 0;
  /*overflow-y: auto;*/
  border-radius: 4px;
}
.invite-win .invite-content .invite-title {
  text-align: center;
  padding-bottom: 25px;
  background-color: #F4F4F4;
}
.invite-win .invite-content .invite-title p {
  color: #434343;
  font-size: 12px;
}
.invite-win .invite-content .invite-title p:nth-child(1) {
  font-size: 18px;
  padding-bottom: 3px;
}
.invite-win .invite-content .invite-scroll {
  height: 500px;
  overflow-y: auto;
}
.invite-win .invite-content .invite-detail {
  padding: 45px 55px;
}
.invite-win .invite-content .invite-detail.invite-status {
  padding-top: 0;
}
.invite-win .invite-content .invite-detail .tit {
  font-size: 16px;
  color: #434343;
}
.invite-win .invite-content .invite-detail .invite-dlist {
  padding-top: 15px;
}
.invite-win .invite-content .invite-detail .invite-dlist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 18px;
  color: #707070;
  line-height: 24px;
  font-size: 0;
}
.invite-win .invite-content .invite-detail .invite-dlist li span {
  display: inline-block;
  font-size: 14px;
}
.invite-win .invite-content .invite-email {
  width: 400px;
  height: 40px;
  margin: 0 auto;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  color: #434343;
  border-radius: 4px;
  background-color: #F4F4F4;
}
/*人才招聘 end*/
/*用户协议 start*/
.deal-cont {
  margin: 0 auto;
  padding: 60px 0 30px;
  width: 950px;
  margin: 30px auto;
  padding: 60px 20px 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}
.deal-cont h1 {
  font-size: 22px;
  margin-top: 0;
  text-align: center;
}
.deal-cont h2 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.deal-cont p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 2.2;
  text-align: justify;
}
.deal-cont div,
.deal-cont li {
  display: -webkit-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.deal-cont div span,
.deal-cont li span {
  position: relative;
  top: 5px;
  width: 28px;
  font-size: 14px;
}
.deal-cont div p,
.deal-cont li p {
  width: 94%;
}
.deal-cont ul {
  width: 100%;
  padding-left: 35px;
}
/*用户协议 end*/
