html {
    overflow-y: scroll; /* 强制显示垂直滚动条 */
    /* overflow: scroll;  如果要同时显示水平和垂直滚动条 */
}

html, body {
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    font-family: 'PingFang SC', 'PingFangSC-Semibold', 'Microsoft YaHei', 'Hiragino Sans GB', 'Microsoft JhengHei', sans-serif;
}
.container {
    width: 1900px;
    margin: 0 auto;
}

/* 通用设置 开始 */
.red { color: red; }
.hidden {
    display: none;
}
/* 通用设置 结束 */


/* 页头样式 */
.header {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    height: 64px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    color: #333;
    background: #fff;
    box-shadow: 0 3px 8px 0 #e8edf3b5;
}

.header-left-sidebar {
    flex: 0 0 500px; /* 不放大/不缩小/固定xxx px */
    padding: 0 0 0 20px;
}

.header-left-sidebar .logo {
    margin-left: 20px;
    margin-top: 10px;
}

.header-main-content {
    flex: 1;        /* 占据剩余空间 */
    padding: 0px;
}

/* 导航链接样式 */
.header-main-content-nav-links {
    padding-left: 20px;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
}

.header-main-content-nav-links a:link,
.header-main-content-nav-links a.nav-link:visited {
    color: #434343;
    text-decoration: none;
    padding: 10px 0;
    margin: 0 5px;
    text-align: center;
    /*border-bottom: 4px solid transparent;*/

    position: relative;
    display: inline-block;
    border: none; /* 移除原有边框 */
}

/* 保持hover状态不变 */
.header-main-content-nav-links a.nav-link:hover {
    color: #256CF8;
    border-color: #256CF8;
}
/* 修改active状态 */
.header-main-content-nav-links a.active {
    color: #256CF8;
    font-weight: bold;
    /* 仅保留颜色定义 */
    /*border-color: #256CF8; */
}

.header-main-content-nav-links a.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 15px; /* 控制下划线宽度为文字的xx */
    height: 4px;
    background: #256CF8;
    transform: translateX(-50%); /* 水平居中 */
    border-radius: 4px;  /* 新增圆角 */
}

.header-right-sidebar {
    flex: 0 0 300px; /* 不放大/不缩小/固定xxx px */
}

/* 右侧按钮容器 */
.header-right-sidebar-buttons {
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
    font-size: 14px;
}

.header-right-sidebar-buttons a:link, .header-right-sidebar-buttons a:visited {
    color: #434343;
    text-decoration: none;
    padding: 10px 15px;

}
.header-right-sidebar-buttons a:hover {
    background: #256CF8;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
}
.header-right-sidebar-buttons a.active {
    color: white;
    background: #256CF8;
    text-decoration: none;
}

.header-right-sidebar-buttons a.header-auth-button {
    background: #545DDB;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
}

.header-right-sidebar-buttons a.header-auth-button:hover {
    color: white;
    background: #256CF8;
    text-decoration: none;
}

