
        /* 新增规章制度&服务指南样式，适配原页面风格 */
        .rule-guide-wrap {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            gap: 20px;
            width: 100%;
        }
        .rule-col, .guide-col {
            width: 48%;
            background: #fff;
            padding: 28px;
            box-sizing: border-box;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .col-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d92121; /* 原页面红色主调 */
        }
        .col-title h3 {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            margin: 0;
        }
        .col-title a {
            font-size: 0.9rem;
            color: #666;
            text-decoration: none;
        }
        .col-title a:hover {
            color: #d92121;
        }
        .rule-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .rule-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }
        .rule-list li:last-child {
            border-bottom: none;
        }
        .rule-list li a {
            color: #333;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .rule-list li a:hover {
            color: #d92121;
        }
        .rule-list li span {
            color: #999;
            font-size: 0.85rem;
        }
        /* 服务指南-图标化样式（匹配截图） */
        .guide-icon-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 0;
            margin: 0;
            list-style: none;
        }
        .guide-icon-item {
            display: flex;
            align-items: center;
            width: calc(50% - 10px); /* 两列布局 */
            margin-bottom: 15px;
        }
        .guide-icon-item .icon-box {
            width: 40px;
            height: 40px;
            margin-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .guide-icon-item .icon-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .guide-icon-item .text {
            font-size: 0.95rem;
            color: #333;
            text-decoration: none;
            transition: color 0.2s;
        }
        .guide-icon-item .text:hover {
            color: #d92121;
        }
        /* 响应式适配 */
        @media (max-width: 768px) {
            .rule-guide-wrap {
                flex-direction: column;
            }
            .rule-col, .guide-col {
                width: 100%;
            }
            .guide-icon-item {
                width: 100%;
            }
        }
        /* 保留原页面样式 */
        .code { position: fixed; left: 50%; top: 41px;display: none; transform: translate(-50%); }
        .code1:hover img{display: block;} 
    
