@charset "utf-8";
.c-home1 .public-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  padding-right: 20px;
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-home1 .public-btn {
    border-radius: 20px;
  }
}
.c-home1 .public-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: var(--color);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-home1 .public-btn::before {
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }
}
.c-home1 .public-btn div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .c-home1 .public-btn div {
    width: 40px;
    height: 40px;
  }
}
.c-home1 .public-btn div img,
.c-home1 .public-btn div svg {
  width: 12px;
  height: 12px;
}
.c-home1 .public-btn span {
  color: #fff;
}
.c-home1 .public-btn:hover {
  color: #fff;
}
.c-home1 .public-btn:hover::before {
  width: 100%;
}
.c-home1 .swiper-slide {
  overflow: hidden;
}
.c-home1 .swiper-slide .c-img {
  width: 100%;
  height: 100%;
}
.c-home1 .swiper-slide .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .c-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .c-box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  color: #fff;
}
@media (max-width: 767px) {
  .c-home1 .swiper-slide .c-box {
    text-align: center;
  }
}
.c-home1 .swiper-slide .c-box .c-title {
  opacity: 0;
}
.c-home1 .swiper-slide .c-box .c-title2 {
  font-size: 0.4rem;
  line-height: 1.1;
  max-width: 52%;
}
@media (max-width: 767px) {
  .c-home1 .swiper-slide .c-box .c-title2 {
    max-width: 100%;
  }
}
.c-home1 .swiper-slide .c-box .public-btn {
  margin-top: 0.5rem;
}
.c-home1 .swiper-slide .c-box2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
}
.c-home1 .swiper-slide .c-box2 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.c-home1 .swiper-slide .c-box2 .c-arrow {
  margin-left: 0.4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  color: var(--color);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-home1 .swiper-slide .c-box2 .c-arrow {
    width: 40px;
    height: 40px;
  }
}
.c-home1 .swiper-slide .c-box2 .c-arrow img,
.c-home1 .swiper-slide .c-box2 .c-arrow svg {
  width: 12px;
  height: 12px;
  transform: rotate(90deg);
}
.c-home1 .swiper-slide .c-box2 .c-arrow:hover {
  background: var(--color);
  color: #fff;
}
.c-home1 .c-pagination {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .c-home1 .c-pagination {
    top: auto;
    bottom: 100px;
  }
}
.c-home1 .c-pagination .container {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 767px) {
  .c-home1 .c-pagination .container .c-wrap {
    width: 100%;
  }
}
.c-home1 .c-pagination .container .swiper-pagination {
  position: static;
  width: auto;
}
@media (max-width: 767px) {
  .c-home1 .c-pagination .container .swiper-pagination {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.c-home1 .c-pagination .container .swiper-pagination .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 1;
  border-radius: 0;
  margin: 0 0.1rem;
  width: auto;
  height: auto;
  background: transparent;
  color: #fff;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .c-home1 .c-pagination .container .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
  }
}
.c-home1 .c-pagination .container .swiper-pagination .swiper-pagination-bullet span {
  opacity: 0;
  transition: all 0.4s;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .c-home1 .c-pagination .container .swiper-pagination .swiper-pagination-bullet span {
    display: none;
  }
}
.c-home1 .c-pagination .container .swiper-pagination .swiper-pagination-bullet div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50px;
  margin-left: 15px;
}
@media (max-width: 767px) {
  .c-home1 .c-pagination .container .swiper-pagination .swiper-pagination-bullet div {
    margin: 0;
    width: 30px;
    background: rgba(255, 255, 255, 0.5);
  }
}
.c-home1 .c-pagination .container .swiper-pagination .swiper-pagination-bullet div::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-home1 .c-pagination .container .swiper-pagination .swiper-pagination-bullet div::before {
    width: 0;
    background: #fff;
  }
}
.c-home1 .c-pagination .container .swiper-pagination .swiper-pagination-bullet-active span {
  opacity: 1;
}
.c-home1 .c-pagination .container .swiper-pagination .swiper-pagination-bullet-active div::before {
  width: 100%;
  background: #fff;
}

 
@charset "utf-8";
.c-home2 {
  position: relative;
  z-index: 5;
  padding: 1.2rem 0;
  background: -webkit-linear-gradient(top, #f8fbf8 0%, #fff 20%, #fff 80%, #fff 81%, #f8fbf8 100%);
  background: linear-gradient(to bottom, #f8fbf8 0%, #fff 20%, #fff 80%, #fff 81%, #f8fbf8 100%);
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-home2 {
    padding: 1.2rem 0 0;
  }
}
.c-home2 .public-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  padding-right: 20px;
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-home2 .public-btn {
    border-radius: 20px;
  }
}
.c-home2 .public-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: var(--color);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-home2 .public-btn::before {
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }
}
.c-home2 .public-btn div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .c-home2 .public-btn div {
    width: 40px;
    height: 40px;
  }
}
.c-home2 .public-btn div img,
.c-home2 .public-btn div svg {
  width: 12px;
  height: 12px;
}
.c-home2 .public-btn:hover {
  color: #fff;
}
.c-home2 .public-btn:hover::before {
  width: 100%;
}
.c-home2 .public-title .c-title {
  font-size: var(--font-size2);
}
.c-home2 .public-title .c-subtitle {
  margin-top: 0.2rem;
  font-size: 0.48rem;
}
.c-home2 .c-title-box {
  text-align: center;
}
.c-home2 .c-title-box .c-title {
  font-size: var(--font-size2);
  line-height: 1.2;
}
.c-home2 .c-bg {
  position: absolute;
  right: -2rem;
  top: -1rem;
  z-index: 1;
  width: 6rem;
  pointer-events: none;
  animation: circleMove 10s linear infinite;
}
.c-home2 .c-bg2 {
  /* display: none; */
  position: absolute;
  left: -2.5rem;
  bottom: -2.6rem;
  z-index: 1;
  width: 6rem;
  height: 6rem;
  pointer-events: none;
  animation: circleRotate 60s linear infinite;
}
@media (max-width: 767px) {
  .c-home2 .c-bg2 {
    left: auto;
    right: -1.5rem;
  }
}
.c-home2 .container {
  position: relative;
  z-index: 5;
}
.c-home2 .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0.45rem -0.12rem 0.21rem;
}
.c-home2 .c-list li {
  display: flex;
  width: 33.3333%;
  padding: 0 0.12rem 0.24rem;
}
@media (max-width: 767px) {
  .c-home2 .c-list li {
    width: 100%;
  }
}
.c-home2 .c-list li .c-wrap {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  padding: 0.25rem;
  width: 100%;
  border: 1px solid #ededed;
  border-radius: 0.2rem;
  background: #fff;
}
.c-home2 .c-list li .c-wrap .c-box {
  width: 100%;
}
.c-home2 .c-list li .c-wrap .c-box .c-time {
  display: flex;
  align-items: center;
  color: #999;
}
.c-home2 .c-list li .c-wrap .c-box .c-time i {
  margin-right: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: #999;
}
@media (max-width: 1260px) {
  .c-home2 .c-list li .c-wrap .c-box .c-time i {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 767px) {
  .c-home2 .c-list li .c-wrap .c-box .c-time i {
    width: 10px;
    height: 10px;
  }
}
.c-home2 .c-list li .c-wrap .c-box .c-time i svg,
.c-home2 .c-list li .c-wrap .c-box .c-time i img {
  width: 100%;
  height: auto;
}
.c-home2 .c-list li .c-wrap .c-box .c-time i svg path,
.c-home2 .c-list li .c-wrap .c-box .c-time i img path {
  fill: var(--color);
}
.c-home2 .c-list li .c-wrap .c-box .c-title-wrap {
  margin: 0.2rem 0 0.5rem;
  max-width: 340px;
  height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  font-size: var(--font-size4);
}
.c-home2 .c-list li .c-wrap .c-box .c-title-wrap .c-title {
  display: inline;
  transition: all 0.8s;
  line-height: 1.5;
}
.c-home2 .c-list li .c-wrap .c-box .c-tag {
  display: inline-block;
  line-height: 30px;
  padding: 0 18px;
  border-radius: 25px;
  border: 1px solid var(--color);
  color: var(--color);
  font-size: var(--font-size9);
}
.c-home2 .c-list li .c-wrap .public-img {
  width: 100%;
  margin-top: 0.45rem;
  border-radius: 10px;
}
.c-home2 .c-list li .c-wrap .public-img::before {
  padding-top: 59.7916%;
}
.c-home2 .c-list li .c-wrap:hover .c-box .c-title-wrap .c-title {
  color: var(--color);
}
.c-home2 .c-list li .c-wrap:hover .public-img img {
  transform: scale(1.1);
}
.c-home2 .g_tac {
  text-align: center;
}

 
@charset "utf-8";
/*字体*/
@font-face {
  font-family: "Manrope-Medium";
  src: url("../font/Manrope-Medium.woff") format("woff");
}
.c-home3 {
  position: relative;
  padding: 1.4rem 0 1.5rem;
  overflow: hidden;
  background: #F9FCFF;
}
@media (max-width: 767px) {
  .c-home3 {
    padding: 2.4rem 0 0;
  }
  .c-home3 .public-title .c-subtitle br {
    display: inherit;
  }
}
.c-home3 .public-title .c-title {
  font-size: var(--font-size2);
}
.c-home3 .public-title .c-subtitle {
  margin-top: 0.2rem;
  font-size: var(--font-size7);
  font-weight: bold;
}
.c-home3 .public-title .c-text {
  font-size: var(--font-size7);
}
.c-home3 .public-title .c-subtitle {
  margin-top: 0.2rem;
}
@media (max-width: 767px) {
  .c-home3 .public-title br {
    display: none;
  }
}
@media (max-width: 991px) {
  .c-home3 .public-title2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .c-home3 .public-title2 .c-title br {
    display: none;
  }
}
.c-home3 .public-title2 .c-text {
  color: #666;
  margin-top: 0.5rem;
}
.c-home3 .public-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  padding-right: 20px;
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-home3 .public-btn {
    border-radius: 20px;
  }
}
.c-home3 .public-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: var(--color);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-home3 .public-btn::before {
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }
}
.c-home3 .public-btn div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .c-home3 .public-btn div {
    width: 40px;
    height: 40px;
  }
}
.c-home3 .public-btn div img,
.c-home3 .public-btn div svg {
  width: 12px;
  height: 12px;
}
.c-home3 .public-btn:hover {
  color: #fff;
}
.c-home3 .public-btn:hover::before {
  width: 100%;
}
.c-home3 .c-bg {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0.6rem;
  z-index: 1;
  width: 6.3rem;
  pointer-events: none;
  animation: circleMove 10s linear infinite;
}
.c-home3 .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-home3 .container .c-left {
  width: 45%;
}
@media (max-width: 991px) {
  .c-home3 .container .c-left {
    width: 100%;
  }
}
.c-home3 .container .c-left .c-text {
  color: #666;
  margin: 0.9rem 0 0.8rem;
}
.c-home3 .container .c-right {
  width: 47.5%;
}
@media (max-width: 991px) {
  .c-home3 .container .c-right {
    margin-top: 0.8rem;
    width: 100%;
  }
}
.c-home3 .container .c-right .c-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -0.95rem;
}
.c-home3 .container .c-right .c-list li {
  padding: 0.35rem 0 0.95rem;
  width: 46.05%;
  border-top: 1px solid #d2d3d1;
}
.c-home3 .container .c-right .c-list li img,
.c-home3 .container .c-right .c-list li svg {
  width: 0.66rem;
  height: 0.66rem;
  color: var(--color);
}
.c-home3 .container .c-right .c-list li .c-text {
  font-size: var(--font-size7);
}
.c-home3 .container .c-right .c-list li .c-box {
  display: flex;
  align-items: flex-start;
  margin: 0.25rem 0 0.05rem;
  color: var(--color);
  font-size: 0.8rem;
  line-height: 1.1;
  font-family: 'Manrope-Medium', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-home3 .container .c-right .c-list li .c-box .scale {
  transform: scale(1.6);
}
.c-home3 .container .c-right .c-list li .c-box .font14 {
  font-size: 14px;
}

 
@charset "utf-8";
.c-home5 {
  padding: 1.8rem 0 1.6rem;
  background: -webkit-linear-gradient(bottom, #E4EEF8 0%, #fff 100%);
  background: linear-gradient(to top, #E4EEF8 0%, #fff 100%);
}
@media (max-width: 767px) {
  .c-home5 {
    padding: 1.2rem 0;
  }
}
.c-home5 .font14 {
  font-size: 14px;
  line-height: 24px;
}
.c-home5 .font16 {
  font-size: 16px;
}
.c-home5 .font18 {
  font-size: 18px;
  line-height: 28px;
}
.c-home5 .font20 {
  font-size: 20px;
  line-height: 30px;
}
.c-home5 .font22 {
  font-size: 22px;
  line-height: 32px;
}
.c-home5 .font24 {
  font-size: 24px;
  line-height: 34px;
}
.c-home5 .font28 {
  font-size: 28px;
  line-height: 38px;
}
.c-home5 .font30 {
  font-size: 30px;
  line-height: 40px;
}
.c-home5 .font32 {
  font-size: 32px;
  line-height: 42px;
}
.c-home5 .font36 {
  font-size: 36px;
  line-height: 46px;
}
.c-home5 .font38 {
  font-size: 38px;
  line-height: 48px;
}
.c-home5 .font40 {
  font-size: 40px;
  line-height: 50px;
}
.c-home5 .font44 {
  font-size: 44px;
  line-height: 54px;
}
.c-home5 .font48 {
  font-size: 48px;
  line-height: 58px;
}
.c-home5 .font50 {
  font-size: 50px;
  line-height: 60px;
}
.c-home5 .font60 {
  font-size: 60px;
  line-height: 70px;
}
.c-home5 .font68 {
  font-size: 68px;
  line-height: 78px;
}
.c-home5 .font70 {
  font-size: 70px;
  line-height: 80px;
}
.c-home5 .font80 {
  font-size: 80px;
  line-height: 90px;
}
@media (max-width: 1900px) {
  .c-home5 .font20,
  .c-home5 .font22,
  .c-home5 .font24 {
    font-size: 20px;
    line-height: 30px;
  }
  .c-home5 .font28 {
    font-size: 22px;
    line-height: 32px;
  }
  .c-home5 .font30,
  .c-home5 .font32,
  .c-home5 .font36,
  .c-home5 .font38 {
    font-size: 30px;
    line-height: 40px;
  }
  .c-home5 .font40,
  .c-home5 .font44,
  .c-home5 .font48,
  .c-home5 .font50,
  .c-home5 .font60 {
    font-size: 38px;
    line-height: 48px;
  }
  .c-home5 .font68,
  .c-home5 .font70 {
    font-size: 48px;
    line-height: 58px;
  }
  .c-home5 .font80 {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 1580px) {
  .c-home5 .font16 {
    font-size: 14px;
  }
  .c-home5 .font18 {
    font-size: 16px;
  }
  .c-home5 .font20,
  .c-home5 .font22,
  .c-home5 .font24 {
    font-size: 18px;
    line-height: 28px;
  }
  .c-home5 .font28 {
    font-size: 20px;
    line-height: 30px;
  }
  .c-home5 .font30,
  .c-home5 .font32,
  .c-home5 .font36,
  .c-home5 .font38 {
    font-size: 22px;
    line-height: 32px;
  }
  .c-home5 .font40,
  .c-home5 .font44,
  .c-home5 .font48,
  .c-home5 .font50,
  .c-home5 .font60 {
    font-size: 30px;
    line-height: 40px;
  }
  .c-home5 .font68,
  .c-home5 .font70 {
    font-size: 40px;
    line-height: 50px;
  }
  .c-home5 .font80 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .c-home5 .font16,
  .c-home5 .font18 {
    font-size: 14px;
    line-height: 24px;
  }
  .c-home5 .font20,
  .c-home5 .font22,
  .c-home5 .font24 {
    font-size: 16px;
    line-height: 26px;
  }
  .c-home5 .font28 {
    font-size: 18px;
    line-height: 28px;
  }
  .c-home5 .font30,
  .c-home5 .font32,
  .c-home5 .font36,
  .c-home5 .font38 {
    font-size: 20px;
    line-height: 30px;
  }
  .c-home5 .font40,
  .c-home5 .font44,
  .c-home5 .font48,
  .c-home5 .font50,
  .c-home5 .font60 {
    font-size: 24px;
    line-height: 34px;
  }
  .c-home5 .font68,
  .c-home5 .font70 {
    font-size: 28px;
    line-height: 38px;
  }
  .c-home5 .font80 {
    font-size: 40px;
    line-height: 50px;
  }
}
.c-home5 .public-title {
  text-align: center;
}
.c-home5 .public-title .c-title {
  color: #222;
  font-size: var(--font-size2);
}
.c-home5 .public-title .c-subtitle {
  margin-top: 0.2rem;
  font-size: var(--font-size7);
  /* font-weight: bold; */
  line-height: 1.3;
  color: #666;
}
.c-home5 .c-list {
  display: flex;
  margin: 0.75rem -5px -10px;
}
@media (max-width: 1260px) {
  .c-home5 .c-list {
    margin: 0.75rem 0 0;
    border-radius: 0;
    overflow: auto;
  }
}
@media (max-width: 767px) {
  .c-home5 .c-list {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}
.c-home5 .c-list li {
  flex: 1 1 20%;
  padding: 0 5px 10px;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .c-home5 .c-list li {
    padding: 0 20px 20px 0;
    flex: 0 0 40%;
  }
  .c-home5 .c-list li:last-child {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .c-home5 .c-list li {
    flex: 0 0 80%;
  }
}
@media (min-width: 992px) {
  .c-home5 .c-list li:hover {
    flex: 0 0 50%;
  }
  .c-home5 .c-list li:hover .c-wrap .c-title {
    opacity: 0;
  }
  .c-home5 .c-list li:hover .c-wrap .c-box {
    opacity: 1;
    transition: all 0.4s 0.4s;
  }
}
.c-home5 .c-list li .c-wrap {
  position: relative;
  display: block;
  color: #fff;
  background: #000;
  height: 5.8rem;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1580px) {
  .c-home5 .c-list li .c-wrap {
    height: 7rem;
  }
}
@media (max-width: 991px) {
  .c-home5 .c-list li .c-wrap {
    height: 50vw;
  }
}
@media (max-width: 767px) {
  .c-home5 .c-list li .c-wrap {
    height: 90vw;
  }
}
.c-home5 .c-list li .c-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.c-home5 .c-list li .c-wrap .c-title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  transition: all 0.4s;
  font-size: var(--font-size4);
}
@media (max-width: 991px) {
  .c-home5 .c-list li .c-wrap .c-title {
    opacity: 0;
  }
}
.c-home5 .c-list li .c-wrap .c-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0.4rem 0.5rem;
  opacity: 0;
  text-align: center;
  justify-content: center;
  transition: all 0s 0s;
}
@media (max-width: 991px) {
  .c-home5 .c-list li .c-wrap .c-box {
    opacity: 1;
  }
}
.c-home5 .c-list li .c-wrap .c-box .c-top {
  width: 100%;
}
.c-home5 .c-list li .c-wrap .c-box .c-top .c-title2 {
  font-size: var(--font-size4);
}
.c-home5 .c-list li .c-wrap .c-box .c-top .c-text {
  margin-top: 0.15rem;
  font-size: var(--font-size7);
  text-align: left;
}
.c-home5 .c-list li .c-wrap .c-box .c-bottom {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  display: none;
}
@media (max-width: 991px) {
  .c-home5 .c-list li .c-wrap .c-box .c-bottom {
    display: none;
  }
}
.c-home5 .c-list li .c-wrap .c-box .c-bottom p {
  margin: 0 0.1rem 0.1rem 0;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.1rem 0.15rem;
  border: 1px solid #fff;
  border-radius: 24px;
  min-height: 40px;
}

 
@charset "utf-8";
.c-home7 {
  padding: 1.4rem 0;
}
@media (max-width: 767px) {
  .c-home7 {
    padding: 1.2rem 0;
  }
}
.c-home7 .public-title .c-title {
  font-size: var(--font-size2);
}
.c-home7 .public-title .c-subtitle {
  margin-top: 0.2rem;
  font-size: var(--font-size7);
  font-weight: bold;
}
.c-home7 .c-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0.75rem -0.15rem -0.3rem;
}
.c-home7 .c-list li {
  width: 25%;
  padding: 0 0.15rem 0.3rem;
}
@media (max-width: 767px) {
  .c-home7 .c-list li {
    width: 100%;
  }
}
.c-home7 .c-list li .c-wrap {
  display: block;
  position: relative;
  color: #fff;
}
.c-home7 .c-list li .c-wrap .public-img {
  border-radius: 0.2rem;
}
.c-home7 .c-list li .c-wrap .public-img::before {
  content: "";
  padding-top: 100.97%;
}
.c-home7 .c-list li .c-wrap .c-title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: 0.45rem 0.4rem;
  font-size: var(--font-size4);
  transition: all 0.4s;
}
.c-home7 .c-list li .c-wrap .c-box {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0.4rem;
  border-radius: 20px;
  background: -webkit-linear-gradient(bottom, rgba(0, 94, 171, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to top, rgba(0, 94, 171, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.4s;
}
.c-home7 .c-list li .c-wrap .c-box .c-subtitle {
  margin-top: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0 0;
  font-size: var(--font-size7);
}
.c-home7 .c-list li .c-wrap .c-box .c-title2 {
  font-size: var(--font-size4);
}
.c-home7 .c-list li .c-wrap .c-box .c-text {
  font-size: var(--font-size7);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media (min-width: 1181px) {
  .c-home7 .c-list li .c-wrap:hover .c-title {
    opacity: 0;
  }
  .c-home7 .c-list li .c-wrap:hover .c-box {
    opacity: 1;
  }
}
.c-home7 .c-more {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 99999;
  z-index: 10;
  width: 1.3rem;
  height: 1.3rem;
  pointer-events: none;
}
.c-home7 .c-more p {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.4s;
  opacity: 0;
  background: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transform: scale(0);
}
.c-home7 .c-more.on p {
  opacity: 1;
  transform: scale(1);
}
.c-home7 .c-more.on::before,
.c-home7 .c-more.on::after {
  transform: translate(0, -50%) scale(1);
}
.c-home7 .c-more.on::before {
  left: -15%;
}
.c-home7 .c-more.on::after {
  right: -15%;
}
.c-home7 .c-more::before,
.c-home7 .c-more::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color);
  transform: translate(0, -50%) scale(0);
  transition: all 0.4s;
}
.c-home7 .c-more::before {
  left: 50%;
}
.c-home7 .c-more::after {
  right: 50%;
}
