/* CSS Document */
@charset "utf-8";
/*!
 * @名称：base.css
 * @功能：1、重设浏览器默认样式
 *       2、设置通用原子类
 */
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 
     */
html, body {
    font:12px \5FAE\8F6F\96C5\9ED1,arial,sans-serif;
    height: 100%;
    color: #333333;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,figure,footer,header,hgroup,menu,nav,section {
    margin: 0;
    padding: 0;
}
/* 要注意表单元素并不继承父级 font 的问题 */
body,button,input,select,textarea {
}

input,select,textarea {
    font-size: 100%;
}
/* 去掉 table cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* ie bug：th 不继承 text-align */
th {
    text-align: inherit;
}
/* 去除默认边框 */
fieldset,img {
    border: 0;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display: block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,acronym {
    border: none;
    font-variant: normal;
}

i, em, var {
    font-style: normal;
}
/* 去掉列表前的标识，li 会继承 */
ol,ul {
    list-style: none;
}
/* 对齐是排版最重要的因素，别让什么都居中 */
caption,th {
    text-align: left;
}

button {
    overflow: visible
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

/* 来自yahoo，让标题都自定义，适应多个系统应用 */
h1,h2,h3,h4,h5,h6 {
    font-size: 100%;
    font-weight: normal;
}
/* A链接  */
a {
    text-decoration: none;
    color: #333333;
}

a:hover,a:active{ text-decoration: none;}
a:focus {
  outline: none;
}

label{
  cursor: pointer;
}
/* 清除浮动 */
.clear {
    clear: both;
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
}

.clearfix:after {
    content: " ";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}
/* 设置显示和隐藏，通常用来与 js 配合 */
.hide {
    display: none;
}

.block {
    display: block;
}
/* 设置浮动，减少浮动带来的 bug */
.inline {
    display: inline;
}

.fb {
    font-weight: bold;
}

.f12px {
    font-size: 12px;
}

.f14px {
    font-size: 14px;
}

.f16px {
    font-size: 16px;
}

.f18px {
    font-size: 18px;
}

.f22px {
    font-size: 22px;
}

.left {
    float: left;
}

.right {
    float: right;
}


.toTop{
  position: fixed;
  right: 10px;
  bottom: 60px;
  z-index: 88;
  width: 40px;
  height: 40px;
    background:url(../images/goTop.jpg) no-repeat;
    background-size:100%;
    display:none; cursor: pointer;
}

.toTop:hover{
    filter:alpha(opacity=90);
    opacity:0.9;
    -moz-opacity:0.9;
}


.preloader {
    background-color: #ffffff;
    background-image: url("../images/preloader.gif");
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999999999;
}

.mb {
    z-index: 9997;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url(../images/mb.png) repeat;
    background-color:rgba(0,0,0,0.5);
    filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr=#40000000,endColorstr=#40000000);
    display:none;
}

article, aside, details, figcaption, figure, footer, header, nav, section, summary {
    display: block;
}

header {
    background: #F5F5F5;
    min-height: 70px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header h1 {
    margin: 0;
    padding: 0;
}

.logo {
    display: inline-block;
    padding: 7px 0;
}

.logo a {
    display: inline-block;
}


.container {
    width: 1100px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container2 {
    width: 1240px;
    margin-right: auto;
    margin-left: auto;
}


.navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.ve-menu{
  float: right;
}

.com-but{
  width: 120px;
  height: 38px;
  background: url("../images/com-but.png") no-repeat;
  float: left;
  margin-top: 8px;
  transition: .1s transform;
  transform: translateZ(0);
}


.com-but:hover{
  transform: scale(1.02, 1.02);
  transition: .1s transform;
}


.ve-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}

.ve-menu .ve-menu-pc a {
      display: inline-block;
    font-size: 14px;
    margin-right: 15px;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ve-menu-pc>li>a{
        height: 55px;
    line-height: 58px;
}

.ve-menu-pc>li>a:hover{
   color: #FDD100;
}

.ve-menu-pc>li>a.act{
      border-bottom: 3px solid #FDD100;
    font-size: 18px;
    font-weight: bold;
}

/* 一级菜单 */

.ve-menu > .ve-menu-pc > li {
      position: relative;
    float: left;
    padding: 0 5px;
    color: #999999;
}

.ve-menu > .ve-menu-pc > li:hover ul {
  display: block;
}


/* 二级菜单 */

.ve-menu > .ve-menu-pc > li > ul {
  position: absolute;
  top: 90px;
  left: 0;
  display: none;-webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; 
}

.ve-menu > .ve-menu-pc > li > ul > li {
  height: 40px;
}

.ve-menu > .ve-menu-pc > li > ul > li a{
  height: 40px;
  line-height: 40px;
  text-align: left;
  padding-left:20px;
}

.ve-menu > .ve-menu-pc > li > ul{
    -moz-box-shadow:10px 5px 50px 5px #ffffff; -webkit-box-shadow:10px 5px 50px 5px #ffffff; box-shadow:10px 5px 50px 5px #ffffff;
}

/* 移动端下的菜单 */

/* 菜单按钮 */
.ve-menu-icon {
  float: right;
  width: 20px;
  height: 21px;
  margin-right: 10px;
  overflow: hidden;
  /* 垂直居中用js动态计算 */
}

.ve-menu-icon > div {
  width: 100%;
  height: 3px;
  margin-top: 3px;
  /*background: #000;*/
  border-radius: 3px;
}

.ve-menu-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  /*background: #000;*/   
}

/* 一级菜单 */
.ve-menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /*color: #fff;*/
  overflow: hidden;
}

.ve-menu-mobile li {
  width: 100%;
  /*color: #fff;*/
}

.ve-menu-mobile li a {
  padding: 15px 0;
  border-bottom: 1px solid #333;
}

/* 二级菜单 */
.ve-menu-mobile ul {
  display: none;
}

.ve-menu-mobile  ul li a {
  /*background: #222;*/
}

.ve-menu-close {
  overflow: hidden;
}

.ve-menu-close > div {
  float: right;
  padding: 0 10px;
}

.ve-menu-close > div:after {
  font-size: 35px;
  content: '\00d7';
}


.contact{
  margin-top: 100px;
  width: 950px;
  height: 556px;
  min-width: 950px;
}


.form{
  width: 1100px;
  margin:0 auto;
  padding-top: 30px;
  font-size: 16px;
  z-index: 3;
    position: relative;
}



.item-contact{
  width: 950px;
  height: 556px;
  margin:0 auto;
  background: url("../images/footer-img.png") no-repeat;
  -moz-box-shadow:0px 0px 40px #c5c5c5; -webkit-box-shadow:0px 0px 20px #c5c5c5; box-shadow:0px 0px 40px #c5c5c5;
}

.form .item-contact{
    padding: 40px 60px;
    box-sizing: border-box;
}

.item-input span{
      display: inline-block;
    padding: 0 20px 10px 0;
    width: 90px;
    height: 30px;
    line-height: 30px;
    text-align: right;
}

.item-input input[type='radio']{
  vertical-align: sub;
}

.item-input span i{
 color: red; font-weight: bold;
  }

.item-input{
  padding:10px 0;
}

.item-input button{
      width: 160px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    color: #ffffff;
  }

.item-input button:hover{
  opacity:0.8;
    filter:alpha(opacity=80);
}


.item-input button:nth-child(2){
background: #3E71FC;margin-right: 30px;
}
.item-input button:nth-child(3){
background: #FF4A0C;
}


.item-contact .item-input:last-child{
  padding: 30px 0 0 0;
}

.item-input input[type='text']{
  height: 30px;
  line-height: 30px;
  border:0;
  border-bottom:1px solid #E5E5E5;
  background: none;
  padding:0 20px;
  margin-right: 10px;
  width: 320px;
}


.item-input textarea{
  border-radius: 5px;
  border:1px solid #E5E5E5;
  padding:10px 20px;
  vertical-align: top;
  width: 360px;
  height: 80px;
  box-sizing: border-box;
      font: 16px \5FAE\8F6F\96C5\9ED1,arial,sans-serif;
}
.center{
    padding: 20px 0 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


.foot_l {
    display: inline-block;
}

.f-line {
    width: 60px;
    height: 3px;
    background-color: #ffffff;
    display: block;
    margin-bottom: 45px;
}

.foot-logo {
    width: 115px;
    height: 111px;
    background: url("../images/foot_logo.png") no-repeat;
    display: inline-block;
}

.foot_r {
    float: right;
}

.foot_r span {
    display: block;
    color: #ffffff;
    line-height: 32px;
}


input[type=radio]{
        /*去除浏览器默认样式*/
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        /*自定义样式*/
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 20px;
        height: 20px;
        border: 1px solid #333333;
        outline: none;
        cursor: pointer;
        /*设置为圆形，看起来是个单选框*/
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
    }
 
    /**
    * 单选框 选中之后的样式
    **/
    input[type=radio]:after{
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
        display: block;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        background: #333333;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 12px;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
        /*增加一些动画*/
        -webkit-transition : all ease-in-out 300ms;
        -moz-transition : all ease-in-out 300ms;
        transition : all ease-in-out 300ms;
    }
    input[type=radio]:checked:after{
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }


footer {
    min-height: 160px;
    padding: 120px 0 80px 0;
    background: #222222;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: -70px;
    z-index: 1;
}

.foot_l {
    display: inline-block;
}

.foot_l p{
        display: block;
    color: #ffffff;
    line-height: 32px;
    font-size: 22px;
}

.f-line {
    width: 60px;
    height: 3px;
    background-color: #ffffff;
    display: block;
    margin-bottom: 45px;
}

.foot-logo {
    width: 115px;
    height: 111px;
    background: url("../images/foot_logo.png") no-repeat;
    display: inline-block;
}

.foot_r {
    float: right;
}

.foot_l span {
    display: block;
    color: #ffffff;
    line-height: 32px;
}


.foot_r span {
    display: block;
    color: #ffffff;
    line-height: 32px;
}

.foot_l span>i{
    display: inline-block;
    width: 28px;
    padding-right: 5px;
    vertical-align: middle;
}

.foot_l span>i>img{
    display: block;
    width: 28px;
    padding-bottom: 4px;
}


.foot_r span i{
    display: inline-block;
    width: 28px;
    padding-right: 5px;
    vertical-align: middle;
}

.foot_r .beian a i{
    display: inline-block;
    width: 28px;
    padding-right: 5px;
    vertical-align: middle;
}


.foot_r span>i>img{
    display: block;
    width: 28px;
    padding-bottom: 4px;
}

header,footer{
    min-width: 1100px;
}

header{
    position: fixed;
    top:0;
    left: 0;
    z-index: 998;
    width: 100%;
}



/* body{
  background: url("../images/bg.png") center repeat-y;
} */
