
/* 主要内容区域 */
.main-content {
    padding: 20px;
}

.content-placeholder {
    text-align: center;
    color: #666;
}

.content-placeholder h2 {
    margin-bottom: 15px;
    color: #333;
}

/* 固定按钮 */
.fixed-btns {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.service-btn img {
    width: 60px;
    height: 70px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-btn img:hover {
    transform: scale(1.1);
}

.back-top {
    width: 48px;
    height: 48px;
    background-image: url('../images/to-top.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.back-top:hover {
    transform: scale(1.1);
}

/* 页面底部区域 */
.footer {
    background-image: url('../images/index-b-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 15px 20px;
    text-align: center;
    color: #fff;
    margin-top: auto;
}

/* 信息展示区域样式 */
.info-item {
    font-family: "Source Han Sans";
    font-size: 14px;
    font-weight: normal;
    line-height: 30px;
    letter-spacing: 0px;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #BFE2FB;
    margin: 5px 0;
    text-align: left;
    margin-left: 30px;
}

/* 相关链接区域样式 */
.link-section {
    text-align: left;
    margin-bottom: 15px;
}

.link-section label {
    font-family: "Source Han Sans";
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    display: block;
    margin-bottom: 8px;
}

.link-section select {
    width: 100%;
    height: 42px;
    box-sizing: border-box;
    border: 1px solid rgba(220, 225, 224, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-family: "Source Han Sans";
    font-size: 16px;
    font-weight: bold;
    padding: 0 15px;
    border-radius: 4px;
}

/* 相关链接下拉框选项选中样式 */
.link-section select option:checked,
.link-section select option:hover {
    background-color: #0063F9 !important;
    color: white !important;
}

.link-section select:focus {
    outline: none;
    border-color: #0063F9;
    box-shadow: 0 0 0 2px rgba(0, 99, 249, 0.2);
}

/* 标签标题样式 */
.tab-title {
    opacity: 1;
    font-family: Microsoft YaHei;
    font-size: 24px;
    font-weight: bold;
    line-height: normal;
    text-align: center;
    letter-spacing: 0.02em;
    font-variation-settings: "opsz" auto;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.tab-title::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 4px;
    background-color: #FFFFFF;
}

/* 标签描述文本样式 */
.tab-txt {
    font-family: PingFang SC;
    font-size: 12px;
    font-weight: normal;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0px;
    font-variation-settings: "opsz" auto;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
}

/* 当前位置样式 */
.current-position {
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: normal;
    line-height: 25px;
    letter-spacing: 0px;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #999999;
    text-align: left;
}

/* hdjl-header样式 */
.hdjl-header {
    margin: 0 20px;
    display: flex;
    justify-content: space-between;
    height: 60px;
    gap: 13px;
}

.hdjl-header-item {
    flex: 1;
    height: 100%;
    background-image: url('../images/hdjl-head-tab-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    width: 125px;
    height: 120px;
    border-radius: 4px;
    box-shadow: 0px 0px 6px 0px rgba(3, 44, 66, 0.2);
}

.hdjl-header-item.active {
    color: #0063F9;
    background: linear-gradient(180deg, #FBFCFE 0%, #DFF1FD 100%), #D8D8D8;
    box-sizing: border-box;
    border: 0.5px solid #0063F9;
}

.hdjl-header-item img {
    width: 48px;
    height: 48px;
}

.hdjl-header-item-txt {
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: bold;
    line-height: 45px;
    text-align: center;
    letter-spacing: 0px;

    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: rgba(0, 0, 0, 0.8);
}

/* hdjl-content样式 */
.hdjl-content {
    margin: 0 20px;
    margin-top: 80px;
}

.hdjl-content-item {
    display: none;
}

.hdjl-content-item.active {
    display: block;
}

/* hdjl-content-item-frist-header样式 */
.hdjl-content-item-frist-header {
    background-color: #EDF4F9;
    padding:  12px 12px 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.hdjl-content-item-frist-header-item {
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #666666;
    cursor: pointer;
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s ease;
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    letter-spacing: 0px;

    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #666666;
}

.hdjl-content-item-frist-header-item.active {
    color: #0063F9;
    font-weight: bold;
}

.hdjl-content-item-frist-header-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0063F9;
}

/* hdjl-content-item-frist-list-item样式 */
.hdjl-content-item-frist-list-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    padding-right: 12px;
}

.hdjl-content-item-frist-list-item:last-child {
    border-bottom: none;
}

/* 间隔显示背景色 - 偶数行显示背景色 */
.hdjl-content-item-frist-list-item:nth-child(even) {
    background-color: #F8FCFD;
}


.hdjl-content-item-frist-list-item-title {
    cursor: pointer;
    transition: all 0.3s ease;
    padding-top: 5px;
}

.hdjl-content-item-frist-list-item-title-time {
    font-family: Source Han Sans;
    font-size: 14px;
    color: #999999;
    margin: 10px 45px;
}

.hdjl-content-item-frist-list-item-title-txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.hdjl-content-item-frist-list-item-title-txt img:first-child {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 15px;
   /* margin-top: -20px;*/
}

.hdjl-content-item-frist-list-item-title-txt div {
    flex: 1;
    font-family: Source Han Sans;
    font-size: 16px;
    color: #333333;
    line-height: 24px;
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0px;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: rgba(0, 0, 0, 0.8);
    background-image: url(../images/hdjl-line.png);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: 5px;
}

.hdjl-content-item-frist-list-item-title-txt img:nth-child(3),
.hdjl-content-item-frist-list-item-title-txt img:nth-child(4) {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}

.hdjl-content-item-frist-list-item-content {
    display: none;
    margin-top: 15px;
    padding: 15px;
    border-top: 1px solid #F0F1F1;
    border-radius: 4px;
    animation: slideDown 0.3s ease;
}

.hdjl-content-item-frist-list-item-content.show {
    display: block;
}

.hdjl-content-item-frist-list-item-content-huida {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hdjl-content-item-frist-list-item-content-huida img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hdjl-content-item-frist-list-item-content-huida div {
    flex: 1;
    font-family: Source Han Sans;
    font-size: 14px;
    color: #666666;
    line-height: 22px;
}

.hdjl-content-item-frist-list-item-content-time {
    color: #909090;
    margin: 10px 30px;
}

.hdjl-content-item-second-list-txt {
    margin: 20px;
    padding: 15px;
    border-radius: 5px;
    border-radius: 6px;
    opacity: 1;
    background: #FFFFFF;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
    font-family: Source Han Sans;
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
    text-align: justify;
    letter-spacing: 0px;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: rgba(0, 0, 0, 0.8);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* hdjl-content-item-second-header样式 */
.hdjl-content-item-second-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px 0px 20px;
    margin-bottom: 10px;
    background: #EDF4F9;
}

.hdjl-content-item-second-header > div {
    font-family: Source Han Sans;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    position: relative;
    padding-bottom: 8px;
}

.hdjl-content-item-second-header > div::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 30px;
    height: 3px;
    background-color: #0063F9;
}

.hdjl-content-item-second-header button {
   display: flex;
    margin-top: 3px;
    gap: 10px;
    background: transparent;
    border: none;
    font-family: Source Han Sans;
    font-size: 14px;
    color: #0063F9;
    cursor: pointer;
    padding: 0px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hdjl-content-item-second-header button img {
    width: 16px;
    height: 16px;
}

/* hdjl-content-item-second-list-item样式 */
.hdjl-content-item-second-list-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 6px 15px;
   /* margin-bottom: 8px;*/
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #F0F1F1;
}

.hdjl-content-item-second-list-item:hover {
    background-color: #E8F4FD;
}

.hdjl-content-item-second-list-item > div {
    flex: 1;
    font-family: Source Han Sans;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 0px;
    max-width: max-content;
    float: left;
    padding-top: 5px;
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: normal;
    line-height: 25px;
    letter-spacing: 0px;
}

.hdjl-content-item-second-list-item > div::before {
    content: '';
    width: 5px;
    height: 5px;
    border: 1px solid #C0C6D1;
    background-color: transparent;
    border-radius: 50%;
    flex-shrink: 0;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: rgba(0, 0, 0, 0.8);
		 display: inline-block;
    margin-right: 8px;
    margin-bottom: 3px;
}

.hdjl-content-item-second-list-item img {
    width: 24px;
    height: 29px;
    flex-shrink: 0;
}

/* hdjl-content-item-second-list-from样式 */
.hdjl-content-item-second-list-from {
    padding: 20px;
    background-image: url('../images/hdjl-from-bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin-top: 15px;
}

.hdjl-content-item-second-list-from-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.hdjl-content-item-second-list-from-item:last-child {
    margin-bottom: 0;
}

.hdjl-content-item-second-list-from-item label {
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: 0px;
    color: #0063F9;
    margin-bottom: 8px;
    text-align: left;
    align-self: flex-start;
}

.hdjl-content-item-second-list-from-item label span {
    color: #FF0000;
    margin-right: 4px;
}

.hdjl-content-item-second-list-from-item input{
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-family: Source Han Sans;
    font-size: 14px;
    color: #333333;
    resize: vertical;
    height: 42px;
}

.hdjl-content-item-second-list-from-item textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-family: Source Han Sans;
    font-size: 14px;
    color: #333333;
    resize: vertical;
    height: 200px;
}

.hdjl-content-item-second-list-from-item input:focus,
.hdjl-content-item-second-list-from-item textarea:focus {
    outline: none;
    border-color: #0063F9;
    box-shadow: 0 0 0 2px rgba(0, 99, 249, 0.1);
}

/* 验证码项特殊样式 - 水平布局 */
.s-yanzhengma-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    width: 100%;
}

.s-yanzhengma-container label {
    margin-bottom: 0;
    min-width: 80px;
    align-self: center;
}

.s-yanzhengma-container .s-yanzhengma {
    flex: 1;
    margin-bottom: 0;
    height: 42px;
}

.s-yanzhengma-container .s-yanzhengma-img {
    
    height: 40px;
    flex-shrink: 0;
    cursor: pointer;
    align-self: center;
}

/* 表单按钮容器样式 */
.hdjl-content-item-second-list-from-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.hdjl-content-item-second-list-from-item:last-child {
    margin-bottom: 0;
}

/* 按钮容器 - 水平布局 */
.hdjl-content-item-second-list-from-item.button-container {
    flex-direction: row;
    gap: 15px;
    justify-content: space-between;
    padding: 10px 0px 10px 0px;
}

/* 表单按钮样式 */
.hdjl-content-item-second-list-from-item button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-family: Source Han Sans;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    width: 50%;
}

.hdjl-content-item-second-list-from-item button:first-of-type {
    background-color: #0063F9;
    color: white;
}

.hdjl-content-item-second-list-from-item button:first-of-type:hover {
    background-color: #0052D3;
}

.hdjl-content-item-second-list-from-item button:last-of-type {
    background-color: #068A3E;
    color: white;
}

.hdjl-content-item-second-list-from-item button:last-of-type:hover {
    background-color: #057233;
}

.hdjl-content-item-second-list-from-item button img {
    width: 16px;
    height: 16px;
}


































/* 分页器样式 - 更新版本 */
.pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    gap: 15px;
}

.page-numbers-container {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    padding: 20px 0;
}

.page-numbers-container::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.2), transparent);
    box-shadow: 3px -4px 5px 0px rgba(0, 0, 0, 0.1);
}

