* {
  margin: 0;
  padding: 0;
}

select::-ms-expand {
  /* 隐藏IE/Edge中的默认箭头 */
  display: none;
}

/* 文字一行显示 */

.single-line {
  white-space: nowrap;
}

.text-wrap {
  word-wrap: break-word;
  /* 或者使用 overflow-wrap: break-word; */
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

select {
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari 和 Chrome */
  appearance: none;
  /* 设置背景图片 */
  background-image: url("../../static/img/common/chevron.png");
  /* 替换为你的箭头图片URL */
  background-repeat: no-repeat;
  /* 确保图片不重复 */
  background-position: 98% center;
  /* 将图片定位到右侧中心 */
  padding-right: 20px;
  /* 根据图片大小调整内边距 */
}

body {
  background-color: #000;
}

ul,
li {
  list-style: none;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

textarea {
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
}

input:focus {
  outline: none;
}

.top-menu {
  background-color: #17191b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #fff;
  padding: 0 13%;
  box-sizing: border-box;
  font-size: 0.213rem;
}

.top-menu-right {
  display: flex;
  align-items: center;
}

.top-menu-right .about {
  display: inline-block;
  cursor: pointer;
  margin: 0 60px 0 0;
}

.top-menu-right #server {
  position: relative;
}

#header {
  background-color: #1b1d1f;
  height: 104px;
  line-height: 104px;
}

#server {
  position: relative;
  /* height: 60px; */
  /* line-height: 60px; */
  /* margin-left: 20px; */
  font-size: 18px;
  cursor: pointer;
}

.server-more {
  display: none;
  position: absolute;
  left: -95px;
  /* width: 230px; */
  /* height: 140px; */
  background: #ffffff;
  box-shadow: 0px 2px 10px 0px;
  color: #000;
  /* padding: 24px 34px; */
  padding: 24px 24px;
  box-sizing: border-box;
  border-radius: 12px;
  z-index: 99;
}

.div-more {
  /* margin-bottom: 16px; */
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.more-left {
  display: flex;
  align-items: center;
}

.more-left p {
  margin: 0 8px;
  white-space: nowrap;
  /* 保证文本不会换行 */
  overflow: hidden;
  /* 超出容器部分隐藏 */
  text-overflow: ellipsis;
  /* 超出部分显示为省略号 */
}

#logo {
  width: 189px;
  height: 85px;
  float: left;
  text-align: left;
  text-indent: -999em;
  background-image: url(../static/img/index/logo.png);
  background-size: 100% 100%;
}

#logo h1 a {
  width: 189px;
  height: 85px;
  display: block;
}

.footer {
  /* position: absolute;
  bottom: 0;
  left: 0; */
  font-family: PingFang SC, PingFang SC;
  background-color: #000;
  color: #fff;
  height: 450px;
  width: 100%;
  margin-top: -1px;
  padding: 0.88rem 14%;
  font-size: 0.213rem;
  box-sizing: border-box;
}

.footer .footer-box {
  display: flex;
  /* width: 100%; */
  /* justify-content: space-between; */
}

.footer .footer-box .footer-left-top p {
  margin-bottom: 18px;
  font-weight: Bold;
  font-size: 18px;
  text-align: left;
}

.footer .footer-box .footer-left-top input {
  border-radius: 24px;
  height: 0.64rem;
  border: 1px solid rgba(207, 219, 213, 0.15);
  padding: 20px;
  box-sizing: border-box;
  width: 4rem;
  background-color: #000;
  color: #fff;
}

.footer .footer-box .footer-left-bottom {
  margin: 77px 0 0 0;
}

.footer .footer-box .footer-left-bottom p {
  margin: 0px 0 20px 0;
  font-weight: Bold;
  font-size: 16px;
  text-align: left;
}

.footer .footer-box .footer-left-bottom .foot-img {
  width: 4rem;
  display: flex;
  /* justify-content: space-between; */
}

.footer .footer-box .footer-left-bottom .foot-img img {
  width: 40px;
  margin-right: 60px;
}

.footer-show-img img {
  display: none;
}

.footer-right {
  display: flex;
  margin: 0 0 0 24%;
}

.footer-right span {
  color: #5f5f5f;
  font-size: 16px;
}

.footer-right p {
  font-weight: Bold;
  margin-bottom: 27px;
  font-size: 16px;
}

.main-image {
  position: absolute;
  right: 0;
  top: 0;
}

