@charset "utf-8";

#album-content {
    width: 100%;
    overflow: hidden;
    min-height: 500px;
    background: #fff;
    padding: 40px 50px;
    font-family: '微軟正黑體';
}

#album-content h2 {
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 30px;
    color: #1d539f;
    font-weight: bold;
    border-bottom: 1px solid #cdcdcd;
    position: relative;
}

#album-content h2:after {
    position: absolute;
    content: "";
    background: #1d539f;
    width: 200px;
    height: 4px;
    bottom: -2px;
    left: 0;
}

#album-content h2 span {
    font-size: 20px;
}

.album-content-tool {
    width: 100%;
    overflow: hidden;
    padding: 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

ul.album-content-list {
    width: 100%;
    overflow: hidden;
}

ul.album-content-list li {
    font-size: 21px;
    padding: 10px 0;
    width: 48%;
    margin-right: 4%;
    float: left;
    margin-bottom: 20px;
}

ul.album-content-list li:nth-of-type(2n) {
    margin-right: 0;
}

ul.album-content-list li a {
    text-decoration: none;
    color: #000;
    transition: .3s;
}

ul.album-content-list li a:hover {
    color: #c72525;
}

.album-pic {
    width: 32%;
    display: inline-block;
    vertical-align: middle;
    padding: 10px;
    border: solid 1px #d2d2d2;
    margin: 6px;
}

.album-pic img {
    width: 600px;
    height: 300px;
}
