* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: '微软雅黑', Arial, sans-serif;
    line-height: 1.6;
    /* 内容区域顶部留出头部高度，避免被遮挡 */
    padding-top: 90px;
}

/* 一键置顶按钮 */
#backToTop {
    position: fixed;
    display: none;
    bottom: 50px; /* 初始隐藏 */
    right: 30px;
    padding: 12px 12px;
    background: #009CDE;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: bottom 0.3s; /* 平滑动画 */
    z-index: 1000;
}

#backToTop:hover {
    background: #00B3FF;
    border: 2px solid #009CDE;
}


.page-wrapper {
    /* 占满视口高度（关键） */
    min-height: 40vh;
    /* 启用 Flex 布局 */
    display: flex;
    /* 水平居中 */
    justify-content: center;
    /* 垂直居中 */
    align-items: center;
    /* 可选：重置默认边距 */
    margin: 0;
    padding: 0;
}

.page-center {
    box-sizing: border-box;
    width: 90%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0 0;
}

.page-content-90 {
    box-sizing: border-box;
    width: 90%;
    margin: 0 auto;
    padding: 2px;
}

.page-content-80 {
    box-sizing: border-box;
    width: 80%;
    margin: 0 auto;
    padding: 2px;
}

.page-content-70 {
    box-sizing: border-box;
    width: 70%;
    margin: 0 auto;
    padding: 2px;
}

.page-content-60-90 {
    box-sizing: border-box;
    width: 60%;
    margin: 0 auto;
    padding: 2px;
}

.page-content-50-90 {
    box-sizing: border-box;
    width: 50%;
    margin: 0 auto;
    padding: 2px;
}

/* 整体页面居中 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2px;
}

/* 内容区域 */
.main-content {
    padding: 0 0;
}

/* 信息展示区优化 */
.info-section {
    width: 80%;
    margin: 0 auto;
    padding: 0;
}



/* 基础链接样式 */
a {
    color: #004277; /* 默认链接颜色（蓝色） */
    text-decoration: none; /* 关键：默认去除下划线 */
    transition: text-decoration 0.3s ease; /* 下划线过渡动画 */
    position: relative; /* 为伪元素定位 */
}

/* 鼠标悬停状态 */
a:hover {
    text-decoration: underline; /* 悬停时显示下划线 */
}

/* 扩展：自定义下划线样式（可选） */
a.a-yc:hover {
    /* 自定义下划线：通过伪元素实现更灵活的控制 */
    text-decoration: underline; /* 先重置默认下划线 */
}

a.a-yc:hover::after {
    background: #004277; /* 下划线颜色 */
    text-decoration: none;
}


.gallery-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.image-item-no-transition {
    width: 300px;
    text-align: center;
}

.image-item {
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}


.image-caption {
    margin-top: 10px;
    font-size: 16px;
}

.image-item:hover img {
    transform: scale(0.8);
}

.left-right-wrapper {
    display: flex; /* 核心布局：弹性盒子 */
    gap: 30px; /* 图片与文字区域间距 */
    min-height: 500px; /* 最小高度（可选） */
}

/* 左侧图片区域 */
.left-image {
    flex: 0 0 80%; /* 不放大/不缩小/初始宽度占75% */
    max-width: 780px; /* 限制最大宽度（可选） */
}

/* 左侧图片区域 */
.left-image-small {
    flex: 0 0 30%; /* 不放大/不缩小/初始宽度占75% */
    max-width: 780px; /* 限制最大宽度（可选） */
}

.left-image img {
    width: 100%; /* 图片宽度填满左侧容器 */
    height: auto; /* 保持宽高比 */
}

/* 右侧多段文字区域 */
.right-text {
    flex: 1; /* 占据剩余所有空间 */
    padding: 5px; /* 文字区域内边距 */
    margin-top: 20px;
}

/* 多段文字样式 */
.right-text h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.3;
}

.right-text p {
    color: #4a4a4a;
    line-height: 1.7; /* 行高提升可读性 */
    font-size: 16px;
    margin-bottom: 15px; /* 段落间距 */
}


.center-hr-100 {
    width: 100%; /* 占父容器宽度的80% */
    margin: 1px auto; /* 上下边距30px，左右自动居中 */
}


