a {
  color: inherit;
  text-decoration: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
ul,
ol {
  list-style: none;
}
body {
  background: #eeeeee;
}
@media (min-width: 500px) {
  .globalHeader {
    margin: 60px 0;
  }
}
.searchForm {
  /* border: 1px solid red; */
  display: flex;
  justify-content: space-between;
  margin: 20px;
}
@media (min-width: 500px) {
  .searchForm {
    /* border: 1px solid red; */
    max-width: 400px;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
  }
}
.searchForm > input {
  width: 100%;
  margin-right: 10px;
  height: 40px;
  padding: 0 10px;
  border: none;
  border: 1px solid #dddddd;
  border-radius: 4px;
}
.searchForm > button {
  white-space: nowrap;
  padding: 0 28px;
  border: none;
  background: #194981;
  border-radius: 4px;
  font-size: 16px;
  color: #ffffff;
}
img {
  max-width: 100%;
  min-height: 100%;
}
.globalMain {
  /* outline: 1px solid red; */
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.siteList {
  /* 移动端space-between */
  /* border: 1px solid red; */
  display: flex;
  flex-wrap: wrap;
  margin: 20px;
  justify-content: space-between;
}
@media (min-width: 500px) {
  /* PC端用负margin*/
  .siteList {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
    margin-right: -25px;
    justify-content: start;
  }
}
@media (min-width: 500px) {
  .siteList li {
    margin-right: 25px;
  }
}
.siteList .site {
  position: relative;
  width: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  margin-bottom: 10px;
  /* border: 1px solid red; */
  border-radius: 4px;
  padding: 20px 0;
  /* 鼠标为手型 */
  cursor: pointer;
}
.siteList .site > .logo {
  /* border: 1px solid red; */
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 64px;
  text-transform: uppercase;
}
.siteList .site > .link {
  font-size: 14px;
  margin-top: 4px;
}
.siteList .site > .close {
  position: absolute;
  right: 7px;
  top: 5px;
  display: none;
  /* 鼠标移动到'X'时变为箭头 */
  cursor: default;
}
.siteList .site:hover > .close {
  display: block;
}
.siteList .addButton {
  width: 160px;
  display: flex;
  /* border: 1px solid red; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 20px 0;
  border-radius: 4px;
  cursor: pointer;
}
.siteList .addButton .icon {
  width: 64px;
  height: 64px;
  /* border: 1px solid red; */
}
.siteList .addButton .text {
  font-size: 14px;
  margin-top: 4px;
}


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