:root {
  --content-width: 800px;
}

@media (max-width: 768px) {
  :root {
    --content-width: 100%;
  }
}

html,body {
  padding: 0;
  margin: 0;
  height: 100%;
  font-size: 12px;
  font-family: 'Microsoft Yahei';
  color: #333;
  background: linear-gradient(to bottom, #D1FFDC 0%, #fff 650px);
  background-repeat: no-repeat;
}

p {
  margin: 0;
}

img {
  width: 100%;
  height: 100%;
}

.index-page {
  padding-top: 20px;
  margin: 0 auto;
}
.header {
  width: var(--content-width);
  margin: 0 auto;
}
.header .title {
  position: relative;
  line-height: 40px;
}
.header .title .logo-wrap {
  display: flex;
  align-items: center;
  font-size: 20px;
}
.header .title .logo {
  margin-right: 5px;
  width: 93px;
  height: 30px;
}
.header .lang {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 40px;
}
.home {
  width: var(--content-width);
  margin: 0 auto;
}

/* 菜单样式 */
.menu .menu-wrap {
  text-align: right;
  position: relative;
  width: var(--content-width);
  margin: 0 auto;
  z-index: 1000;
  padding: 10px 0;
}

/* 吸顶样式 */
.menu .menu-wrap.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu .menu-wrap.sticky .web-menu{
  width: var(--content-width);
  margin: 0 auto;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 .menu .menu-wrap .menu-item {
  display: inline-block;
  margin: 0 5px;
  padding: 3px 8px;
  color: #333;
  text-decoration: none;
}
.menu .menu-wrap .menu-item-active {
  color: #1CCE98;
  border-bottom: 2px solid  #1CCE98;
}

/* 移动端菜单 */
.menu-phone {
  display: none;
  position: relative;
}

.menu-phone .icon {
  display: block;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.menu-phone .icon::before,
.menu-phone .icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1CCE98;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-phone .icon::before {
  top: 0;
}

.menu-phone .icon::after {
  bottom: 0;
}

.menu-phone .icon .line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1CCE98;
  border-radius: 2px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

/* 汉堡图标动画效果 */
.menu-phone.active .icon::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-phone.active .icon::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.menu-phone.active .icon .line {
  opacity: 0;
}

.menu-phone .download-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.menu-phone.active .download-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-phone .download-menu div {
  border-bottom: 1px solid #f0f0f0;
  background-color: #fff;
}

.menu-phone .download-menu div:last-child {
  border-bottom: none;
}

.menu-phone .download-menu .menu-item {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
}

.menu-phone .download-menu .menu-item:hover {
  background-color: #fff8f0;
  color: #1CCE98;
  padding-left: 25px;
}

.menu-phone .download-menu .menu-item-active {
  color: #1CCE98;
  font-weight: bold;
}

.statistic {
  width: var(--content-width);
  margin: 0 auto 30px;
  padding: 0px 70px;
}
.statistic-wrap {
  text-align: center;
}
.statistic-item {
  display: inline-block;
  padding: 7px 20px;
  color: #fff;
  background-color: #00D2D3;
  font-size: 34px;
  font-weight: bolder;
  border-radius: 10px;
}
.statistic-item.year {
  background-color: #FF6B6B;
}
.statistic-item.school {
  background-color: #FECA57;
}
.statistic-item.student {
  padding: 7px 15px;
  background-color: #54A0FF;
}
.statistic-label {
  margin-top: 10px;
  font-weight: bold;
}
/* ==================== 合作伙伴 Logo 展示 ==================== */
.all-project {
  position: relative;
  width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 13px;
  padding: 40px 0;
}

.project-icon {
  width: 100px;
  height: auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, z-index 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

/* 奇数图标 - 向下偏移 */
.project-icon:nth-child(odd) {
  transform: translateY(20px);
  z-index: 1;
}

/* 偶数图标 - 向上偏移 + 重叠效果 */
.project-icon:nth-child(even) {
  transform: translateY(-15px);
  z-index: 2;
  margin: 0 -25px;
}

/* 第一个图标恢复左边距 */
.project-icon:first-child {
  margin-left: 0;
}

/* 最后一个图标恢复右边距 */
.project-icon:last-child {
  margin-right: 0;
}

/* 桌面端每个图标的动画设置 */
.project-icon:nth-child(1) { animation: floatIcon1 2.5s ease-in-out infinite; animation-delay: -1.25s; }
.project-icon:nth-child(2) { animation: floatIcon2 3.2s ease-in-out infinite; animation-delay: -0.9s; }
.project-icon:nth-child(3) { animation: floatIcon3 2.8s ease-in-out infinite; animation-delay: -0s; }
.project-icon:nth-child(4) { animation: floatIcon4 3.5s ease-in-out infinite; animation-delay: -1.45s; }
.project-icon:nth-child(5) { animation: floatIcon5 2.7s ease-in-out infinite; animation-delay: -0.25s; }
.project-icon:nth-child(6) { animation: floatIcon6 3.8s ease-in-out infinite; animation-delay: -1.4s; }
.project-icon:nth-child(7) { animation: floatIcon7 2.9s ease-in-out infinite; animation-delay: -0.05s; }
.project-icon:nth-child(8) { animation: floatIcon8 3.4s ease-in-out infinite; animation-delay: -0.8s; }

/* 鼠标悬停 - 暂停动画并放大 */
.project-icon:hover {
  animation-play-state: paused;
  transform: translateY(0) scale(1.15) !important;
  z-index: 10 !important;
  margin: 0 !important;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

/* 桌面端浮动动画 - 奇数图标 (基础位置: 20px) */
@keyframes floatIcon1 {
  0%, 100% { transform: translateY(20px); }
  50% { transform: translateY(10px); }
}
@keyframes floatIcon3 {
  0%, 100% { transform: translateY(20px); }
  50% { transform: translateY(12px); }
}
@keyframes floatIcon5 {
  0%, 100% { transform: translateY(20px); }
  50% { transform: translateY(8px); }
}
@keyframes floatIcon7 {
  0%, 100% { transform: translateY(20px); }
  50% { transform: translateY(14px); }
}

/* 桌面端浮动动画 - 偶数图标 (基础位置: -15px) */
@keyframes floatIcon2 {
  0%, 100% { transform: translateY(-15px); }
  50% { transform: translateY(-25px); }
}
@keyframes floatIcon4 {
  0%, 100% { transform: translateY(-15px); }
  50% { transform: translateY(-22px); }
}
@keyframes floatIcon6 {
  0%, 100% { transform: translateY(-15px); }
  50% { transform: translateY(-28px); }
}
@keyframes floatIcon8 {
  0%, 100% { transform: translateY(-15px); }
  50% { transform: translateY(-24px); }
}

/* ==================== 移动端适配 ==================== */
@media (max-width: 786px) {
  .all-project {
    gap: 5px;
    padding: 20px 0;
    justify-content: flex-start;
  }

  .project-icon {
    width: calc(25% - 4px);
    margin: 0 !important;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  /* 移动端动画 - 重置桌面端动画并应用移动端动画 */
  .project-icon:nth-child(1) { animation: floatMobile1 2.5s ease-in-out infinite; animation-delay: -1.25s; }
  .project-icon:nth-child(2) { animation: floatMobile2 3.2s ease-in-out infinite; animation-delay: -1.1s; }
  .project-icon:nth-child(3) { animation: floatMobile3 2.8s ease-in-out infinite; animation-delay: -0.4s; }
  .project-icon:nth-child(4) { animation: floatMobile4 3.5s ease-in-out infinite; animation-delay: -1.45s; }
  .project-icon:nth-child(5) { animation: floatMobile5 2.7s ease-in-out infinite; animation-delay: -0.15s; }
  .project-icon:nth-child(6) { animation: floatMobile6 3.8s ease-in-out infinite; animation-delay: -1.2s; }
  .project-icon:nth-child(7) { animation: floatMobile7 2.9s ease-in-out infinite; animation-delay: -0.05s; }
  .project-icon:nth-child(8) { animation: floatMobile8 3.4s ease-in-out infinite; animation-delay: -0.8s; }

  /* 移动端悬停效果 */
  .project-icon:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
}

/* ==================== 移动端浮动动画 ==================== */
@keyframes floatMobile1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatMobile2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatMobile3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes floatMobile4 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatMobile5 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes floatMobile6 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

@keyframes floatMobile7 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes floatMobile8 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}




/* 响应式：在移动端显示汉堡菜单 */
@media (max-width: 767.98px) {
  .menu .web-menu {
    display: none;
  }

  .menu-phone {
    display: block;
  }
}

/* 语言切换样式 */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switcher .lang-item {
  cursor: pointer;
  padding: 2px 8px;
  color: #666;
  transition: all 0.3s;
  user-select: none;
}

.lang-switcher .lang-item:hover {
  color: #1CCE98;
}

.lang-switcher .lang-item.active {
  color: #1CCE98;
  font-weight: bold;
}

.lang-switcher .divider {
  color: #ddd;
  font-size: 12px;
}
.content .home{
  margin-top: 40px;
}

.home .home-img{
  position: relative;
  padding: 0 10px;
}

.home .home-img .home-pic {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.home .home-img .play-icon {
  position: absolute;
  top: 45%;
  left: 43%;
  z-index: 0;
  width: 40px;
  height: 40px;
  /* margin-top: -50%;
  margin-left: -50%; */
  /* transform: translateX(-25px);
  transform: translateY(-25px); */
}

.home .home-text {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-text .large-text {
  font-size: 40px;
  font-weight: bold;
}
.text-bg {
  display: inline-block;
  padding: 3px 5px;
  background-size:100% 100%;
  background-repeat: no-repeat;
  color: #fff;
}

.home-text .highlight-text {
  background-image: url('./assets/text-bg-with-us.png');
  padding: 3px 5px;
}

.home-text .highlight-text-level {
  background-image: url('./assets/text-bg-level-read.png');
  padding: 3px 0px 3px 5px;
}
.text-content-1 {
  background-image: url('./assets/text-bg-content-title-1.png');
  padding: 3px 5px;
}
.home-text .sub-text {
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.6;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  background-color: #FF9F43;
  box-shadow:0 4px 0px 0px #E67E22;
  border-radius: 30px;
  cursor: pointer;
  color: #fff;
}
.btn .btn-special {
  margin: 0 5px;
  font-size: 30px;
  color: #fff;
}
.home .home-btn {
  width: 100%;
}
.content .reason {
  margin: 30px 0;
}
.module-wrap .title-item{
  padding-bottom: 20px;
  text-align: center;
}

 .module-wrap .title-item .main-title{
  padding: 50px 0 20px;
  font-size: 32px;
  font-weight: bold;
}
.module-wrap .title-item>p{
  font-size: 14px;
  color: #555;
}
.authors {
  width: var(--content-width);
  margin: 30px auto;
}

.author {
  padding: 40px 20px;
  border-radius: 15px;
}
.authors .el-col:first-child {
  padding-right: 20px;
}
.authors .el-col:last-child {
  padding-left: 20px;
}
.irene {
  background-color: #FECA57;
}
.gay {
  background-color: #1CCE98;
}

.has-samebackground {
 background: linear-gradient(#D1FFDC,#fff );
}
.text-content-2 {
  background-image: url('./assets/text-bg-content-title-2.png');
  padding: 3px 0px 3px 5px;
}

.a-z {
  width: var(--content-width);
  margin: 40px auto;
}

.module-wrap .tips {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: #898989;
}

.doll-info {
  width: var(--content-width);
  margin: 20px auto 20px;
}
.doll-info .doll-item {
  display: inline-flex;
  padding: 15px 10px;
}
.doll-info .right-icon, .doll-info .up-level-icon {
  display: inline-block;
  margin-right: 10px;
  width: 30px;
}
.doll-info .doll-title {
  text-align: center;
  color: #181715;
}
.doll-info .doll-title span {
  display: inline-block;
  padding: 2px 18px;
  background-color: #FECA57;
  font-size: 20px;
  font-weight: bold;
  border-radius: 16px;
}
.doll-info .pay-more span {
  background-color: #00D2D3;
}
.doll-info .doll-list {
  margin-top: 20px;
  font-size: 18px;
}
.doll-info .right-now {
  margin-top: 40px;
  text-align: center;
}
.doll-info .right-now .student-count{
  margin-top: 10px;
  color: #666;
  font-size: 12px;
}

.doll-info  .doll-btn {
  padding: 5px 40px;
  font-size: 22px;
}
.focuse .focuse-content {
  width: var(--content-width);
  margin: 0 auto;
  padding: 60px 0;
}
.focuse .focuse-content .focuse-item {
  width: 240px;
  text-align: center;
}
.focuse .focuse-content .focuse-item .focuse-img-wrap{
  width: 100%;
  margin-bottom:20px;
  border-radius: 10px;
}
.focuse .focuse-content .focuse-item span{
  color: #666;
}
.question .question-content {
  width: var(--content-width);
  margin: 20px auto 10px;
  text-align: center;
}

.question .question-content .question-img{
  width: 80%;
}

.user .user-content {
  width: var(--content-width);
  margin: 20px auto 40px;
  /* text-align: center; */
}

.user .user-content .users{
  width: 80%;
  margin: 0 auto;
}
.user-item {
  text-align: right;
}
.user-item:nth-child(odd) {
  text-align: left;
}
.user-item:nth-child(2) {
  margin-top: -30px;
}
.user-item:nth-child(3) {
  margin-top: -10px;
}
.user-item:nth-child(4) {
  margin-top: -30px;
}
.user-item .user-say{
  width: 80%;
}

.connect {
  padding-bottom: 100px;
  background: linear-gradient(#D1FFDC,#fff );

}
.connect .table-wrap {
  /* display: flex;
  justify-content: space-between; */
  margin-top: 40px;
  width: var(--content-width);
  margin: 40px auto;
}

.table-wrap .table-card {
  box-sizing: border-box;
  padding: 30px 20px;
  width: 100%;
  /* max-width: 380px; */
  border-radius: 8px;
  background: #fff;
  box-shadow:  0 2px 8px rgba(218, 221, 223, 1);
}
.table-wrap .form .form-item {
  margin-bottom: 15px;
}
.table-wrap .form .form-item .lable{
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

.table-wrap .form .form-item .form-input{
  box-sizing: border-box;
  margin: 0;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  transition: all 0.3s;

  box-shadow: 0 2px 2px 2px rgba(218, 221, 223, 0.35);
}
.form .form-item .form-input::-webkit-input-placeholder {
  color: #bfbfbf;
}

.form .form-item .form-input:focus {
  border-color: #40a9ff;
  border-right-width: 1px;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.table-wrap .form .form-item .form-textarea {
  height: inherit;
}

.form .form-item .submit {
  width: 100%;
  background-color: #ffb30f;
  color: #fff;
  padding: 6px 0;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  font-size: 18px;
  border-color: transparent;
}

.form .form-item .select {
  width: 100%;
}

.company-info {
  width: 100%;
}
.company-info .company {
  padding: 30px 20px  10px;
}
.company .company-name {
  font-size: 20px;
  margin-bottom: 20px;
}
.company .address, .phone, .email {
  font-size: 16px;
  line-height: 50px;
}
.all-cartoon {
  margin-top: 20px;
}
.connect .footer {
  width: var(--content-width);
  margin: 0 auto;
  padding-top: 40px;
}
.footer  .logo-wrap {
  display: flex;
  align-items: center;
  font-size: 20px;
}
.footer .logo {
  margin-right: 5px;
  width: 93px;
  height: 30px;
}
.connect .footer .public {
  font-size: 10px;
  margin-left: 40px;
}

.text-content-3 {
  background-image: url('./assets/text-bg-content-title-3.png');
}
.text-content-4 {
  background-image: url('./assets/text-bg-content-title-4.png');
}
.text-content-5 {
  background-image: url('./assets/text-bg-content-title-5.png');
}
.text-content-6 {
  background-image: url('./assets/text-bg-content-title-6.png');
}


/* 走马灯样式 */

.carousel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--content-width);
  margin: 40px auto 0;
}

.carousel {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 650px;
}

.carousel-container {
  overflow: hidden;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.step-card {
  background: transparent;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.step-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: #ffb30f;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  user-select: none;
  z-index: 10;
}

.carousel-arrow:hover {
  background-color: #ffb30f;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 179, 15, 0.4);
}

.carousel-arrow-left {
  left: 10px;
}

.carousel-arrow-right {
  right: 10px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background-color: #ffb30f;
  width: 30px;
  border-radius: 5px;
}

.indicator:hover {
  background-color: #ffb30f;
}


[class*=el-col-]{
  display: flex;
  justify-content: center;
}

.menu-phone {
  display: none;
}
.chat-icon {
  position: fixed;
  top:500px;
  right: 60px;
  width: 40px;
  z-index: 1000;
}
.en .home-text .large-text {
  font-size: 32px;
}
.en .home-text .sub-text {
  font-size: 12px;
}
.en .module-wrap .title-item {
  padding: 0 40px 20px;
}
.en .module-wrap .title-item .main-title {
  font-size: 30px;
}

@media (max-width: 786px) {
  .company-info {
    margin-top: 30px;
  }
  .carousel {
    width: 100%;
  }
  .carousel-wrap {
    margin-top: 20px;
  }
  .carousel-item {
    padding: 0 5px;
  }
  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  .carousel-arrow-left {
    left: 5px;
  }
  .carousel-arrow-right {
    right: 5px;
  }
  .web-menu {
    display: none;
  }
  .menu-phone {
    position: relative;
    display: block;
  }
  .menu-phone .icon {
    display: inline-block;
    margin-right: 20px;
  }
  .download-menu {
    position: fixed;
    background-color: #00bcd4;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9998;
  }
  .authors {
    margin: 0  auto;
  }
  .authors .el-col:first-child {
    padding: 0 40px;
  }
   .authors .el-col:last-child {
    padding: 10px 40px 0;
  }
  .doll-item-wrap {
    padding: 0px 20px 20px;
  }
  .doll-info .doll-list {
    margin-top: 10px;
  }
  .doll-info .right-now {
    margin-top: 20px;
  }
  .focuse .focuse-content {
    padding: 0px 20px;
  }
  .focuse .focuse-content .focuse-item {
    margin-bottom: 20px;
  }
  .focuse .focuse-content .focuse-item .focuse-img-wrap {
    margin-bottom: 10px;
  }
  .content .reason {
    margin-bottom: 0;
  }
  .module-wrap .title-item .main-title {
    padding: 20px 0;
    font-size: 26px;
  }
  .module-wrap .title-item>p {
    padding: 0 20px;
    font-size: 12px;
  }
  .question .question-content .question-img {
    width: 95%;
  }
  .user-item:nth-child(2) {
    margin-top: -5%;
  }
  .user-item:nth-child(3) {
    margin-top: -2%;
  }
  .user .user-content {
    margin: 0 auto 20px;
  }
  .user-item:nth-child(4) {
    margin-top: -5%;
  }
  .user .user-content .users {
    width: 98%;
  }
  .user-item .user-say {
    width: 90%;
  }
  .statistic {
    padding: 0 30px;
  }
  .statistic-wrap {
    margin-bottom: 10px;
  }
  .doll-info {
    margin: 0 auto 20px;
  }
  .home .home-text {
    padding: 10px 30px
  }
  .home-text .large-text {
    margin-left: 20px;
    font-size: 32px;
  }
  .home-text .sub-text {
    margin: 20px 0;
    font-size: 12px;
  }
  .btn {
    font-size: 22px;
  }
  .chat-icon {
    right: 10px;
    width: 35px;
  }
  .en .home-text .large-text {
    margin-left: 0;
  }
}