* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
    vertical-align:baseline;
    outline:none;
}

a,img {
    border: 0;
    color: inherit;
    background: none;
    text-decoration: none;
    outline: none;
}

body {
    background: linear-gradient(to left, #f5f5f5, transparent);
}
.eim {
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}
.errorMain{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.errorMain .inner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5%;
}
.errorMain .errorCn{
    width: 40%;
    display: flex;
    flex-direction: column;
}
.errorMain .errorCn .inImg{
    width: 10vw;
}
.errorMain .errorCn .inTit{
    letter-spacing: 1px;
    font-family: cursive;
    font-size: 6vw;
    color: #666666;
    line-height: 1.5;
}
.errorMain .errorCn .inIns{
    color: #333333;
    font-size: 1.5vw;
    line-height: 2;
    margin-bottom: 2vw;
}
.errorMain .errorCn .inBtn{
    display: flex;
    align-items: center;
}
.errorMain .errorIm{
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.errorMain .errorIm:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: #F9E8D6;
    border-radius: 20px;
    animation: pic1 1.2s ease-out .3s normal forwards;
}
@keyframes pic1 {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}
.errorMain .errorIm .img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    opacity: 0;
    animation: pic2 1s ease-out .65s normal forwards;
}
@keyframes pic2 {
    0% {
        opacity: 0;
        transform: translate(0%, -50%);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.PubBtn {
    margin: 0 2vw 0 0;
    position: relative;
    background: none;
    border: 1px solid #333333;
    color: #333333;
    font-size: 0.9vw;
    padding: 0.6vw 2vw;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 0 2vw transparent;
}
.PubBtn::before {
    content: "";
    height: 0;
    width: 0;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -1;
    position: absolute;
    background-color: #F9E8D6;
    transition: all 0.3s;
}
.PubBtn:hover {
    color: #333333;
    box-shadow: 0 0 2vw rgba(0, 0, 0, 0.25);
}
.PubBtn:hover::before {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 0;
}

@media screen and (max-width:1200px) {
    .errorMain .inner{
        justify-content: center;
        flex-direction: column;
    }
    .errorMain .errorCn{
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0 0 8vw;
        text-align: center;
    }
    .errorMain .errorCn .inTit{
        font-size: 10vw;
        margin: 0 0 2vw 0;
    }
    .errorMain .errorCn .inIns{
        color: #333333;
        font-size: 4vw;
        line-height: 2;
        margin-bottom: 6vw;
    }
    .errorMain .errorCn .inBtn{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .errorMain .errorIm{
        width: 100%;
        height: 50vw;
    }
    .PubBtn {
        width: 48%;
        margin: 0 3vw 0 0;
        font-size: 3.5vw;
        padding: 2.5vw 6vw;
    }


}

