            /* =========================================
               全局
            ========================================== */

            #widgetContainer35068 *,
            #widgetContainer35068 *::before,
            #widgetContainer35068 *::after {

                box-sizing:border-box;

            }

            #widgetContainer35068 .list-module-box-for-backupsite {

                width:100%;

                margin:0;

                padding:0;

            }

            #widgetContainer35068 .list-module-title-for-backupsite {

                width:100%;

                text-align:center;

                font-weight:bold;

            }
.marge-dom {
    width: 100%;
}
            /* =========================================
               整个板块
            ========================================== */

            #widgetContainer35068 .luntan-banner {

                position:relative;

                width:140%;
                left:-2.3%;
                max-width:720px;

                margin: 0px auto;

                padding:2px;

                overflow:hidden;

                background:
                    linear-gradient(
                        135deg,
                        #f7fbff 0%,
                        #ffffff 35%,
                        #fff8fd 70%,
                        #fffaf4 100%
                    );

                border:2px solid #4169ff;

                border-radius:16px;

                font-family:
                    "Microsoft YaHei",
                    "微软雅黑",
                    Arial,
                    sans-serif;

                box-shadow:
                    0 2px 7px rgba(49,80,255,.18),
                    inset 0 0 10px rgba(255,255,255,.9);

            }

            /* =========================================
               顶部彩色线
            ========================================== */

            #widgetContainer35068 .luntan-banner::before {

                content:"";

                position:absolute;

                top:0;

                left:0;

                width:100%;

                height:4px;

                background:
                    linear-gradient(
                        90deg,
                        #176cff,
                        #703cff,
                        #e625aa,
                        #ff315d,
                        #ff9500
                    );

            }

            /* =========================================
               顶部标题总区域
            ========================================== */

            #widgetContainer35068 .relay-title {

                width:100%;

                min-height:48px;

                display:flex;

                align-items:center;

                justify-content:center;

                flex-wrap:nowrap;

                white-space:nowrap;

                overflow:hidden;

                text-align:center;

                padding:5px 2px 2px;

                font-size:clamp(23px,4.05vw,30px);

                font-weight:900;

                line-height:1;

            }

            /* =========================================
               左右两半
            ========================================== */

            #widgetContainer35068 .relay-left,
            #widgetContainer35068 .relay-right {

                display:inline-flex;

                align-items:center;

                justify-content:center;

                flex-wrap:nowrap;

                white-space:nowrap;

            }

            /* =========================================
               每一个字 / 数字 / 箭头
            ========================================== */

            #widgetContainer35068 .relay-title i {

                position:relative;

                display:inline-block;

                flex:none;

                margin:0;

                padding:0;

                font-style:normal;

                font-weight:900;

                line-height:1;

                transform-origin:center center;

                will-change:
                    transform,
                    opacity,
                    filter;

                -webkit-font-smoothing:antialiased;

                -moz-osx-font-smoothing:grayscale;

                text-rendering:optimizeLegibility;

            }

            /* =========================================
               左边：
               每一个字符依次接力
            ========================================== */

            #widgetContainer35068 .relay-left i {

                animation:
                    sxRelayRight 3.3s ease-in-out infinite,
                    sxRelayFlashLeft 3.3s linear infinite;

                animation-delay:
                    calc(var(--i) * .115s);

            }

            /* =========================================
               右边：
               从最右侧◀开始往中间接力
            ========================================== */

            #widgetContainer35068 .relay-right i {

                animation:
                    sxRelayLeft 3.3s ease-in-out infinite,
                    sxRelayFlashRight 3.3s linear infinite;

                animation-delay:
                    calc(var(--i) * .115s);

            }

            /* =========================================
               左边颜色
            ========================================== */

            #widgetContainer35068 .relay-arrow-left {

                color:#176cff;

                font-size:.62em;

                letter-spacing:-1px;

            }

            #widgetContainer35068 .relay-follow {

                color:#1764f5;

            }

            #widgetContainer35068 .relay-bracket {

                color:#e9218e;

            }

            #widgetContainer35068 .relay-number {

                color:#ff176e;

            }

            /* =========================================
               右边颜色
            ========================================== */

            #widgetContainer35068 .relay-lottery {

                color:#7539ec;

            }

            #widgetContainer35068 .relay-bracket-right {

                color:#e9218e;

            }

            #widgetContainer35068 .relay-money {

                color:#ff1717;

            }

            #widgetContainer35068 .relay-arrow-right {

                color:#ff267d;

                font-size:.62em;

                letter-spacing:-1px;

            }

            /* =========================================
               左边接力动画
               每个字符：
               向上跳 + 向右推进
            ========================================== */

            @keyframes sxRelayRight {

                0%,
                8% {

                    transform:
                        translateX(-2px)
                        translateY(0)
                        scale(1);

                    opacity:.82;

                }

                13% {

                    transform:
                        translateX(-1px)
                        translateY(-3px)
                        scale(1.06);

                    opacity:.95;

                }

                18% {

                    transform:
                        translateX(1px)
                        translateY(-6px)
                        scale(1.17);

                    opacity:1;

                }

                23% {

                    transform:
                        translateX(3px)
                        translateY(-2px)
                        scale(1.08);

                    opacity:1;

                }

                28% {

                    transform:
                        translateX(5px)
                        translateY(0)
                        scale(1.03);

                    opacity:.95;

                }

                34% {

                    transform:
                        translateX(2px)
                        translateY(-2px)
                        scale(1.06);

                    opacity:.92;

                }

                41% {

                    transform:
                        translateX(0)
                        translateY(0)
                        scale(1);

                    opacity:1;

                }

                100% {

                    transform:
                        translateX(0)
                        translateY(0)
                        scale(1);

                    opacity:1;

                }

            }

            /* =========================================
               右边接力动画
               每个字符：
               向上跳 + 向左推进
            ========================================== */

            @keyframes sxRelayLeft {

                0%,
                8% {

                    transform:
                        translateX(2px)
                        translateY(0)
                        scale(1);

                    opacity:.82;

                }

                13% {

                    transform:
                        translateX(1px)
                        translateY(-3px)
                        scale(1.06);

                    opacity:.95;

                }

                18% {

                    transform:
                        translateX(-1px)
                        translateY(-6px)
                        scale(1.17);

                    opacity:1;

                }

                23% {

                    transform:
                        translateX(-3px)
                        translateY(-2px)
                        scale(1.08);

                    opacity:1;

                }

                28% {

                    transform:
                        translateX(-5px)
                        translateY(0)
                        scale(1.03);

                    opacity:.95;

                }

                34% {

                    transform:
                        translateX(-2px)
                        translateY(-2px)
                        scale(1.06);

                    opacity:.92;

                }

                41% {

                    transform:
                        translateX(0)
                        translateY(0)
                        scale(1);

                    opacity:1;

                }

                100% {

                    transform:
                        translateX(0)
                        translateY(0)
                        scale(1);

                    opacity:1;

                }

            }

            /* =========================================
               左边接力时发光
            ========================================== */

            @keyframes sxRelayFlashLeft {

                0%,
                10% {

                    filter:none;

                    text-shadow:none;

                }

                18% {

                    filter:brightness(1.25);

                    text-shadow:
                        0 0 3px currentColor,
                        0 0 6px currentColor;

                }

                28% {

                    filter:brightness(1.10);

                    text-shadow:
                        0 0 2px currentColor;

                }

                40%,
                100% {

                    filter:none;

                    text-shadow:none;

                }

            }

            /* =========================================
               右边接力时发光
            ========================================== */

            @keyframes sxRelayFlashRight {

                0%,
                10% {

                    filter:none;

                    text-shadow:none;

                }

                18% {

                    filter:brightness(1.25);

                    text-shadow:
                        0 0 3px currentColor,
                        0 0 6px currentColor;

                }

                28% {

                    filter:brightness(1.10);

                    text-shadow:
                        0 0 2px currentColor;

                }

                40%,
                100% {

                    filter:none;

                    text-shadow:none;

                }

            }

            /* =========================================
               标题下方装饰线
            ========================================== */

            #widgetContainer35068 .luntan-title-line {

                width:70%;

                height:14px;

                margin:0 auto 3px;

                display:flex;

                align-items:center;

                justify-content:center;

                gap:7px;

            }

            #widgetContainer35068 .luntan-title-line span {

                display:block;

                flex:1;

                height:2px;

                background:
                    linear-gradient(
                        90deg,
                        transparent,
                        #5b36f5
                    );

            }

            #widgetContainer35068 .luntan-title-line span:last-child {

                background:
                    linear-gradient(
                        90deg,
                        #d92bbd,
                        transparent
                    );

            }

            #widgetContainer35068 .luntan-title-line b {

                color:#7137ee;

                font-size:15px;

                line-height:1;

            }

            /* =========================================
               两排布局
            ========================================== */

            #widgetContainer35068 .luntan-banner-body {

                width:100%;

                display:flex;

                gap:6px;

                margin-bottom:6px;

            }

            #widgetContainer35068 .luntan-banner-body:last-child {

                margin-bottom:0;

            }

            /* =========================================
               四个网址卡片
            ========================================== */

            #widgetContainer35068 .luntan-banner-item {

                position:relative;

                flex:1;

                min-width:0;

                min-height:54px;

                display:flex;

                align-items:center;

                justify-content:center;

                overflow:hidden;

                padding:3px 38px 3px 46px;

                background:#fff;

                border:2px solid;

                border-radius:13px;

                box-shadow:
                    0 2px 5px rgba(0,0,0,.10),
                    inset 0 0 8px rgba(255,255,255,.9);

                transition:
                    transform .2s ease,
                    box-shadow .2s ease;

            }

            /* =========================================
               第一格 蓝色
            ========================================== */

            #widgetContainer35068 .item-blue {

                border-color:#1468ff;

                background:
                    linear-gradient(
                        100deg,
                        #edf5ff,
                        #ffffff 42%,
                        #f7fbff
                    );

            }

            /* =========================================
               第二格 紫色
            ========================================== */

            #widgetContainer35068 .item-purple {

                border-color:#9934ef;

                background:
                    linear-gradient(
                        100deg,
                        #f8efff,
                        #ffffff 42%,
                        #fcf7ff
                    );

            }

            /* =========================================
               第三格 粉红色
            ========================================== */

            #widgetContainer35068 .item-pink {

                border-color:#ff2988;

                background:
                    linear-gradient(
                        100deg,
                        #fff0f7,
                        #ffffff 42%,
                        #fff7fb
                    );

            }

            /* =========================================
               第四格 橙色
            ========================================== */

            #widgetContainer35068 .item-orange {

                border-color:#ff8a00;

                background:
                    linear-gradient(
                        100deg,
                        #fff5e9,
                        #ffffff 42%,
                        #fffaf4
                    );

            }

            /* =========================================
               左边小图标
            ========================================== */

            #widgetContainer35068 .luntan-icon {

                position:absolute;

                left:7px;

                top:50%;

                transform:translateY(-50%);

                width:34px;

                height:34px;

                display:flex;

                align-items:center;

                justify-content:center;

                border-radius:50%;

                color:#fff;

                font-size:21px;

                line-height:1;

                font-weight:900;

                text-shadow:
                    0 1px 2px rgba(0,0,0,.15);

                box-shadow:
                    inset 0 1px 2px rgba(255,255,255,.5),
                    0 1px 4px rgba(0,0,0,.15);

            }

            #widgetContainer35068 .item-blue .luntan-icon {

                background:
                    linear-gradient(
                        135deg,
                        #176cff,
                        #2442d9
                    );

            }

            #widgetContainer35068 .item-purple .luntan-icon {

                background:
                    linear-gradient(
                        135deg,
                        #b336f3,
                        #7033e7
                    );

            }

            #widgetContainer35068 .item-pink .luntan-icon {

                background:
                    linear-gradient(
                        135deg,
                        #ff45a1,
                        #ed176c
                    );

            }

            #widgetContainer35068 .item-orange .luntan-icon {

                background:
                    linear-gradient(
                        135deg,
                        #ffad24,
                        #ff6513
                    );

            }

            /* =========================================
               776600.com
            ========================================== */

            #widgetContainer35068 .luntan-domain {

                display:inline-flex;

                align-items:center;

                justify-content:center;

                color:#0866f5;

                font-weight:900;

                font-size:clamp(23px,4vw,29px);

                line-height:1;

                white-space:nowrap;

                letter-spacing:-0.5px;

                -webkit-font-smoothing:antialiased;

                -moz-osx-font-smoothing:grayscale;

                text-rendering:optimizeLegibility;

            }

            /* 66 */

            #widgetContainer35068 .domain-green {

                color:#00a43a;

            }

            /* 00.com */

            #widgetContainer35068 .domain-red {

                color:#ff1010;

            }

            /* =========================================
               右边圆形箭头
            ========================================== */

            #widgetContainer35068 .luntan-go {

                position:absolute;

                right:8px;

                top:50%;

                transform:translateY(-50%);

                width:25px;

                height:25px;

                display:flex;

                align-items:center;

                justify-content:center;

                border-radius:50%;

                color:#fff;

                font-size:26px;

                font-weight:900;

                line-height:20px;

            }

            #widgetContainer35068 .item-blue .luntan-go {

                background:#2868ef;

            }

            #widgetContainer35068 .item-purple .luntan-go {

                background:#9639e9;

            }

            #widgetContainer35068 .item-pink .luntan-go {

                background:#f72d85;

            }

            #widgetContainer35068 .item-orange .luntan-go {

                background:#ff831d;

            }

            /* =========================================
               鼠标经过效果
            ========================================== */

            #widgetContainer35068 .luntan-banner-item:hover {

                transform:translateY(-1px);

                box-shadow:
                    0 4px 9px rgba(45,70,180,.18),
                    inset 0 0 8px rgba(255,255,255,.9);

            }

            /* =========================================
               手机 ≤600px
            ========================================== */

            @media screen and (max-width:600px) {

                #widgetContainer35068 .luntan-banner {

                    padding:3px;

                    border-width:1.5px;

                    border-radius:10px;

                }

                #widgetContainer35068 .relay-title {

                    min-height:40px;

                    font-size:clamp(17px,5vw,23px);

                    padding:4px 1px 1px;

                }

                #widgetContainer35068 .relay-arrow-left,
                #widgetContainer35068 .relay-arrow-right {

                    font-size:.55em;

                }

                #widgetContainer35068 .luntan-title-line {

                    width:75%;

                    height:10px;

                    margin-bottom:2px;

                }

                #widgetContainer35068 .luntan-title-line b {

                    font-size:12px;

                }

                #widgetContainer35068 .luntan-banner-body {

                    gap:3px;

                    margin-bottom:3px;

                }

                #widgetContainer35068 .luntan-banner-item {

                    min-height:45px;

                    padding:
                        2px
                        27px
                        2px
                        34px;

                    border-width:1.5px;

                    border-radius:9px;

                }

                #widgetContainer35068 .luntan-icon {

                    left:4px;

                    width:27px;

                    height:27px;

                    font-size:17px;

                }

                #widgetContainer35068 .luntan-domain {

                    font-size:clamp(19px,5.4vw,25px);

                }

                #widgetContainer35068 .luntan-go {

                    right:4px;

                    width:20px;

                    height:20px;

                    font-size:21px;

                }

                /* ================================
                   手机上跳幅缩小
                ================================= */

                @keyframes sxRelayRight {

                    0%,
                    8% {

                        transform:
                            translateX(-1px)
                            translateY(0)
                            scale(1);

                        opacity:.85;

                    }

                    18% {

                        transform:
                            translateX(0)
                            translateY(-4px)
                            scale(1.11);

                        opacity:1;

                    }

                    27% {

                        transform:
                            translateX(3px)
                            translateY(0)
                            scale(1.03);

                        opacity:1;

                    }

                    36% {

                        transform:
                            translateX(1px)
                            translateY(-1px)
                            scale(1.04);

                        opacity:.95;

                    }

                    44%,
                    100% {

                        transform:
                            translateX(0)
                            translateY(0)
                            scale(1);

                        opacity:1;

                    }

                }

                @keyframes sxRelayLeft {

                    0%,
                    8% {

                        transform:
                            translateX(1px)
                            translateY(0)
                            scale(1);

                        opacity:.85;

                    }

                    18% {

                        transform:
                            translateX(0)
                            translateY(-4px)
                            scale(1.11);

                        opacity:1;

                    }

                    27% {

                        transform:
                            translateX(-3px)
                            translateY(0)
                            scale(1.03);

                        opacity:1;

                    }

                    36% {

                        transform:
                            translateX(-1px)
                            translateY(-1px)
                            scale(1.04);

                        opacity:.95;

                    }

                    44%,
                    100% {

                        transform:
                            translateX(0)
                            translateY(0)
                            scale(1);

                        opacity:1;

                    }

                }

            }

            /* =========================================
               小屏手机 ≤380px
            ========================================== */

            @media screen and (max-width:380px) {

                #widgetContainer35068 .relay-title {

                    min-height:37px;

                    font-size:16.5px;

                    letter-spacing:-.15px;

                }

                #widgetContainer35068 .relay-arrow-left,
                #widgetContainer35068 .relay-arrow-right {

                    font-size:.50em;

                }

                #widgetContainer35068 .luntan-banner-item {

                    min-height:42px;

                    padding:
                        2px
                        23px
                        2px
                        29px;

                }

                #widgetContainer35068 .luntan-icon {

                    left:3px;

                    width:23px;

                    height:23px;

                    font-size:14px;

                }

                #widgetContainer35068 .luntan-domain {

                    font-size:19px;

                    letter-spacing:-1px;

                }

                #widgetContainer35068 .luntan-go {

                    right:3px;

                    width:18px;

                    height:18px;

                    font-size:18px;

                }

            }

            /* =========================================
               超小屏 ≤340px
            ========================================== */

            @media screen and (max-width:340px) {

                #widgetContainer35068 .relay-title {

                    min-height:35px;

                    font-size:14.5px;

                    letter-spacing:-.35px;

                }

                /*
                   原代码这里会隐藏箭头，
                   现在改成始终显示
                */

                #widgetContainer35068 .relay-arrow-left,
                #widgetContainer35068 .relay-arrow-right {

                    display:inline-block !important;

                    font-size:.46em;

                }

                #widgetContainer35068 .luntan-banner-item {

                    min-height:40px;

                    padding:
                        2px
                        20px
                        2px
                        25px;

                }

                #widgetContainer35068 .luntan-icon {

                    width:20px;

                    height:20px;

                    font-size:12px;

                }

                #widgetContainer35068 .luntan-domain {

                    font-size:17px;

                }

                #widgetContainer35068 .luntan-go {

                    width:16px;

                    height:16px;

                    font-size:16px;

                }

            }
      @media screen and (max-width:600px) {
    #widgetContainer35068 .luntan-banner {
        position: relative;
        width: 105%;
        margin-left: -6px;
        margin-right: -16px;
        max-width: none;
        padding:2px;
    }
}
/* ========== 平板 601px ~ 1024px ========== */
@media screen and (min-width:601px) and (max-width:1024px) {
    #widgetContainer35068 .luntan-banner {
        position:relative;
        width:125%;
        left:-1.8%;
        max-width:720px;
        margin:0 auto;
        padding:2px;
    }
    /* 平板微调尺寸 */
    #widgetContainer35068 .relay-title {
        font-size:clamp(18px,4vw,22px);
    }
    #widgetContainer35068 .luntan-banner-item {
        min-height:48px;
    }
    #widgetContainer35068 .luntan-domain {
        font-size:clamp(18px,4vw,23px);
    }
}