.screen-01-block {
    width: 100%;
    height: 633px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background video {
    width: 100%; /* 让视频宽度充满容器 */
    height: 100%;
    object-fit: cover; /* 保持视频比例，覆盖整个容器，可能会裁剪视频 */
    object-position: center; /* 视频居中显示 */
    z-index: -1;
}


.screen-01-block-main-content {
    z-index: 1;
    position: absolute;
    left: 22%;
    top: 30%;
}

.screen-01-first-line-highlight {
    font-family: 'Microsoft YaHei', 'PingFangSC-Semibold', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft JhengHei', sans-serif;
    height: 56px;
    font-weight: 600;
    font-size: 40px;
    color: #FFFFFF;
    letter-spacing: 0;

}
.screen-01-first-line {
    height: 50px;
    font-weight: 300;
    font-size: 36px;
    color: #FFFFFF;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.screen-01-second-line {
    height: 25px;
    font-weight: 300;
    font-size: 18px;
    font-family: PingFangSC-Light;
    color: #FFFFFF;
    letter-spacing: 1.8px;
    margin-bottom: 20px;
}

.screen-01-third-line {
    margin: 60px 0 0 0;
}

.third-line-button {
    width: 188px;
    height: 50px;
    background: #545DDB;
    border-radius: 68px;
    color: white;
    display: block;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
}


a.third-line-button:link, a.third-line-button:visited {
    color: white;
}

a.third-line-button:hover {
    background: #256CF8;
}

/* 第二屏 */
.screen-02-block {
    text-align: center;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #F0F3FD 100%);
}
.screen-02-block-main-content {
    padding-top: 60px;
}
.screen-02-first-line {
    margin-bottom: 15px;
}
.screen-02-first-line-normal-big {
    color: #262626;
    font-size: 44px;
    letter-spacing: 0;
    text-align: left;
    font-weight: bold;
}
.screen-02-first-line-highlight-big {
    color: #256CF8;
    font-size: 44px;
    text-align: left;
    font-weight: bold;
}
.screen-02-first-line-normal {
    color: #262626;
    font-size: 40px;
    letter-spacing: 0;
    text-align: left;
    font-weight: bold;
}
.screen-02-first-line-highlight {
    color: #256CF8;
    font-size: 40px;
    text-align: left;
    font-weight: bold;
}

.screen-02-second-line {
    height: 21px;
    font-size: 16px;
    color: #434343;
    letter-spacing: 0;
}

/* 新增设计概念容器样式 */
.screen-02-design-concept {
    position: relative;
    width: 1300px;
    height: 900px;
    margin: 0 auto;
    background: url("images/screen-02-bg.png") no-repeat center center; /* 请替换实际图片路径 */
    background-size: 1142px 763px; /* 新增背景尺寸属性 */
    outline: 0px solid red;
}

.screen-02-design-concept-part-1-title,
.screen-02-design-concept-part-2-title,
.screen-02-design-concept-part-3-title,
.screen-02-design-concept-part-4-title {
    font-family: 'Microsoft YaHei', sans-serif; /* 修改为微软雅黑优先，后接系统默认无衬线字体 */
    font-weight: bold;
    font-size: 18px;
    color: #262626;
    letter-spacing: 0;
    margin-bottom: 15px;
}

.screen-02-design-concept-part-3-title,
.screen-02-design-concept-part-4-title {
    text-align: right;
    padding-right: 15px; /* 添加右侧内边距 */
}

.screen-02-design-concept-part-3 .feature-list li,
.screen-02-design-concept-part-4 .feature-list li{
    padding: 5px 0;
    font-size: 14px;
    text-align: right; /* 新增右对齐 */
    padding-right: 15px; /* 添加右侧内边距 */
}

/* 四个定位区块基础样式 */
.screen-02-design-concept-common {
    position: absolute;
    width: 200px; /* 可根据实际内容调整 */
    padding: 15px;
    text-align: left;
}

.adjustable-text-block {
    position: absolute; /* 绝对定位，方便随意调整位置 */
    font-size: 14px; /* 字体大小 */
    z-index: 1; /* 确保文字块显示在其他元素之上 */
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.feature-list li{
    padding: 5px 0;
    font-family: 'Microsoft YaHei', sans-serif; /* 修改为微软雅黑优先，后接系统默认无衬线字体 */
    font-size: 14px;
    color: #4B4B4B;
}

.screen-02-design-concept-part-1 {
    top: 70px;
    left: 70px;
}
.screen-02-design-concept-part-2 {
    bottom: 420px;
    left: 70px;
}
.screen-02-design-concept-part-3 {
    top: 70px;
    right: 55px;
    text-align: right;
}
.screen-02-design-concept-part-4 {
    bottom: 420px;
    right: 55px;
    text-align: right;
}

.screen-02-first-line {
    margin-bottom: 15px;
}

.screen-03-block {
    width: 100%;
    padding: 60px 0 80px 0;
}

.screen-03-block-main-content {
    margin: 0 auto;
    width: 1400px;
    height: 450px;
    background: url("images/design_objective.png") no-repeat center center;
    background-size: 1400px 450px;
}
.screen-03-block-main-content-list {
    padding-top: 120px;
    padding-left: 450px;
    text-align: left;

    font-family: 'Microsoft YaHei', 'PingFangSC-Semibold', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft JhengHei', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #494949;
    letter-spacing: 0;
    line-height: 200%;

}

.screen-03-block-main-content-list p {
    position: relative;
    padding-left: 40px; /* 为图标留出空间 */
    margin: 15px 0;
}

.screen-03-block-main-content-list p::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    background-image: url('images/icon-check.png'); /* 图标路径需要替换为实际文件 */
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.screen-04-block {
    margin: 20px auto 20px auto;
    text-align: center;
    padding: 40px 0 0 0;
}

.screen-04-block-main-content {
    margin: 30px 0 0 0;
}

.screen-05-block {
    width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0 0 0;
}

.screen-05-block-main-content {
    margin-top: 30px;
}

/* 新增CSS样式 */
.feature-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.feature-btn {
    width: 335px;
    height: 70px;
    background: white;
    border: 1px solid #DDDDDD;
    box-shadow: 0 0 10px 0 #D2E1F9;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #333;
    font-size: 16px;
}

.feature-btn:hover {
    background: #F4F9FF;
    color: #1890ff;
    border-color: #5088FF;
}


.feature-btn-active {
    background: #F4F9FF;
    color: #1890ff;
    border-color: #5088FF;
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-left: 33px;
}

.screen-06-block {
    width: 100%;
    background: #F7FBFF;
}

.screen-06-block-shadow {
    width: 100%;
    height: 43px;
    display: block;
    background-image: linear-gradient(180deg, #E5EEF8 0%, #ffffff00 100%);
}

.screen-06-block-main-content {
    display: flex;
    margin: 0 auto;
    width: 1380px;
    height: 733px;
    background: url("images/bg-features.png") no-repeat -6px center;
    background-size: 1380px 733px;
}

.screen-06-block-main-content-left-column {
    flex: 0 0 395px; /* 不放大/不缩小/固定宽度 */
    padding: 60px 0 0 35px;
    margin-right: 10px;
    outline: 0px solid #256CF8;
}

.screen-06-block-main-content-left-title {
    color: #262626;
    font-size: 28px;
    font-weight: bold;
    line-height: 0;
    letter-spacing: 0;
    text-align: left;
    margin: 20px 0 40px 10px;
}

.screen-06-block-main-content-left-table {
    outline: 0px solid red;
    width: 95%;
    border-collapse: separate; /* 允许设置单元格间距 */
    border-spacing: 0;         /* 替代cellspacing=0 */
    background: url(images/bg-dot-line3.png) repeat-y 15px 0;
    color: #6A6A6A;
    font-weight: normal;
}

.screen-06-block-main-content-left-table-td{
    height: 40px;
    width: 30px;
    text-align: center;
    vertical-align: middle;
    padding-top: 7px;
}
.screen-06-block-main-content-left-table-bg-first {
    background: transparent url(images/bg-white-top.png) no-repeat 50% 50%;
}
.screen-06-block-main-content-left-table-bg-normal {

}
.screen-06-block-main-content-left-table-bg-last {
    background: transparent url(images/bg-white-bottom.png) no-repeat 50% 50%;
}


.screen-06-block-main-content-right-column {
    flex: 1; /* 占据剩余空间 */
    padding: 60px 10px 20px 0px;
    outline: 0px solid aqua;
}

.screen-06-block-main-content-right-column img {
    max-width: 900px;
    max-height: 800px;
    width: auto;
    height: auto;
}

.architecture-container {
    height: calc(100% - 120px); /* 根据实际高度调整 */
    padding: 20px;
}

.architecture-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.screen-07-block {
    margin: 20px auto 20px auto;
    text-align: center;
    background: #fff;
    padding: 50px 0 0 0;
}

.screen-07-block-main-content {
    margin: 30px auto 0px auto;
}

.screen-08-block {
    margin: 0px auto 0px auto;
    text-align: center;
    background: #FFFFFF;
}

.screen-08-block-main-content {
}

.btn-nvwa-customer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* 控制按钮间距 */
    margin-top: 40px;
}

.btn-nvwa-customer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    position: relative;
    width: 280px;
    border-bottom: 2px solid #FFFFFF;
}

.btn-nvwa-customer:hover {
    cursor: pointer;
    background: #F0F3FD;
}

.btn-nvwa-customer-active {
    border-bottom: 2px solid #FD6F00;
}

/* 添加竖线分隔符 */
.btn-nvwa-customer:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px; /* 根据gap值调整 */
    height: 40px;
    width: 1px;
    background: #ddd;
}

