@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.limited-box {
  display: flex;
  justify-content: center;
}

.limited-box .limited-scope {
  width: 90%;
}

@media (min-width: 769px) {
  .limited-box .limited-scope {
    min-width: 1160px;
    max-width: 1600px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .limited-box .limited-scope {
    min-width: 300px;
    max-width: 440px;
  }
}

@media (min-width: 769px) {
  .limited-box .limited-scope-min {
    padding: 0 60px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .pc-element {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .phone-element {
    display: none !important;
  }
}

#openinstall_shadow {
  display: none !important;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 769px) {
  header nav {
    padding: 24px 60px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  header nav {
    padding: 16px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #ffffff;
  }
}

@media (min-width: 769px) {
  header nav .logo img {
    height: 38px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  header nav .logo img {
    height: 14px;
  }
}

header nav .menu {
  display: flex;
}

header nav .menu>img {
  margin-left: 24px;
}

header nav .menu .language {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 40px;
  position: relative;
}

@media (min-width: 769px) {
  header nav .menu .language img {
    margin-right: 10px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  header nav .menu .language {
    font-size: 12px;
  }

  header nav .menu .language img {
    height: 16px;
    margin-right: 4px;
  }
}

header nav .menu .language .select-language {
  border-radius: 4px;
  position: absolute;
  top: 28px;
  left: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 4px 10px 2px rgba(153, 153, 153, 0.3);
  display: none;
  padding: 5px 10px;
}

@media (min-width: 320px) and (max-width: 768px) {
  header nav .menu .language .select-language {
    padding: 2px 6px;
  }
}

header nav .menu .language .select-language::before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  width: 100%;
  height: 20px;
}

header nav .menu .language .select-language>div {
  text-align: center;
  padding: 5px 10px;
  white-space: nowrap;
  /* 可选：为了防止内容溢出容器，可以添加overflow属性 */
  overflow: hidden;
  transition: background-color 0.3s ease-in-out;
}

header nav .menu .language .select-language>div:hover {
  background: #fcdbc8;
}

header nav .menu .language:hover .select-language {
  display: block;
}

header nav .menu .language:hover .select-language::before {
  display: block;
}

@media (min-width: 320px) and (max-width: 768px) {
  header nav .menu #nav-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    left: 0;
    z-index: 999;
  }

  header nav .menu #nav-menu.hidden {
    top: -100%;
  }
}

header nav .menu ul {
  display: flex;
}

@media (min-width: 769px) {
  header nav .menu ul {
    align-items: center;
  }

  header nav .menu ul li {
    margin-left: 40px;
    display: flex;
    align-items: center;
  }

  header nav .menu ul li a {
    color: #333;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  header nav .menu ul {
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 16px 0;
    border-radius: 0 0 10px 10px;
  }

  header nav .menu ul li {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header nav .menu ul li.menu-active {
    background: rgba(255, 172, 124, 0.1);
  }

  header nav .menu ul li a {
    color: #333;
  }
}

.banner {
  box-shadow: 0 4px 10px 2px rgba(153, 153, 153, 0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  color: #ffffff;
  position: relative;
}

@media (min-width: 769px) {
  .banner {
    min-height: 480px;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 80px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .banner {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 38px;
    margin-top: 54px;
  }
}

.banner img {
  width: 100%;
}

.banner .content {
  height: 84%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 769px) {
  .banner .content {
    padding-left: 100px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .banner .content {
    padding-left: 24px;
    top: 24px;
  }
}

@media (min-width: 769px) {
  .banner .content p {
    font-size: 38px;
    margin-top: 20px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .banner .content p {
    margin-top: 10px;
  }
}

.banner .content button {
  background: #ffbe98;
  border: none;
  cursor: pointer;
  border-radius: 28px;
}

@media (min-width: 769px) {
  .banner .content button {
    height: 56px;
    width: 222px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000000;
    letter-spacing: 0;
    font-weight: 500;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .banner .content button {
    height: 34px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #434343;
    letter-spacing: 0;
    font-weight: 400;
  }
}

.platform-support p {
  text-align: center;
  color: #333333;
}

@media (min-width: 769px) {
  .platform-support p {
    font-size: 46px;
    letter-spacing: 0;
    line-height: 70px;
    font-weight: 600;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .platform-support p {
    font-size: 18px;
    letter-spacing: 0;
    line-height: 32px;
    font-weight: 600;
  }
}

@media (min-width: 769px) {
  .platform-support .platform-support-p2 {
    font-size: 40px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .platform-support .platform-support-p2 {
    font-size: 16px;
    font-weight: 400;
  }
}

.platform-support .platform-icons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (min-width: 769px) {
  .platform-support .platform-icons {
    padding-top: 48px;
    padding-bottom: 80px;
    gap: 40px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .platform-support .platform-icons {
    padding-top: 24px;
    padding-bottom: 44px;
    gap: 20px;
  }
}

.platform-support .platform-icons .down-item {
  background: #f9f9f9;
  box-shadow: 0 4px 10px 2px rgba(153, 153, 153, 0.3);
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

@media (min-width: 769px) {
  .platform-support .platform-icons .down-item {
    flex: 1;
    position: relative;
  }

  .platform-support .platform-icons .down-item::before {
    display: block;
    content: "";
    padding-top: 124.5614035088%;
  }

  .platform-support .platform-icons .down-item>.content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .platform-support .platform-icons .down-item {
    flex: 1 0 40%;
    /* 允许伸缩，最小宽度为30% */
    position: relative;
  }

  .platform-support .platform-icons .down-item::before {
    display: block;
    content: "";
    padding-top: 106.3291139241%;
  }

  .platform-support .platform-icons .down-item>.content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

.platform-support .platform-icons .down-item a {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.platform-support .platform-icons .down-item .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  color: #434343;
  width: 100%;
  height: 100%;
}

@media (min-width: 320px) and (max-width: 768px) {
  .platform-support .platform-icons .down-item .content img {
    width: 68px;
    height: 68px;
  }
}

.platform-support .platform-icons .down-item:hover {
  transform: translateY(-15px);
  background: #fff4ed;
  font-weight: 700;
}

@media (min-width: 769px) {
  .platform-support .platform-icons .down-item {
    min-height: 284px;
  }
}

.features {
  text-align: center;
  color: #333333;
}

.features>h2 {
  font-weight: 600;
}

@media (min-width: 769px) {
  .features>h2 {
    font-size: 48px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .features>h2 {
    font-size: 20px;
  }
}

.features>p {
  font-weight: 400;
  margin-top: 10px;
}

@media (min-width: 769px) {
  .features>p {
    margin-bottom: 106px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .features>p {
    margin-bottom: 80px;
  }
}

.features .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  color: #333333;
}

.features .feature-list .feature-list-item {
  background: #f9f9f9;
  box-shadow: 0 4px 10px 2px rgba(153, 153, 153, 0.15);
  border-radius: 20px;
  position: relative;
}

@media (min-width: 769px) {
  .features .feature-list .feature-list-item {
    padding: 40px;
    padding-top: 62px;
    margin-bottom: 110px;
    flex: 1 0 30%;
    /* 允许伸缩，最小宽度为30% */
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .features .feature-list .feature-list-item {
    padding: 20px;
    padding-top: 46px;
    margin-bottom: 40px;
    flex: 1 0 80%;
    /* 允许伸缩，最小宽度为80% */
  }
}

.features .feature-list .feature-list-item>img {
  position: absolute;
}

@media (min-width: 769px) {
  .features .feature-list .feature-list-item>img {
    top: -60px;
    left: calc(50% - 60px);
    width: 120px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .features .feature-list .feature-list-item>img {
    top: -50px;
    left: calc(50% - 50px);
    width: 100px;
  }
}

.features .feature-list .feature-list-item .title {
  margin-bottom: 20px;
  color: #333333;
}

@media (min-width: 769px) {
  .features .feature-list .feature-list-item .title {
    font-size: 20px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .features .feature-list .feature-list-item .title {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
  }
}

.features .feature-list .feature-list-item p {
  text-align: left;
  font-size: 14px;
  color: #333333;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
}

.carousel-indicators {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.carousel-indicator {
  height: 10px;
  width: 10px;
  background-color: #eaeaea;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
}

.active {
  background-color: #ffbe98;
}

.pricing {
  text-align: center;
  color: #333333;
}

.pricing>h2 {
  font-weight: 600;
}

@media (min-width: 769px) {
  .pricing>h2 {
    font-size: 48px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .pricing>h2 {
    font-size: 20px;
  }
}

.pricing>p {
  font-weight: 400;
  margin-top: 10px;
}

@media (min-width: 769px) {
  .pricing>p {
    margin-bottom: 40px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .pricing>p {
    margin-bottom: 20px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .pricing {
    overflow: hidden;
    position: relative;
    margin: auto;
  }
}

.pricing .carousel-buttons {
  position: absolute;
  top: 56%;
  right: -4px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.pricing .carousel-button {
  background: transparent;
  border: none;
}

.pricing .carousel-button img {
  width: 24px;
  height: 58px;
}

.pricing .plan {
  display: flex;
  align-items: end;
  transition: transform 0.5s ease-in-out;
}

@media (min-width: 769px) {
  .pricing .plan {
    flex-wrap: wrap;
    gap: 40px;
  }
}

.pricing .plan .popular-tag {
  position: absolute;
  font-size: 12px;
  background: #ffbe98;
  color: #ffffff;
  border: 1px solid #ffbe98;
  padding: 4px 10px;
  border-radius: 16px;
  right: 50%;
  transform: translateX(50%);
}

@media (min-width: 769px) {
  .pricing .plan .popular-tag {
    top: -12px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .pricing .plan .popular-tag {
    top: -14px;
  }
}

.pricing .plan .plan-item {
  position: relative;
}

@media (min-width: 769px) {
  .pricing .plan .plan-item {
    flex: 1;
    min-width: 220px;
    max-width: 25%;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .pricing .plan .plan-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 32px 14px 4px;
  }
}

.pricing .plan .plan-item .plan-info {
  border: 2px solid #16191d;
  border-radius: 20px;
  color: #333333;
  box-shadow: 8px 8px 4px 2px #16191d;
  height: max-content;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.pricing .plan .plan-item .plan-info:hover {
  transform: translateY(-15px);
  background: #fff4ed;
}

.pricing .plan .plan-item .plan-info .box {
  background: #f9f9f9;
  border-radius: 20px;
}

@media (min-width: 769px) {
  .pricing .plan .plan-item .plan-info .box {
    padding-top: 40px;
  }
}

.pricing .plan .plan-item .plan-info.featured {
  background: #ffbe98;
  position: relative;
}

@media (min-width: 769px) {
  .pricing .plan .plan-item .plan-info.featured {
    border: 8px solid #ffbe98;
    border-top: 16px solid #ffbe98;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .pricing .plan .plan-item .plan-info.featured {
    border: 8px solid #ffbe98;
    border-top: 16px solid #ffbe98;
  }
}

@media (min-width: 769px) {
  .pricing .plan .plan-item .plan-info {
    font-size: 20px;
  }

  .pricing .plan .plan-item .plan-info .title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pricing .plan .plan-item .plan-info .tip {
    margin-bottom: 10px;
    font-size: 16px;
    color: #999999;
  }

  .pricing .plan .plan-item .plan-info .content {
    margin-bottom: 20px;
  }

  .pricing .plan .plan-item .plan-info .price {
    height: 88px;
    background: #ffffff;
    font-size: 28px;
    color: #e68a54;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 20px 20px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .pricing .plan .plan-item .plan-info {
    font-size: 18px;
    color: #333333;
  }

  .pricing .plan .plan-item .plan-info .title {
    font-weight: 600;
    padding: 14px 0;
    margin: 0 12px;
    border-bottom: 1px solid rgba(153, 153, 153, 0.5);
  }
}

@media (min-width: 320px) and (max-width: 768px) and (min-width: 320px) and (max-width: 768px) {
  .pricing .plan .plan-item .plan-info .title {
    border-radius: 10px 10px 0 0;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .pricing .plan .plan-item .plan-info .tip {
    margin-top: 20px;
    margin-bottom: 8px;
    color: #999999;
    font-weight: 400;
  }

  .pricing .plan .plan-item .plan-info .content {
    font-weight: 500;
  }

  .pricing .plan .plan-item .plan-info .price {
    height: 68px;
    background: #ffffff;
    font-size: 20px;
    color: #e68a54;
    display: flex;
    align-items: center;
    padding-left: 24px;
    margin-top: 20px;
    border-radius: 0 0 20px 20px;
  }
}

.pricing .plan .plan-item .plan-btn {
  border: none;
  background: #434343;
  box-shadow: 0 4px 10px 2px rgba(153, 153, 153, 0.15);
  border-radius: 28px;
  color: #ffffff;
  cursor: pointer;
}

@media (min-width: 769px) {
  .pricing .plan .plan-item .plan-btn {
    padding: 8px 38px;
    margin-top: 40px;
    margin-bottom: 80px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .pricing .plan .plan-item .plan-btn {
    padding: 8px 20px;
    position: absolute;
    right: 56px;
    bottom: 38px;
  }
}

.img-list {
  background: #f5f5f5;
}

.img-list .feature-images {
  display: flex;
  flex-direction: column;
}

@media (min-width: 769px) {
  .img-list .feature-images {
    padding: 100px 60px !important;
    gap: 20px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .img-list .feature-images {
    gap: 10px;
    padding: 24px 0;
  }
}

.img-list .feature-images .img-item {
  position: relative;
  display: flex;
  color: #ffffff;
}

@media (min-width: 769px) {
  .img-list .feature-images .img-item {
    align-items: center;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .img-list .feature-images .img-item {
    flex-direction: column;
  }
}

.img-list .feature-images .img-item img {
  width: 100%;
}

.img-list .feature-images .img-item .text-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
}

.img-list .feature-images .img-item .text-box>div {
  width: max-content;
  max-width: 100%;
}

@media (min-width: 769px) {
  .img-list .feature-images .img-item .text-box {
    font-size: 40px;
    line-height: 60px;
    position: absolute;
  }

  .img-list .feature-images .img-item .text-box.content-left {
    left: 100px;
  }

  .img-list .feature-images .img-item .text-box.content-right {
    right: 100px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .img-list .feature-images .img-item .text-box {
    padding: 28px 0;
    background: #16191d;
    font-size: 20px;
    letter-spacing: 2px;
  }

  .img-list .feature-images .img-item .text-box .phone-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .img-list .feature-images .img-item .text-box.last-box {
    border-radius: 0 0 40px 40px;
  }
}

.img-list .feature-images .img-item .text-box .invite {
  font-weight: 400;
}

@media (min-width: 769px) {
  .img-list .feature-images .img-item .text-box .invite {
    font-size: 16px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .img-list .feature-images .img-item .text-box .invite {
    font-size: 12px;
    margin-bottom: 28px;
    margin-top: 4px;
  }
}

.img-list .feature-images .img-item .text-box .url {
  font-weight: 400;
}

@media (min-width: 769px) {
  .img-list .feature-images .img-item .text-box .url {
    font-size: 16px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .img-list .feature-images .img-item .text-box .url {
    font-size: 12px;
    margin-bottom: 4px;
  }
}

.img-list .feature-images .img-item .text-box>button {
  background: #ffffff;
  color: #333333;
  letter-spacing: 0;
  text-align: center;
  font-weight: 500;
  border-radius: 40px;
  cursor: pointer;
}

@media (min-width: 769px) {
  .img-list .feature-images .img-item .text-box>button {
    font-size: 28px;
    width: 300px;
    height: 60px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .img-list .feature-images .img-item .text-box>button {
    font-size: 14px;
    width: 152px;
    height: 40px;
    margin-bottom: 6px;
  }
}

@media (min-width: 769px) {
  .user-box {
    padding: 80px 0;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .user-box {
    padding: 40px 0;
  }
}

.user-box .avatar-box {
  position: relative;
}

@media (min-width: 769px) {
  .user-box .avatar-box {
    height: 382px;
  }

  .user-box .avatar-box .avatar-1 {
    width: 168px;
    position: absolute;
    top: 80px;
    left: calc(50% - 84px);
  }

  .user-box .avatar-box .avatar-2 {
    width: 124px;
    position: absolute;
    top: 200px;
    right: 26%;
  }

  .user-box .avatar-box .avatar-3 {
    width: 124px;
    position: absolute;
    top: 200px;
    left: 26%;
  }

  .user-box .avatar-box .avatar-4 {
    width: 88px;
    position: absolute;
    top: 80px;
    right: 16%;
  }

  .user-box .avatar-box .avatar-5 {
    width: 88px;
    position: absolute;
    top: 80px;
    left: 16%;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .user-box .avatar-box {
    height: 180px;
  }

  .user-box .avatar-box .avatar-1 {
    width: 88px;
    position: absolute;
    top: 0px;
    left: calc(50% - 44px);
  }

  .user-box .avatar-box .avatar-2 {
    width: 68px;
    position: absolute;
    top: 90px;
    right: 20%;
  }

  .user-box .avatar-box .avatar-3 {
    width: 68px;
    position: absolute;
    top: 90px;
    left: 20%;
  }

  .user-box .avatar-box .avatar-4 {
    width: 48px;
    position: absolute;
    top: 20px;
    right: 10%;
  }

  .user-box .avatar-box .avatar-5 {
    width: 48px;
    position: absolute;
    top: 20px;
    left: 10%;
  }
}

.user-box p {
  color: #333333;
  letter-spacing: 0;
  text-align: center;
  font-weight: 600;
}

@media (min-width: 769px) {
  .user-box p {
    font-size: 48px;
    line-height: 74px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .user-box p {
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 24px;
    padding: 0 32px;
  }
}

footer {
  background: #16191d;
  color: #ffffff;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 769px) {
  footer {
    margin-top: 80px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  footer {
    margin-top: 40px;
  }
}

footer a {
  color: #ffffff;
}

footer .footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 769px) {
  footer .footer-links {
    margin: 42px 0;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  footer .footer-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 40px;
    gap: 28px;
  }
}

footer .footer-links .shu {
  opacity: 0.5;
  border: 1px solid #999999;
  height: 48px;
}

@media (min-width: 320px) and (max-width: 768px) {
  footer .footer-links .footer-item {
    width: 100%;
  }
}

footer .footer-links .footer-item div {
  margin-bottom: 14px;
}

@media (min-width: 320px) and (max-width: 768px) {
  footer .footer-links .footer-item div {
    font-size: 12px;
  }
}

footer .footer-links .footer-item ul {
  display: flex;
  width: 100%;
}

@media (min-width: 769px) {
  footer .footer-links .footer-item ul {
    gap: 30px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  footer .footer-links .footer-item ul {
    justify-content: space-between;
  }
}

footer .footer-links .footer-item ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 320px) and (max-width: 768px) {
  footer .footer-links .footer-item ul li {
    font-size: 10px;
  }

  footer .footer-links .footer-item ul li img {
    width: 32px;
    margin-bottom: 4px;
  }
}

footer .footer-logo {
  text-align: center;
  width: 100%;
  border-top: 1px solid #999999;
  font-size: 12px;
}

footer .footer-logo div {
  padding: 20px;
}

@media (min-width: 769px) {
  footer .footer-logo {
    padding: 24px 0;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  footer .footer-logo {
    padding: 14px 0;
  }

  footer .footer-logo img {
    height: 20px;
  }
}

.about-box {
  text-align: center;
  padding: 40px 0;
}

.about-box .about-content {
  padding: 40px;
}

.about-box .about-content h2 {
  color: #333333;
  font-weight: 600;
  margin-bottom: 30px;
}

@media (min-width: 769px) {
  .about-box .about-content h2 {
    font-size: 48px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .about-box .about-content h2 {
    font-size: 20px;
  }
}

.about-box .about-content img {
  max-width: 200px;
  margin-bottom: 30px;
}

.about-box .about-content p {
  font-size: 16px;
  color: #333333;
  letter-spacing: 2px;
  font-weight: 400;
}

@media (min-width: 769px) {
  .about-box .about-content p {
    font-size: 16px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .about-box .about-content p {
    font-size: 14px;
  }
}

/*# sourceMappingURL=index.css.map */