@charset "UTF-8";
@import url(basis.css);
/*banner*/
.banner {
  width: 100%;
  min-width: 1350px;
  position: relative;
  height: 550px;
  overflow: hidden;
}
.banner .img-bg {
  width: 100%;
  height: 100%;
}
.banner .img-bg .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .banner-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  font-size: 50px;
  color: #fff;
  text-shadow: #000 2px 2px 3px;
}

/**/
.page-body {
  position: relative;
  width: 1350px;
  margin: 0 auto;
}

.content-info {
  padding: 40px 0 100px;
  min-height: 300px;
  font-size: 16px;
  font-weight: 300;
  text-align: justify;
  word-break: break-all;
  color: #000;
  line-height: 180%;
}
.content-info p {
  text-indent: 2em;
  margin-top: 10px;
}

/*路径*/
.path {
  margin: 15px auto;
  color: #666;
}

.path li {
  display: inline;
  font-size: 14px;
  color: #666;
}

/*分页*/
.pagination {
  width: 100%;
  border-top: 1px solid #efefef;
  flex-grow: 1;
  padding: 10px 0;
}

.view-title {
  width: 100%;
  min-width: 1400px;
  text-align: center;
  padding-top: 30px;
}
.view-title .title {
  font-size: 36px;
}
.view-title .subtitle {
  font-size: 20px;
}

/*分类*/
.small-nav {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 1350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #efefef;
  border-radius: 5px 5px 0 0;
  height: 80px;
  margin-top: -80px;
  gap: 50px;
}
.small-nav .nav-title {
  padding: 0 20px;
  font-size: 22px;
}
.small-nav a {
  display: block;
  line-height: 50px;
  font-size: 16px;
  border-bottom: 3px solid #fff;
}
.small-nav .curr, .small-nav a:hover {
  border-bottom: 3px solid #93339e;
  color: #93339e;
}

