@charset "UTF-8";

.carousel-container {
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--desktop-bg);
}



.slide-content {
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
}

.slide-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out 0.3s forwards;
}

.slide-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out 0.5s forwards;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 导航点 */
.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 2px solid transparent;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: #FFC600;
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* 左右箭头 */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  line-height: 50px;
  justify-content: center;
  font-size: 20px;
  color: white;
  transition: all 0.3s ease;
  z-index: 10;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: 20px;
}

.carousel-arrow.next {
  right: 20px;
}

/* 暂停指示器 */
.carousel-pause-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 20px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.carousel-pause-indicator.show {
  opacity: 1;
}


.publicize-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 121px;
  width: 100%;
  height: 760px;
}

.publicize-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.publicize-carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--desktop-bg);

}

.publicize-carousel-slide img {
  width: 100%;
  height: 100%;
}

.publicize-slide-content {
  height: 100%;
  color: white;
  z-index: 2;
  width: 100%;
}

.publicize-slide-content .publicize-slide-content-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 1300px;
  margin: 130px auto 0;
}

.publicize-slide-summarize {
  height: 50px;
  font-weight: 500;
  margin: 29px 0 54px;
  color: #FFFFFF;
  font-size: 36px;
}

.publicize-slide-title {
  height: 96px;
  font-size: 48px;
  font-weight: 100;
  text-transform: uppercase;
  line-height: 58px;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.publicize-slide-subtitle {
  height: 33px;
  font-size: 24px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 33px;
}

.publicize-carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, transparent 0%);
  z-index: 1;
}

/* 导航按钮 */
.publicize-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.publicize-nav-button:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-50%) scale(1.1);
}

.publicize-nav-button.prev {
  left: 20px;
}

.publicize-nav-button.next {
  right: 20px;
}

