/*************
 * 页面样式
 *************/

 /* ==========
    基本默认值
    ========== */

html{
  font-size:62.5%;
  color:#222;
}

::selection{
  background-color:#b3d4fc;
  text-shadow:none;
}

ul{
  margin:0;
  padding:0;
}

li{
  list-style:none;
}

 /* ==========
    工具样式
    ========== */

.center-block{
  display:block;
  margin-right:auto;
  margin-left:auto;
}

.pull-right{
  float:right !important;
}

.pull-left{
  float:left !important;
}

.text-right{
  text-align:right !important;
}

.text-left{
  text-align:left !important;
}

.text-center{
  text-align:center !important;
}

.hide{
  display:none !important;
}

.show{
  display:block !important;
}

.invisible{
  visibility:hidden;
}

.text-hide{
  font:0/0 a;
  color:transparent;
  text-shadow:none;
  background-color:transparent;
  border:0;
}

.clearfix:before,
.clearfix:after{
  content:" ";
  display:table;
}

.clearfix:after{
  clear:both;
}

 /* ===============
    浏览器更新提示
    =============== */
.browserupgrade{
  margin:0;
  padding:16px;
  /*padding:1rem;*/
  background:#ccc;
}

 /* ===============
    自定义页面样式
    =============== */
body{
  font-size:1.2rem;
  line-height:1.5;
  background-color:#f7f7f7;
}

a{
  color:#666;
  text-decoration:none;
}

a:hover,a:active{
  color:#0ae;
  text-decoration:underline;
}

/*网站头部*/

header{
  width:100%;
}

header .top{
  line-height:3rem;
  padding:0 1.5rem;
  color:#fff;
  background:#555;
  border-bottom:1px #ecc000 solid;
}

header .top .tel{
  float:left;
}

header .top ul{
  text-align:right;
}

header .top ul li{
  display:inline-block;/*布局变为水平展开*/
}

header .top ul li+li{
  border-left:1px solid #999;
  margin-left:-3px;

}

header .top ul li a{
  display:inline-block;/*前面已经将li设置为内联块状元素，这里在再设置一次，是因为，内联元素a的margin,padding,width,height都无效*/
  padding:0 1.5rem;/*padding起作用，a要设置为inline-block*/
  color:#fff;
}

@media only screen and (max-width:50em){
  header .top ul li a{
    padding:0 1rem;
  }
}

@media only screen and (min-width:30.0625em) and (max-width:50em){

}

@media only screen and (max-width:30em){
  header .top .tel,
  header .top ul li:nth-child(3),
  header .top ul li:nth-child(4){
    display:none;
  }
}

header .main{
  padding:0;
}

header .main .brand{
  float:left;
  padding:1rem 1.5rem 0;
}

header .main ul{
  text-align:right;
}

header .main ul li{
  display:inline-block;
  border-left:1px solid #f0ede9;
}

header .main ul li a{
  display:inline-block;
  padding:0 2.5rem;
  line-height:5.5rem;
  font-size:1.6rem;
  font-weight:bold;
  color:#7c7a65;
  text-decoration:none;
}

header .main ul li a:hover,
header .main ul li a:active,
header .main ul li a.active{
  color:#ffb300;
  background-color:#f8f6f1;
}

@media only screen and (max-width:50em){

  header .main .brand {
    float:none;
    display:block;
    padding:0;
    margin:1.5rem auto 0.5rem;
    text-align:center;
  }

  header .main ul{
    text-align:center;
  }

  header .main ul li{
    border:none;
  }

  header .main ul li a{
    padding:0 1.5rem;
  }
}

@media only screen and (max-width:30em){

  header .main ul li{
    line-height:3rem;
  }

  header .main ul li:first-child{
    display:none;
  }

  header .main ul li a{
    font-weight:normal;
    padding:0 0.5rem;
  }
}

/*网站主要内容*/

.container{
  width:100%;
}

/*交易信息*/
.transaction{
  width:100%;
  background-color:#7c7365;
}

