﻿/*全局初始化样式*/
body
{
    padding: 0;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.42857143;
    font-family: arial,Microsoft YaHei,'微软雅黑','宋体';
    color: #666460;
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
    zoom: 1;/*禁用Webkit内核浏览器的文字大小调整功能*/
    -webkit-text-size-adjust: none;/*取出点击出现半透明的灰色背景*/
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight: rgba(0,0,0,0);/*控制文本可选性*/
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;/*设置字体的抗锯齿或者说光滑度*/
    -webkit-font-smoothing: antialiased;
}
*
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*:before, *:after
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}/*默认去除ul、li的默认样式*/
.p, .h1, .h2, .h3, .h4, .h5, .h6
{
    margin: 0;
    padding: 0;
}
.dl, .dl dd, .ul, .ul li
{
    list-style: none;
    margin: 0;
    padding: 0;
}/*初始化下拉菜单、单行输入框、多行输入框的样式*/
select, input, textarea
{
    border-radius: 0;
    -webkit-border-radius: 0;
    color: #666460;
    font-family: '微软雅黑';
}/*表单元素获得焦点时不显示虚线框*/
input:focus
{
    outline: none;
}
input, button, select, textarea
{
    outline: none;/*-webkit-appearance:none;*//*强制去除表单自带的样式*/
}/*不允许多行输入文本框有滚动条*/
textarea
{
    resize: none;/*-webkit-appearance:none;*//*强制去除textarea自带的样式*/
}/*初始化表单元素样式*/
textarea, input, select
{
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}/*初始化HTML5标签样式*/
audio, canvas, progress, video
{
    display: inline-block;
    vertical-align: baseline;
}
article, aside, footer, header, hgroup, nav, section, figure, figcaption
{
    display: block;
}/*去除figure边距*/
figure, figcaption
{
    margin: 0;
    padding: 0;
}/*初始化图片样式*/
img
{
    border: none;
    border: 0;
    max-width: 100%;
    vertical-align: top;
}/*初始化a的样式和字体样式*/
a
{
    color: #666460;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:focus
{
    outline: none;
    -moz-outline: none;
}
a:hover
{
    color: #ff5800;
}/*清除浮动*/
.clear
{
    clear: both;
    height: 0;
    overflow: hidden;
}
.clearfix:after
{
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
    font-size: 0;
}
.clearfix
{
    zoom: 1;
}
.container
{
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
}
@media screen and (min-width: 1200px)
{
    .container
    {
        width: 98%;
        margin: 0 auto;
        padding: 0;
    }
}/*全局样式*//*页面框架结构*/
.txtbox, .singlepage
{/*单片 设置文字两端对齐*/
    text-justify: inter-ideograph;
    text-align: justify;
    word-wrap: break-word;
    overflow: hidden;
}
.ul_sitemap li
{
    border-bottom: dotted 1px #ddd;
    padding: 5px 0;
}
.ul_sitemap li strong
{
    width: 90px;
    display: inline-block;
}