.gallery {
    width: 100%;
    height: 16vw;
    background: url("../img/gallery.png") no-repeat;
    background-size: cover;
}

.address {
    height: 40px;
    background-color: #eeeeee;
    font-size: 14px;
    color: #666;
}

.address .w1200 {
    line-height: 40px;
    background: url(../img/home.png) no-repeat;
    background-position: left center;
}

.subpage {
    margin-top: 40px;
}

.subpage_left {
    float: left;
    width: 24%;
}

.subpage_left .column_name {
    width: 100%;
    height: 85px;
    background-color: #00367c;
    font-size: 24px;
    font-weight: bolder;
    line-height: 85px;
    color: #ffffff;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.subpage_right {
    width: 72.5%;
    float: right;
}

.list>li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.list>li>a {
    display: block;
    font-size: 14px;
    line-height: 1;
    color: #333333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.list>li>a::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background-color: #ffcc00;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.list>li>span {
    padding-left: 15px;
    color: #999;
    font-size: 14px;
    line-height: 1;
}

.list>li:hover>a {
    color: #00367c;
    font-weight: bold;
}

.list>li:first-child {
    padding-top: 0;
}

.article .article_title {
    margin-bottom: 20px;
}

.article .article_title h1 {
    font-size: 26px;
    line-height: 30px;
    text-align: left;
    color: #000;
    margin-bottom: 10px;
}

.article .article_title .about {
    display: flex;
    justify-content: left;
    line-height: 40px;
    border-bottom: 1px solid #dddddd;
    color: #999;
    font-size: 14px;
}

.article .article_title .about .line {
    background-color: #dddddd;
    margin: 0 20px;
}

.article .content {
    min-height: 600px;
    margin-top: 10px;
}

.article .content img {
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .subpage_left {
        display: none;
    }

    .subpage_right {
        width: 100%;
    }
}