.trans-content{
  max-width:90%;
  margin:0 auto;
  font-size:1.5rem;
}

.trans-data{
  float:left;
  padding:1rem;
  text-align:left;
}

.trans-data span{
  display:inline-block;
  line-height:3rem;
  color:#fff;
}

.trans-data span.trans-money{
  font-size:2.2rem;
  color:#f90;
  letter-spacing:3px;
  margin:0 1rem;
  padding:0 1rem;
  border-radius:3px;
  background-color:rgba(255,255,255,0.9);/*opacity，背景和内容都是透明的，rgba，背景透明，但是内容不透明*/
  box-shadow:1px 2px 1px #333 inset;
}

.trans-report{
  text-align:right;
}

.trans-report a{
  display:inline-block;
  padding:1rem;
  line-height:3rem;
  color:#fff;
}

@media only screen and (max-width:50em) {

  .trans-data {
    padding:1rem 0.5rem;
  }

  .trans-data span {
    font-size:1.2rem;
  }

  .trans-data span.trans-money{
    font-size:1.6rem;
    margin:0;
    padding:0;
    letter-spacing:inherit;
    box-shadow:none;
    background:transparent;
  }

  .trans-report a{
    font-size:1.2rem;
  }
}

@media only screen and (max-width:30em){

  .transaction {
    padding:0.5rem 0;
  }

  .trans-data,.trans-report{
    float:none;
    text-align:center;
  }

  .trans-data, .trans-report a{
    padding:0;
  }
}

/*滚动广告*/

.ad{
  /*display:none;*/
}

/*平台特点*/

.feature{
  width:90%;
  margin:2rem auto;
  font-size:0;/*去掉inline-block之间的默认空隙*/
}

.feature .item{
  display:inline-block;
  width:calc(33.33333333333% - 3rem);/*动态计算长度*/
  padding:1rem;
  font-size:1.4rem;
  background-color:#fff;
  box-shadow:0 0 4px #ccc;
}

.feature .item+.item{
  margin-left:1.5rem;
}

.feature .item h3{
  display:inline-block;
  width:40%;
  margin:0;
  padding:0;
  vertical-align:top;
  font-size:3.3rem;
  text-align:center;
  color:#f90;
}

.feature .item p{
  display:inline-block;
  width:55%;
  margin:0;
  padding:0;
  color:#999;
}

@media only screen and (min-width:30.0625em) and (max-width:50em){

  .feature .item h3,
  .feature .item p{
    display:block;
    width:100%;
    font-size:2.6rem;
    text-align:center;
  }

  .feature .item p{
    font-size:1.2rem;
  }
}

@media only screen and (max-width:30em){

  .feature{
    width:96%;
    margin:1rem auto;
  }

  .feature .item{
    display:block;
    width:auto;
  }

  .feature .item+.item{
    margin:1rem 0 0;
  }
}

/*最新公告*/

.notice{
  width:90%;
  margin:2rem auto;
  font-size:1.4rem;
  line-height:3rem;
  background-color:#fff;
  box-shadow:0 0 4px #ccc;
}

.notice a{
  float:left;
  display:inline-block;
  width:70%;
  margin-left:2rem;
  text-decoration:none;
}

.notice a:first-child{
  /*3个属性一般一起用*/
  text-overflow:ellipsis;/*超出部分省略*/
  overflow:hidden;/*隐藏滚动条*/
  white-space:nowrap;/*不换行*/
}

.notice a:first-child:before{
  content:"最新公告: \00a0\00a0";/*\00a0代表不换行的空格字符，在content中使用&nbsp;增加空格无效*/
  color:#aaa;
}

.notice a span{
  color:#999;
  font-size:1.2rem;
  margin-right:1rem;
}

.notice a.more{
  float:right;
  width:auto;
  margin-right:2rem;
  color:#f90;
}

