﻿

/*==========@@HTML默认 开始@@==========*/


/*基本*/

* {
    padding: 0px;
    margin: 0px
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

body {
    color: #666;
    margin: 0px auto;
    font-family: "Arial", "Microsoft YaHei";
    font-size: 14px;
    background: #fff;
    min-width: 1200px;
}

div {
    margin: 0;
    padding: 0;
    border: 0;
}

img {
    margin: 0;
    padding: 0;
    border: 0;
}

p {
    margin: 0px;
    line-height: 2em
}

b,
strong {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    /* Remove most spacing between table cells.*/
}

li {
    list-style: none outside none;
}


/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #aaa;
}


/*定义滚动条轨道 内阴影+圆角*/

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #ddd;
}


/*定义滑块 内阴影+圆角*/

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    background-color: rgba(0, 0, 0, 0.1);
}


/*滑块效果*/

::-webkit-scrollbar-thumb:hover {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.6);
}


/*链接*/

a {
    text-decoration: none;
    color: #444;
    background: transparent;
    outline: none
}

a:focus {
    outline: none;
}

a:hover {
    color: #00c0ff;
}

a:active {
    outline: none;
}


/*标题*/

h1 {
    font-size: 1.3em;
    margin: 0;
}

h2 {
    font-size: 1.2em;
    margin: 0;
}

h3 {
    font-size: 1.17em;
    margin: 0;
}

h4 {
    font-size: 1em;
    margin: 0;
}

h5 {
    font-size: 0.83em;
    margin: 0;
}

h6 {
    font-size: 0.67em;
    margin: 0;
}


/*表单*/

form {
    margin: 0;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0px;
    vertical-align: baseline;
    *vertical-align: middle;
}

button,
select {
    text-transform: none;
}

input {
    padding: 2px;
    background-color: #f5f5f5;
    border: none;
    outline: none;
    width: 99%;
    line-height: normal;
}

textarea {
    padding: 2px;
    color: #000000;
    background-color: #f0f0f0;
    width: 99%;
    outline: none;
    border: none;
}


/*其它*/

blockquote {
    margin: 1em 40px;
}

dfn {
    font-style: italic;
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

code,
kbd,
pre,
samp {
    font-size: 1em;
}

pre {
    margin: 1em 0;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    /* Prevent `sub` and `sup` affecting `line-height` in all browsers.*/
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

dl {
    margin: 1em 0;
}

dd {
    margin: 0 0 0 40px;
}


/*==========@@HTML默认  结束@@==========*/


/*==========@@元件 开始@@==========*/


/*常用颜色*/

.blue {
    color: #00F !important;
}

.green {
    color: #0F0 !important;
}

.red {
    color: #F00 !important;
}

.black {
    color: #000000 !important;
}

.white {
    color: #FFFFFF !important;
}

.gray {
    color: gray !important;
}

.purple {
    color: purple !important;
}


/*浮动*/

.clear {
    display: block;
    clear: both;
    height: 3px;
    overflow: hidden;
    line-height: 3px;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}


/*对齐方式*/

.left {
    text-align: left
}

.right {
    text-align: right
}

.center {
    text-align: center
}


/*hd*/

.hd_round {
    text-align: center;
    margin-top: 40px;
}

.hd_round ul {}

.hd_round ul li {
    width: 5px;
    height: 5px;
    border-radius: 100%;
    overflow: hidden;
    display: inline-block;
    *display: inline;
    zoom: 1;
    margin-right: 15px;
    font-size: 0px;
    background: #ddd;
    cursor: pointer;
}

.hd_round ul li:hover {
    background: #a5a5a5;
}

.hd_round ul li.on {
    background: #00c0ff;
}


/*按钮*/

.btn {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    height: 32px;
    line-height: 32px;
    padding: 0px 20px;
    font-weight: 300;
    font-size: 14px;
    margin: 0;
    text-decoration: none;
    text-align: center;
    text-indent: 0;
    cursor: pointer;
    border: 1px solid #d4d4d4;
    color: #666666;
}


/*默认样式*/

.btn {
    background-color: #00c0ff;
    color: #fff;
}

.btn:hover {
    background-color: #13a6ff;
    color: #fff;
}

.btn:active {
    background: #13a6ff;
    color: #fff;
}


/*按钮大小*/

.btn-large {
    font-size: 19px;
    height: 40px;
    line-height: 40px;
    padding: 0px 26px;
}

.btn-small {
    font-size: 12px;
    height: 30px;
    line-height: 30px;
    padding: 0px 24px;
}

.btn-tiny {
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    padding: 0px 13px;
    margin: 0 5px;
}


/*块按钮*/

.btn-block {
    display: block;
}


/*表单类*/

.form_text,
.form_text:hover,
.form_text_verifycode,
.form_text_verifycode:hover {
    border-color: #a0a0a0 #cbd9eb #cbd9eb #a0a0a0;
    border-width: 1px;
    height: 30px;
    line-height: 30px;
    padding: 2px;
    color: #000000;
}

.form_text {
    width: 100%;
    background-position: 0px 0px;
    box-sizing: border-box;
}

.form_text:hover {
    background-position: 0px -37px;
}

.form_text_verifycode {
    width: 50px;
    margin-right: 3px;
    background-position: 0px 0px;
}

.form_text_verifycode:hover {
    background-position: 0px -37px;
}

.form_radio {
    width: auto;
    border: 0;
}

.form_checkbox {
    width: auto;
    border: 0
}

.form_select {
    height: 25px;
}

.form_textarea {
    width: 100%;
    height: 80px;
    border-color: #a0a0a0 #cbd9eb #cbd9eb #a0a0a0;
    border-width: 1px;
    padding: 5px 2px;
    box-sizing: border-box;
}

.form_button {
    width: auto;
    vertical-align: middle;
    border: 0 none;
    /*解决ie焦点是有黑色边框*/
}

input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"]>input[type="button"]::-moz-focus-inner {
    border: none;
    padding: 0;
}

.required {
    color: red;
    font-weight: bold;
    text-align: left;
    padding-left: 3px;
}

#Birthday {
    height: 36px;
}


