body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  caret-color: transparent;
}
img {
  width: 100%;
  height: 100%;
}
.container {
  flex: auto;
}
.easy_charge_wrap{
  display: none;
}
.easy_charge_wrap .banner{
  width: 100%;
}
.easy_charge_wrap .content{
  margin-top: 34px;
  display: flex;
    flex-direction: column;
    align-items: center
}
.easy_charge_wrap .content h2{
  font-size: 38px;
  color: #00579F;
  font-weight: bold;
}
.easy_charge_wrap .content .line{
  display: block;
  width: 60px;
  height: 2px;
  background-color: #00579F;
  margin: 24px 0 16px 0;
}
.easy_charge_wrap .content p{
  color: #2B2B2B;
  font-size: 24px;
  line-height: 36px;
}
.easy_charge_wrap .content button{
  width: 168px;
  height: 46px;
  background-image: linear-gradient(107deg, #51A7AB 0%, #02569D 100%);
  font-size: 16px;
  text-align: center;
  line-height: 46px;
  color: #fff;
  margin: 24px 0 36px 0;
}
header {
  width: 100%;
  height: 80px;
  user-select: none;
}

header .headerMain {
  width: 1124px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

header .headerMain .logo {
  width: 116px;
  display: flex;
  align-items: center;
}

nav {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 80px;
}

.nav > div {
  width: 82px;
  color: #00569b;
  display: block;
  text-align: center;
}
.nav > div > a {
  display: block;
  color: #00569b;
  font-size: 14px;
}
.nav .bg {
  height: 80px;
  background: url("/image/nav_bj.png") no-repeat;
  background-size: 100% 100%;
  color: #fff !important;
}
.nav .company {
  color: #fff;
  position: relative;
  background: linear-gradient(to bottom right, #51a7ab, #02569d);
  background-size: 100% 100%;
}
.nav .company > a {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0;
}

.company_list {
  position: absolute;
  top: 80px;
  left: 0;
  height: 0;
  overflow: hidden;
  background-size: 100% 100%;
  z-index: 2;
  display: flex;
  color: #fff;
}
.company_list_ouerHouse {
  width: 305px;
  background: url("/image/ouhao_tab_bg.png") no-repeat;
}

.company_list_business {
  width: 754px;
  background: url("/image/bus_tab_bg.png") no-repeat;
  background-size: 100% 100%;
}
.company_list_responsibility {
  width: 264px;
  background: url("/image/shzr_tab_bg.png") no-repeat;
  background-size: 100% 100%;
}

.company_list_news {
  width:127px;
  background: url("/image/new_tab_bg.png") no-repeat;
  background-size: 100% 100%;
}
.company_list_join {
  width: 127px;        
  background: url("/image/lianxi_tab_bg.png") no-repeat;
  background-size: 100% 100%;
}
.business .company_list {
  left: -224px;
}
nav .company:hover {
  background: url("/image/nav_bj.png") no-repeat;
  background-size: 100% 100%;
  color: #fff;
}
nav .company:hover .company_list {
  height: 70px;
  top: 70px;
}
nav .company .company_list li:nth-child(2){
  width: 160px;
}
nav .company .company_list li {
  width: 86px;
  margin-left: 18px;
}
nav .company .company_list li a {
  width: 100%;
  color: #f0f0f0;
  display: block;
  font-size: 14px;
}
nav .company .company_list li a:hover {
  color: #fff;
}

/* 轮播 */
.swiper-container {
  width: 100%;
  /* max-height: 520px; */
  margin: auto;
}
.swiper-slide {
  
  max-height: 520px;
}
.swiper-button-next {
  background-image: url("/image/pager_right.png") !important;
  right: 72px !important;
  outline: none;
}

.swiper-button-prev {
  background-image: url("/image/pager_left.png") !important;
  left: 72px !important;
  outline: none;
}
.swiper-button-next.swiper-button-disabled {
  background-image: url("/image/pager_left_nor.png") !important;
  right: 72px !important;
  outline: none;
  opacity: 1;
}
.swiper-button-prev.swiper-button-disabled {
  background-image: url("/image/pager_right_nor.png") !important;
  right: 72px !important;
  outline: none;
  opacity: 1;
}
.swiper-pagination {
  bottom: 10px !important;
}
.swiper-slide img {
  width: 100%;
  height: auto;
}
.swiper-slide .mask {
  width: 800px;
  height: 520px;
  position: absolute;
  left: 0;
  right: 0;
  top:0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
.swiper-slide-active .mask0 {
  animation: mask2-animate 3s linear;
}
.swiper-slide-active .mask1 {
  animation: mask2-animate 2s linear;
  overflow: hidden;
}
.swiper-slide-active .mask2 {
  animation: mask1-animate 3s ease;
  overflow: hidden;
}
.swiper-slide-active .mask1 img{
  scale: 0.8;
}
.mask0 img{
  scale: 0.6;
}
.mask2 img{
  scale: 0.5;
}
@keyframes mask2-animate {
  0% {
    clip-path: polygon(0 0, 35% 0, 0 68%, 0 67%);
  }
  10% {
    clip-path: polygon(0 0, 35% 0, 0 99%, 0% 100%);
  }
  30% {
    clip-path: polygon(0 0, 75% 0, 34% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 51% 100%, 0 100%);
  }
  70% {
    clip-path: polygon(0 0, 100% 0, 74% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes mask1-animate {
  from {
    height: 0px;
    top: 300px;
  }
  to {
    height: 300px;
    top: 0px;
  }
}
.cover_bottom{
  position: absolute;
  bottom: -1px;
  z-index: 99;
}
.swiper-pagination span {
  width: 15px;
  height: 15px;
  border: solid 2px #ffffff;
  background: transparent;
  box-sizing: border-box;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff !important;
}

.nav .staff {
  position: relative;
  width: 82px;
  color: #00569b;
  display: block;
  text-align: center;
}

.nav .staff:hover .staff_list {
  height: 80px;
}

.staff .staff_list {
  position: absolute;
  top: 80px;
  left: 0;
  width: 82px;
  height: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
  /* transition: 0.6s; */
}

.staff_list li {
  line-height: 40px;
  font-size: 12px;
}

.staff_list li:hover {
  cursor: pointer;
  color: #00569b;
}

.staff_list li > a {
  color: #d2ced5;
}

.staff_list li > a:hover {
  list-style: none;
  color: #00569b;
}
/* 底部 */

footer {
  flex-shrink: 0;
}

.footer {
  width: 100%;
  height: auto;
  padding-top: 20px;
  background: linear-gradient(to bottom right, #51a7ab, #02569d);
  box-sizing: border-box;
  border-top: 4px solid #74c6b5;
  user-select: none;
  display: flex;
  justify-content: center;
  z-index: 99;
}

.footer .main {
  position: relative;
  width: 1140px;
  margin: 0 auto;
}

.main .foot-main {
  width: 100%;
  height: 70px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 70px;
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: center;
}

.main .foot-main .foot-main-bus {
  display: flex;
  align-items: center;
}
.main .foot-main .foot-main-bus ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .foot-main ul > li {
  width: 70px;
  height: 60px;
  margin-left: 20px;
}
.main .foot-main ul > .bln a img {
  height: auto;
  margin-top: 16px;
}
.main .foot-main ul > .wushijia {
  margin-top: 8px;
}
.main .foot-main ul > .wushijia a {
  width: 88%;
}

.main .foot-main ul > li a {
  display: block;
}
.jingang {
  width: 100px !important;
}
.main .foot-main ul > .jingang a img {
  width: 100px;
  height: auto;
  margin-top: 12px;
}
.main .foot-main ul > .hebang a img {
  width: 70px;
  height: auto;
  margin-top: 14px;
  margin-left: -10px;
}

.main .foot-main ul > .haofang a img {
  width: 46px;
  height: auto;
  margin-top: 7px;
  margin-left: -32px;
}

.main .foot-main ul > .qianmo a img {
  width: 95px;
  height: auto;
  margin-top: 24px;
}
.main .foot-main ul > .haoju a img {
  width: 95px;
  height: auto;
  margin-top: 20px;
  margin-left: 22px;
}

.foot-main .code {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.4s ease 0s;
}
.foot-main .code:hover {
  transform: scale(3);
  top: -59px;
  transition: all 0.4s ease 0s;
}
.footer .footer-description {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 12px;
  line-height: 72px;
}

.footer-description span {
  display: inline-block;
  text-align: left;
}

.footer-description .span-a {
  width: 342px;
}

.footer-description .span-b {
  position: absolute;
  right: 175px;
  width: 120px;
}

.footer-description .span-b a {
  color: #fff;
}

.footer-description .span-c {
  position: absolute;
  right: 0;
  width: 175px;
  text-align: right;
}
/* 页面的tab */
.tabs_common {
  width: 100%;
  height: 84px;
  display: flex;
  justify-content: flex-end;
  border-bottom: solid 2px #f2f2f2;
  box-sizing: border-box;
  padding-right: 140px;
  align-items: flex-end;
}
.tabs_common li {
  font-size: 16px;
  color: #3e3a39;
  margin-left: 60px;
  height: 40px;
  cursor: pointer;
}
.tabs_common li.active {
  border-bottom: solid 2px #00569b;
  box-sizing: border-box;
}
.tabs_common li.active a {
  color: #00579f;
}
