@charset "utf-8";
/* CSS Document */




body {
    margin: 20px;
  }


  .content{    
    max-width: 1000px;
    margin: 0 auto;    
  }

  .languageChoose{
    text-align: right;
  }

  .tableAngleRounded{
    width: 94%;
    border-radius: 7px;
    overflow: hidden;    
  }

.remarkDiv{
  display: none;
}

  li {
    line-height: 23px;
  }

table {
    width: 100%;
    border-collapse: collapse;      
  }


  table th {   
    background-color: rgb(194, 193, 193);
  }

  table th, table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    text-align: center;  
  }



  /* In the third,fourth row, the mouse hover turns into a hand  */
  table td:nth-child(3) span:hover,table td:nth-child(4) span:hover {    
    cursor: pointer;
    color: #ff0000;    
    
  }

  table th:nth-child(5),table td:nth-child(5) {    
    text-align: left; 
  }
   


  /* 设置奇数行的背景色 */
  table tr:nth-child(odd) {
    background-color: #ffffff;
  }

  /* 设置偶数行的背景色 */
  table tr:nth-child(even) {
    background-color: #f2f2f2;
  }

