* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", sans-serif;
}

a {
  text-decoration: none;
  color: #ffffff;
}

ul li {
  list-style-type: none;
}

img {
  display: inline-block;
}

body {
  width: 100%;
  height: 100vh;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
}

.header {
  width: 100%;
  height: 80px;
  background: #000000;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  padding: 0 200px;
}

.header-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.language span {
  display: inline-block;
  width: 1px;
  height: .729vw;
  background: #ffffff;
  margin: 0 .17vw;
}

.language a {
  font-size: .833vw;
}

.language-active {
  color: #ff5ab8;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: #ff5ab8;
}

.logo a,
.logo a img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.header-tab {
  flex: 1;
  width: 100%;
  height: 100%;
}

.header-tab ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.header-tab ul li {
  height: 100%;
  line-height: 80px;
  width: auto;
  padding: 0 20px;
  cursor: pointer;
}

.header-tab ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: .833vw;
}

.header-tab ul li:hover a {
  color: #ff5ab8;
}

.tab-active {
  color: #ff5ab8;
}


.footer {
  width: 100%;
  height: 160px;
  background: #000000;
  position: relative;
}

.footer-content {
  position: absolute;
  width: 1200px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

}

.footer-logo {
  position: absolute;
  left: 200px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
}

.ad-content {
  width: 100%;
  height: 80px;
  padding: 40px 0;
}

.ad-icon {
  margin-bottom: 10px;
}

.ad-icon img {
  max-width: 24px;
  height: 20px;
  margin: 0 4px;
}

.link{
  width: 100%;
  height: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.link span {
  display: inline-block;
  width: 1px;
  height: .729vw;
  background: #bcbcbc;
  margin: 0 .417vw 0 0;
}

.link a {
  font-size: 12px;
  margin:0 15px;
  color: #bcbcbc;
}
.link-www{
  display: block;
}
.link-m{
  display: none;
}

::-webkit-scrollbar {
  width: 5px;
  /* 纵向滚动条*/
  background-color: #bcbcbc;
  z-index: 9;
}

@media (max-width: 1920px) {
  .footer-content {
    max-width: 800px;
    width: auto;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 0 16px;
  }

  .header-content {
    width: 100% !important;
    height: 100% !important;
  }
  .logo{
    width: 40px;
    height: 40px;
  }
  .logo a,
  .logo a img {
    width: 40px;
    height: 40px;
  }

  .header-tab ul li {
    padding: 0 2px;
  }

  .header-tab ul li a {
    display: inline-block;
    width: auto;
    height: 100%;
    font-size: 0.5rem;
    line-height: 80px;
  }

  .language a {
    font-size: 8px;
  }

  .footer-logo{
    position: absolute;
    left: 12px;
    top: 50%;
  }
  .footer-content{
    width: calc(100% - 90px);
    margin-left: 34px;
  }
  .ad-icon img{
    margin: 0 2px;
  }
  .link span{
    height:12px;
    margin: 0 2px 0 0;
  }
  .link{
    word-break: break-all;
    
  }
  .link-www{
    display: none !important;
  }
  .link-m{
    display: block !important;
  }
}