html {
    width: 100%;
    height: 100%;
    font-size: 20px;
}

body {
    width: 100%;
    height: 100%;
    font-size: .7rem;
}

.m-main {
    position: relative;
    width: 100%;
    height: 100%;
}

.m-header {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    height: 1.75rem;
    line-height: 1.75rem;
    color: #fff;
    background-color: #2e3c43;
    text-align: center;
}

.m-header > span {
    font-size: .9rem;
    text-shadow: 0.05rem 0.1rem 0.2rem rgba(23, 14, 115, .7);
}


.m-header .header-links {
    position: absolute;
    right: 1rem;
    top: 0;
}

.m-header .header-links > ul > li {
    float: left;
    font-size: 12px;
}

.m-header .header-links > ul > li + li {
    margin-left: 1rem;
}

.m-header .header-links > ul > li a {
    color: #66b3ff;
    transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    -o-transition: .5s;
}

.m-header .header-links > ul > li a:hover {
    color: #c9f3ff;
}

.m-header .header-links > ul > li .fa {
    margin-right: .5rem;
}

.m-map {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 1.75rem;
    bottom: 0;
}

/** loading **/
.m-loading {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10500;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .7);
}

.m-loading .loading-box {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3.5rem;
    height: 2rem;
    margin: auto;
    text-align: center;
}

.m-loading .loading-text {
    margin-top: .75rem;
    font-size: .8rem;
    color: #fff;

}

.inner-circles-loader:not(:required) {
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    position: relative;
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(25, 165, 152, 0.5);
    border-radius: 50%;
    overflow: hidden;
    text-indent: -9999px;
    /* Hides inner circles outside base circle at safari */
    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}

.inner-circles-loader:not(:required):before, .inner-circles-loader:not(:required):after {
    content: '';
    position: absolute;
    top: 0;
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
}

.inner-circles-loader:not(:required):before {
    -moz-animation: inner-circles-loader 3s infinite;
    -webkit-animation: inner-circles-loader 3s infinite;
    animation: inner-circles-loader 3s infinite;
    -moz-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    left: 0;
    background: #c7efcf;
}

.inner-circles-loader:not(:required):after {
    -moz-animation: inner-circles-loader 3s 0.2s reverse infinite;
    -webkit-animation: inner-circles-loader 3s 0.2s reverse infinite;
    animation: inner-circles-loader 3s 0.2s reverse infinite;
    -moz-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    right: 0;
    background: #eef5db;
}

@-moz-keyframes inner-circles-loader {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes inner-circles-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes inner-circles-loader {
    0% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

/** dialog-info 鎻愮ず妗嗘牱寮� **/
.modal.dialog-info {
    display: block;
    position: absolute;
    width: 12.5rem;
    height: auto;
    margin: auto;
    left: 0;
    top: 0;
    bottom: auto;
    right: 0;
}

.modal.dialog-info .modal-backdrop {
    display: none;
}

.modal.dialog-info .modal-dialog {
    margin-top: 5%;
    margin-bottom: 0 !important;
    width: 12.5rem;
    color: #fff;
    background-color: rgba(3, 169, 244, .8);
    border-radius: 5px;
}

.modal.dialog-info .modal-dialog .modal-body > div {
    text-align: left !important;
}

.infoBox {
    width: 8rem;
    padding: .2rem;
    background-color: rgba(255, 255, 255, .8);
    box-shadow: 0 0 20px #ccc;
    cursor: default;
    border-radius: 5px;
}

.over-infoBox {
    width: 8rem;
    padding: .2rem;
    background-color: rgba(255, 246, 186, 0.9);
    box-shadow: 0 0 20px #ccc;
    border-radius: 3px;
    cursor: default;
}

.infoBox:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -.5rem;
    border-left: .5rem solid transparent;
    border-right: .5rem solid transparent;
    border-top: .5rem solid rgba(255, 255, 255, .95);
}

.infoBox > img {
    position: absolute;
    right: 0;
    top: -15px;
    width: 1rem;
}

.infoBox .win-name {
    padding-bottom: .5rem;
}

.infoBox .win-name + .win-info {
    padding-top: .5rem;
    border-top: .01rem solid #d8d8d8;
}

.infoBox .win-info {
    font-size: .6rem;
}

.infoBox .win-info + .win-info {
    margin-top: .25rem;
}

.zoom-content {
    position: absolute;
    font-size: 16px;
    top: 1.8rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0);
    width: 2rem;
    height: 2rem;
    z-index: 99;
    color: #4672c8;
}

.zoom-content .fa {
    cursor: pointer;

}

/** 搴旂敤鍦ㄥ湴鍥句笂鏄剧ず **/
.app-marker {
    position: relative;
    width: 0;
    height: 0;
}

.app-marker:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 54px;
    height: 54px;
    margin-left: -27px;
    margin-top: -27px;
    background-color: rgba(84, 150, 231, .2);
    border-radius: 50%;
    box-sizing: border-box;
    animation: circle-scale 2s linear infinite;
}

.app-marker:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    margin-top: -6px;
    background-color: #1181fb;
    box-shadow: 0 0 0 5px rgba(84, 150, 231, .4);
    border-radius: 50%;
    box-sizing: border-box;
}

.app-marker .app-title {
    position: absolute;
    left: 50%;
    top: -70px;
    width: 140px;
    padding-left: 3px;
    margin-left: -70px;
    text-align: center;
    letter-spacing: 3px;
    font-size: 16px;
    color: #1181fb;
    font-weight: bold;
    white-space: nowrap;
}

