﻿@charset "utf-8";
@font-face {
    font-family: "Impact";
    src: url("../fonts/Impact.eot"); /* IE9 */
    src: url("../fonts/Impact.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    
    url("../fonts/Impact.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+ */
    
    url("../fonts/Impact.svg#Impact") format("svg"); /* iOS 4.1- */
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "方正兰亭超细黑简体";
    src: url("../fonts/方正兰亭超细黑简体.eot"); /* IE9 */
    src: url("../fonts/方正兰亭超细黑简体.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    
    url("../fonts/方正兰亭超细黑简体.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+ */
    
    url("../fonts/方正兰亭超细黑简体.svg#方正兰亭超细黑简体") format("svg"); /* iOS 4.1- */
    font-style: normal;
    font-weight: normal;
}



/*兼容*/
html{
    -webkit-tap-highlight-color:rgba(0,0,0,0); /*取消超链接点击颜色块*/
}
body {
	-webkit-overflow-scrolling:touch; 
	overflow-scrolling: touch;
	background-clip: padding-box;
}
/*去掉ios默认submit样式*/
input[type="button"], input[type="submit"], input[type="reset"] {
    -webkit-appearance: none;
}
textarea {
  -webkit-appearance: none;
}
element {
  -webkit-touch-callout:none;
  -webkit-appearance:none;
  -webkit-tap-highlight-color:rgba(255,255,255,0);
  -webkit-transform:translate3d(0,0,0)
  transform: translate3d(0,0,0);
  border-width:thin;
}
/*去掉默认number的上下按钮样式*/
input[type=number] {  
    -moz-appearance:textfield;  
}  
input[type=number]::-webkit-inner-spin-button,  
input[type=number]::-webkit-outer-spin-button {  
    -webkit-appearance: none;  
    margin: 0;  
}  
html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6{
  -webkit-text-size-adjust:100%;
  font-weight: normal;
}
/*兼容*/
*{
  margin: 0;
  padding: 0;
  -o-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


table { 
    border-collapse: collapse; 
    border-spacing: 0; 
} 
fieldset,img { 
    border: 0; 
} 
address,caption,cite,code,dfn,em,strong,th,var { 
    font-weight: normal; 
    font-style: normal; 
} 
ol,ul { 
    list-style: none; 
} 
caption,th { 
    text-align: left; 
} 
h1,h2,h3,h4,h5,h6 { 
    font-weight: normal; 
    font-size: 100%; 
} 
q:before,q:after { 
    content:""; 
} 
abbr,acronym { 
    border: 0; 
} 
a{
    text-decoration: none;
}



/*全局样式*/
.container{
  width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}
.clear{
  clear: both;
}
section{
  overflow: hidden;
  text-align: center;
  min-width: 1200px;
}
body,html{
  height: 100%;
}

/**local-nav**/
.local-nav{margin: 30px auto; text-align: left; font-size: 16px; }




/*tit*/
.tit1{
  text-align: center;
  padding: 80px 0;
}
.tit1 h3{
  font-size: 36px;
  color: #292929;
  margin-bottom: 20px;
}
.tit1 p{
  font-size: 16px;
  color: #848484;
  margin-bottom: 20px;
}
.tit1 .hr{
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #b5b5b5;
}
.tit1 .hr hr{
  position: absolute;
  border:none;
  border-top: 4px solid #e60012;
  width: 166px;
  top: 0;
  left: 50%;
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*btn*/
.btn{
  display: block;
  width: 165px;
  height: 44px;
  line-height: 44px;
  background-color: #d80d1d;
  color: #fff;
  font-size: 14px;
  margin: 80px auto;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.btn:hover{
  background-color: #ff0000;
}




/*header*/
#header{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(0,0,0,0.9);
}
#header .cont{
  position: relative;
  z-index: 9;
  height: 80px;
  max-width: 1500px;
  min-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  -webkit-display: flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .cont>h1{
  flex-shrink: 0;
}
#header .cont .logo img{
  vertical-align: middle;
}
#header .cont .phone{
  display: inline-block;
  font-size: 14px;
  color: #fff;
  padding-left: 7px;
  margin-left: 12px;
  border-left: 1px solid #fff;
  line-height: 39px;
}
#header .cont .phone span{
  font-weight: bold;
}
#header .right{
  color: #fff;
  -webkit-display: flex;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 14px;
  justify-content: space-between;
  width: 180px;
}
#header .right dl{
  color: #fff;
  letter-spacing: 2px;
}
#header .right dd{
  font-weight: bold;
  line-height: 25px;
}
#header .right .menu{
  cursor: pointer;
}
#header .right .menu .line{
  width: 30px;
  height: 3px;
  background-color: #ecf0f1;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#header .right .menu.close .line:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(45deg);
  -ms-transform: translateY(11px) rotate(45deg);
  -o-transform: translateY(11px) rotate(45deg);
  transform: translateY(11px) rotate(45deg);
}
#header .right .menu.close .line:nth-child(2) {
  opacity: 0;
}
#header .right .menu.close .line:nth-child(3) {
  -webkit-transform: translateY(-11px) rotate(-45deg);
  -ms-transform: translateY(-11px) rotate(-45deg);
  -o-transform: translateY(-11px) rotate(-45deg);
  transform: translateY(-11px) rotate(-45deg);
}





