main #banner {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/banner-new.png) center center;
    background-size: cover;
    color: #fff;
    height: 613px;
    padding-top: 105px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#banner .banner-title {
    font-size: clamp(4.125rem, 2.7rem + 4vw, 72px);
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 800;
}

#banner .banner-stock {
    width: 260px;
    height: 280px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-stock-title {
    font-size: 2.6rem;
    margin: 15px;
}

.banner-stock-price {
    font-size: 4rem;
    margin: 10px 0;
}

.banner-stock-change {
    font-size: 2rem;
    margin-bottom: 8px;
}
.banner-stock-description,
.banner-stock-date {
    font-size: 1.2rem;
}

#coporate {
    padding: 50px 0;
    font-size: 2rem;
    text-align: center;
}
.coporate-container {
    padding-left: calc(25px + 5%);
    padding-right: calc(25px + 5%);
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
}
.coporate-container h2 {
    font-size: 3.6rem;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-weight: 900;
    text-align: left;
    position: relative;
}
.coporate-container h2::after {
    position: absolute;
    content: '';
    height: 3px;
    width: 20%;
    max-width: 150px;
    background-color: #006fff;
    top: 50%;
    margin-left: 50px;
}
.coporate-container p {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: left;
}

#invest {
    padding: 50px 0;
    font-size: 2rem;
    text-align: center;
}
.invest-container {
    padding-left: calc(25px + 5%);
    padding-right: calc(25px + 5%);
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
}
.invest-container h2 {
    font-size: 3.6rem;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-weight: 900;
    text-align: center;
    position: relative;
}
.invest-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

/* .invest-content-item 除了最后一个，都有 border-right */
.invest-content-item {
    width: 236px;
    padding: 20px;
    border-right: 1px solid #e0e0e0;
}
.invest-content-item:last-child {
    border-right: none;
}
#invest .invest-content-item .invest-content-item-desc {
    line-height: 1.5;
    font-size: 16px;
    margin: 16px 0;
}

#news {
    padding: 50px 0;
    font-size: 2rem;
    height: 426px;
    text-align: center;
    background: linear-gradient(0deg, rgba(80, 110, 185, 0.85), rgba(80, 110, 185, 0.85)), url(../img/latestNewsBanner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}
.news-container {
    padding-left: calc(25px + 5%);
    padding-right: calc(25px + 5%);
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
}
.news-container h2 {
    font-size: 3.6rem;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-weight: 900;
    text-align: center;
    position: relative;
}
.news-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    list-style: none;
    color: #ffffff;
}
.news-list li {
    width: 30%;
    text-align: left;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ffffff;
}
.news-list li h3 {
    font-size: 1.6rem;
}
.news-list li a {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
}

.news-list li a:last-child {
    font-size: 12px;
    margin-bottom: 10px;
}
.news-list li a:hover {
    text-decoration: underline;
}