/* 指示器（小图片） */
.publicize-carousel-indicators {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  grid-template-columns: repeat(3, 0fr);
  width: 1300px;
  justify-content: space-between;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.publicize-indicator {
  /* width: 409px; */
  max-width: 409px;
  height: 178px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}



.publicize-indicator img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.publicize-indicator.active {
  border-color: white;
  opacity: 1;
}

.publicize-indicator:hover {
  opacity: 1;
  transform: scale(1.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 缩略图导航 */
/* 自动播放控制 */
.publicize-auto-play-control {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.publicize-play-pause-btn {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.publicize-play-pause-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}


.carousel-info {
  margin: 101px auto 49px;
  text-align: center;
}

.carousel-info .infotitle {
  font-size: 24px;
  font-weight: 600;
  color: #666B75;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 33px;
}

.carousel-info p {
  font-size: 32px;
  font-weight: 400;
  margin-top: 10px;
  color: #000000;
  line-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-info .bar {
  height: 1px;
  width: 20px;
  margin: 0 14px;
  border: 1px solid #979797;
  opacity: 0.5;
}

.range-container {
  display: grid;
  justify-content: center;
  /* grid-template-columns: repeat(2, 1fr);*/
  grid-template-columns: repeat(3, 0fr);
  gap: 20px;
}

.range-container .range-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 414px;
  height: 573px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transition: background-size 0.6s ease;
}

.range-container .range-card:nth-child(2) {
  margin: 0 auto;
}

.range-container .range-card .iconfont {
  color: #fff;
  width: 64px;
  height: 62px;
  font-size: 64px;
  margin: 0 auto;
}

.range-container .range-card .range-title {
  font-size: 24px;
  font-weight: 400;
  margin: 47px auto 10px;
  text-align: center;
  color: #FFFFFF;
}

.range-container .range-card .range-description {
  width: 322px;
  height: 69px;
  margin: 0 auto;
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
  font-weight: 300;
  line-height: 24px;
}

.range-container .range-card .btn-container {
  width: 136px;
  height: 44px;
  border: 2px solid #FFFFFF;
  margin: 30px auto 0;
  text-align: center;
  border-radius: 28px;
  cursor: pointer;
  line-height: 39px;
}

.range-container .range-card .btn-container .range-item {
  width: 100%;
  height: 44px;
  font-size: 15px;
  color: #fff;
}

.range-container .range-card:hover {
  background-size: 110%;
}

.range-container .range-card:hover .btn-container {
  position: relative;
  z-index: 99;
  background-color: #fff;
}

.range-container .range-card:hover .btn-container .range-item {
  position: relative;
  z-index: 100;
  color: #000000;
}

.service-information {
  margin: 115px auto 0;
}

.service-information .service-information-top {
  display: flex;
  max-width: 1300px;
  flex-wrap: wrap;
}

.service-information .service-information-top .service-item {
  width: 420.5px;
  /* height: 462px; */
}

.service-information .service-information-top .service-item:nth-child(2) {
  margin: 0 18px;
}

.service-information .service-information-top .service-item .service-item-content img {
  height: 462px;
  width: 100%;
  object-fit: cover;
}

.service-information .service-information-top .service-item .service-item-content p {
  margin-top: 20px;
  font-size: 20px;
  color: #000;
  line-height: 28px;
  height: 28px;
  font-weight: 400;
}

.service-information .service-information-top .service-item:first-child {
  display: flex;
  align-items: center;
}

.service-information .service-information-top .service-item .first-item {
  text-align: left;
}

.service-information .service-information-top .service-item .first-item .label {
  color: #666b75;
  font-size: 24px;
  height: 33px;
  line-height: 33px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-information .service-information-top .service-item .first-item .info {
  justify-content: flex-start;
  font-size: 32px;
  height: 45px;
  color: #000000;
  line-height: 45px;
  font-weight: 400;
}

.service-information .service-information-bottom {
  max-width: 1300px;
  height: 316px;
  margin: 54px auto 0;
  position: relative;
}

.service-information .service-information-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-information .service-information-bottom p {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 20px;
  /* 单行文本溢出省略号 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.OPI img {
  width: 100%;
  height: 100%;
}

.OPI {
  width: 100%;
  height: 650px;
  padding: 40px 0 ;
  margin-top: 111px;
  position: relative;
  background-image: url("https://oss-official-website.doorunhealth.com/assets/OPI.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.OPI .OPI-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.OPI .OPI-text .label {
  /* width: 403px; */
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 1px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.OPI .OPI-text .title {
  margin: 30px 0 21px;
  font-size: 36px;
  font-weight: 500;
  color: #FFFFFF;
}

.OPI .OPI-text .info {
  font-size: 24px;
  font-weight: 400;
  color: #FFFFFF;
}

.OPI .OPI-text .info span {
  font-size: 42px;
  margin: 0 10px;
  color: #FFC600;
}

.OPI .OPI-text .btn-container {
  width: 136px;
  height: 44px;
  margin-top: 64px;
  border: 2px solid #FFFFFF;
  text-align: center;
  line-height: 40px;
  border-radius: 28px;
  cursor: pointer;
}

.OPI .OPI-text .btn-container .range-item {
  width: 100%;
  height: 100%;
  display: block;
  font-size: 15px;
  color: #fff;
  border-radius: 28px;
}

.OPI .OPI-text .btn-container :hover {
  background-color: #FFFFFF;
  color: #000000;
}

.news-container {
  margin: 96px auto 0;
}

.news-container .news-title .label {
  font-size: 24px;
  color: #666B75;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.news-container .news-title .title {
  font-size: 32px;
  font-weight: 400;
  margin-top: 10px;
  color: #000000;
  line-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-container .news-title .bar {
  height: 1px;
  width: 20px;
  margin: 0 14px;
  border: 1px solid #979797;
  opacity: 0.5;
}

.news-container .news-content {
  display: grid;
  grid-template-columns: repeat(3, 0fr);
  grid-gap: 10px;
  max-width: 1300px;
  margin: 48px auto 0;
}

.news-container .news-content .news-item {
  flex: 1;
  width: 415px;
  height: 510px;
  cursor: pointer;
  background: #F6F6F6;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.news-container .news-content .news-item:hover {
  text-decoration: none;
  color: inherit;
}

.news-container .news-content .news-item:hover img {
  transform: scale(1.1);
}

.news-container .news-content .news-item .news-item-btn {
  margin-top: 106px;
  font-size: 14px;
  color: #666B75;
  text-transform: uppercase;
  cursor: pointer;
}

.news-container .news-content .news-item .news-item-btn span {
  margin: 0 20px 0 34px;
}

.news-container .news-content .news-item .news-item-btn i {
  font-size: 15px;
  color: #666B75;
}

.news-container .news-content .news-item:nth-child(2) {
  margin: 0 20px;
}

.news-container .news-content .news-item .time {
  color: #666B75;
  margin: 20px 0 9px 34px;
  font-size: 14px;
  font-weight: 600;
}

.news-container .news-content .news-item .info {
  margin: 0 34px;
  font-size: 18px;
  color: #000000;
  font-weight: 400;
  height: 54px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
}

.news-container .news-content .news-item-img {
  width: 415px;
  overflow: hidden;
  height: 263px;
}

.news-container .news-content .news-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.5s;
}

.news-container .news-content .news-item p {
  margin-left: 34px;
}

.news-container .news-btn {
  display: block;
  width: 170px;
  height: 44px;
  margin: 61px auto 58px;
  cursor: pointer;
  background: #FFFFFF;
  color: #000000;
  line-height: 44px;
  text-align: center;
  border-radius: 8px;
  border: 2px solid #cccccc;
  position: relative;
}

.news-container .news-btn span {
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
  color: #000000;
}

.news-container .news-btn i {
  font-size: 15px;
  color: #000000;
}

.news-container .news-btn:hover {
  border: none;
  background: #e6e6e6;
}

/*# sourceMappingURL=index.css.map */

/* @media (max-width:1200px){
  .range-container {
    grid-template-columns: repeat(2, 0fr);
  }
  .news-container .news-content{
    grid-template-columns: repeat(2, 0fr);

  }
} */
@media (min-width: 1025px) {
  .carousel-slide,.publicize-carousel-slide,.range-card {
    background-image: var(--desktop-bg);
  }
  .OPI{
    background-image: url("https://oss-official-website.doorunhealth.com/assets/OPI.png");

  }
}
@media (max-width: 1024px) {
  .service-item-content{
    padding: 0 16px;
  }
  .OPI{
    margin-top: 80px;
    padding: 23px 0 0 16px;

    height: 180px;
    background-image: url("https://oss-official-website.doorunhealth.com/assets/mobile-OPI.jpg");
  }
  .carousel-container{
    height: 350px;
  }
  .carousel-slide,.publicize-carousel-slide,.range-card {
    background-image: var(--mobile-bg);
  }
  /*.range-container {*/
  /*  !* width: 100%; *!*/
  /*  margin: 0 auto;*/
  /*  grid-template-columns: repeat(2, 0fr);*/

  .carousel-info{
    margin: 34px auto;
  }
  .service-information-top{
    margin: 34px auto;
  }
  .service-information{
    margin: 34px auto;

  }
  .news-container{
    margin: 34px auto;
  }
  /*}*/
  .range-container {
    /* width: 100%; */
    justify-content: center;
    grid-template-columns: repeat(1, 1fr);
    padding: 0 16px;

  }
  .range-container .range-card {
    width: 100%;
    height: 450px;
    padding: 0 16px;

  }
  .range-container .range-card:nth-child(2){

  }
  .range-container .range-card .range-description{
    width: 287px;
  }
  .publicize-carousel-indicators {
    width: 100%;
    justify-content:center;
    grid-template-columns: repeat(2, 0fr);
    bottom: 0;
  }
  .service-information .service-information-top .service-item:nth-child(2) {
    margin: 0;
  }
  .service-information .service-information-top .service-item .service-item-content p{
    height: auto;
  }


  .publicize-slide-content  .publicize-slide-content-item{
    margin: 33px auto 0;
    width: 100%;
    /* align-items: center */
    padding-left: 16px;


  }
  .publicize-slide-content  .publicize-slide-content-item .publicize-slide-title{
    font-size: 24px;
    line-height: 24px;
    height: auto;
    width: 200px;
  }
  .publicize-slide-content  .publicize-slide-content-item .publicize-slide-summarize{
    font-size: 18px;
    line-height: 18px;
    margin: 16px 0 25px;
    height: 18px;
    display: block;
  }
  .publicize-slide-content  .publicize-slide-content-item .publicize-slide-subtitle{
    font-size: 16px;
    line-height: 16px;
  }
  .service-information .service-information-top{
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .service-information .service-information-top .service-item:first-child {
    height: 100px;
  }
  .service-item {
    width: 100%;
  }
  .first-item{
    width: 100%;
  }
  .first-item p{
    text-align: center;
  }
  .first-item .info{
    /* justify-content: center; */
    justify-content: center !important;
  }
  .service-information .service-information-bottom{
    width: 100%;
    object-fit: cover;
    padding: 0 16px;
  }
  .OPI .OPI-text{
    width: 100%;
  }
  .OPI .OPI-text .label{
    font-size: 18px;
    line-height: 18px;
  }

  .OPI .OPI-text .title {
    margin: 10px 0;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
  }

  .OPI .OPI-text .info {
    font-size: 8px;
    font-weight: 400;
    color: #FFFFFF;
  }
  .OPI .OPI-text .info span {
    font-size: 16px;
    margin: 0 5px;
    color: #FFC600;
  }
  .OPI .OPI-text .btn-container{
    margin-top: 10px;
  }
  .news-container .news-content{
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0 16px;


  }
  .news-container .news-content .news-item{
    width: 100%;
    height: 384px;
    margin: 20px 0;
    padding-bottom: 20px;
  }
  .news-container .news-content .news-item:nth-child(2){
    margin: 0;
  }
  .publicize-carousel-wrapper{
    height: 330px;
    margin-top: 60px;
  }
  .publicize-carousel-track{
    height: 300px;
  }
  .publicize-indicator {
    width: 100px;
    height: 100px;
  }
  .service-information .service-information-bottom p{
    white-space: wrap;
    position: static;
    color: #000000;
    text-align: center;
  }
  .news-container .news-content .news-item-img{
    width: 100%;
    height: 198px;
  }
  .service-information .service-information-bottom{
    margin-top: 24px;
  }



}


