/* 默认CSS样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}
body, div, p {
    font-size: 14px;
}
a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
}
/* 头部*/
.header {
    width: 100%;
    height: 100px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}
.container {
    width: 1200px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    width: 110px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 导航栏样式 */
.bar {
    height: 100%;
}

.bar ul {
    display: flex;
    height: 100%;
    align-items: center;
}

.bar > ul > li {
    position: relative;
    margin-right: 30px;
    height: 100%;
    display: flex;
    align-items: center;
}

.bar > ul > li:last-child {
    margin-right: 0;
}

.bar > ul > li > a {
    display: block;
    padding: 0 15px;
    height: 100%;
    line-height: 50px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bar > ul > li > a:hover {
    color: #24833a;
    text-decoration: none;
}

/* 下拉菜单样式 */
.bar ul ul {
    position: absolute;
    top: calc(100% - 2px); /* 调整位置，使下拉框更紧密地显示在文字下方 */
    left: 50%;
    transform: translateX(-50%); /* 使下拉框水平居中对齐文字 */
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    width: auto;
    height: auto;
    display: none;
    z-index: 1000;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 0;
    border-radius: 4px;
}

.bar ul li:hover > ul {
    display: flex;
}

.bar ul ul li {
    width: 100%;
}

.bar ul ul li a {
    display: block;
    padding: 8px 20px;
    color: #666;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.bar ul ul li a:hover {
    color: #24833a;
    text-decoration: none;
    background-color: #f5f5f5;
}
/*文章内容*/

.articleWrap{
  padding: 24px;
  text-align: center;
}
h2 {
  width: 1200px;
  text-align: left;
  margin:  0 auto;
  font-size: 28px;
}
.articleContent {
  width: 1200px;
  margin:  0 auto 50px;
 text-align: left;
 
}
h1 {
 
  text-align: center;
  div {
    font-size: 22px !important;
  }
}
.createTime {
  width: 1200px;
  text-align: left;
  font-size: 16px;
  margin:  20px auto 20px;
}

/*底部*/
.HomePage_footer {
    background-color: #3f4552;
    color: #fff;
    height: 512px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.Footer_footerWarp {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.Footer_footer {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Footer_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.Footer_navWrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #fff;
}

.Footer_logo {
    width: 65px;
    height: auto;
    margin-right: 20px;
}

.Footer_nav {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.Footer_nav:hover {
    color: #fff;
}

.Footer_rightWrap {
    display: flex;
    gap: 16px;
}

.Footer_qrCode {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 14px;
}

.Footer_qrImg {
    width: 72px;
    height: 72px;
    margin-bottom: 10px;
}

.Footer_contractList {
    display: flex;
    gap: 12px;
    padding-bottom: 40px;
    border-bottom: 1px solid #555;
}

.Footer_contractItem {
    width: 290px;
    height: 170px;
    background-color: #9c9ea4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: #fff;
}

.Footer_imgWrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Footer_conImg {
    width: 100%;
    height: auto;
}

.Footer_line {
    height: 1px;
    background-color: #555;
    margin: 30px 0;
}

.Footer_num {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    line-height: 20px;
}