@media only screen and (max-width:30em){

  .notice {
    width:96%;
    margin:1rem auto;
    font-size:1.2rem;
  }

  .notice a{
    margin-left:1rem;
  }

  .notice a span{
    display:none;
  }
}

/*产品列表*/

.product{
  width:90%;
  margin:2rem auto;
  font-size:1.4rem;
  background-color:#f5f9fa;
  border-top:2px solid #f90;
  box-shadow:0 0 4px #ccc;
}

.product h2{
  float:left;
  width:20%;
  margin-top:3rem;
  text-align:center;
  font-size:2.4rem;
  font-weight:normal;
  color:#635c51;
}

.product h2 em{
  display:block;
  margin-top:1rem;
  font-size:1.6rem;
}

.product h2 em:first-child{
  margin-top:4rem;
}

.product .product-content{
  float:right;
  width:79.5%;
  border-left:1px solid #eee;
  background-color:#fff;
}

.product .product-content .item{
  width:100%;
}

.product .product-content .item+.item{
  border-top:1px solid #eee;
}

.product .product-content .item h3{
  float:left;
  width:30%;
  margin:1.5rem 0;
  font-size:1.4rem;
  font-weight:normal;
  text-align:center;
}

.product .product-content .item h3 em{
  margin-right:0.5rem;
  font-size:3.6rem;
  font-style:normal;
  color:#8b999d;
}

.product .product-content .item h3 i{
  display:block;
  font-size:1.2rem;
  font-style:normal;
  color:#999;
}

.product .product-content .item .info{
  float:left;
  width:48%;
  padding:1rem;
  border-left:1px solid #eee;
  border-right:1px solid #eee;
  font-size:14px;
}

.product .product-content .item .info p{
  float:left;
  display:inline-block;
  text-align:center;
  width:56%;
}

.product .product-content .item .info p:last-child{
  width:40%;
}

.product .product-content .item .info p span{
  display:block;
  font-size:2.4rem;
  color:#f90;
}

.product .product-content .item .info p span i{
  font-size:1.2rem;
  font-style:normal;
  color:#999;
}

.product .product-content .item .buy{
  float:left;
  width:calc(22% - 4.4rem);
  padding:1rem;
}

.product .product-content .item .buy a{
  display:block;
  width:90%;
  margin:1.5rem auto;
  max-width:12rem;
  line-height:4rem;
  text-align:center;
  text-decoration:none;
  color:#fff;
  background-color:#f90;
  border-radius:5px;
}

.product .product-content .item .buy a:hover,
.product .product-content .item .buy a:active{
  background-color:#ffc468;
}

.product .product-content .item .buy a.disabled{
  background-color:#ccc !important;
  cursor:not-allowed;
}

@media only screen and (max-width:50em){

  .product h2{
    float:none;
    width:100%;
    margin-top:2rem;
    font-size:2.2rem;
  }

  .product h2 em:first-child{
    margin-top:0;
  }

  .product h2 em {
    display:inline;
    font-size:1.2rem;
  }

  .product .product-content{
    float:none;
    width:100%;
  }

  .product .product-content .item h3{
    margin-bottom:0;
  }

  .product .product-content .item h3 em {
    font-size:2.4rem;
  }

  .product .product-content .item .info{
    padding:1rem 1rem 0;
    font-size:1.2rem;
  }

  .product .product-content .item .info p span {
    font-size:2rem;
  }

  .product .product-content .item .buy a {
    margin:0.5rem auto;
  }
}

@media only screen and (max-width:30em){

  .product {
    width:96%;
  }

  .product h2 em:first-child:before{
    content:" ";
    display: table;
  }

  .product .product-content .item h3 em{
    font-size:2rem;
    margin-right:0;
  }

  .product .product-content .item .info {
    float:right;
    width:70%;
    padding:1rem 0;
    border:none;
  }

  .product .product-content .item .buy{
    clear:both;
    float:none;
    width:100%;
    padding:1rem 0 2rem;
  }

  .product .product-content .item .buy a{
    margin-top:0;
    max-width:26rem;
  }
}

