﻿/*
    *此文件为表格的公共样式
    */
* {
    font-size: 1.5rem;
    margin: 0px;
    padding: 0px;
    font-family: 'Microsoft YaHei';
}

p {
    margin: 0px;
    padding: 2px 0px;
}

a:link, a:visited, a:hover, a:active {
    /*color: #FFF;*/
    text-decoration: none;
}

table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

tr {
    height: 40px;
}

th {
    text-align: center;
    background: #eff3f5;
    color: #34495e;
    font-size: 14px;
}

td {
    border-bottom: 1px solid #d1dde4;
    text-align: center;
    height: 40px;
    /*margin-right: 18px;*/
}

table a {
    padding: 3px 20px;
    background: #5ac994;
    color: #FFF;
    border-radius: 5px;
    cursor: pointer;
}

    table a:hover {
        opacity: 0.8;
    }
