        
                @font-face {
            font-family: dm;
            src: url(./Dymon-ShouXieTi.otf)format('opentype');
            font-weight: 100;
        }
        .daohanglan{
            /*上面标题栏*/
            position: fixed;
            top: 0px;
            left: 50%;
            transform: translateX(-50%);
            width: 93%;
            max-width: 9000px;
            background-color: rgba(136, 218, 250, 0.4);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border-radius: 0px 0px 16px 16px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 16px 0;
            text-align: center;
            z-index: 999;
        }
        .ocpng{
            /*oc图片的格式*/
            width: 15%;
            height: auto;
            min-width: 200px;
            max-width: 500px;
            object-fit: contain;
            
            
        }
        .ocrq{
            /*图片和图片下方方框的大容器*/
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 150px;
            padding: 20px 0;
        }
        .bankuai{
            /*oc图片旁边的板块*/
            height: 90%;
            width: auto;
            max-width: 5000px;
            margin: 60px 60px;
            padding: 30px;
            background-color: rgba(126,247, 210, 0.5);
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
            border-radius: 8px;

        }
        .fenggefu{
            /*底部文字，版权所有的那个分割线*/
            width: 100%;
            height: 3px;
            background-color: rgb(0, 0, 0);
        }
        .dbwzhz1{
            /*底部文字盒子*/
            text-align: center;
            color: rgb(78, 78, 78)
        }
        .dbwzhz1 a {
            text-decoration: none;
            text-align: center;
            color: rgb(78, 78, 78);
            font-size: 80%;


        }
        .fubiaoti{
            /*副标题，比如 联系方式，日志。*/
            text-align: center;
        }
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body{
            background-color: #dcf5e8;
            padding-top: 80px;
            line-height: 1.8;
            padding: 0 0 15px 0;
        }
        .lxfsdhz{
            /*联系方式那一行的主体大盒子*/
            width: 90%;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            justify-content: center;
            margin-bottom: 80px;

        }
        .lxfstw{
            /*联系方式图文盒子*/
            width: 60px;
            text-align: center;
            text-decoration: none;
            font-display: block;
            transition: all 0.2s ease;
            outline: none;
            -webkiit-tap-highlight-color: transparent;
            cursor: pointer;
        }
        .lxfstw img{
            /*联系方式图片*/
            width: 100%;
            height: auto;
            display: block;
        }
        .lxfstw:hover{
            /*鼠标悬浮*/
            transform: scale(1.05);
        }
        .lxfstw:active{
            /*鼠标按下*/
            transform: scale(0.98);
        }
        
        .lxfswz{
            /*联系方式文字*/
            font-family: dm666;
            margin-top: 8px;
            font-size: 14px;
            color: #000000;
        }
        .dbtip{
            /*底部提示条样式*/
            position: fixed;
            left: 50%;
            bottom: 30px;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 14px;
            z-index: 999;

            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .dbtip.show{
            /*提示显示状态*/
            opacity: 1;
            visibility: visible;
        }
        .click-img {
            /*点击动画图片样式*/
            position: fixed;
            width: 45px;
            height: 45px;
            transform: translate(-50%, -50%);
            animation: clickAnim 1s ease-out forwards;
            z-index: 9999;
        }
        .wenzhangbiaoti{
            min-width: 150px;
            max-width: 350px;
            width: 40%;
            height: 100px;
            margin: 30px auto;
            display: flex;
        }
        .wenzhangbiaoti img{
            width: 100%;
            height: auto;
        }
        .wenzhangbiaoti a{
            text-decoration: none;
            color: #000000;
        }
        a:hover{
            color: #0066ff;
        }
        @keyframes clickAnim {
            /*点击动画图片关键帧*/
            0%{
                opacity: 1;
                transform: translate(-50%, -50%) scale(0.5) rotate(var(--rotate));
            }
            100%{
                opacity: 0;
                transform: translate(-50%, -150%) scale(1.2) rotate(var(--rotate));
            }
        }
