* {
    margin: 0;
    padding: 0;
    font-family: 'Arial Normal', 'Arial';
}

.bagbox {
    top:110px;
    width: 1024px;
    margin: 0 auto;
    min-height: 555px;
}

.clear {
    clear: both;
}

.all {
}

/*.banner {
  
    background-size: inherit;
    height: 120px;
    text-align: center;
    font-size: 40px;
}

    .banner p {
        padding-top: 40px;
        color: white;
    }*/

.menu ul {
    /*background: #33aadc;*/
    FILTER: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#07a4e6,endColorStr=#174992);
    /*IE 6 7 8*/
    background: -ms-linear-gradient(top, #07a4e6, #174992);
    /* IE 10 */
    background: -moz-linear-gradient(top,#07a4e6,#174992);
    /*火狐*/
    background: -webkit-gradient(linear, 0% 0%, 0% 100%,from(#07a4e6), to(#174992));
    /*谷歌*/
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#07a4e6), to(#174992));
    /* Safari 4-5, Chrome 1-9*/
    background: -webkit-linear-gradient(top, #07a4e6, #174992);
    /*Safari5.1 Chrome 10+*/
    background: -o-linear-gradient(top, #07a4e6, #174992);
    /*Opera 11.10+*/
}

#menulion {
    background: white;
}

    #menulion a {
        color: #0a95d8;
        font-weight: bold;
    }

.menu ul li {
    width: 12.5%;
    list-style-type: none;
    display: inline-block;
    float: left;
    text-align: center;
    box-sizing: border-box;
    padding: 6px 0;
}

    .menu ul li:hover {
        color: red;
    }

    .menu ul li a {
        box-sizing: content-box;
        display: block;
        padding: 4px 0;
        border-bottom: none;
        color: white;
        text-decoration: none;
    }


/*----------<title>主页</title>------------*/

html,
body {
    width: 100%;
}

.index {
    background: url(../img/indexbgps6.jpg);
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    text-align: center;
}

.index-img img {
    margin-top: 6%;
}

.index-bt {
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: -80px;
    text-align: center;
    display: block !important;
}

    .index-bt ul {
        display: inline-block;
    }

        .index-bt ul li {
            list-style-type: none;
            float: left;
            margin: 0 40px;
        }

    .index-bt button {
        display: block;
        width: 110px;
        height: 110px;
        z-index: 10;
        border: none;
        cursor: pointer;
    }

    .index-bt ul li:first-child button {
        background: url(../img/a1.png) center center no-repeat;
        background-size: 88px 88px;
    }

    .index-bt ul li:nth-child(2) button {
        background: url(../img/a2.png) center center no-repeat;
        background-size: 88px 88px;
    }

    .index-bt ul li:nth-child(3) button {
        background: url(../img/a3.png) center center no-repeat;
        background-size: 88px 88px;
    }

    .index-bt ul li:nth-child(4) button {
        background: url(../img/a4.png) center center no-repeat;
        background-size: 88px 88px;
    }

    .index-bt ul li:nth-child(5) button {
        background: url(../img/a5.png) center center no-repeat;
        background-size: 88px 88px;
    }

    .index-bt ul li:nth-child(6) button {
        background: url(../img/a6.png) center center no-repeat;
        background-size: 88px 88px;
    }

    .index-bt ul li button:hover {
        background-size: 100px;
        animation: myfirst .5s;
        -moz-animation: myfirst .5s;
        /* Firefox */
        -webkit-animation: myfirst .5s;
        /* Safari and Chrome */
        -o-animation: myfirst .5s;
        /* Opera */
    }

@keyframes myfirst {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-moz-keyframes myfirst {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-webkit-keyframes myfirst {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-o-keyframes myfirst {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.index-bt ul li span {
    line-height: 2;
    color: white;
    /*color: #beced9;*/
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
}

/*----------<title>考试登录</title>------------*/

.middle-ks {
    width: 1024px;
    margin: 0 auto;
    margin-top: 84px;
    border-radius: 24px;
}

.middle-ks-tit {
    text-align: center;
}

    .middle-ks-tit h1 {
        font-size: 20px;
        padding: 16px 0;
    }

.middle-ks-center {
}

.middle-ks-logininfo {
    text-align: center;
    margin-bottom: 12px;
}

    .middle-ks-logininfo ul {
        margin: 0 auto;
    }

        .middle-ks-logininfo ul li {
            list-style-type: none;
            padding: 6px 0;
        }

            .middle-ks-logininfo ul li p {
                display: inline-block;
                width: 100px;
            }

            .middle-ks-logininfo ul li input {
                width: 222px;
                height: 22px;
                text-indent: 6px;
            }

.middle-ks-most {
    width: 328px;
    margin: 0 auto;
}

    .middle-ks-most textarea {
        width: 328px;
        padding: 2px;
        box-sizing: border-box;
        height: 66px;
        margin: 6px 0;
    }

    .middle-ks-most h1 {
        display: inline-block;
        font-size: 13px;
        margin-bottom: 20px;
    }

.middle-ks-btt {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
}

    .middle-ks-btt button {
        width: 120px;
        height: 28px;
        background: #a8a8a8;
        border: none;
        color: white;
        border-radius: 6px;
    }

        .middle-ks-btt button:first-child {
            background: #da4f49;
        }

        .middle-ks-btt button:nth-child(2) {
            float: right;
        }

.middle-ks-bg {
    background: url(../img/testbg.jpg);
    width: 700px;
    height: 461px;
    margin: 0 auto;
    padding: 50px 0;
}

.middle-ks-title {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    color: #4a83b2;
    margin-bottom: 70px;
}

.middle-ks-input-group {
    width: 400px;
    margin: 25px auto;
    font-size: 20px;
    height: 30px;
    line-height: 30px;
}

    .middle-ks-input-group label {
        width: 36%;
        display: inline-block;
        text-align: center;
    }

    .middle-ks-input-group input {
        width: 58%;
        height: 30px;
        border-radius: 4px;
        padding: 2px 6px;
    }

.middle-ks-promise {
    width: 340px;
    height: 40px;
    margin: 0 auto;
    margin-top: 150px;
    color: #fff;
    text-align: center;
}

.middle-ks-btn {
    width: 500px;
    margin: 40px auto;
    text-align: center;
    height: 40px;
}

    .middle-ks-btn button {
        width: 100px;
        border: none;
        height: 30px;
        background-color: #fff;
        margin: 10px;
        border-radius: 3px;
        cursor: pointer;
    }

/*----------<title>考试中</title>------------*/

.middle-ts {
}

.middle-ts-show {
}

    .middle-ts-show ul {
        margin: 10px 0;
        background: white;
        border-radius: 100px;
    }

        .middle-ts-show ul li {
            list-style-type: none;
            float: left;
            /*width: 22%;
	text-align: center;*/
            padding: 10px 0;
            /*height:30px;*/
            margin-left: 40px;
        }

            .middle-ts-show ul li.testname {
                /*width: 33%;*/
            }

            .middle-ts-show ul li span {
            }

            .middle-ts-show ul li:nth-child(3) span:nth-child(2) {
                color: red;
                font-weight: bold;
            }

            .middle-ts-show ul li span:nth-child(2) {
                font-size: 16px;
                color: slategrey;
            }

.middle-ts-box {
}

.middle-ts-title {
}

    .middle-ts-title table {
        text-align: center;
        width: 100%;
    }

        .middle-ts-title table tr {
        }

            .middle-ts-title table tr td {
                width: 5%;
                height: 20px;
                border: 1px solid #a8a8a8;
                border-radius: 4px;
            }

.ts-pass {
    background: #dedede;
}

.ts-error {
    background: #ef5b5b;
    color: white;
    /*color: #ef5b5b;
    background: none;*/
}

.ts-true {
     background: #6fa671;
    color: white;
}

.ts-ing {
    background: #66cccc;
    color: white;
}

.middle-ts-title table tr td:hover {
    color: red;
}

.middle-ts-detail {
    background: white;
    /*border: 6px solid #b4e7e9;*/
    border:6px solid #E5E5E5;
    margin-top: 10px;
}

.middle-ts-detail-p {
}

    .middle-ts-detail-p span {
        display: inline;
    }

    .middle-ts-detail-p p {
        min-height: 72px;
        padding: 1% 2%;
    }

.middle-ts-detail-x {
    padding-bottom: 10px;
    margin: 0 1%;
}

.middle-ts-detail-x1 {
    text-indent: 20px;
    margin: 5px 0;
}

.middle-ts-detail-x2 {
    text-indent: 20px;
    margin: 5px 0;
}

.middle-ts-detail p {
    display: inline-block;
}

.middle-ts-detail input {
    margin-right: 6px;
}

.middle-ts-change {
    text-align: center;
}

    .middle-ts-change button {
        height: 27px;
        width: 96px;
        margin: 2% 3%;
        cursor: pointer;
    }

        .middle-ts-change button:nth-child(2) {
            background: #da4f49;
            color: white;
            border: none;
            border-radius: 6px;
        }

.test-result {
    display: none;
}
/*-----------------考试列表----------------------*/
.test-table {
    width: 100%;
    margin: 20px 0;
    text-align: center;
    background: #fefefe;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-box-shadow: 0 0 4px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

    .test-table th, .test-table td {
        text-align: center;
        word-wrap: break-word;
        box-sizing: border-box;
        word-break: break-word;
        padding:5px;
    }

    .test-table th {
        text-shadow: 1px 1px 1px #fff;
        background: #e8eaeb;
        height:40px;
    }
    .test-table td {
        border-top: 1px solid #e0e0e0;
        border-right: 1px solid #e0e0e0;
        font-size:14px;
        background: -moz-linear-gradient(100% 25% 90deg, #fefefe, #f9f9f9);
        background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f9f9f9), to(#fefefe));
    }
    .test-table td:nth-child(3){
        min-width:208px;
    }

    .test-table tr.odd-row td {
        background: #f6f5f6;
        background: -moz-linear-gradient(100% 25% 90deg, #f6f6f6, #f1f1f1);
        background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f1f1f1), to(#f6f6f6));
    }

    .test-table th {
        background: -moz-linear-gradient(100% 20% 90deg, #e8eaeb, #ededed);
        background: -webkit-gradient(linear, 0% 0%, 0% 20%, from(#ededed), to(#e8eaeb));
    }
 .test-table button {
        background-color: red;
        border: none;
        color: #fff;
        width: 80px;
        height: 30px;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        background: none;
        color: red;
        cursor:pointer;
        visibility:hidden;
    }
/*----------<title>考试第一题</title>------------*/

.middle-ts-detail-x3 {
    text-indent: 20px;
    margin: 5px 0;
}

.middle-ts-detail-x4 {
    text-indent: 20px;
    margin: 5px 0;
}

.up {
    border: 1px solid #b5b5b5;
    background: none;
    color: #b5b5b5;
    border-radius: 6px;
}


/*----------<title>考试最后一题</title>------------*/

.middle-ts-detail-x5 {
    text-indent: 20px;
    margin: 5px 0;
}

.middle-ts-detail-x6 {
    text-indent: 20px;
    margin: 5px 0;
}

.down {
    border: 1px solid #b5b5b5;
    background: none;
    color: #b5b5b5;
    border-radius: 6px;
}


/*----------<title>考试通过</title>------------*/

.middle-ps {
}

.middle-ps-report {
    width: 90%;
    margin: 40px auto; 
    margin-bottom:0; 
}

.middle-ps-report-left {
    float: left;
    width: 62%;
    border-right:1px dashed #a8a8a8;
    box-sizing: border-box;
}

    .middle-ps-report-left ul {
    }

        .middle-ps-report-left ul li {
            list-style-type: none;
            display: table-cell;
            text-align: center;
        }

            .middle-ps-report-left ul li:nth-child(2) {
                max-width: 600px;
            }

            .middle-ps-report-left ul li:nth-child(2n+1) {
                list-style-type: none;
            }

            .middle-ps-report-left ul li p {
                display: inline-block;
            }

                .middle-ps-report-left ul li p:nth-child(2) {
                    color: slategrey;
                    font-weight: bold;
                }

                .middle-ps-report-left ul li p:first-child {
                    display: inline-block;
                    margin: 8px 0;
                    width: 100px;
                }

                .middle-ps-report-left ul li p:nth-child(2) {
                    display: inline-block;
                    margin: 8px 0;
                }

.middle-ps-report-right {
    float: right;
    width: 38%;
    padding-top: 9px;
}

    .middle-ps-report-right img {
        width: 50px;
        height: 50px;
        line-height: 60px;
        float: left;
        padding-left:25px;
    }

    .middle-ps-report-right h1 {
        color: #1E9FFF;
        display: inline-block;
        float: left;
        height: 50px;
        line-height: 50px;
        padding-left:16px;
        font-size:24px;
    }

.middle-ps-bt {
    text-align: center;
}

    .middle-ps-bt button {
        height: 27px;
        width: 96px;
        margin: 3%;
    }

.nogobt {
    border: 1px solid #b5b5b5;
    background: none;
    color: #b5b5b5;
    border-radius: 6px;
}

.middle-psing {
    width: 90%;
    margin: 0 auto;
}

    .middle-psing table {
        text-align: center;
        width: 100%;
    }

        .middle-psing table tr {
        }

            .middle-psing table tr td {
                width: 5%;
                height: 20px;
                border: 1px solid #a8a8a8;
                border-radius: 4px;
    cursor:pointer;

            }

.bad {
    color: white;
    background: #A8A8A8;
}

.middle-psing-zs {
    text-align: right;
    margin-top: 10px;
    width: 90%;
}

    .middle-psing-zs p {
        color: #8A8D8C;
        font-size: 14px;
    }

    .middle-psing-zs span {
        color: blue;
        border-bottom: 1px solid;
    }


/*----------<title>考试不通过</title>------------*/

#nogo {
    color: red;
}


/*----------<title>开始模拟考试</title>------------*/


/*----------<title>开始模拟考试</title>------------*/


/*----------<title>开始模拟考试</title>------------*/

.mn-middle-et {
    width:75%
}

.mn-middle-et-show {

}

    .mn-middle-et-show ul {
        background: aliceblue;
        margin: 0 auto;
        width: 40%;
        padding: 30px 40px 16px 40px;
        margin-top: 10%;
        /*border: 1px solid red;*/
        border-radius: 6px;
        border-top-left-radius: 66px;
        border-bottom-right-radius: 66px;
        box-shadow:1px 1px 8px #666666;
    }

        .mn-middle-et-show ul li {
            /*list-style-type: none;
	float: left;
	width: 25%;*/
            text-align: center;
            padding: 10px 0;
        }

            .mn-middle-et-show ul li p {
                display: inline-block;
            }

                .mn-middle-et-show ul li p:first-child {
                    margin: 0 12px;
                }


            .mn-middle-et-show ul li:nth-child(4) {
                padding: 0;
            }

            .mn-middle-et-show ul li span {
                /*font-size: 18px;
	color: slategrey;
	margin: 0 2px;*/
            }

#logoff {
    background-color: red;
    display: inline-block;
    width: 90px;
    height: 20px;
    padding: 5px;
    color: white;
    cursor: pointer;
}

.mn-middle-et-show ul li select {
}

.mn-middle-et-show ul li option {
}

.mn-middle-et-show ul li input {
    width: 40px;
    text-align: center;
}

.mn-middle-et-show ul li button {
    font-size: 14px;
    height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    border: 2px solid #ff8282;
    color: #ff8282;
    font-weight: bold;
    background: none;
}
/*.mn-middle-et-show ul li button:nth-child(2) {
    margin-left:30px;
}*/


/*----------<title>开始模拟考试</title>------------*/

.mn-middle-ing-show ul {
    background: aliceblue;
    margin: 10px 0;
}

    .mn-middle-ing-show ul li {
        list-style-type: none;
        float: left;
        /*/*width: 17%;*/ */ text-align: center;
        padding: 10px 0;
        margin-left: 40px;
    }

        .mn-middle-ing-show ul li:first-child {
            /*width: 25%;*/
        }

        .mn-middle-ing-show ul li:nth-child(5) {
            /*width: 20%;*/
        }

        .mn-middle-ing-show ul li:nth-child(4) {
            /*padding: 0;*/
        }

        .mn-middle-ing-show ul li p {
            display: inline-block;
        }

        .mn-middle-ing-show ul li span {
            /*font-size: 18px;
	margin: 0 2px;*/
        }

        .mn-middle-ing-show ul li:nth-child(5) span:last-child {
            color: red;
            font-weight: bold;
        }

        .mn-middle-ing-show ul li select {
            color: #C0C0C0;
            max-width: 142px;
        }

        .mn-middle-ing-show ul li input {
            width: 32px;
            text-align: center;
            color: #C0C0C0;
            background: none;
            border: none;
            border-bottom: 1px solid black;
        }

        .mn-middle-ing-show ul li button {
            font-size: 14px;
            height: 30px;
            margin-top: 5px;
            padding: 0 6px;
            border-radius: 6px;
            border: 2px solid #f1ae26;
            color: #f1ae26;
            font-weight: bold;
            background: none;
        }

#residuetime {
    color: red;
}

.mn-middle-ing-title {
}

    .mn-middle-ing-title table {
        text-align: center;
        width: 100%;
    }

        .mn-middle-ing-title table tr {
        }

            .mn-middle-ing-title table tr td {
                width: 5%;
                height: 20px;
                border: 1px solid #a8a8a8;
                border-radius: 4px;
            }

.mn-middle-ing-show ul li.test-score {
    display: none;
}
/*----------<title>练习</title>------------*/
    .ex-middle-navigation{
        padding-left: 10px;
        float: left;
        color: #525252;
        width: 100%;
        /*border-bottom: 1px solid #ccc;*/
        box-sizing:border-box;
    }
    .ex-middle-navigation p{
        border-left: 2px solid red;
        padding-left: 12px;
        margin-bottom: 8px;
        color: black;
        font-size: 14px;
    }
    .ex-middle-navigation p span{
        font-size:14px;
        margin:0 2px;
    }
    .ex-middle-navigation p strong {
        color:red;
        float:right;
        cursor:pointer;
    }

    .ex-middle-show ul{
        display:none;
    }

   .ex-middle-show #coursechoose{
       height: 200px;
     -webkit-column-width: 100px;
     -moz-column-width: 100px;
     column-width: 100px;
    }

    .ex-middle-show ul li {
        list-style-type: none;
        float: left;
        text-align: center;
        box-sizing: border-box;
        color:#666666;
        height: 24px;
       line-height: 24px;
    }
        .ex-onnow{
            /*border-top: 2px solid #4caf50;
            color:#4caf50;*/
            background:#4caf50;
            color:white;
            background:#2a86ba;
        }

        .ex-middle-show ul li:nth-child(1) span{
            font-size:16px;
            margin-left:0;
            cursor:default;
        }
        .ex-middle-show ul li span{
            margin: 0 4px;
            cursor:pointer;
            font-size:14px;
        }

        .ex-middle-show ul li select {
        }

        .ex-middle-show ul li:nth-child(3) span {
            margin-right: 10px;
        }

        .ex-middle-show ul li:nth-child(3) g {
            font-size: 14px;
        }

.ex-middle-detail {
    background: #F9F9F9;
    border: 1px solid #c3c3c3;
    /*border-top: none;*/
    margin-left:1%;
}

.ex-middle-detail-p {
}

    .ex-middle-detail-p span {
        display: inline;
    }

    .ex-middle-detail-p p {
        /*min-height: 72px;*/
        padding: 2%;
        text-indent:12px;
    }

.ex-middle-detail-x {
    padding-bottom: 5px;
    margin: 0 1%;
}

.ex-middle-detail-x1 {
    text-indent: 20px;
    margin: 5px 0;
}

.ex-middle-detail-x2 {
    text-indent: 20px;
    margin: 5px 0;
}

.ex-middle-detail-x3 {
    text-indent: 20px;
    margin: 5px 0;
}

.ex-middle-detail-x4 {
    text-indent: 20px;
    margin: 5px 0;
}

.ex-middle-detail p {
    display: inline-block;
}

.ex-middle-detail input {
    margin-right: 6px;
}

.ex-middle-detail-z {
    text-align: right;
    margin: 6px 12px;
}


    .ex-middle-detail-z span {
        color: red;
        font-size: 14px;
        margin-right: 12px;
    }

    .ex-middle-detail-z button {
        width: 90px;
        height: 24px;
        line-height: 24px;
    }

.ex-middle-change {
    margin: 2%;
}

.ex-middle-change-left {
    float: left;
    width: 50%;
    display: inline-block;
}

    .ex-middle-change-left button {
        height: 27px;
        width: 96px;
        margin: 0 3%;
    }

.ex-middle-change-right {
    float: right;
    width: 50%;
    display: inline-block;
    text-align: right;
}

    .ex-middle-change-right p {
        display: inline-block;
    }

    .ex-middle-change-right span {
        margin: 0 12px;
        color: blue;
        font-weight: bold;
    }

    .ex-middle-change-right input {
        width: 32px;
        text-align: center;
        margin: 0 6px;
    }

.ex-answer-submit {
    background: #4caf50;
    border: none;
    font-size: 14px;
    border-radius: 4px;
    color: white;
}

.ex-answer-inform {
    font-size: 16px;
    padding: 10px;
    color: red;
}

#informcontent,#informcontentHint {
    color: #8c8c8c;
    font-size: 17px;
    text-align: center;
    border: none;
}
#informcontent li:hover,#informcontentHint li:hover{
    color: white;
    background: #2a86ba;
    cursor:pointer;
}
/*----#ex_Index{
    text-align: center;
    margin: 0 6px;
    border: 1px solid #a9a9a9;
    padding: 0px 12px;
}-----*/

.ex-middle-change-right button {
    width: 60px;
    margin-left: 6px;
}


/*----------<title>学习简易菜单</title>------------*/

.sd-middle-table {
}

    .sd-middle-table table {
        width: 100%;
        text-align: center;
        border-collapse: collapse;
    }

        .sd-middle-table table tr {
            /*border: 1px solid black;*/
        }

            .sd-middle-table table tr th {
                max-width: 30%;
                height: 28px;
                border: 1px solid black;
                box-sizing: border-box;
            }

            .sd-middle-table table tr td {
                height: 44px;
                border: 1px solid black;
                box-sizing: border-box;
            }

                .sd-middle-table table tr td:nth-child(4) {
                    width: 30%;
                }


/*----------<title>学习菜单界面</title>------------*/

.sd-middle {
    margin-top: 24px;
    margin-bottom: 25px;
    background: #fff;
    padding: 0 5px;
}


.sd-middle ul {
    border: 1px solid #8f8f8f;
    min-height: 50px;
    padding: 1%;
    margin-top: 5px;
}

    .sd-middle ul li {
        list-style-type: none;
    }
     .sd-middle ul li h1 {
            font-size: 18px;
        }

            .sd-middle ul li h1 span {
                background-image: url(../img/backgroundmuch.png);
                overflow: hidden;
                position: relative;
                width: 16px;
                height: 16px;
                display: inline-block;
                padding: 0;
                vertical-align: -2px;
                font-size: 0;
                line-height: 9999em;
                background-repeat: no-repeat;
            }

.sd-middle li h1 a {
    color: #551a8b;
}

.sd-middle ul li p {
    font-size: 14px;
    margin-top: 10px;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

    .sd-middle ul li:last-of-type p {
     height: 30px;
     margin: 0;
    }

    .sd-middle ul li p c {
        color: #888;
        font-size: 13px;
    }

        .sd-middle ul li p c:first-child {
            /*border-right: 1px solid #888;*/
            padding-right: 20px;
        }

        .sd-middle ul li p c:nth-child(2) {
            padding-left: 20px;
        }

    .sd-middle ul li p button {
        float: right;
        background: #2fad85;
        color: white;
        border: none;
        width: 100px;
        height: 30px;
        cursor: pointer;
    }


.sd-middle-left {
    width: 70%;
    float: left;
}

.sd-middle-leftadd {
    display: none;
    width: 70%;
    float: left;
}

.sd-middle-lefti {
    width: 100%;
}



.sd-middle-left ul {
    border: 1px solid #8f8f8f;
    min-height: 50px;
    padding: 1%;
    margin-top: 5px;
}

    .sd-middle-left ul li {
        list-style-type: none;
    }

        .sd-middle-left ul li:first-child {
            margin-top: 4px;
        }

        .sd-middle-left ul li h1 {
            font-size: 18px;
        }

            .sd-middle-left ul li h1 span {
                background-image: url(../img/backgroundmuch.png);
                overflow: hidden;
                position: relative;
                width: 16px;
                height: 16px;
                display: inline-block;
                padding: 0;
                vertical-align: -2px;
                font-size: 0;
                line-height: 9999em;
                background-repeat: no-repeat;
            }

.sd-doc {
    background-position: -193px -991px;
}

.sd-pdf {
    background-position: -193px -1075px;
}

.sd-ppt {
    background-position: -193px -1138px;
}

.sd-txt {
    background-position: -193px -1180px;
}

.sd-xls {
    background-position: -193px -1243px;
}

.sd-mp3 {
    background-position: -193px -880px;
}
.sd-mp4 {
    background-position: -193px -902px;
}
.sd-sp {
    background-position: -193px -902px;
}

.biga {
    color: #551a8b;
}

.sd-middle-left li h1 a {
    color: #551a8b;
}

.sd-middle-left ul li p {
    font-size: 14px;
    margin-top: 10px;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

    .sd-middle-left ul li:last-of-type p {
     height: 30px;
     margin: 0;
    }

    .sd-middle-left ul li p c {
        color: #888;
        font-size: 13px;
    }

        .sd-middle-left ul li p c:first-child {
            /*border-right: 1px solid #888;*/
            padding-right: 20px;
        }

        .sd-middle-left ul li p c:nth-child(2) {
            padding-left: 20px;
        }

    .sd-middle-left ul li p button {
        float: right;
        background: #2fad85;
        color: white;
        border: none;
        width: 100px;
        height: 30px;
        cursor: pointer;
    }

.sd-middle-right {
    float: right;
    width: 280px;
    margin-bottom:15px;
}

.sd-middle-sousuo {
    /*float: right;*/
    margin-top: 5px;
}

    .sd-middle-sousuo input {
        width: 178px;
        height: 30px;
        float: left;
        padding-left: 10px;
        border: 2px solid #3193ea;
    }

    .sd-middle-sousuo button {
        height: 34px;
        width: 88px;
        float: left;
        background: #3193ea;
        border: 2px solid #3193ea;
        color: white;
        font-size: 13px;
        cursor: pointer;
    }

.sd-middle-serach {
    margin: 12px 0;
}

    .sd-middle-serach ul {
    }

        .sd-middle-serach ul li {
            text-align: center;
            min-width: 70px;
            display: inline-block;
            border: 1px solid #A8A8A8;
            box-sizing: border-box;
            float: left;
            height: 45px;
            line-height: 45px;
            cursor: pointer;
            border-radius: 4px;
            font-size: 14px;
            overflow:hidden;
           
        }

#sd_gengduoi {
    width: 140px;
}

.sd-middle-serach ul li:hover {
    background: #A8A8A8;
    color: white;
    /*font-weight: bold;*/
    /*font-size: 12px;*/
    animation: myfirst .5s;
    -moz-animation: myfirst .5s;
    -webkit-animation: myfirst .5s;
    -o-animation: myfirst .5s;
}
.sd-middle-serach #acdmicClass{
    margin-top:110px;
}
.sd-middle-serach ul:first-child li, .sd-middle-serach #acdmicClass li{
    width: 280px;
    background: #F7A945;
    border: 1px solid #a8a8a8;
    color: white;
    height:32px;
    line-height:32px;
}

.sd-middle-serach ul:first-child li:nth-child(2) {
    border-left: none;
}

.sd-middle-serach ul:first-child li:hover,.sd-middle-serach #acdmicClass li{
    animation: none;
    font-size:14px;
}

.sd-middle-serach select {
    width: 48%;
    height: 30px;
    font-size: 14px;
    font-weight: 200;
    line-height: 30px;
    padding-left: 4px;
    border: 1px solid #3c8cd3;
}

    .sd-middle-serach select:nth-child(1) {
        float: left;
    }

    .sd-middle-serach select:nth-child(2) {
        float: right;
    }
    /*院校分类下拉列表*/
    .sd-middle-serach #select_acdmicKinds {
        float: right;
        width: 74%;
        height: 30px;
        font-size: 14px;
        font-weight: 200;
        line-height: 30px;
        padding-left: 4px;
        border: 1px solid #3c8cd3;
    }

.F7 {
    color: #F7A945;
    font-weight: bold;
}

.re {
    color: red;
    font-weight: bold;
}

.sd-middle-zhishi {
}

    .sd-middle-zhishi li {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 6px auto;
        width: 92%;
        font-size: 14px;
    }

.sd-middle-zhishi-much {
    text-align: right;
    margin: 0 8px 8px 0;
    font-size: 12px;
    color: blue;
    cursor: pointer;
}

.sd-middle-zhishi span:nth-child(3) {
    float: right;
    color: #88888f;
    font-size: 12px;
    line-height: 16px;
    max-width: 76px;
}

.sd-middle-remen {
    border: 1px solid #bababa;
    border-radius: 6px;
    display: none;
}

    .sd-middle-remen ul {
        max-height: 226px;
        overflow: hidden;
    }

    .sd-middle-remen h1 {
        font-size: 14px;
        text-align: center;
        height: 30px;
        line-height: 30px;
        color: white;
        margin: 0;
        background: #da4f49;
        width: 100%;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    .sd-middle-remen span:first-child {
        float: left;
        width: 48px;
        margin-right: 6px;
        overflow: hidden;
        color: #645e6d;
    }

    .sd-middle-remen span:nth-child(2) {
        width: 168px;
        overflow: hidden;
        float: left;
    }

.sd-middle-zuixin {
}

    .sd-middle-zuixin ul {
        /*max-height: 236px;*/
        overflow: hidden;
        padding-bottom: 4px;
    }

.sd-middle-zuixin {
    border: 1px solid #bababa;
    border-radius: 6px;
}

    .sd-middle-zuixin h1 {
        font-size: 14px;
        text-align: center;
        height: 30px;
        line-height: 30px;
        color: white;
        margin: 0;
        background: #64C333;
        width: 100%;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    .sd-middle-zuixin span:first-child {
        float: left;
        width: 28px;
        margin-right: 6px;
        overflow: hidden;
        color: #645e6d;
    }

    .sd-middle-zuixin span:nth-child(2) {
        width: 141px;
        float: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .sd-middle-zuixin span:nth-child(2):hover{
        /*color:blue;*/
    }
    .sd-middle-zuixin span:nth-child(2) a:hover{
        color:blue;
    }
.sd-font {
    color: white;
    background: #fd6969;
    font-weight: bold;
}

.sd-fontii {
    color: white;
    background: #31c7d0;
    font-weight: bold;
}
/*----------<title>学习菜单详情界面</title>------------*/
.sd-xqtitle {
}

.sd-xqtitle-home {
    color: #555;
    font-size: 12px;
    padding-bottom: 8px;
}

    .sd-xqtitle-home span {
        margin-left: 4px;
    }

        .sd-xqtitle-home span:first-child {
            margin-left: 0;
        }

        .sd-xqtitle-home span:last-child {
            color: #999;
            ;
        }

.sd-xqtitleh1 {
    margin: 10px 0 5px 0;
    display: none;
}

    .sd-xqtitleh1 span {
        background-image: url(../img/backgroundmuch.png);
        overflow: hidden;
        position: relative;
        width: 16px;
        height: 16px;
        display: inline-block;
        padding: 0;
        vertical-align: -2px;
        font-size: 0;
        line-height: 9999em;
        background-repeat: no-repeat;
        background-position: -193px -991px;
        margin-bottom: 3px;
    }

    .sd-xqtitleh1 h1 {
        font-size: 24px;
        display: inline-block;
    }

.sd-xqtitlexq {
    margin-bottom: 10px;
}

    .sd-xqtitlexq a {
        font-size: 12px;
        color: #666;
    }

    .sd-xqtitlexq span {
        margin: 0 10px;
        font-size: 12px;
        color: #d8d8d8;
        ;
    }

.sd-tiaob {
    background: url(http://static.wenku.bdimg.com/static/wkview/widget/doc_header_new/icons_07207ae.png) no-repeat;
    display: inline-block;
    zoom: 1;
    width: 15px;
    height: 14px;
    vertical-align: -3px;
    margin-left: 3px;
    background-position: 0 -18px;
    cursor: pointer;
}

    .sd-tiaob:hover {
        background-position: -15px -18px;
    }
/*sd-xqtitlexq u click background-position:-15px -32px;*/
.sd-tiaoba {
    background: url(../img/xqbg.png) no-repeat;
    display: inline-block;
    zoom: 1;
    width: 15px;
    height: 14px;
    vertical-align: -3px;
    margin-left: 3px;
    background-position: 0 -32px;
    cursor: pointer;
}

    .sd-tiaoba:hover {
        background-position: -15px -32px;
    }

.sd-xqshouji img {
    background: url(../img/shoujio.png) no-repeat;
    width: 18px;
    height: 18px;
    margin: 0 2px -4px 0;
    cursor: pointer;
}

.sd-xqerweima {
    display: inline-block;
    position: absolute;
    top: 31.6%;
    left: 36.1%;
    background: gainsboro;
    width: 120px;
    height: 130px;
    text-align: center;
    display: none;
}

    .sd-xqerweima img {
        width: 100px;
        height: 100px;
        margin-top: 5px;
    }

    .sd-xqerweima p {
        text-align: center;
        font-size: 12px;
        color: blue;
    }

.sd-xqwendan {
    display: none;
    background-color: #f4f4f4;
    width: 100%;
    height: auto;
    border: 1px solid #D3D3D3;
    border-bottom: 0 none;
    box-sizing: border-box;
}

    .sd-xqwendan p {
        color: #999999;
        line-height: 21px;
        padding: 4px 21px;
        display: block;
        font-size: 12px;
    }

.sd-xqcenter {
    border: 1px solid #D3D3D3;
    background: #fcfcfc;
    margin: 0 auto;
}

.sd-xqbb {
    text-align: right;
    width: 96%;
    margin: 5px 0;
}

.sd-xqbbda {
    background: url(../img/fangda.png) no-repeat;
    vertical-align: top;
    width: 35px;
    height: 35px;
    /*line-height: 9999em;
    overflow: hidden;
    padding: 0;*/
    display: inline-block;
    cursor: pointer;
}

.sd-xqfangda {
    background-position: -113px -328px;
}

    .sd-xqfangda:hover {
        background-position: -4px -326px;
    }

.sd-xqfangdai {
    background-position: -5px -630px;
}

    .sd-xqfangdai:hover {
        background-position: -102px -628px;
    }

.sd-xqname {
    text-align: center;
    width: 96%;
    margin: 10px auto;
}

.sd-xqfuname {
    display: none;
    text-align: center;
    width: 96%;
    font-size: 13px;
}

.sd-xqneirong {
    width: 96%;
    margin: 0 auto;
    font-size: 15px;
    padding-bottom: 15px;
}

    .sd-xqneirong p {
        line-height: 1.4;
    }

.mashangxz {
    z-index: 1;
    position: absolute;
    background: #909090;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
    display: none;
}

.mask-out {
    /*z-index: 1;*/
    position: absolute;
    background: white;
    width: 100%;
    height: 167px;
    top: 0;
    left: 0;
}

.msxiazai{
    display: none;
    width: 540px;
    background: white;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    margin-left: -240px;
    box-shadow:1px 1px 16px #8b8b8b;
    padding-bottom:20px;

}
.msxiazaiHint {
    display: none;
    width: 540px;
    height:550px;
    overflow-y:scroll;
    background: white;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    margin-left: -240px;
    box-shadow:1px 1px 16px #8b8b8b;
    padding-bottom:20px;

}

    .msxiazai img,.msxiazaiHint img {
        float: right;
        padding: 8px;
    }

    .msxiazai p {
        font-size: 18px;
        margin: 24px 36px 10px 40px;
        padding-bottom: 6px;
        /*border-bottom: 1px solid red;*/
        border-bottom: 1px solid #ccc;
        box-sizing:border-box;

    }
    #msxiazaiHint p {
        font-size: 18px;
        margin: 24px 36px 10px 40px;
        padding-bottom: 6px;
        /*border-bottom: 1px solid red;*/        
        box-sizing:border-box;

    }

    /*考前练习分类筛选标题 2017-8-14*/
    .msxiazai #kindSlectHead,#msxiazaiHint #kindSlectHeadHint{
        border-bottom: 1px solid #ccc;        
    
    }

   .msxiazai #kindSlectTit,#msxiazaiHint #kindSlectTitHint{
       float:left;
       margin-right:10px;
       border:none;
       margin-top: 10px;
       padding-bottom:0;
       margin-bottom:6px;
   }

   .msxiazai #select_Kinds,#msxiazaiHint #select_Kindsh{
       float:left;
       margin-top: 12px;
       font-size:14px;
       margin-bottom:6px;
   }

        .msxiazai p span ,#msxiazaiHint p span{
            /*color: #9a9a9a;*/
            /*margin-left: 4px;*/
            font-size: 14px;
            height:24px;
            line-height:24px;
        }

    .msxiazai ul,#msxiazaiHint ul{
        margin-left: 7%;
        margin-right:10%;
        margin-top: 20px;
        margin-bottom: 20px;
        
    }

    .msxiazai li,#msxiazaiHint li{
        padding: 6px 0;
    }

        .msxiazai li:first-child,#msxiazaiHint li:first-child {
            /*margin: 12px -24px;
            font-size: 18px;
            color: black;*/
            padding:0;
        }

        .msxiazai li a, #msxiazaiHint li a{
            color: #9a9a9a;
        }

            .msxiazai li a:hover,#msxiazaiHint li a:hover {
                color: blue;
            }

    .msxiazai buttom, #msxiazaiHint buttom{
        background: #2fad85;
        padding: 12px 18px;
        border-radius: 8px;
        color: white;
        font-size: 16px;
        margin-left: 37.5%;
    }

        .msxiazai buttom a, .msxiazaiHint buttom a{
            color: white;
        }