/*nav*/
#header #nav{
  width: 950px;
  height: 100%;
  z-index: 5;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#nav ul{
  -webkit-display: flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
#nav h2{
  float: left;
}
#nav ul h2:last-child::after{
  display: none;
}
#nav h2 a{
  display: inline-block;
  width: 100px;
  font-size: 16px;
  color: #fff;
  line-height: 40px;
  text-align: center;
}
#nav h2 a:hover{
  background-color: #d80d1d;
}
#nav .dropdown{
  position: relative;
}
#nav .dropdown>a{
  position: relative;
}
#nav .dropdown>a::after{
  content: "^";
  position: absolute;
  display: block;
  right: 7px;
  top: 50%;
  font-size: 13px;
  -o-transform:translateY(-50%) rotate(90deg);
  -moz-transform:translateY(-50%) rotate(90deg);
  -webkit-transform:translateY(-50%) rotate(90deg);
  transform:translateY(-50%) rotate(90deg);
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#nav .dropdown:hover>a::after{
  -o-transform:translateY(-50%) rotate(180deg);
  -moz-transform:translateY(-50%) rotate(180deg);
  -webkit-transform:translateY(-50%) rotate(180deg);
  transform:translateY(-50%) rotate(180deg);
}
#nav .drop{
  position: absolute;
  left: 0;
  width: 110px;
  text-align: left;
  padding-top: 20px;
  padding-bottom: 10px;
  display: none;
  
}
#nav .drop a{
  display: block;
  width: auto;
  font-size: 14px;
  line-height: 50px;
  border-bottom: 1px solid #626262;
  color: #9b9b9b;
  background-color: rgba(0,0,0,.7);
}
#nav .drop a:last-child{
  border-bottom: 0;
}
#nav .drop a:hover{
  color: #ffffff;
}



/*banner*/
#banner{
  height: 100%;
}
#banner.banner_little{
  height: 600px;
}
#banner .swiper-container{
  height: 100%;
}
#banner .swiper-slide{
  width: 100%;
  height: 100%;
  background: url(../images/hc/banner2.jpg) no-repeat center;
  background-size: cover;
}




/*say*/
#say{
  position: relative;
  z-index: 9;
  background: url(../images/hc/bg-3.jpg) no-repeat center fixed;
  background-size: cover;
  padding-bottom: 80px;
}
#say::after{
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.8);
}
#say .tit1 h3{
  color: #fff;
}

#say ul{
  -webkit-display: flex;
  display: flex;
  justify-content: space-between;
}
#say li{
  width: 275px;
}
#say li .caption{
  position: relative;
  z-index: 9;
  background-color: #ffffff;
  border-radius: 4px;
  height: 275px;
  color: #323232;
  font-size: 14px;
  line-height: 30px;
  text-align: left;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#say li:hover .caption{
  -o-box-shadow: 0 0 9px rgba(230,0,18,.5);
  -moz-box-shadow: 0 0 9px rgba(230,0,18,.5);
  -webkit-box-shadow: 0 0 9px rgba(230,0,18,.5);
  box-shadow: 0 0 9px rgba(230,0,18,.5);
}
#say li .caption .bg{
  width: 100%;
  height: 100%;
  background-color: #fff;
}
#say li .caption .bg.content{
  padding: 20px 25px;
}
#say li .caption::after{
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  width: 30px;
  height: 30px;
  bottom: -15px;
  background-color: #fff;
  left: 50%;
  -o-transform: translateX(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#say li:hover .caption::after{
  -o-box-shadow: 0 0 9px rgba(230,0,18,.5);
  -moz-box-shadow: 0 0 9px rgba(230,0,18,.5);
  -webkit-box-shadow: 0 0 9px rgba(230,0,18,.5);
  box-shadow: 0 0 9px rgba(230,0,18,.5);
}
#say li .caption .bg img{
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
#say li .img{
  width: 130px;
  height: 130px;
  margin: 55px auto 0;
  border-radius: 50%;
  overflow: hidden;
}
#say li .img img{
  width: 100%;
  height: auto;
  border-radius: 50%;
  border:1px solid #f7e3e3;
}