/* 调整原有图标和文字样式 */
.icon-nvwa-customer {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.customer-title {
    margin-right: 8px;
    font-weight: 400;
    font-size: 16px;
    color: #303030;
}

.customer-count {
    font-weight: 700;
    font-size: 42px;
    color: #101317;
}

/* 新增客户图标列表样式 */
.customer-icon-list-container {
    max-width: 1400px;
    margin: 40px auto;
    /*padding: 40px 20px;*/
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    height: 500px;
    align-content: center;
    justify-content: center;
    align-items: center;
}

/* 单个客户容器 */
.customer-logo-container {
    flex: 0 0 calc(20% - 16px); /* 每行5个，计算时扣除总gap */
    height: 84px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 14px 0 #EBEBEB;
}

.customer-logo-container:hover {
    cursor: pointer;
    box-shadow: 0 2px 14px 0 #cccccc;
}

/* 客户图标 */
.gov-customer-logo {
    width: auto;
    height: auto;
    max-width: 261px;
    max-height: 104px;
}

.customer-logo {
    width: 60px;
    height: 60px;
    margin-left: 20px; /* 左侧间距 */
    flex-shrink: 0;
}

/* 客户名称 */
.customer-name {
    flex: 1;
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    white-space: normal;
}

/* 导航按钮样式 */
.btn-nav-customer-icon {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.btn-nav-customer-icon-common {
    cursor: pointer;
    width: 50px;  /* 固定宽度 */
    height: 50px; /* 固定高度 */
    border-radius: 50%; /* 圆形 */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.3s;
    font-weight: bold;
    box-shadow: 0 0 12px 0 #ededed;
}

#btn-nav-customer-icon-prev
{
    background: url(images/arrow-left.png) no-repeat center center;
    background-size: 9px 14px;
}

#btn-nav-customer-icon-prev:hover{
    box-shadow: 0 0 12px 0 #cdcdcd;
    transform: scale(1.1); /* 添加悬停放大效果 */
}

#btn-nav-customer-icon-next {
    background: url(images/arrow-right.png) no-repeat center center;
    background-size: 9px 14px;
}

