
#banner {
    width: 100%;
    height: 425px;
    padding: 0;
    overflow: hidden;
    background-image: url('https://website-1322978539.cos.ap-guangzhou.myqcloud.com/zrczwms/img/base/banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;

}

.banner-box {
    margin-top: 160px;
    text-align: center;
    position: relative;
}


.banner-box h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}


.content {
    padding: 40px;
    position: relative;
}

section {
    margin-bottom: 40px;
}

.content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.content p {
    margin-bottom: 20px;
    color: #444;
    font-size: 16px;
    text-align: justify;
}

.content .content .p-title {
    text-indent: 2em;
    line-height: 1.8;

}

.content ul.alpha-list {
    list-style: none;
    padding-left: 30px;
    margin: 20px 0;
    counter-reset: alpha;
}

.content ul.alpha-list > li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 0;
    counter-increment: alpha;
}

.content ul.alpha-list > li::before {
    content: counter(alpha, lower-alpha) ")";
    position: absolute;
    left: -24px;
    top: 0;
    /* font-weight: bold; */
    font-size: 16px;
    background: none;
    border-radius: 0;
    width: auto;
    height: auto;
}