 /* 版权声明页面样式 */
        .copyright-container {
            padding: 30px 0;
        }
        .copyright-container .center {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .copyright-container h1 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 36px;
            color: #333;
            position: relative;
            padding-bottom: 15px;
        }
        .copyright-container h1:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #0099ff;
        }
        .copyright-section {
            background: #f9f9f9;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .copyright-section h2 {
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
            position: relative;
            padding-left: 15px;
        }
        .copyright-section h2:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 24px;
            background-color: #0099ff;
        }
        .copyright-section p {
            line-height: 1.8;
            margin-bottom: 15px;
            color: #555;
        }
        .copyright-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .copyright-section ul li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        .copyright-section ul li:before {
            content: "•";
            color: #0099ff;
            position: absolute;
            left: 0;
        }
        .copyright-section a {
            color: #0099ff;
            text-decoration: none;
        }
        .copyright-section a:hover {
            text-decoration: underline;
        }
        .notice-box {
            background: #fff0f0;
            border-left: 4px solid #ff4d4f;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 4px;
        }
        .notice-box h3 {
            color: #ff4d4f;
            margin-bottom: 10px;
        }
        .notice-box p {
            margin-bottom: 0;
        }
        .contact-info {
            background: #e6f7ff;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
        }
        .contact-info h3 {
            color: #0099ff;
            margin-bottom: 15px;
        }
        .contact-info p {
            margin-bottom: 8px;
            color: #333;
        }
        .contact-info a {
            color: #0099ff;
            text-decoration: none;
        }
        .contact-info a:hover {
            text-decoration: underline;
        }