/*together*/
#together{
  padding-bottom: 80px;
}
#together ul{
  -webkit-display: flex;
  display: flex;
  flex-wrap: wrap;
}
#together ul li{
  position: relative;
  width: 20%;
  overflow: hidden;
  border:1px dashed #e5e5e5;
  cursor: pointer;
}
#together ul li:hover{
  box-shadow: 0 0 12px rgba(112,0,9,.54);
  z-index: 9;
}
#together ul li:hover img{
  -webkit-filter: hue-rotate(180deg);
  filter: hue-rotate(180deg);
}
#together ul li img{
  width: 100%;
  height: auto;
}


/*news*/
#news{
  background-color: #000000;
  padding-bottom: 40px;
}
#news .tit1 h3{
  color: #fff;
}
#news .list_big{
  height: 420px;
  -webkit-display: flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: space-between;
}
#news .list_big li{
  width: 50%;
}
#news .list_big li.head{
  height: 100%;
  text-align: left;
  overflow: hidden;
}
#news .list_big li.head img{
  height: 100%;
  width: auto;
  max-width: 100%;
}

#news .list_big .swiper-slide .tit1le_new{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  line-height: 50px;
  background: rgba(0,0,0,.7);
  color: #fff;
  padding: 0 20px;
  padding-right: 50px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

}
#news .list_big li.content{
  background-color: #191919;
  height: 195px;
  padding: 22px 25px;
  -webkit-display: flex;
  display: flex;
  justify-content: space-between;
}
#news .list_big li.content .img{
  width: 215px;
  height: 150px;
  overflow: hidden;
  flex-shrink: 0;
}
#news .list_big li.content .img img{
  width: 100%;
  height: 100%;
}
#news .list_big li.content .caption{
  padding-left: 16px;
  text-align: left;
  font-size: 16px;
  width: 335px;
}
#news .list_big li.content .caption h3{
  color: #fff;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

}
#news .list_big li.content .caption hr{
  border:none;
  border-top: 1px solid #ffffff;
  width: 70px;
  margin: 12px 0 16px;
}
#news .list_big li.content .caption p{
  color: #4c4c4c;
  line-height: 24px;
  height: 72px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-all;
}
#news .list_big li.content .caption .more{
  color: #ffffff;
  display: block;
  float: right;
  font-size: 14px;
  margin-top: 5px;
}
#news .list_big li.content .caption .more:hover{
  color: red;
}



#news .list{
  margin-top: 30px;
  -webkit-display: flex;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  text-align: left;
  flex-wrap: wrap;
}
#news .list li{
  width: 570px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#news .list li:nth-child(1),#news .list li:nth-child(2){
  border-bottom: 1px solid #626262;
}
#news .list li .ques{
  padding-left: 50px;
  position: relative;
  color: #ffffff;
  line-height: 32px;
  width: 460px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#news .list li .ques::before{
  position: absolute;
  left: 0;
  top: 0;
  content: "问";
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border:1px solid #fff;
  color: #a40000;
  text-align: center;
}
#news .list li .answer{
  line-height: 24px;
  color: #949494;
  position: relative;
  padding-left: 50px;
  width: 460px;
  margin-top: 15px;
  height: 72px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-all;
}
#news .list li .answer::before{
  position: absolute;
  left: 0;
  top: 10px;
  content: "答";
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border:1px solid #fff;
  color: #fff;
  text-align: center;
}



/*bottom*/
#bottom{
  position: relative;
  z-index: 5;
  background: url(../images/hc/bg-bottom.jpg) no-repeat center fixed;
  background-size: cover;
  overflow: hidden;
  text-align: left;

}
#bottom::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: -1;
}
#bottom .tit1 h3{
  color: #fff;
}

#bottom .left,#bottom .right{
  float: left;
  width: 50%;
  color: #7f7e7e;
}
#bottom .left .address{
  float: left;
}
#bottom .left h5{
  font-size: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid #525151;
}
#bottom .left h5 .num{
  color: #f7f7f7;
}
#bottom .left ul li{
  margin-top: 20px;
}
#bottom .left ul li .icon{
  vertical-align: middle;
  margin-right: 10px;
}
#bottom .left .erweima{
  float: left;
  margin-left: 30px;
  text-align: center;
  margin-top: 6px;
}
#bottom .left .erweima p{
  margin-top: 6px;
}


