.page {
    overflow: hidden;
    padding: 20px;
}

.page-title {
    width: 200px;
    float: left
}

.page-title li {
    margin-bottom: 10px
}

.page-title li a {
    display: block;
    text-align: center;
    padding: 8px 0;
    border: #f1f1f1 1px solid;
    border-radius: 3px;
}

.page-title li a:hover,
.page-title li a.pagecurrent {
    background: #023d7f;
    color: #fff;
    border: #023d7f 1px solid;
}

.page-box {
    width: 860px;
    float: left;
    margin-left: 30px;
    padding-left: 30px;
    border-left: #eee 1px solid;
    min-height: 500px;
}

.page-box-title {
    font-size: 16px;
    border-bottom: 1px solid #eee;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.page-box-title:after {
    content: "";
    position: absolute;
    width: 64px;
    height: 2px;
    content: "";
    background: #000;
    left: 0;
    bottom: -1px;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.page-box-title:hover:after {
    width: 80px;
}

.page-box-content {
    line-height: 26px;
    ;
}

.page-box-content p {
    margin-bottom: 15px;
}

.page-box-content img {
    max-width: 100%;
    margin: 10px auto
}

.page-box-content h2,
.page-box-content h3,
.page-box-content h4,
.page-box-content h5,
.page-box-content h6 {
    font-size: 16px;
    margin: 20px 0;
    position: relative;
}

.page-box-content h2:before,
.page-box-content h3:before,
.page-box-content h4:before,
.page-box-content h5:before,
.page-box-content h6:before {
    position: absolute;
    content: "";
    background: #023d7f;
    width: 3px;
    height: 100%;
    left: -32px;
    bottom: 0;
}

.page-box-content a {
    color: #39F
}