/* 点滅 */
.blinking{
    -webkit-animation:blink 2s ease-in-out infinite alternate;
    -moz-animation:blink 2s ease-in-out infinite alternate;
    animation:blink 2s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

#txtWord {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    border: 1px solid #000;
    background: #fff;
    box-sizing: border-box;
    padding: 0px 20px;
    height: 45px;
    line-height: 45px;
    text-align: left;
    font-size: 15px;
    width: 60%;
}

.tool {
    width: 100%;
    border-collapse: collapse;
}
.tool th {
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    background: #000;
    padding: 5px;
    border-left: 20px solid #fff;
}

.tool td {
    padding: 15px 20px;
    font-size: 15px;
    line-height: 1.8;
    border-left: 20px solid #fff;
}

.tool tr th:nth-child(1),
.tool tr td:nth-child(1) {
    text-align: center;
    width: 5%;
    border-left: none;
}

.tool tr td:nth-child(2) {
/*    text-align: center; */
    width: 95%;
}

.tool tr:nth-child(odd) td {
    background: #f1f1f1;
}

@media screen and (max-width: 768px) {
    .tool th {
        font-size: 13px;
        border-left: 2px solid #fff;
    }

    .tool td {
        padding: 10px;
        font-size: 13px;
        line-height: 1.6;
        border-left: 2px solid #fff;
    }
}
@media screen and (max-width: 480px) {
    .tool th {
        font-size: 11px;
        border-left: 1px solid #fff;
    }
    .tool td {
        padding: 10px 5px;
        font-size: 12px;
        border-left: 1px solid #fff;
    }
}

/* table2 */
.table2 {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.table2 th {
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  background: #000;
  padding: 5px;
  border-left: 20px solid #fff;
}
.table2 td {
  padding: 15px 20px;
  font-size: 15px;
  line-height: 1.8;
  border-left: 20px solid #fff;
}
.table2 tr th:nth-child(1),
.table2 tr td:nth-child(1) {
  text-align: center;
  width: 20%;
  border-left: none;
}
.table2 tr td:nth-child(2) {
  text-align: center;
  width: 12%;
}
.table2 tr td:nth-child(4) {
  text-align: center;
  width: 12%;
}
.table2 tr:nth-child(odd) td {
  background: #f1f1f1;
}
.table2 tr td:nth-child(4) input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  border: 1px solid #000;
  background: #fff;
  box-sizing: border-box;
  padding: 5px 10px;
  text-align: center;
  font-size: 15px;
  line-height: 1.2;
  width: 90%;
}

@media screen and (max-width: 928px) {
  .table2 th {
    font-size: 13px;
    border-left: 2px solid #fff;
  }

  .table2 td {
    padding: 10px;
    font-size: 13px;
    line-height: 1.6;
    border-left: 2px solid #fff;
  }
  .table2 tr td:nth-child(4) input {
    padding: 5px;
    font-size: 13px;
    line-height: 1.2;
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .table2 th {
    font-size: 11px;
    border-left: 1px solid #fff;
  }
  .table2 td {
    padding: 10px 5px;
    font-size: 12px;
    border-left: 1px solid #fff;
  }
  .table2 tr td:nth-child(4) input {
    padding: 5px 0px;
    font-size: 12px;
    width: 100%;
  }
}

/* fm */
#fm {
  text-align: center;
}
#txtURL, #txtURL2 {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  border: 1px solid #000;
  background: #fff;
  box-sizing: border-box;
  padding: 0px 20px;
  height: 45px;
  line-height: 45px;
  text-align: left;
  font-size: 15px;
  width: 60%;
}

#fm .button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  background: #b12a2a;
  color: #fff;
  font-size: 15px;
  line-height: 45px;
  height: 45px;
  text-align: center;
  width: 200px;
  font-weight: bold;
  cursor: pointer;
}
#fm .button:disabled {
  color: #666;
  background: #910a0a;
}

#fm .button:hover {
  background: #cb5656;
}

::-webkit-input-placeholder {
  color: #aaa;
}

:-ms-input-placeholder {
  color: #aaa;
}

::placeholder {
  color: #aaa
    }

@media screen and (max-width: 928px) {
  #txtURL {
    font-size: 14px;
    width: 50%;
  }
  #fm .button {
    font-size: 14px;
    width: 150px;
  }
}

@media screen and (max-width: 480px) {
  #txtURL {
    padding: 0px 10px;
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    width: 100%;
  }
  #fm .button {
    font-size: 13px;
    height: 40px;
    line-height: 40px;
    width: 200px;
    margin-top: 10px;
  }
}

.open:hover {
  cursor: pointer;
}

.fa-plus:before{content:"\f067"}
.fa-question-circle:before{content:"\f059"}
.fa-trash-alt:before{content:"\f2ed"}
.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}
.fa-2x{font-size:2em}
.fa-10x{font-size:10em}
.fa-angle-left:before{content:"\f104"}
.fa-angle-right:before{content:"\f105"}
.fa-file-download:before{content:"\f56d"}
