/*自定义header部分变色和大小*/
header:not(.fixed-header) .custom-header {
    background: rgb(0,0,0,0.3) !important;
}

.fixed-header .custom-header {
    padding: 0 !important;
}

.custom-header {
    transition: all .3s ease-in-out ;
    -webkit-transition: all .3s ease-in-out 
}
/*自定义header部分变色和大小*/

/* customer block animation hover with shadow */
@media (min-width: 769px) {
  .custom-block:hover {
  	z-index: 5;
  	}
  
    .custom-block  .ba-grid-column{
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    .custom-block:hover  .ba-grid-column:hover{
        box-shadow: 0 8px 50px rgba(0, 0, 0, 0.2) !important;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        z-index: 1;
    }
}
/* customer block animation hover with shadow */

/*更改底部li的颜色*/

.licolor li {
list-style: disc;
color: #fff;
font-size:24px;
line-height: 28px;
}


table {    

         display: block;
         margin: 0 auto;

         overflow: scroll;

     }
@media(max-width: 450px) {
table {    
         table-layout: fixed;
         white-space: nowrap;

     }
}


/*给表格总体框架加基本样式*/



 td {

  border:1px #a8a8a8 solid;
   padding:3px;
   text-align:center;
   vertical-align:middle;
}
 th {
  border:1px #c8c8c8 solid;
   padding:3px;
   text-align:center;
   vertical-align:middle;
}

td p {
 text-align:center;
 vertical-align:middle;
}

 /* 下面隔行换表格的背景色 */

tr:nth-of-type(odd){background:#f2f2f2;} 

/* 下面是给表格的顶行加灰色背景色 */


tr.shouhang {
background-color: #282828;
  color: #fff;
}
/* 单独筛选shouhang tr里的P元素并且给白色!important的意思是这个属性权重最高，如果有多个!important就按照所在元素的权重优先级判定  */
tr.shouhang p{
  color: #fff !important;
}

table::-webkit-scrollbar {/*滚动条整体样式*/

   width: 0px;  /*高宽分别对应横竖滚动条的尺寸*/
   height: 5px;

    }

table::-webkit-scrollbar-thumb {/*滚动条里面小方块*/

        border-radius: 2px;

         -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.2);

        background: #fc5a0ac6;

    }

tabele::-webkit-scrollbar-track {/*滚动条里面轨道*/

        -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.5);

        border-radius: 2px;

        background: #bbbbbb;

    }

.bloglist li::marker {
            color: white;
        }