/*其它*/

.hide {
    display: none;
}


/*隐藏*/

.more {
    float: right;
}


/*more链接*/

.code_image {
    cursor: pointer;
}


/*验证码图片样式*/


/*动画缓动*/

.delay_1 {
    transition: all ease-out .1s;
    -webkit-transition: all ease-out .1s;
    -moz-transition: all ease-out .1s;
    -ms-transition: all ease-out .1s;
}

.delay_2 {
    transition: all ease-out .2s;
    -webkit-transition: all ease-out .2s;
    -moz-transition: all ease-out .2s;
    -ms-transition: all ease-out .2s;
}

.delay_3 {
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    ;
}

.delay_5 {
    transition: .5s ease 0s;
    -webkit-transition: .5s ease 0s;
    -moz-transition: .5s ease 0s;
    -ms-transition: .5s ease 0s;
}


/*动画延迟*/

.wait_0 {
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    /* Safari 和 Chrome */
}

.wait_1 {
    animation-delay: .2s;
    -webkit-animation-delay: .2s;
    /* Safari 和 Chrome */
}

.wait_2 {
    animation-delay: .4s;
    -webkit-animation-delay: .4s;
    /* Safari 和 Chrome */
}

.wait_3 {
    animation-delay: .6s;
    -webkit-animation-delay: .6s;
    /* Safari 和 Chrome */
}


/*频道*/

.ChannelContent {
    line-height: 2.0em;
    font-size: 16px;
}

.ChannelSContent,
.ChannelSContent p {
    line-height: 1.8em;
}

.ChannelContent a {
    color: #ff9d02
}

.ChannelContent p {
    color: #777;
    font-size: 13px;
    line-height: 24px;
}

.ChannelContent strong {
    color: #777;
}

.ChannelSContent {
    color: #FFF;
    line-height: 25px;
    height: 200px;
    overflow: hidden;
    margin-bottom: 10px;
}

.ChannelSContent a {
    color: #ff9d02
}

.ChannelSContent img,
.InfoContent img {
    max-width: 100%
}

.ChannelAlbum {
    overflow: hidden;
}


/*信息*/

.InfoTitle {
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
}

.InfoTitle h1 {
    font-size: 18px;
    line-height: 1.5em;
    color: #444;
}

.InfoTitle1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.InfoTime {
    text-align: left
}

.InfoContent,
.InfoContent p {
    line-height: 2.0em;
    font-size: 16px;
}

.InfoAttachment {
    padding: 10px 0px;
    text-align: center;
    width: 81px;
    margin: 0 auto;
}

.InfoPicture {
    text-align: center;
}

.InfoPicture img {
    /* width: 100%; */
    width: 400px;
    height: 300px;
    max-width: 100%
}