#bottom .right{
  font-size: 14px;
}
#bottom .right h5{
  margin-bottom: 20px;
}
#bottom .right p{
  margin-bottom: 17px;
}
#bottom .right .input{
  width: 215px;
  height: 36px;
  border:1px solid #626262;
  background: transparent;
  color: #fff;
  padding-left: 10px;
}
#bottom .right p.first{
  -webkit-display: flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#bottom .right span.require{
  position: relative;
}
#bottom .right span.require::after{
  position: absolute;
  content: "*";
  display: block;
  color: #ff0000;
  right: -20px;
  top: 0;
  line-height: 38px;
}
#bottom .right .beizhu .input{
  width: 555px;
  height: 78px;
}
#bottom .right .submit{
  text-align: right;
  margin: 0;
}
#bottom .right .submit .btn{
  margin: 12px 0 0 auto;
  border:none;
  outline: 0;
  cursor: pointer;
}


#bottom #other{
  clear: both;
  margin-top: 90px;
  background-color: rgba(45,45,45,.32);

}
#bottom #other .container{
  height: 50px;
  -webkit-display: flex;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 14px;
  color: #707070;
}
#bottom #other .container a{
  color: #707070;
}
#bottom #other .container a:hover{
  color: #dacaca;
}
#bottom #icp{
  background-color: #000000;
  line-height: 65px;
  color: #707070;
  font-size: 14px;
  text-align: center;
}



