.ikun .body {
    margin: 0;
}

.ikun .box {
    width: 1280px;
    height: 720px;
    /* border: 1px solid #ff00ff; */
}

.ikun .bg {
    position: relative;
    height: 588px;
    background-color: #e4e4f6;
}

.ikun .floor {
    height: 132px;
    background-color: #cec3c1;
}

.ikun .bar1 {
    position: absolute;
    width: 250px;
    height: 110px;
    top: 183px;
    left: 0px;
    background-color: #7f83db;
    transform: skew(0, 45deg);
}

.ikun .bar2 {
    position: absolute;
    width: 573px;
    top: 373px;
    left: -100px;
    border-top: 90px solid #93cae4;
    border-right: 90px solid transparent;
    border-left: 90px solid transparent;
    transform: rotate(45deg);
}

.ikun .logo {
    position: absolute;
    top: 32px;
    left: 983px;
    width: 152px;
    height: auto;
    max-width: 100%;
}

.ikun .kunkun {
    position: absolute;
    top: 250px;
    left: 45%;
    width: 200px;
    height: 400px;
    border-radius: 20px;
    background-color: #393636;
    transform: translate(-50%, -50%) skew(-20deg, 0) scale(1.1, 0.9);
    animation: TieShanKao 1.5s infinite;
}

.ikun .kunkun .line1 {
    content: '';
    position: absolute;
    top: 3px;
    left: 10px;
    width: 176px;
    height: 6px;
    background-color: white;
    transform: rotate(58deg);
    transform-origin: top left;
}

.ikun .kunkun .line2 {
    content: '';
    position: absolute;
    top: 50px;
    right: 2px;
    width: 145px;
    height: 6px;
    background-color: white;
    transform: rotate(-45deg);
    transform-origin: top right;
}

.ikun .kunkun .line3 {
    content: '';
    position: absolute;
    bottom: 0;
    left: 49%;
    width: 7px;
    height: 250px;
    background-color: white;
    transform: translateX(-1px);
}

.ikun .kunkun .circle {
    content: '';
    position: absolute;
    top: 37.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    z-index: 10;
}

@keyframes TieShanKao {
    0% {
        transform: skew(-5deg, 0) scale(1, 1);
    }

    25% {
        transform: skew(-20deg, -5deg) scale(1, 1.1);
    }

    50% {
        transform: skew(-5deg, 0) scale(1, 1);
    }

    75% {
        transform: skew(-20deg, 0) scale(1.1, 0.9);
    }

    100% {
        transform: skew(-5deg, 0) scale(1, 1);
    }
}