```css
@charset "utf-8";

* { margin: 0; padding: 0; word-break: break-all; word-wrap: break-word; }

html {
    background: url(../images/bg.jpg) top center #fff4df;
    background-attachment: fixed;
}

body {
    width: 100%;
    max-width: 800px;
    min-height: 100vh;
    margin: 0 auto;
    color: #49351c;
    box-sizing: border-box;
    font-size: 18px;
    font-family: '微软雅黑', Arial, Helvetica, sans-serif;
    background: #fffdf8;
    overflow-x: hidden;
}

input, select, button, textarea {
    margin: 0;
    padding: 0;
    vertical-align: middle;
    font-size: 100%;
    color: inherit;
    border: 0;
    font-family: inherit;
    outline: none;
    resize: none;
}

input[type="text"] { -webkit-appearance: none; }
ol, ul { list-style: none; }
img { max-width: 100%; vertical-align: middle; }
a { text-decoration: none; color: inherit; }
:focus { outline: 0; }
table { border-collapse: collapse; border-spacing: 0; line-height: 1.5; }

@media screen and (max-width:800px){
    body { font-size: 15px; }
}

.img100 img { width: 100%; }
.fontb { font-weight: bold; }

.temaad {
    padding: 5px 3px;
    text-align: center;
    font-weight: bold;
    color: #a75f00;
    background: linear-gradient(#fffdf5, #ffedbc);
    border-bottom: 1px solid #edc869;
}

.temaad font { color: #e52b15; }

.header { background: #fffdf8; }

.header_link {
    background: #fff7e6;
    border-bottom: 1px solid #f1d18b;
}

.header_link ul {
    display: flex;
    justify-content: center;
    font-weight: bold;
    color: #c77800;
}

.header_link ul li a {
    display: block;
    text-align: center;
    line-height: 50px;
    padding: 0 40px;
}

.header_link ul li a:hover {
    color: #fff;
    background: #e99a13;
}

@media screen and (max-width:800px){
    .header_link ul li { width: 25%; }
    .header_link ul li a { line-height: 40px; padding: 0; }
}

.header .nav {
    padding: 5px;
    color: #fff;
    font-size: 16px;
    border-top: 1px solid #f1d18b;
    background: #fffaf0;
}

.header .nav ul { display: flex; flex-wrap: wrap; }

.header .nav ul li {
    width: 20%;
    padding: 4px;
    box-sizing: border-box;
}

.header .nav ul li a {
    line-height: 30px;
    display: block;
    text-align: center;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(135deg, #ffb42a, #df8300);
    border: 1px solid #d27c00;
    box-shadow: 0 2px 4px rgba(182,102,0,.2);
}

.header .nav ul li a:hover {
    background: linear-gradient(135deg, #f49b00, #c96e00);
}

@media screen and (max-width:800px){
    .header .nav { font-size: 13px; }
    .header .nav ul li { padding: 2px; }
    .header .nav ul li a { line-height: 25px; }
}

.headlink {
    color: #ac6900;
    font-weight: bold;
    text-align: center;
    background: #fff9ec;
}

.headlink ul { display: flex; }

.headlink ul li {
    flex: 1;
    border: 1px solid #ecd093;
    background: #fff;
}

.headlink ul li a { display: inline-block; padding: 5px; }
.headlink ul li a:hover { color: #e48b00; }

@media screen and (max-width:800px){
    .headlink { font-size: 13px; }
}

#xiding[data-fixed="fixed"] {
    width: 100%;
    box-sizing: border-box;
    max-width: 800px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #fffdf8;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(170,95,0,.16);
}

#xiding[data-fixed="fixed"] .kaij-tit { padding-top: 0; }

.swipernav {
    text-align: center;
    border-bottom: 3px solid #e89b12;
    background: #fff7e7;
}

.swipernav .swiper-slide {
    padding: 10px 0;
    cursor: pointer;
    color: #a96700;
}

.swipernav .swiper-slide.active-nav {
    color: #fff;
    background: linear-gradient(135deg, #f6b32b, #dc8200);
}

.table1 { width: 100%; }

.table1 th,
.table1 td {
    padding: 3px;
    text-align: center;
    border: 1px solid #ead095;
}

.table1 th {
    color: #985800;
    background: #fff1cd;
}

.table1 tr:nth-child(even) td { background: #fffaf2; }
.table1.left td { text-align: left; }

.table-tit {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.table-tit td {
    border: 6px double #f2cb65;
    background: linear-gradient(135deg, #f7ba32, #dd8100);
    color: #fff;
}

@media screen and (max-width:800px){
    .table-tit { font-size: 18px; }
}

.footer {
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
    color: #85683f;
    background: #fff5dc;
    border-top: 1px solid #ebce8e;
}

.footer p:nth-child(1) {
    font-weight: bold;
    font-size: 16px;
    color: #d57e00;
}
```