/*css reset*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

ul, ol {
    list-style: none;
}

body {
    background: #eee
}

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

img {
    max-width: 100%;
    max-height: 100%;
}

/*iconfont*/
.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

.globalHeader {
    margin: 20px;
}
@media (min-width: 500px) {
    .globalHeader {
        margin: 40px 0 40px;
    }
}

.searchForm {
    display: flex;
    justify-content: space-between;
}
@media (min-width: 500px) {
    .searchForm {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}
.searchForm input {
    width: 100%;
    margin-right: 20px;
    height: 40px;
    padding: 5px;
    border: none;
    border-radius: 4px;
}

.searchForm button {
    white-space: nowrap;
    padding: 0 18px;
    border: none;
    border-radius: 4px;
    background: #0282b9;
    color: white;
    font-size: 16px;
}

.globalMain {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.siteList {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    justify-content: space-between;
}
@media (min-width: 500px) {
    .siteList {
        margin-left: 0;
        margin-right: -25px;
        justify-content: flex-start;
    }
}

.siteList > li {
    margin-bottom: 10px;
}
@media (min-width: 500px) {
    .siteList > li {
        margin-right: 25px;
    }
}

.siteList .site {
    width: 160px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: white;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

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

}

.siteList .site > .link {
    font-size: 14px;
    margin-top: 4px;
}

.siteList .site > .close {
    position: absolute;
    right: 0;
    top: 0;
    display: none;
}
.siteList .site:hover > .close {
    display: block;
}

.siteList .addButton {
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0;
    background: white;
}

.siteList .addButton .icon-wraper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.siteList .addButton .icon {
    width: 64px;
    height: 64px;
}

.siteList .addButton .text {
    font-size: 14px;
    margin-top: 4px;
}