/*
   文件名：common.css
   备注：页面公用css文件
   版本：v2.0
 Created by lc on 2016-03-03.
 Copyright 2016 lc. All rights reserved.
*/
/*页面初始化    #########################################################################################*/
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea, th,td,menu,nav,img{
    margin: 0;
    padding: 0;
    font-family:"微软雅黑","Microsoft Yahei",arial,"times new roman";
}
html,body {
    height:100%;
    color: #333;
    background: #fff;
    font-size: 14px;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
}
em{
    font-style: normal;
}
mark{
    background:none;
}
small {
    font-size: 12px;
}
ul, ol {
    list-style: none;
}
a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
    outline: none;
}
ins{
    text-decoration: none;
}
a:hover {
    color: #D22222;
}
legend {
    color: #333;
}
fieldset, img {
    border: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td {
    text-align: left;
}
img {
    border: none;
    -ms-interpolation-mode: bicubic;
}
label, button {
    cursor: pointer;
}

.img-box{
    display: block;
    overflow: hidden;
    width: 100%;
    border: 1px solid #EDEDED;
}
.img-box img{
    display: block;
    width: 100%;
}
/*页面初始化 end#########################################################################################*/
/*公用样式      #########################################################################################*/
.clearfix:after {
    content: '\20';
    display: block;
    height: 0;
    clear: both;
}
.clearfix {
    zoom: 1;
}
.clear {
    clear: both;
    height: 0;
    line-height: 0;
    font-size: 0;
    visibility: hidden;
    overflow: hidden;
}
.hide {
    display: none;
}
.wrapper{
    width: 1200px;
    margin: 0 auto;
    position: relative;
    *z-index: 0;
}
.float-left{
    float: left;
}
.float-right{
    float: right;
}
.error-tips{
    display: none;
    color: #D22222;
    padding-left:20px;
    background: url(../images/error-ico.png) no-repeat left center;
}
/*表单样式*/
input,textarea,select,input:focus,textarea:focus,select:focus,a:focus{
    outline: none;
}
input[type=button],input[type=button]:active{
    border: none;
    outline: none;
}
input[type=text],input[type=text]:active,textarea,textarea:active,.text-input{
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #ddd;
    height: 30px;
    line-height: 30px;
    padding:2px 10px;
}
.text-input input,.text-input input:active{
    border: none;
    padding: 0;
    position: relative;
    width: 100%;
}
.select-box{
    display: inline-block;
    position: relative;
    padding: 0 10px;
    line-height: 35px;
    height: 35px;
    border: 1px solid #ddd;
    padding-right: 15px;
    width: 150px;
}
.select-box i{
    border: 5px solid #fff;
    border-top: 5px solid #ddd;
    width: 0;
    height: 0;
    overflow: hidden;
    display: block;
    position: absolute;
    right: 5px;
    top: 15px;
}
.select-box select{
    display: block;
    height: 35px;
    line-height: 35px;
    width: 175px;
    position: absolute;
    left: 0;
    top: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;
    z-index: 1;
}
/*按钮样式*/
.btn {
  display: inline-block;
  *display: inline;
  padding: 8px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 14px;
  color: #333333;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: #f2f2f2;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  *zoom: 1;
  border: none;
  border: 1px solid #ddd;
}
.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
  color: #333333;
  background-color: #e6e6e6;
}
.btn:first-child {
  *margin-left: 0;

}

.btn:hover,
.btn:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
     -moz-transition: background-position 0.1s linear;
       -o-transition: background-position 0.1s linear;
          transition: background-position 0.1s linear;
  outline: none;
}

.btn.active,
.btn:active {
  background-image: none;
  outline: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn.disabled,
.btn[disabled]{
  cursor: default;
  background-image: none;
  filter: alpha(opacity=65);
  -moz-opacity: 0.65;
  opacity: 0.65;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  background: #EDEDED;
  color: #999;
}
.btn.disabled:hover,
.btn[disabled]:hover{
    background: #EDEDED;
     color: #999;
}
.btn-large {
  padding: 12px 19px;
}
.btn-large [class^="icon-"],
.btn-large [class*=" icon-"] {
  margin-top: 4px;
}
.btn-small {
  padding: 2px 10px;

}
.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
  margin-top: 0;
}
.btn-mini [class^="icon-"],
.btn-mini [class*=" icon-"] {
  margin-top: -1px;
}
.btn-mini {
  padding: 0 6px;
  font-size: 10.5px;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
  color: #E4E4E4;
  color: rgba(255, 255, 255, 0.75);
}
.btn-primary {
  color: #ffffff;
  background-color: #006dcc;
  border: 1px solid #006dcc;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active{
  color: #ffffff;
  background-color: #0044cc;
}
.btn-warning {
  color: #ffffff;
  background-color: #faa732;
  border: 1px solid #faa732;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active{
  color: #ffffff;
  background-color: #f89406;

}

