
        *{
            margin: 0;
            padding: 0;
        }
        [v-cloak]{
            display: none;
        }
        
        #canvas{
            z-index: 9999;
        }
        h1{
            font-size: 30px;
            font-weight: bold;
            line-height: 100px;
        }
        el-input{
            margin-top: 60px;
        }
        .sealMain{
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .sealNav{
            width: 70%;
            /*height: 50px;*/
            background-color: rgba(242,242,242);
            display: flex;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        @media screen and (max-width: 1100px) {
            .sealNav {
                transform: scale(0.9);
            }
        }
        .sealNav .navItem{
            width: 8.33%;
            height: 100%;
            border: 1px dashed gray;
            text-align: center;
            line-height: 50px;
            cursor: pointer;
            white-space: nowrap;
        }

        .sealNav .navItem02 {
            background-color: rgba(0, 0, 0, .2);
        }
        
        .sealNav .navItem:hover{
            background-color: rgba(0,150,136,.4);
            color: white;
        }
        
        
        .setSealBox{
            width: 70%;
            min-width: 660px;
            height: auto;
            min-height: 250px;
            display: flex;
            justify-content: space-between;
        }
        .setSeal{
            flex: 1;
            /*width: 70%;*/
            /*height: 100%;*/
            border: 4px solid rgba(0,150,136,1);
            border-radius: 8px;
            overflow: hidden;
        }
        .el-tabs{
            width: 100%;
            height: 100%;
        }
        .el-tabs__content{
            width: 100%;
            height: 100%;
        }
        .el-tab-pane{
            height: 80%;
        }
        .sealData{
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            padding: 10px;
        }
        .sealData .sealData_item{
            display: flex;
        }
        .sealData .sealData_item span{
            width: 80px;
            height: 40px;
            line-height: 40px;
            font-size: 14px;
            white-space: nowrap;
        }
        
        .dataTitle{
            width: 16%;
            height: 40px;
            line-height: 40px;
            text-align: center;
            white-space:nowrap;
        }
        
        #sealdiv{
            width: auto;
            height: auto;
            margin-left: 20px;
            border: 4px dashed rgba(0,150,136,1);
            border-radius: 8px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: none;
            overflow: hidden;
        }
        .previewTitle{
            width: 100%;
            height: 40px;
            line-height: 40px;
            background-color: rgba(242,242,242,1);
            font-size: 14px;
            font-weight: bold;
            text-indent: 10px;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .createSeal{
            width: 70%;
            margin-top: 20px;
            display: flex;
        }
        
        .warning{
            width: 70%;
            min-width: 660px;
            height: auto;
            text-indent: 20px;
            background-color: rgba(230,230,230,.8);
            border-left: 4px solid red;
            margin-top: 40px;
            font-size: 14px;
        }
        .shuom{
            width: 70%;
        }
        .keywords{
            background-color: rgba(255,242,127,1);
            color: #FF5722;
            font-weight: 600;
            padding: 2px;
            border-radius: 3px;
            box-shadow: 0 1px 0px 0 rgb(0 0 0 / 20%), 0 0px 0px 0 rgb(0 0 0 / 19%);
        }
        
        
        
        @media screen and (max-width: 1400px) {
            #ad {
                display: none;
            }
            .sealNav .navItem {
                font-size: 12px;
            }
            .warning{
                max-width: 370px;
            }
            /* 针对小屏电脑的功能操作适配 */
            .sealData{
                justify-content: normal !important;
            }
            .sealData > div{
                margin-top: 10px;
            }
        }
        /* 右侧广告动画 */
        #adddddd{
            animation: scale 1.2s ease-in-out infinite alternate;
        }
        @keyframes scale {
            0%{
                transform: scale(1);
            }
            50%{
                transform: scale(.9);
            }
            100%{
                transform: scale(1);
            }
        }
        
        
        table tr td{
            width: 120px;
            color: rgba(255,255,255,1);
        }
        table tr td a{
            color: rgba(255,255,255,.6);
            font-size: 15px;
        }
        .footer{
            width: 100%;
            height: 60px;
            position: absolute;
            background-color: black;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-top: 1px solid rgba(255,255,255,.2);
        }
    