.app-marker .app-list > ul > li {
    position: absolute;
    width: 56px;
    height: 56px;
    line-height: 56px;
    white-space: nowrap;
}

.app-marker .app-list > ul > li span {
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -20px;
    display: block;
    height: 40px;
    line-height: 40px;
    color: #fff;
    transition: .5s;
    overflow: hidden;
    transform: scale(0);
}

.app-marker .app-list > ul > li img {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    box-shadow: 0 5px 8px rgba(0, 0, 0, .3);
}

.app-marker .app-list > ul > li:hover span {
    transform: scale(1);
}

.app-marker .app-list.list-one > ul > li:nth-child(1) {
    bottom: -104px;
    left: 50%;
    margin-left: -28px;
}

.app-marker .app-list.list-one > ul > li:nth-child(1) span {
    left: 50%;
    padding: 0 20px 0 35px;
    border-top-right-radius: 1000px;
    border-bottom-right-radius: 1000px;
    text-align: right;
}

.app-marker .app-list.list-two > ul > li:nth-child(1) {
    right: -116px;
    top: -29px;
}

.app-marker .app-list.list-two > ul > li:nth-child(2) {
    left: -116px;
    top: -29px;
}

.app-marker .app-list.list-two > ul > li:nth-child(1) span {
    left: 50%;
    padding: 0 20px 0 35px;
    border-top-right-radius: 1000px;
    border-bottom-right-radius: 1000px;
    text-align: right;
}

.app-marker .app-list.list-two > ul > li:nth-child(2) span {
    right: 50%;
    padding: 0 35px 0 20px;
    border-top-left-radius: 1000px;
    border-bottom-left-radius: 1000px;
    text-align: left;
}

.app-marker .app-list.list-three > ul > li:nth-child(1) {
    right: -116px;
    top: -29px;
}

.app-marker .app-list.list-three > ul > li:nth-child(2) {
    bottom: -104px;
    left: 50%;
    margin-left: -28px;
}

.app-marker .app-list.list-three > ul > li:nth-child(3) {
    left: -116px;
    top: -29px;
}

.app-marker .app-list.list-three > ul > li:nth-child(1) span,
.app-marker .app-list.list-three > ul > li:nth-child(2) span {
    left: 50%;
    padding: 0 20px 0 35px;
    border-top-right-radius: 1000px;
    border-bottom-right-radius: 1000px;
    text-align: right;
}

.app-marker .app-list.list-three > ul > li:nth-child(3) span {
    right: 50%;
    padding: 0 35px 0 20px;
    border-top-left-radius: 1000px;
    border-bottom-left-radius: 1000px;
    text-align: left;
}

.app-marker .app-list.list-six > ul > li:nth-child(1) {
    right: -75px;
    top: -104px;
}

.app-marker .app-list.list-six > ul > li:nth-child(2) {
    right: -116px;
    top: -29px;
}

.app-marker .app-list.list-six > ul > li:nth-child(3) {
    right: -75px;
    bottom: -104px;
}

.app-marker .app-list.list-six > ul > li:nth-child(4) {
    left: -75px;
    bottom: -104px;
}

.app-marker .app-list.list-six > ul > li:nth-child(5) {
    left: -116px;
    top: -29px;
}

.app-marker .app-list.list-six > ul > li:nth-child(6) {
    left: -75px;
    top: -104px;
}

.app-marker .app-list.list-six > ul > li:nth-child(1) span,
.app-marker .app-list.list-six > ul > li:nth-child(2) span,
.app-marker .app-list.list-six > ul > li:nth-child(3) span {
    left: 50%;
    padding: 0 20px 0 35px;
    border-top-right-radius: 1000px;
    border-bottom-right-radius: 1000px;
    text-align: right;
}

.app-marker .app-list.list-six > ul > li:nth-child(4) span,
.app-marker .app-list.list-six > ul > li:nth-child(5) span,
.app-marker .app-list.list-six > ul > li:nth-child(6) span {
    right: 50%;
    padding: 0 35px 0 20px;
    border-top-left-radius: 1000px;
    border-bottom-left-radius: 1000px;
    text-align: left;
}

/** 涓績鐐瑰昂瀵稿彉鍖� **/
@keyframes circle-scale {
    0% {
        width: 0;
        height: 0;
        margin-left: 0;
        margin-top: 0;
        background-color: rgba(84, 150, 231, .4);
    }
    50% {
        width: 54px;
        height: 54px;
        margin-left: -27px;
        margin-top: -27px;
        background-color: rgba(84, 150, 231, .2);
    }
    100% {
        width: 108px;
        height: 108px;
        margin-left: -54px;
        margin-top: -54px;
        background-color: rgba(84, 150, 231, 0);
    }
}



.m-main {
    overflow: hidden;
}
.frame {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10800;
    width: 100%;
    height: 100%;
    transform: scale(0) rotateZ(-540deg);
    transition: 1s;
}

.frame.active {
    transform: scale(1) rotateZ(0deg);
}

.frame-control {
    display: none;
}

.frame.active ~ .frame-control {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10801;
    width: 50px;
    height: 50px;
    padding-left: 25px;
    font-size: 20px;
    line-height: 60px;
    color: #fff;
    background: rgba(0,0,0,.5);
    border-top-left-radius: 100%;
    cursor: pointer;
}




