.list-container {
  margin-top: 60px;
}
.list-container .list-con {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.list-container .list-left {
  width: 770px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.list-container .list-right {
  width: 370px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.list-container .list-wrap {
  position: relative;
}
.list-container .list-item {
  position: relative;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.0784313725);
  margin-bottom: 30px;
}
.list-container .list-item::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 99;
  background: #275293;
}
.list-container .list-item:hover::after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.list-container .list-item.no-img .list-item-img {
  display: none;
}
.list-container .list-item.full-img .list-item-img {
  width: 100%;
  height: 456.25px;
}
.list-container .list-item .list-item-img {
  width: 256px;
  height: 160px;
  background: url("/2007270/images/topbg.jpg") no-repeat;
  background-position: center center;
  -o-background-size: cover;
     background-size: cover;
}

.list-container .list-item .list-item-imgs{
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}
.list-container .list-item .list-item-imgs .list-item-img{
  margin-right: 30px;
  background-repeat: no-repeat;
  background-position: center center;
  -o-background-size: cover;
     background-size: cover;
     float: left;
}
.list-container .list-item .list-item-imgs .list-item-img:last-child{
  margin-right: 0!important;
}
.list-container .list-item .list-item-imgs .list-item-img.full{
  width: 100%;
  height: 456.25px;
}
.list-container .list-item .list-item-imgs .list-item-img.half{
  width: 350px;
  height: 218.75px;
}
.list-container .list-item .list-item-imgs .list-item-img.three{
  width: 223px;
  height: 139.58px;
}

.list-container .list-item .list-item-txt {
  padding: 20px;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.list-container .list-item .list-item-txt .lit-title {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #2C2D3F;
  font-size: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
}
.list-container .list-item .list-item-txt .lit-des {
  font-weight: 400;
  text-transform: capitalize;
  font-size: 13px;
  letter-spacing: 0px;
  line-height: 23px;
  margin: 4px 0 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #3e3e3e;
}

.jOrgChart .node {
  background-color: #275293;
}

.organ a,
.node a {
  color: #fff !important;
}

.orgChart {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.bg-gradient-color {
  background: -webkit-linear-gradient(45deg, #0E90D5, #3032A2) !important;
  background: -moz-linear-gradient(45deg, #0E90D5, #3032A2) !important;
  background: -o-linear-gradient(45deg, #0E90D5, #3032A2) !important;
  background: linear-gradient(45deg, #0E90D5, #3032A2) !important;
}

.intro-con {
  background: #fff;
  padding: 30px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  color: rgb(62, 62, 62);
}
.intro-con .intro-con-title {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.intro-con .intro-con-txt {
  line-height: 26px;
  font-size: 16px;
}
.intro-con .intro-con-code {
  margin-top: 20px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intro-con .intro-con-code .qrcode-text {
  margin-top: 5px;
  font-size: 12.5px;
  color: #7b7a7a;
}

.represent-list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px;
}
.represent-list .represent-list-item {
  position: relative;
  background: #f6f6f6;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 700ms ease-out 0s;
  -o-transition: all 700ms ease-out 0s;
  -moz-transition: all 700ms ease-out 0s;
  transition: all 700ms ease-out 0s;
  width: 170px;
  cursor: pointer;
}
.represent-list .represent-list-item .rli2-img {
  height: 250px;
  overflow: hidden;
  -webkit-transition: all 500ms ease-out 0s;
  -o-transition: all 500ms ease-out 0s;
  -moz-transition: all 500ms ease-out 0s;
  transition: all 500ms ease-out 0s;
  border-radius: 8px 0px 0 40px;
  -o-background-size: cover;
     background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.represent-list .represent-list-item .rli2-info {
  padding: 20px;
  text-align: center;
}
.represent-list .represent-list-item .rli2-info .rli2-info-name {
  font-size: 22px;
  line-height: 32px;
  color: #000;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.represent-list .represent-list-item .rli2-info .rli2-info-from {
  color: #0c59db;
  font-size: 15px;
  line-height: 25px;
  font-weight: bold;
  -webkit-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  -moz-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;
}
.represent-list .represent-list-item::before {
  content: "";
  position: absolute;
  height: 70px;
  width: 80px;
  background: -webkit-linear-gradient(110deg, #0E90D5, #3032A2) !important;
  background: -moz-linear-gradient(110deg, #0E90D5, #3032A2) !important;
  background: -o-linear-gradient(110deg, #0E90D5, #3032A2) !important;
  background: linear-gradient(-20deg, #0E90D5, #3032A2) !important;
  bottom: -30px;
  left: -50px;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 500ms;
  -o-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms;
  opacity: 0.6;
}
.represent-list .represent-list-item::after {
  position: absolute;
  content: "";
  background: -webkit-linear-gradient(45deg, #0E90D5, #3032A2) !important;
  background: -moz-linear-gradient(45deg, #0E90D5, #3032A2) !important;
  background: -o-linear-gradient(45deg, #0E90D5, #3032A2) !important;
  background: linear-gradient(45deg, #0E90D5, #3032A2) !important;
  height: 8%;
  width: 12px;
  bottom: 0;
  right: 0;
  -webkit-transition: 500ms;
  -o-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms;
  opacity: 0.6;
}
.represent-list .represent-list-item:hover {
  background: -webkit-linear-gradient(45deg, #0E90D5, #3032A2) !important;
  background: -moz-linear-gradient(45deg, #0E90D5, #3032A2) !important;
  background: -o-linear-gradient(45deg, #0E90D5, #3032A2) !important;
  background: linear-gradient(45deg, #0E90D5, #3032A2) !important;
}
.represent-list .represent-list-item:hover::before {
  -webkit-transform: rotate(135deg);
     -moz-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
       -o-transform: rotate(135deg);
          transform: rotate(135deg);
  opacity: 0;
}
.represent-list .represent-list-item:hover::after {
  opacity: 0;
}
.represent-list .represent-list-item:hover .rli2-img {
  margin-left: 10px;
}
.represent-list .represent-list-item:hover .rli2-info-name {
  color: #fff;
}
.represent-list .represent-list-item:hover .rli2-info-from {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .orgh5-tree {
    /* margin: 0.3rem; */
  }
  .orgh5-tree-line {
    padding: 0.1rem 0.15rem;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    font-size: 0.3rem;
    color: #303133;
    line-height: 22px;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .otl-img {
    width: 13px;
    margin-right: 0.1rem;
  }
  .otl-img.ro {
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .otl-txt {
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .otl-link {
    width: 15px;
  }
  .orgh5-tree-child {
    padding-left: 0.3rem;
  }
  .list-container {
    margin-top: 0.4rem;
  }
  .list-container .list-con {
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .list-container .list-con.flex-revert{
      display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
  }
  .list-container .list-left,
  .list-container .list-right {
    width: 100%;
    padding: 0;
  }
  .list-container .list-right {
    margin-top: 0.4rem;
  }
  .list-container .list-item {
    margin-bottom: 0.3rem;
  }
  .list-container .list-item .list-item-txt {
    padding: 0.2rem;
  }
  .list-container .list-item .list-item-img {
    width: 35%;
    height: 2rem;
  }
  .list-container .list-item .list-item-txt .lit-title {
    font-size: 0.3rem;
  }
  .list-container .list-item .list-item-txt .lit-des {
    font-size: 0.28rem;
  }
  .represent-list {
    gap: 3.5%;
  }
  .represent-list .represent-list-item {
    width: 31%;
    margin-bottom: 0.2rem;
  }
  .represent-list .represent-list-item .rli2-img {
    height: 3rem;
  }
  .represent-list .represent-list-item .rli2-info {
    padding: 0.3rem;
  }
  .represent-list .represent-list-item .rli2-info .rli2-info-name {
    font-size: 0.32rem;
    line-height: 1.3;
  }
  .represent-list .represent-list-item .rli2-info .rli2-info-from {
    font-size: 0.28rem;
    line-height: 1.3;
  }

  .list-container .list-item .list-item-imgs .list-item-img.full{
    width: 100%;
    height: 4.5rem;
  }
  .list-container .list-item .list-item-imgs .list-item-img.half{
    width: 48%;
    margin-right: 4%;
    height: 2.2rem;
  }
  .list-container .list-item .list-item-imgs .list-item-img.three{
    width: 31.33%;
    margin-right: 3%;
    height: 1.5rem;
  }
}