

/*注：：通用样式设置大部分在这个文件夹，
其他单独页面的样式设置在Style0518.css文件里面*/


/*以下样式都是标签全局设置*/
 @font-face {
	        font-family: ChineseNewWei;
	        src: url("../fonts/Chinese New Wei.ttf");
        }    
html {
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
}

body { /*font: normal .80em 'trebuchet ms', arial, sans-serif*/
    font: normal 17px/1.8em Arial, Helvetica, sans-serif;
    background:#fff;
    color:#1d1b11;
    overflow-y:scroll;
}

p {
    padding: 5px;
    text-align: justify;
}
h1, h2, h3, h4, h5, h6 { /*font: normal 250% 'Yanone Kaffeesatz', arial, sans-serif;*/
    
    margin: 0;
    padding: 0;
}
a {
    outline: none;
    text-decoration: none;
    color: #2da1eb;
}

a:hover {
        text-decoration: underline;
        color: #0a3de2;
    }

.left {
    float: left;
    width: auto;
    margin-right: 10px;
}

.right {
    float: right;
    width: auto;
    margin-left: 10px;
}

.center {
    display: block;
    text-align: center;
    margin: 20px auto;
}
.clear{
    clear:both;
}

#main, #header, #logo, #menubar, #site_content, #footer {
    margin-left: auto;
    margin-right: auto;
}
table tr th, table tr td {
    padding: 2px 10px;
}
table tr th{
    text-align:center;
}
table tr td{
    text-align:left;
}

  
/*结束*/


/*主页头部*/
#header {
    width: 100%;
    position:relative;
}

.JuZhong { /*母版两块共用*/
    max-width: 1200px;
    margin: 0px auto;
}
/*最上面的大图*/
.banner {
    width: 100%;
    /*min-width: 1200px;*/
    position: relative;
    z-index: -1;
    margin-bottom: -8px;
}
.banner img{
    width:100%;
    height:100%;
}
.banner_a {
    padding: 8px 30px;
    background: #2da1eb;
    position: absolute;
    right: 10%;
    bottom: 50px;
    color: #fff;
    font-size: 20px;
}
.banner_a:hover{
    color:#fff;
}
/**/
    /*导航栏*/
    /*设置导航栏上面固定*/
    .logo1{
    line-height:23px;
}
.logo1 img{
    /*margin:10px 20px 0 0;*/
    width:40px;
}
.logo1>strong,.logo1>span{
    display:inline-block;
    font-family:"Helvetica Neue";
}
    .logo1 > strong {
        font-size: 16px;
        color: #a1eb2d;
        float: left;
        margin: 10px 0 0 0;
        text-align: center;
    }
.logo1>span{
    font-size:18px;
    line-height:69px;
    margin-left:10px;
}
@media screen and (max-width: 900px) {
    .logo1 > span {
        display: none;
    }

    .logo1 > strong {
        padding-left: 10px;
    }
}
.logo2{
    position:fixed;
    top:0;
    right:0;
    z-index:60;
    height:80px;
}
.logo2 img{
    opacity:0.7;
}
.menu_Container{
    height: 118px; 
    background-color: #fff; 
    z-index: 50; 
    position: relative;
}
.menu_fixed{
    position: fixed;
    width: 100%;
}  
.menu_backColor1{
    background-color: #2da1eb;
}
.menu_backColor2 {
    background-color: #fff; /*背景色白色*/
height: 80px;
}
/**/
#menubar {
    height: 44px;
    width: 100%;
    /*max-width: 1100px; /*最大宽度*/
    margin: 0 auto; /*边距上下左0，右边自动*/
    position: relative;
    justify-content: space-between;
}
#menu {
    float: left; /*向左浮动*/
    position: relative;
    white-space: nowrap;
}

#menu li {
        float: left;
        list-style: none; /*移除列表项目的默认样式*/
        color: #000; /*字体颜色 黑色*/
        position: relative;
}
#menu li a {
        font: normal 18px/0.9em "Helvetica Neue", Helvetica, sans-serif;
        text-decoration: none; /*移除链接的默认下划线*/
        color: #000; /*字体颜色 黑色*/
        display: block; /*将元素设置为块级元素*/
        float: left; /*使元素向左浮动*/
        height: 20px;
        line-height: 20px;
        padding: 11px 20px; /*设置元素的边距（上11px，右20px，下11px，左20px）*/
        text-align: left;
}

