﻿
BODY {
    padding-top: 0;
    padding-bottom: 0;
    MARGIN: 0px;
    FONT-SIZE: 12pt;
    LINE-HEIGHT: 150%;
    FONT-FAMILY: "Verdana", "宋体", "Helvetica", "sans-serif"
}


button, input[type="button"], input[type="reset"], input[type="submit"] {
    background-color: #007BFF; /* 背景颜色 */
    color: white; /* 文字颜色 */
    border: 1px solid #007BFF; /* 边框颜色和宽度 */
    padding: 5px 10px; /* 内边距 */
    border-radius: 5px; /* 边框圆角 */
    font-size: 12pt; /* 字体大小 */
    transition: background-color 0.3s ease; /* 平滑过渡效果 */
}
button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    background-color:darkblue; /* 鼠标悬停时的背景颜色 */
}
button:active, input[type="button"]:active, input[type="reset"]:active, input[type="submit"]:active {
    background-color:#b200ff; /* 点击时的背景颜色 */
}
button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus {
    border-color: #007bff; /* 获得焦点时的边框颜色 */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); /* 获得焦点时的阴影效果 */
}


/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center
}

P {
    MARGIN: 0px
}

TABLE {	FONT-SIZE: 12pt; LINE-HEIGHT: 150%; FONT-FAMILY: "Verdana", "宋体", "Helvetica", "sans-serif"}

INPUT {
    FONT-SIZE: 12pt;
    FONT-FAMILY: "Verdana", "宋体", "Helvetica", "sans-serif";
    color: darkblue;
    /*text-align:center;*/
}

SELECT {
    FONT-SIZE: 12pt;
    FONT-FAMILY: "Verdana", "宋体", "Helvetica", "sans-serif";
    color: darkblue;
}

TEXTAREA {
    FONT-SIZE: 12pt;
    FONT-FAMILY: "Verdana", "宋体", "Helvetica", "sans-serif"
}

/*超链接样式*/
A:link {    COLOR: darkblue;    TEXT-DECORATION: none}
A:visited {	COLOR: #036;        TEXT-DECORATION: none}
A:hover {   COLOR: #f60;        TEXT-DECORATION: underline;    font-size: 110%;}
A.menuChild:link {	COLOR: #036; TEXT-DECORATION: none}
A.menuChild:visited {	COLOR: #036; TEXT-DECORATION: none}
A.menuChild:hover {	COLOR: #f60; TEXT-DECORATION: underline}
A.menuParent:link {	COLOR: #000; TEXT-DECORATION: none}
A.menuParent:visited {	COLOR: #000; TEXT-DECORATION: none}
A.menuParent:hover {	COLOR: #f60; TEXT-DECORATION: none}

/*表格样式*/
.mytable {
    /*表格总的样式*/
    border-collapse: collapse;
    margin: 12px 0;
    font-size: 0.9em;
    min-width: 400px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
    .mytable th {
        /*标题行的样式*/
        padding: 3px 4px;
        border-bottom: 1px solid #dddddd;
        background-color: #009879;
        color: #ffffff;
    }
    .mytable td {
        /*单元格的样式*/
        padding: 3px 4px;
        border-left: 1px solid #dddddd;
        border-bottom: 1px solid #dddddd;
        font-size: 12pt;
    }
    .mytable tr {
        background-color: #f3f3f3; /*奇数行的背景色*/
    }
        .mytable tr:nth-of-type(even) {
            background-color: #fffff0; /*偶数行的背景色*/
        }