.sd-middle-document {
    width:80%;
    margin:0 auto;
}
.sd-middle-document p{
    text-indent:20px;

}
.sd-middle-documenta {
    color:mediumpurple;
    display:block;
    cursor:pointer;
    text-align:center;
}
/*---------------------证书证书证书证书证书证书------------------------*/
.zs,.promise{
    margin:0 auto;
    margin-top:54px;
    width:1024px;
    display:none;
}
.zs-img{
         background:url(../img/kong.jpg);
         width:841px;
         height:595px;
         margin:0 auto;
         padding:0 72px;
         box-sizing:border-box;
         position: relative;
}
.a-box{
        /*min-height:438px;*/
        min-height:360px;
}
.zs-box{
    /*padding-top:164px;*/
    padding-top:64px;
}
.zs-box p,.zs-boxx p{
    font-size:16px;
    line-height:34px;
}
.zs-box p span:nth-child(2),.zs-box p span:nth-child(4),.zs-box p span:nth-child(6),.zs-box p span:nth-child(8),.zs-boxx p span:nth-child(2),.zs-boxx p span:nth-child(4){
    /*border-bottom:1px solid black;*/
   
    padding:0 3px;
    font-size:16px;
    margin:0 3px;
}
/*证书标题*/
.zs-title{
    width:100%;
    padding-top:100px;
    text-align:center;
}