.page-numbers-container::after {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.2), transparent);
    box-shadow: 0 -6px 4px rgba(0, 0, 0, 0.1);
}

.page-info-container {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-btn {
    padding: 8px 16px;
    background: #f5f5f500;
    border: 0px solid #ddd;
    border-radius: 4px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Source Han Sans;
    white-space: nowrap;
}

.page-btn:hover {
    background: #0063F9;
    color: white;
    border-color: #0063F9;
}

.page-info {
    font-family: Source Han Sans;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    width: 36px;
    height: 36px;
    border: 0px solid #ddd;
    background: white;
    border-radius: 4px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Source Han Sans;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-number:hover {
    background: #f0f0f0;
    border-color: #0063F9;
}

.page-number.active {
    background-image: url('../images/pages-active.png');
    background-size: cover;
    background-position: center;
    color: white;
    border-color: #0063F9;
    font-weight: bold;
}

.page-input {
    width: 45px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 14px;
    font-family: Source Han Sans;
    text-align: center;
}

.page-input:focus {
    outline: none;
    border-color: #0063F9;
    box-shadow: 0 0 0 2px rgba(0, 99, 249, 0.2);
}

.confirm-btn {
    color: #0063F9;
    border: 1px solid #0063F9;
    border-color: #0063F9;
    height: 30px;
    padding: 4px 9px;
}

.confirm-btn:hover {
    background: #0052d4;
    border-color: #0052d4;
}