/*成功案例*/
.cases-list {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.cases-list .item {
  width: 313px;
  display: flex;
  flex-direction: row;
  border: 1px solid #efefef;
  cursor: pointer;
}
.cases-list .item .img-box {
  width: 100%;
  height: 170px;
  overflow: hidden;
  text-align: center;
}
.cases-list .item:hover .img-box {
  box-shadow: 2px 2px 5px #000;
}
.cases-list .item:hover .img-box img {
  transform: scale(1.1);
}

/*团队*/
.team-list {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 30px;
}
.team-list .item {
  padding: 30px 0;
  display: flex;
  flex-direction: row;
  cursor: pointer;
}
.team-list .item .img-box {
  margin-right: 50px;
  width: 300px;
  height: 450px;
  overflow: hidden;
  text-align: center;
  background: #efefef;
}
.team-list .item .img-box:hover {
  box-shadow: 2px 2px 5px #000;
}
.team-list .item .img-box:hover img {
  transform: scale(1.1);
}
.team-list .item .info {
  max-width: 1000px;
}
.team-list .item .info .title {
  color: #333;
  font-size: 24px;
  font-weight: bold;
}
.team-list .item .info .position, .team-list .item .info .edu {
  margin-top: 10px;
  font-size: 14px;
  color: #6c6c6c;
}
.team-list .item .info .intro {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  line-height: 40px;
}
.team-list .item:hover .info .title {
  color: #93339e;
}

.team-info {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
}
.team-info .img-box {
  margin-right: 50px;
  width: 300px;
  height: 450px;
  overflow: hidden;
  text-align: center;
  background: #efefef;
}
.team-info .img-box:hover {
  box-shadow: 2px 2px 5px #000;
}
.team-info .img-box:hover img {
  transform: scale(1.1);
}
.team-info .info {
  flex-grow: 1;
}
.team-info .info .title {
  color: #333;
  font-size: 24px;
  font-weight: bold;
}
.team-info .info .position, .team-info .info .edu {
  margin-top: 10px;
  font-size: 14px;
  color: #6c6c6c;
}
.team-info .info .intro {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  line-height: 40px;
}

/*案例、团队弹出样式*/
.open-info {
  position: relative;
  padding: 30px;
}
.open-info .close {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 0;
  top: 0;
  cursor: pointer;
  line-height: 60px;
  text-align: center;
  overflow: hidden;
}
.open-info .close .icon {
  font-size: 36px;
  transition: transform 0.3s ease;
}
.open-info .close:hover {
  color: #93339e;
}
.open-info .close:hover .icon {
  transform: rotate(180deg);
}
.open-info .case-info .title {
  font-size: 36px;
}
.open-info .case-info .url {
  margin-top: 10px;
  display: block;
  font-size: 14px;
}
.open-info .case-info .img-box {
  margin-top: 10px;
  max-width: 100%;
  overflow: hidden;
}
.open-info .case-info .img-box img {
  max-width: 100%;
  border: 1px solid #efefef;
}
.open-info .case-info .content {
  margin-top: 20px;
}
.open-info .team-list .title {
  font-size: 36px;
}

/*新闻动态*/
.news {
  margin-top: 20px;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  min-width: 1350px;
  width: 100%;
  gap: 30px;
}
.news .item {
  width: 430px;
  display: block;
  background-color: #f8f8f8;
}
.news .item .img-box {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.news .item .img-box .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .item .title {
  margin: 15px 15px 0;
  font-size: 20px;
  height: 30px;
}
.news .item .small-title {
  margin: 10px 15px 0;
  font-size: 14px;
  color: #666;
  height: 60px;
  line-height: 30px;
}
.news .item .tool {
  margin: 15px 15px 0;
  border-top: 1px solid #ccc;
  padding: 10px 5px 20px;
  display: flex;
  flex-direction: row;
  color: #666;
  font-size: 12px;
  gap: 15px;
}
.news .item:hover {
  background-color: #efefef;
}
.news .item:hover .img-box .img {
  transform: scale(1.1);
}

/*通用详情页面*/
.info {
  overflow: hidden;
  padding: 30px 0 0;
}
.info .info-top {
  padding: 0 80px 20px 0;
  border-bottom: 1px solid #ddd;
}
.info .info-top .title {
  font-size: 26px;
  color: #000;
  margin-bottom: 10px;
}
.info .info-top .description {
  font-size: 16px;
  color: #666;
  line-height: 25px;
  padding-bottom: 10px;
}
.info .info-top .tool {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}
.info .content {
  margin-top: 20px;
  min-height: 570px;
  font-size: 18px;
  line-height: 200%;
}
.info .content p {
  text-indent: 2em;
}
.info .content img {
  margin: 15px 0;
}
.info .info-bottom {
  padding: 20px 0;
  border-top: 1px solid #ddd;
}
.info .info-bottom .previous,
.info .info-bottom .next {
  color: #ccc;
  line-height: 35px;
}
.info .info-bottom .previous span,
.info .info-bottom .next span {
  color: #000;
}

/*联系我们*/
.contact {
  width: 1350px;
  position: relative;
  overflow: hidden;
  margin: 20px auto;
  background: #efefef;
  display: flex;
  flex-direction: row;
}
.contact .title-box {
  position: relative;
}
.contact .title-box .title-en {
  top: 0;
  right: 0;
  margin-top: -30px;
  position: absolute;
  font-size: 96px;
  color: #fff;
  font-weight: bold;
  opacity: 0.2;
}
.contact .title-box .title {
  position: relative;
  line-height: 50px;
  font-size: 26px;
  font-weight: bold;
  z-index: 1;
}
.contact .txt {
  padding: 30px 50px 10px 50px;
  flex-grow: 1;
  text-align: left;
  background-color: #93339e;
  background-size: auto 100%;
  height: 420px;
  color: #efefef;
}
.contact .txt ul {
  margin-top: 30px;
}
.contact .txt ul li {
  line-height: 45px;
  font-size: 18px;
  font-weight: 300;
}
.contact .txt ul span {
  color: #fff;
}
.contact .txt .img {
  margin-top: 30px;
  width: 125px;
  height: 125px;
  overflow: hidden;
}
.contact {
  /*留言咨询*/
}
.contact .guest-form {
  padding: 20px 50px;
  width: 420px;
}
.contact .guest-form .guest-row {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.contact .guest-form .textarea {
  margin-top: 20px;
}
.contact .guest-form .btn {
  margin-top: 20px;
  border: 2px solid #93339e;
  width: 150px;
  height: 40px;
  line-height: 38px;
  font-size: 16px;
  text-align: center;
  color: #93339e;
  border-radius: 3px;
  cursor: pointer;
}
.contact .guest-form .btn:hover {
  background: rgba(147, 51, 158, 0.8);
  color: #fff;
}

.baidu .baidu-map {
  width: 1400px;
  height: 360px;
}

/*人才招聘*/
.recruitment {
  margin-top: 50px;
  border-width: 0;
  border-top: 1px solid #ccc;
}
.recruitment .layui-colla-item {
  border-bottom: 1px solid #ccc;
}
.recruitment .layui-colla-content {
  border-top-width: 0;
}
.recruitment .layui-colla-title {
  display: flex;
  flex-direction: row;
  height: 80px;
  line-height: 80px;
  gap: 30px;
  background-color: #fff;
  border-bottom-width: 0;
}
.recruitment .layui-colla-title .title {
  padding-left: 15px;
  font-weight: bold;
  font-size: 20px;
  margin-right: auto;
}
.recruitment .layui-colla-title .txt {
  font-size: 16px;
}
.recruitment .info {
  padding: 0 35px 50px;
}
.recruitment .info .title {
  font-weight: bold;
  margin-top: 15px;
}
@media (max-width: 1920px) {
  .banner {
    height: 500px;
  }
}
@media (max-width: 1600px) {
  .banner {
    height: 400px;
  }
}

/*# sourceMappingURL=style-page.css.map */
