* {
  margin: 0;
  padding: 0;
}

*:before, *:after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, li {
  list-style: none;
  box-sizing: border-box;
}


body {
  background: #060931;
  font-family: '微软雅黑', Arial, Helvetica, sans-serif;
  padding: 0 15px;
}

.globalHeader {

}

.searchForm {
  margin: 28px 0;
  display: flex;
  height: 35px;
  justify-content: center;
}

.searchForm > input {
  border: 1px solid #2c3169;
  border-radius: 2px;
  background: #2c31691a;
  color: #f1f2ff;
  padding: 0 15px;
}

.searchForm > button {
  width: 90px;
  margin-left: 5px;
  font-family: '微软雅黑', Arial, Helvetica, sans-serif;
  border: none;
  background: #2c3169;
  color: #f1f2ff;
}

.globalMain {
  max-width: 1000px;
  margin: 0 auto;
}

.siteList {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
}

.siteList > li {
  width: 100px;
  margin-bottom: 15px;
  border: 2px solid #0a0f45;
  padding: 10px;
  color: #f1f2ff;
  background: #0a1039;
  margin-right: 10px;
}

.siteList .site {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.siteList .site > .close {
  position: absolute;
  top: -12px;
  right: -6px;
  font-size: 22px;
  color: #e9eaf833;
  display: none;
  cursor: default;
}
.siteList .site:hover > .close{
  display: inline-block;
}

.siteList .site > .logo {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  color: #f1f2ff;

}

.siteList .site > .logo img {
  width: 100%;
}

.siteList .site > .link {
  margin-top: 5px;
  color: #cbcdde57;
  font-size: 14px;
}

.siteList .iconButton {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.siteList .iconButton .icon {
  width: 50px;
  height: 50px;
}

@media (min-width:500px) {
  .searchForm{
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .globalHeader{
    margin-top: 150px;
    margin-bottom: 60px;
  }
}

/*# sourceMappingURL=style.c48d04f2.css.map */