﻿

.subject_box {
    width: 490px;
    height: 400px;
    float: left;
    margin: 10px;
    border: 1px solid #ccc;
}

    .subject_box .subject_title {
        height: 30px;
        line-height: 30px;
        padding-left: 10px;
        border-bottom: 2px solid #4ab344;
        color: rgba(38, 165, 154, 1);
        font-size:15px;
    }

    .subject_box .subject_content {
        padding:0 10px;
    }

        .subject_box .subject_content li {
            height:30px;
            line-height:30px;
            border-bottom:1px dashed #ccc;
        }

            .subject_box .subject_content li a {
                color: rgba(0, 135, 129, 1);
            }

.limage_box {
    width: 490px;
    height: 400px;
    float: left;
    margin: 10px;
}

    .limage_box .limage_title {
        height: 30px;
        line-height: 30px;
        padding-left: 10px;
        border-bottom: 2px solid #4ab344;
        color: rgba(38, 165, 154, 1);
        font-size: 15px;
    }
    .limage_box .liamge_content {
        
    }


.images_box {
    height: 200px;
}

    .images_box .images_title {
        height: 30px;
        line-height: 30px;
        padding-left: 10px;
        border-bottom: 2px solid #4ab344;
        color: rgba(38, 165, 154, 1);
        font-size: 15px;
    }

    .images_box .imagequee_content {
        height: 170px; /* 高度值一般就是一个li的盒子高度 */
        overflow: hidden;
        margin: auto;
    }

        .images_box .imagequee_content ul {
            margin: 0;
            padding: 0;
            width: 200%; /* 不一定非要200%，只要比100%多出一个li盒子宽度即可，但由于最极端的宽度也就是显示一个li，再多出一个li，一共两个li，所以最合适的值是200% */
            height: 100%;
        }
            .images_box .imagequee_content ul li {
                list-style: none;
                float: left;
                width: 240px;
                height: 170px;
                border: #ccc solid 1px;
                display: block;
                margin: 5px;
            }
