@import "media.css";

.navbar {
    background-color: #0037A7 !important;
}
.banner {
    height: 300px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 30px 0;
}
.banner-title {
    font-size: 40px;
    color: #FFF;
}
.banner-sub-title {
    font-size:24px;
    color: #FFF;
    margin-top: 50px;
    flex-direction: column;
    margin-bottom: 50px;
}
.banner-sub-title > span {
    margin-right:30px;
}
.banner-sub-title > span:last-child {
    margin-right:0;
}
.location {
    color: #FFF;
    font-size: 16px;
    text-align: right;
    padding-right: 10px;
    display: flex;
    justify-content: end;
    align-items: center;
}
.location > a {
    color: #FFF;
    margin:0 5px;
}
.location > span {
    margin:0 5px;
}

.article-list {
    padding: 50px 0;
}
.article-list > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    padding-bottom: 30px;
    padding-right: 20px;
}
.article-list > li:hover {
    background-color: #F8F8F8;
}
.article-list > li > .date {
    width: 120px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-right: 1px solid #F6F6F6;
}
.article-list > li > .date > .date-md {
    font-size: 22px;
    color: #999999;

}
.article-list > li > .date > .date-year {
    font-size: 18px;
    color: #CCC;
}
.article-list > li > a {
    flex: 1;
    padding-left: 40px;
    padding-right: 80px;
}
.article-title {
    font-size: 22px;
    color: #0037A7;
}
.article-desc {
    padding-top: 10px;
    font-size: 16px;
    color: #939393;
}

.content {
    padding:50px 0;
    line-height: 24px;
}
h1.title {
    font-size: 36px;
    color: #0037A7;
    padding-bottom: 30px;
    border-bottom: 1px solid #F6F6F6;
    text-align: center;
}
.content-main {
    padding-top: 50px;

}
.content-main table {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
}
.content-main table  td, .content-main table th{
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 5px;

}
.content-main table th {
    font-weight: bold;
    text-align: center;
}
.content-main > p {
    font-size: 18px;
    line-height: 2;
    color: #666666;
    text-align: justify;
}

.content-main > p > img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.gallery-list {
    margin-top: 50px;
}
.gallery-item-box {
    display: block;
    margin: 10px;
    box-shadow:  0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease-in-out 0.2s;
}
.gallery-item-box:hover {
    box-shadow:  0 0 15px rgba(0, 0, 0, 0.3);
}
.gallery-list-img > img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.gallery-list-title {
    background-color: #FFF;
    padding:15px 10px;
}
.gallery-list-title > h3 {
    padding: 0;
    font-size: 18px;
    color: #535353;
    text-align: center;
}

/*单页面*/
.page {
    padding: 50px 0 30px 0;
}
.page-title {
    font-size: 30px;
    text-align: center;
    border-bottom: 1px solid #F6F6F6;
    padding-bottom: 30px;
}
.page-content {
    padding:30px 0;
    line-height: 24px;
    font-size: 18px;
}
.page-content img {
    display: block;
    margin: 0 auto;
    width: 100%;
}