* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    line-height: 0;
    outline: none;
    text-decoration: none;
    color: #333;
    -webkit-text-size-adjust: none;
}

.fittk-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fittk-model-save {
    display: none;
}

.fittk-scroll-bar {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
}

.fittk-scroll-range {
    background: rgba(150, 150, 150, 0.8);
    position: absolute;
    top: 0;
    right: 0;
}

.fittk-scroll-auto {
    font: inherit;
    line-height: inherit;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.fittk-scroll-auto::-webkit-scrollbar {
    display: none;
}

.fittk-shade {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19920618;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    transform-origin: 0 0;
}

.fittk-open-shade {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19920616;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    transform-origin: 0 0;
    opacity: 0;
    transition: opacity 150ms linear;
}

.fittk-open {
    position: fixed;
    z-index: 19920616;
    background: #fff;
    opacity: 0;
    transform: scale(0);
    transform-origin: 50% 50%;
    transition: opacity 150ms linear, transform 150ms ease-in-out;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.fittk-open-title {
    width: 100%;
    overflow: hidden;
    cursor: move;
    user-select: none;
    -ms-user-select: none;
    float: left;
    box-sizing: border-box;
}

.fittk-open-title-text {
    float: left;
    margin-left: 15px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fittk-open-close {
    background: url("/assets/lib/fittk/img/icon.png?t=1") no-repeat 50% 50%;
    background-size: cover;
    float: right;
    cursor: pointer;
}

.fittk-open-scale {
    background: url("/assets/lib/fittk/img/mini.png") no-repeat 50% 50%;
    background-size: cover;
    float: right;
    cursor: pointer;
}

.fittk-mini .fittk-open-scale {
    background-image: url("/assets/lib/fittk/img/resume.png");
}

.fittk-open-context {
    width: 100%;
    position: relative;
    float: left;
}

.fittk-mini .fittk-open-context {
    display: none;
}

.fittk-open-context-text {
    box-sizing: border-box;
    word-break: break-all;
}

.fittk-open-btns {
    width: 100%;
    float: left;
}

.fittk-open-btn {
    float: right;
    margin: 10px 10px 10px 5px;
    padding: 0 16px;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    user-select: none;
    -ms-user-select: none;
    position: relative;
}

.fittk-open-btn:first-of-type {
    margin-right: 10px;
}

.fittk-button {
    color: #fff;
    padding: 0 16px;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    user-select: none;
    -ms-user-select: none;
    position: relative;
}

.fittk-msg {
    position: absolute;
    background: rgba(40, 40, 40, 0.8);
    text-align: center;
    box-sizing: border-box;
    word-break: break-all;
    border-radius: 3px;
    color: #ffffff;
    opacity: 0;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 19930615;
    transition: opacity 150ms linear;
    pointer-events: none;
}

.fittk-toast {
    position: absolute;
    background: #e8e8e8;
    text-align: center;
    box-sizing: border-box;
    color: #000000;
    opacity: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 12%;
    z-index: 19930615;
    transition: opacity 150ms linear;
}

.fittk-load-1 {
    background: url("/assets/lib/fittk/img/loading-1.gif") no-repeat 50% 50%;
    background-size: cover;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.fittk-load-2 {
    background: url("/assets/lib/fittk/img/loading-2.png") no-repeat 50% 50%;
    background-size: cover;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: fittk-rotate-2 1s linear infinite;
}

@keyframes fittk-rotate-2 {
    0% {
        transform: rotate(0deg);
    }
    40% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    90% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fittk-input {
    padding: 0 5px;
    border: none;
    outline: none;
    background: transparent;
    box-sizing: border-box;
    float: left;
}

.fittk-input[readonly] {
    cursor: default;
}

.fittk-input-box {
    position: relative;
}

.fittk-textarea {
    border: none;
    outline: none;
    resize: none;
    padding: 0 5px;
    background: transparent;
    box-sizing: border-box;
    overflow: auto;
    word-break: break-all;
}

.fittk-textarea[readonly] {
    cursor: default;
}

.fittk-editor-input {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 0 5px;
    z-index: 100;
    word-break: break-all;
    overflow: auto;
}

.fittk-date-box {
    position: absolute;
    background: #fff;
    overflow: hidden;
    width: 336px;
    height: 0;
    opacity: 0;
    transform-origin: 0 0;
    transition: opacity 150ms linear, top 150ms linear, bottom 150ms linear;
    z-index: 19920616;
    user-select: none;
    -ms-user-select: none;
    cursor: default;
}

.fittk-date-mobile-box {
    transform-origin: 0 calc(100% - 50px);
}

.fittk-date-box .fittk-scroll-bar {
    display: none !important;
}

.fittk-date-title {
    width: 336px;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    padding-left: 15px;
    text-align: left;
    box-sizing: border-box;
    color: #fff;
    position: relative;
}

.fittk-date-btns {
    width: 336px;
    height: 50px;
    box-sizing: border-box;
    text-align: center;
}

.fittk-date-btn {
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    margin: 10px 5px;
    display: inline-block;
    position: relative;
}

.fittk-date-main {
    width: 336px;
}

.fittk-date-to-year {
    width: 336px;
    box-sizing: border-box;
    display: none;
}

.fittk-date-to-date {
    width: 336px;
    box-sizing: border-box;
    display: none;
}

.fittk-date-to-time {
    width: 336px;
    box-sizing: border-box;
    display: none;
}

.fittk-date-year-and-month {
    width: 336px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    cursor: pointer;
}

.fittk-date-year-and-month-ctrl {
    float: left;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    overflow: hidden;
    position: relative;
}

.fittk-date-year-and-month-ctrl:hover {
    background: #d4d4df;
}

.fittk-date-mobile-box .fittk-date-year-and-month-ctrl:hover {
    background: none;
}

.fittk-date-year-and-month-ctrl:nth-of-type(2):after, .fittk-date-year-and-month-ctrl:nth-last-of-type(2):after {
    content: "";
    width: 10px;
    height: 10px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    box-sizing: border-box;
    transform: rotate(45deg);
    position: absolute;
    top: 15px;
    left: 20px;
}

.fittk-date-year-and-month-ctrl:nth-of-type(1):after, .fittk-date-year-and-month-ctrl:nth-last-of-type(1):after {
    content: "";
    width: 10px;
    height: 10px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    box-sizing: border-box;
    transform: rotate(45deg);
    position: absolute;
    top: 15px;
    left: 15px;
}

.fittk-date-year-and-month-ctrl:nth-of-type(1):before, .fittk-date-year-and-month-ctrl:nth-last-of-type(1):before {
    content: "";
    width: 10px;
    height: 10px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    box-sizing: border-box;
    transform: rotate(45deg);
    position: absolute;
    top: 15px;
    left: 25px;
}

.fittk-date-year-and-month-ctrl:nth-last-of-type(2), .fittk-date-year-and-month-ctrl:nth-last-of-type(1) {
    transform: rotate(180deg);
}

.fittk-date-year-and-month-ctrl-disabled:before, .fittk-date-year-and-month-ctrl-disabled:after {
    border-color: #c4c4c4 !important;
}

.fittk-date-year-and-month-all {
    width: 176px;
    height: 40px;
    cursor: pointer;
    float: left;
    font-size: inherit;
}

.fittk-date-year-and-month-text {
    float: left;
    width: 88px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: inherit;
}

.fittk-date-year-and-month-all:hover {
    background: #d4d4df;
}

.fittk-date-to-date .fittk-date-weeks {
    width: 336px;
    height: 36px;
    font-size: 16px;
}

.fittk-date-to-date .fittk-date-week {
    float: left;
    width: 48px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: inherit;
}

.fittk-date-to-date .fittk-date-dates {
    width: 336px;
    height: 216px;
    font-size: 16px;
}

.fittk-date-to-date .fittk-date-date {
    float: left;
    margin: 4px 6px;
    width: 36px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: inherit;
}

.fittk-date-to-date .fittk-date-date-choose {
    cursor: pointer;
}

.fittk-date-to-date .fittk-date-time {
    width: 336px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
}

.fittk-date-to-date .fittk-date-time:hover {
    background: #d4d4df;
}

.fittk-date-time-text {
    float: left;
    width: 112px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: inherit;
}

.fittk-date-scroll-title {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    float: left;
    text-align: center;
}

.fittk-date-scroll-col {
    float: left;
    height: 120px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.fittk-date-scroll-one {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: inherit;
    cursor: pointer;
}

.fittk-date-scroll-one:hover {
    background: #d4d4df;
    color: #000;
}

.fittk-date-back {
    width: 304px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    text-align: center;
    top: 212px;
    left: 16px;
}

.fittk-date-to-year .fittk-date-back {
    width: 272px;
    left: 32px;
}

.fittk-date-back:hover {
    background: #d4d4df;
}

.fittk-date-back-date {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    font-size: inherit;
}

.fittk-date-disabled {
    color: #c4c4c4 !important;
}

.fittk-select-box {
    position: relative;
    cursor: pointer;
    user-select: none;
    -ms-user-select: none;
}

.fittk-select-value {
    position: relative;
    width: 100%;
}

.fittk-select-input {
    padding: 0 5px;
    position: absolute;
    top: 0;
    left: 0;
}

.fittk-search-value {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    border-bottom: 1px solid #d4d4d4;
    box-sizing: border-box;
}

.fittk-search-input {
    padding: 0 5px;
    position: absolute;
    top: 0;
    left: 0;
    background: #e8e8e8;
}

.fittk-input-readonly, .fittk-input::placeholder, .fittk-textarea::placeholder {
    cursor: default;
    color: #999;
}

.fittk-select-arrow {
    background: url("/assets/lib/fittk/img/arrow.png") 50% 50% no-repeat;
    background-size: 33% 25%;
    position: absolute;
    transition: transform 150ms linear;
}

.fittk-select-options {
    position: absolute;
    opacity: 0;
    transition: opacity 150ms linear, top 150ms linear;
    z-index: 19920616;
    left: 0;
    box-sizing: border-box;
    background: #fff;
}

.fittk-select-options-mobile {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.fittk-select-options-search {
    position: absolute;
    top: 0;
    left: 0;
}

.fittk-select-option {
    color: #333;
    padding-left: 5px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fittk-select-options-mobile .fittk-select-option {
    padding-left: 20px;
}

.fittk-select-options-search .fittk-select-option {
    border-bottom: 1px solid #d4d4d4;
}

.fittk-select-options-search .fittk-select-option:last-of-type {
    border-bottom: none;
}

.fittk-select-options-mobile .fittk-radio-text {
    margin-left: 20px;
    box-sizing: border-box;
    white-space: normal;
}

.fittk-select-options-search .fittk-radio-text {
    margin-left: 20px;
    box-sizing: border-box;
    white-space: normal;
}

.fittk-select-option-placeholder {
    color: #999;
}

.fittk-select-options-search .fittk-select-option-placeholder {
    margin-left: 20px;
}

.fittk-select-option-selected {
    color: #fff;
}

.fittk-select-option:hover {
    background: #d4d4df;
}

.fittk-upload-iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 19910618;
    top: 0;
    left: 0;
}

.fittk-upload-label {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.fittk-upload-input {
    display: none;
}

.fittk-numberStep-box {
    position: relative;
    outline: 1px solid #aaaaaa;
}

.fittk-numberStep-less {
    background: #f2f2f2;
    float: left;
    position: relative;
}

.fittk-numberStep-input {
    float: left;
    text-align: center;
}

.fittk-numberStep-more {
    background: #f2f2f2;
    float: left;
    position: relative;
}

.fittk-numberStep-less:before, .fittk-numberStep-more:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #666666;
}

.fittk-numberStep-more:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 50%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #666666;
}

.fittk-numberStep-disabled:before, .fittk-numberStep-disabled:after {
    background: #d4d4d4;
}

.fittk-range-box {
    position: relative;
}

.fittk-range-bar {
    background: #e4e4e4;
    position: absolute;
    cursor: pointer;
}

.fittk-range-bar-done {
    position: absolute;
    cursor: pointer;
}

.fittk-range-item {
    background: #fafaff;
    position: absolute;
    border-radius: 2px;
    box-shadow: 0 0 1px 1px #888;
    cursor: pointer;
}

.fittk-transparent {
    background: url("/assets/lib/fittk/img/transparent.png") 0 0;
    background-size: 20px 20px;
}

.fittk-color-box {
    margin: 2px;
    width: 360px;
    height: 432px;
    position: absolute;
    background: #fff;
    transform-origin: 0 0;
    z-index: 19920616;
    opacity: 0;
    transition: opacity 150ms linear, top 150ms linear;
    user-select: none;
    -ms-user-select: none;
    cursor: default;
}

.fittk-color-title {
    width: 360px;
    height: 40px;
    line-height: 40px;
    padding-left: 15px;
    font-size: 18px;
    box-sizing: border-box;
    text-align: left;
    color: #fff;
}

.fittk-color-background {
    width: 320px;
    height: 255px;
    margin: 15px 20px 10px;
    position: relative;
}

.fittk-color-space {
    width: 320px;
    height: 255px;
    cursor: pointer;
    position: relative;
}

.fittk-color-basic {
    width: 320px;
    height: 255px;
    background: rgb(255, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
}

.fittk-color-white {
    width: 320px;
    height: 255px;
    background: linear-gradient(90deg, #fff, transparent);
    position: absolute;
    top: 0;
    left: 0;
}

.fittk-color-black {
    width: 320px;
    height: 255px;
    background: linear-gradient(0deg, #000, transparent);
    position: absolute;
    top: 0;
    left: 0;
}

.fittk-color-choose {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 1px 1px #888;
    position: absolute;
    top: -8px;
    left: 312px;
}

.fittk-color-btn {
    position: absolute;
    top: 392px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
}

.fittk-color-option {
    width: 320px;
    height: 30px;
    margin: 5px 20px;
}

.fittk-color-label {
    width: 100px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    float: left;
    text-align: left;
    margin-right: 120px;
}

.fittk-color-sign-1 {
    width: 20px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    float: left;
    text-align: left;
}

.fittk-color-sign-2 {
    width: 20px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    float: left;
    text-align: right;
}

.fittk-color-input {
    width: 80px;
    height: 30px;
    float: left;
    margin: 0;
}

.fittk-color-range {
    width: 320px;
    height: 14px;
    margin: 8px 0;
    float: left;
    background: #ffffff;
}

.fittk-gray {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.fittk-arc-one {
    font: inherit;
    color: inherit;
    position: absolute;
    top: 0;
}

.fittk-roller {
    font: inherit;
    color: inherit;
    position: absolute;
}

.fittk-radio-one {
    display: inline-block;
    cursor: pointer;
    user-select: none;
    -ms-user-select: none;
    white-space: nowrap;
}

.fittk-radio-disabled {
    cursor: not-allowed;
}

.fittk-radio-item {
    border-radius: 100%;
    position: relative;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
}

.fittk-radio-inner {
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: scale(0);
    transition: transform 100ms linear;
}

.fittk-radio-one.checked .fittk-radio-inner {
    transform: scale(1);
}

.fittk-checkbox-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
}

.fittk-checkbox-inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: scale(0);
    transition: transform 100ms linear;
}

.fittk-radio-one.checked .fittk-checkbox-inner {
    transform: scale(1);
}

.fittk-radio-text {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    white-space: normal;
}

.fittk-radio-disabled .fittk-radio-text {
    color: #999999;
}

.fittk-keyboard-box {
    width: 1500px;
    height: 500px;
    position: absolute;
    bottom: -650px;
    user-select: none;
    -ms-user-select: none;
    background-size: cover !important;
    z-index: 19940618;
    opacity: 0;
    transform-origin: 50% 100%;
    transition: opacity 150ms linear, bottom 150ms linear;
}

.fittk-keyboard-pinyin {
    width: 1500px;
    height: 150px;
    display: none;
}

.fittk-keyboard-pinyin-ctrls {
    width: 1500px;
    height: 75px;
}

.fittk-keyboard-pinyin-letter {
    width: 1350px;
    height: 75px;
    font-size: 30px;
    line-height: 75px;
    box-sizing: border-box;
    padding-left: 25px;
    float: left;
}

.fittk-keyboard-pinyin-list {
    width: 1500px;
    height: 75px;
    float: left;
}

.fittk-keyboard-pinyin-one {
    width: 120px;
    height: 75px;
    float: left;
    font-size: 30px;
    line-height: 75px;
    box-sizing: border-box;
    padding-left: 25px;
    cursor: pointer;
}

.fittk-keyboard-pinyin-ctrl {
    float: left;
    width: 75px;
    height: 75px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.fittk-keyboard-pinyin-ctrl.disabled {
    cursor: default;
}

.fittk-keyboard-pinyin-ctrl:nth-last-of-type(1) {
    transform: rotate(180deg);
}

.fittk-keyboard-pinyin-ctrl:after {
    content: "";
    width: 25px;
    height: 25px;
    box-sizing: border-box;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    position: absolute;
    top: 25px;
    left: 30px;
}

.fittk-keyboard-pinyin-ctrl.disabled:after {
    border-color: #c4c4c4;
}

.fittk-keyboard-items {
    width: 1500px;
    height: 500px;
}

.fittk-keyboard-item {
    width: 100px;
    height: 100px;
    float: left;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    z-index: 100;
}

.fittk-keyboard-item-focus {
    background: #d4d4df;
    z-index: 0;
}

.fittk-keyboard-item-lock-point {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 13px;
    right: 25%;
    border-radius: 5px;
    background: #000;
    display: none;
}

.fittk-keyboard-item-hold {
    background: #d4d4df;
    z-index: 0;
}

.fittk-keyboard-item-usual {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 36px;
    line-height: 100px;
    text-align: center;
}

.fittk-keyboard-item-lower {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 36px;
    line-height: 100px;
    text-align: center;
    color: #000;
}

.fittk-keyboard-item-upper {
    width: 50%;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    color: #999;
}

.fittk-keyboard-item-usual-lang {
    display: inline-block;
    font-size: 24px;
    position: relative;
    top: 3px;
    line-height: 100px;
}

.fittk-keyboard-special-item {
    width: 100px;
    height: 100px;
    box-shadow: 0 0 1px 1px #fff;
    float: left;
    position: relative;
    cursor: pointer;
    display: none;
}

.fittk-keyboard-box-en .fittk-keyboard-item-cn {
    display: none;
}

.fittk-keyboard-box-cn .fittk-keyboard-item-en {
    display: none;
}

.fittk-keyboard-box-upper .fittk-keyboard-item-upper {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 36px;
    line-height: 100px;
    text-align: center;
    color: #000;
}

.fittk-keyboard-box-upper .fittk-keyboard-item-lower {
    width: 50%;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    color: #999;
}

.fittk-keyboard-item-lock .fittk-keyboard-item-lock-point {
    display: block;
}

.fittk-keyboard-box-special .fittk-keyboard-item {
    display: none;
}

.fittk-keyboard-box-special .fittk-keyboard-special-item {
    display: block;
}

.fittk-keyboard-input-box {
    position: relative;
    user-select: none;
    -ms-user-select: none;
    overflow: hidden;
}

.fittk-keyboard-input {
    cursor: text;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 0 5px;
    z-index: 100;
}

.fittk-keyboard-input.hide {
    z-index: -100000;
}

.fittk-keyboard-input:after {
    content: '';
    display: block;
    clear: both;
}

.fittk-keyboard-placeHolder {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 5px;
    box-sizing: border-box;
    color: #666;
}

.fittk-keyboard-input-range {
    width: 1px;
    background: #000;
    animation: fittk-blink 1000ms linear infinite;
    float: left;
}

@keyframes fittk-blink {
    0% {
        opacity: 1;
    }
    49% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fittk-keyboard-input-span {
    font-size: inherit;
    line-height: inherit;
    float: left;
    position: relative;
}

.fittk-keyboard-input-span.password {
    width: 10px;
}

.fittk-keyboard-input-span.password:after {
    content: '';
    width: 6px;
    height: 6px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 100%;
    background: #000;
}

.fittk-keyboard-input-br {
    font-size: 0;
    line-height: inherit;
    float: left;
    clear: both;
}