.imgscale {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.imgscale_animate {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.imgscale_animate img {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
}

.imgscale_animate:hover img {
    transform: scale(1.1, 1.1);
}

.info_wrap {}

.info_from_wrap {
    padding: 0;
    text-align: center;
    font-size: 12px;
    color: #aaa;
    border: 0px dashed #ccc;
    line-height: 30px;
    margin-bottom: 20px;
}

.info_from_wrap a {
    color: #aaa;
}

.info_from_wrap a:hover {
    color: #555;
}

#ReadLevelTip {
    font-weight: bold;
    color: red;
}

.Tag {
    text-align: left;
    font-weight: bold;
}

.Tag a {
    padding: 0 3px;
    font-weight: normal;
    text-decoration: none;
}

.info_previous_next_wrap {
    background: #f5f5f5;
    padding: 5px 10px;
    color: #666;
    line-height: 1.8em;
    margin-top: 10px;
}

.Next a {}

.Previous a {}


/*==========@@元件 结束@@==========*/


/*==========@@模块  开始@@==========*/


/*左侧*/


/*主体左侧样式*/

.left_title {}

.left_title h2 {
    font-size: 16px;
    color: #01673A;
}

.left_body {
    overflow: hidden;
    zoom: 1;
    color: #01673A;
    padding: 10px 10px 5px;
    border-top: 0;
    border-bottom: 0px;
}

.left_bottom {
    height: 15px;
    margin-bottom: 5px;
}


/*样式1*/

.left_title1 {
    width: 1170px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.left_title1 .ChannelName {
    float: left;
    height: 40px;
    line-height: 40px;
    margin: 55px 0;
}

.left_title1 .ChannelName h2 {
    float: left;
    font-size: 24px;
    color: #555;
    font-weight: normal;
}

.left_title1 .ChannelName i {
    margin: 0 10px;
}

.left_title1 .ChannelName span {
    color: #b7b7b7;
}

.left_title1 a div {
    height: 34px;
    line-height: 34px;
    border: 1px solid #f0f0f0;
    padding: 0 15px;
    margin: 57px 0 57px 5px;
    color: #FFF;
    background: #718eb2;
    min-width: 60px;
    text-align: center;
    font-size: 14px;
}

.left_title1 a.more div {
    color: #FFFAFA;
}

.left_title1 a div:hover {
    color: #666;
}

.left_title1 p {
    position: absolute;
    width: 36px;
    height: 40px;
    top: 60px;
    left: 0;
    border-bottom: 2px solid #666f;
}

.left_body1 {}

.left_bottom1 {
    clear: both;
    height: 5px;
    margin-bottom: 0px;
}


/*样式2*/

.left_title2 {
    text-align: center;
    padding: 20px 0 40px;
}

.left_title2 div {
    line-height: 32px;
}

.left_title2 div h2 {
    font-size: 24px;
    color: #555;
    font-weight: normal;
}

.left_title2 p {
    margin: 5px 0;
    color: #a8a8a8;
    line-height: 16px;
}

.left_body2 {
    width: 780px;
    margin: 0 auto;
}

.left_body2 .ChannelContent {
    color: #898989;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
}

.left_body2 a {
    display: block;
}

.left_body2 .more {
    width: 120px;
    margin: 20px auto 40px;
    padding: 10px 30px;
    background: #ffffff;
    text-align: center;
    color: #898989;
    border: 1px solid #E1E1E1;
    float: none;
}

.left_body2 .more:hover {
    background: #00c0ff;
    color: #fff;
}

.left_bottom2 {
    clear: both;
    margin-bottom: 0px;
}

.left_bottom2 img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}


/*主体右侧*/


/*样式1*/

.right_title {
    display: none;
}

.right_title h2 {
    font-size: 26px;
    font-weight: normal;
    padding: 40px 0 0;
    color: #414141;
}

.right_title h2 a {
    color: #414141;
}

.right_title p {
    color: #939393;
    margin-top: 10px;
}

.right_body {
    padding: 40px 0px 10px;
    overflow: hidden;
    zoom: 1;
    border-top: 0;
    border-bottom: 0;
}

.right_bottom {}


/*==========@@模块  结束@@==========*/


/*==========@@频道布局  开始@@==========*/


/*模型body*/

.body_index,
.body_article,
.body_download,
.body_picture,
.body_product,
.body_single,
.body_video,
.body_job,
.body_feedback,
.body_guestbook {}

.index,
.single,
.article,
.picture,
.download,
.video,
.product,
.job,
.guestbook,
.feedback {
    width: 1170px;
    margin: 5px auto;
    min-height: 350px;
}

#top,
#logo,
#banner,
#announcement,
#link,
#copyright,
#bottom,
#floor_1,
#floor_3,
#floor_4,
#floor_2,
#floor_5,
#floor_6 {
    width: 1170px;
    margin: 0 auto;
    overflow: hidden;
    border: 0px dashed red;
}

#left {
    float: left;
    width: 250px;
}

#right {
    float: left;
    width: 1170px;
    border-left: 0px solid #E5E5E5;
    padding-left: 0px;
    min-height: 350px;
}

#right1 {
    width: 1200px;
    margin: 0 auto;
}


/*===首页 开始===*/

#floor_1_main {
    overflow: hidden;
    position: relative;
    z-index: auto;
    background-color: #FFFAFA;
}

#floor_1 {
    width: 1270px;
}

#floor_2_main {
    width: 100%;
    background: #eef3f7;
}

#floor_2 {}

#floor_3_main {
    padding: 0 0;
    background-color: #FFFAFA;
}

#floor_3 {
    padding: 40px 0 80px;
}

#floor_4_main {
    background: #f5f9fa;
    padding: 0 0 25px;
}

#floor_4 {}

#floor_5_main {}

#floor_5 {}


/*===产品模型内页 开始===*/

.product .info_product_detail_wrap {
    line-height: 2.2em;
    margin-bottom: 20px;
}

.product .info_product_detail_wrap span {
    color: #666;
    margin-right: 10px;
}

.product .info_product_detail_wrap table.detail_table {
    width: 100%;
}

.product .info_product_detail_wrap table.detail_table th {
    width: 200px;
}

.product .ProductDescription {
    height: 40px;
    color: #01673A;
    margin-top: 10px;
    padding-left: 35px;
    line-height: 40px;
    font-size: 16px;
    font-weight: bold;
    display: none;
}

.product .info_product_detail_wrap img {
    height: 162px;
    float: left;
    text-align: left;
    margin-right: 10px;
}

.product .InfoTitle {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    padding: 10px 0px;
}

.product .InfoTitle span {
    color: #888;
    margin-right: 0;
    font-size: 14px;
}

.product .f2 {
    padding: 5px 0px
}

.product .f1 {
    padding: 5px 0px
}

.product .InfoHit {
    padding: 5px 0px;
    font-weight: bold;
    color: #990000
}

.product .InfoTime {
    padding: 5px 0px;
}


/*===产品模型 结束===*/


/*===招聘频道  开始===*/

.job {}

.joblist {}

.joblist li {
    overflow: hidden;
}

table.job_table {
    margin: 8px 0px;
    padding: 0px;
    text-align: center;
    width: 100%;
    border-collapse: collapse;
}

table.job_table td {
    padding: 8px 5px;
    border: 1px solid #DADBD6;
}

table.job_table .Requirement {
    text-align: left;
    padding: 8px 5px;
    line-height: 1.5em;
}

table.job_table th {
    color: #333;
    font-weight: bold;
    text-align: center;
    border: 1px solid #DADBD6;
}

table.job_table .t1 {
    font-weight: bold;
    padding: 5px 0;
    width: 20%;
}

table.job_table .t2 {
    text-align: left;
    width: 25%;
}

table.job_table .t3 {
    font-weight: bold;
    width: 25%;
}

