﻿.guideWrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.90);
    font-family: Roboto, sans-serif;
    transition: 0.3s;
    z-index: 1;
    display: none
}

.guideContainer {
    color: #0c5480;
    width: 900px;
    margin: 0 auto;
}

.guideHeader {
    margin: 35px 0px;
}

.guideHeaderTitle {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

    .guideHeaderTitle::after {
        background: #0c5480;
        content: "";
        display: block;
        width: 420px;
        height: 3px;
        margin-top: 0px;
        margin: auto;
    }

    .guideHeaderTitle span {
        display: block;
    }

        .guideHeaderTitle span:last-child {
            margin-bottom: 20px;
        }

.guideHeaderLngWrap {
}

    .guideHeaderLngWrap span {
        font-size: 20px;
        font-weight: normal;
        text-align: center;
        display: block;
        margin-top: 20px;
    }

.guideHeaderLng {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

.guideHeaderLng ul {
    top: 30px;
    list-style: none;
    margin: 20px;
    position: absolute;
    background: #eaeaea;
    padding: 10px 20px;
    left: 50%;
    /* right: auto; */
    margin-left: -63px;
    display: none;
    text-align: left;
}

    .guideHeaderLng ul li {
        margin: 10px 0px;
    }

        .guideHeaderLng ul li input {
            /* position: absolute; */
            /* opacity: 0; */
        }

        .guideHeaderLng ul li label {
            font-size: 18px;
        }

.guideBodyWrap {
    min-height: 350px;
    display: table;
}

.guideBody {
    vertical-align: middle;
}

.guideBodyRight {
    display: inline-block;
    /* width: 50%; */
    vertical-align: middle;
}

.guideBodyLeft {
    display: inline-block;
    width: 50%;
    vertical-align: middle;
    margin-left: 20px;
}

iframe#GuideVideoPlayer {
    width: 400px;
    height: 225px;
}

.guideBodyLeftContent {
    margin-bottom: 20px;
}

.guideBodyTitle {
    font-size: 20px;
    font-weight: bold;
}

.guideBodyInfo {
    font-size: 20px;
}

.guideFooter {
    text-align: center;
}

    .guideFooter ul {
        margin: 25px 0;
        padding: 0;
        text-align: center;
    }

        .guideFooter ul li {
            display: inline-block;
        }

            .guideFooter ul li a.prev, .guideFooter ul li a.next {
                cursor: pointer;
                font-size: 35px;
            }

.guideCloseBtn {
    border: 2px solid #0c5480;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

    .guideCloseBtn span {
        font-size: 24px;
    }

.guideShowBtn {
    cursor: pointer;
    position:absolute;
    top:138px;
    left:167px;
    height:19px;
    width:90px;
    border: 1px solid #0c5480;
    border-radius: 50px;
    background-color: #0c5480;
    color: white;
    text-align: center;
    font: .85em verdana, Sans-Serif;
    padding-top: 3px;
}

.guideDots {
    text-align: center;
    margin: 0 20px;
}

.guideDot {
    cursor: pointer;
    height: 25px;
    width: 25px;
    margin: 0 2px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    border: 2px solid #0c5480;
}

    .guideDot.active, .guideDot:hover {
        background-color: #0c5480;
    }

.guideSlide {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
    display: table-cell;
}

@-webkit-keyframes fade {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}
