        /* 信任标志样式 */
        .trustedsite-trustmark {
            width: 120px;
            height: 50px;
            display: inline-block;
            background-size: contain;
            background-position: center top;
            background-repeat: no-repeat;
            cursor: pointer;
        }

        /* 模态框容器 */
        #trustedsite-tm-verify {
            position: fixed;
            background: #e6e7e8;
            z-index: 1000004;
            width: 400px;
            height: 560px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: none;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        /* 遮罩层样式 */
        #trustedsite-tm-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(20, 20, 20, 0.95);
            z-index: 1000003;
            display: none;
            cursor: pointer;
        }

        /* 关闭按钮样式 - 修复版 */
        #trustedsite-tm-close {
            position: absolute;
            right: 0px;
            top: 0px;
            width: 12px;
            height: 12px;
            cursor: pointer;
            background: url('https://cdn.ywxi.net/static/img/modal-close.png') no-repeat center;
            background-size: 15px;
            z-index: 1000005;
            background-color: #121317bf;
            border: none;
            transition: opacity 0.2s;
        }

        #trustedsite-tm-close:hover {
            opacity: 0.8;
        }