body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    padding-top: 100px; /* 确保页面内容不会被固定导航覆盖，适应导航栏的高度 */
}

.container {
    max-width: 1650px; /* 设置最大宽度 */
    margin: 0 auto; /* 居中对齐 */
    padding: 20px; /* 添加一些内边距 */
}

/* 分割线样式 */
.hr0, .hr1, .hr2, .hr3, .hr4, .hr5, .hr6 {
    border-color: #D3D3D3; /* Light Gray */
    border-style: dotted;
    font-size: 0px;
    position: relative; /* 确保 ::before 的定位 */
}

.hr0::before, .hr1::before, .hr2::before, .hr3::before, .hr4::before, .hr5::before, .hr6::before {
    font-size: 20px;
    font-style: oblique;
    position: absolute;
    line-height: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.hr0::before { content: "自动投注"; color: #F00; }
.hr1::before { content: "看水手打"; color: #2A5FFF; }
.hr2::before { content: "自动跟单"; color: #2A7F00; }
.hr3::before { content: "赛马跟单/百宝箱"; color: #50A; }
.hr4::before { content: "运行工具"; color: #2ABF55; }
.hr5::before { content: "远程协助/即时通讯"; color: #7F00FF; }
.hr6::before { content: "打水必赢dsbing.com"; color: #808080; }

/* 添加水印样式 */
body::after {
    content: '打水必赢dsbing.com';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 24px;
    color: rgba(169, 169, 169, 0.5); /* 浅灰色，透明度为0.5 */
    pointer-events: none; /* 防止水印遮挡页面的交互 */
    z-index: -1; /* 将水印放置在页面的底层 */
    transform: rotate(-45deg);
    margin: 20px; /* 间距，根据需要调整 */
    line-height: 1.5; /* 控制重复显示的间距，根据需要调整 */
    white-space: nowrap;
    overflow: hidden;
}

/* 导航栏样式 */
.uk-navbar-container {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* 增加阴影效果 */
}

.uk-navbar-item a {
    font-weight: bold;
}

.uk-navbar-center {
    margin: auto;
}

/* 返回顶部按钮样式 */
.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #d3d3d3;
    color: white;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.back-to-top:hover {
    background-color: #a9a9a9;
}
