/* 自定义CSS，用于移除页面上的所有线条 */

/* 移除所有元素的边框 */
* {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* 移除导航菜单中的分隔线 */
nav ul li {
    border: none !important;
}

/* 移除页脚中的分隔线 */
#footer {
    border-top: none !important;
}

/* 移除文章中的分隔线 */
article {
    border: none !important;
}

/* 移除表单元素的边框 */
input, textarea, select, button {
    border: none !important;
    box-shadow: none !important;
}

/* 移除链接的下划线 */
a {
    border-bottom: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

/* 移除标题下的分隔线 */
h1:after, h2:after, h3:after, h4:after, h5:after, h6:after,
h1.major, h2.major, h3.major, h4.major, h5.major, h6.major {
    border: none !important;
    border-bottom: none !important;
    background: none !important;
}

/* FPS计数器样式已移除 */

/* 移除水平线 */
hr {
    border: none !important;
    border-bottom: none !important;
    background: none !important;
    display: none !important;
}

/* 移除引用块的左边框 */
blockquote {
    border-left: none !important;
}

/* 移除代码块的边框 */
code {
    border: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* 移除复选框和单选框的边框 */
input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
    border: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* 移除Box组件的边框 */
.box {
    border: none !important;
}

/* 移除按钮的边框 */
.button {
    border: none !important;
    box-shadow: none !important;
}

/* 移除图标的边框 */
.icon {
    border-bottom: none !important;
}

/* 移除列表项的边框 */
ul.icons li a {
    border: none !important;
    box-shadow: none !important;
}

/* 移除导航菜单中的分隔线 */
nav.use-middle:after {
    display: none !important;
}

/* 移除header中的所有线条 */
#header > *:before {
    display: none !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* 移除logo周围的边框 */
#header .logo {
    border: none !important;
}

/* 移除内容区域的边框 */
#header .content {
    border-top-width: 0 !important;
    border-bottom-width: 0 !important;
    border: none !important;
}

/* 移除背景中的线条 */
#bg:before, #bg:after {
}

/* 移除wrapper中的线条 */
#wrapper:before {
    display: none !important;
}

/* 移除关闭按钮中的线条 */
#main article .close:before {
    background-image: none !important;
}