/*“menu”元素内的列表项目（li）元素中具有类名称“current”的链接（a）元素*/
#menu li.current a { 
        background-color: #a1eb2d;
        /*color: #FFF2CC;*/
        color: #fff;
        padding: 11px 15px;
}
/*在鼠标悬停时*/
    #menu li a:hover {
        color: #FFF2CC;
        background-color: #9f9e9e;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
    }

.menu_En li a {
    padding: 11px 12px !important; /*设置链接的边距（上11px，右12px，下11px，左12px）且重要度为重要（覆盖其他样式）*/
}

/*在鼠标悬停时显示的子菜单（show）元素*/
#menu li:hover .show{
    display: block; /*将子菜单显示出来*/
}

.show {
    display: none; /*默认情况下隐藏子菜单*/
    position: absolute; /*将子菜单定位为绝对定位*/
    top: 41px; /*设置子菜单的顶部位置为52像素*/
    z-index: 22; /*设置子菜单的堆叠顺序为22*/
    background-color: #2da1eb;
}
.show li {
        float: none !important; /* 移除列表项目的浮动样式*/
        width: 100%;
}
    .show li a {
        margin: 0 !important; /* 移除链接的边距*/
        text-align: left;
    }

.show_En li a:first-child {
    width: 190px; /*设置第一个子链接的宽度为190像素*/
}

/*导航栏设置结束*/

/*轮播图设置*/
.MP_LunBo {
    width: 100%;
    height:100%;
    margin:0 auto ;
    overflow:hidden;
    overflow-x: hidden;
    position: relative;
    /*box-shadow: 0px 1px 8px 0px #000;*/
}
.MP_LunBo a:hover{
    text-decoration:none;
    color:#fff;
}
.MP_LunBo ul{
    width:300%;
    position: absolute;
    top: 0;
    left: 0;
    list-style:none;margin:0;
}
.MP_LunBo li{
    list-style:none;

}
.MP_LunBo ul li{
    float:left;
    padding:0;
    height:100%;
    position:relative;
}
.MP_LunBo img {
        width: 100%;
        height: 100%;
        display:block;
}
/*文字设置*/
.banner_txt{
    position:absolute;
   top:50%;
   left:50%;
   transform:translate(-50%,-50%);
   -ms-transform:translate(-50%,-50%);
   -webkit-transform:translate(-50%,-50%);
   -o-transform:translate(-50%,-50%);
   -moz-transform:translate(-50%,-50%);
   z-index:15;
   color:#fff;
    width:100%;
}

.banner_txt1{
}
.banner_txt p{
   margin:2px  auto;
}
.blod{
    font-family:Britannic;
    text-align:center;
    padding:2%;
}
.blod2Cn{
    font-family:ChineseNewWei!important;
}
.blod3,.blod{
    color:#a1eb2d;
}
.blod2,.blod3{
    font-family:Britannic;
}
.blod2 {
    text-align: left;
    padding: 3% 7%;
    color: #000;
    background-color: #2da1eb;
    box-shadow: 0px 0px 20px #8ea4a9 inset;
}
.MP_LunBoIcon{
    width:15%!important;
    height:initial!important;
    position:absolute;
    top:20%;
    right:10%;
    z-index:20;
}
.blod3{
    display:block;
    text-align:right;
    margin-top:4%;
}
.banner_txt2,.banner_txt2 .blod{
    color:#262626;
}
.text2 p:first-child,.banner_txt2 .blod{
    text-align:center;
     -webkit-text-stroke: 0.5px #fff;
    text-shadow:0px 1px 8px #609dd4;
}
.text2 p:last-child{
    text-align:center;
    margin-top:1%;
}
.text2 p:last-child strong{
    display:inline-block;
    font-family:'Times New Roman';
}
.text2 p:last-child strong:last-child{
    text-align:left;
    margin-left:30%;
}
/*大于1200px的大图文字设置*/
@media screen and (min-width: 1200px){
    .banner_txt {
        font-size:37px;
        line-height:47px;
    }
    .blod {
        font-size: 65px;
    }
    .text2 p:last-child{
        font-size:30px;
    }
}
/*在768px和1199px之间的的大图文字设置*/
@media screen and (min-width: 900px) and (max-width: 1199px){
     .banner_txt {
        font-size:25px;
        line-height:35px;
    }
    .blod {
        font-size: 41px;
    }
    .text2 p:last-child{
        font-size:18px;
    }
}
/*小于768px的大图文字设置*/
@media screen and (min-width: 640px) and (max-width: 899px){
    .banner_txt {
        font-size:16px;
        line-height:26px;
    }
    .blod {
        font-size: 36px;
    }
    .text2 p:last-child{
        font-size:12px;
    }
}
@media screen and (max-width: 639px) {
    .banner_txt {
        font-size:11px;
        line-height:10px;
    }
    .blod {
        font-size: 24px;
    }
    .text2 p:last-child{
        font-size:10px;
        line-height:13px;
    }
}


