@font-face {
    			font-family: "kitty";
    			src: url("../font/kitty.ttf");
    		}
    		*{
    			font-family: arial;
    			font-size: 1.2vw;
    		}
    		body{
    			margin: 0;
    		}
    		a{
    			text-decoration: none;
    		}
    		#app{
    		    position: relative;
    			padding: 2vw 5vw;
    		}
    		#app>.top>.ico{
    			display: inline-block;
    			width: 3vw;
    			height: 3vw;
    			background-size: 100%;
    			border-radius: 1vw;
    			margin: 0 .5vw;
    		}
    		#app>.top>.left{
    			font-family: 'kitty';
    			font-size: 3vw;
    			background-image: -webkit-linear-gradient(270deg, rgb(104, 34, 139), rgb(0, 107, 180));
    			-webkit-background-clip: text;
    			-webkit-text-fill-color: transparent; 
    			padding: 0;
    		}
    		#app>.top>.bottom{
    			border: solid 0.01vw rgb(164, 164, 164);
    		}
    		div.radio{
    		    width: 100%;
    		    height: 3vw;
                display: flex;
                margin-bottom: 1vw;
            }
            div.radioIcon{
                width: 3vw;
                height: 3vw;
                background: url(../img/radio.png);
                background-repeat: no-repeat;
                background-size: 100% 100%;
            }
            div.radioMg{
                width: auto;
                height: 3vw;
                overflow: hidden;
                position: relative;
                margin-left: 1vw;
            }
            .radioMg > ul{
                margin: 0;
                padding: 0;
                position: relative;
                top: -5vw;
                transition: all .5s;
                list-style: none;
            }
            .radioMg > ul li{
                margin: 0;
                padding: 0;
                font-size: 2vw;
                position: relative;
                color: red;
            }