#guideBlock {
    background-image: var(--img-bg-orange);
    background-repeat: repeat;

    position: relative;
}

#pageHeader {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 350px;
}

#imgTop {
    position: relative;
    transform: translateX(-50%);
    left: 50%;
    height: 250px;
}

#guideContent {
    width: 90%;
    margin: 0 auto;

    position: relative;
}

#loading {
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    box-sizing: border-box;
    width: 60px;
    height: 60px;
    display: inline-block;
    border: 5px solid #f3f3f3;
    border-top: 5px solid orange;
    border-radius: 50%;
    animation: rotate-360 1s infinite linear;
}

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

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

#guideList {
    width: 100%;
    max-width: 1010px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    padding-bottom: 50px;
    justify-content: space-between;
    opacity: 0;
}

.guide-item {
    position: relative;
    width: 48%;
    margin-bottom: 60px;

    transform: translateY(150px);
}

@keyframes popup {
    to {
        transform: translateY(0);
    }
}

.guide-item-bg {
    width: 100%;
}

.guide-item-bg > img {
    width: 100%;
}

.guide-item-content {
    position: absolute;
    width: 80%;
    left: 10%;
    top: 45%;
}

.guide-item-content .title {
    font-weight: bold;
    font-size: 20px;
    color: darkgreen;
    margin: 0 0 5px;
}

.guide-item-content .desc {
    font-size: 16px;
    margin: 0;
    color: #E75B32;
}

.guide-item-entry {
    background-image: var(--img-btn-blue);
    background-repeat: no-repeat;
    background-size: 100% 100%;

    width: 150px;
    height: 45px;

    position: relative;
    left: -10px;
    margin-top: 5px;

    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-item-entry > a {
    color: white;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.guide-item-role {
    position: absolute;
    width: 150px;
    bottom: -18px;
    right: 40px;
}

.clsOrange {
    width: 75px;
    position: absolute;
}

#orange1 {
    top: -10px;
    right: 25%;
}

#orange2 {
    top: 140px;
    left: -15px;
}

#orange3 {
    top: 395px;
    right: 35%;
}

#orange4 {
    top: 900px;
    left: 20%;
}

#orange5 {
    top: 945px;
    right: -10px;
}


#imgGrass {
    background-image: var(--img-fence);
    background-repeat: repeat-x;
    background-size: auto 200px;

    width: 100%;
    height: 200px;
    overflow: hidden;
}