.wedox-centered-ad {
    width: 800px;
    margin-top: 40px;
    display: flex;
    justify-content: center; /* 水平居中 */
    height: 50px;          /* 如果希望按钮在页面中央，可以设置父容器高度为视口高度 */
    text-align: center;     /* 备用，确保文本也居中 */
}

.wedox-ad-button {
    display: inline-block;
    padding: 0px 20px;     /* 内边距，使按钮看起来更饱满 */
    color: #fff;           /* 文本颜色 */
    background-color: #007BFF; /* 按钮背景颜色 */
    text-decoration: none; /* 去掉链接下划线 */
    border-radius: 5px;    /* 圆角边框 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 阴影效果 */
    transition: background-color 0.3s ease; /* 背景颜色过渡效果 */
    width: 200px;          /* 固定宽度 */
    height: auto;          /* 高度自适应 */
    text-align: center;    /* 按钮内文本居中 */
    line-height: 50px;      /* 行高，使文本垂直居中 */
}

.wedox-ad-button:hover {
    background-color: #0056b3; /* 鼠标悬停时改变背景颜色 */
}