/* 修复缺失图片的CSS - 移除或替换不存在的背景图片 */

/* 移除proListClassify相关的缺失图片背景 */
.proListClassify .sidebar .box1 dt {
    background-image: none !important;
}

.proListClassify .sidebar .box1 dt a:hover,
.proListClassify .sidebar .box1 dt a.cur {
    background-image: none !important;
}

.proListClassify .sidebar .box1 dd a {
    background-image: none !important;
}

.proListClassify .sidebar .box1 dd a:hover,
.proListClassify .sidebar .box1 dd a.cur {
    background-image: none !important;
}

/* 移除xing2.jpg背景 */
[style*="xing2.jpg"] {
    background-image: none !important;
}

/* 为按钮图标提供CSS替代方案 */
.proListClassify .section .con li .intro .btn a i,
.proDetailsLy .mainCon .box2 a i,
dl.dl_42 dd .btn a i {
    background-image: none !important;
    display: inline-block;
    width: 7px;
    height: 12px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    margin-left: 8px;
}

.proListClassify .section .con li .intro .btn a.more:hover i,
.proListClassify .section .con li .intro .btn a.zx:hover i,
.proDetailsLy .mainCon .box2 a:hover i,
dl.dl_42 dd .btn a.more:hover i,
dl.dl_42 dd .btn a.zx:hover i {
    background-image: none !important;
    border-color: #00984f;
}

/* 侧边栏导航箭头使用CSS替代 */
.proListClassify .sidebar .box1 dt,
.proListClassify .sidebar .box1 dd a {
    position: relative;
}

.proListClassify .sidebar .box1 dt::after,
.proListClassify .sidebar .box1 dd a::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
}

.proListClassify .sidebar .box1 dt a:hover::after,
.proListClassify .sidebar .box1 dt a.cur::after,
.proListClassify .sidebar .box1 dd a:hover::after,
.proListClassify .sidebar .box1 dd a.cur::after {
    border-color: #00984f;
}
