@charset "utf-8";
@import url('./css/font.css');

*,
body {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: Helvetica Neue, PingFang SC, Microsoft YaHei, Helvetica, Arial, sans-serif;
}

#main {
    min-height: 100%;
    background: url("./img/bg.png") 0 0 no-repeat;
    background-size: 100% 100%;
    position: relative;
}

#header{
    position: relative;
    z-index: 5;
}

#index {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    padding-top: 18%;
    position: relative;
    z-index: 2;
}

#index p {
    font-family: Alibaba PuHuiTi-Light;
    font-size: 18px;
}

#index>a>div {
    font-size: 0;
    margin-top: 35px;
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#index>a>div>div {
    background-color: #0066FF;
    filter: blur(8px);
    height: 100%;
    border-radius: 50%;
    width: 100%;
}

#index>a>div:hover>div {
    filter: blur(0px);
}

#index>a>div>img {
    position: absolute;
    z-index: 2;
}

#detail-page {
    position: fixed;
    top: 0;
    z-index: 3;
    left: 100%;
    transition: left .5s ease-in-out;
    width: 100%;
}