.home_scoped .max-width {
  max-width: 1300px;
  margin: 0 auto;
}
.home_scoped .button-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: none;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
  animation: scroll-tip 1s ease infinite alternate;
}
.home_scoped .button-scroll img {
  width: 16px;
}
@media screen and (max-width: 750px) {
  .home_scoped .button-scroll {
    display: flex;
  }
}
@keyframes scroll-tip {
  from {
    transform: translateX(-50%) translateY(0);
  }
  to {
    transform: translateX(-50%) translateY(10px);
  }
}
.home_scoped #videoWrap {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: 100;
  transition: height 0.5s linear;
}
@media (max-width: 1100px) {
  .home_scoped #videoWrap {
    display: none;
  }
}
.home_scoped #videoWrap .button-scroll {
  display: flex;
}
.home_scoped #videoWrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_scoped #videoWrap .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  z-index: 1;
  transition: all 0.2s linear;
}
.home_scoped .banner {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.home_scoped .banner #homeSwiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.home_scoped .banner #homeSwiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.home_scoped .banner #homeSwiper .swiper-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_scoped .banner #homeSwiper .button-next,
.home_scoped .banner #homeSwiper .button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .home_scoped .banner #homeSwiper .button-next,
  .home_scoped .banner #homeSwiper .button-prev {
    display: none;
  }
}
.home_scoped .banner #homeSwiper .button-next:hover,
.home_scoped .banner #homeSwiper .button-prev:hover {
  background-color: #3C80B8;
}
.home_scoped .banner #homeSwiper .button-next img,
.home_scoped .banner #homeSwiper .button-prev img {
  width: 25px;
  height: 25px;
}
.home_scoped .banner #homeSwiper .button-next {
  right: 150px;
}
.home_scoped .banner #homeSwiper .button-next img {
  transform: rotate(-90deg);
}
.home_scoped .banner #homeSwiper .button-prev {
  left: 150px;
}
.home_scoped .banner #homeSwiper .button-prev img {
  transform: rotate(90deg);
}
@media screen and (max-width: 750px) {
  .home_scoped .banner #homeSwiper .swiper-pagination {
    display: none;
  }
}
.home_scoped .banner #homeSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.home_scoped .banner #homeSwiper .swiper-pagination-bullet-active {
  background-color: #69C3B2;
  width: 16px;
  height: 16px;
  transition: all 0.2s linear;
  opacity: 1;
}
.home_scoped .banner .banner_content_right,
.home_scoped .banner .banner_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  width: 55%;
  max-width: 1000px;
}
.home_scoped .banner .banner_title {
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .home_scoped .banner .banner_title {
    font-size: 22px;
  }
}
.home_scoped .banner .banner_subtitle {
  font-size: 48px;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 750px) {
  .home_scoped .banner .banner_subtitle {
    font-size: 30px;
  }
}
.home_scoped .jump-wrap {
  background: url(https://img.cddc2021.com/static/home/img/h_notice_bg.png) left 102% no-repeat;
  background-size: 100% auto;
  background-position: bottom;
  padding: 0 50px;
  background-color: #FFF;
}
@media (max-width: 750px) {
  .home_scoped .jump-wrap {
    padding: 0 20px;
    background-color: #FFF;
    background-position: top;
  }
}
.home_scoped .jump-wrap-inner {
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 650px) {
  .home_scoped .jump-wrap-inner {
    padding: 90px 0 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.home_scoped .jump-wrap-inner div {
  overflow: hidden;
  width: 100%;
  line-height: 0;
  display: block;
}
.home_scoped .jump-wrap-inner div a {
  width: 100%;
}
.home_scoped .jump-wrap-inner div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_scoped .four-wrap {
  background-color: #F4F5F7;
  padding: 0 50px;
}
@media (max-width: 750px) {
  .home_scoped .four-wrap {
    padding: 0 20px;
  }
}
.home_scoped .four-wrap-inner {
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 650px) {
  .home_scoped .four-wrap-inner {
    padding: 40px 0;
    grid-template-columns: repeat(1, 1fr);
  }
}
.home_scoped .four-wrap-inner div {
  overflow: hidden;
  width: 100%;
  line-height: 0;
  display: block;
}
.home_scoped .four-wrap-inner div a {
  width: 100%;
}
.home_scoped .four-wrap-inner div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_scoped .news {
  padding: 0 50px;
  background-color: #FFF;
}
@media (max-width: 750px) {
  .home_scoped .news {
    padding: 0 20px;
  }
}
.home_scoped .news-inner {
  padding: 80px 0;
}
@media (max-width: 750px) {
  .home_scoped .news-inner {
    padding: 40px 0 0;
  }
}
.home_scoped .news-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
@media (max-width: 750px) {
  .home_scoped .news-top {
    justify-content: center;
    flex-direction: column;
  }
}
.home_scoped .news-top-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home_scoped .news-top-left h3 {
  font-size: 32px;
  font-weight: bold;
  color: #222;
}
.home_scoped .news-top-left p {
  font-size: 18px;
  color: #8b8b8b;
}
@media (max-width: 750px) {
  .home_scoped .news-top-left {
    align-items: center;
    gap: 5px;
  }
  .home_scoped .news-top-left h3 {
    font-size: 20px;
  }
  .home_scoped .news-top-left p {
    font-size: 14px;
  }
  .home_scoped .news-top-left p:after {
    content: '';
    display: block;
    width: 20px;
    margin: 5px auto 0;
    height: 3px;
    background-color: #3176ad;
  }
}
.home_scoped .news-top-right {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
@media (max-width: 750px) {
  .home_scoped .news-top-right {
    gap: 5px;
  }
}
.home_scoped .news-top-right a {
  font-size: 16px;
  padding: 5px 10px;
  color: #8b8b8b;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 750px) {
  .home_scoped .news-top-right a {
    font-size: 14px;
    padding: 2px 5px;
  }
  .home_scoped .news-top-right a:last-child {
    display: none;
  }
}
.home_scoped .news-top-right a:not(:last-child):hover,
.home_scoped .news-top-right a:not(:last-child).active {
  background-color: #3176ad;
  color: #FFF;
}
.home_scoped .news-top-right a:last-child {
  font-size: 14px;
}
.home_scoped .news-top-right #news_href {
  padding-right: 0;
}
.home_scoped .news-list {
  padding-top: 40px;
}
@media (max-width: 750px) {
  .home_scoped .news-list #news-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
}
.home_scoped .news-list .new-item {
  border-bottom: 4px solid;
  border-color: transparent;
}
.home_scoped .news-list .new-item a {
  width: 100%;
}
.home_scoped .news-list .new-item_img {
  padding-bottom: 78%;
  position: relative;
  overflow: hidden;
}
.home_scoped .news-list .new-item_img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s linear;
}
.home_scoped .news-list .new-item_img span {
  position: absolute;
  bottom: 5px;
  left: 5px;
  font-size: 14px;
  color: #fff;
  z-index: 1;
}
.home_scoped .news-list .new-item_img span b {
  font-size: 22px;
  margin-right: 3px;
}
.home_scoped .news-list .new-item .news-info {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home_scoped .news-list .new-item .news-info h5 {
  font-size: 18px;
  color: #222;
  font-weight: bolder;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: normal;
  line-height: 1.4;
  height: 2.8em;
  text-align: justify;
  word-break: break-all;
  transition: all 0.5s linear;
}
.home_scoped .news-list .new-item .news-info p {
  font-size: 16px;
  color: #585858;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: normal;
  line-height: 1.2;
  height: 2.4em;
  text-align: justify;
  word-break: break-all;
}
.home_scoped .news-list .new-item .news-info span {
  color: #3c80b8;
  font-size: 14px;
}
@media (max-width: 750px) {
  .home_scoped .news-list .new-item .news-info {
    gap: 0px;
    padding-top: 5px;
    padding-bottom: 0;
  }
  .home_scoped .news-list .new-item .news-info h5 {
    -webkit-line-clamp: 2;
    line-height: 1.4;
    height: auto;
    font-weight: normal;
    font-size: 15px;
  }
  .home_scoped .news-list .new-item .news-info span {
    margin-top: 5px;
  }
}
.home_scoped .news-list .new-item:hover {
  transition: all 0.5s linear;
  border-color: #3176ad;
}
.home_scoped .news-list .new-item:hover .new-item_img img {
  transform: scale(1.2);
}
.home_scoped .news-list .new-item:hover .news-info h5 {
  color: #3176ad;
}
@media (max-width: 750px) {
  .home_scoped .news-list .new-item:not(:first-child) .new-item_img {
    display: none;
  }
  .home_scoped .news-list .new-item:first-child .news-info h5 {
    white-space: nowrap;
    -webkit-line-clamp: 1;
    line-height: 1.4;
    height: auto;
    font-weight: bolder;
    padding-bottom: 10px;
  }
  .home_scoped .news-list .new-item:first-child .news-info span {
    display: none;
  }
}
.home_scoped .news-list .new-item_line {
  width: 100%;
  height: 3px;
  background: rgba(105, 195, 178, 0.5);
  margin-top: 10px;
  margin-bottom: 20px;
}
.home_scoped .important {
  background-color: #3176ad;
  padding: 0 50px;
}
@media (max-width: 750px) {
  .home_scoped .important {
    padding: 0 20px;
  }
}
.home_scoped .important-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .home_scoped .important-top {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
  }
}
.home_scoped .important-top-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #FFF;
}
.home_scoped .important-top-left h3 {
  font-size: 32px;
  font-weight: bold;
}
.home_scoped .important-top-left p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}
.home_scoped .important-top-left p:after {
  content: '';
  display: block;
  width: 60px;
  margin: 10px 0 0;
  height: 3px;
  background-color: #fff;
}
@media (max-width: 750px) {
  .home_scoped .important-top-left {
    align-items: center;
    gap: 5px;
  }
  .home_scoped .important-top-left h3 {
    font-size: 20px;
  }
  .home_scoped .important-top-left p {
    font-size: 14px;
  }
  .home_scoped .important-top-left p:after {
    background-color: #69C3B2;
    width: 20px;
    margin: 5px auto 0;
  }
}
.home_scoped .important-top-right {
  font-size: 14px;
}
@media (max-width: 750px) {
  .home_scoped .important-top-right {
    display: none;
  }
}
.home_scoped .important-inner {
  padding: 80px 0;
}
@media (max-width: 750px) {
  .home_scoped .important-inner {
    padding: 40px 0;
  }
}
.home_scoped .important .phone-accordion {
  display: none;
}
.home_scoped .important .phone-accordion .tabs {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 25px;
}
.home_scoped .important .phone-accordion .tabs .tab-item {
  padding-top: 100%;
  position: relative;
}
.home_scoped .important .phone-accordion .tabs .tab-item div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}
.home_scoped .important .phone-accordion .tabs .active {
  background-image: linear-gradient(-90deg, #3282b7 0%, #69c3b2 100%);
}
.home_scoped .important .phone-accordion .tab-item-line {
  width: 100%;
  height: 2px;
  border-bottom: 1px solid #FFF;
  margin: 20px 0;
  position: relative;
}
.home_scoped .important .phone-accordion .tab-item-line::after {
  content: '';
  width: 33.33%;
  height: 4px;
  background-color: #63cab8;
  position: absolute;
  bottom: -1px;
  transition: all 0.3s ease;
  transform: translateX(var(--tab-left));
  transform-origin: right;
}
.home_scoped .important .phone-accordion .swiper-inner {
  width: 100%;
  overflow: hidden;
}
.home_scoped .important .phone-accordion .swiper-inner .inner {
  position: relative;
  height: 360px;
  transition: all 0.3s ease;
}
.home_scoped .important .phone-accordion .swiper-inner .inner .inner-wrap {
  height: 360px;
  width: 100%;
  position: absolute;
  padding: 20px 10px;
  box-sizing: border-box;
  background-color: #FFF;
}
.home_scoped .important .phone-accordion .swiper-inner .inner .inner-wrap:nth-child(2) {
  transform: translateX(100%);
}
.home_scoped .important .phone-accordion .swiper-inner .inner .inner-wrap:nth-child(3) {
  transform: translateX(200%);
}
.home_scoped .important .phone-accordion .swiper-inner .inner .inner-wrap .list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}
.home_scoped .important .phone-accordion .swiper-inner .inner .inner-wrap .list .list-header {
  background-color: #f9f9f9;
  color: #666;
  padding: 10px;
}
.home_scoped .important .phone-accordion .swiper-inner .inner .inner-wrap .list .list-row {
  flex: 1;
  overflow: scroll;
  color: #222222;
  font-size: 13px;
}
.home_scoped .important .phone-accordion .swiper-inner .inner .inner-wrap .list .list-row a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 10px;
  display: block;
  border-bottom: 1px solid #f9f9f9;
}
.home_scoped .important .phone-accordion .swiper-inner .inner .inner-wrap .list .list-row a:hover {
  background-color: #f9f9f9;
}
@media (max-width: 750px) {
  .home_scoped .important {
    padding-top: 35px;
  }
  .home_scoped .important .pc-accordion {
    display: none;
  }
  .home_scoped .important .phone-accordion {
    display: block;
  }
}
.home_scoped .about {
  background-color: #fff;
  padding: 100px 50px;
}
@media (max-width: 750px) {
  .home_scoped .about {
    padding: 40px 20px;
  }
}
@media (max-width: 1050px) {
  .home_scoped .about {
    background-image: linear-gradient(to bottom, #FFF 40%, #f2f7fb 40%);
  }
}
.home_scoped .about-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .home_scoped .about-top {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    gap: 10px;
  }
}
.home_scoped .about-top-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #222;
}
.home_scoped .about-top-left h3 {
  font-size: 32px;
  font-weight: bold;
}
.home_scoped .about-top-left p {
  font-size: 18px;
  color: #8b8b8b;
}
.home_scoped .about-top-left p:after {
  content: '';
  display: block;
  width: 60px;
  margin: 10px 0 0;
  height: 3px;
  background-color: #3176ad;
}
@media (max-width: 750px) {
  .home_scoped .about-top-left {
    align-items: center;
    gap: 5px;
  }
  .home_scoped .about-top-left h3 {
    font-size: 20px;
  }
  .home_scoped .about-top-left p {
    font-size: 14px;
  }
  .home_scoped .about-top-left p:after {
    width: 20px;
    margin: 5px auto 0;
  }
}
.home_scoped .about-top-right {
  color: rgba(105, 195, 178, 0.7);
  font-size: 18px;
  font-weight: 600;
}
.home_scoped .about-top-right img {
  width: 23px;
  margin-bottom: 20px;
  margin-right: 5px;
}
@media (max-width: 750px) {
  .home_scoped .about-top-right {
    font-size: 12px;
  }
  .home_scoped .about-top-right img {
    margin-bottom: 10px;
  }
}
.home_scoped .about-bottom {
  min-height: 520px;
  position: relative;
}
.home_scoped .about-bottom-bg {
  min-height: 520px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1050px) {
  .home_scoped .about-bottom-bg {
    display: none;
  }
}
.home_scoped .about-bottom-bg::before {
  content: '';
  display: block;
  width: 15%;
  height: 80%;
  background-color: #69C3B2;
  transform: translateX(-20px);
  box-shadow: 20px 0 0px 0px #69C3B2;
  margin-top: 40px;
}
.home_scoped .about-bottom-bg::after {
  content: '';
  display: block;
  width: 85%;
  height: 100%;
  background: #F2F7FC;
  flex-shrink: 0;
}
.home_scoped .about-bottom-content {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: center;
}
@media (max-width: 1050px) {
  .home_scoped .about-bottom-content {
    flex-direction: column;
    align-items: unset;
  }
}
.home_scoped .about-bottom-content-left {
  width: 555px;
  height: 428px;
}
@media (max-width: 1050px) {
  .home_scoped .about-bottom-content-left {
    width: 100%;
    height: 270px;
  }
}
.home_scoped .about-bottom-content-left .swiper-container {
  width: 100%;
  height: 100%;
}
.home_scoped .about-bottom-content-left .about-swiper-slide {
  width: 100%;
  height: 100%;
}
.home_scoped .about-bottom-content-left .about-swiper-slide a {
  height: 100%;
  width: 100%;
}
.home_scoped .about-bottom-content-left .about-swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home_scoped .about-bottom-content-left .about-swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.home_scoped .about-bottom-content-left .about-swiper-slide .play-btn {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.home_scoped .about-bottom-content-right {
  flex: 1;
  min-height: 520px;
  padding: 50px 50px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1050px) {
  .home_scoped .about-bottom-content-right {
    padding: 25px 0;
  }
  .home_scoped .about-bottom-content-right .more {
    margin: 0 auto;
  }
}
.home_scoped .about-bottom-content-right .info-top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #222222;
}
@media (max-width: 1050px) {
  .home_scoped .about-bottom-content-right .info-top {
    text-align: center;
  }
}
.home_scoped .about-bottom-content-right .info-top h3 {
  font-weight: 600;
  font-size: 28px;
}
@media (max-width: 1050px) {
  .home_scoped .about-bottom-content-right .info-top h3 {
    font-size: 18px;
  }
}
.home_scoped .about-bottom-content-right .info-top p {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
}
.home_scoped .about-bottom-content-right .info-top p span {
  color: #3176ad;
}
@media (max-width: 1050px) {
  .home_scoped .about-bottom-content-right .info-top p {
    font-size: 13px;
    line-height: 26px;
  }
}
.home_scoped .about-bottom-content-right .info-count {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1300px) {
  .home_scoped .about-bottom-content-right .info-count {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
  }
}
.home_scoped .about-bottom-content-right .info-count div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home_scoped .about-bottom-content-right .info-count div p {
  font-weight: 400;
  font-size: 16px;
  color: #222;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
@media (max-width: 1050px) {
  .home_scoped .about-bottom-content-right .info-count div p {
    font-size: 13px;
  }
}
.home_scoped .about-bottom-content-right .info-count div strong {
  font-weight: 500;
  font-size: 44px;
  color: #222222;
}
@media (max-width: 1050px) {
  .home_scoped .about-bottom-content-right .info-count div strong {
    font-size: 36px;
  }
}
.home_scoped .about-bottom-content-right .info-count div .des {
  color: #585858;
}
.breadcrumb {
  color: #222222;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 1100px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb li:not(:first-child)::before {
  content: '>';
  display: inline-block;
  margin: 0 4px;
}
.breadcrumb li a {
  color: #222222;
}
.breadcrumb li a:hover {
  color: #63cab8;
}
.breadcrumb2 {
  position: absolute;
  top: -35px;
  left: 0;
}
