.a_hengtiao{
    background-color: white;
    width: 100%;
    height: 60px;
    box-shadow: 0 15px 15px -15px rgba(31, 92, 161, 0.2);
}
.a_content{
    width: 1024px;
    margin: 0 auto;
    /* border:1px solid #f42c03;  */
    height: 60px;
}
.a_ban{
    width: 185px;
    /* border:1px solid rgb(244, 44, 3);  */
    height: 60px;
    float: left;
    cursor:pointer;
}
.a_ban_logo{
    width: 60px;
    /* border:1px solid rgb(8, 242, 20); */
    height: 60px;
    float: left;
    line-height: 60px;
    text-align: center;
    padding-top: 8px;
}
.a_ban_txt{
    width: 120px;
    /* border:1px solid rgb(53, 8, 252);  */
    height: 60px;
    float: left;
    line-height: 60px;
    
}

.a_index{
    width: 600px;
    height: 60px;
    float: left;
    /* border:1px solid rgb(53, 8, 252); */
    
}
.a_index_x{
    width: 90px;
    height: 60px;
    float: left;
    line-height: 60px;
    text-align: center;
    /* border:1px solid rgb(53, 8, 252); */
    cursor:pointer;
    margin: 0 10px;
}
.a_index_x:hover{
    font-weight: bold;
    color: #068bfb;
}

.a_index_x:active{
    font-weight: bold;
    /* border: none;
	border-bottom: 4px solid #4e6ff2; */
}

.beian{
	margin-top: 50px;
	text-align: center;
	margin-bottom: 5px;
}

table.mytable{
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-spacing: 0;
    box-sizing: border-box;
    /* font-family: ui-sans-serif; */
    font-size: 14px;
    font-weight: bold;
    line-height: 1.42857143;
    color: #5a5555;
    background-color: #fff;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    /* border: 10px; */
    border-color: #f9f9f9;
}
.tabdiv{
    background-color: white;
    padding: 20px;
    border-radius: 25px;
    
}

/*下方是微信下载弹窗引导所用到的css*/

#overlay {
    display: none; /* 默认隐藏 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* 半透明黑色背景 */
    z-index: 1000; /* 确保覆盖层在最上面 */
}

#overlay .contentyd {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    width: 80%; /* 调整宽度以适应内容 */
    height: 80%; /* 调整高度以适应内容 */
    display: flex;
    flex-direction: column; /* 改为列方向 */
    overflow-y: auto; /* 如果内容超过高度，允许滚动 */
}

#overlay .image {
    flex: 1;
    margin-bottom: 20px; /* 图片与文字之间留空隙 */
    text-align: center;
}

#overlay .image img {
    max-width: 100%; /* 确保图片不会超出容器 */
    border-radius: 20px; /* 圆角图片 */
    border-width: 5px;
    border-style: solid;
    border-color: rgb(139, 139, 139);
}

#overlay .text {

    text-align: center; /* 文字两端对齐 */
}

#overlay .close {
    position: absolute;
    top: 10px;
    right: 10px; /* 更靠近右上角 */
    width: 40px; /* 增加宽度 */
    height: 40px; /* 增加高度 */
    line-height: 40px; /* 文本垂直居中 */
    text-align: center;
    font-size: 24px; /* 增加字体大小 */
    color: #fff;
    background-color: #333;
    cursor: pointer;
    border-radius: 50%; /* 圆形按钮 */
}

/*上方是微信下载弹窗引导所用到的css*/