/*包含一些通用样式，主要是头部和底部导航栏的样式*/

*, *:before, *:after {
    box-sizing: inherit;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #DC4040;
}

a:visited {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

/*a:hover渐进渐出时长*/
/*a {*/
/*transition: all 1s ease-out 0.2s;*/
/*}*/

/*a:hover {*/
/*transition-property: all;*/
/*-moz-transition: all;*/
/*-moz-transition-duration: 1s;*/
/*-webkit-transition-property: all;*/
/*-webkit-transition-duration: 1s;*/
/*}*/

/*定位*/
.left {
    float: left;
}

.right {
    float: right;
}

/*颜色*/
.bg-white {
    background-color: #ffffff;
}

.white {
    color: #fff;
}

.black {
    color: #000;
}

.red {
    color: #D30505;
}

.font-blue {
    color: #0168B7;
}

.green {
    color: #149001;
}

/*边框 内边距 外边距*/
.box-shadow {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.no-padding {
    padding: 0px;
}

.padding-left {
    padding-left: 60px;
}

.padding-top {
    padding-top: 100px;
}

.section-padding {
    padding: 100px 0;
}

.section-padding2 {
    padding: 50px 0;
}

.block-padding-top {
    padding-top: 10px;
}

.block-padding-bottom {
    padding-bottom: 30px;
}

.font-14 {
    font-size: 14px;
}

.font-18 {
    font-size: 18px;
}

/*导航栏样式*/
.header-top {
    background-color: #EEEEEE;
    padding-top: 6px;
    padding-bottom: 6px;
}

.header-top a:hover {
    color: #d80808;
}

.header-top span:hover {
    color: #d80808;
}

.header-logo {
    background: url("../images/nav-bg.jpg");
}

.header-nav {
    background-color: #0168B7;
}

.header-nav li {
    padding: 12px 0;
    background: url(../images/nav_li.png) center left no-repeat;
}

.header-nav li:last-child {
    border-style: none;
}

.header-nav li a {
    display: inline-block;
    border-right: 1px dashed #ffffff;
}

.header-nav li a:last-child {
    border-right: none;
}

.header-nav li:hover {
    background-color: #149001;
}

.header-nav li a:hover {
    color: #ffffff;
}

/*底部状态栏样式*/
#footer {
    background-color: #0168B7;
    color: #d4d4d4;
}

#footer a {
    transition-property: all;
    -moz-transition: all;
    -moz-transition-duration: 1s;
    -webkit-transition-property: all;
    -webkit-transition-duration: 1s;
}

#footer a:hover {
    color: #DC4040;
}

/*友情链接*/
.footer-link {
    border-bottom: 1px #d4d4d4 dashed;
}

/*底部信息*/
.footer-info {
    padding-top: 10px;
}

.footer-nav {
    background-color: #1F1F1F;
    height: 50px;
}

.footer-nav a {
    line-height: 50px;
    padding: 0 30px;
    font-weight: 600;
}

#footerExtra {
    background-color: #00387A;
}

.copyright {
    padding-left: 2px;
    padding-top: 8px;
    color: #ffffff;
    font-size: 14px;
}

.support {
    float: right;
    padding-right: 2px;
    padding-top: 8px;
    color: #ffffff;
    font-size: 14px;
}

/*banner下的产品热词*/
#hot {
    width: 100%;
    height: auto;
    background-color: #dcd5d8;
}

#hot ul {
    list-style: none;
}

#hot ul li {
    float: left;
    padding: 0 5px 5px;
    font-weight: 600;
}

/*面包屑*/
#breadcrumb {
    background-color: #F5F5F5;
}

.breadcrumb {
    padding-bottom: 0;
    margin-bottom: 0;
    background-color: #F5F5F5;
}

.breadcrumb ul li {
    line-height: 50px;
    font-size: 16px;
}

.breadcrumb ul li a {
    color: #007483;
}

.breadcrumb ul li a:hover {
    color: #ff7f1e;
}

/*产品滚动相关样式*/
#proSwiper {
    background-color: #F5F5F5;
}

#proSwiper img {
    width: 260px;
    height: 234px;
    border-radius: 3px;
    box-shadow: 0px 0px 15px 3px rgba(204, 204, 223, 0.44);
}


/*返回顶部*/
#backTop a {
    position: fixed;
    text-align: center;
    line-height: 55px;
    width: 50px;
    height: 45px;
    right: 50px;
    top: 90%;
    background-color: #FF7F1E;
    border: none;
    border-radius: 3px;
    transition: all 0.3s ease-out 0.1s;
    opacity: 0;
}

.show {
    opacity: 1;
}

#backTop a::before {
    color: #fff;
    content: "^";
    font-size: 40px;
    margin: 5px;
    position: relative;
}

#backTop a:hover {
    background-color: #00387A;
}

/*分页按钮样式*/
.page {
    width: 100%;
    height: 60px;
    text-align: center;
    margin-top: 50px;
    margin:auto;
}

.page a:nth-child(1) {
    display: none;
}

.page a {
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: auto 5px 16px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    font-size: 14px;
    line-height: 30px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: middle;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-align: center;
    background: #f26522;
    cursor: pointer;
    border: 1px solid transparent;
    color: #fff;
    outline: none;
}

.page a:hover {
    background-color: #00387A;
    border: #d75500 1px solid;
}

.page span {
    cursor: not-allowed;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: auto 18px 16px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    font-size: 14px;
    line-height: 30px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: middle;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-align: center;
    background: #6b001b;
    border: 1px solid transparent;
    color: #fff;
    outline: none;
}