body::-webkit-scrollbar {
    display: none
}

p {
    margin: 0;
}

[v-cloak] {
    display: none;
}

#app {
    text-align: center;
    padding: 10px 50px 80px;
}

.p-action {
    margin: 20px auto;
    max-width: 1100px;
    width: 100%;
    font-size: 35px;
    text-align: center;
    font-weight: bold;
}

.p-reset,
.p-copy-type,
.p-change-background,
.p-show-all {
    position: absolute;
    top: 38px;
    right: 100px;
    padding: 8px 20px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #aaaaaa;
    background-color: #3D8AC7;
    opacity: 1;
    transition: 0.3s all;
}

.p-reset:hover,
.p-copy-type:hover,
.p-change-background:hover,
.p-show-all:hover {
    opacity: 0.9;
}

.p-copy-type {
    left: 100px;
    right: auto;
}

.p-show-all {
    right: 245px;
}

.p-change-background {
    left: 260px;
    right: auto;
}

.p-github,
.p-other {
    position: fixed;
    right: 50px;
    bottom: 70px;
    background-color: #eff3f6;
    background-image: linear-gradient(-180deg, #fafbfc, #eff3f6 90%);
    color: #24292e;
    border: 1px solid rgba(27, 31, 35, .2);
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 6px 12px;
}

.p-help {
    position: fixed;
    right: 50px;
    top: 50px;
    width: 30px;
    height: 30px;
    color: #666666;
    z-index: 2;
    line-height: 30px;
    font-weight: bolder;
    border-radius: 50%;
    border: 1px solid rgba(27, 31, 35, .2);
    cursor: pointer;
    background-color: #eff3f6;
    background-image: linear-gradient(-180deg, #fafbfc, #eff3f6 90%);
}

.p-github:hover,
.p-other:hover,
.p-help {
    opacity: 0.9;
}

.p-other {
    bottom: 30px;
}

/*字体文件载入*/
.p-input-container {
    display: flex;
    padding-top: 50px;
}

.p-input-container .line {
    vertical-align: top;
    width: 5px;
    height: 400px;
    transform-origin: top;
    background-repeat: repeat;
    background-image: url(icon-dotted-y.png);
}

.p-input-container .url-box,
.file-box {
    height: 300px;
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.p-input-container .url-box input {
    margin-bottom: 30px;
    display: block;
    width: 430px;
    padding: 10px;
    font-size: 24px;
    border-radius: 4px;
    box-shadow: none;
    color: #444444;
    border: 1px solid #cccccc;
}

.p-input-container .input-box,
.url-box div {
    position: relative;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding: 10px 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #aaaaaa;
    background-color: #3D8AC7;
    opacity: 1;
    transition: 0.3s all;
}

.p-input-container .input-box:hover,
.url-box div:hover {
    opacity: 0.9;
}

.p-input-container .input-box input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.p-input-container .url-box div {
    width: 390px;
}

/*icon 列表样式*/
.p-icon-item {
    margin: 6px;
    padding: 10px 6px;
    display: inline-block;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #dddddd;
    overflow: hidden;
    white-space: pre-line;
    box-sizing: border-box;
    transition-duration: .4s;
    transition-property: background, box-shadow;
}

.p-icon-item-background-0 {
    background-image: url(png-background.png);
}

.p-icon-item-background-1 {
    background-color: #FCFCFC;
}

.p-icon-item-background-2 {
    background-color: #EBEBEB;
}

.p-icon-item:hover {
    background: #ffffff;
    border-color: transparent;
    box-shadow: 0 5px 18px 0 rgba(0, 0, 0, 0.3);
}

.p-icon-item:active {
    color: white;
    background: #7BD784;
}

.p-icon-item .iconfont {
    margin: 0 20px;
    padding: 6px;
    border-radius: 4px;
    font-size: 28px;
}

.p-icon-item .name {
    font-size: 12px;
    font-weight: bold;
}

.p-icon-item .value {
    font-size: 12px;
    font-weight: bold;
}

.p-icon-item svg {
    width: 36px;
    height: 36px;
}

footer {
    text-align: center;
    font-size: 12px;
    color: #CCCCCC;
}