/* Here is your custom css styles. */
/* 鼠标样式 */
body {
    cursor: url("../image/default.cur"),auto;
}
/*小手样式*/
.waves-effect, a, img {
    cursor: url("../image/pointer.cur"),auto;
}


/* dream展示的图片边角样式 */
.front-img img {
    border-radius: 8px;
}

/* 字体修改 */
@font-face {
    font-family: "ZhuZiAWan";
    src: url("https://npm.elemecdn.com/ethan4116-blog/lib/font/ZhuZiAWan.ttf");
}

body{
    font-family: "ZhuZiAWan";
}


.mouse{
    position: fixed;
    top: 64px;
    left: -50px;
}

.rotateimg {
    -webkit-animation: rotateimg 3s linear infinite;
    transition: transform 3s;
}
@keyframes rotateimg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateimg {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@media (max-width: 1080px){
    header .brand-logo .logo-img{
        height: 31px;
        border-radius: 50%;
    }
}