.arrow-l,
.arrow-r {
    display: none;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 26px;
    height: 40px;
    background: rgba(0, 0, 44, .8);
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 26px;
    z-index: 20;
}
.arrow-r {
    right:0;
}
.circle {
    position: absolute;
    bottom: 10px;
    left: 50px;
}

.circle li {
    float: left;
    width: 8px;
    height: 8px;
    /*background-color: #fff;*/
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin: 0 3px;
    border-radius: 50%;
    /*鼠标经过显示小手*/
    cursor: pointer;
}
/*主页面的右边的背景图设置*/
.MP-tu{
      color: #212529; 
      text-align: left; 
      line-height: 60px; 
      font-size: 22px;
      padding-left:20px;
}
/**/
/*倒计时*/
#colockbox1 {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    padding: 20px;
    margin: 10px;
}


.sidebar p {
    padding-left: 18px;
    padding-bottom: 0px;
    margin-bottom: 5px;
}

.paperclip {
    float: left;
    position: relative;
    z-index: 0;
    vertical-align: middle;
    margin: -27px 0 -60px -130px;
}
/*右侧侧边栏 结束*/

/*内容栏、右侧侧边栏宽度响应式布局设置*/
@media screen and (min-width: 1200px){
    #content{
        width:100%;
        float: left;
    }
    .MP-click{
        display:none;
    }
}

@media screen and (max-width: 1100px){
    .toggle{
    display:none;
}
    .MP-click{
        display:block;
        float:right;
        position:relative;
        margin: 0% 2% 0 10px;
        padding: 11px 0 0 0;
    }
    .MP-click div{
        border-top:4px solid #000;
        padding-top:6px;
        width:35px;

    }
    .MP-click div div div{
        padding-top:0;
    }
    #menu{
        width:180px;
        position:absolute;
        top:55px;
        right:0;
        z-index:30;
        background-color:#fff;

    }
    .menu_En{
    width:213px!important;
}
    #menu li{
        float: none;
    }
    #menu li a{
        float:none;
        margin-top:0;
    }
}

/*内容栏，其他页面的通用设置*/
#content {
    margin: 0;
    text-align: left;
    box-sizing:border-box;
    padding:0 10px;
}

    #content ul {
        margin: 2px 0 0px 14px;
    }

        #content ul li ,#content ol li{
            list-style-type: none;
            line-height: 1.5em;
        }
        
/*结束*/

/*底部设置*/
#footer {
    clear: both;
    width: 1100px;
    height: 200px;
    font: normal 150% /*'yanone kaffeesatz',  arial, sans-serif*/;
    padding: 20px 0 5px 0;
    text-align: center;
    color: #555;
    background: transparent;
    margin-bottom: 20px;
}

    #footer p {
        padding: 0 0 10px 0;
    }

    #footer a, #footer a:hover {
        color: #555;
        text-decoration: none;
    }

        #footer a:hover {
            color: blue;
            text-decoration: none;
        }

.MP-div {
    background-color: white;
    padding: 10px 10px 0px 10px;
    color: #F14E23;
    border: 1px solid #E7E7E7;
    width: 1080px;
    margin: auto;
}

.MP-span1 {
    font-size: 25px;
    text-align: left;
    color: #2C76C7;
}

#owl-demo {
    padding: 0px 0px 5px 0px;
    margin: 0px;
}

.MP-p1 {
    width:100%;
    background-color: #2da1eb;
    padding: 10px 10px 10px 10px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    box-sizing:border-box;
}
