.home1_list {
  display: flex;
  justify-content: space-between;
  margin: 80px 0;
}
.home1_item {
  width: 255px;
  height: 322px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(230, 230, 230, 1);
  box-sizing: border-box;
  padding: 40px 20px 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.home1_circular {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #11316c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.home1_cir_icon {
  width: 42px;
  height: 42px;
}
.home1_cir_icon .cls-1 {
  fill: #fff;
}

.home1_item h4 {
  font-size: 24px;
  color: #11316c;
  margin-top: 38px;
  margin-bottom: 15px;
}
.home1_item p {
  font-size: 14px;
  color: #8d8d8d;
  width: 216px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 20px;
}
.home1_item a {
  display: block;
  width: 100px;
  height: 32px;
  border: 1px solid #ef1d40;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all 0.4s ease;
  position: relative;
}
.home1_item a span {
  font-size: 14px;
  color: #ef1d40;
}

.home1_item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-right: 1px solid #ef1d40;
  border-bottom: 1px solid #ef1d40;
  width: 0;
  height: 0;
  transition: all 0.4s ease-out 0s;
  visibility: hidden;
  box-sizing: border-box;
  z-index: -1;
}
.home1_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-top: 1px solid #ef1d40;
  border-left: 1px solid #ef1d40;
  width: 0;
  height: 0;
  transition: all 0.4s ease-out 0s;
  visibility: hidden;
  box-sizing: border-box;
  z-index: -1;
}
.home1_item:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  transition: all 1s ease !important;
}
.home1_item:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  transition: all 1s ease !important;
}

.home1_item:hover {
  transition: all 1s ease !important;
  transition-delay: 0.8s !important;
  background-color: #ef1d40;
}
.home1_item:hover a {
  transition-delay: 0.8s !important;
  border: 1px solid #fff;
}
.home1_item:hover .home1_circular {
  transition-delay: 0.8s !important;
  background-color: #fff;
}

.home1_item:hover h4 {
  transition-delay: 0.8s !important;
  color: #ffffff;
}
.home1_item:hover p {
  transition-delay: 0.8s !important;
  color: #ffffff;
}

.home1_item:hover a span {
  transition-delay: 0.8s !important;
  color: #ffffff;
}
.home1_item:hover .home1_cir_icon .cls-1 {
  transition-delay: 0.8s !important;
  fill: #ef1d40;
}
.home1_item:hover .home1_cir_icon {
  animation: rot 0.5s;
}

@keyframes rot {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
}

/* 2 */
.home2 {
  background-color: #f5f5f5;
  margin-bottom: 80px;
}
.home2_box {
  display: flex;
}
.home2_text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home2_img {
  width: 429px;
  height: 365px;
  flex-shrink: 0;
}
.home2_text h3 {
  font-size: 24px;
  color: #11316c;
}
.home2_text p {
  width: 520px;
  font-size: 14px;
  color: #8d8d8d;
  line-height: 2em;
  margin: 35px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.home2 .card_btn:hover {
  background-color: #ef1d40;
  color: #ffffff;
}
.home2 .card_btn:hover span {
  color: #ffffff;
}
.home2 .card_btn:hover .card_icon .cls-1 {
  fill: #ffffff;
}
/* 3 */
.home3 {
  margin-bottom: 80px;
}
.home3_tab {
  display: flex;
  justify-content: space-between;
}
.home3_item {
  width: 560px;
  height: 214px;
  border: 1px solid rgba(230, 230, 230, 1);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  padding: 30px;
  position: relative;
}
.home3_item h3 {
  font-size: 24px;
  color: #11316c;
}
.home3_item p {
  font-size: 14px;
  color: #8d8d8d;
  line-height: 2em;
  width: 490px;
  margin: 20px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home3_item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-right: 1px solid #ef1d40;
  border-bottom: 1px solid #ef1d40;
  width: 0;
  height: 0;
  transition: all 0.4s ease-out 0s;
  visibility: hidden;
  box-sizing: border-box;
  z-index: -1;
}
.home3_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-top: 1px solid #ef1d40;
  border-left: 1px solid #ef1d40;
  width: 0;
  height: 0;
  transition: all 0.4s ease-out 0s;
  visibility: hidden;
  box-sizing: border-box;
  z-index: -1;
}
.home3_item:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  transition: all 1s ease !important;
}
.home3_item:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  transition: all 1s ease !important;
}
.home3_item:hover {
  transition: all 1s ease !important;
  transition-delay: 0.8s !important;
  background-color: #ef1d40;
}
.home3_item:hover .card_btn {
  transition-delay: 0.8s !important;

  border: 1px solid #fff;
}

.home3_item:hover .card_icon .cls-1 {
  transition-delay: 0.8s !important;

  fill: #ffffff;
}
.home3_item:hover h3 {
  transition-delay: 0.8s !important;

  color: #ffffff;
}
.home3_item:hover p {
  transition-delay: 0.8s !important;

  color: #ffffff;
}
.home3_item:hover span {
  transition-delay: 0.8s !important;

  color: #ffffff;
}

/* 4 */

/* 5 */
.home5_item svg {
  width: 42px;
  height: 38px;
  margin-right: 10px;
}
.home5_list {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
  margin-bottom: 80px;
}
.home5_item {
  width: 255px;
  height: 100px;
  border: 1px solid rgba(230, 230, 230, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home5_item h4 {
  font-size: 16px;
  transition: all 0.4s ease;
}
.home5_num .cls-3 {
  opacity: 0.6;
  transition: all 0.4s ease;
}

.home5_item:hover {
  transition: background-color 0.4s !important;
  transition-delay: 0.8s !important;
  background-color: #ef1d40;
}

.home5_item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-right: 1px solid #ef1d40;
  border-bottom: 1px solid #ef1d40;
  width: 0;
  height: 0;
  transition: all 0.4s ease-out 0s;
  visibility: hidden;
  box-sizing: border-box;
  z-index: -1;
}
.home5_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-top: 1px solid #ef1d40;
  border-left: 1px solid #ef1d40;
  width: 0;
  height: 0;
  transition: all 0.4s ease-out 0s;
  visibility: hidden;
  box-sizing: border-box;
  z-index: -1;
}
.home5_item:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
}
.home5_item:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
}

.home5_item:hover .home5_num .cls-3 {
  transition-delay: 0.8s !important;
  fill: #fff;
  opacity: 1;
}
.home5_item:hover h4 {
  transition-delay: 0.8s !important;

  color: #fff;
}

/* 6 */
.home6_list {
  margin-top: 50px;
  margin-bottom: 50px;
}
.home6_item img {
  width: 100%;
  height: 100%;
}