table.job_table .t4 {
    text-align: left;
    width: 25%;
}

table.job_table .operation {
    text-align: center;
    margin: 0 auto;
}


/*应聘*/

table.resume_table {
    margin: 3px;
    text-align: center;
    width: 60%;
    margin: 0 auto;
    border-collapse: collapse;
}

table.resume_table th {
    font-weight: bold;
    text-align: left;
    width: 100px;
}

table.resume_table td {
    text-align: left;
}

table.resume_table .operation {
    text-align: center;
}

table.resume_table #Detail {
    height: 200px;
}


/*===招聘频道  结束===*/


/*===留言频道  开始===*/

.guestbook {}

.guestbooklist {}

.guestbooklist li {
    padding: 10px;
    border: 1px solid #CCC;
    margin-bottom: 10px;
}

.MessageTitle {
    color: #227BAD;
    line-height: 1.5em;
    font-weight: bold;
}

.MessageContent {
    padding: 5px;
    margin-bottom: 10px;
}

table.guestbook_table {
    width: 100%;
}

table.guestbook_table th {
    width: 100px;
    text-align: left
}

table.guestbook_table td {
    text-align: left
}

table.guestbook_table .operation {
    text-align: center
}

table.guestbook_table tr {
    width: 40%;
}


/*管理员回复*/

.answer_wrap {
    padding: 5px;
    border-top: 1px dashed #CCC;
    line-height: 1.5em
}

.answer_title {}

.answer_body {}

.Administrator {
    text-align: right;
}

.Reply {
    text-align: right;
}

.AnswerTime {
    color: #999
}


/*留言表单*/

.message_title {
    padding-left: 8px;
    line-height: 40px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    background: #00c0ff;
    margin: 40px 0 20px;
}

.message_body {
    padding: 0 40px;
    color: #626262;
}

.message_bottom {}


/*===留言频道  结束===*/


/*===反馈频道 开始===*/

.feedback {}

F table.feedback_table {
    width: 99%;
    text-align: center;
    margin: 0 auto;
}

table.feedback_table th {
    width: 100px;
    text-align: left;
    font-weight: bold;
}

table.feedback_table td {
    text-align: left;
}

table.feedback_table .operation {
    text-align: center
}


/*===反馈频道 结束===*/


/*==========@@频道布局  结束@@==========*/


/*==========@@公共板块  开始@@==========*/

#logo_main {
    background: #fff;
    width: 100%;
    text-align: center;
}

#logo {
    overflow: hidden;
    width: auto;
    min-width: 1170px;
    text-align: center;
    display: flex;
    justify-content: center;
    height: 70px;
    background-color: #718eb2
}


/* 顶部 */

#top_1 {
    display: inline-block;
    zoom: 1;
    *display: inline;
    text-align: center;
    margin-left: 10px;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
}

#top_2 {
    display: inline-block;
    zoom: 1;
    *display: inline;
    text-align: center;
    height: 60px;
    margin: 0 0px;
    overflow: hidden;
}

#top_1 a {
    display: block;
    float: left;
    min-width: 50px;
    padding: 0 5px;
    height: 60px;
    color: #222;
    font-size: 16px;
    overflow: hidden;
}

#top_1 a.MemberLogin {
    border-left: 1px #f5f5f5 solid;
    border-right: 1px #f5f5f5 solid;
}

#top_1 a:hover {
    background: #00c0ff;
    color: #fff;
}

#top_2 a {
    color: #666;
    display: block;
    width: 90px;
    height: 32px;
    line-height: 32px;
    border: 1px solid #999;
    margin-top: 13px;
    color: #666;
    font-size: 14px;
}

#top_2 a:hover {
    background: #00c0ff;
    color: #fff;
    border-color: #00c0ff;
}


/*Logo*/

.WebLogo {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.WebLogo img {
    display: block;
}


/*导航*/

#navigation {
    display: inline-block;
    zoom: 1;
    *display: inline;
    margin: 0 20px;
}

#navigation ul.navigationlist li {
    float: left;
    text-align: center;
}

#navigation ul.navigationlist li a {
    display: block;
    color: #FFFAFA;
    height: 70px;
    position: relative;
    line-height: 70px;
    padding: 0 24px;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 16px;
    text-align: center !important;
}

#navigation ul.navigationlist li:hover a {
    color: #fff;
    background: #627a98;
}

#navigation ul.navigationlist li a.current {
    color: #fff;
    /* background: #00c0ff; */
}

#navigation ul.navigationlist li a span {
    display: inline-block;
    position: relative;
}

#navigation ul.navigationlist li a img {
    vertical-align: middle;
    margin-left: 10px;
}


/*导航栏下拉*/

#navigation ul.subnavigationlist {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 13px 42px 11px rgba(0, 0, 0, .05);
    z-index: 100;
}

#navigation ul.subnavigationlist li {
    float: none;
    padding: 0px;
    display: inline;
}

#navigation ul.subnavigationlist li a {
    display: block;
    white-space: nowrap;
    font-weight: normal;
    color: #bbb9b9;
    line-height: 44px;
    /* text-align: left !important; */
    /* margin: 0 17px; */
    font-size: 14px;
    height: 44px;
    padding: 0 20px;
    width: 108px;
    border-bottom: 1px solid #eee;
    background: #fff url(../image/right2.png) no-repeat right;
    text-align: center !important;
}

#navigation li:hover ul.subnavigationlist li a {
    border-top: none;
    color: #FFFAFA;
    background: #718eb2;
}

#navigation li ul.subnavigationlist li a:hover {
    color: #00c0ff;
    background: #fff;
}


