::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 5px;
}
body {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
header {
  padding: 12px 8vw;
}
.logo {
  display: inline-block;
  width: 100px;
  object-fit: contain;
}
.logo:hover {
  cursor: pointer;
}
@media (max-width: 600px) {
  .logo {
    width: 60px;
  }
}
header a {
  color: white;
  margin-right: 4vw;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
header a:last-child {
  margin-right: 0;
}
header a:hover {
  border-bottom: 2px solid white;
}

footer {
  padding: 20px 8vw;
  background-color: #168ecd;
}

@media (max-width: 600px) {
  .swiper-button-prev, .swiper-button-next {
    display: none !important;
  }
}
/* 反馈弹窗样式 */
.zhaocha {
  position: fixed;
  width: 120px;
  bottom: 200px;
  right: 30px;
  z-index: 90;
  cursor: pointer;
}
.zhaocha .zhaocha-img {
  width: 100%;
  object-fit: contain;
}
.zhaocha .zhaocha-close {
  display: inline-block;
  width: 15px;
  object-fit: contain;
}
@media (max-width: 600px) {
  .zhaocha {
    width: 100px;
    bottom: 30px;
  }
}

.feedback {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.success-box {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  padding: 16px;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feedback-box {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  width: 40vw;
}
.feedback-content {
  padding: 20px;
  max-height: 66vh;
  overflow: auto;
}
.feedback-form {
  border: 1px solid #E4E7ED;
  padding: 16px;
}
.form-item {
  display: flex;
  margin-bottom: 16px;
}
.form-item input,textarea {
  outline: none;
  flex: 1;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #E4E7ED;
}
input:focus, textarea:focus {
  border: 1px solid #aaa !important;
}
input::placeholder, textarea::placeholder {
  font-size: 12px;
  color: #aaa;
}
.feed-btn {
  padding: 6px 30px;
  border-radius: 4px;
  border: 1px solid #066BFE;
  background-color: #066BFE;
  color: #066BFE;
  font-size: 14px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .feedback-box {
    width: 90vw;
  }
  .form-item {
    flex-direction: column;
  }
}

.introduce-container {
  display: flex;
  justify-content: space-between;
  padding: 30px 8vw;
  background-color: #36aeea;
  color: #fff;
}
.other-link {
  margin-bottom: 4px;
}
.other-link:hover {
  cursor: pointer;
  color: #066BFE;
}
.introduce-container .center {
  padding: 0 60px;
}
.introduce-container p {
  margin: 0;
  padding: 0;
  word-break: break-all;
  text-align: left;
  text-indent: 2em;
  color: #fff;
  line-height: 1.6;
  font-size: 14px;
}
.pc-logo {
  display: inline-block;
  width: 100px;
  object-fit: contain;
}
@media (max-width: 600px) {
  .introduce-container {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
  .introduce-container .center {
    padding: 0;
  }
  .introduce-container .other {
    display: none;
  }
}


/* 反馈弹窗样式 */
.zhaocha-contact {
  position: fixed;
  width: 250px;
  bottom: 10px;
  left: 30px;
  z-index: 90;

}
.zhaocha-contact .zhaocha-img {
  width: 100%;
  object-fit: contain;
}
.zhaocha-contact .zhaocha-close {
  display: inline-block;
  width: 15px;
  object-fit: contain;
}
@media (max-width: 600px) {
  .zhaocha-contact {
    width: 250px;
    bottom: 0px;
  }
}