.org-list-g {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.org-list-title {
  width: 100px;
  color: rgba(30, 107, 194, 1);
  font-size: 18px;
  display: flex;
  line-height: 24px;
  justify-content: center;
}

.org-list-body {
  width: calc(100% - 100px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.org-list-body-inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.org-list-g-v:last-child {
  border-bottom: 0;
  margin-top: 30px;
}

.org-list-g-v {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #E8E8E8;
  margin-top: 10px;
}

.org-list-list {
  margin-left: 30px;
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
  color: #333333;
  margin-bottom: 30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  position: relative;
}

.org-list-list:hover {
  color: rgba(30, 107, 194, 1);
}

.org-list-list-more {
  width: 300px;
  box-sizing: border-box;
  padding: 0 20px;
  left: 50%;
  top: calc(100% + 10px);
  margin-left: -150px;
  position: absolute;
  background: #FFFFFF;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0px 2px 14px 0px rgba(30, 107, 194, 0.14);
  display: none;
  transform-origin: center top;
  -webkit-transform-origin: center top;
  opacity: 0;
  transform: scale(0);
}

.org-list-list-more::before {
  content: '';
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  margin-left: -10px;
  top: -10px;
  left: 50%;
}

.org-list-list:hover .org-list-list-more {
  animation: open 0.5s forwards;
  display: flex;
}

@keyframes open {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.org-list-list-more-list {
  width: 40%;
  color: #333333;
  margin: 10px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  display: inline-block;
  box-sizing: border-box;
}

.org-list-list-more-list:hover {
  color: rgba(30, 107, 194, 1);
}

.modal-g {
  margin-top: 50px;
}

.modal-g-t {
  width: 100%;
  color: rgba(51, 51, 51, 1);
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 50px;
  background: rgba(241, 241, 241, 1);
}

.modal-g-body {
  margin-bottom: 30px;
}

.modal-g-t-icon.icon-1 {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin: 0 10px 0 20px;
  background: url('../../static/org/icon-1.png') center center no-repeat;
  background-size: auto 100%;
}


.modal-g-t-icon.icon-2 {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin: 0 10px 0 20px;
  background: url('../../static/org/icon-2.png') center center no-repeat;
  background-size: auto 100%;
}

.table-g {
  width: 100%;
  overflow-x: auto;
}

.org-table-t {
  background: rgba(30, 107, 194, 1);
  height: 50px;
  width: 100%;
  min-width: 880px;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  padding: 0 10px;
}

.org-table-t div {
  width: 10%;
  text-align: center;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
}

.org-table-t div:nth-child(6),
.org-table-t div:nth-child(7) {
  width: 20%;
}

.org-table-b-list {
  display: flex;
  flex-direction: row;
  width: 100%;
  position: relative;
}

.org-table-b-list::after {
  width: calc(100% + 20px);
  left: -10px;
  bottom: 0;
  position: absolute;
  height: 1px;
  content: '';
  background: rgba(220, 229, 236, 1);
}

.org-table-b-list div {
  width: 10%;
  text-align: center;
  line-height: 50px;
  font-size: 14px;
  color: rgba(51, 51, 51, 1);
  text-align: center;

}

.org-table-b-list div:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-table-b-list div span {
  display: inline-block;
  width: 100%;
}

.org-table-b-list div:nth-child(6),
.org-table-b-list div:nth-child(7) {
  width: 20%;
}

.org-table-b {
  width: 100%;
  background: rgba(244, 247, 249, 1);
  min-width: 880px;
  box-sizing: border-box;
  padding: 0 10px;
  position: relative;
}


.org-table-b::before {
  width: 1px;
  left: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
  content: '';
  background: rgba(220, 229, 236, 1);
}


.org-table-b::after {
  width: 1px;
  right: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
  content: '';
  background: rgba(220, 229, 236, 1);
}

