/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}
a{
    text-decoration: none;
}
body {
    color: #333;
    line-height: 1.6;
    background: #ECF3FE;
}
ul,li{
    list-style-type: none;
}
 /* 定义本地字体 */
    @font-face {
      font-family: 'AlimamaShuHeiTi';
      src: url('../fonts/AlimamaShuHeiTi-Bold.woff2') format('woff2'),
           url('../fonts/AlimamaShuHeiTi-Bold.woff') format('woff'),
           url('../fonts/AlimamaShuHeiTi-Bold.ttf') format('truetype'); /* 备选TTF */
      font-weight: normal;
      font-style: normal;
    }

.container{
    width: 1200px;
    margin: 0 auto;
}
.header{
    height: 550px;
    width: 100%;
    background-image: url(../img/banner.png);
}
.header nav{
    height: 70px;
    padding: 10px 0;
}
.header nav img{
    height: 100%;
}
.header .banner{
    text-align: center;
}
.header .banner .toptitle{
    font-family: 'AlimamaShuHeiTi';
    background: linear-gradient(0deg, #6D67FF 0%, #0387FF 50%, rgba(109,103,255,0.8) 100%);
    background-clip: text;
    font-size: 50px;
    color: transparent;
    margin-top: 120px;
}
.header .banner .topsubtitle{
font-size: 18px;
color: #443D3D;
line-height: 28px;
text-align: center;
font-style: normal;
text-transform: none;
margin: 30px auto 0;
width: 799px;
}

.header .banner_text{
color: #FFFFFF;
margin-top: 30px;
font-size: 16px;
line-height: 30px;
}
.header .banner_button{
width: 240px;
padding: 20px 0;
margin: 0 auto;
font-size: 28px;
margin-top: 40px;
background: linear-gradient(90deg, #7566ff 0, #314dff 50%, #41a0ff 100%);
border-radius: 100px;
transform: translateZ(0);
cursor: pointer;
}
.header .banner_button .btn_item{
    background: none;
    border: none;
    color: #FFFFFF;
    display: inline-block;
    vertical-align: middle;
    font-size: 28px;
}
.header .banner_button button{
    cursor: pointer;
}
.header .banner_button .button_ico{
    display: inline-block;
    width: 44px;
    height: 44px;
    background: url(../img/jiantou.png);
    vertical-align: middle;
    margin-left: 10px;
    transition: 0.4s;
    transform: translateX(0); /* 添加初始位置 */
}
.header .banner_button:hover .button_ico{
    transform: translateX(15px); /* 向右移动40px */
    margin-left: 10px; /* 保持原始的margin-left */
}
.banner_bottom{
    width: 100%;
    height: 90px;
    background: #ffffff;
}
.banner_bottom_boxs{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.banner_bottom_box{
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 14px;
    margin: 20px auto 0;
    align-items: center; /* 垂直居中对齐所有网格项 */
}
.banner_bottom_box_text .banner_bottom_box_text_l{
    font-weight: 600;
    font-size: 20px;
    color: #0059FF;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.banner_bottom_box_text{
    font-weight: 400;
font-size: 12px;
color: #666666;
text-align: left;
font-style: normal;
text-transform: none;
}
.ty_title{
font-family: 'AlimamaShuHeiTi';
font-weight: bold;
font-size: 36px;
text-align: left;
background: linear-gradient(0.7841305486379271deg, #232084 0%, #2194FF 100%);
background-clip: text;
color: transparent;
}
.ty_subtitle{
font-weight: 400;
font-size: 28px;
color: #000000;
text-align: left;
font-style: normal;
text-transform: none;
}
.mian{
    padding: 100px 0;
}
.mian .mian_lr{
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

}
.mian .mian_lr .mian_list{
    height: 350px;
    /* 核心滚动条位置设置 */
    direction: rtl; /* 内容从右到左排列 */
    unicode-bidi: embed; /* 强制内容按 RTL 方向渲染 */
    overflow-y: auto; /* 启用垂直滚动 */
    margin-top: 30px;
}

.mian .mian_lr .mian_list .mian_lists{
    direction: ltr; /* 恢复内容为从左到右 */
    padding-left: 20px;
}

/* WebKit/Blink 浏览器滚动条样式 */
.mian .mian_lr .mian_list::-webkit-scrollbar {
    width: 2px; /* 调整滚动条宽度为4px */
}

.mian .mian_lr .mian_list::-webkit-scrollbar-track {
    background: #ECF3FE; /* 滚动条轨道背景 */
    border-radius: 100%;
}

.mian .mian_lr .mian_list::-webkit-scrollbar-thumb {
    background: #fff; /* 滚动条滑块颜色 */
    border-radius: 100%;
}

.mian .mian_lr .mian_list::-webkit-scrollbar-thumb:hover {
    background: #fff; /* 悬停时滑块颜色 */
}

/* 隐藏滚动条上下箭头 */
.mian .mian_lr .mian_list::-webkit-scrollbar-button {
    display: none !important;
}

/* Firefox 滚动条样式 */
.mian .mian_lr .mian_list {
    scrollbar-width: thin; /* 滚动条粗细：auto | thin | none */
    scrollbar-color: #eee #fff; /* 滑块颜色 轨道颜色 */
}

.mian_lists_title{
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 14px;
    align-items: center; /* 垂直居中对齐所有网格项 */
    margin-top: 20px;
    font-weight: 600;
font-size: 20px;
color: #0F0D0F;
text-align: left;
font-style: normal;
text-transform: none;
}
.mian_lists_title img{
    width: 100%;
}
.mian_lists_text{
    margin-top: 10px;
    margin-left: 44px;
}
.pmlx{
    padding-top: 100px;
}
.pmlx .ty_title,.pmlx .ty_subtitle{
    margin-left: 50%;
}
.ty_button{
width: 150px;
height: 50px;
background: #151A26;
border-radius: 4px 4px 4px 4px;
color: #fff;
text-align: center;
line-height: 50px;
margin-left: 30px;
}
.wjgl{
    background: url(../img/wjgl.png);
    width: 100%;
    padding: 80px 0;
    background-size: cover;
}
.wjgl .wjgl_lists{
    margin-top: 80px;
}
.wjgl .wjgl_list{
    width: 50%;
    padding: 30px;
    background: rgba(255,255,255,0.7);
    box-shadow: 0px 4px 4px 0px rgba(0,136,255,0.2), inset 0px 4px 4px 0px #FFFFFF;
    border-radius: 8px 8px 8px 8px;
    margin-top: 20px;
}

.wjgl .wjgl_list .wjgl_title{
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.wjgl .wjgl_list .wjgl_text{
    margin-top: 14px;
}
.jszc .ty_title,.lhdy .ty_title{
    color: #000;
    text-align: center;
}
.jszc,.lhdy{
    padding: 80px 0;
}
.jszc_main{
    background: url(../img/jszc_bg.png);
    background-size: 100% 100%;
}
.lhdy .dy_lists{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 80px;
}

.lhdy .dy_list{
    padding: 20px;
    height: 400px;
}
.lhdy .dy_list .dy_title{
    font-weight: bold;
    font-size: 24px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.lhdy .dy_list .dy-txet{
    margin-top: 60px;
    font-size: 14px;
    color: #0F0D0F;
    line-height: 24px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    height: 180px;
}
.lhdy .dy_list .dy-txet p{
    margin-top: 20px;
}
.lhdy .dy_list .dy-txet p span{
    font-size: 16px;
    font-weight: 600;
}
.dy_button{
    display: block;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #151A26;
    background: #fff;
    width: 150px;
    height: 42px;
    color: #151A26;
    line-height: 42px;
    text-align: center;
    margin: 30px auto 0;
}
.lhdy .dy_list.anyue{
 background: url(../img/anyue.svg);
 background-size: cover;
}
.lhdy .dy_list.annian{
 background: url(../img/annian.svg);
 background-size: cover;
}
.lhdy .dy_list.anjidu{
 background: url(../img/anjidu.svg);
 background-size: cover;
}
.lhdy .dy_list.zdy{
 background: url(../img/zdy.svg);
 background-size: cover;
}


.lhdy .dy_list.anyue .dy_title{
    color: #225EB8;
}
.lhdy .dy_list.anjidu .dy_title{
    color: #2A76A2;
}
.lhdy .dy_list.annian .dy_title{
    color: #534384;
}
.lhdy .dy_list.zdy .dy_title{
    color: #2A76A2;
}
.lhdy{
    background: url(../img/dbbj.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat; /* 防止图片重复 */
    width: 100%;
}
.join{
    padding: 130px 0 0 0;
    text-align: center;
}
.join .join_title{
font-weight: 500;
font-size: 30px;
color: #151A26;
letter-spacing: 1px;
font-style: normal;
text-transform: none;
}
.join a{
margin: 60px auto 0;
    display: block;
    width: 180px;
height: 56px;
background: #151A26;
border-radius: 4px 4px 4px 4px;
line-height: 56px;
color: #fff;

}
.footer{
    background: #151A26;
    padding: 80px 0;
      color: #fff; /* 文字白色 */
}
.footer_main{
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 14px;
     align-items: center; /* 垂直居中对齐所有网格项 */
}
.footer-left {
text-align: center;
}
.footer-right{
    border-left: 1px solid #eeeeee;
    padding-left: 60px;
}
.footer-service {
  font-size: 16px;
}

.footer-qr {
  width: 120px; /* 二维码宽度，可调整 */
  height: 120px;
}

.footer-tip {
  font-size: 14px;
  line-height: 1.4;
}


.footer-title {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: bold;
}

.footer-copyright,
.footer-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  margin: 0; /* 清除默认外边距 */
}

.footer-copyright a {
  color: #fff; /* 链接文字白色 */
  text-decoration: underline; /* 下划线，突出可点击 */
}