.center-hr {
    width: 75%; /* 占父容器宽度的80% */
    margin: 1px auto; /* 上下边距30px，左右自动居中 */
}

.yc-hr{
    border: none;
    height: 2px;
    background: #EEEEEE;
}

.yc-underline {
    position: relative; /* 父级需相对定位 */
    width: 100%;
    font-size: 18px;
    margin: 3px 0;
}

.yc-underline::after {
    content: ''; /* 必须为空内容 */
    position: absolute; /* 绝对定位 */
    bottom: 0; /* 底部对齐 */
    left: 0; /* 左侧对齐 */
    width: 100%; /* 宽度占满div */
    height: 1px; /* 下划线高度 */
    background-color: #D3D3D3; /* 黄色 */
}

.text-center-vertical {
    display: flex;
    flex-direction: column; /* 垂直排列 */
    justify-content: space-between; /* 垂直等间距 */
    align-items: center; /* 水平居中 */
    line-height: 2em;
    margin: 0 auto;
}

.text-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.title-margin-top {
    margin-top: 40px;
}

.a-clear {
    text-decoration: none;
}

.a-clear:hover {
    text-decoration: none;
}

.space-between-container {
    display: flex;
    justify-content: space-between;
    width: 75%;
    margin: 0 auto;
}

.space-between-container-list-item {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    background: #F6F6F6;
    cursor: pointer;
    position: relative;
    color: #333;
}

.space-between-container-list-item[data-active="true"] {
    background: #EEEEEE;
    border-bottom: 2px solid #009CDE; /* 蓝色下划线 */
}

.space-between-content-pane {
    display: none;
    padding: 20px;
}

.space-between-content-pane[data-tab="tab1"] {
    display: block;
}

input[type="radio"]:checked + .space-between-container-list-item {
    background: #EEEEEE;
    border-bottom: 2px solid #009CDE; /* 蓝色下划线 */
}

