@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');

:root {
  --main-color: #56C4C5;
  --secondary-color: #FF5D50;
  --text-color: #221E1F;
  --text-color-gray: #747474;
  --btn-text-color: #FFFFFF;
  --shadow-color: #00000014;
  --line-color: #DDDDDD;
  --dot-color: #FFD153;
  --charge-bg: #F7F9FD;
  --calculation-bg-color: #F5F5F5;
}

*, ::before ,::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
/*   outline: 1px solid #221E1F; */
}

html, body {
  font-family: 'Noto Sans TC', sans-serif;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  max-width: 100%;
}

section {
  max-width: 1366px;
  margin: 0 auto;
}

.container {
  max-width: 1128px;
  padding: 0 1.5%;
  margin: 0 auto;
}

.btn {
  padding: 8px 32px;
  color: var(--btn-text-color);
  border-radius: 22px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

ul {
  list-style: none;
}

/* header section */
.header {
  background-image: url(../images/bg_home.svg);
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
  top: 0; 
  right: 0;
  width: 100%;
  height: 768px;
  z-index: -10;
  position: relative;
  overflow: hidden;

  padding-top: 88px;
}

.header::before {
  content: '';
  background-image: url(../images/ball01.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 300px;
  height: 300px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
  z-index: -10;
}

nav {
  width: 100%;
  padding: 24px 0;

  position: absolute;
  margin: 0 auto;
}

.nav-set {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav img {
  height: 40px;
}

nav a {
  background-color: var(--secondary-color);
}

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

.hero-content {
  flex: 1;
  padding: 20px;
  min-width: 360px;
}

.main-color {
  color: var(--main-color);
  font-size: 18px;
}

.hero-content h1{
  font-size: 48px;
  margin-top: 8px;
}

.hero-content p {
  font-size: 18px;
  margin-top: 16px;
}

.hero-img {
  flex: 1;
  padding: 20px;
  min-width: 360px;
}

/* platform secstion */
.platform {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 100px;
}

.platform::before {
  content: '';
  background-image: url(../images/ball01.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 300px;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: -10;
}

.social-platforms {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.platform-card {
  width: 345px;
  padding: 20px;
}

.platform-card img{
  width: 90px;
  height: auto;
  vertical-align: middle;
}

.platform-card h3 {
  font-size: 24px;
  margin-top: 24px;
}

.platform p {
  font-size: 16px;
  margin-top: 24px;
  color: var(--text-color-gray);
  padding: 0 33px;
}

/* service section */
.service {
  margin-top: 100px;
  text-align: center;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.service::after {
  content: '';
  background-image: url(../images/ball02.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 300px;
  height: 300px;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  z-index: -10;
}

.service-content {
  font-size: 20px;
  margin-top: 16px;
}

.service-cards {
  margin-top: 48px;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
}

.service-card {
  width: 260px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow-color);
  background-color: var(--btn-text-color)
}

.service-card img {
  vertical-align: middle;
}

.service-main-color {
  color: var(--main-color);
  margin-top: 16px;
}

.service-card-text {
  padding: 16px 16px 24px 16px;
}

/* customer section */
.customer {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.customer::after {
  content: '';
  background-image: url(../images/ball02.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 300px;
  height: 300px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  z-index: -10;
}

.customer-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.customer-cards {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  min-width: 530px;
}

.customer-card {
  width: 230px;
  padding: 32px 32px 48px 32px;
  box-shadow: 0 2px 10px var(--shadow-color);
  border-radius: 10px;
}

.card-icon {
  display: inline-block;
  border-radius: 50%;
  padding: 15px;
  background-color: var(--btn-text-color);
  box-shadow: 0 2px 10px var(--shadow-color);
}

.customer-card img {
  width: 50px;
  height: auto;
  vertical-align: middle;
}

.customer-card h4 {
  margin-top: 24px;
}

.customer-card p {
  margin-top: 16px;
}

.customer-content {
  flex: 1;
  padding: 20px;
  min-width: 530px;
}

.customer-content p {
  margin-top: 16px;
}

.customer-content a {
  margin-top: 24px;
  background-color: var(--main-color);
}

/* comment section */
.comment {
  margin-top: 100px;
}

.comment h2 {
  text-align: center;
}

.comment-cards {
  margin-top: 90px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.comment-card {
  width: 345px;
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow-color);
  padding: 48px 32px 24px 32px;
  position: relative;
}

.comment-card .user-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;

  position: absolute;
  top: -50px;
  left: 32px;
}

.border-line {
  height: .1px;
  width: 100%;
  border: .1px solid var(--line-color);
  margin: 24px 0;
}

.user {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.company {
  font-weight: bold;
  margin-bottom: 8px;
}

.starts img {
  width: 18px;
  height: auto;
}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
}

.dot {
  margin-top: 24px;
  height: 10px;
  width: 10px;
  background-color: var(--line-color);
  border-radius: 50%;
}

.dot:last-child {
  width: 15px;
  border-radius: 5px;
  background-color: var(--dot-color);
}

/* experience section */
.experience {
  margin-top: 100px;
  text-align: center;
  background-image: url(../images/home_footer.svg);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
}

.experience h2 {
  padding-top: 300px;
}

.experience a {
  margin-top: 48px;
  background-color: var(--main-color);
}

/***** Charge Page *****/

.charge-header {
  position: relative;
  width: 100%;
  height: 560px;
}

.charge-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--charge-bg);
  border-radius: 0 0 0 300px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 470px;
  z-index: -5;
}

.charge-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../images/banner.svg);
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  width: 885px;
  height: 560px;
  z-index: -5;
}

.charge-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.charge-content p {
  margin-top: 16px;
}

/* charge-price section */
.charge-price {
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  overflow: hidden;
}

.charge-price::before {
  content: '';
  background-image: url(../images/ball03.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 360px;
  height: 360px;
  position: absolute;
  top: 25%;
  left: -15%;
  z-index: -10;
}

.quota-card {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  font-size: 18px;
}

.quota-card-active {
  background-color: var(--main-color);
  color: var(--btn-text-color);
  font-size: 18px;
}

.price-quota {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;;
  flex-wrap: wrap;
  gap: 16px;
}

.price-cards {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px
}

.price-card {
  width: 445px;
  border-radius: 12px;
  box-shadow: 0px 2px 10px var(--shadow-color);
  background-color: var(--btn-text-color);
}

.price-card h3 {
  padding: 16px 0 16px 0;
}

.line {
  width: 100%;
  height: .2px;
  background-color: var(--line-color);
}

.price-card p {
  margin: 32px 0 32px 0;
}

.price-calculation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.calculation {
  padding: 32px 24px;
  background-color: var(--calculation-bg-color);
  border-radius: 12px;
}

.calculation-text {
  font-size: 12px;
}

.calculation-people {
  font-size: 32px;
  color: var(--main-color);
}

.calculation-people span {
  font-size: 12px;
}

.equal {
  font-size: 29px;
  margin: 0 21px 0 21px;
}

.calculation-money {
  font-size: 32px;
}

.calculation-money span {
  font-size: 12px;
}

.price-card ul{
  margin: 32px 29px 0 29px;
  text-align: left;
  font-size: 16px;
}

.price-card ul li {
  margin-bottom: 16px;
}

.price-card ul li:last-child {
  margin-bottom: 0;
}

.price-card .quota-card-active {
  margin: 42px 0 38px 0;;
}

.price-card ul li img {
  vertical-align: middle;
  margin-right: 12px;
}

/* normal-questions section */
.normal-questions {
  margin-top: 100px;
  text-align: center;
  margin-bottom: 100px;
}

.normal-questions-cards {
  margin-top: 48px;
}

.normal-question-card {
  margin-top: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  box-shadow: 0px 2px 10px var(--shadow-color);
  text-align: left;
}

.question-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.normal-question-card p {
  font-size: 18px;
}

.question-card-active {
  color: var(--main-color);
  font-weight: bold;
}

.question-card-text-active {
  margin-top: 24px;
  color: var(--text-color-gray);
  text-align: left;
}

/* all fooer section */
.footer {
  text-align: center;
  padding: 16px 0;
  background-color: var(--line-color);
}

@media (max-width: 1200px) {
  .header {
    height: 700px;
  }
}

@media (max-width: 1090px) {
  /* 1090 comment section */
    .comment-cards .comment-card:last-child {
      display: none;
    }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 3%;
  }

  /* 1024 header section */

  .header {
    height: 600px;
  }

  .header::before {
    width: 200px;
    height: 200px;
    transform: translate(-60%, 50%);
  }

  .hero-content h1 {
    font-size: 32px
  }

  /* 1024 platfrom section */

  .platform::before {
    width: 200px;
    height: 200px;
    transform: translate(-60%, -50%);
  }

  .social-platforms {
    gap: 24px;
  }

  /* 1024 service section */
  .service-cards {
    gap: 24px;
  }

  /* 1024 customer section */
  .customer-inner {
    flex-direction: column-reverse;
  }

  .customer-content {
    text-align: center;
  }

  /* 1024 experience section */
    .experience {
    height: 400px;
    }

    .experience h2 {
      padding-top: 220px;
    }
}

@media (max-width: 850px) {
  /* 820 header section */
  .header {
    height: 510px;
  }
}

@media (max-width: 768px) {
  .btn {
    padding: 8px 32px;
    border-radius: 22px;
  }

   /* 768 header section */
   .header {
    background-image: none;
    height: auto;
    padding-top: 0;
  }

  .header::before {
    background-image: none;
  }

  nav {
    background-color: var(--btn-text-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    border-bottom: 3px solid var(--dot-color);
    width: 100%;
    padding: 16px 20px;
  }

  nav img {
    height: 24px;
  }

  .hero {
    margin-top: 70px;
    flex-direction: column;
  }

  .hero-content {
    text-align: center;
    min-width: 100%;
    height: auto;
  }

  .hero-img {
    width: 70%;
    position: relative;
  }

  .hero-img::after {
    content: '';
    background-image: url(../images/bg_home_sm.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 35px;
    left: 0;
    z-index: -10;
  }
  /* 768 platform section */

  .platform::before {
    top: 75px;
    width: 150px;
    height: 150px;
  }

  /* 768 customer section */
  .customer-cards {
    min-width: 100%;
  }

  .customer-content {
    min-width: 100%;
  }

  /* 768 comment section */
  .comment {
    margin-top: 60px;
  }
  
  .comment-cards {
    margin-top: 88px;
  }
  
  .comment-card:nth-child(2) {
     display: none;
  }

  /* 768 experience sextion */
  .experience {
    height: 300px;
  }
  
  .experience h2 {
    padding-top: 160px;
  }

  .experience a {
    margin-top: 24px;
  }

  /* 768 charge header page */
  .charge-content {
    top: 60%;
  }
}

@media (max-width: 425px) {
  h1 {
      font-size: 28px;
    }

  h2 {
    font-size: 28px
  }

  h3 {
    font-size: 18px;
  }

  /* 425 header section */
  .hero-content {
    text-align: left;
  }
 

  /* 425 platform section */
  .platform {
    padding-top: 0;
    margin-top: 60px
  }

  .platform::before {
    width: 110px;
    height: 110px;
    top: 170px;
    left: 0;
    z-index: -10;
  }

  .platform-card img {
    width: 60px;
    height: auto;
  }

  /* 425 service section */
  .service {
    margin-top: 60px;
  }

  .service-content {
    font-size: 18px;
  }

  .service::after {
    width: 140px;
    height: 140px;
    bottom: 70px;
    right: 0;
    transform: translate(50%, 50%);
  }

  /* 425 customer section */
  .customer::after {
    background-image: none;
    width: 0;
    height: 0;
  }

  /* 425 experience section */
  .experience {
    background-image: url(../images/footer_sm.svg);
    height: 460px;
  }
  
  .experience h2 {
    font-size: 24px;
    padding-top: 320px;
  }

  /* 425 charge-header section */
  .charge-header {
    width: 100%;
    height: 615px;
    margin-bottom: 60px;
  }

  .charge-header h1{
    font-size: 32px;
  }

  .charge-header::before {
    border-radius: 0 0 0 100px;
    width: 100%;
    height: 615px;
  }

  .charge-content {
    top: 30%;
  }

  .charge-header::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    background-image: url(../images/banner_sm.svg);
    background-position: top left;
    background-size: calc(100%);
    background-repeat: no-repeat;
    width: 100%;
    height: 555px;
  }

  /* 425 charge-price section */
  .price-card {
    width: 100%;
  }

  .calculation {
    padding: 16px 24px;
  }

  .price-card .quota-card-active {
    margin: 35px 24px;
  }

  .calculation-people {
    font-size: 28px;
  }

  .calculation-money {
    font-size: 28px;
  }

  .charge-price::before {
    width: 180px;
    height: 180px;
    top: 55%;
    left: -25%;
  }

  /* 425 normal-questions */
  .normal-questions {
    margin: 60px 0;
  }

  .normal-question-card p {
    font-size: 16px;
  }

  .normal-question-card {
    font-size: 16px;
    padding: 16px;
  }
}

@media (max-width: 375px) {
  .btn {
    padding: 6px 24px;
  }

  .experience h2 {
    padding-top: 280px;
  }

  /* 375 charge-header section */
  .charge-header {
    height: 550px;
  }

  .equal {
    font-size: 22px;
  }

  .charge-header::before {
    height: 550px;
  }

  .charge-header::after {
    height: 495px
  }
}

@media (max-width: 320px) {
  h2 {
    font-size: 22px
  }

  p {
    font-size: 16px;
  }

  .platform h3 {
    font-size: 20px; 
  }

  .btn {
    padding: 6px 18px;
  }


  .hero-img {
    min-width: 100%;
  }

  .experience {
    height: 380px;
  }

  .experience h2 {
    padding-top: 240px;
    font-size: 22px;
  }

  /* 320 charge-header section */
  .charge-header {
    height: 470px;
  }

  .charge-header h1 {
    font-size: 28px;
  }

  .charge-header::before {
    height: 470px
  }

  .charge-header::after {
    height: 420px;
  }

  /* 320 charge-price section */
  .calculation {
    padding: 8px 12px;
  }

  .charge-price::before {
    width: 120px;
    height: 120px;
    top: 55%;
    left: -25%;
  }

  .equal {
    margin: 0 16px 0 16px;
  }

  .calculation-people {
    font-size: 20px;
  }

  .calculation-money {
    font-size: 20px;
  }

}

/* 20220530修改 */
