/* 通用样式类 - 从HTML中提取的内联样式 */

/* 底部深色背景布局 */
.bottom-dark-bg {
    height: 100px;
    background-color: #1b1c2e;
    opacity: 0.7;
}

/* 底部内容布局 */
.bottom-content-container {
    height: 100px;
}

/* home_arrow 图片样式 */
.home-arrow-adjust {
    left: -10px;
}

/* 文本样式 - 带下边距 */
.text-with-bottom-margin {
    margin-bottom: 50px;
}

/* 开立账户按钮样式 */
.signup-btn-transform {
    background-color: transparent;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.2rem;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(150px);
    text-align: center;
}

/* 背景图片样式 */
.bg-splash-image {
    background: url('../images/splash_home.png') center/cover;
}

/* 底部灰色区域样式 */
.bottom-gray-area {
    height: 42px;
}

/* 列表头样式 */
.list-header-with-spacing {
    margin-top: 20px;
    margin-bottom: 8px;
}

/* 主内容区样式 */
.main-content-offset {
    margin-top: -145px;
}

/* 大标题样式 */
.large-title {
    font-size: 2.8125rem;
    margin-top: 2rem;
}

/* 描述文本样式 */
.description-text {
    font-size: 1.26rem;
}

/* 固定宽度div */
.fixed-width-200 {
    min-width: 200px;
}

/* 箭头图标颜色 */
.arrow-icon-color {
    color: #401D1D1D;
}

/* 通用箭头颜色 */
.arrow-gray-transparent {
    color: #401D1D1D;
}

/* 计算机图片样式 */
.computer-img-max-height {
    height: auto;
    max-height: 400px;
}

/* 底部开立账户按钮样式 */
.bottom-signup-btn {
    /* 保留此样式类以备将来使用 */
}

/* 深色背景样式 */
.deep-dark-bg {
    background-color: #1a1d30;
}

/* 深色背景大标题样式 */
.deep-dark-large-title {
    font-size: 2.8125rem;
    margin-top: 4rem;
}

/* 新闻图片背景样式 */
.news-img-bg-1 {
    background-image: url('../images/news1.webp');
}

.news-img-bg-2 {
    background-image: url('../images/news2.webp');
}

.news-img-bg-3 {
    background-image: url('../images/news3.webp');
}

.news-img-bg-4 {
    background-image: url('../images/news4.webp');
}

/* 页脚上边距 */
.footer-top-margin {
    margin-top: -5px;
}