p {
  margin: 0;
}
.my-footer {
  width: 99vw;
  background-color: #e3e3e3;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.my-footer .footer-title {
  width: var(--container-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "STZhongsong", "STZhongsong-Local", "SimSun", serif;
  color: #a87b3f;
  position: relative;
  -webkit-user-select: none; /* 添加这行以支持 Safari */
  user-select: none;
}
.my-footer .footer-title .title-en {
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 3px;
  color: #282828;
}
.my-footer .footer-title .title-cn {
  display: flex;
  height: 80px;
  font-weight: 600;
  color: #282828;
  background: url("/static/images/footer/footer-title-bg.png") no-repeat center !important;
}
.my-footer .footer-title .title-cn span {
  display: flex;
  align-items: center;
}
.my-footer .footer-title .title-cn .font60 {
  font-size: 60px;
  padding-bottom: 10px;
}
.my-footer .footer-title .title-cn .font46 {
  font-size: 46px;
  padding-bottom: 5px;
}
.my-footer .footer-title .title-cn .font50 {
  font-size: 50px;
  padding-bottom: 10px;
}
.my-footer .footer-title svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.my-footer .nav {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  width: var(--container-width);
  background-color: #fff;
  padding: 10px 55px;
  border-radius: 25px;
  margin-top: 52px;
  font-size: 20px;
  color: #282828;
  -webkit-user-select: none; /* 添加这行以支持 Safari */
  user-select: none;
}
.my-footer .nav .nav-item {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.my-footer .nav .nav-item a {
  color: inherit;
  text-decoration: none;
}

.my-footer .other {
  margin-top: 57px;
  display: flex;
  -webkit-user-select: none; /* 添加这行以支持 Safari */
  user-select: none;
}
.my-footer .other .image {
  width: 120px;
  height: 145px;
}
.my-footer .other .image:nth-child(1) {
  margin-right: 25px;
}
.my-footer .other .image:nth-child(2) {
  margin-left: 25px;
}
.my-footer .other .image img {
  width: 100%;
  height: 100%;
}

.my-footer .info {
  color: #717171;
  font-size: 14px;
  width: 500px;
  text-align: center;
  margin-top: 50px;
  padding-bottom: 25px;
}
.my-footer .info p {
  margin-bottom: 4px;
}
.my-footer .info span {
  color: #282828;
  font-weight: 500;
}
.my-footer a {
  color: inherit;
  text-decoration: none;
}