.left {
    float: left;
}

.right {
    float: right;
}

.hide {
    display: none;
}

.domPC {
    display: block;
}

.domMobile {
    display: none;
}

.main {
    width: 1100px;
    margin: 0 auto;
}

.main-left {
    width: 375px;
    padding: 5px 0;
    background: url(../images/bgList.png);
    margin-top: 40px;
}

.main-left .htList li {
    position: relative;
    line-height: 1.6em;
    padding: 8px 0 8px 10px;
    cursor: pointer;
    overflow: hidden;
}

.main-left .htList li.active {
    color: #1464de;
}

.main-left .htList li.active a {
    color: #1464de;
}

.main-left .htList li span {
    float: right;
    width: 340px;
}

.main-left .htList li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin-right: 5px;
    color: #333;
    text-align: center;
}

.main-left .htList li:nth-child(1)::before {
    content: "1";
    color: #fff;
    text-align: center;
    border-radius: 3px;
    background: #1349d2;
}

.main-left .htList li:nth-child(2)::before {
    content: "2";
    color: #fff;
    text-align: center;
    border-radius: 3px;
    background: #247cff;
}

.main-left .htList li:nth-child(3)::before {
    content: "3";
    color: #fff;
    text-align: center;
    border-radius: 3px;
    background: #247cff;
}

.main-left .htList li:nth-child(4)::before {
    content: "4";
}

.main-left .htList li:nth-child(5)::before {
    content: "5";
}

.main-left .htList li:nth-child(6)::before {
    content: "6";
}

.main-left .htList li:nth-child(7)::before {
    content: "7";
}

.main-left .htList li:nth-child(8)::before {
    content: "8";
}

.main-left .htList li:nth-child(9)::before {
    content: "9";
}

.main-left .htList li:nth-child(10)::before {
    content: "10";
}

.main-right {
    width: 715px;
    margin: 20px 0 20px 0;
}

.main-right .subList {
    box-sizing: border-box;
    padding-left: 10px;
    padding: 10px;
    overflow: hidden;
    top: 10px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px #ccc;
    background: #fff;
    display: none;
}

.main-right .active {
    display: block;
}

.main-right .subList li {
    clear: both;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 5px;
}

/* .main-right .subList li:nth-child(1) {
    padding-left: 0;
}
.main-right .subList li:nth-child(1)::before {
        display: none;
} 
.main-right .subList li::before {
    content: "";
    width:3px;
    height:3px;
    background: #333;
    display: inline-block;
    position: absolute;
    left:0;
    top:10px;
}

*/
.main-right .subList .title {
    margin-bottom: 10px;
}

.main-right .subList .info {
    font-size: 14px;
    color: #666;
    line-height: 1.8em;
}

.main-right .subList img {
    float: left;
    width: 160px;
    height: 90px;
    margin-right: 15px;
    border-radius: 5px;
}

.main-right .subList li:nth-child(1) img {
    width: 250px;
    height: 140px;
}


.logo-index {
    position: absolute;
    width: 70px;
    height: 50px;
    left: 50%;
    top: 0;
    margin-left: -690px;
    z-index: 99;
    background: url(../images/logo.png) 0 0 no-repeat;
}

.header {
    height: 146px;
    background: url(../images/bghead.jpg) 50% 0 no-repeat;
}

@media screen and (max-width: 767px) {
    html {
        max-width: 750px;
        margin: 0 auto;
        font-size: 16px;
        background: #f5f5f5;
        overflow-x: hidden;
    }

    html,
    body {
        font-size: 37px;
    }

    .domPC {
        display: none;
    }

    .domMobile {
        display: block;
    }

    .main {
        width: 100%;
    }

    .main-left {
        margin-top: 0;
        width: 100%;
        background: #fff;
    }

    .main-left .htList li {
        padding: 10px 0 10px 10px;
        margin: 0 15px;
        max-width: 90%;
        border-bottom: 1px solid #e2e2e2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 18px;
    }

    .main-left .htList li:last-child {
        border-bottom: none;
    }

    .main-left .htList li::before {
        background: #e9e9e9;
        border-radius: 3px;
    }

    .main-left .htList li:nth-child(2)::before {
        background: #0049ab;
    }

    .main-left .htList li:nth-child(2)::before {
        background: #4068f2;
    }

    .main-left .htList li:nth-child(2)::before {
        background: rgba(36, 124, 255, .6);
    }

    .main-left .htList li span {
        float: right;
        width: 90%;
    }

    .main-right {
        display: none;
        width: 100%;
        margin: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
    }

    .main-right .subList {
        position: absolute;
        top: auto;
        bottom: 0;
        width: 100%;
        padding-top: 50px;
        border-radius: 0;
        box-shadow: none;
        font-size: 16px;
    }

    .main-right .subList::before {
        position: absolute;
        content: '';
        right: 15px;
        top: 15px;
        width: 24px;
        height: 24px;
        background: url('../images/icon_close.png') no-repeat;
        background-size: cover;
    }

    .main-right .subList li {
        border-bottom: 1px solid #e2e2e2;
    }

    .main-right .subList li:last-child {
        border-bottom: none;
    }

    .main-right .subList li:nth-child(1) img {
        width: 160px;
        height: 90px;
    }

    .main-right .subList li a {
        font-size: 18px;
        color: #000;
    }

    /*
*动画部分
*/
    .pop_animation {
        display: block;
        background: rgba(0, 0, 0, 0.6);
    }

    .pop_animation .subList {
        -webkit-animation-name: popAnimation;
        animation-name: popAnimation;
        animation-duration: .5s;
        animation-fill-mode: both;
    }

    @keyframes popAnimation {
        0% {
            transform: translate3d(0, 100%, 0);
        }

        100% {
            transform: none;
        }
    }

}