/* 导航里的联系方式 */

.phone {
    width: 200px;
    height: 70px;
    font-size: 16px;
    /* float: right; */
    display: inline-block;
    line-height: 70px;
    /* background: url("../images/phone.png"); */
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: 0px 15px;
    color: #fff
}

.phone b {
    /* margin-left: 37px; */
}


/*Js幻灯片样式*/

#banner_main {
    height: 600px;
    position: relative;
    border: 0px solid blue;
}

#banner {
    border: 0px solid red;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

.bannerlist {}

.bannerlist li {
    text-align: center;
    border: 0px dashed red;
    overflow: hidden;
    display: block;
}

.bannerlist li img {
    margin: 0 auto;
    display: block;
}

#banner_main .hd {
    width: 100%;
    position: relative;
    bottom: 35px;
    left: 0;
    height: 10px;
    line-height: 10px;
    text-align: center;
    border: 0px solid red;
}

#banner_main .hd ul li {
    cursor: pointer;
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 10px;
    height: 10px;
    border: 1px solid #666;
    margin-right: 15px;
    overflow: hidden;
    font-size: 0px;
    border-radius: 100%;
}

#banner_main .hd ul li.on {
    background: #00c0ff;
    border-color: #00c0ff;
}

#banner_main .hd ul li:hover {
    background: #00c0ff;
    border-color: #00c0ff;
}

#banner_main .prevNext {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    color: #fff;
    line-height: 42px;
    text-align: center;
    margin-top: -23px;
    top: 50%;
    cursor: pointer;
    transition: all ease-out .3s;
    -webkit-transition: all ease-out .3s;
    -moz-transition: all ease-out .3s;
    -ms-transition: all ease-out .3s;
}

#banner_main .prevNext:hover {
    background-color: #00c0ff;
}

#banner_main .prev {
    left: 4%;
    background: #000 url(../image/left2.png) no-repeat center;
    background-color: rgba(0, 0, 0, .3);
}

#banner_main .next {
    left: 96%;
    background: #000 url(../image/right2.png) no-repeat center;
    background-color: rgba(0, 0, 0, .3);
}


/*内页幻灯片*/

#Channelbanner {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

#Channelbanner img {
    min-width: 1170px;
    display: block;
}

.banner_title {
    position: absolute;
    width: 1170px;
    left: 50%;
    top: 50%;
    margin: -35px 0 0 -580px;
    color: #000000 !important;
    z-index: 5;
}

.banner_title h2 {
    font-size: 26px;
    font-weight: normal;
}

.banner_title p {
    font-size: 15px;
}


/*子频道列表*/

#subchannel {
    width: 1170px;
    overflow: hidden;
    margin: 0 auto;
    line-height: 50px;
    height: 50px;
    border-bottom: 1px solid #e9e9e9;
}

.subchannellist {
    text-align: center;
}

.subchannellist li {
    display: inline;
    border-left: 1px solid #ccc;
}

.subchannellist li.n0 {
    border: 0;
}

.subchannellist li a {
    padding: 10px 5px;
    margin: 0 25px;
    color: #333;
    font-size: 16px;
}

.subchannellist li a:hover {
    color: #00c0ff;
    text-decoration: none;
}

.subchannellist li.current a {
    color: #00c0ff;
}


/*搜索 */

table.search_table {
    width: 99%;
    text-align: center;
}

table.search_table th {
    vertical-align: middle;
    text-align: center;
    padding: 0px 3px;
}

table.search_table td {
    vertical-align: middle;
    width: 60px;
    padding: 0px 3px;
}


/*联系我们*/

.contact_wrap {
    line-height: 40px;
    font-size: 16px;
    color: #FFFAFA;
}


}
.contact_wrap span {
    margin: 0 0 0 30px;
}
.contact_wrap .Company {
    font-size: 18px;
    font-weight: 100;
    line-height: 24px;
    margin: 10px 0 15px;
    color: #FFFAFA;
}
.contact_wrap .WeChat {
    margin-bottom: 10px;
}

/*公共百度地图*/
#Map {
    overflow: hidden;
    width: 100%;
}
#Map .MapInfo {
    float: left;
    border: 1px dashed #ccc;
    padding: 8px;
}
#Map .MapInfo #MapContainer {
    width: 855px;
    height: 390px;
}
#Map .ContactInfo {
    width: 300px;
    float: right;
    line-height: 2.7em;
    color: #777;
}
#Map .ContactInfo .Company {
    font-size: 24px;
    margin-bottom: 8px;
}
#Map .ContactInfo img {
    width: 18px;
    vertical-align: middle;
    margin-right: 8px;
}

/*订购*/
.order {
    margin: 0px auto
}
.order .WantOrder h1 {
    border-bottom: 1px dotted #999999;
    padding: 5px 0px;
}
.order .f1 {
    float: right;
    color: red;
}
table.order_table {
    width: 98%;
}
table.order_table th {
    width: 100px;
    text-align: left;
}
table.order_table td {
    text-align: left
}
table.order_table .operation {
    text-align: center
}

/* 友情链接 */
#link_main {
    padding: 0;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}
