/* CSS Document */
.topTitleBox {
  text-align: center;
  margin-bottom: 40px;
}
.topTitleBox .title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 25px;
  font-size: 35px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 640px) {
  .topTitleBox .title {
    font-size: 24px;
  }
}
.topTitleBox .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -45px;
  width: 90px;
  height: 1px;
  background-color: #f8180c;
}

.managementList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.managementList > li {
  cursor: pointer;
  position: relative;
  padding: 15px 10px 20px;
  width: 33.33%;
}
@media (max-width: 1180px) {
  .managementList > li {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .managementList > li {
    width: 100%;
  }
}
.managementList > li:before {
  content: "";
  position: absolute;
  top: calc(100% - 2px);
  left: calc(50% - 7px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 15px 0 15px;
  border-color: #fefefe transparent transparent transparent;
  z-index: 1;
  opacity: 0;
}
.managementList > li.dataShow {
  z-index: 1;
}
.managementList > li.dataShow:before {
  opacity: 1;
}
.managementList > li.dataShow .item {
  box-shadow: 2px 3px 11px 1px rgba(0, 0, 0, 0.2);
}
.managementList > li.dataShow .item:before {
  opacity: 1;
}
.managementList > li.dataShow .arrow {
  transform: rotate(180deg);
  background-color: #f8180c;
}
.managementList > li.dataShow .arrow:before {
  border-color: #fff;
}
.managementList > li.dataShow .Img:before {
  opacity: 1;
}
.managementList > li.fullBox {
  display: none;
  cursor: auto;
  width: 100%;
  margin: 0;
  padding-top: 0;
  margin-top: -1px;
}
.managementList > li.fullBox .ins {
  background-color: #eaeae8;
  box-shadow: 2px 3px 11px 1px rgba(0, 0, 0, 0.1);
}
.managementList > li.fullBox .itemContent {
  display: block;
}
.managementList > li .item {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #eee;
  background-color: #fff;
}
@media (max-width: 360px) {
  .managementList > li .item {
    flex-direction: column;
  }
}
.managementList > li .item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -58px;
  margin-top: -40px;
  width: 116px;
  height: 79px;
  background-image: url(../images/watermark.png);
  background-position: center center;
  transition: all 0.4s ease;
  opacity: 0;
}
.managementList > li .arrow {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 25px;
  height: 25px;
  border: 1px solid #f8180c;
  border-radius: 50%;
}
.managementList > li .arrow:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 34%;
  transform-origin: left bottom;
  transform: rotate(-45deg);
  width: 7px;
  height: 7px;
  border-left: 1px solid #f8180c;
  border-bottom: 1px solid #f8180c;
}
.managementList > li .Img {
  position: relative;
  width: 46%;
}
@media (max-width: 360px) {
  .managementList > li .Img {
    width: 100%;
    max-width: 190px;
    margin: 0 auto;
  }
}
.managementList > li .Img img {
  display: block;
  width: 100%;
}
.managementList > li .Txt {
  position: relative;
  padding: 25px;
  padding-right: 10px;
  width: 54%;
}
@media (max-width: 360px) {
  .managementList > li .Txt {
    width: 100%;
    text-align: center;
    padding: 10px;
  }
}
.managementList > li .Txt .top {
  margin-bottom: 10px;
  padding-bottom: 20px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  line-height: 1;
}
.managementList > li .Txt .top:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background-color: #f8180c;
}
@media (max-width: 360px) {
  .managementList > li .Txt .top {
    justify-content: center;
    padding-bottom: 10px;
  }
  .managementList > li .Txt .top:before {
    left: 50%;
    margin-left: -15px;
  }
}
.managementList > li .Txt .title {
  padding-right: 10px;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}
.managementList > li .Txt .enTitle {
  font-size: 14px;
  font-weight: 400;
  color: #464646;
  white-space: nowrap;
}
.managementList .itemContent {
  display: none;
  padding: 25px;
}
.managementList .itemContent .textBox {
  padding-bottom: 10px;
  float: left;
  width: 50%;
  display: inline-block;
  font-weight: 400;
  color: #575757;
}
@media (max-width: 640px) {
  .managementList .itemContent .textBox {
    width: 100%;
  }
}
.managementList .itemContent .title {
  font-size: 15px;
  font-weight: 700;
}