/* 橙粉色温暖主题 - 优化版 */
body {
    background-color: #FFE9D2;
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", "SimHei", sans-serif;
    color: #333;
    line-height: 1.6;
}

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

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

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

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

a:hover {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

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

.jnfont3 {
    font-size: 12pt;
    text-shadow: 1px 1px 2px #666666;
    color: #FFFFFF;
    font-family: "Microsoft YaHei", "SimHei", sans-serif;
}

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

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

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

.jnfont7 {
    font-size: 12pt;
    color: #D23C09;
    text-shadow: 0 0 12px rgba(210, 60, 9, 0.6);
    font-family: "Microsoft YaHei", "SimHei", sans-serif;
}

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

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

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

.table004 {
    border: 1px dashed #666666;
    word-break: break-all;
    padding: 10px;
    border-radius: 6px;
    background-color: rgba(255, 217, 236, 0.7);
}

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

.input2 {
    height: 36px;
}

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

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

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

.button:hover {
    background: linear-gradient(to bottom, #E68A00, #CC7A00);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

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