@charset "utf-8";
/* Erichuang vol1.2 */


/* @font-face {
    font-family: 'Helvetica Condensed'; 
    src:url(http://www.hongbull.com/DEMO/Fonts/HelveticaCondensed.woff);
    src: url(http://www.hongbull.com/DEMO/Fonts/HelveticaCondensed.eot) format('embedded-opentype'),
       url(http://www.hongbull.com/DEMO/Fonts/HelveticaCondensed.ttf) format('truetype'),
       url(http://www.hongbull.com/DEMO/Fonts/HelveticaCondensed.woff)  format('woff'),
} */


html {
    /* font-size: 85px; */
}

body {
    background: #fff;
    margin: 0;
    /* 中文 */
    /* font-family: '微软雅黑', '宋体', 'simsun', 'sans-serif'; */
   
    /* 英文 */
    font-family:'Arial', 'simsun', 'sans-serif';
    width: 100%;
    position: relative;
}

div,
dl,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
pre,
form,
fieldset,
input,
textarea,
blockquote {
    display: block;
    position: relative;    
    padding: 0;
    margin: 0;
}

img {
    border: 0;
    display: block;
    position: relative; 
    padding: 0;
    margin: 0;   
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

address,
cite,
code,
em,
th,
i {
    font-weight: normal;
    font-style: normal;
}


a {
    color: #444;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

a:hover {
    color: #007d9d;
    text-decoration: underline;
}

input[placeholder],
[placeholder],
*[placeholder] {
    color: #aaa;
    outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #aaa;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #aaa;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #aaa;
}
/* 设置textarea框提示内容的样式 */
textarea::-webkit-input-placeholder {
    font-size: 16px;
    color: #aaa;    
    font-family: "Times New Roman";
  } /*webkit 内核浏览器*/
  textarea::-moz-placeholder {
    font-size: 16px;
    color: #aaa;   
    font-family: "Times New Roman";
  } /*Mozilla Firefox 19+*/
  textarea:-moz-placeholder {
    font-size: 16px;
    color: #aaa; 
    font-family: "Times New Roman";
  } /*Mozilla Firefox 4 to 18*/
  textarea:-ms-input-placeholder {
    font-size: 16px;
    color: #aaa;     
    font-family: "Times New Roman";
  }
button,
input {
    outline: none;
    border: none;
}
.Show {
    display: block!important;
}
  
.Hide {
    display: none!important;
}

.ClearBoth {
    clear: both;
}
.FLeft{
    float: left;
}
.FRight{
    float: right;
}
.img1{
    width: 100%;
    height: auto;
}

.clearfix {
    *zoom: 1;
}

.clearfix:after {
    display: block;
    overflow: hidden;
    clear: both;
    height: 0;
    visibility: hidden;
    content: ".";
}


/*-----大屏电脑1920------------------------------------------------------------------------------------------------------------------------------*/

@media (min-width:1440px) {
    html {
        /* font-size: 100px */
    }
}

@media (max-width:1600px) {
    html {
        /* font-size: 100px */
    }
}


/* PC */

@media (min-width:600px) {
    html {
        /* font-size: 100px */
    }
    .Cen1200 {
        margin: 0 auto;
        width: 1200px;
    }
    .PC_Show {
        display: block!important;
        height: auto;
        overflow: hidden;
    }
    .Mobile_Show {
        display: none!important;
    }
}


/* Mobile */

@media (max-width:600px) {
    html {
        /* font-size: 100px; */
    }
    .Cen1200 {
        margin: 0 auto;
        width: 92%;
    }
    .PC_Show {
        display: none!important;
    }
    .Mobile_Show {
        display: block!important;
    }
}


/* 滚动条 */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}


/* 滚动槽 */

::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(33, 68, 124, 1); */
    border-radius: 5px;
    /* background: #FFF; */
   background-image: linear-gradient(to right,rgba(213,213,213,1),rgba(255,255,255,1));
}


/* 滚动条滑块 */

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #605B55;
    -webkit-box-shadow: inset 0 0 2px rgba(120, 120, 120, 1);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: #605B55;
}


/* 边角 即两个滚动条的交汇处 */

::-webkit-scrollbar-corner {
    background: #212121;
    border-radius: 1px;
}