/**
 * home.css — Site9 首页独有样式
 * Phase 3 | 首页
 */

/* ============================================================
   Hero Banner
   ============================================================ */
.home-banner .swiper-slide {
  position: relative;
  overflow: hidden;
}

.home-banner .swiper-slide > a img {
  width: 100%;
}

/* Banner overlay animation */
.home-banner .swiper-slide .banner-animote {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 70px;
  width: 100%;
  max-width: 1700px;
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.home-banner .swiper-slide-active .banner-animote {
  animation: bannerFadeIn .5s forwards;
  animation-delay: .7s;
}

@keyframes bannerFadeIn {
  0%   { top: 53%; }
  100% { top: 50%; opacity: 1; }
}

.home-banner .swiper-slide .banner-animote .p1 {
  font-weight: 600;
  font-size: 52px;
  line-height: 1.2;
}

.home-banner .swiper-slide .banner-animote .p2 {
  margin-top: 3%;
  max-width: 800px;
  font-size: 18px;
}

/* Banner nav buttons */
.home-banner .banner-button-prev,
.home-banner .banner-button-next {
  position: absolute;
  top: 50%;
  left: 20px;
  z-index: 15;
  display: flex;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .3);
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  cursor: pointer;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.home-banner .banner-button-prev:hover,
.home-banner .banner-button-next:hover {
  background: rgba(0, 0, 0, .5);
}

.home-banner .banner-button-next {
  left: auto;
  right: 20px;
}

.home-banner .banner-button-prev .iconfont {
  transform: rotate(90deg);
}

.home-banner .banner-button-next .iconfont {
  transform: rotate(-90deg);
}

/* Banner pagination */
.home-banner .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 1;
}

.home-banner .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color);
}

/* Slide 2 specific (centered, dark theme) */
.home-banner .banner-animote.banner-animote2 {
  text-align: center;
}

.home-banner .banner-animote.banner-animote2 .p1 {
  text-transform: uppercase;
}

.home-banner .banner-animote.banner-animote2 .p2 {
  margin-top: 40px;
  max-width: 100%;
  font-size: 24px;
}

.home-banner .banner-animote.banner-animote2 .p3 {
  font-size: 18px;
  color: #fbf9f5;
}

.home-banner .banner-animote.banner-animote2 .p4 {
  position: relative;
  padding: 27px 0;
}

.home-banner .banner-animote.banner-animote2 .p4::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 1px;
  background: #fbf9f5;
  transform: translate(-50%, -50%);
}

.home-banner .banner-animote.banner-animote2 .p5 a,
.home-banner .banner-animote .btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 46px;
  padding: 0 20px;
  border: 2px solid #fff;
  border-radius: 23px;
  color: #fff;
  font-size: 18px;
  transition: all .2s;
}

.home-banner .banner-animote.banner-animote2 .p5 a:hover,
.home-banner .banner-animote .btn-line:hover {
  background: #fff;
  color: var(--color);
}

/* Slide 3 specific */
.home-banner .banner-animote.banner-animote3 {
  text-align: center;
  color: #b1895e;
}

