body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
#app {
  width: 100%;
  height: 100%;
  /* overflow: hidden; */
}
.login-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 10px;
  height: 32px;
  background: #f00;
  color: #fff;
  width: calc(100% - 20px);
}
.login-head .login-head-text {
  margin-right: 10px;
  cursor: pointer;
}
.page-head {
  margin: 0 auto;
  padding: 0 10%;
  width: 100%;
  height: 68px;
  box-sizing: border-box;
}
.page-head .el-row {
  height: 100%;
}
.page-head .el-row .el-col {
  height: 100%;
}
.page-head .page-head-logo {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.page-head .page-head-logo img {
  height: 100%;
}
.page-head .page-head-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.page-head .page-head-text {
  font-size: 16px;
  font-weight: bold;
  text-align: right;
  padding-right: 5%;
  cursor: pointer;
}
.page-head .page-head-text:last-child {
  padding-right: 0;
}
.page-head .page-head-text .el-link {
  font-size: 16px;
  font-weight: bold;
}
.el-col {
  height: 100%;
}
#app .swiper-container {
  position: relative;
  width: 100%;
  height: 700px;
}
.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
}
.swiper-slide .slide-text-wrapper {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  box-sizing: border-box;
  padding-left: 10%;
  position: relative;
  top: 23%;
  text-align: left;
  left: 22%;
}
.slide-img-wrapper {
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide-text-wrapper .slide-text-top {
  display: flex;
  flex-direction: column;
  font-size: 28px;
}
.slide-text-wrapper .slide-text-bottom {
  margin-top: 20px;
  cursor: pointer;
}
.line {
  margin: 0 10px;
  width: calc(100% - 20px);
  height: 1px;
  box-sizing: border-box;
  background: rgb(153, 193, 299);
}
.corporation {
  position: relative;
  font-size: 12px;
  width: 100%;
  line-height: 30px;
  height: 30px;
}
.icon-wrapper {
  position: absolute;
  display: flex;
  align-items: center;
  left: 10%;
  height: 30px;
  line-height: 30px;
  top: 50%;
  transform: translateY(-5px);
}
.icon-wrapper .iconfont {
  font-size: 25px;
  padding-right: 20px;
  cursor: pointer;
  width: 25px;
}
.icon-wrapper .hover-container {
  position: relative; /* 确保子元素定位正确 */
}
.icon-wrapper .hover-container span {
  display: none; /* 默认不显示 */
  position: absolute;
  top: -35px;
  left: 0;
  /* display: none; */
  font-size: 14px;
  color: #333;
}
.icon-wrapper .hover-container:hover span {
  display: block; /* 鼠标悬停时显示 */
}
/* menu */
.el-menu.el-menu--horizontal {
  border-bottom: none;
}
.el-menu-item .el-link--inner {
  font-size: 16px;
  font-weight: bold;
}
.el-submenu__title {
  font-size: 16px;
  font-weight: bold;
}

@media  screen and (max-width: 992px){
  .swiper-slide  .slide-text-wrapper {
    left: 10%;
  }
}
@media screen and (max-width: 768px) {
  .swiper-slide  .slide-text-wrapper {
    left: 10%;
  }
  .el-col{
    height: 50%;
  }
  .el-col:first-child {
    height: 40%;
  }
  .el-col .slide-text-wrapper {
    left: 9%;
  }
}
@media screen and (max-height: 650px) {
  #app .swiper-container {
    height: 490px;
  }
  .contact-content-left {
    height: 86% !important;
  }
 
}