/*ala*/
.ala{
  padding-bottom: 60px;
}
.ala ul {
  -webkit-display: flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ala li{
  width: 283px;
  height: 300px;
  overflow: hidden;
  margin-bottom: 20px;
}
.ala li .timg{
  position: relative;
  width: 100%;
  height: 202px;
  overflow:hidden
}
.ala li .timg img{
  width: 100%;
  height: 100%;
   -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ala li .timg img:hover{
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.ala li .timg .modul{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  background: rgba(230,0,18,.80) center;
  -o-transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
  font-size: 14px;
  line-height: 202px;
}
.ala li:hover .timg .modul{
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
/*.ala li:hover .caption{
  -o-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}*/
.ala li:hover .btn-wrap{
  -o-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
/*.ala li .caption{
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}*/
.ala li .caption dt{
  font-size: 20px;
  color: #252525;
  margin: 18px 0 5px;
}
.ala li .caption dd{
  font-size: 14px;
  color: #232323;
  width: 278px;
  line-height: 24px;
}
.ala li .btn-wrap{
  height: 97px;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ala li .btn{
  width: 162px;
  height: 31px;
  line-height: 31px;
  /*border-radius: 15.5px;*/
  font-size: 14px;
  margin: 24px auto 0;
}


#more.ala li{
  height: auto;
}
#more.ala .btn{
  margin-top: 24px;
}



/*alsay*/
#alsay{
  background-color: #f1f1f1;
}
#alsay li{
  position: relative;
  float: left;
  width: 25%;
  height: auto;
  overflow: hidden;
  border: 4px solid #fff;
}
#alsay li .timg{
  -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#alsay li img{
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
#alsay .caption{
  position: absolute;
  bottom: -80px;
  width: 100%;
  height: 80px;
  background: #fff url(../img/gywm/icon-right.png) no-repeat 95% center;
  background-color: white;
  z-index: 9;
  padding: 15px 50px 15px 20px;
  text-align: left;
  -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#alsay .caption dt{
  font-size: 16px;
  color: #666;
}
#alsay .caption dd{
  margin-top: 3px;
  font-size: 12px;
  line-height: 18px;
  height: 36px;
  color: #999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
#alsay li:hover{
  -o-box-shadow: 3px 3px 10px 0px #ddd;
  -moz-box-shadow: 3px 3px 10px 0px #ddd;
  -webkit-box-shadow: 3px 3px 10px 0px #ddd;
    box-shadow: 3px 3px 10px 0px #ddd;
}
#alsay li:hover .timg{
  transform: translateY(-30px);
}
#alsay li:hover .caption{
  bottom: 0;
}
/*侧边栏*/
.sidebar{
	width: 180px;
	height: 580px;
	background: transparent;
	position: fixed;
	right: -0.2%;
	top: 140px;
	z-index: 999;
	display:none;
}
.sidebar-logo {
	width: 166px;
	height: 70px;
	margin: 0px auto;
	background: url(../images/hc/sidebar-logo.png) no-repeat center;
	box-shadow: 5px 2px 5px rgba(41,41,41,.25);
	position: relative;
}
.sidebar-logo::before,
.sidebar-logo::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: #000;
	position: absolute;
	z-index: -1;
	-ms-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	transform: rotate(45deg);
}
.sidebar-logo::before {
	bottom: -10px;
	right: 3px;
}
.sidebar-logo::after {
	bottom: -10px;
	left: 3px;
}
.sidebar-box {
	width: 156px;
	height: 500px;
	margin: 0px auto;
	background: url(../img/sidebar-bg.png) no-repeat center;
	background-size: 100%;
}
.sidebar-box .list{
	width: 156px;
	height: 62px;
	line-height: 62px;
	margin: 0px auto 1px;
	text-align: center;
	font-size: 16px;
}
.sidebar-box .lt1{
	background: -webkit-linear-gradient(bottom, #212121, #252525);
	background: -o-linear-gradient(bottom, #212121, #252525);
	background: -moz-linear-gradient(bottom, #212121, #252525);
	background: linear-gradient(bottom, #212121, #252525);
}
.sidebar-box .lt2{
	background: -webkit-linear-gradient(bottom, #1c1c1c, #202020);
	background: -o-linear-gradient(bottom, #1c1c1c, #202020);
	background: -moz-linear-gradient(bottom, #1c1c1c, #202020);
	background: linear-gradient(bottom, #1c1c1c, #202020);
}
.sidebar-box .lt3{
	background: -webkit-linear-gradient(bottom, #171717, #1b1b1b);
	background: -o-linear-gradient(bottom, #171717, #1b1b1b);
	background: -moz-linear-gradient(bottom, #171717, #1b1b1b);
	background: linear-gradient(bottom, #171717, #1b1b1b);
}
.sidebar-box .lt4{
	background: -webkit-linear-gradient(bottom, #121212, #161616);
	background: -o-linear-gradient(bottom, #121212, #161616);
	background: -moz-linear-gradient(bottom, #121212, #161616);
	background: linear-gradient(bottom, #121212, #161616);
}
.sidebar-box .lt5{
	background: -webkit-linear-gradient(bottom, #0d0d0d, #111);
	background: -o-linear-gradient(bottom, #0d0d0d, #111);
	background: -moz-linear-gradient(bottom, #0d0d0d, #111);
	background: linear-gradient(bottom, #0d0d0d, #111);
}
.sidebar-box .lt6{
	background: -webkit-linear-gradient(bottom, #090909, #0c0c0c);
	background: -o-linear-gradient(bottom, #090909, #0c0c0c);
	background: -moz-linear-gradient(bottom, #090909, #0c0c0c);
	background: linear-gradient(bottom, #090909, #0c0c0c);
}
.sidebar-box .lt7{
	background: -webkit-linear-gradient(bottom, #040404, #080808);
	background: -o-linear-gradient(bottom, #040404, #080808);
	background: -moz-linear-gradient(bottom, #040404, #080808);
	background: linear-gradient(bottom, #040404, #080808);
}
.sidebar-box .list a{
	color: #8c8c8c;
	text-decoration: none;
	display: block;
}
.sidebar-box .list:active,
.sidebar-box .list:hover{
	background: #c20c0c;
}
.sidebar-box .list:active a,
.sidebar-box .list:hover a{
	color: #fff;
}
.sidebar-box .top {
	width: 156px;
	height: 62px;
	line-height: 62px;
	background: url(../img/sidebar-top.png) no-repeat center;
	margin-top: -1px;
}
.sidebar-box .top:hover {
	background: url(../img/sidebar-top-on.png) no-repeat center;
}
.sidebar-box .top a{
	width: 100%;
	height: 100%;
	display: block;
}
/*中间弹窗*/
.pop1{
	width: 431px;
	height: 307px;
	background: url(../img/popup.png) no-repeat center;
	background-size: 100%;
	margin: 0px auto;
	position: fixed;
	left: 0;
	right: 0;
	z-index: 999;
	display: none;
}
.pop1 .pop1-btn {
	width: 240px;
	height: 50px;
	margin: 217px auto 0px;
	border-radius: 5px;
	line-height: 50px;
	text-align: center;
	font-size: 18px;
	letter-spacing: 1px;
	background: #c20c0c;
}
.pop1 .pop1-btn a{
	display: block;
	color: #c9d1e3;
	text-decoration: none;
}
.pop1 .pointer {
	width: 31px;
	height: 33px;
	display: block;
	background: url(../img/pointer.png) no-repeat center;
	position: absolute;
	bottom: 20px;
	left: 309px;
}
.pop1 .close {
	width: 41px;
	height: 35px;
	display: block;
	background: url(../img/close.png) no-repeat center;
	position: absolute;
	top: 10px;
	right: 20px;
	cursor: pointer;
}