.spec-card {
    width: 75%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* 基础容器样式 */
.flex-block {
    width: 70%;
    display: flex;
    gap: 80px;
    margin: 0 auto;
    padding: 30px 0;
    font-size: 14px;
}

/* 图片样式 */
.img-block {
    flex: 1;
    color: #6A6A6A;
    text-align: left;
    display: flex;
    /* 水平居中 */
    justify-content: center;
    /* 垂直居中 */
    align-items: center;
}

.img-block img  {
    max-width: 100%;
}


/* 图片样式 */
.img-block-2 {
    flex: 1;
    color: #6A6A6A;
    flex-direction: column; /* 垂直排列图片和文字 */
    text-align: left;
    display: flex;
    /* 水平居中 */
    justify-content: center;
    /* 垂直居中 */
    align-items: center;
}



/* 文字样式 */
.text-block {
    display: grid;
    flex: 1;
    padding: 2px;
    /* 垂直居中 */
    align-items: center;
}

.footer-contact-us {
    width: 40%;
    display: flex;
    margin: 0 auto;
    padding: 40px 0;
    font-size: 14px;
}


.footer-contact-us-left {
    display: grid;
    flex: 1;
    padding: 2px;
    font-weight: 300;
    font-size: 30px;
    color: #808080;
    align-items: center;
    text-align: center;
}

.footer-contact-us-right {
    flex: 1;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    font-size: 25px;
    color: #959595;
    text-decoration: none;
}


.footer-contact-us-right span {
    width: 216px;
    font-size: 25px;
    font-weight: 300;
    color: #959595;
    margin: 0 auto;
    padding: 16px 60px;
    align-items: center;
    text-align: center;
    border: 1px solid #959595;
}


.div-space-30 {
    height: 30px;
}

.div-space-20 {
    height: 20px;
}

.div-space-10 {
    height: 10px;
}

.center-img {
    display: flex;
    margin: 10px auto;
    padding: 0 0;
}

.font-strong {
    font-weight: 600;
}


/*****************************************************************************************************/
/*****************************************************************************************************/

.page-title-text-30 {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    text-align: center; /* 文本水平居中 */
    word-wrap: break-word; /* 长单词强制换行 */
    overflow-wrap: break-word; /* 兼容性更好的换行属性 */
    font-size: 30px;
    color: #003158;
    font-weight: 300;
}

.page-title-text-30-3 {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    text-align: center; /* 文本水平居中 */
    word-wrap: break-word; /* 长单词强制换行 */
    overflow-wrap: break-word; /* 兼容性更好的换行属性 */
    font-size: 34px;
    color: #004277;
    font-weight: normal;
}

.page-title-text-38 {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    text-align: center; /* 文本水平居中 */
    word-wrap: break-word; /* 长单词强制换行 */
    overflow-wrap: break-word; /* 兼容性更好的换行属性 */
    font-size: 38px;color: #0075c2;
    font-family:Abril Fatface;
    font-weight:400;
    font-style:normal
}


.page-title-text-50 {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    text-align: center; /* 文本水平居中 */
    word-wrap: break-word; /* 长单词强制换行 */
    overflow-wrap: break-word; /* 兼容性更好的换行属性 */
    font-size: 50px;
    color: #003158;
    margin: 40px 0;
    font-weight: 400;
}

.page-title-text-50-2 {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    text-align: center; /* 文本水平居中 */
    word-wrap: break-word; /* 长单词强制换行 */
    overflow-wrap: break-word; /* 兼容性更好的换行属性 */
    font-size: 50px;
    color: #0075c2;
    font-weight: 400;
    margin: 40px 0;
}

.page-title-text-58 {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    text-align: center; /* 文本水平居中 */
    word-wrap: break-word; /* 长单词强制换行 */
    overflow-wrap: break-word; /* 兼容性更好的换行属性 */
    font-size: 58px;
    color: #0075c2;
    font-weight: 400;
    margin: 40px 0;
}


.item-title-blue-big {
    font-size: 43px;
    color: #003158;
    font-weight: 300;
}

.item-title-blue-middle {
    font-size: 30px;
    color: #0075C2;
    font-weight: 300;
}

.item-title-14 {
    font-size: 14px;
    color: #666666;
    font-weight: 600;
}

.item-title-18-blue {
    font-size: 20px;
    color: #0075c2;
    font-weight: 400;
}

.item-title-20-gray {
    font-size: 20px;
    color: #666666;
    font-weight: 600;
}

.item-title-24-blue2 {
    font-size: 24px;
    color: #00CCFF;
    font-weight: 400;
}

.item-title-24-blue {
    font-size: 24px;
    color: #00A0E3;
    font-weight: 400;
}

.item-title-24-gray {
    font-size: 24px;
    color: #666666;
    font-weight: 400;
}

.item-title-24-gray-b {
    font-size: 24px;
    color: #666666;
    font-weight: 600;
}

.item-title-30-blue {
    font-size: 30px;
    color: #0075c2;
    font-weight: 400;
}

.item-content-14 {
    font-size: 14px;
    color: #666666;
}

.item-content-16 {
    font-size: 16px;
    color: #666666;
}

.item-content-16-2 {
    font-size: 16px;
    color: #666666;
    line-height: 40px;
}

.item-content-18 {
    font-size: 18px;
    color: #666666;
}

.item-content-20 {
    font-size: 20px;
    color: #666666;
}

.item-content-hint {
    font-size: 17px;
    color: #8A8A8A;
}


.item-center {
    margin: 1px auto; /* 上下边距30px，左右自动居中 */
    padding: 0;
}

.align-center {
    display: flex;
    margin: 0 auto;
    padding: 0;
}


.img-container-80 {
    display: flex;
    justify-content: center; /* PC端水平居中 */
    align-items: center; /* PC端垂直居中 */
    margin: 20px auto; /* 添加外边距避免贴边 */
    max-width: 80%; /* PC端限制容器宽度 */
}

.img-container-80 img {
    max-width: 100%; /* 宽度不超过父容器 */
    height: auto; /* 高度按比例自适应 */
    display: block; /* 避免行内元素间隙 */
}


.img-container-100 {
    display: flex;
    justify-content: center; /* PC端水平居中 */
    align-items: center; /* PC端垂直居中 */
    margin: 0 auto; /* 添加外边距避免贴边 */
    max-width: 100%; /* PC端限制容器宽度 */
}

.img-container-100 img {
    max-width: 100%; /* 宽度不超过父容器 */
    height: auto; /* 高度按比例自适应 */
    display: block; /* 避免行内元素间隙 */
}


.video-yc {
    width: 50%; /* 高度按比例自适应 */
    height: 50%; /* 高度按比例自适应 */
}


.video-yc-1 {
    width: 100%; /* 高度按比例自适应 */
    height: 50%; /* 高度按比例自适应 */
    padding: 10px;
}


.item-text-img {
    width: 80%;
    display: flex;
    gap: 60px;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 14px;
}

.item-text-img-left_text {
    flex: 1;
    color: #6A6A6A;
    flex-direction: column;
    text-align: left;
    display: flex;
    /* 水平居中 */
    justify-content: center;
    /* 垂直居中 */
    align-items: start;
}

/* 文字样式 */
.item-text-img-right_img {
    display: grid;
    flex: 1;
    padding: 2px;
    align-items: center;
}

/* 文字样式 */
.item-text-img-left_img {
    display: grid;
    flex: 1;
    padding: 2px;
    /* 垂直居中 */
    align-items: center;
}


.item-text-img-right_text {
    flex: 1;
    color: #6A6A6A;
    flex-direction: column;
    text-align: left;
    display: flex;
    /* 水平居中 */
    justify-content: center;
    /* 垂直居中 */
    align-items: start;
}

.yc-link-blue {
    color: #0075c2;
    font-size: 16px;
    font-weight: 600;
}

.flex-block-1-3-4{
    overflow: hidden; /* 清除浮动 */
}

.flex-block-1-4{
    float: left;
    width: 20%;
}

.flex-block-3-4{
    float: left;
    width: 80%;
}

.btn-blue {
    width: 190px;
    height: 80px;
    padding: 16px 40px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-blue:hover{
    text-decoration: none;
    background: linear-gradient(135deg, #007bff, #0056b3);
}

/*****************************************************************************************************/
/*****************************************************************************************************/

/* 响应式：小屏幕下堆叠显示 */
@media (max-width: 768px) {


    .flex-block-1-4{
        width: 25%;
    }

    .flex-block-3-4{
        width: 75%;
    }

    .page-content-90 {
        width: 98%;
    }

    .page-content-60-90 {
        width: 90%;
    }

    .page-content-50-90 {
        width: 90%;
    }

    .page-content-80 {
        width: 90%;
    }

    .page-content-70 {
        width: 90%;
    }

    /* 信息展示区优化 */
    .info-section {
        width: 90%;
    }

    .item-text-img {
        width: 100%;
        flex-direction: column; /* 改为垂直排列 */
        gap: 10px;
    }


    .left-right-wrapper {
        flex-direction: column; /* 改为垂直排列 */
    }

    .image-item {
        width: 90%;
    }

    .left-image {
        flex: 0 0 auto; /* 重置宽度控制 */
        max-width: 100%; /* 小屏幕图片占满宽度 */
    }

    .right-text {
        width: 100%; /* 文字区域宽度撑满 */
        padding: 20px 15px; /* 小屏幕内边距调整 */
    }

    .center-hr {
        width: 90%;
    }

    .item-title-blue-big {
        font-size: 30px;
    }

    .item-title-30-blue {
        font-size: 20px;
    }

    .item-content-16 {
        font-size: 14px;
    }

    .item-content-16-2 {
        font-size: 14px;
        line-height: 36px;
    }

    .flex-block {
        width: 90%;
        gap: 10px;
        flex-direction: column; /* 改为纵向排列 */
    }

    .footer-contact-us {
        width: 90%;
        gap: 30px;
        padding: 20px 0 ;
        margin-bottom: 20px;
        flex-direction: column; /* 改为纵向排列 */
    }

    .page-title-text-50 {
        font-size: 40px;
        margin: 10px 0;
    }

    .page-title-text-50-2 {
        font-size: 40px;
        margin: 10px 0;
    }


    .page-title-text-58 {
        font-size: 38px;
        margin: 10px 0;
    }



    .img-container-80 {
        max-width: 100%; /* 满屏宽度 */
        margin: 0; /* 移除外边距 */
    }

    .video-yc {
        width: 100%; /* 高度按比例自适应 */
        height: 100%; /* 高度按比例自适应 */
    }

    .item-text-img-right_text {
        flex: 1;
        color: #6A6A6A;
        flex-direction: column;
        text-align: left;
        display: flex;
        /* 水平居中 */
        justify-content: left;
        /* 垂直居中 */
        align-items: start;
        padding-left: 2%;
    }

}
