.banner {
  width: 1280px;
  height: 550px;
  margin:  0 auto;
}
.banner .l-box {
  float: left;
  width: 620px;
  height: 470px;
  margin-top: 80px;
  animation: l-box 1000ms;
}
.banner .r-box {
  float: right;
  width: 640px;
  height: 470px;
  margin-top: 80px;
  border-radius: 10px;
  background: url(../../images/qyrz/bnner.jpg);
  background-size: 640px 470px;
  animation: r-box 1000ms;
}
.banner .l-box .tit {
  width: 350px;
  height: 128px;
  font-size: 56px;
  color: #002FA7;
  line-height: 72px;
  margin-top: 48px;
}
.banner .l-box .text {
  width: 350px;
  height: 59px;
  font-size: 24px;
  color: #002FA7;
  line-height: 32px;
  margin-top: 37px;
}
.banner .l-box .text img{
  width: 30px;
  height: 22px;
  margin-top: -5px;
  margin-left: 3px;
}
.banner .l-box .text span {
  font-weight: bold;
}
.banner .l-box .but {
  width: 168px;
  height: 50px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  line-height: 50px;
  margin-top: 54px;
  text-align: center;
  border-radius: 6px;
  margin-left: 5px;
  background-color: #0081D2;
}
.banner .l-box .but:hover {
  background-color: #008ee5;
  cursor: pointer;
}
/* 简单3步成为会员 */
.tit-box {
  width: 1280px;
  height: 132px;
  font-size: 18px;
  font-weight: bold;
  color: #131414;
  line-height: 132px;
  margin: auto;
  margin-top: 35px;
  /* background-color: #E7CC5B; */
}
.box-a {
  width: 1280px;
  height: 355px;
  margin: 0 auto;
}
.box-a .box413 {
  float: left;
  width: 413px;
  height: 355px;
  margin-right: 20px;
  animation: box413 3000ms;
}
.box-a .box413 .imgbox {
  width: 413px;
  height: 312px;
  border-radius: 10px;
  background-color: #f8f8f8;
}
.box-a .box413 .imgbox:hover {
  background-color: #fff;
  Box-shadow: 0px 0px 26px rgba(48,48,48,0.1);
  transition: all 0.4s;
}
.box-a .box413 .imgbox img {
  width: 192px;
  height: 138px;
  margin-top: 105px;
  margin-left: 105px;
}
.box-a .box413 .imgbox:hover img {
  transform: translateY(-10px);
  transition: all 0.4s;
}
.box-a .box413 .text {
  width: 403px;
  height: 17px;
  font-size: 17px;
  line-height: 17px;
  margin-top: 26px;
  color: #131414;
  padding-left: 10px;
}

/* 企业会员3大专属权益 */
.box-b {
  width: 1280px;
  height: 550px;
  margin: 0 auto;
}
.box-b .box413 {
  float: left;
  width: 413px;
  height: 550px;
  margin-right: 20px;
  border-radius: 10px;
  background-color: #303030;
  animation: box413 4000ms;
}
.box-b .bc-y {
  background-color: #E7CC5B;
}
.box-b .bc-b {
  background-color: #0081D2;
}
.box-b .box413 .imgbox {
  width: 413px;
  height: 444px;
  position: relative;
}
.box-b .box413 .imgbox:hover img {
  /* 图片按照比例放大1.1倍 */
  transform: scale(1.1);
}
.box-b .box413 .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  /* 动画执行的时间为0.6s 过渡效果 */
  transition: all 0.6s; 
}
.box-b .box413 .text0 {
  width: 377px;
  height: 24px;
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  font-weight: bold;
  padding-left: 36px;
}
.box-b .box413 .text {
  width: 377px;
  height: 17px;
  font-size: 17px;
  line-height: 17px;
  margin-top: 16px;
  color: #fff;
  padding-left: 36px;
}
.box-b .box413 .ys-text {
  color: #131414;
}

/* 规则说明 */
.box-c {
  width: 1280px;
  margin: 0 auto;
  margin-top: -30px;
}
.box-c p {
  font-size: 17px;
  color: #131414;
  line-height: 28px;
}
.box-c p span {
  font-weight: bold;
  border-bottom: 1px solid #131414;
}
.butt {
  width: 400px;
  height: 50px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  line-height: 50px;
  margin: 0 auto;
  margin-top: 140px;
  margin-bottom: 190px;
  text-align: center;
  border-radius: 6px;
  background-color: #0081D2;
}
.butt:hover {
  background-color: #008ee5;
  cursor: pointer;
}

/* 浮动进入动画参数 */
@keyframes l-box {
  from{
      transform: translateX(-200px);
      opacity: 0.01;
  }
  to{
      transform: translateX(0px);
      opacity: 1;
  }
}
@keyframes r-box {
  from{
      transform: translateX(200px);
      opacity: 0.01;
  }
  to{
      transform: translateX(0px);
      opacity: 1;
  }
}
@keyframes box413 {
  from{
      transform: translateY(200px);
      opacity: 0.01;
  }
  to{
      transform: translateY(0px);
      opacity: 1;
  }
}