body {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: #f5f5f5;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rubik", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
a {
  color: var(--text);
  text-decoration: none;
}
button {
  border: none;
}
img {
  max-width: 100%;
  max-height: 100%;
}
.radius-box {
  background-color: #fff;
  border-radius: 36px;
  padding: 5vw;
  margin-top: -30px;width: 90%;
}
.header {
  background: #f90 url(/images/bg-header.webp) repeat-x bottom;
}
.header.home {
  height: 600px;
}
.pr {
  position: relative;
}
.m {
  position: absolute;
  top: 50%;
  left: 600px;
}
.circle-2 {
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  width: 20vw;
  height: 20vw;
  position: absolute;
  top: -10vw;
  left: 500px;
}
.circle-1 {
  background: url(/images/circle-1.webp) no-repeat;
  position: absolute;
  left: -25%;
  width: 40vw;
  height: 30vw;
  background-size: cover;
  top: 20%;
}
.header h1 {
  font-size: 50px;
  color: #000;
  position: absolute;
  top: 30%;
  left: 40%;
}
@media (max-width: 768px) {
  .hidden-sm {
    display: none;
  }
  .header h1 {
    left: 5%;
    font-size: 36px;
  }
  .header.home {
    height: 450px;
  }
  .m {
    left: 200px;
  }
}
@media (max-width: 480px) {
  .hidden-xs {
    display: none;
  }
  .header.home {
    height: 400px;
  }
  .header h1 {
    top: 15%;
  }
  .circle-2,
  .m {
    left: 100px;
  }
  .circle-2 {
    width: 60vw;
    height: 60vw;
  }
  .circle-1 {
    bottom: 0;
    width: 60vw;
    height: 60vw;
    top: auto;
  }
}

.select {
  max-width: 660px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
}
.select div{padding: 0 5px;}
.select button {
  position: relative;
  overflow: hidden;width: 100%;
}
.select button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(135deg);

  z-index: 1;
}
.select button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -400%;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(135deg);

  z-index: 1;
}
.select button:hover::before,
.select button:hover::after {
  left: 150%;
  transition: all 0.8s ease 0.2s; /* 延迟0.2s */
}

.icon {
  display: block;
  background-position: center;
  margin: 10px auto;
}
.icon-happy {
  background-image: url(../images/happy-active.svg);
  width: 214px;
  height: 214px;
}
.icon-sad {
  background-image: url(../images/sad-active.svg);
  width: 214px;
  height: 214px;
}
@media(max-width:480px){.icon-sad,.icon-happy {
  width:100%;
  height:120px;background-repeat: no-repeat;background-size: 100% auto;
}}
.icon-happy-n {
  background-image: url(../images/happy.svg);
  width: 120px;
  height: 120px;
}
.icon-sad-n {
  background-image: url(../images/sad.svg);
  width: 120px;
  height: 120px;
}
.like {
  background-color: #f90;
  border-radius: 10px;
  display: block;
}
.nolike {
  background-color: #bbb;
  border-radius: 10px;
  display: block;
}
.gift {
  width: 500px;
}
.shake-img {
  animation: floatUpDown 1s ease-in-out infinite;
  cursor: pointer;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* 晃动幅度 */
  }
}

.header-n {
  max-height: 460px;
  overflow: hidden;
}
.header .girl img {
  max-height: 500px;
}
.header-n .girl img {
  max-height: 450px;
}
.header-n .circle-1 {
  top: 40%;
}

.btn-reviews {
  width: 300px;
  padding: 1rem 0;
  margin: 10px auto;
  background: url(/images/bg-btn-star.png) no-repeat;
  border: none;
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
  display: block;
  transition: 0.35s;
}

.btn-reviews:hover {
  background: url(/images/bg-btn-star-hover.png) no-repeat;
}

.info {
  max-width: 600px;
  margin: 10px auto;
  text-align: left;
}
.red {
  color: red;
}
.btn-nav button {
  display: flex;
  gap: 5px;
  background: #f5f5f5;
  border-radius: 5px;
  padding: 10px 45px;
  box-shadow: 5px 5px 10px #ccc;
  align-items: center;
}
.btn-nav {
  max-width: 1000px;
  margin: 10px auto;
}
.btn-nav button img {
  width: 24px;
}
.btn-nav button:first-child img {
  transform: rotate(180deg);
}
.btn-nav button:last-child {
  background-color: #fbc553;
}
.btn-nav button:last-child img {
  fill: #fff;
}

.icon-product {
  padding: 2vw;
  height: auto;
  margin-bottom: 30px;
}
.form-gift {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}
.form-gift .card {
  background: #fff;
  padding: 30px;
  border-radius: 0;
  border: none;
}
.form-gift .card:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  border-left: 1px solid #ccc;
}
label.radio {
  cursor: pointer;
}

.uploader {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding: 10px;
  margin: 10px 0px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  background-color: #33cccc;
  border-color: #33cccc;
  box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14),
    0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),
    background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  margin: 0 auto;
  justify-content: center;
}
.uploader input[type="file"] {
  display: none;
}
#filename {
  opacity: 0;
}
.uploader .custom-file-upload {
  border: none;
  background: transparent;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.form-group {
  margin: 1rem;
  align-items: center;
}

.header-no {
  flex-direction: row-reverse;
}
.header-no h1 {
  width: 70%;
  position: absolute;
  z-index: 3;
  left: 0;
}
@media (max-width: 480px) {
  .header-no h1 {
    width: 100%;
    position: relative;
    text-align: center;
  }
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}
.sad-reason .form-check,
.solutions .form-check,
.sad-reason .card {
  background: #fff;
  -webkit-box-shadow: 5px 7px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 5px 7px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 7px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 20px;
}

.sad-reason .form-check,
.solutions .form-check,
.sad-reason .card textarea {
  outline: none;
  border: none;
}
.sad-reason .form-check,
.otherreasion {
  margin: 0 0 30px 0;
  padding: 18px 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.sad-reason .form-check input[type="radio"] {
  width: 16px;
  height: 16px;
}
.sad-reason .form-check label {
  width: auto;
}
.active.form-check {
  background: #3cc;
  color: #fff;
}

.section {
  height: 100vh;
  display: none;
}
/* 默认显示第一部分 */
#section1 {
  display: block;
}

.section-back-button {
  height: 48px;
}

#section3-1 {
  background: #f90;
}
#section3-1 p {
  margin: 0;
}

.divp{border-top:2px dashed #fdc775;display: block;margin: 0 auto 2em;}
.btn-whatsapp{background: linear-gradient(to bottom, #e40ca3, #000);color:#FFF;border-radius: 20px;padding: 5px 20px;display: inline-block;margin-top: 10px;}
      .slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            background-color: #f5f5f5;
            padding: 20px 0;height: 240px;overflow:hidden;
        }        
 
        .slider-track {
            display: flex;
            width: max-content;
        }
        
        .slider-item {
            flex: 0 0 auto;
            width: 200px;
            margin: 0 15px;
            transition: transform 0.3s;
        }
        
        .slider-item:hover {
            transform: scale(1.05);
        }
        
        .slider-img {
            width: 100%;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .slider-caption {
            text-align: center;
            margin-top: 10px;
            font-size: 14px;
            color: #666;
        }