
body {
    font-family: Montserrat;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


    body:before {
        background-color: #2b2d5e !important;
    }

html {
    width: 100%;
    height: 100%;
}

h2 {
    margin: 150px auto 50px;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    background: #2e333f;
    padding: 25px;
    display: block;
    cursor: default;
    width: 370px;
    color: #cacaca;
    border: 1px solid rgba(173,173,173,.15)
}

.metro {
    width: 640px;
    margin: 0 auto
}

    .metro li {
        -webkit-transform: perspective(600px);
        -webkit-transform-style: preserve-3d;
        -webkit-transform-origin-x: 50%;
        -webkit-transform-origin-y: 50%;
        -ms-transform: perspective(600px);
        -ms-transform-style: preserve-3d;
        -ms-transform-origin-x: 50%;
        -ms-transform-origin-y: 50%;
        transform: perspective(600px);
        transform-style: preserve-3d;
        transform-origin-x: 50%;
        transform-origin-y: 50%;
        cursor: default;
        position: relative;
        text-align: center;
        margin: 0 10px 10px 0;
        width: 150px;
        height: 150px;
        color: #fff;
        float: left;
        -webkit-transition: .2s -webkit-transform,1s opacity;
        -ms-transition: .2s -ms-transform,1s opacity;
        transition: .2s transform,1s opacity;
        cursor: pointer
    }

        .metro li i {
            font-size: 54px;
            margin: 35px 0 0
        }

        .metro li span {
            color: rgba(255,255,255,.8);
            text-transform: uppercase;
            position: absolute;
            left: 15px;
            bottom: 16px;
            font-size: 15px;
            font-weight: bold;
        }

        .metro li:first-child {
            background: #00b6de
        }

        .metro li:nth-child(2) {
            background: #56dea7;
            width: 310px
        }

        .metro li:nth-child(3) {
            background: #ff7659;
        }

        .metro li:nth-child(4) {
            background: #f8cd36
        }

        .metro li:nth-child(5) {
            background: #f26175
        }

        .metro li:nth-child(6) {
            background: #5ca7df
        }

        .metro li:last-child {
            background: #9e7ac2;
        }

        .metro li:nth-child(5):active, .metro li:first-child:active {
            -webkit-transform: scale(.95);
            -ms-transform: scale(.95);
            transform: scale(.95)
        }

        .metro li:nth-child(7):active, .metro li:nth-child(2):active {
            -webkit-transform: perspective(600px) rotate3d(1,0,0,-10deg);
            -ms-transform: perspective(600px) rotate3d(1,0,0,-10deg);
            transform: perspective(600px) rotate3d(1,0,0,-10deg)
        }

        .metro li:nth-child(3):active {
            -webkit-transform: perspective(600px) rotate3d(0,1,0,10deg);
            -ms-transform: perspective(600px) rotate3d(0,1,0,10deg);
            transform: perspective(600px) rotate3d(0,1,0,10deg)
        }

        .metro li:nth-child(4):active {
            -webkit-transform: perspective(600px) rotate3d(0,1,0,-10deg);
            -ms-transform: perspective(600px) rotate3d(0,1,0,-10deg);
            transform: perspective(600px) rotate3d(0,1,0,-10deg)
        }

        .metro li:nth-child(6):active {
            -webkit-transform: perspective(600px) rotate3d(1,0,0,10deg);
            -ms-transform: perspective(600px) rotate3d(1,0,0,10deg);
            transform: perspective(600px) rotate3d(1,0,0,10deg)
        }

.box {
    display: table;
    top: 0;
    visibility: hidden;
    -webkit-transform: perspective(1200px) rotateY(180deg) scale(.1);
    -ms-transform: perspective(1200px) rotateY(180deg) scale(.1);
    transform: perspective(1200px) rotateY(180deg) scale(.1);
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s all
}

    .box p {
        display: table-cell;
        vertical-align: middle;
        font-size: 64px;
        color: #fff;
        text-align: center;
        margin: 0;
        opacity: 0;
        transition: .2s;
        -webkit-transition-delay: .2s;
        -ms-transition-delay: .2s;
        transition-delay: .2s
    }

        .box p i {
            font-size: 128px;
            margin: 0 0 20px;
            display: block
        }

    .box .close {
        display: block;
        cursor: pointer;
        border: 3px solid #c79915;
        border-radius: 50%;
        position: absolute;
        top: 50px;
        right: 50px;
        width: 30px;
        height: 30px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg) transform:rotate(45deg);
        transition: .2s;
        -webkit-transition-delay: .2s;
        -ms-transition-delay: .2s;
        transition-delay: .2s;
        opacity: 0
    }

        .box .close:active {
            top: 51px
        }

        .box .close::before {
            content: "";
            display: block;
            position: absolute;
            background-color: #c79915;
            width: 80%;
            height: 6%;
            left: 10%;
            top: 47%
        }

        .box .close::after {
            content: "";
            display: block;
            position: absolute;
            background-color: #c79915;
            width: 6%;
            height: 80%;
            left: 47%;
            top: 10%
        }

    .box.open {
        left: 0;
        top: 0;
        visibility: visible;
        opacity: 1;
        z-index: 999;
        -webkit-transform: perspective(1200px) rotateY(0deg) scale(1);
        -ms-transform: perspective(1200px) rotateY(0deg) scale(1);
        transform: perspective(1200px) rotateY(0deg) scale(1);
        width: 100%;
        height: 100%
    }

        .box.open .close, .box.open p {
            opacity: 1
        }

