﻿.my-table-section {
    margin: 0px auto -95px;
    width: 1270px;
    position: relative;
    left: -5px;
    top: 10px;
    box-sizing: border-box;
    z-index: 9999;
}
.my-table-section table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    box-sizing: border-box;
}
.my-table-section table thead th{
    background: #e6e6e6;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    color: #666666;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 1px solid #dbdbdb;
}
/* 每一行默认颜色 */
.my-table-section table tbody tr{
    background-color: #c6fff5;
}
/* 每一行鼠标悬浮高亮颜色 */
.my-table-section table tbody tr:hover {
    background-color: #bdffc3;
}

/* 每一行套黄默认颜色 */
.my-table-section table tbody tr.taohuang{
    background: yellow;
}
/* 每一行套黄悬鼠标浮高亮默认颜色 */
.my-table-section table tbody tr.taohuang:hover{
    background: #fff!important;
}

/* 每一行的默认样式 高度可调 */
.my-table-section table tbody td{
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 14px;
    color: #424242;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 1px #ffd200 solid;
}

/**
* 每列的颜色 
* 如果需要加粗 font-weight: bold;
*/
/* 游戏名称 */
.my-table-section table tbody tr td:nth-child(1),
.my-table-section table tbody tr td:nth-child(1) a{
    color: #e61313;
}
/* 开服时间 */
.my-table-section table tbody tr td:nth-child(2){
    color: #333;
}
/* 充值比例 */
.my-table-section table tbody tr td:nth-child(3) a{
    color: #e61313;
    font-weight: bold;
}
/* 游戏特色 */
.my-table-section table tbody tr td:nth-child(4){
    color: #333;
}
/* 淘宝下单 */
.my-table-section table tbody tr td:nth-child(5),
.my-table-section table tbody tr td:nth-child(5) a{
    color: #EE6A50;
    font-weight: bold;
}
/* 开始游戏 */
.my-table-section table tbody tr td:nth-child(6),
.my-table-section table tbody tr td:nth-child(6) a{
    color: #e61313;
    font-weight: bold;
}
/* 攻略 */
.my-table-section table tbody tr td:nth-child(7),
.my-table-section table tbody tr td:nth-child(7) a{
    color: #0000FF;
    font-weight: bold;
}


.my-table-section table tbody tr.taohuang{
    background: yellow;
}

