﻿/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* 中心容器样式 */
.centered-container {
    max-width: 1200px;
    margin: 20px auto;
    background: rgba(15, 32, 39, 0.8);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.3);
    border: 1px solid rgba(0, 200, 255, 0.2);
    text-align: center; /* 容器内容居中 */
}

/* 居中渐变标题效果 */
.centered-gradient-header {
    font-size: 28px;
    font-weight: bold;
    margin: 25px 0;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    display: block; /* 确保标题居中 */
}

/* 居中科技感表格样式 */
.centered-tech-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: rgba(32, 58, 67, 0.7);
    border-radius: 10px;
    overflow: hidden;
    text-align: center; /* 表格内容居中 */
}

.centered-tech-table th {
    background: linear-gradient(to right, #00394b, #006a7d);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
    text-align: center; /* 表头居中 */
}

.centered-tech-table td {
    border: 1px solid rgba(0, 200, 255, 0.3);
    padding: 15px;
    text-align: center; /* 单元格内容居中 */
    vertical-align: middle; /* 垂直居中 */
}

.centered-tech-table tr:nth-child(even) {
    background: rgba(44, 83, 100, 0.5);
}

.centered-tech-table tr:hover {
    background: rgba(0, 100, 150, 0.3);
    transition: background 0.3s ease;
}

/* 居中输入框样式 */
.centered-input-field {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(0, 200, 255, 0.5);
    background: rgba(15, 32, 39, 0.5);
    color: #fff;
    width: 100%;
    max-width: 400px;
    text-align: center; /* 输入框内文字居中 */
    font-size: 16px;
    display: inline-block; /* 确保居中效果 */
}

/* 居中输入框占位符 */
.centered-input-field::placeholder {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center; /* 占位符居中 */
}

/* 居中下拉选择框 */
.centered-select-field {
    padding: 8px 10px;
    border-radius: 5px;
    border: 1px solid rgba(0, 200, 255, 0.5);
    background: rgba(15, 32, 39, 0.5);
    color: #fff;
    text-align: center; /* 下拉框文字居中 */
    font-size: 15px;
    display: inline-block;
}

/* 居中标签文字样式 */
.centered-tech-table td strong {
    display: block; /* 改为块级元素 */
    width: 100%; /* 占满宽度 */
    text-align: center; /* 水平居中 */
    margin: 5px 0; /* 调整外边距 */
    font-size: 15px;
    color: #00c6ff;
    vertical-align: middle; /* 垂直居中 */
}

/* 居中验证码区域 */
.centered-captcha-container {
    display: flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
    gap: 20px; /* 调整间距 */
}

.centered-captcha-img {
    cursor: pointer;
    border: 1px solid rgba(0, 200, 255, 0.5);
    border-radius: 5px;
    height: 40px;
}

/* 居中服务条款区域 */
.centered-terms-container {
    display: flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
    gap: 10px;
    font-size: 14px;
}

/* 居中科技感按钮 */
.centered-tech-button {
    padding: 10px 20px;
    background: linear-gradient(to right, #00394b, #006a7d);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.5);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 198, 255, 0.7);
    margin: 0 5px;
    cursor: pointer;
    font-size: 14px;
    display: inline-block; /* 确保按钮居中 */
    text-align: center; /* 按钮文字居中 */
}

.centered-tech-button:hover {
    background: linear-gradient(to right, #006a7d, #00394b);
    box-shadow: 0 0 25px rgba(0, 198, 255, 0.8);
    transform: translateY(-2px);
}

/* 居中动态文字效果 */
.centered-dynamic-text {
    display: block; /* 改为块级元素 */
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.7);
    font-size: 30px;
    text-align: center; /* 文字居中 */
    margin: 0 auto; /* 水平居中 */
}

/* 响应式居中调整 */
@media (max-width: 768px) {
    .centered-container {
        padding: 15px;
        margin: 10px;
    }
    
    .centered-tech-table td {
        display: block;
        width: 100%;
        text-align: center; /* 移动端居中 */
    }
    
    .centered-input-field {
        width: 100%;
        max-width: 100%;
        text-align: center; /* 移动端输入框居中 */
    }
    
    .centered-tech-button {
        width: 100%;
        max-width: 200px;
        margin: 5px 0; /* 调整按钮间距 */
    }
}

/* 保留原有样式类名（已重命名） */
.centered-big {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    border: 1px solid black;
    border-radius: 5px;
    padding: 7px;
    text-align: center; /* 确保居中 */
    display: inline-block;
    width: auto; /* 宽度自适应内容 */
}

.centered-big1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px;
    text-align: center; /* 确保居中 */
    display: inline-block;
    width: auto; /* 宽度自适应内容 */
}

.centered-STYLE22 {
    font-size: 16px;
    text-align: center; /* 确保居中 */
    display: block;
    width: 100%;
}

    body {
        font-family: Arial, sans-serif; /* 字体设置为Arial，无衬线字体 */
        margin: 20px; /* 页面外边距为20像素 */
        font-size: 16px; /* 设置默认文字大小（可根据需要调整） */
    }
    table {
        width: 100%; /* 表格宽度占满父容器 */
        border-collapse: collapse; /* 边框合并，消除单元格之间的间隙 */
        margin: 0 auto; /* 表格水平居中 */
        font-size: 14px; /* 设置表格内文字大小（可选） */
    }
    th, td {
        border: 1px solid #ddd; /* 单元格边框为1像素宽的浅灰色实线 */
        padding: 12px; /* 单元格内边距为12像素 */
        text-align: left; /* 默认文本水平左对齐 */
        vertical-align: top; /* 文本垂直顶部对齐 */
        font-size: 14px; /* 设置单元格文字大小（可选） */
    }
    th {
        /* background-color: #f2f2f2; 表头单元格背景色为浅灰色（如需完全无背景可删除此行） */
        font-weight: bold; /* 表头文本加粗 */
        font-size: 15px; /* 设置表头文字大小（可选） */
    }
    tr:nth-child(even) {
        /* background-color: #f2f2f2; 偶数行单元格背景色为浅灰色，形成斑马条纹效果（如需完全无背景可删除此行） */
    }
    /* 第一列文字居中 */
    td:first-child, th:first-child {
        text-align: center; /* 水平居中 */
    }
    /* 如需完全无背景，请使用以下样式替代上方th和tr:nth-child(even)的样式 */
    /*
    th, tr:nth-child(even) {
        background-color: transparent; 表头和偶数行单元格背景色设为透明 
    }
    */
	
	.more-li {
  opacity: 0; 
  transform: translateX(-100px); 
  height: 0 !important; 
  overflow: hidden; 
  transition: all 0.5s ease; 
}

.more-li.show {
  opacity: 1; 
  transform: translateX(0);
  height: auto !important; 
}

.more-li-right {
  opacity: 0; 
  transform: translateX(100px);
  height: 0 !important;
  overflow: hidden; 
  transition: all 0.5s ease; 
}

.more-li-right.show {
  opacity: 1; 
  transform: translateX(0); 
  height: auto !important; 
}
.image-row {
    display: flex;
    justify-content: center; 
    align-items: center;    
}

		header[data-v-6b129486] {left:auto;right:auto; }