#link {
    padding: 0;
    position: absolute;
    width: 1170px;
    height: 210px;
    z-index: 5;
    top: 0;
    left: 50%;
    margin-left: -600px;
}
.link_title {
    line-height: 59px;
    height: 59px;
    color: #fff;
}
.link_title h2 {
    font-size: 24px;
    color: #333;
    font-weight: normal;
    text-indent: 15px;
}
.link_body {
    overflow: hidden;
    zoom: 1;
    z-index: 1;
    margin-top: 55px;
    height: 100px;
}
.link_body .album {
    width: 1070px;
    float: left;
    overflow: hidden;
}
.link_body .prevnext {
    display: block;
    width: 40px;
    height: 90px;
    margin-top: 3px;
    cursor: pointer;
    z-index: 5;
}
.link_body .prev {
    background: url(../image/left1.png) no-repeat center;
    margin-right: 10px;
    float: left;
}
.link_body .next {
    background: url(../image/right1.png) no-repeat center;
    margin-left: 10px;
    float: right;
}
.link_body .prevnext:hover {
    background-color: #00c0ff;
    opacity: 1;
}
.link_bottom {}

/*图片链接列表*/
.linkpiclist {
    overflow: auto;
    zoom: 1;
}
.linkpiclist li {
    float: left;
    padding: 1px 5px;
    text-align: center;
}
.linkpiclist li img {
    padding: 2px;
    width: 200px;
    height: 90px;
}

/*文字链接列表*/
.linktextlist {
    overflow: hidden;
    zoom: 1;
    padding: 8px 0 8px 0;
}
.linktextlist li {
    float: left;
    text-align: center;
    padding: 1px 15px;
    overflow: hidden;
    white-space: nowrap;
}
.linktextlist li a {
    line-height: 22px;
    color: #666;
}
.linktextlist li a:hover {
    line-height: 22px;
    color: #c11b33;
}

/*底部区域*/
#bottom_main {
    color: #FFFAFA;
    padding: 40px 0;
    background: #718eb2;
}
#bottom {
    padding: 0;
}
.bottom_navigation {
    overflow: hidden;
    float: left;
}
.bottom_navigation li {
    float: left;
    width: 120px;
    margin-right: 15px;
    overflow: hidden;
}
.bottom_navigation li a {
    display: block;
    text-align: left;
    font-size: 18px;
    margin-bottom: 10px;
    color: #f0f0f0;
    font-weight: bold;
}
.bottom_navigation li a:hover {
    color: #fff;
}
.bottom_navigation .subnavigationlist1 li {
    float: none;
    padding: 0;
    line-height: 28px;
    display: block;
}
.bottom_navigation .subnavigationlist1 li a {
    color: #f0f0f0;
    display: block;
    line-height: 30px;
    font-weight: normal;
    padding: 0;
    margin: 0;
    font-size: 13px;
    text-align: left;
}
.bottom_navigation .subnavigationlist1 li a:hover {
    color: #fff;
}
#bottom_2 {
    float: right;
    width: 34%;
}
#bottom_2 .WeChat img {
    float: left;
    width: 102px;
    padding: 20px 30px 0 0;
}
.bdsharebuttonbox {
    display: none;
}
#bottom_2 .bdsharebuttonbox .LShare {
    display: block;
    line-height: 24px;
    height: 24px;
    cursor: pointer;
    margin: 6px 6px 6px 0;
    font-size: 16px;
    color: #f0f0f0;
}
.bdshare-button-style0-24 {}
#WxQrcode {
    float: right;
}
#WxQrcode .Qrcode2 {}
#WxQrcode .Qrcode2 img {
    display: block;
    width: 100px;
    margin: 0px 20px;
}
#WxQrcode .Qrcode2 p {
    width: 100%;
    text-align: center;
    margin-top: 5px;
}
.roll_area {
    overflow: hidden;
}
.roll_area .roll {
    width: 1170px;
    float: left;
    overflow: hidden;
}
.roll_area .prevnext {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-top: 100px;
    cursor: pointer;
    z-index: 5;
}
.roll_area .prev {
    background: url(../image/left.png) no-repeat center;
    margin-right: 10px;
    float: left;
}
.roll_area .next {
    background: url(../image/right.png) no-repeat center;
    margin-left: 10px;
    float: right;
}
.roll_area .prevnext:hover {}
.roll_area .hd {
    height: 20px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.roll_area .hd li {
    display: inline-block;
    *zoom: 1;
    *display: inline;
    width: 8px;
    height: 8px;
    line-height: 50px;
    background: #fbfbfb;
    margin: 20px 6px 0;
    border: 1px solid #c8c8c8;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
}
.roll_area .hd li.on {
    background: #00c0ff;
    border-color: #00c0ff;
}

/* 版权信息 */
#copyright_main {
    color: #fff;
    background-color: #737373;
}
#copyright_main2 {
    color: #fff;
    background-color: #627a98;
    width: 100%;
}
#copyright {
    line-height: 40px;
    font-size: 14px;
}
#copyright a {
    color: #f0f0f0;
    text-decoration: none;
}
#copyright a:hover {
    color: #111;
    text-decoration: none;
}
#copyright .bottom_info {
    text-align: center;
    padding-top: 5px;
    padding-right: 30px;
    line-height: 20px;
}
#copyright .TechnicalSupport {
    margin-left: 30px;
    float: right;
}

/*分页样式*/
.page {
    padding: 0;
    text-align: center;
    clear: both;
    color: #888;
}
.page a,
.page span {
    display: inline-block;
    *zoom: 1;
    *display: inline;
    border: 1px solid #D3D1D1;
    padding: 0 3px;
    margin-left: 4px;
    line-height: 36px;
    color: #666;
    min-width: 24px;
    margin-top: 40px;
}
.page a:link,
.page a:visited {
    text-decoration: none;
}
.page a:hover {
    background: #00c0ff;
    color: #fff;
    border-color: #00c0ff;
}
.page .current {
    background: #00c0ff;
    color: #FFF;
    border-color: #00c0ff;
}
.page #total {
    color: #00c0ff;
    font-weight: 500;
}