/*证书公章*/
.zs-mark{
	 text-align:right;
	 line-height:30px;
     overflow:hidden;
	 }
.zs-mark p.zs-mark-main{
     float:right;
     /*border:4px solid red;*/
      padding:2px 5px;
      font-family:Verdana, Geneva, sans-serif;
	 color:red;
     font-weight:bold;
     margin-right:8px;
}
.zs-mark span{
	 display:block;
	 line-height:20px;
	 font-size:16px;
	 margin:10px auto;
	 font-family:Verdana, Geneva, sans-serif;
	 color:red;
	 font-weight:bold;
     text-align:left;
	 }
 

.zs-boxx {
    padding-top:24px;
}
.zs-boxx p span:nth-child(1){
    padding-left:32px;
}
.b-box-time p{
    text-align:right;
    letter-spacing: 2px;
}
.b-box-time #time{
   
    float:right;
    letter-spacing: 2px;
    font-size:14px;
}
.b-box-time #spouttime {
  
    float:left;
    padding-left:27px;
    font-size:14px;
}

.b-box-time #zs-mark{
    margin-bottom:4px;
    margin-right:12px;
}


.b-box-bianhao_gd021{
    text-align:left;
    /*padding-left:28px;
    padding-top:22px;*/
    font-size:14px;
}
.b-box-bianhao{
    text-align:left;
    padding-left:28px;
    padding-top:22px;
    font-size:14px;
}
.zs-day{
    text-align:center;
}
.zs-day button{
    background: #F44336;
    border: none;
    font-size: 16px;
    border-radius: 4px;
    color: white;
    width: 160px;
    height: 33px;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom:30px;
    cursor:pointer;
}
.zs-day button.zs-day-cancel{
    margin: 20px 30px 30px 30px;
    width: 120px;
    height: 33px;
    background: #989494;
}
.zh-content {
    /*position: absolute;
    top: 153px;
    width: 100%;
    left: 0;
    background: #f3f3f3;*/
    margin-top:24px;
}
