#new {
    width: 100%;
    background: #F9FBFF;
    overflow: hidden;
}

#new > .headerBox {
    width: 100%;
    position: relative;
}

#new > .headerBox > img {
    width: 100%; /* 设置为自动适应 */
    height: auto; /* 设置为自动适应 */
    max-width: 100%; /* 最大宽度限制为容器宽度的百分之百 */
    max-height: 100%; /* 最大高度限制为容器高度的百分之百 */
}

#new > .headerBox > .headerContent {
    position: absolute;
    width: 1200px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#new > .headerBox > .headerContent > .headerLine {
    width: 46px;
    height: 4px;
    background: #1969F1;
    border-radius: 8px;
    margin-bottom: 32px;
}

#new > .headerBox > .headerContent > h2 {
    font-size: 46px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 65px;
}

#new > .btn {
    width: 1200px;
    margin: 0 auto;
    height: 100px;
    display: flex;
    justify-content: right;
    align-items: center;
}

#new > .btn > a {
    width: 138px;
    height: 42px;
    border-radius: 28px;
    border: 1px solid #D5D5D5;
    font-size: 16px;
    color: #828282;
    line-height: 42px;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

#new > .btn > a:hover {
    border: 1px solid #0866FF;
    background: #0866FF;
    color: white;
}

#new > .container {
    width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 70px;
    box-sizing: border-box;
    background: #fff;
}

#new > .container > .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px 0 18px 0;
    border-bottom: 1px solid #97979759;
}

#new > .container > .title > h2 {
    font-size: 30px;
    font-weight: 500;
    color: #222222;
    letter-spacing: 1px;
   margin-bottom: 15px;
}

#new > .container > .title > span {
    font-size: 16px;
    color: #A1A1A1;
    letter-spacing: 1px;
}

#new > .container > .markdown-body{
    padding: 15px 0 60px 0;
}