.home-banner .banner-animote.banner-animote3 .box {
  padding: 18px 27px;
  background: linear-gradient(130deg, #303030 0, #171715 100%);
  opacity: .8;
}

.home-banner .banner-animote.banner-animote3 .p1 {
  font-family: "Times New Roman", serif;
  background: linear-gradient(0deg, #efcf95 0, #976a3b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-banner .banner-animote.banner-animote3 .p2 {
  margin-top: 10px;
  max-width: 100%;
  font-size: 12px;
}

.home-banner .banner-animote.banner-animote3 .p3 {
  position: relative;
  padding: 36px 0;
}

.home-banner .banner-animote.banner-animote3 .p3::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 3px;
  background: #d1ad76;
  transform: translate(-50%, -50%);
}

.home-banner .banner-animote.banner-animote3 .p4 {
  font-size: 24px;
}

.home-banner .banner-animote.banner-animote3 .p5 {
  font-size: 20px;
}

/* Mobile banner image switching */
@media (min-width: 767px) {
  .banner-item img:nth-child(2) { display: none; }
}

@media (max-width: 766px) {
  .banner-item img:first-child { display: none; }
}

/* ============================================================
   Common Home Elements
   ============================================================ */
.home-more {
  display: inline-flex;
  height: 50px;
  min-width: 170px;
  padding: 0 20px;
  border-radius: var(--border);
  background: var(--bgcolor);
  color: #fff;
  align-items: center;
  justify-content: center;
  transition: all .1s linear;
}

.home-more em {
  display: flex;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  border-radius: 50%;
  background: #fff;
  color: var(--color1);
  font-size: 12px;
  align-items: center;
  justify-content: center;
}

.home-more:hover {
  color: #fff;
  opacity: .9;
}

.home-title {
  margin: 20px 0;
  color: var(--fontcolor);
  text-align: center;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 36px;
  line-height: 42px;
}

.home-des {
  display: flex;
  margin: 0 auto 20px;
  max-width: 800px;
  color: var(--summarycolor);
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ============================================================
   About Us Section
   ============================================================ */
.home-about {
  padding: 4% 0;
}

.home-about .l-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-about .left {
  width: 100%;
  max-width: 43%;
}

.home-about .left .p1 {
  text-transform: uppercase;
  color: var(--color);
  font-weight: 700;
  font-size: 16px;
}

.home-about .left .p2 {
  margin: 20px 0 30px;
  color: #000002;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.4;
}

.home-about .left .text {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.home-about .left .flex-title {
  margin-top: 2em;
  color: #000;
  font-weight: 600;
  font-size: 22px;
}

.home-about .right {
  position: relative;
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: flex-end;
}

.home-about .right img {
  width: 100%;
}

.home-about .right .icon {
  position: absolute;
  top: 50%;
  left: -90px;
  z-index: 1;
  display: flex;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--bgcolor);
  text-align: center;
  align-items: flex-end;
  justify-content: center;
}

.home-about .right .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 20px solid #fff;
  border-radius: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  animation: iconPulse 2s linear infinite;
}

@keyframes iconPulse {
  0%   { border: 1px solid rgba(255, 255, 255, .3); }
  100% { border: 15px solid transparent; }
}

.home-about .right .icon .text {
  margin-bottom: 40px;
  max-width: 90%;
  color: #fff;
  font-style: italic;
  font-size: 16px;
}

.home-about .right .icon em {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ============================================================
   Advantages Swiper Cards
   ============================================================ */
.home-swiper-card {
  padding: 2% 0 4%;
}

.about-swiper .swiper-wrapper {
  align-items: center;
}

.about-swiper .item {
  padding: 20px;
  border-radius: var(--border);
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  transition: all .3s;
  cursor: pointer;
}

.about-swiper .item:hover {
  background: var(--bgcolor);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.about-swiper .swiper-slide-active .item {
  background: var(--bgcolor);
  color: #fff;
}

.about-swiper .btn-group {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  gap: 20px;
}

.about-swiper .btn-group .prev,
.about-swiper .btn-group .next {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bgcolor);
  color: #fff;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .2s;
}

.about-swiper .btn-group .prev:hover,
.about-swiper .btn-group .next:hover {
  opacity: .8;
}

/* ============================================================
   Products Grid
   ============================================================ */
.home-product {
  padding: 4% 0 2%;
}

.home-product .l-wrap {
  text-align: center;
}

.pro-list {
  display: flex;
  margin-top: 3%;
  flex-wrap: wrap;
}

.pro-list li {
  width: 23.75%;
  margin: 0 1.5% 20px 0;
}

.pro-list li:nth-of-type(4n) {
  margin-right: 0;
}

.pro-list li .pro-img {
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

.pro-list li .pro-img img {
  width: 100%;
  transition: transform .4s;
}

.pro-list li .pro-cont {
  padding: 10px 15px;
}

.pro-list li .pro-cont .pro-name {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  text-transform: capitalize;
  line-height: 1.4;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pro-list li .pro-cont .pro-name a {
  color: var(--fontcolor);
}

.pro-list li .pro-cont .pro-name a:hover {
  color: var(--color);
}

.more-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 8px 0;
  border-radius: 2px;
  color: var(--color);
  text-transform: lowercase;
  transition: all .5s;
  overflow: hidden;
}

.more-btn:hover {
  padding: 8px 20px;
  background: var(--color);
  color: #fff;
}

.pro-list li:hover .pro-img img {
  transform: scale(1.1);
}

/* ============================================================
   Team / Service Cards
   ============================================================ */
.home-team {
  padding: 4% 0;
  background: #f7f7f7;
}

.home-team .top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.home-team .top .home-title {
  text-align: left;
}

.home-team .top .right {
  flex: 1;
  max-width: 800px;
  color: #444;
  text-align: right;
}

.teamlist {
  display: flex;
  margin-top: 3%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.teamlist .teamitem {
  display: flex;
  width: 32%;
  flex-direction: column;
  overflow: hidden;
}

.teamlist .teamitem .img {
  position: relative;
  display: flex;
  height: 260px;
  background: #fff;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all .2s linear;
}

.teamlist .teamitem .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teamlist .teamitem .img em {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  color: #fff;
  font-weight: 300;
  font-size: 40px;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all .1s linear;
}

.teamlist .teamitem .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bgcolor);
  opacity: 0;
  transition: all .1s linear;
}

.teamlist .teamitem .info {
  position: relative;
  height: 120px;
  margin-top: 10px;
  padding: 30px 40px;
  background: #fff;
  box-shadow: 0 0 35px 0 rgba(42, 43, 43, .09);
  text-align: center;
  overflow: hidden;
  transition: all .2s linear;
}

.teamlist .teamitem .info .title {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 600;
  font-size: 18px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.teamlist .teamitem .info .text {
  display: -webkit-box;
  padding-top: 20px;
  width: 100%;
  color: #444;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  transition: all .1s linear;
}

.teamlist .teamitem:hover .img {
  height: 100px;
}

.teamlist .teamitem:hover .img em {
  opacity: 1;
}

.teamlist .teamitem:hover .img::after {
  opacity: .9;
}

.teamlist .teamitem:hover .info {
  height: 280px;
}

.teamlist .teamitem:hover .info .text {
  opacity: 1;
  visibility: inherit;
}

/* ============================================================
   Health / Background Section
   ============================================================ */
.home-healthy {
  position: relative;
  z-index: 1;
  padding: 8% 0;
  background: no-repeat center fixed;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.home-healthy::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(118deg, #011c3a, #011c3a);
  opacity: .4;
}

.home-healthy .home-title {
  margin: 1em 0;
  color: #fff;
}

.home-healthy .line {
  margin: 0 auto 2em;
  width: 3px;
  height: 30px;
  background: #fff;
}

.home-healthy .home-des {
  margin: 0 auto;
  max-width: 1000px;
  color: #fff;
  line-height: 1.8;
}

/* ============================================================
   Services Tabs
   ============================================================ */
.home-tabs .tabs {
  background: #ececec;
}

.home-tabs .tabs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-tabs .tabs li {
  width: 33.3333%;
  padding: 20px;
  color: #151515;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  cursor: pointer;
  transition: all .1s linear;
}

.home-tabs .tabs li.act {
  background: #fff;
}

.home-tabs .items .item {
  display: none;
  padding: 4% 0;
}

.home-tabs .items .item.act {
  display: block;
  animation: tabContentIn .2s forwards;
}

@keyframes tabContentIn {
  0%   { opacity: 0; transform: scale(.8); }
  100% { opacity: 1; transform: scale(1); }
}

.home-tabs .items .item .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-tabs .items .item .left {
  width: 40%;
}

.home-tabs .items .item .title {
  color: #000001;
  font-weight: 500;
  font-size: 34px;
}

.home-tabs .items .item .text {
  margin: 20px 0;
  line-height: 1.8;
}

.home-tabs .items .item .text p {
  margin: 0;
}

.home-tabs .items .item .text span {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

.home-tabs .items .item .right {
  position: relative;
  display: flex;
  width: 40%;
  justify-content: flex-end;
}

.home-tabs .items .item .right img {
  width: 100%;
  height: auto;
}

/* ============================================================
   Latest News
   ============================================================ */
.home-news {
  padding: 4% 0;
  background: #f7f7f7;
}

.home-news .home-title {
  margin: 20px 0;
}

.newslist {
  display: flex;
  margin-top: 3%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.newslist li {
  width: 23%;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 0 27px 0 rgba(42, 43, 43, .09);
  transition: all .3s ease;
  overflow: hidden;
}

.newslist li .img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.newslist li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newslist li .img .date {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  padding: 5px 15px;
  border-radius: 0 0 5px 5px;
  background: #fff;
  box-shadow: 0 0 27px 0 rgba(42, 43, 43, .09);
  line-height: 1.4;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.newslist li .info {
  padding: 20px 20px 35px;
}

.newslist li .info .title {
  display: -webkit-box;
  margin-bottom: 15px;
  overflow: hidden;
  font-weight: 600;
  font-size: 18px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.newslist li .info .text {
  display: -webkit-box;
  margin-bottom: 15px;
  color: #666;
  line-height: 1.4;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.newslist li .info .more {
  position: relative;
  display: inline-flex;
  padding-top: 15px;
  width: 100%;
  border-top: 1px solid #e7e7e7;
  color: var(--color);
  text-transform: capitalize;
  font-weight: 600;
  align-items: center;
  transition: all .1s linear;
}

.newslist li .info .more em {
  position: absolute;
  left: 0;
  display: flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bgcolor);
  color: #fff;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .1s linear;
}

.newslist li:hover {
  transform: translateY(-5px);
}

.newslist li:hover .info .more {
  padding-left: 35px;
}

.newslist li:hover .info .more em {
  opacity: 1;
}

/* ============================================================
   Keep in Touch CTA
   ============================================================ */
.home-keep {
  padding: 5% 0 7%;
}

.home-keep .l-wrap {
  display: flex;
  flex-wrap: wrap;
  border-radius: 2px;
}

.home-keep .l-wrap .info {
  display: flex;
  padding: 3% 0;
  width: 100%;
  max-width: 600px;
  background: var(--bgcolor);
  color: #fff;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-keep .l-wrap .info .p1 {
  font-weight: 500;
  font-size: 36px;
}

.home-keep .l-wrap .info .p2 {
  margin: 20px 0;
  font-size: 18px;
}

.home-keep .l-wrap .info .more {
  display: flex;
  height: 45px;
  min-width: 200px;
  padding: 0 20px;
  border-radius: 3px;
  background: #fff;
  color: var(--color);
  font-weight: 500;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}

.home-keep .l-wrap .info .more:hover {
  opacity: .9;
  color: var(--color);
}

.home-keep .l-wrap .img {
  flex: 1;
}

.home-keep .l-wrap .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   Responsive — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .home-banner .swiper-slide .banner-animote {
    padding: 0 15px;
  }

  .home-banner .banner-button-prev,
  .home-banner .banner-button-next {
    display: none;
  }

  .home-about {
    padding: 40px 0;
  }

  .home-about .l-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .home-about .left {
    max-width: 100%;
  }

  .home-about .right {
    margin-top: 30px;
  }

  .pro-list {
    justify-content: space-between;
  }

  .pro-list li {
    width: 48%;
    margin: 0 0 20px;
  }

  .pro-list li:nth-of-type(4n) {
    margin-right: 0;
  }

  .teamlist .teamitem {
    width: 48%;
    margin-bottom: 2em;
  }

  .home-team .top .left {
    width: 100%;
  }

  .home-team .top .right {
    max-width: 100%;
    margin-top: 20px;
    text-align: left;
  }

  .home-tabs .tabs .l-wrap {
    padding: 0;
  }

  .home-tabs .tabs li {
    width: 100%;
    padding: 15px 20px;
  }

  .newslist li {
    width: 48%;
    margin-bottom: 2em;
  }

  .home-keep .l-wrap .info .p1 {
    font-size: 26px;
  }
}

/* ============================================================
   Responsive — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .home-banner .swiper-slide .banner-animote .p1 {
    font-size: 18px;
    line-height: 1.4;
  }

  .home-banner .swiper-slide .banner-animote .p2 {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.4;
  }

  .home-banner .banner-animote.banner-animote2 .p2 {
    margin-top: 10px;
    font-size: 18px;
  }

  .home-banner .banner-animote.banner-animote2 .p3 {
    font-size: 16px;
  }

  .home-banner .banner-animote.banner-animote2 .p4 {
    display: none;
  }

  .home-banner .banner-animote.banner-animote2 .p5 {
    margin-top: 10px;
  }

  .home-banner .banner-animote.banner-animote3 .p3 {
    display: none;
  }

  .home-banner .banner-animote.banner-animote3 .p4 {
    font-size: 18px;
  }

  .home-banner .banner-animote.banner-animote3 .p5 {
    font-size: 16px;
  }

  .home-about .left .p2 {
    margin: 10px 0 20px;
    font-size: 22px;
  }

  .home-about .right {
    width: 100%;
  }

  .home-about .right .icon {
    top: auto;
    bottom: 20px;
    left: 5px;
  }

  .home-product {
    padding-top: 40px;
  }

  .home-tabs .items .item .flex {
    flex-wrap: wrap;
  }

  .home-tabs .items .item .left {
    width: 100%;
  }

  .home-tabs .items .item .right {
    width: 100%;
    margin-top: 20px;
  }

  .home-tabs .items .item .right img {
    width: 80%;
  }

  .newslist li .info {
    padding: 20px 15px;
  }

  .home-keep .l-wrap {
    display: block;
  }

  .home-keep .l-wrap .info {
    max-width: 100%;
    padding: 20px 15px;
  }

  .home-healthy {
    padding: 40px 0;
  }

  .home-news {
    padding: 40px 0 10px;
  }

  .home-title {
    font-size: 24px;
  }
}

/* ============================================================
   Responsive — Small Mobile (≤500px)
   ============================================================ */
@media (max-width: 500px) {
  .home-banner .swiper-slide {
    height: 240px;
  }

  .home-banner .swiper-slide .banner-item {
    display: block;
    width: 100%;
    height: 100%;
  }

  .home-banner .swiper-slide .banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .teamlist .teamitem {
    width: 100%;
  }

  .teamlist .teamitem .img {
    height: 200px !important;
  }

  .teamlist .teamitem .img em {
    opacity: 1;
  }

  .teamlist .teamitem .img::after {
    opacity: .9;
  }

  .teamlist .teamitem .info {
    height: auto !important;
    padding: 20px 30px;
  }

  .teamlist .teamitem .info .text {
    opacity: 1;
    visibility: inherit;
  }

  .home-title {
    line-height: 32px;
  }

  .home-des {
    margin-bottom: 10px;
    font-size: 14px;
  }
}

/* ============================================================
   Large Screen Adjustments
   ============================================================ */
@media (max-width: 1600px) {
  .home-banner .swiper-slide .banner-animote .p1 { font-size: 40px; }
  .home-about .left .p2 { font-size: 30px; }
  .home-healthy { padding: 5% 0; }
  .home-tabs .items .item .title { font-size: 30px; }
}

@media (max-width: 1440px) {
  .home-banner .swiper-slide .banner-animote .p1 { font-size: 32px; }
  .home-banner .swiper-slide .banner-animote .p1 { font-size: 32px; }
}

@media (max-width: 1366px) {
  .home-tabs .items .item .title { font-size: 26px; }
  .home-keep .l-wrap .info .p1 { font-size: 30px; }
}

@media (max-width: 1280px) {
  .home-about .left .p2 { font-size: 26px; }
  .home-more { min-width: 160px; height: 45px; }
  .home-keep .l-wrap .info { max-width: 50%; }
}
