@CHARSET "UTF-8";
body {
    font-family: Microsoft Yahei, sans-serif
}
#content{
	width: 100%;
	max-width: 1350px;
	margin: auto;
}
.svgpath {
    height: 100%;
    width: 100%;
    margin: 5px auto;
    font-size: 15px;
    width: 100%;
    margin-bottom: 10px;
    padding: 0px 10px;
    text-align: left
}

.svgpath h2 {
    font-size: 24px;
    margin: 5px 0;
    text-align: center;
}

:root {
    --primary1: #263238;
    --primary2: #37474F;
    --primary3: #B0BEC5;
    --secondary1: #039BE5;
    --secondary2: #0288D1
}

.ad-Root {
    width: 100%;
    min-height: 100vh;
	height: 1500px;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.ad-Title {
    padding: 1.5rem;
    background: var(--primary2);
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #fff
}

.ad-App {
    width: 100%;
    flex: 1;
    display: flex
}

.ad-Preview {
    flex: 1;
    display: flex;
    flex-direction: column
}

.ad-Canvas {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ECEFF1
}

.ad-Pathstrings {
    display: flex;
    height: 500px;
}

.ad-Textarea {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: .5rem;
    background: var(--primary2);
    border-right: 1px solid #263238;
}

.ad-Textarea-label {
    margin-bottom: .5rem;
    text-transform: uppercase;
    font-size: .65rem;
    font-family: "Open Sans", sans-serif;
    color: var(--primary3);
    letter-spacing: .05rem
}

.ad-Textarea:last-child .ad-Textarea-label {
    font-weight: bold;
    color: var(--secondary1)
}

.ad-Textarea-input {
    width: 100%;
    flex: 1;
    background: none;
    border: none;
    outline: 0;
    resize: none;
    line-height: 1.4;
    font-family: "Fira Mono", monospace;
    font-size: .7rem;
    color: #fff
}

.ad-SVG {
    //background: #fff
}

.ad-Path {
    fill: none;
    stroke-width: 2px
}

.ad-Path--input {
    stroke: var(--primary3)
}

.ad-Path--output {
    stroke: var(--secondary1)
}

.ad-Transforms {
    display: flex;
    flex-direction: column;
    width: 22rem;
    background: var(--primary1)
}

.ad-Transforms-add {
    display: flex;
    padding: 1.5rem
}

.ad-Transforms-select {
    flex: 1;
    padding: .8rem 1.2rem;
    margin-right: .5rem;
    background: var(--primary2);
    border: none;
    border-radius: 2px;
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    font-size: .8rem;
    color: #fff
}

.ad-Button {
    padding: .8rem 1.2rem;
    background: var(--secondary1);
    border: none;
    border-radius: 2px;
    outline: 0;
    cursor: pointer;
    transition: background .2s;
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    font-size: .8rem;
    color: #fff
}

.ad-Button:focus,
.ad-Button:hover {
    background: var(--secondary2)
}

.ad-Foot {
    margin-top: auto;
    padding: 1.5rem;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: .75rem;
    color: #fff
}

.ad-Foot a {
    text-decoration: none;
    color: var(--secondary1)
}

.ad-Transform {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--secondary1);
    font-family: "Fira Mono", monospace;
    font-size: .8rem;
    color: #E1F5FE
}

.ad-Transform:nth-child(2n) {
    background: var(--secondary2)
}

.ad-Transform-input {
    width: 3rem;
    border: none;
    background: none;
    border-bottom: 1px dashed transparent;
    outline: 0;
    transition: border .2s;
    text-align: center;
    font-size: inherit;
    font-family: inherit;
    color: #fff
}

.ad-Transform-input::-moz-selection {
    background: #fff;
    color: var(--secondary1)
}

.ad-Transform-input::selection {
    background: #fff;
    color: var(--secondary1)
}

.ad-Transform-input:focus {
    border-bottom-color: #fff
}

.ad-Transform-rm {
    margin-left: auto;
    background: none;
    border: none;
    border-radius: none;
    cursor: pointer;
    transition: color .2s;
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    font-size: .6rem;
    color: #E1F5FE
}

.ad-Transform-rm:focus,
.ad-Transform-rm:hover {
    color: #fff
}
::-webkit-scrollbar {/*滚动条整体样式*/
        width: 8px;     /*高宽分别对应横竖滚动条的尺寸*/
        height: 8px;
}
::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
        border-radius: 4px;
         -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.8);
        background: #999;
}

::-webkit-scrollbar-track {/*滚动条里面轨道*/
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.8);
        border-radius: 4px;
        background: #EDEDED;
}