.btn-danger {
  color: #ffffff;
  background-color: #D22222;
   border: 1px solid #D22222;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active{
  color: #ffffff;
 background-color: #BC1E1E;
}
.btn-success {
  color: #ffffff;
  background-color: #5bb75b;
  border: 1px solid #5bb75b;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active{
  color: #ffffff;
  background-color: #51a351;
}
.btn-info {
  color: #ffffff;
  background-color: #7FB9DB;
  border: 1px solid #7FB9DB;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active {
  color: #ffffff;
  background-color: #5199C3;
}
.btn-inverse {
  color: #ffffff;
  background-color: #363636;
  border:1px solid #363636;
}
.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active{
  color: #ffffff;
  background-color: #222222;
}
button.btn,
input[type="submit"].btn {
  *padding-top: 5px;
  *padding-bottom: 5px;
}
button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button.btn.btn-large,
input[type="submit"].btn.btn-large {
  *padding-top: 8px;
  *padding-bottom: 8px;
}
button.btn.btn-small,
input[type="submit"].btn.btn-small {
  *padding-top: 3px;
  *padding-bottom: 3px;
}
button.btn.btn-mini,
input[type="submit"].btn.btn-mini {
  *padding-top: 1px;
  *padding-bottom: 1px;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.btn-link {
  color: #0088cc;
  cursor: pointer;
  border-color: transparent;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.btn-link:hover,
.btn-link:focus {
  color: #005580;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
.btn-link[disabled]:focus {
  color: #333333;
  text-decoration: none;
}
.btn[disabled]{
    border: 1px solid #ddd;
}

/*对齐*/
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.text-center{
    text-align: center;
}
/*字体颜色*/
.color-red{
    color: #D22222;
}
.color-gray{
    color: #999;
}

.color-blue{
    color: #4083A9;
}
.color-green{
    color: #3FAD51;
}
/*弹窗口样式*/
.layer{
    /* background: url(../images/transparent_forIE.png); */
    background: rgb(0,0,0,.4);
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
}
.pop_window{
    display: block;
    position: fixed;
    width: 800px;
    height: 400px;
    margin-top: -200px;
    margin-left: -400px;
    top: 50%;
    left: 50%;
    z-index: 1001;
    background: #fff;
    border: 1p solid #ddd;
}
.pop_window_header{
    padding:0 20px;
    height: 40px;
    line-height: 40px;
    background: #F2F2F2;
    border-bottom: 1px solid #ddd;
    position: relative;
    font-weight: bold;
}
.pop_window_header a.close_pop_window{
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 20px;
    color: #000;
    font-weight: bold;
    position: absolute;
    right: 10px;
    top: 12px;
}
.pop_window_header a.close_pop_window:hover{
    text-decoration: none;
    color:#F23100;

}
.pop_window_border{
    padding: 20px;
}
/*弹窗样式end*/

/*弹窗登录样式*/
.other-login-link {
    display: block;
    cursor: pointer;
    width: 270px;
    margin:0 auto 15px auto;
    height: 36px;
    line-height: 36px;
    text-align: center;
    text-indent: 35px;
    font-size: 16px;
    border-radius: 3px;
    color: #fff;
    background: url(http://www.elecfans.com/skin-2014/images/other-login.png) no-repeat;
}
.other-login-link:hover {
    color: #fff;
    text-decoration: none;
}
.sina-login-link {
    background-color: #FA8C35;
    background-position: 45px 3px;
}
.qq-login-link {
    background-color: #0C95D9;
    background-position: 45px -42px;
}
/*弹窗登录表单*/
.login-form {

    border-top: 1px dotted #E5E5E5;
    width: 270px;
    position: relative;
    margin: 0 auto;
    margin-top: 20px;
    padding-top: 5px;
}
.login-line {
    position: absolute;
    left: 110px;
    top: -12px;
    background-color: #fff;
    display: inline-block;
    font-size: 14px;
    color: #ccc;
}
.login-form-item {
    width: auto;
    height: auto;

}
.login-input,.login-form-tip,.forgetPw,#back-login-link {
    background: url(http://www.elecfans.com/skin-2012/images/login-ico1.png) no-repeat;
}
input.login-input,input.login-input:active {
    width: 225px;
    padding: 7px 5px 7px 40px;
    border: 1px solid #D0CECF;
    border-radius: 3px;
    font-family: \5fae\8f6f\96c5\9ed1;
    font-size: 16px;
    line-height: 20px;
    height: 20px;
    margin-top: 15px;
}
.li .red-bor {
    border: 1px solid red;
}
.login-input:focus {
    border-color: #4aabff;
}
.login-input-username {
    background-position: 8px 5px;
}
#password {
    background-position: 8px -33px;
}
/*loading*/
.btn-area {
    padding: 15px 0;
    line-height: normal;
}
.btn-area .btn {
    width: 80px;
    height: auto;
    line-height: 21px;
    background-image: none;
    text-align: center;
    float: left;
    padding: 3px 20px;
    background-color: #C80C00;
    border: none;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
}
.btn-area .btn:hover {
    background: #c20;
    color: #fff;
    text-decoration: none;
}
.login-submit,.lostpw-submit {
    padding: 5px 30px;
    font-size: 16px;
    margin: 0;
}
.forgetPw,.regist,.remember{
    color: #1EA3E4;
    padding-right: 48px;
    background-position: right -103px;
    float: left;
    margin-top: 10px;
    margin-left: 20px;
}
.regist{
    padding-right: 0;
}
.forgetPw:hover {
    text-decoration: none;
}
.login-form-tip {
    display: none;
    line-height: 24px;
    width: 243px;
    padding-left: 27px;
    background-position: 0 -73px;
    font-size: 14px;
    margin-top: 10px;
    color: #F22E00;
}
.login-form-tip.tip-show {
    display: block;
}
/*忘记密码*/
.lostpw-form {
    width: 270px;
    margin: 0 auto;
}
.login-input-email {
    background-position: 8px -124px;
}
#back-login-link {
    padding-left: 52px;
    background-position: 0 -231px;
}
.btn.btn_loading,.btn.btn_loading:hover{
    background-image: url(http://skin.elecfans.com/images/loading.gif);
    background-repeat: no-repeat;
    background-position: 5px center;
}
.success-tip ,.error-tip{
    padding: 40px 30px 30px 130px;
    background:url(http://skin.elecfans.com/images/tip-ok.jpg) no-repeat 50px 22px;
    font-size: 20px;
}
.error-tip{
    background: url(../images/error.png) no-repeat 31px 0px;
    padding: 9px 30px 15px 112px;
}
/*弹窗登录样式 end*/
/**art-dialog.css样式覆盖**/
.ui-dialog{
        border: 8px solid #d8d8d8;
}
.ui-dialog-header{
    background: #F6F6F6;
    color: #555;
    font-size: 20px;
    line-height: 50px;
}
.ui-dialog-title{
    font-weight: normal;
}
.ui-dialog-close{
    font-size: 28px;
    top: 17px;
}
/**art-dialog.css样式覆盖**/

/*图标*/
.icon{
    display: block;
    padding: 0px;
    margin: 0;
    background-image: url(../images/icons.png?t=20160229);
    background-repeat: no-repeat;
}

/*公用样式    end########################################################################################*/

/*页头样式     ########################################################################################*/
.g-clear:after {
    visibility:hidden;
    display:block;
    font-size:0;
    content:" ";
    clear:both;
    height:0;
}
.g-clear {
    zoom:1; /* for IE6 IE7 */
}
.g-left,
.g-right {
    display:inline;
}
.g-left {
    float:left;
}
.g-right {
    float:right;
}
.g-top {
  font-size: 12px;
    width: 100%;
    background:#f1f1f1;
    border-bottom: 1px solid #e4e4e4;
    height: 30px;
    line-height: 30px;
    position: relative;
    z-index: 999;
    margin-bottom: 109px;
}
.g-log li a{ color: #666; }

.iconfont{
    font-size: 12px;
    vertical-align: top;
}

.g-top-inner .like,.g-top-inner .tel{
    font-size: 10px;
    margin-right: 5px;
    vertical-align: top;
}
.g-top-inner { margin:0 auto; width: 1200px; height: 30px; line-height: 30px; color:#666; }
.g-top-bar{
    position: absolute;
    left: 0;
    top: 56px;
    z-index: 99;
    width: 100%;
    height: 49px;
    background-color: #fff;
}
.g-top-bar-fixed{
    position: fixed;
    top: 0;
    box-shadow: 0 2px 5px #ccc;
}
.g-top-bar-fixed .hot-search-tag{
    display: none;
}
.g-top-bar-fixed .g-logo img{
    height: 35px;
    margin-top: 7px;
}
.g-top-bar .main{
    margin: 0 auto;
    width: 1200px;
}
.g-logo{
    float: left;
}
.g-logo:hover{color: #333;}
.g-search-bar{
    position: absolute;
    left: 50%;
    top: 5px;
    margin: 0 0 0 -120px;
}
.g-search-bar form{
    float: left;
    overflow: hidden;
    padding: 2px;
    background-color: #c00;
    border-radius: 2px;
}
.g-search-bar .search-text,.g-search-bar .search-text:focus{
    float: left;
    padding: 0 12px;
    width: 400px;
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    border: none;
    border-width: 0;
    border-radius: 0;
}
.g-log li { position: relative; display: inline-block; float: left; padding: 0 11px 0 12px; }
.g-search-bar .search-text:focus{
    box-shadow: 0 0 3px #999 inset;
    outline: none;
}
.g-search-bar .search-btn{
    float: left;
    width: 80px;
    height: 35px;
    line-height: 35px;
    background-color: #c00;
    color: #fff;
    font-size: 15px;
    border: none;
    cursor: pointer;
}
.g-cart-btn{
    position: relative;
    margin-top: 6.5px;
    float: right;
    height: 34px;
    line-height: 35px;
    padding: 0 20px;
    background-color: #f9f9f9;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
    font-size: 13px;
    color: #666;
}
.g-cart-btn .cart-flag{
    margin-right: 5px;
    font-size: 18px;
    color: #666;
}
.g-cart-btn .r-arrow{
    margin-left: 5px;
    font-size: 8px;
    vertical-align: middle;
}
.g-cart-btn .cart-num{
    position: absolute;
    top: -4px;
    right: 25px;
    background-color: #df0c1e;
    border-radius: 7px 7px 7px 0;
    padding: 1px 3px;
    line-height: 12px;
    font-size: 12px;
    font-style: normal;
    color: #fff;
}
.nav-slide-down{
    float: left;
    position:relative;
    z-index:1;
    margin-left: -11px;
    padding: 0 10px 0 20px;
    text-align: center;
    cursor: pointer;
}
.nav-slide-down .iconfont{
    margin-left: 5px;
    font-size: 18px;
    vertical-align: top;
}
.nav-slide-down .sub{
    position:absolute;
    display:none;
    left:0;
    top:30px;
    margin: 0 -1px;
    padding:5px 0;
    border: 1px solid #e4e4e4;
    border-top: none;
    line-height:26px;
    background:#fff;
    text-align: left;
}
.nav-slide-down .sub li{ zoom:1; padding: 0;width: 100%;}
.nav-slide-down .sub a{
    display:block;
    color: #666;
    white-space: nowrap;
    text-indent: 20px;
}
.nav-slide-down .sub a:hover{color: #c00;}
.nav-slide-drop{
    border: 1px solid #e4e4e4;
    border-top: none;
    background-color: #fff;
    padding: 0 9px 0 19px;
}
.nav-slide-drop .sub{display: block;}
/* 字体图标 */
@font-face {
  font-family: 'iconfont';
  src: url('http://at.alicdn.com/t/font_1456991098_505874.eot'); /* IE9*/
  src: url('http://at.alicdn.com/t/font_1456991098_505874.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('http://at.alicdn.com/t/font_1456991098_505874.woff') format('woff'), /* chrome、firefox */
  url('http://at.alicdn.com/t/font_1456991098_505874.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url('http://at.alicdn.com/t/font_1456991098_505874.svg#iconfont') format('svg'); /* iOS 4.1- */
}
.iconfont {
  font-family:"iconfont" !important;
  font-size:16px;
  font-style:normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
/* 字体图标end */
/* 分页 */
.page_bar{
  padding: 35px 0 35px 15px;
}
.page_bar a{
  margin-left:15px;
}
.page_bar .current{
  display: inline-block;
  padding: 6px 14px;
  background-color: #c00;
  color: #fff;
}
/* 分页 end */
/*页眉*/
#page_eyebrow{
    background: #4A4A4A;
    height: 50px;
    line-height: 50px;
    color: #E4E4E4;
}
/*logo*/
.page_logo{
    display: block;
    height:48px;
    padding: 1px 0;
    float: left;

}
.page_nav{
    float: left;
    /*width: 600px;*/
    margin-left: 60px;
}
.page_nav li{
    display: block;
    float: left;
}
.page_nav a{
    color: #E4E4E4;
    padding: 0 20px;
    display: block;
    line-height: 50px;
}
.page_nav a:hover,.page_nav a.active{
    background: #404040;
    color: #fff;
}
.login_area{
    float: right;
    width: 250px;
}
.eyebrow_login,.eyebrow_regist{
    margin-left: 20px;
    color: #E4E4E4;
}
.user_img{
    width: 48px;
    height: 48px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #404040;
}
.user_name,.eyebrow_loginout{
    color: #E4E4E4;
    margin-left: 10px;
}
.user_name{
    color: #D22222;
}
/*页眉end*/
/*页头主体*/
.header_content{
    padding: 30px 0;
    line-height: 40px;
}
.header_nav_title{
    display: block;
    float: left;
    font-size: 24px;
}
.header_nav{
    float: left;
    display: block;
    margin:0 60px;
}
.header_nav a{
    font-size: 16px;
    padding: 8px 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.header_nav a:hover,.header_nav .active{
    background: #EDEDED;
    color: #D22222;
}
.header_nav .active{
    color: #000;
}
.header_search{
    display: block;
    float: left;
    width: 215px;
    position: relative;
}
.text-input.header_search input.header_search_input{
    display: block;
    float: left;
    width: 195px;
}
.text-input.header_search input.header_search_submit{
    background: url(../images/ico_search.png) no-repeat center center;
    display: block;
    position: absolute;
    right: 0;
    top:0;
    width: 40px;
    height: 34px;
    text-indent: -1000px;
    padding: 0;
    margin: 0;
}
.demand_button{
    float: right;
}

/*页头主体*/
/*页头样式  end########################################################################################*/


/*页脚样式  end########################################################################################*/
#page_footer{
    padding: 20px;
    line-height: 50px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
    text-align: center;
    margin-top: 20px;
}
.footer_nav{
    display: inline;
    padding-left: 50px;
}
.footer_nav a{
    padding: 0 10px;
}
/*页脚样式  end########################################################################################*/
/*页身样式     ########################################################################################*/
.pageNav{
    text-align: center;
    padding: 20px 0;
    line-height: 30px;
}
.pageNav a,.pageNav .current{
    -webkit-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 5px;
    text-align: center;
    display: inline-block;
    margin: 0 5px;
    border: 1px solid #ddd;
    font-family: arial;
    font-size: 18px;
    color: #999;
    height: 30px;
}
.pageNav .num,.pageNav .current{
    width: 30px;
    line-height: 30px;
}
.pageNav .ellipsis{
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;
    font-family: arial;
}
.pageNav .prev,.pageNav .next{
    padding: 5px 20px;
}
.pageNav a:hover,.pageNav .current{
    background: #82CDDB;
    border-color: #82CDDB;
    color: #fff;
}
#go_top{
    display: none;
    background: url(../images/go_top.gif) no-repeat center center #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #ddd;
    position: fixed;
    right: 2px;
    bottom: 150px;
    width: 50px;
    height: 50px;
}
#go_top:hover{
    background-color: #F2F2F2;
}
.error_tips {
    display: none;
    margin-left: 10px;
    padding-left: 20px;
    color: #F22E00;
    background: url(../images/error-ico.png) no-repeat left center;
}
/*页身样式  end########################################################################################*/