@keyframes bigimg-show {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
html, body {
  height: 100%;
  background-color: #fff;
}
  
body {
  font-family: "PingFang SC","Lantinghei SC","Microsoft YaHei","HanHei SC","Helvetica Neue","Open Sans",Arial,"Hiragino Sans GB","微软雅黑",STHeiti,"WenQuanYi Micro Hei",SimSun,sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: #333;
}

/* 这是提示组件 */
.notice-box {
  position: fixed;
  z-index: 10;
  top: 64px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@keyframes notice-show {
  from {
    top: -44px;
    opacity: 0;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}
.notice-box .notice {
  position: relative;
  padding: 10px 16px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px #0000001f, 0 6px 16px #00000014, 0 9px 28px 8px #0000000d;
  font-size: 14px;
  color: #666;
  display: none;
  align-items: center;
  animation: notice-show 300ms linear forwards;
}
.notice-box .notice.show {
  display: flex;
}
.notice-box .notice .icon {
  margin-right: 8px;
  font-size: 20px;
}
.notice-box .notice.yes .icon {
  color: #52c41a;
}
.notice-box .notice.no .icon {
  color: #ff4d4f;
}

/* 这是侧边固定栏 */
.stick-box {
  position: fixed;
  right: 0;
  bottom: 60px;
  z-index: 10;
  width: 50px;
  min-height: 152px;
}
.stick-box .tool {
  position: relative;
  width: 60px;
  height: 76px;
  cursor: pointer;
  background: no-repeat center;
  background-size: 100%;
}
.stick-box .tool-kefu {
  background-image: url(//asset.eqh5.com/site/2022/04/01/c46b3ab591d547bbadfc9b98476af89e.png);
  transform: translateY(20px);
}
.stick-box .kefu-code {
  box-shadow: 0px 12px 48px 16px rgba(0, 0, 0, 0.03), 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px -8px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding-top: 24px;
  border-radius: 8px;
  width: 220px;
  height: 230px;
  text-align: center;
  position: absolute;
  right: 66px;
  bottom: -10px;
  cursor: default;
  display: none;
}
.stick-box .kefu-code .hd {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  line-height: 22px;
  padding: 0 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.stick-box .kefu-code .bd {
  margin: 16px auto 0;
  width: 144px;
  height: 144px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.stick-box .kefu-code .bd img {
  height: 100%;
}
.stick-box .kefu-code .narrow {
  display: block;
  position: absolute;
  bottom: 36px;
  right: -24px;
  border: 12px solid transparent;
  border-left-color: #fff;
}
.stick-box .tool-kefu:hover .kefu-code{
  display: block;
}
.stick-box .tool-top {
  background-image: url(//asset.eqh5.com/site/2022/04/01/c2f0e30ff89b44d681757e81b4690bad.png);
  transform: translateY(10px);
}

/* 支付弹窗 */
.member-pay .box-mask {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  display: none;
}
.member-pay .box-mask.mask-show {
  display: flex;
}
.member-pay .frame {
  width: 100%;
  height: 100%;
}

#page_wrapper {
  padding-top: 60px;
  min-width: 1200px;
}

#page_wrapper .eqx-footer-inner {
  border-top: 0;
}

.module {
  padding: 100px 0;
}
.module:nth-of-type(even) {
  background: #F5F8FF;
}
.module .content {
  margin: 0 auto;
  width: 1200px;
}
.module-title {
  height: 46px;
  font-size: 32px;
  font-weight: 600;
  line-height: 46px;
  text-align: center;
}
.module-btn {
  margin: 24px auto 40px;
  width: 160px;
  height: 44px;
  line-height: 44px;
  background: #1261FF;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  cursor: pointer;
  user-select: none;
}
.module-btn:hover {
  background: #2C72FF;
}
.module-tab-list {
  padding: 32px 0 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.module-tab-item {
  margin: 0 4px;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  cursor: pointer;
}
.module-tab-item.active {
  background: #E7EFFF;
  font-weight: 600;
  color: #1261FF;
}
.module-tab-item:hover {
  font-weight: 600;
  color: #1261FF;
}

.module-header {
  padding: 0;
  height: 550px;
}
.header-site {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.header-img1-box {
  position: absolute;
  width: 100%;
  z-index: 0;
  height: 100%;
  display: flex;
  justify-content: center;
}
.header-img1-box .header-img1 {
  height: 550px;
}
.header-site .header-mask {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  height: 100px;
}
.header-site .header-img2 {
  position: absolute;
  z-index: 5;
  bottom: 95px;
  right: 36px;
  width: 344px;
  height: 369px;
}
.header-site .header-img3 {
  position: absolute;
  z-index: 4;
  bottom: 190px;
  right: 84px;
  width: 286px;
  height: 148px;
}
.header-site .header-img4 {
  position: absolute;
  z-index: 3;
  bottom: 110px;
  right: 50px;
  width: 310px;
  height: 310px;
}
.header-site .header-img5 {
  position: absolute;
  z-index: 2;
  bottom: 102px;
  right: 15px;
  width: 340px;
  height: 340px;
  animation: img5-roll 10s linear infinite;
}
@keyframes img5-roll {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
.header-site .header-img6 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0px;
  width: 353px;
  height: 441px;
}

.header-site .content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 1200px;
  height: 100%;
}
.header-site .main {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  padding-top: 110px;
  height: 100%;
  width: 100%;
}
.header-site .hd-title {
  line-height: 60px;
  font-weight: 600;
  font-size: 40px;
}
.header-site .hd-sub-title {
  padding: 8px 0 40px;
  line-height: 20px;
}
.header-site .module-btn {
  margin: 0;
}
.header-site .hd-cards {
  margin-top: 114px;
  display: flex;
}
.header-site .card-item {
  height: 100px;
  width: 230px;
  padding: 0 18px;
  border-radius: 4px;
  border: 2px solid #fff;
  box-shadow: 0 10px 20px #eee;
  background: linear-gradient(#f4f8ff, #fefefe);
  margin-right: 16px;
}
.header-site .card-item.card-1 {
  width: 282px;
}
.header-site .card-item .card-line1 {
  height: 46px;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  align-items: flex-end;
}
.header-site .card-item .card-line1 span {
  color: #1261FF;
}
.header-site .card-item .card-line1 .num {
  font-size: 28px;
  line-height: 26px;
}
.header-site .card-item .card-line2 {
  margin-top: 14px;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.header-site .card-item .card-line2 i {
  margin-right: 2px;
  font-size: 16px;
  color: #1261FF;
}

.yxzhixuan {
  padding-top: 50px;
  display: none;
}
.yxzhixuan .main {
  border-radius: 4px;
  min-height: 500px;
  overflow: hidden;
  box-shadow: 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px -8px rgba(0, 0, 0, 0.08);
}
.yxzhixuan .main img {
  float: left;
  width: 100%;
}
@keyframes mask-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.yxzhixuan .kefu-mask {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: mask-show 300ms linear forwards;
}
.yxzhixuan .kefu-mask.show {
  display: flex;
}
.kefu-mask .kefu-code {
  box-shadow: 0px 12px 48px 16px rgba(0, 0, 0, 0.03), 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px -8px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding-top: 50px;
  border-radius: 8px;
  width: 360px;
  height: 400px;
  text-align: center;
  cursor: default;
}
.kefu-mask .kefu-code .hd {
  font-size: 28px;
  color: #333333;
}
.kefu-mask .kefu-code .bd {
  margin: 30px auto 20px;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.kefu-mask .kefu-code .bd img {
  height: 100%;
}
.kefu-mask .kefu-code .ft {
  color: #666666;
  line-height: 20px;
}
.kefu-mask .kefu-code .ft a {
  font-size: 14px;
  color: #1261FF;
}
.kefu-mask .kefu-code .ft a:hover {
  text-decoration: underline;
}

.cyzuopin {
  padding-top: 50px;
}
.cyzuopin .main {
  display: flex;
  justify-content: space-between;
}
.cyzuopin .img-box {
  box-shadow: 0px 12px 48px 16px rgba(0, 0, 0, 0.03), 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px -8px rgba(0, 0, 0, 0.08);
  width: 700px;
  height: 360px;
  border-radius: 4px;
  overflow: hidden;
}
.cyzuopin .img-box img {
  float: left;
  width: 100%;
  height: 100%;
}
.cyzuopin .msg-box {
  padding-top: 28px;
  width: 400px;
}
.cyzuopin .msg-box .title {
  text-align: left;
}
.cyzuopin .msg-box .sesc {
  margin: 8px 0 12px;
  color: #666;
  line-height: 22px;
}
.cyzuopin .msg-box .tags {
  margin-bottom: 40px;
  height: 20px;
  display: flex;
  align-items: center;
}
.cyzuopin .msg-box .tag {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #CCD5DB;
  height: 14px;
  line-height: 14px;
  font-size: 14px;
  color: #1261FF;
}
.cyzuopin .msg-box .tag:last-of-type {
  border-right: 0;
}
.cyzuopin .msg-box .module-btn {
  margin: 0;
}
.cyzuopin .msg-box .save {
  margin-top: 12px;
  font-size: 14px;
  color: #666;
  line-height: 20px;
}
.cyzuopin .msg-box .save span {
  font-weight: 600;
  color: #1261FF;
}

.drxiezuo .main {
  display: flex;
  justify-content: space-between;
}
.drxiezuo .track-box {
  position: relative;
  width: 740px;
  height: 420px;
  background: url(//asset.eqh5.com/site/2022/04/01/500ab84113ff468d950ffcc852c9d593.png) no-repeat 63px 60px;
  background-size: 614px 304px;
}
.drxiezuo .track {
  position: absolute;
  width: 192px;
  height: 135px;
  cursor: pointer;
}
.drxiezuo .track:nth-of-type(1) {
  left: 3px;
  top: 111px;
}
.drxiezuo .track:nth-of-type(2) {
  left: 270px;
  top: 0px;
}
.drxiezuo .track:nth-of-type(3) {
  left: 540px;
  top: 111px;
}
.drxiezuo .track:nth-of-type(4) {
  left: 277px;
  top: 232px;
}
.drxiezuo .track .img {
  float: left;
  width: 100%;
}
.drxiezuo .track .title {
  position: absolute;
  left: 49px;
  bottom: -51px;
  width: 96px;
  height: 42px;
  background: url(//asset.eqh5.com/site/2022/04/01/76ef3ba30ee24d059aef765522a92f1d.png) no-repeat center;
  background-size: cover;
  padding-top: 13px;
  text-align: center;
  line-height: 22px;
  color: #1261FF;
}
.drxiezuo .track.active .title {
  background-image: url(//asset.eqh5.com/site/2022/04/01/3bac1316c9e34f2c95f93dde29953bdc.png);
  color: #fff;
}
.drxiezuo .card-box {
  position: relative;
  padding: 96px 0 0 52px;
  width: 388px;
  height: 420px;
  background: linear-gradient(180deg, rgba(18, 97, 255, 0.18) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0px 20px 30px -8px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  border: 1px solid #1261FF;
}
.drxiezuo .card-box .card-tag {
  position: absolute;
  top: 20px;
  left: -4px;
  padding: 6px 0 0 24px;
  width: 100px;
  height: 40px;
  background: url(//asset.eqh5.com/site/2022/04/01/90742c742fd2453ba3bd9963dd515324.png) no-repeat center;
  background-size: cover;
  font-weight: 600;
  color: #FFF;
  line-height: 22px;
}
.drxiezuo .card-box .tip {
  position: absolute;
  right: 10px;
  bottom: -50px;
  width: 160px;
}
.drxiezuo .msg-item {
  margin-bottom: 24px;
}
.drxiezuo .msg-item .msg-title {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 600;
  color: #1261FF;
  line-height: 28px;
}
.drxiezuo .msg-item .msg-desc {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 20px;
}

.bjiqi .module-btn {
  margin-top: 0;
}
.bjiqi .main {
  box-shadow: 0px 12px 48px 16px rgba(0, 0, 0, 0.03), 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px -8px rgba(0, 0, 0, 0.08);
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  background: #F5F8FF;
  opacity: 0.4;
  animation: bigimg-show 400ms linear forwards;
}

.bjiqi .main img {
  float: left;
  width: 100%;
}

.xgongju .module-btn {
  margin-top: 0;
}
.xgongju .main {
  box-shadow: 0px 12px 48px 16px rgba(0, 0, 0, 0.03), 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px -8px rgba(0, 0, 0, 0.08);
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.4;
  animation: bigimg-show 400ms linear forwards;
}

.xgongju .main img {
  float: left;
  width: 100%;
}

.znhudong .module-btn {
  margin-top: 0;
}
.znhudong .main {
  box-shadow: 0px 12px 48px 16px rgba(0, 0, 0, 0.03), 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px -8px rgba(0, 0, 0, 0.08);
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.4;
  animation: bigimg-show 400ms linear forwards;
}
.znhudong .main img {
  float: left;
  width: 100%;
}

.xlzhuanjia .cases-content {
  position: relative;
}
.xlzhuanjia .ctrl-btn {
  position: absolute;
  width: 36px;
  height: 36px;
  background: #fff;
  box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.xlzhuanjia .ctrl-btn i {
  font-size: 28px;
  color: #666;
}
.xlzhuanjia .ctrl-btn:hover {
  background: #1261FF;
}
.xlzhuanjia .ctrl-btn:hover i{
  background: #1261FF;
  color: #fff;
}
.xlzhuanjia .to-prev {
  left: 19px;
  top: 292px;
}
.xlzhuanjia .to-next {
  right: 19px;
  top: 292px;
}
.xlzhuanjia .slider-content {
  margin: 0 auto;
  width: 1042px;
}
.xlzhuanjia .slider-content.to-prev, .xlzhuanjia .slider-content.to-next {
  overflow: hidden;
}
.xlzhuanjia .case-slider {
  position: relative;
  display: flex;
}
@keyframes anli-to-prev {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(1042px, 0, 0);
  }
}
@keyframes anli-to-next {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-1042px, 0, 0);
  }
}
.xlzhuanjia .slider-content.to-prev .case-slider {
  width: 200%;
  left: -1042px;
  animation: anli-to-prev 500ms linear forwards;
}
.xlzhuanjia .slider-content.to-next .case-slider {
  width: 200%;
  animation: anli-to-next 500ms linear forwards;
}
.xlzhuanjia .case-list {
  width: 1042px;;
  display: flex;
  flex-wrap: wrap;
}
.xlzhuanjia .case-box {
  margin-right: 20px;
  margin-top: 20px;
  width: 334px;
  height: 300px;
  border-radius: 14px;
}
.xlzhuanjia .case-box:nth-of-type(-n+3) {
  margin-top: 0;
}
.xlzhuanjia .case-box:nth-of-type(3n) {
  margin-right: 0;
}
.xlzhuanjia .case-item {
  position: relative;
  bottom: 0;
  display: block;
  height: 100%;
  background-color: #fff;
  border-radius: 14px;
  border: 1px solid #E5E5E5;
  overflow: hidden;
  transition: bottom 300ms linear;
}
.xlzhuanjia .case-box:hover .case-item {
  box-shadow: 0px 9px 28px 0px rgba(18, 97, 255, 0.05), 0px 6px 16px -8px rgba(18, 97, 255, 0.08);
  bottom: 10px;
}
.xlzhuanjia .case-item .case-logo {
  height: 195px;
  background: url(//asset.eqh5.com/site/2022/04/01/050b90b03a4a4d6f91b8f5621839e64d.png) no-repeat center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.xlzhuanjia .case-item .case-logo img {
  height: 72px;
}
.xlzhuanjia .case-info {
  padding: 17px 28px 0;
}
.xlzhuanjia .case-info .case-title {
  font-weight: 600;
  line-height: 23px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.xlzhuanjia .case-info .case-desc {
  margin-top: 7px;
  line-height: 17px;
  font-size: 12px;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.xlzhuanjia .pagenation-box {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.xlzhuanjia .pagenation {
  margin: 0 2px;
  height: 16px;
  width: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.xlzhuanjia .pagenation .bar {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: #eee;
}
.xlzhuanjia .pagenation .percent {
  width: 0%;
  height: 4px;
  border-radius: 2px;
  background: #5990FF;
}
.xlzhuanjia .pagenation:hover .bar {
  background-color: rgba(18, 97, 255, 0.4);
}
.xlzhuanjia .pagenation.active .percent {
  width: 100%;
}

.dzyong .content .main {
  height: 364px;
}
.dzyong .content .qiye-logos {
  margin-bottom: 16px;
  height: 60px;
  display: flex;
  justify-content: center;
}
.dzyong .content .qiye-logos:last-of-type {
  margin-bottom: 0;
}
.dzyong .content .qiye-logos .qiye-logo {
  height: 100%;
  margin: 0 8px;
  box-shadow: 0px 5px 18px 0px #EDF2FF;
}

.lianxiyqx {
  margin-bottom: 40px;
  background: #F5F8FF;
  min-height: 828px;
}