/*底部导航*/

.footer{
  padding:3rem 0;
  background-color:#fff;
  border-top:2px solid #eee;
}

.footer-content{
  width:90%;
  margin:0 auto;
}

.footer-content .brand{
  float:left;
  display:block;
  -webkit-filter:grayscale(100%);
  filter:grayscale(100%);
  width:20%;
  height:35px;
  background:url(../img/logo@1x.png) no-repeat left;
  background-size:150px 35px;
}

.footer-content ul{
  float:left;
  width:15%;
}

.footer-content ul li{
  font-size:1.4rem;
  line-height:2.4rem;
}

.footer-content ul li.title{
  font-size:1.6rem;
  line-height:3rem;
}

@media only screen and (max-width:50em) {

  .footer-content .brand{
    display:none;
  }

  .footer-content ul{
    width:20%;
  }

  .footer-content ul li {
    font-size:1.2rem;
    line-height:2rem;
  }

  .footer-content ul li.title{
    font-size:1.4rem;
    line-height:2.5rem;
  }

}

@media only screen and (max-width:30em){

  .footer-content {
    width:98%;
  }

  .footer-content ul li.title{
    font-size:1.2rem;
    line-height:2rem;
  }
}

/*底部*/

footer{
  width:100%;
  padding:3rem 0 5rem;
  background-color:#ededed;
}

footer ul{
  text-align:center;
}

footer ul li{
  display:inline-block;
}

footer ul li .icon{
  display:inline-block;
  text-indent:-999rem;
  margin-right:1.5rem;
  background: url(https://i.alipayobjects.com/e/201307/jebmKcbrh.png) no-repeat;
  background-size:466px 447px;
  overflow:hidden;
}

footer ul li .icon-zfywxkz{
  width:38px;
  height:27px;
  background-position:-369px -45px;
}

footer ul li .icon-pcirk{
  width:78px;
  height:27px;
  background-position:-110px -96px;
}

footer ul li .icon-visayz{
  width:36px;
  height:27px;
  background-position:-426px -90px;
}

footer ul li .icon-vsjmfw{
  width:63px;
  height:27px;
  margin-right:13px;
  background-position:-401px -186px;
}

footer ul li .icon-wlgs{
  width:22px;
  height:27px;
  background-position:-48px -48px;
}

footer ul li .icon-rzcx{
  width:75px;
  height:27px;
  background-position:0 -320px;
}

footer ul li .icon-gs{
  width:30px;
  height:30px;
  margin-right:0;
  background: url(https://os.alipayobjects.com/rmsportal/lybcjqloSPjMAFg.png) no-repeat;
  background-size:30px;
}

footer p{
  text-align:center;
  color:#999;
}

/*************
 * 打印样式
 *************/

@media print{
  *,
  *:before,
  *:after{
    background:transparent !important;
    color:#000 !important;
    box-shadow:none !important;
    text-shadow:none !important;
  }

  a,
  a:visited{
    text-decoration:underline;
  }

  a[href]:after{
    content:"("attr(href)")";
  }

  abbr[title]:after{
    content:"("attr(title)")";
  }

  /*
   * 使用#和javascript的超链接不打印href
   */
   a[href^="#"]:after,
   a[href^="javascript:"]:after{
    content:"";
   }

   pre,
   blockquote {
    border:1px solid #999;
    page-break-inside:avoid;/*该属性只在opera浏览器有效*/
    /*禁止在元素内部插入分页符，也就是说pre块和blockquote块不分页*/
   }

   thead {
    display:table-header-group;
   }

   tr,
   img{
    page-break-inside:avoid;
   }

   img{
    max-width:100% !important;
   }

   p,
   h2,
   h3 {
    orphans:3;/*元素内部发生分页时，必须在元素底部保留的最少行数*/
    widows: 3;/*当元素内部发生分页时，必须在元素顶部保留的最少行数*/
   }

   h2,
   h3 {
    page-break-after:avoid;
   }
}
