/* 自定义单选按钮标签样式 */
.radio-group-content .radio-button {
  position: relative;
  cursor: pointer;
  text-align: center;
  line-height: 90px;
  overflow: hidden;
}

/* 单选按钮选中样式 */
.radio-group-content .active {
  color: #7AC143;
  transition: all 0.3s;
}

.radio-group-content .radio-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transform: scaleX(0);
  transition: transform 0.3s ease;

}

.radio-group-content .active::after {
  background-color: #7AC143;
  transform: scaleX(1);
}


.radio-group-content .radio-button:hover {
  color: #7AC143;
  transition: all 0.3s;
}

.radio-group-content .radio-button:hover::after {
  background-color: #7AC143;
  transform: scaleX(1);
}

.radio-group-content div {
  margin-right: 10px;
  width: 300px;
}

/* 隐藏所有标签 */
.tag {
  display: none;
}

.radio-group {
  position: relative;
  top: -45px;
  width: 100%;
  height: 90px;
}

/* 单选按钮组样式 */
.radio-group-content {
  display: flex;
  justify-content: space-around;
  width: 70%;
  height: 100%;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
}


.zk-project-content1,
.zk-project-content2,
.zk-project-content3 {
  min-width: 1024px;
}

.zk-project-content1 {
  padding-bottom: 90px;
}

.zk-project-content1 .zk-content-title {
  margin-top: calc(80px - 45px);
}

.zk-project-content1 ul {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.zk-project-content1 ul li {
  position: relative;
  max-width: 210px;
  max-height: 372px;
  width: 15%;
  transition: transform 0.3s ease;

}


.zk-project-content1 ul li:hover img {
  transform: translateY(-10px);
  /* transform: scale(1.05); */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

}

.zk-project-content1 ul li:hover p {
  transform: translateY(-10px);
  /* transform: translateY(-5px); */
  /* transform: translateX(10%); */
}

.zk-project-content1 ul li p {
  position: absolute;
  top: 15px;
  padding: 0 10px;
  width: calc(100% - 20px);
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  color: #FFFFFF;
  transition: transform 0.3s ease;
  text-align: justify;
}

.zk-project-content1 ul li img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.zk-project-content2 {
  /* height: 766px; */
  background-image: url(../image/project/zk-project-content2-back.png);
  overflow: hidden;
  color: #fff;
}

.zk-project-content2 .zk-content-title {
  color: #fff;
}

.zk-project-content2 ul {
  max-height: 577px;
  display: flex;
  justify-content: center;
}

.zk-project-content2 ul li {
  position: relative;
  width: 33vw;
  /* min-width: 320px;
  max-height: 580px; */
  overflow: hidden;
  transition: all 0.3s;
}

.zk-project-content2 ul li .background {
  width: 100%;
  height: 100%;
}


.zk-project-content2 ul li .top {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  width: 100%;
  transition: all 0.3s;
}


.zk-project-content2 ul li::after {
  transition: all 0.3s;
}

.zk-project-content2 ul li:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #7AC143 0%, rgba(122, 193, 67, 0.8) 10%);
}

.zk-project-content2 ul li .bottom {
  position: absolute;
  bottom: 0;
  left: 24px;
  z-index: 3;
  width: 80%;
  transition: all 0.3s;
  opacity: 0;
  padding-top: 45px;
}

.zk-project-content2 ul li .bottom::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 4px;
  background-color: #fff;
}

.zk-project-content2 ul li:hover .bottom {
  opacity: 1;
  bottom: 24px;

}


.zk-project-content3 {
  height: 693px;
  overflow: hidden;
}

.zk-project-content3 .zk-content-title {
  margin-top: calc(80px - 45px);
}


.zk-project-content3 .zk-mini-program {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 75%;
  height: calc(100% - 91px);
  margin: 0 auto;
  overflow: hidden;
}

.zk-project-content3 .zk-mini-program .phone {
  position: relative;
  display: flex;
  top: 30px;
  width: 616px;
  /* margin-right: 90px; */
}

.zk-project-content3 .zk-mini-program .phone img:last-child {
  margin-top: 40px;
}

.zk-project-content3 .zk-mini-program .qr-code-box {
  padding: 95px 0 0 75px;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #333333;
}

.zk-project-content3 .zk-mini-program .qr-code-box .qr-code {
  margin-top: 32px;
  width: 200px;
  text-align: center;
  float: left;
  margin-right: 20px;
}

.zk-project-content3 .zk-mini-program .qr-code-box .qr-code img {
  margin-bottom: 24px;
  width: 100%;
}

.zk-project-content3 .zk-mini-program .qr-code-box .qr-code img.app {
  width: 220px;
  margin: -10px 0 14px 0;
}

#zk-project-content4 {
  background: #1d2029;
}

@media screen and (max-width: 1750px) {

  .zk-project-content2 ul li:hover .top {
    transform: translateY(-208px);
  }

}

@media screen and (max-width: 1600px) {

  .zk-project-content2 ul li:hover .top {
    transform: translateY(-208px);
  }

}