/*-------------------------------------------------
 �ݰ¡����ȥܥ���
-------------------------------------------------*/
#box ul {
  list-style: none;
}

#box
li {
  display: inline-block;
  width: 350px;
  height: 20px;
  background-color: none;
  padding: 50px
  margin: 10px;
  box-shadow: none; /* �����ǽ���ͤ����ꤷ�ʤ���Edge��IE��ư���ʤ��褦��*/
  animation: blink 1s linear infinite;
}
#box
li:nth-of-type(1) {
  animation-delay: 0.5s;
}

#box
li:nth-of-type(2) {
  animation-delay: 1s;
}

* {
  box-sizing: border-box;
}