#jpxm {
  padding-top: 100px;
}
#jpxm .des {
  margin: 0 0 15px;
  text-indent: 2em;
}
#jpxm .projectlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
}
#jpxm .projectlist li {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}
#jpxm .projectlist li .i {
  position: relative;
  overflow: hidden;
}
#jpxm .projectlist li .i img {
  width: 100%;
  height: 183px;
  transition: all 0.6s;
}
#jpxm .projectlist li .i .detail_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.5s;
}
#jpxm .projectlist li .i .detail_box .cont {
  position: relative;
  line-height: 110px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  transition: all 0.6s;
}
#jpxm .projectlist li .i .detail_box .cont .projectname {
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  width: 210px;
  padding: 0;
  margin: 0;
}
#jpxm .projectlist li .i .detail_box .cont span,
#jpxm .projectlist li .i .detail_box .cont em {
  position: absolute;
  display: block;
  width: 120%;
  height: 110px;
  font-size: 14px;
  top: 40px;
  white-space: unset !important;
  transform: translate(-9%, -30%);
}
#jpxm .projectlist li .i .detail_box .cont span::before,
#jpxm .projectlist li .i .detail_box .cont span::after,
#jpxm .projectlist li .i .detail_box .cont em::before,
#jpxm .projectlist li .i .detail_box .cont em::after {
  content: '';
  display: block;
  width: 1px;
  height: 1px;
  background: #fff;
  position: absolute;
  opacity: 0;
  animation-delay: 0.2s;
}
#jpxm .projectlist li .txt {
  padding: 20px;
  text-align: center;
}
#jpxm .projectlist li .txt h2 {
  font-size: 15px;
  color: #384395;
  margin-bottom: 10px;
}
#jpxm .projectlist li .txt p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 4px;
  text-indent: unset;
}
#jpxm .projectlist li .txt .more_btn {
  font-size: 16px;
  color: #254483;
  cursor: pointer;
  margin-top: 20px;
  display: block;
}
#jpxm .projectlist li:hover {
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}
#jpxm .projectlist li:hover .i img {
  transform: scale(1.05, 1.05);
}
#jpxm .projectlist li:hover .i .detail_box {
  opacity: 1;
}
#jpxm .projectlist li:hover .i .detail_box .cont span::before {
  animation: jtLeft linear 1s forwards;
  top: 0;
}
#jpxm .projectlist li:hover .i .detail_box .cont span::after {
  animation: jtRight linear 1s forwards;
  bottom: 0;
}
#jpxm .projectlist li:hover .i .detail_box .cont em::before {
  animation: jtTop linear 1s forwards;
  left: 0;
}
#jpxm .projectlist li:hover .i .detail_box .cont em::after {
  animation: jtBottom linear 1s forwards;
  right: 0;
}
#jpxm .eldialog {
  border-radius: 10px;
}
#jpxm .modalbox {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  z-index: 13;
  display: flex;
  justify-content: space-between;
}
#jpxm .modalbox .l_cont {
  width: 60%;
}
#jpxm .modalbox .l_cont img {
  width: 100%;
}
#jpxm .modalbox .r_cont {
  width: 38%;
}
#jpxm .modalbox .r_cont .tle {
  padding: 20px 0;
  border-bottom: 2px solid #e7e7e7;
  font-size: 30px;
  font-weight: bold;
  color: #333333;
  margin-top: 20px;
}
#jpxm .modalbox .r_cont .tis_deta {
  margin-bottom: 10px;
  margin-top: 30px;
}
#jpxm .modalbox .r_cont .tis_deta p {
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  text-indent: unset;
  text-align: justify;
}
#jpxm .modalbox .r_cont .bit_more {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
#jpxm .modalbox .r_cont .bit_more .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  background: #dfdfdf;
  border-radius: 100px;
  margin: 0 20px;
  font-size: 16px;
  color: #333333;
}
@keyframes jtLeft {
  0% {
    opacity: 0;
    width: 0;
    left: -50%;
  }
  50% {
    opacity: 1;
    width: calc(100% + 0px);
    left: 0;
  }
  100% {
    opacity: 0;
    width: 50%;
    left: 100%;
  }
}
@keyframes jtRight {
  0% {
    opacity: 0;
    width: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
    width: calc(100% + 0px);
    right: 0;
  }
  100% {
    opacity: 0;
    width: 50%;
    right: 100%;
  }
}
@keyframes jtTop {
  0% {
    opacity: 0;
    height: 0;
    top: -50%;
  }
  50% {
    opacity: 1;
    height: calc(100% + 0px);
    top: 0;
  }
  100% {
    opacity: 0;
    height: 50%;
    top: 100%;
  }
}
@keyframes jtBottom {
  0% {
    opacity: 0;
    height: 0;
    bottom: -50%;
  }
  50% {
    opacity: 1;
    height: calc(100% + 0px);
    bottom: 0;
  }
  100% {
    opacity: 0;
    height: 50%;
    bottom: 100%;
  }
}