.visible {
  opacity: 1;
}

.hidden {
  opacity: 0;
}

.right-one {
  cursor: pointer;
  text-align: left;
}

.right-one:hover p {
  color: #3450c5;
}

.right-one:hover .visible {
  opacity: 0;
  /* 隐藏原图片 */
}

.right-one:hover .hidden {
  opacity: 1;
  /* 显示悬停图片 */
}

.footer-right .right-two {
  margin-left: 115px;
  text-align: left;
}

.footer-right .right-three {
  margin-left: 50px;
  text-align: left;
}

.footer-text {
  margin: 67px 0 0 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #cfdbd5;
  padding: 33px;
  font-size: 12px;
}

.footer-text-left {
  display: flex;
}

.footer-text-left p {
  padding: 0 22px 0 0;
}

.contact-form .form-input input {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  font-size: 16px;
}

.contact-form .form-input textarea {
  font-size: 16px;
}

#paginator {
  display: flex;
}

#paginator li {
  margin-right: 20px;
  font-size: 16px;
}

/* 针对手机 (<768px) */

@media (max-width: 767px) {
  .header .header-logo {
    padding: 24px 11% !important;
  }

  #logo {
    width: 135px;
    height: 45px;
    margin-top: 10px;
  }

  .top-menu-right {
    display: flex;
    align-items: center;
    font-size: 12px;
  }
  .top-menu-right .about {
    display: inline-block;
    margin-left: 10px;
    margin-right: 0;
  }
  #server {
    margin-left: 10px;
    font-size: 12px;
  }
  .server-more {
    display: none;
    position: absolute;
    top: 80px;
    left: -90px;
    padding: 15px 15px;
  }
  .div-more {
    height: 30px;
    line-height: 30px;
  }
  .more-left {
    display: flex;
    align-items: center;
  }
  .more-left p {
    margin: 0 8px;
    white-space: nowrap;
    /* 保证文本不会换行 */
    overflow: hidden;
    /* 超出容器部分隐藏 */
    text-overflow: ellipsis;
    /* 超出部分显示为省略号 */
  }
  .vs-xs {
    display: none;
  }
  .vs-phone {
    display: block;
    font-size: 14px;
    margin: 20px 0;
  }
  .footer .footer-box .footer-left-bottom .foot-img {
    width: 6rem;
  }
  .vs-phone .right-two {
    margin: 20px 0 0 0;
  }
  .vs-phone .right-three {
    margin: 20px 0 0 0;
  }
  .footer-right p {
    margin: 0 0 8px 0;
  }
  .footer {
    position: sticky;
    height: auto;
  }
  .footer-text {
    padding: 16px;
  }
  #myInput {
    /* width: 300px; */
    width: 100%;
  }
  .footer-left-bottom {
    margin-top: 20px !important;
  }
  .footer-text-left {
    display: flex;
    flex-direction: column;
  }
  /* .footer-text-left p {
      padding: 0 22px 0 0;
  } */
}

/* 针对平板 (768px ~ 1024px) */

@media (min-width: 768px) and (max-width: 1024px) {
  .top-menu-right {
    font-size: 18px;
  }
  .top-menu-right .about {
    display: inline-block;
    margin: 0 30px 0 0;
  }
  #server {
    margin-left: 20px;
  }
  .vs-xs {
    display: none;
  }
  .vs-phone {
    display: block;
    font-size: 14px;
    margin: 20px 0;
  }
  .footer .footer-box .footer-left-bottom .foot-img {
    width: 6rem;
  }
  .vs-phone .right-two {
    margin: 10px 0 0 0;
  }
  .vs-phone .right-three {
    margin: 20px 0 0 0;
  }
  .footer-right p {
    margin: 0 0 8px 0;
  }
  .footer {
    position: sticky;
    height: auto;
  }
  .footer-text {
    padding: 16px;
  }
  #myInput {
    width: 300px;
  }
  .footer-left-bottom {
    margin-top: 20px !important;
  }
}

/* 针对桌面显示器 (>= 1025px) */

@media (min-width: 1025px) {
  .top-menu-right {
    font-size: 18px;
  }
  #server {
    /* margin-left: 20px; */
  }
  .vs-phone {
    display: none !important;
  }
  .footer-right {
    display: flex;
  }
  .footer-right .right-two {
    margin-left: 90px;
  }
  .footer {
    position: sticky;
    height: auto;
  }
}