#btn-nav-customer-icon-next:hover {
    box-shadow: 0 0 12px 0 #cdcdcd;
    transform: scale(1.1); /* 添加悬停放大效果 */
}

.btn-more-customer {
    width: 75px;
    height: 75px;
    cursor: pointer;
}
.btn-more-customer:hover {
    transform: scale(1.1); /* 添加悬停放大效果 */
}

/* 额外的，政府和企业的客户墙 */
.customer-list-container {
    margin: 20px auto 10px auto;
    width: 100%;
    height: 970px;
    min-height: 970px;
}
.customer-name-list-common {
}

.customer-gov-name-list-container {
    display: block;
}
.customer-ent-name-list-container {
    display: none;
}

.screen-09-block {
    margin: 20px auto 0 auto;
    width: 100%;
    min-height: 365px;
    text-align: center;
    background: #E5F2FF url(images/bg-screen-09.png) no-repeat center center / cover;
}
.screen-09-block .screen-02-first-line {
    margin-top: 80px;
}
.screen-09-block .screen-02-second-line {
    margin-top: 20px;
}
.screen-09-block-main-content {
    width: 100%;
    text-align: center;
    padding-top: 40px;
}

.btn-nvwa-register {
    width: 240px;
    height: 50px;
    background: #256CF8;
    border-radius: 25px;
    cursor: pointer;
    color: #fff;
    margin: 0 auto;
    font-size: 22px;
    line-height: 50px;
}

.btn-nvwa-register:hover {
    background: #2d8cf0;
}

/* 页脚样式 */

.footer {
    background: #001740;
    color: white;
    text-align: center;
}

/* 新增页脚内容容器 */
.footer-content {
    width: 1400px;
    margin: 20px auto;
    display: flex;
}

/* 第一列（图片列） */
.footer-col-logo {
    padding: 20px 30px 0 0;
}

/* 后四列公共样式 */
.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-left: 40px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-col a:link,
.footer-col a:visited {
    color: #7D859E;
    text-decoration: none;
    line-height: 2;
    opacity: 0.8;
    font-size: 13px;
}

