<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* CSS Document */
body {
    margin: 0;
}

#certify {
	margin-top: -50px;
    width: 100%;
    /* 修改为全屏宽度 */
    padding: 0 0 140px;
    background: #f7f9fa;
}

#certify .swiper-container {
    width: 100%;
    overflow: visible;
    /* 允许阴影溢出 */
}

#certify .swiper-slide {
    width: 500px !important;
    /* 放大幻灯片尺寸 */
    height: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    /* 添加过渡效果 */
}

/* 修改分页器样式 */
#certify .swiper-pagination-bullet {
    background: #999;
    opacity: 1;
    transition: all 0.3s;
}

#certify .swiper-pagination-bullet-active {
    background: #00aadc;
    transform: scale(1.2);
}

/* 修改导航按钮位置 */
#certify .swiper-button-prev {
    left: 50px;
}

#certify .swiper-button-next {
    right: 50px;
}</pre></body></html>