.menuDiv {
    width: 19px;
}

.menuDiv {
    width: 19px;
}

.lineDiv {
    height: 80%;
    width: 100%;
    overflow: auto;
    padding: 0px 33px;
}

.jq22-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media(max-width:960px) {
    /* ÍøÒ³È«ÆÁÏÔÊ¾ */
    body {
        width: 100%;
    }

    .metro {
        width: 100%;
        margin: 0px calc(50% - 155px);
    }

        .metro li:nth-child(2) {
            background: #56dea7;
            width: 150px;
        }

        .metro li:nth-child(3) {
            background: #ff7659;
            width: 310px
        }

    .box .close {
        width: 40px;
        height: 40px;
    }

    .wrapper {
        width: 100% !important;
        margin: 10px 0 10px 0 !important;
        height: 5% !important;
    }

    .menuDiv {
        width: auto;
    }

    .button {
        width: 23% !important;
        height: 40px !important;
        float: left !important;
        margin: auto 5px !important;
    }

    .rightdiv {
        border-radius: 0px !important;
    }

    .homebutton {
        width: 42px !important;
        height: 42px !important;
        background-image: url(../img/home1.png) !important;
        float: left;
        margin: auto 10px !important;
    }

    .buttonSelect1 {
        width: 12px !important;
        height: 12px !important;
        left: auto !important;
        top: 42px !important;
    }

    .buttonSelect2 {
        width: 12px !important;
        height: 12px !important;
        left: auto !important;
        top: 42px !important;
    }

    .buttonSelect3 {
        width: 12px !important;
        height: 12px !important;
        left: auto !important;
        top: 42px !important;
    }

    .well {
        width: 100% !important;
        padding: 0 !important;
    }

    .form-control {
        float: left !important;
        margin-left: 5px;
    }

    .ui-autocomplete {
        width: auto !important;
    }

    .bus-excerpt {
        width: 100%;
    }

    .lineDetail {
        width: 100%;
    }

    #lineList {
        min-width: 700px;
    }


    .lineDiv {
        height: 80%;
        overflow: auto;
        padding: 0px 20px;
    }

    .box .close::before {
        background-color: #393890;
    }

    .box .close::after {
        background-color: #393890;
    }

    .box .close {
        border: 3px solid #393890;
    }

    .form-control1 {
        width: 60% !important;
        float: left !important;
        margin-left: 5px;
    }

    .searchButton {
        width: 20%;
        float: left;
    }

    .col-sm-3 {
        width: 80%;
        float: left;
    }

   
}

.form-control1 {
    width: 100% !important;
    float: left !important;
    margin-left: 5px;
}

@media (max-width: 800px) {
    .form-control {
        width: 60% !important;
        float: left !important;
        margin-left: 5px;
    }

    .form-control1 {
        float: left !important;
        margin-left: 5px;
    }
}
