html, body {
    height: 100%;         /* 将 html 和 body 的高度设置为 100% */
    margin: 0;            /* 去掉默认的外边距 */
    padding: 0;           /* 去掉默认的内边距 */
    box-sizing: border-box; /* 使所有子元素的 padding 和 border 被包括在元素的宽高内 */
}
body{
    font-family: "Microsoft YaHei", 微软雅黑, STHeiti, "WenQuanYi Micro Hei", SimSun, sans-serif;
}
ul{
    list-style-type: none;
}

.header {
    width: 1320px;
    margin: 0 auto;  /* 水平居中 */
    display: flex;
    justify-content: space-between;  /* 分配间隔 */
    position: relative;  /* 使定位上下文可用 */
    background: url('/static/images/logo_bg.png') no-repeat bottom right;
    align-items: center;
    height: 200px;  /* 示例高度，根据需要调整 */
}

.layout_content{
    /*width: 1320px;*/
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    flex-direction: column;
}

/* 使内部 div 保持在水平线上 */
.inner {
    flex: 0 0 auto;  /* 防止 div 扩展或收缩 */
}

.inner h1{
    margin-left: 2rem;
    padding-left: 2rem;
    height: 106px;
    line-height: 106px;
    font-weight: bold;
    color: #003e9f;
    font-size: 2.4rem;
    border-left: solid 1px #ddd;
}
.pd{
    padding-top: 20px;
}
/* 左侧 div 向左移动 */
.left {
    margin-right: auto;  /* 推向右侧 */
}

/* 右侧 div 向左移动 */
.right {
    margin-left: auto;  /* 推向左侧 */
}

/* 可以添加一些基本样式以便视觉测试 */
.left, .center, .right {
    padding: 20px;
}

.right img{
    width: 360px;
    display: block;
}

.nav-box{
    background: #003e9f;
    margin:0 auto;
    justify-content: center;
    height: 56px;
}
.nav {
    display: flex; /* 使用 Flexbox 让列表项横向排列 */
    justify-content: center; /* 让所有列表项在水平方向居中 */
    align-items: center;
    width: 1320px;
}

.nav li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* li 高度与 ul 一致 */
    /*display: inline-block; !* 让列表项横向排列 *!*/
    width: 14.2857%;
}
.nav .select {
    background: #2a69cf;
}
.nav li a{
    text-decoration: none;
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
}

.breadcrumb-div{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FBFCFD;
}
.breadcrumb-nav{
    width: 1320px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 14px;
    color: rgba(102, 102, 102, 1);
    text-align: left;
    vertical-align: top;
    padding: 20px 0px;
}

.first-link {
    background-image: url('/static/images/first-link.png');
    position: relative; /* 让子元素相对定位 */
    width: 100%; /* 宽度与父容器一致 */
    height: 100%; /* 高度与父容器一致 */
    /*background-color: rgba(255, 255, 255, 0.5); !* 设置背景颜色，带透明度 *!*/
}

.first-link img {
    width: 100%; /* 图片宽度与父容器一致 */
    height: 100%; /* 图片高度与父容器一致，可根据需求调整 */
    object-fit: cover; /* 确保图片保持比例并覆盖容器 */
    position: absolute; /* 图片绝对定位，填满容器 */
    top: 0;
    left: 0;
    z-index: -1; /* 图片在背景层，使背景色在前 */
}


.custom-button-box{
    flex-direction: column;
}
.custom-button {
    margin-top: 10px;
    height: 50px; /* 按钮高度 */
    background-size: cover; /* 背景图覆盖整个按钮 */
    background-position: center; /* 背景图居中 */
    background-repeat: no-repeat; /* 防止背景图重复 */
    border: none; /* 去掉默认边框 */
    color: white; /* 按钮文本颜色 */
    font-size: 16px; /* 文本大小 */
    text-align: center; /* 文本居中 */
    cursor: pointer; /* 鼠标悬停时变为手势 */
}
.first-link{
    background-image: url('/static/images/first-link.png'); /* 设置背景图 */
}
.last-link{
    background-image: url('/static/images/last-link.png'); /* 设置背景图 */
}


.footer{
    border-top: 2px solid rgba(42, 105, 207, 1);
    margin: 0px auto;
    max-width: 1320px;
    justify-content: center;
    padding: 30px 0px;
}


.copyright-font{
    padding-right: 10px;
}

.copyright-bottom {
    align-items: center;
}

.copyright-bottom a {
    color: #888;
    font-size: 0.8rem;
}
