.org-box .org-item {
  margin-bottom: 30px;
  border: 1px solid #297d79;
  border-radius: 5px;
  padding: 30px 50px;
  background: #fff;
}
.org-box .org-item .org-title {
  display: inline-block;
  font-size: 30px;
  color: transparent;
  background-image: linear-gradient(to right, #1d6c73, #449890);
  background-clip: text;
  margin-bottom: 30px;
}
.org-box .org-item .org-dl {
  margin: -15px;
  display: flex;
  flex-wrap: wrap;
}
.org-box .org-item .org-dl dd {
  width: 20%;
  margin: 15px 0px;
}
.org-box .org-item .org-dl dd .list-a {
  margin: 0px 15px;
  border: 1px dashed rgba(65, 149, 142, 0.3);
  border-radius: 5px;
  border-left: 5px solid #41958e;
  display: flex;
  align-items: center;
  padding: 0px 15px;
  height: 60px;
  transition: all 0.4s ease-out;
  overflow: hidden;
}
.org-box .org-item .org-dl dd .list-a span {
  display: block;
  position: relative;
  z-index: 3;
  font-size: 18px;
  color: #449890;
  transition: all 0.4s ease-out;
}
.org-box .org-item .org-dl dd .list-a::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0px;
  bottom: 0px;
  background: url(../images/org-bg.png) no-repeat right bottom;
  background-size: auto 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-out;
  z-index: 2;
}
.org-box .org-item .org-dl dd .list-a::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0px;
  bottom: 0px;
  background: linear-gradient(to right, #449890, #1d6c73);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-out;
  z-index: 1;
}
.org-box .org-item .org-dl dd .list-a:hover {
  border-style: solid;
  border-left-color: #449890;
}
.org-box .org-item .org-dl dd .list-a:hover span {
  color: #fff;
}
.org-box .org-item .org-dl dd .list-a:hover::before, .org-box .org-item .org-dl dd .list-a:hover::after {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .org-box .org-item {
    padding: 15px;
    margin-bottom: 15px;
  }
  .org-box .org-item:last-child {
    margin-bottom: 0px;
  }
  .org-box .org-item .org-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .org-box .org-item .org-dl {
    margin: -7px;
  }
  .org-box .org-item .org-dl dd {
    width: 50%;
    margin: 7px 0px;
  }
  .org-box .org-item .org-dl dd .list-a {
    margin: 0px 7px;
    height: 50px;
    line-height: 20px;
  }
  .org-box .org-item .org-dl dd .list-a span {
    font-size: 14px;
  }
}