﻿*{
    box-sizing:border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Microsoft YaHei UI','Heiti SC', 'Helvetica','HelveticaNeue','Droidsansfallback','Droid Sans';
    background: #fff;
    color: #333;
    font-size: 3.6vw;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    /*max-width: 280px;*/
}
a{
    color:#333;
    outline-style:none;
}
    a:link {
        text-decoration: none;
    }

    a:visited {
        text-decoration: none;
    }

    a:hover {
        text-decoration: none;
    }

    a:active {
        text-decoration: none;
    }

.clr {
    clear: both;
}



.top-menu {
    position: fixed;
    top: 0;
    height: 13vw;
    width: 100%;
    background: #3c93d5;
    -moz-user-select: none; /*火狐*/
    -webkit-user-select: none; /*webkit浏览器*/
    -ms-user-select: none; /*IE10*/
    user-select: none;
    z-index: 11111111;
    transition: all .3s;
}

    .top-menu.unshow {
        top: -100px;
        opacity: 0;
    }

    .top-menu .title {
        color: #fff;
        font-size: 4.8vw;
        padding: 3vw 4vw;
    }

.btn-menu {
    position: absolute;
    z-index: 50;
    top: 50%;
    right: 2.6667vw;
    margin-top: -4vw;
    width: 8vw;
    height: 8vw;
    display: block;
}

    .btn-menu span:nth-of-type(1) {
        margin-top: -2.4vw;
    }

    .btn-menu span:nth-of-type(2) {
        height: 0.5333vw;
        margin-top: -0.2667vw;
    }

    .btn-menu span:nth-of-type(3) {
        margin-top: 2.133vw;
    }

    .btn-menu span:nth-of-type(1), .btn-menu span:nth-of-type(3) {
        height: 0.5333vw;
    }

    .btn-menu span {
        position: absolute;
        top: 50%;
        right: 1.333vw;
        left: 1.333vw;
        background-color: #fff;
        transition: all .3s ease;
    }

    .btn-menu.active .line:nth-child(2) {
        opacity: 0;
    }

    .btn-menu.active .line:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        margin-top: 0;
        transform: rotate(45deg);
    }

    .btn-menu.active .line:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        margin-top: 0;
    }

.page-foot {
    clear: both;
    width: 100vw;
    text-align: center;
    font-size: 3.2vw;
    color: #666;
    background: #fff;
    padding: 4vw 0;
}


    .page-foot .copyright {
        font-size: 2.8vw;
    }

    .page-foot i {
        width: 100%;
        margin-top: 4vw;
        border-bottom: 0.267vw solid #eee;
        display: block;
        box-shadow: 0px -0.267vw 0.8vw rgba(0,0,0,0.1);
        clear:both;
    }

.selectList {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 11111100;
    max-height: 100vw;
    overflow-y: auto;
    -moz-user-select: none; /*火狐*/
    -webkit-user-select: none; /*webkit浏览器*/
    -ms-user-select: none; /*IE10*/
    user-select: none;
    transform: translateY(100%);
}

    .selectList.on {
        /*调用动画效果*/
        -webkit-animation-name: selectListIn; /*动画名称*/
        -webkit-animation-duration: 0.3s; /*动画持续时间*/
        -webkit-animation-iteration-count: 1; /*动画次数*/
        -webkit-animation-delay: 0s; /*延迟时间*/
        transform: translateY(0);
        box-shadow: 0 -2px 3px rgba(0,0,0,0.1);
        border-top: 1px solid #ddd;
    }

    .selectList.out {
        /*调用动画效果*/
        -webkit-animation-name: selectListOut; /*动画名称*/
        -webkit-animation-duration: 0.3s; /*动画持续时间*/
        -webkit-animation-iteration-count: 1; /*动画次数*/
        -webkit-animation-delay: 0s; /*延迟时间*/
        transform: translateY(100%);
    }

    .selectList ul {
        padding: 0 2.667vw;
        margin: 0;
        box-shadow: 0 -0.533vw 1.333vw rgba(0,0,0,0.1);
    }

        .selectList ul li {
            list-style: none;
            border-bottom: 1px solid #eee;
            text-align: center;
            padding: 2.667vw 0;
            color: #666;
        }

            .selectList ul li:last-child {
                border-bottom: none;
            }

.selectBg {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.2);
    z-index: 10;
    transform: translateY(200%);
}

        .selectBg.on {
            /*调用动画效果*/
            -webkit-animation-name: selectBgIn; /*动画名称*/
            -webkit-animation-duration: .3s; /*动画持续时间*/
            -webkit-animation-iteration-count: 1; /*动画次数*/
            -webkit-animation-delay: 0s; /*延迟时间*/
            transform: translateY(0);
        }

        .selectBg.out {
            /*调用动画效果*/
            -webkit-animation-name: selectBgOut; /*动画名称*/
            -webkit-animation-duration: .6s; /*动画持续时间*/
            -webkit-animation-iteration-count: 1; /*动画次数*/
            -webkit-animation-delay: 0s; /*延迟时间*/
            transform: translateY(200%);
        }



/*动画效果*/
@-webkit-keyframes selectBgIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*动画效果*/
@-webkit-keyframes selectBgOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(200%);
    }
}



    /*动画效果*/
    @-webkit-keyframes selectListIn {
        0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*动画效果*/
@-webkit-keyframes selectListOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}




.popup-modal-mask {
    position: fixed;
    z-index: 20000;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    text-align: center;
}

.popup-modal-content {
    position: absolute;
    top: 50%;
    margin-top: -10em;
    width: 80%;
    margin-left: 10%;
}

.popup-modal-body {
    background: #fff;
    padding: 2em;
    border-bottom: 1px solid #E6EBEF;
}

.popup-modal-bfoot {
    background: #fff;
}

    .popup-modal-bfoot button {
        border: none;
        background: #3c93d5;
        padding: 2.667vw 4vw;
        color: #fff;
        width:100%;
        border-radius:0;
    }

.btn-screenshot {
    padding: 2.667vw;
    border-radius:0;
    font-size:3.6vw;
}

#screenshotWrap {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    z-index: 100000000;
}

    #screenshotWrap .screenshot-tool {
        text-align:right;
        padding:2.667vw 4vw;
        height:5vh;
    }

        #screenshotWrap .screenshot-tool i {
            font-size: 6vw;
            color: #fff;
        }

    #screenshotWrap .screenshot-img {
        margin: 0vh 4vw 0 4vw;
        width: 92vw;
        height: 85vh;
        overflow-y:auto;
        text-align:center;
    }

    #screenshotWrap .screenshot-img img{
        max-height:100%;
    }

    #screenshotWrap .screenshot-summary {
        width:100vw;
        height:10vh;
        color:#fff;
        font-size:4vw;
        text-align:center;
        line-height:8vh;
    }

.screenshot-foot{
    background:#fff;
    float:left;
    width:100vw;
    text-align:center;
    padding-bottom:4vw;
}

    .screenshot-foot img {
        width: 30vw;
        height: auto;
        display: block;
        margin: 0 auto 2.667vw auto;
    }

    .screenshot-foot span {
        font-size:3.6vw;
    }

        .screenshot-foot span.name {
            color: #3c93d5;
            font-size:4.4vw;
        }