
body {
    background-color: #f7f9fc;
}
.menu {
padding-top: 0;
}
.ArticleBox {
    width: 100%;
    overflow: hidden;
}
.articleTitleBox {
    background-image: url(../image/menuLogo/docBanner.svg);
    background-position: left center;
    background-size: cover;
    padding: 100px 50px 39px;
}
.articleTitle {
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 600;
    padding: 0 50px;
}
.articleTitle > h1  a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    cursor: default;
}

.articleTitle > h5 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-top: 35px;
}
.Article {
  width: 100%;
  max-width: 1200px;
  padding: 70px 50px 70px;
  margin: 0 auto;
  display: flex;
}
.cateList {
    flex: 1;
    min-width: 100px;
    max-width: 275px;
}
.cateListTitle {
    font-size: 16px;
    color: #9098ab;
    font-weight: 600;
}
.cateListItem {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    width: calc(100% - 20px);
}
.cateListItem > a {
    color: #1e336e;
    text-decoration: none;
    display: inline-block;
    padding: 2px 0;
    transition: padding 0.3s;
}
.cateListItem > a:hover {
    color: #0187e6;
    background-color: #fff;
    padding: 2px 10px;
    transition: padding 0.3s;

}
.articleList {
    flex: 1;
    max-width: 1100px;

}
.articleListItem {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin: 15px 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}
.articleListItem:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 10px 1px rgba(204, 204, 204, 0.5);
    transition: transform 0.3s;
}
.articleListCate a, .articleListTime {
    color: #9098ab;
    text-decoration: none;
    cursor: default;
}
.articleListTitle {
    margin: 5px 0;
    font-size: 20px;
    font-weight: 600;
    color: #0187e6;
    text-decoration: none;
}
.articleListContent  p {
    font-size: 15px;
    line-height: 24px;
    color: #808080 !important;
}
img {
    max-width: 1060px;
    height: auto;
}