/* 土黄绿色自然主题 - 优化版 */
body {
    background-color: #777777;
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", "SimHei", "Songti SC", serif;
    color: #eee;
    line-height: 1.6;
}

td {
    font-family: "Microsoft YaHei", "SimHei", "Songti SC", serif;
    font-size: 12pt;
    height: 35px;
    color: #eee;
}

select {
    font-family: "Microsoft YaHei", "SimHei", "Songti SC", serif;
    font-size: 12pt;
    background-color: #E1E1C4;
    border: 1px solid #808158;
    border-radius: 4px;
    padding: 6px 10px;
    color: #333;
    transition: all 0.3s ease;
}

p {
    font-size: 12pt;
    margin: 0.8em 0;
    color: #eee;
}

/* 链接样式 */
a:link,
a:visited {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
    background-color: #E1E1C4;
    padding: 2px 4px;
    border-radius: 2px;
}

/* 文字效果类 */
.jnfont1 {
    font-size: 12pt;
    text-shadow: 1px 1px 2px #cccccc;
    color: #666666;
    font-family: "Microsoft YaHei", "SimHei", "Songti SC", serif;
}

.jnfont2 {
    font-size: 12pt;
    text-shadow: 1px 1px 2px #e1e2ff;
    color: #4F4F00;
    font-family: "Microsoft YaHei", "SimHei", "Songti SC", serif;
}

.jnfont3 {
    font-size: 12pt;
    text-shadow: 1px 1px 2px #999999;
    color: #333333;
    font-family: "Microsoft YaHei", "SimHei", "Songti SC", serif;
}

.jnfont4 {
    font-size: 12pt;
    text-shadow: 1px 1px 2px #000000;
    color: #CCCCCC;
    font-family: "Microsoft YaHei", "SimHei", "Songti SC", serif;
}

.jnfont5 {
    font-size: 12pt;
    color: #000000;
    font-weight: 500;
    font-family: "Microsoft YaHei", "SimHei", "Songti SC", serif;
}

.jnfont6 {
    font-size: 12pt;
    text-shadow: 1px 1px 2px #999999;
    color: #333333;
    font-family: "Microsoft YaHei", "SimHei", "Songti SC", serif;
}

.jnfont7 {
    font-size: 12pt;
    color: #494A33;
    text-shadow: 0 0 12px rgba(73, 74, 51, 0.6);
    font-family: "Microsoft YaHei", "SimHei", "Songti SC", serif;
}

/* 表格样式 */
.table001 {
    font-size: 12pt;
    background-color: #B8B999;
    border-collapse: collapse;
    color: #333;
}

.table002 {
    font-size: 12pt;
    background-color: #E1E1C4;
    border-collapse: collapse;
    color: #333;
}

.table003 {
    font-size: 12pt;
    background-color: #808158;
    border-collapse: collapse;
    color: white;
}

.table004 {
    border: 1px dashed #eeeeee;
    word-break: break-all;
    padding: 10px;
    border-radius: 6px;
    background-color: rgba(225, 225, 196, 0.8);
    color: #333;
}

/* 表单控件 */
.input1,
.input2 {
    font-size: 12pt;
    border: 1px solid #808158;
    background-color: #E1E1C4;
    border-radius: 4px;
    padding: 8px 12px;
    font-family: "Microsoft YaHei", "SimHei", "Songti SC", serif;
    transition: all 0.3s ease;
    color: #333;
}

.input2 {
    height: 36px;
}

.testarea1 {
    border: 1px solid #808158;
    font-size: 12pt;
    background-color: #E1E1C4;
    font-family: "Microsoft YaHei", "SimHei", "Songti SC", serif;
    border-radius: 6px;
    padding: 10px;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
    color: #333;
}

/* 焦点状态 */
select:focus,
.input1:focus,
.input2:focus,
.testarea1:focus {
    border-color: #494A33;
    outline: none;
    box-shadow: 0 0 8px rgba(73, 74, 51, 0.4);
    background-color: #FFFFFF;
}

/* 按钮样式 */
.button {
    background: linear-gradient(to bottom, #808158, #696A47);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 12pt;
    font-family: "Microsoft YaHei", "SimHei", "Songti SC", serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background: linear-gradient(to bottom, #696A47, #525335);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(73, 74, 51, 0.3);
}

/* 响应式 */
@media (max-width: 768px) {
    td, select, p, .jnfont1, .jnfont2, .jnfont3, .jnfont4, 
    .jnfont5, .jnfont6, .jnfont7, .input1, .input2, .testarea1 {
        font-size: 11pt;
    }
}