.site-logo-img a:hover{text-decoration: none !important; background:none;}
/*页脚*/
.footer-block-text li {
	color: #000 !important;}
.site-footer .menu-link,.site-footer .widget-title,.site-footer .cat-item a,.site-footer .ast-footer-copyright,.site-footer .widget_text{color:#000 !important;}
.site-footer .wp-block-image img{width:180px;}
.site-footer .footer-widget-area-inner a {color: #000 !important;
}
.site-footer .footer-widget-area-inner a:hover {color:#0067ff !important;
}
        .footer-block-group {
            display: flex;
            margin: 0 -30px;
            padding-bottom: 60px;
            flex-wrap: wrap;
            justify-content: flex-end;
            background-color: #fff; /* 背景颜色为白色 */
            color: #000; /* 文字颜色为黑色 */
            padding: 30px;
        }
        
        .footer-block-kf {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .footer-block-kf .img-icon {
            width: 40px;
            height: 40px;
            border: 1px solid #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
            transition: all .5s ease-in-out;
        }

        .footer-block-kf svg {
            width: 100%;
            height: auto;
            fill: currentColor;
        }

        .footer-block-kf li a {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 0;
            background: 0 0;
            align-items: center;
            color: inherit;
        }

        .footer-block-kf li a:hover .img-icon {
            transform: translateY(-5px);
        }

        .footer-block-text {
            font-size: 14px;
            line-height: 1.4;
            color: inherit;
        }

        .footer-block-text > * {
            margin-bottom: 15px;
        }

        .footer-block-text > :last-child {
            margin-bottom: 0;
        }

        .footer-block-text li {
            font-size: 14px;
            line-height: 1.4;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-block-text li a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: inherit;
        }

        .footer-block-text li svg {
            max-width: 20px;
            height: auto;
            fill: currentColor;
        }

        a {
            color: inherit;
            padding: 2px 0;
            background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
            background-position: 0 95%;
            background-size: 0 1.5px;
            background-repeat: no-repeat;
            transition: background-size .25s cubic-bezier(.785, .135, .15, .86) 0s;
        }

        a:hover {
            background-size: 100% 1.5px;
        }

        /* 复制成功的消息提示样式 */
        .copy-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 16px;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .copy-message.show {
            opacity: 1;
        }

        /* 自定义模态框样式 */
        .custom-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            justify-content: center;
            align-items: center;
        }

        .custom-modal img {
            max-width: 100%;
            max-height: 100%;
            display: block;
        }

        .custom-modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease-in-out;
        }

        .custom-modal-close:hover,
        .custom-modal-close:focus {
            color: #bbb;
            text-decoration: none;
        }

        @media screen and (max-width:767px) {
            .footer-block-group {
                margin: 0;
                justify-content: space-between;
                padding-bottom: 30px;
            }
        }