/*会员*/

/*会员登录*/
td {
    padding: 5px 0;
}
table.login_table {
    width: 40%;
    text-align: center;
    margin: 0 auto;
}
table.login_table th {
    width: 100px;
    text-align: left;
    font-weight: bold;
}
table.login_table td {
    text-align: left;
}
table.login_table .operation {
    text-align: center;
    padding-top: 20px;
}
table.login_table .quick_login td {
    text-align: left;
    padding: 10px 0;
}
table.login_table .quick_login td img {
    margin-right: 8px;
    float: left;
}

/*会员注册*/
table.reg_table {
    width: 40%;
    text-align: center;
    margin: 0 auto;
}
table.reg_table th {
    width: 140px;
    text-align: left;
    font-weight: bold;
}
table.reg_table td {
    text-align: left;
}
table.reg_table .operation {
    text-align: center
}
table.reg_table .MemberCode {
    text-align: left;
    width: 70px;
}
table.reg_table #SmsCode {
    width: 50px;
}

/*忘记密码 第一步*/
table.forget_table1 {
    width: 40%;
    text-align: center;
    margin: 0 auto;
}
table.forget_table1 th {
    width: 100px;
    text-align: left;
    font-weight: bold;
}
table.forget_table1 td {
    text-align: left;
}
table.forget_table1 .operation {
    text-align: center
}

/*忘记密码 第二步*/
table.forget_table2 {
    width: 40%;
    text-align: center;
    margin: 0 auto;
}
table.forget_table2 th {
    width: 100px;
    text-align: left;
    font-weight: bold;
}
table.forget_table2 td {
    text-align: left
}
table.forget_table2 .operation {
    text-align: center
}
table.forget_table2 #SmsCode {
    width: 60px;
}
table.forget_table2 .PasswordQuestion,
table.forget_table2 .MemberMobile,
table.forget_table2 .FindPwdWay {
    padding: 3px 0;
}

/*网站地图列表*/
.maplist {}
.maplist li {
    padding: 1px;
}
.maplist li a {
    background: #d1e8fc;
    line-height: 25px;
    display: block;
    padding: 0 20px;
    border: 0px solid #A6CC93;
}
.maplist li a:hover {
    text-decoration: none;
    background: #FFF;
}
.maplist .depth1 {
    font-weight: bold;
    text-indent: 0px;
    font-weight: bold
}
.maplist .depth2 {
    text-indent: 2em
}
.maplist .depth3 {
    text-indent: 4em
}
.maplist .depth4 {
    text-indent: 6em
}
.maplist .depth5 {
    text-indent: 8em
}
.maplist .depth6 {
    text-indent: 10em
}

/*==========@@公共板块  结束@@==========*/

/*==========@@通用列表 开始@@==========*/

/*文字列表*/
.textlist {}
.textlist li {
    line-height: 28px;
    height: 28px;
    text-indent: 8px;
    background: url(http://luofanyi.com/App/Tpl/Home/Default/Public/images/textlist.gif) no-repeat 0 center;
    overflow: hidden;
    width: 100%;
    /*解决ie6bug*/
    
    padding: 4px 0;
}
.textlist li a {}
.textlist li:hover {
    background-color: #eee;
}
.textlist li .InfoTime {
    float: right;
}

/*橱窗列表*/
.gridlist {}
.gridlist li {
    width: 370px;
    float: left;
    margin: 0 30px 20px 0;
}
.gridlist li.n2 {
    margin-right: 0;
}
.gridlist li a {
    display: block;
}
.gridlist li .imgscale_animate {
    position: relative;
}
.gridlist li a img {
    width: 100%;
    display: block;
}
.gridlist li .imgscale_animate .item_mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: rotateX(180deg) scale(0.5, 0.5);
    transform: rotateX(180deg) scale(0.2, 0.2);
}
.gridlist li .imgscale_animate .item_mask .item_link_icon {
    width: 38px;
    height: 38px;
    background: url(../image/link.png) no-repeat center;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -21px 0 0 -21px;
}
.gridlist li:hover .imgscale_animate .item_mask {
    opacity: 1;
    -webkit-transform: rotateX(0deg) scale(1, 1);
    transform: rotateX(0deg) scale(1, 1);
    background: #444;
    background: rgba(2, 31, 75, 0.3);
    transition: all 1s cubic-bezier(.23, 1, .38, 1) 0s;
}
.gridlist li .info_wrap {}
.gridlist li .info_wrap .InfoTitle1 {
    height: 24px;
    font-size: 16px;
    color: #333;
    margin: 16px 0 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #E1E1E1;
}
.gridlist li:hover a .info_wrap .InfoTitle1 {
    border-color: #00c0ff;
}
.gridlist li .info_wrap .InfoTitle1 span {
    font-size: 12px;
    color: #9F9F9F;
    margin-left: 10px;
}
.gridlist li .info_wrap p {
    font-size: 13px;
    line-height: 24px;
    height: 50px;
    overflow: hidden;
    color: #878787;
}

