<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,
body {
    height: 100%;
    width: 100%;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Roboto", "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", BlinkMacSystemFont, -apple-system, "Segoe UI", "Microsoft Yahei", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    margin: 0;
}
ul{
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}
a {
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    color: #474157;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #474157;
}

hr {
    max-width: 100px;
    margin: 25px auto 0;
    border-width: 1px;
    border-color: rgba(34, 34, 34, 0.1);
}

hr.light {
    border-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 200;
    letter-spacing: 1px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}
#mainbody {
    width: 100%;
    /*max-width: 1200px;*/
    margin: 50px auto 0;
}
@media screen and (max-width: 767px) {

}
.table-list{
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-bottom: none;
}
.table-list .td-list{
    display: flex;
    border-bottom: 1px solid #dddddd;
}
.table-list .td-list .province{
    text-align: center;
    width: 100px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.table-list .td-list .cities{
    width: 1080px;
    padding: 0 10px;
    border-left: 1px solid #dddddd;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    align-items: center;
    line-height: 40px;
}
.table-list .td-list .cities span{
    padding: 0 10px;
}
.links{
    margin: 60px auto 0;
}
.links .title{
    font-size: 20px;
    font-weight: bold;
}
.links .link-list{
    margin-top: 20px;
}
.links .link-list span{
    padding: 0 5px;
    margin: 0 5px;
}
@media screen and (max-width: 767px) {
    #mainbody {
        height: inherit;
    }
    .table-list .td-list .province{
        width: 70px;
    }
    .table-list .td-list .cities{
        width: calc(100% - 90px);
        line-height: 30px;
    }
}
</pre></body></html>