/**本页面公共部分**/
img {
    /* max-width: 90%; */
    /* width: 90%; */
}

a:hover {
    color: #ffffff;
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2%;
}

body {
    width: 100%;
    background: url(../images/bodybg.jpg) #0d2c87 repeat-y;
    /* background-color:red; */
    background-size: 100%;
    font-size: 14px;
    line-height: 30px;
}

.indent3 {
    color: #5abaea;
    padding-left: 7px;
    /* border-left: solid 3px #486fe4; */
    /* margin-top: -7px; */
}


/**导航栏目录相关**/
.header {
    height: 40px;
    line-height: 60px;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    background: #ebebeb;
}

.header {
    line-height: 40px;
}

.header .logo {
    float: left;
    height: 40px;
    /* margin-top: 10px; */
}

.header .logo img {
    height: 100%;
}

a {
    text-decoration: none;
    color: #08d2ff;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

.nav {
    float: right;
}

.nav li {
    float: left;
    margin-left: 25px;
}

.nav li a {
    font-size: 14px;
    color: #333333;
    display: block;
}

.nav li a:hover {
    color: #2860c6;
}



/**控制网白行目录 手机版本**/
@media only screen and (max-width: 1200px) {
    .center {
        padding: 10% 0 0 0;
    }

    .titimg { /* max-width: 60%; */
    }

    .header {
        top: 0;
    }


    .menu_btn {
        float: right;
        display: block;
        width: 40px;
        height: 40px;
        position: relative;
        /* margin-left: 10px; */
        /* margin-top: 10px; */
    }

    .menu_btn:before,
    .menu_btn:after {
        content: "";
        position: absolute;
        right: 0;
        width: 26px;
        height: 2px;
        background: #333;
        -webkit-transition: all .3s ease-out 0s;
        -moz-transition: all .3s ease-out 0s;
        transition: all .3s ease-out 0s;
    }

    .menu_btn:before {
        top: 13px;
    }

    .menu_btn:after {
        bottom: 13px;
    }

    .menu_btn.on:before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 50%;
    }

    .menu_btn.on:after {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 50%;
    }

    .header .nav {
        position: absolute;
        right: 0;
        top: 110%;
        width: 260px;
        background: rgba(0, 0, 0, 0.8);
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all .3s ease-in-out 0s;
        -moz-transition: all .3s ease-in-out 0s;
        transition: all .3s ease-in-out 0s;
    }

    .header .nav.on {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }

    .header .nav li {
        width: 100%;
        float: none;
    }

    .header .nav li > a {
        color: #fff;
        font-size: 16px;
        height: 36px !important;
        line-height: 36px !important;
    }

}