/*带缩略图文字列表*/
.thumblist {
    padding: 20px 0 40px;
    overflow: hidden;
}
.thumblist li {
    float: left;
    width: 282px;
    margin: 0 0 30px 14px;
}
.thumblist li.n0 {
    margin-left: 0;
}
.thumblist li:hover {
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}
.thumblist li .InfoTitle {
    background: #fff;
    border-top: 5px solid #e3e3e3;
    padding: 15px 30px;
    font-size: 15px;
    color: #333;
    line-height: 20px;
    height: 40px;
}
.thumblist li:hover .InfoTitle {
    border-color: #00c0ff;
}
.thumblist li .imgscale_animate {
    position: relative;
}
.thumblist li .imgscale_animate img {
    width: 100%;
}
.thumblist li .item_mask {
    content: "";
    width: 100%;
    height: 100%;
    background: #444;
    background: rgba(0, 0, 0, .3);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform-origin: 50% 0;
    transition: all ease-out .3s;
}
.thumblist li:hover .item_mask {
    top: 0;
    opacity: 1;
    transition: all .5s cubic-bezier(.23, 1, .38, 1) 0s;
}
.thumblist li .item_link_icon {
    width: 38px;
    height: 38px;
    background: url(../image/link.png) no-repeat center;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -50px;
    margin: -21px 0 0 -21px;
}
.thumblist li:hover .item_link_icon {
    top: 50%;
}

/*带缩略图文字列表*/
.thumblist1 {
    overflow: hidden;
}
.thumblist1 li {
    float: left;
    width: 560px;
}
.thumblist1 li.n0 {
    margin: 0 50px 30px 0;
}
.thumblist1 li .imgscale_animate {
    float: left;
    position: relative;
    width: 32%;
    margin-right: 4%;
}
.thumblist1 li .imgscale_animate img {
    height: 148px;
}
.thumblist1 li .item_mask {
    content: "";
    width: 100%;
    height: 100%;
    background: #444;
    background: rgba(0, 0, 0, .3);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform-origin: 50% 0;
    transition: all ease-out .3s;
}
.thumblist1 li:hover .item_mask {
    top: 0;
    opacity: 1;
    transition: all .5s cubic-bezier(.23, 1, .38, 1) 0s;
}
.thumblist1 li .item_link_icon {
    width: 38px;
    height: 38px;
    background: url(../image/link.png) no-repeat center;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -50px;
    margin: -21px 0 0 -21px;
}
.thumblist1 li:hover .item_link_icon {
    top: 50%;
}
.thumblist1 li .info_wrap {
    float: right;
    width: 64%;
    margin-top: 10px;
}
.thumblist1 li .InfoTitle1 {
    /* background: #fff; */
    
    font-size: 16px;
    color: #222;
}
.thumblist1 li:hover .InfoTitle1 {
    color: #00c0ff;
}
.thumblist1 li .InfoTime {
    font-size: 12px;
    color: #BFBFBF;
    border-bottom: 1px dotted #d3d3d3;
    padding: 5px 0;
    line-height: 24px;
}
.thumblist1 li p {
    font-size: 14px;
    color: #878787;
    padding: 0 0 10px;
    line-height: 22px;
    height: 56px;
    overflow: hidden;
    margin-top: 20px;
}

/*带缩略图文字列表*/
.thumblist2 {
    overflow: hidden;
}
.thumblist2 li {
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
}
.thumblist2 li .imgscale_animate {
    float: left;
    position: relative;
    width: 16%;
}
.thumblist2 li .imgscale_animate img {
    height: 150px;
}
.thumblist2 li .info_wrap {
    float: right;
    width: 80%;
    margin-top: 10px;
}
.thumblist2 li .InfoTitle1 {
    background: #fff;
    font-size: 16px;
    color: #222;
}
.thumblist2 li:hover .InfoTitle1 {
    color: #00c0ff;
}
.thumblist2 li .InfoTime {
    font-size: 12px;
    color: #BFBFBF;
    border-bottom: 1px dotted #d3d3d3;
    padding: 5px 0;
    line-height: 24px;
}
.thumblist2 li p {
    font-size: 12px;
    color: #878787;
    padding: 0 0 10px;
    line-height: 22px;
    height: 56px;
    overflow: hidden;
    margin-top: 20px;
}

/*频道相册列表*/
.channelalbumlist {
    overflow: hidden;
}
.channelalbumlist li {
    float: left;
    margin-top: 10px;
}
.channelalbumlist li img {
    display: block;
    width: 290px;
    margin-right: 10px;
}

/*视频列表*/
.videolist {
    margin-top: 5px;
}
.videolist li {
    float: left;
    width: 280px;
    margin: 0 0 10px 14px;
    text-align: center;
}
.videolist li:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}
.videolist li.n0 {
    margin-left: 0;
}
.videolist li img {
    width: 100%;
}
.videolist li a {
    display: block;
    position: relative;
}
.videolist li .InfoTitle1 {
    display: block;
    padding: 10px 20px;
    text-align: center;
}
.videolist li .InfoTitle1 a {
    white-space: nowrap;
}
.videolist li i {
    position: absolute;
    width: 100%;
    opacity: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../image/play.png) center 40px no-repeat;
    cursor: pointer;
}
.videolist li:hover i {
    opacity: 1;
    background-position-y: center;
}

/*==========@@通用列表  结束@@==========*/

/*slide样式*/
.fp-slidesNav.bottom {
    bottom: 100px !important;
}
.section .fp-slidesNav.bottom ul li {
    width: 40px;
    margin: 0 10px;
}
.section .fp-slidesNav.bottom ul li a span {
    width: 36px;
    height: 2px;
    background: #fff;
    margin: -1px 0 0 -18px;
    border-radius: 0;
}
.section .fp-slidesNav.bottom ul li a.active span {
    background: #00c0ff;
    border-radius: 0;
    width: 36px;
    height: 2px;
    margin: -1px 0 0 -18px;
}
margin: -1px 0 0 -18px;

}