* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-size: 12px;
}

/*header*/
.header {
    width: 980px;
    height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto;
}

.header > div {
    height: 100%;
}

.header > div > .logo {
    float: left;
    height: 100%;
}

.header > div > .logo > img {
    height: 100%;
}

.header > div > .phone {
    float: right;
    line-height: 60px;
}

.header > div > .phone > dd > img {
    width: 30px;
    height: 30px;
    margin-top: 15px;
}

.header > div > .phone > dd {
    float: left;
    margin-left: 10px;
}

.header > div > .phone > dd > span {
    font-size: 28px;
    color: #FF7F00;
}

/*header*/

/*navbar*/
.navbar {
    height: 38px;
    width: 980px;
    margin: 0 auto;
}

.navbar > .nav {
    height: 38px;
    background-image: url(../images/nav_bg.jpg);
    background-repeat: repeat-x;
}

.navbar > .nav > li {
    width: 100px;
    height: 100%;
    line-height: 38px;
    text-align: center;
    float: left;
}

.navbar > .nav > li > a {
    display: block;
    font-size: 14px;
    color: #FFF;
}

.navbar > .nav > li > a:hover {
    color: #FF7F00;
    cursor: pointer;
}

.navbar .nav li.line {
    width: 10px;
    height: 100%;
    background-image: url(../images/line.jpg);
    background-repeat: no-repeat;
}

.navbar .nav li ul {
    display: none;
    overflow: hidden;
    background: white;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    position: absolute;
    z-index: 1;
}

.navbar .nav li ul li {
    width: 100%;
    float: left;
}

.navbar .nav li ul li a {
    color: black;
}

.navbar .nav li ul li a:hover {
    color: #FF7F00;
}

/*body*/
.main {
    width: 980px;
    margin: 0 auto;
    overflow: hidden;
}

/*panelbox*/
.panelbox {
    display: flex;
    flex-flow: column;
}

.panelbox > .paneltitle {
    height: 30px;
    line-height: 30px;
    background: url(../images/icon2.png) 0 center no-repeat;
    padding-left: 20px;
}

.panelbox > .paneltitle > span {
    font-size: 14px;
    color: #2267B3;
}

.panelbox > .paneltitle > a {
    display: flex;
    height: 100%;
    float: right;
    align-items: center;
}

.panelbox > .panelbody {
    flex: 1;
    overflow: hidden;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #2267B3;
}

/*contact*/
.contactus {
    width: 100%;
    height: 100%;
    background: url(../images/pic1.jpg) no-repeat right bottom;
    overflow: hidden;
    position: relative;
}

.contactus > li {
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.contactus > li:last-child {
    position: absolute;
    bottom: 10px;
}

.contactus > li > span {
    font-weight: bold;
}

.contactus > li > a {
    display: block;
}

/*footer*/
.footer {
    width: 980px;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    margin: 0 auto;
    background: #2267B3;
    color: #FFF;
}

.footer p {
    width: 100%;
    line-height: 24px;
}

.footer p > a:hover {
    color: #FF7F00;
}

.footer a {
    color: #FFF;
    margin-left: 12px;
    margin-right: 12px;
}

.footer span {
    margin-left: 8px;
    margin-right: 8px;
}