/* ========== 快速链接 section6 样式 ========== */

/* 容器 */
.section6 {
    padding-bottom: 55px;
    background-color: #97240f;
    padding-top: 59px;
}

.s6-c {
    margin-top: 0px;
}

/* 每个链接项 */
.s6-c ul li a {
    display: block;
    text-align: center;
    padding-top: 15px;
    position: relative;
}

/* 图标圆框 */
.s6-c ul li a .s6-icon {
    width: 91px;
    height: 91px;
    /* background: #fff; */
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* 图标外圈装饰环（齿轮状） */
.s6-c ul li a .s6-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98px;
    height: 98px;
    background: url(../assets3/bottomico/s6-k1.png) no-repeat;
    background-size: 100% 100%;
}

/* 链接之间的装饰线（菱形虚线） */
.s6-c ul li a .s6-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -84px;
    width: 63px;
    height: 26px;
    background: url(../assets3/bottomico/s6-x.png) no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}

/* 第一个链接不显示左侧装饰线 */
.s6-c ul li:first-child a .s6-icon::after {
    display: none;
}

/* 奇数项装饰线旋转 -45deg */
.s6-c ul li:nth-child(odd) a .s6-icon::after {
    transform: translateY(-50%) rotate(-45deg);
}

/* 图标图片 */
.s6-c ul li a .s6-icon img {
    display: block;
    max-width: 40px;
    max-height: 42px;
}

/* 文字标题 */
.s6-c ul li a h3 {
    margin-top: 33px;
}

.s6-c ul li a h3 span {
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

/* 标题左右装饰小横线 */
.s6-c ul li a h3 span::before {
    content: "";
    display: block;
    margin-right: 8px;
    width: 27px;
    height: 6px;
    background: url(../assets3/bottomico/s6-dl.png) no-repeat;
    background-size: 100% auto;
}
.tit-c h2{
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tit-c h2 span{
	width: 30px;
	height: 30px;
	background-color: rgb(255 255 255 / 30%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	
}
.tit-c h2 span i{
	width: 15px;
	height:15px;
	background-color: rgb(255 255 255 / 50%);
	border-radius: 50%;
	display: block;
}
.s6-s1{
	margin-right: 20px;
}
.s6-s2{
	margin-left: 20px;
}
.s6-c ul li a h3 span::after {
    content: "";
    display: block;
    margin-left: 8px;
    width: 27px;
    height: 6px;
    background: url(../assets3/bottomico/s6-dr.png) no-repeat;
    background-size: 100% auto;
}

/* ========== hover 悬停效果 ========== */
.s6-c ul li:hover a .s6-icon {
    background: linear-gradient(135deg, rgb(255 255 255 / 32%), rgb(255 255 255 / 12%) 84%);
}

.s6-c ul li:hover a .s6-icon::before {
    background-image: url(../assets3/bottomico/s6-k2.png);
    animation: circle1 4s linear infinite;
}

.s6-c ul li:hover a h3 span {
    color: #fff;
}

/* ========== 动画关键帧 ========== */
@keyframes circle1 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ========== 响应式（平板） ========== */
@media screen and (max-width: 1024px) {
    .section6 {
        padding-bottom: 40px;
    }
    .s6-c {
        margin-top: 30px;
    }
    .s6-c ul li a h3 span {
        font-size: 16px;
    }
    .s6-c ul li a .s6-icon::after {
        width: 60px;
        height: 21px;
        left: -84px;
    }
}

/* ========== 响应式（手机） ========== */
@media screen and (max-width: 768px) {
    .section6 {
        padding-top: 42px;
        padding-bottom: 36px;
    }

    .s6-c {
        margin-top: 8px;
    }

    .s6-c > ul {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px 4px;
    }

    .s6-c ul li {
        min-width: 0;
    }

    .s6-c ul li a {
        padding-top: 5px;
    }

    .s6-c ul li a .s6-icon {
        width: 62px;
        height: 62px;
    }

    .s6-c ul li a .s6-icon::before {
        width: 68px;
        height: 68px;
    }

    .s6-c ul li a .s6-icon img {
        max-width: 29px;
        max-height: 30px;
    }

    .s6-c ul li a h3 {
        margin-top: 18px;
    }

    .s6-c ul li a h3 span {
        font-size: 13px;
    }

    .s6-c ul li a h3 span::before,
    .s6-c ul li a h3 span::after {
        display: none;
    }

    .s6-c ul li a .s6-icon::after {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .s6-c ul li a .s6-icon::after {
        display: none;
    }
}
/* 基础重置 & 容器 */
* { padding:0; margin:0; box-sizing:border-box; }
li { list-style:none; }
/*a { text-decoration:none; color:#333; }*/

/* 容器 */
.wp {
    width: 1600px;
    max-width: 94%;
    margin: 0 auto;
}

/* 标题通用样式（如果你需要保留标题栏） */
.title { position:relative; text-align:center; }
.tit-c { display:inline-block; font-family:'sySong'; }
.tit-c h3 { font-size:34px; font-weight:bold; line-height:1; color:#232323; display:flex; align-items:center; }
.tit-c p { font-size:18px; font-weight:bold; line-height:1; text-transform:uppercase; color:#999999; margin-top:10px; }
.more { position:absolute; top:50%; transform:translateY(-50%); right:0; }