.footer-col a:hover {
    opacity: 1;
}

/* 二维码样式 */
.footer-qrcode {
    width: 120px;
    height: auto;
}

/* 底部版权信息 */
.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.footer-copyright img {
    width: 16px;
    margin-right: 8px;
}

/*登录开始*/
.login-content {
    min-height: 700px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.login-container {
    max-width: 600px;
    width: 500px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.login-container h2 {
    text-align: center;
}

.form-group {
    margin-bottom: 12px;
}

/* 或者针对所有表单选择框 */
.login-container select {
    width: 300px;
    height: 40px;
    padding: 5px 10px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-container input[type="radio"] {
    margin-right: 5px;
}

.login-container label {
    margin-right: 15px;
    font-weight: normal;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 480px;
    height: 40px;
    padding: 5px 10px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-container input[type="text"]:focus,
.login-container input[type="password"]:focus {
    border-color: #409eff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);
}

.login-container input::placeholder {
    color: #c0c4cc;
}

.login-container .column-left {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.login-container .column-right {
    display: flex;
    align-items: center;
    flex-direction: row;
    align-content: center;
}

.input-captcha {
    width: 200px;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Courier', 'Fira Sans', sans-serif;
    letter-spacing: 5px;
}

.captcha-image {
    cursor: pointer;
    background: white;
}

.password-hint {
    font-size: 14px;
    color: #7c7c7c;
}


.login-button {
    width: 100%;
    height: 50px;
    background: #409eff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-button:hover {
    background: #66b1ff;
}
.login-button:active {
    background: #3a8ee6;
}

.login-button-gray {
    width: 100%;
    height: 50px;
    background: #f2f2f2;
    color: #333333;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-button-gray:hover {
    color: white;
    background: #66b1ff;
}

/* 验证码区域样式 */
.form-group:last-child {
    display: flex;
    gap: 10px;
    align-items: center;
}

#captchaImage {
    border: 1px solid #dcdfe6;
    border-radius: 5px;
    padding: 5px;
    transition: border-color 0.2s;
    width: 200px;
    height: 40px;
    margin: 0 0 0 10px;
}

#captchaImage:hover {
    border-color: #409eff;
}

.util-button-container {
    margin-top: 10px;
    display: flex;
    width: 100%; /* 确保容器撑满父元素 */
}

.util-button-container-left {
    flex: 1; /* 各占剩余空间的50% */
    box-sizing: border-box; /* 包含padding和border */
}
.util-button-container-right {
    flex: 1; /* 各占剩余空间的50% */
    box-sizing: border-box; /* 包含padding和border */
    display: flex;
    justify-content: flex-end; /* 右侧内容右对齐 */
}
.util-button-container a.btn-util:link,
.util-button-container a.btn-util:visited{
    color: #A0A2A8;
    font-size: 14px;
    text-decoration: none;
}

.util-button-container a.btn-util:hover {
    color: #66b1ff;
    text-decoration: underline;
}
/*登录结束*/

/* secure-main-container start */
.secure-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 600px;
    margin: 50px auto;
}

.secure-main-container a.button-normal:link,.secure-main-container a.button-normal:visited {
    width: 100%;
    height: 50px;
    background: #f2f2f2;
    color: #000000;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0 0;
    text-decoration: none;
}

.secure-main-container a.button-normal:hover {
    background: #E5E5E5;
}
/* secure-main-container end */


/* 制品库样式 开始 */
.repository-container {
    width: 1000px;
    margin: 20px auto;
}
.code {
    border: 1px solid #dcdfe6;
    margin: 10px;
}
.code pre {
    padding: 5px 5px 5px 20px;
    font-size: 14px;
    font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
.highlight-text {
    color: brown;
    font-weight: bold;
}
/* 制品库样式 结束 */


/* 激活区域样式 开始 */
.activate-button-container {
    display: flex;
    width: 100%; /* 确保容器撑满父元素 */
    gap: 15px;
}
/* 激活区域样式 结束 */

/* 产品介绍部分 开始 */

/* 横屏banner */
.intro-banner {
    width: 100%;
    height: 170px;
    background-image: url('images/img-banner-01.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.intro-content {
    font-size: 40px;
    color: #aaaaaa;
    font-style: italic;
    font-weight: bold;
    text-align: left;
    margin-left: 300px;
    letter-spacing: 5px; /* 调整字母间距 */
}

/* 导航栏 */
.intro-navigation {
    width: 1400px;
    height: 60px;
    margin: 0 auto;
    border-bottom: 1px solid #EAEAEA;
    display: flex;
    align-items: center;
}

.current-location {
    font-size: 14px;
    font-family: 'PingFangSC', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft JhengHei', sans-serif;
    color: #595959;
}

.breadcrumbs {
    font-size: 14px;
    font-family: 'PingFangSC', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft JhengHei', sans-serif;
    font-weight: 600;
    color: #1d2129;
}

/* 内容区域 */
.intro-content-container {
    width: 1400px;
    min-height: 900px;
    margin: 0 auto;
    display: flex;
}

/* 侧边栏样式 开始 */
.intro-sidebar {
    width: 240px;
    border-right: 1px solid #EAEAEA;
    padding: 40px 0 0 0;
}

/* 侧边栏菜单基础样式 */
.intro-sidebar .menu {
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    padding: 0 10px 0 15px;
    margin-bottom: 2px;
    border-bottom: 0px solid #EAEAEA;
    border-left: 2px solid #ffffff;


    text-align: left;
    color: #434343;
    font-weight: normal;
    text-decoration: none;

}

/* 侧边栏菜单链接基础样式 */
.intro-sidebar a.menu-title:link,
.intro-sidebar a.menu-title:visited {

}

.intro-sidebar .menu-current,
.intro-sidebar a.menu-title:hover {
    color: #256CF8;
    text-decoration: none;
    font-weight: bold;
    background: linear-gradient(to right, #F2F6FF, #FFFFFF);
    border-left: 2px solid #256CF8;
}

.intro-sidebar .menu-level1 {
}
.intro-sidebar .menu-level2 {
    padding-left: 14px;
}
.intro-sidebar .menu-level3 {
    padding-left: 28px;
}
.intro-sidebar .menu-level4 {
    padding-left: 42px;
}

.intro-sidebar .menu-arrow-down {
    background: url("images/menu-arrow-down.png") no-repeat 93% center;
    background-size: 16px 16px;
}
.intro-sidebar .menu-arrow-right {
    background: url("images/menu-arrow-right.png") no-repeat 93% center;
    background-size: 16px 16px;
}
.intro-sidebar .menu-arrow-up {
    background: url("images/menu-arrow-up.png") no-repeat 93% center;
    background-size: 16px 16px;
}
.intro-sidebar .menu-arrow-left {
    background: url("images/menu-arrow-left.png") no-repeat 93% center;
    background-size: 16px 16px;
}

/* 侧边栏样式 结束 */

.main-content-container {
    flex: 1;
    padding: 20px 65px 20px;
    background-color: #ffffff;
}

.main-content-title {
    padding: 10px 20px 10px 10px;
    width: 100%;
    height: 30px;
    font-size: 24px;
    display: flex;
}
.main-content-title-hr {
    color: #EAEAEA;
    border: none;
    background-color: #3d5fd6;
    height: 2px;
    margin: 5px 10px;
    width: 80px;
}
.main-content {
    font-size: 16px;
    padding: 5px 20px;
    color: #424242;
    line-height: 200%;
}

.welcome-title {
    font-size: 22px;
    text-indent: 2em;
}

.img-max-width {
    max-width:750px
}

.content-subtitle {
    font-size: 18px;
    font-weight: bold;
}

/* 产品介绍部分 结束 */


/* 女娲介绍章节 开始 */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.align-center {
    display: flex;
    justify-content: center;
}

.center {
    text-align: center;
    display: flex;
    justify-content: center;
}

.text-indent {
    text-indent: 2em;
}
/* 女娲介绍章节 结束 */

/* 错误信息布局 开始*/
.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 300px;
    text-align: center;
    border-radius: 10px;
    background: #eeeeee;
    border: 1px solid #cccccc;
    margin: 40px auto;
    flex-direction: column;
    align-content: center;
}
.error-container a:link,a:visited {
    color: #333333;
    text-decoration: none;
}
.error-container a:hover {
    color: #256CF8;
}
/* 错误信息布局 结束*/

