/*animation*/
.animate-enter .duration2s {
    -webkit-animation-duration:2s;
    -moz-animation-duration:2s;
    -o-animation-duration:2s;
    animation-duration:2s;
}

.animate-enter .delay2s {
    -webkit-animation-delay:2s;
    -moz-animation-delay:2s;
    -o-animation-delay:2s;
    animation-delay:2s;
}

.animate-enter .rock_a{
	transform-origin:center top;
	-moz-transform-origin:20% 40%;
	-webkit-transform-origin:50% 0%;
	-o-transform-origin:20% 40%;
	animation: rock_a 2.5s linear infinite;;
	-moz-animation: rock_a 2.5s linear infinite;;	/* firefox */
	-webkit-animation: rock_a 2.5s linear infinite;	/* safari 和 chrome */
	-o-animation: rock_a 2.5s linear infinite;;	/* opera */
}
.animate-enter .rock_a_1{
	animation: rock_a 3s linear infinite;;
	-moz-animation: rock_a 3s linear infinite;;	/* firefox */
	-webkit-animation: rock_a 3s linear infinite;	/* safari 和 chrome */
	-o-animation: rock_a 3s linear infinite;;	/* opera */
}
.animate-enter .rock_a_2{
	animation: rock_a 2s linear infinite;;
	-moz-animation: rock_a 2s linear infinite;;	/* firefox */
	-webkit-animation: rock_a 2s linear infinite;	/* safari 和 chrome */
	-o-animation: rock_a 2s linear infinite;;	/* opera */
}
.animate-enter .rock_a_3{
	animation: rock_a 1.5s linear infinite;;
	-moz-animation: rock_a 21.5 linear infinite;;	/* firefox */
	-webkit-animation: rock_a 1.5s linear infinite;	/* safari 和 chrome */
	-o-animation: rock_a 1.5s linear infinite;;	/* opera */
}
@keyframes rock_a
{
	0%   {transform:rotate(0deg);}
	25%  {transform:rotate(10deg);}
	50%  {transform:rotate(0deg);}
	75%  {transform:rotate(-10deg);}
	100% {transform:rotate(0deg);}
}
@-moz-keyframes rock_a /* firefox */
{
	0%   {-moz-transform:rotate(0deg);}
	25%  {-moz-transform:rotate(10deg);}
	50%  {-moz-transform:rotate(0deg);}
	75%  {-moz-transform:rotate(-10deg);}
	100% {-moz-transform:rotate(0deg);}
}
@-webkit-keyframes rock_a /* safari 和 chrome */
{
	0%   {-webkit-transform:rotate(0deg);}
	25%  {-webkit-transform:rotate(10deg);}
	50%  {-webkit-transform:rotate(0deg);}
	75%  {-webkit-transform:rotate(-10deg);}
	100% {-webkit-transform:rotate(0deg);}
}
@-o-keyframes rock_a /* opera */
{
	0%   {-o-transform:rotate(0deg);}
	25%  {-o-transform:rotate(10deg);}
	50%  {-o-transform:rotate(0deg);}
	75%  {-o-transform:rotate(-10deg);}
	100% {-o-transform:rotate(0deg);}
}

.animate-enter .lightspeedin {
    -webkit-animation-name:lightspeedin;
    -moz-animation-name:lightspeedin;
    -o-animation-name:lightspeedin;
    animation-name:lightspeedin;
    -webkit-animation-timing-function:ease-out;
    -moz-animation-timing-function:ease-out;
    -o-animation-timing-function:ease-out;
    animation-timing-function:ease-out;
}
@-webkit-keyframes lightspeedin {
    0%{-webkit-transform:translatex(-100%) skewx(10deg); opacity:0; }
    60%{-webkit-transform:translatex(10%) skewx(-5deg); opacity:1; }
    100%{-webkit-transform:translatex(0%) skewx(0deg); opacity:1; }
}

@-moz-keyframes lightspeedin {
    0%{-moz-transform:translatex(-100%) skewx(10deg); opacity:0; }
    60%{-moz-transform:translatex(10%) skewx(-5deg); opacity:1; }
    100%{-moz-transform:translatex(0%) skewx(0deg); opacity:1; }
}

@-o-keyframes lightspeedin {
    0%{-o-transform:translatex(-100%) skewx(10deg); opacity:0; }
    60%{-o-transform:translatex(10%) skewx(-5deg); opacity:1; }
    100%{-o-transform:translatex(0%) skewx(0deg); opacity:1; }
}

@keyframes lightspeedin {
    0%{transform:translatex(-100%) skewx(10deg); opacity:0; }
    60%{transform:translatex(10%) skewx(-5deg); opacity:1; }
    100%{transform:translatex(0%) skewx(0deg); opacity:1; }
}

.animate-enter .flowerfly {
    -webkit-animation-name:flowerfly;
    -moz-animation-name:flowerfly;
    -o-animation-name:flowerfly;
    animation-name:flowerfly;
}
@-webkit-keyframes flowerfly {
    0%{-webkit-transform:translatey(-700px) rotate(360deg);}
    100%{-webkit-transform:translatey(0) rotate(0);}
}
@-moz-keyframes flowerfly {
    0%{-moz-transform:translatey(-700px) rotate(360deg);}
    100%{-moz-transform:translatey(0) rotate(0);}
}
@-o-keyframes flowerfly {
    0%{-o-transform:translatey(-700px) rotate(360deg);}
    100%{-o-transform:translatey(0) rotate(0);}
}
@keyframes flowerfly {
    0%{transform:translatey(-700px) rotate(360deg);}
    100%{transform:translatey(0) rotate(0);}
}


.animate-enter .slidein1 {
    -webkit-animation-name:slidein1;
    -moz-animation-name:slidein1;
    -o-animation-name:slidein1;
    animation-name:slidein1;
}
@-webkit-keyframes slidein1 {
    0%{-webkit-transform:translate(300px, 100px) scale(0);}
    100%{-webkit-transform:translatex(0) scale(1);}
}
@-moz-keyframes slidein1 {
    0%{-moz-transform:translate(300px, 100px) scale(0);}
    100%{-moz-transform:translatex(0) scale(1);}
}
@-o-keyframes slidein1 {
    0%{-o-transform:translate(300px, 100px) scale(0);}
    100%{-o-transform:translatex(0) scale(1);}
}
@keyframes slidein1 {
    0%{transform:translate(300px, 100px) scale(0);}
    100%{transform:translatex(0) scale(1);}
}

.animate-enter .icon-sd {
    -webkit-animation:walk 3s linear infinite alternate;
    -moz-animation:walk 3s linear infinite alternate;
    -o-animation:walk 3s linear infinite alternate;
    animation:walk 3s linear infinite alternate;
}
@-webkit-keyframes walk {
    0%{left:350px;}
    100%{left:560px;}
}
@-moz-keyframes walk {
    0%{left:350px;}
    100%{left:560px;}
}
@-o-keyframes walk {
    0%{left:350px;}
    100%{left:560px;}
}
@keyframes walk {
    0%{left:350px;}
    100%{left:560px;}
}
/* common */
.b{font-weight:bold;}
.red,.red:hover{color:#a31108;}
.area{width:1000px;margin:0 auto;}
.title-alpha{background:rgba(0,0,0,0.5);filter:progid:dximagetransform.microsoft.gradient(startcolorstr=#78000000,endcolorstr=#78000000)}
:root .title-alpha{filter:progid:dximagetransform.microsoft.gradient(startcolorstr=#00000000,endcolorstr=#00000000)}
a:hover .title-alpha{text-decoration:underline}
.title-alpha-a{background:rgba(255,255,255,0.5);filter:progid:dximagetransform.microsoft.gradient(startcolorstr=#78ffffff,endcolorstr=#78ffffff)}
:root .title-alpha-a{filter:progid:dximagetransform.microsoft.gradient(startcolorstr=#00ffffff,endcolorstr=#00ffffff)}
.white a,.white a:hover{color:#fff;}
/* background */
body{background:#1d565a;text-align:left;}
/* module */
.header,.banner{background:url(/uploads/image/wzgsimages/banner.jpg) center 0 no-repeat;}
.mainnav .nav{background:url(/uploads/image/wzgsimages/bg.png) no-repeat;}

.banner .icon-1{background:url(/uploads/image/wzgsimages/bg1_icon1.png) no-repeat;_background:none;_filter:progid:dximagetransform.microsoft.alphaimageloader(src='http://www1.pchouse.com.cn/zt/gz20141128/sdj/images/bg1_icon1.png',sizingmethod='crop')}
.banner .icon-2{background:url(/uploads/image/wzgsimages/bg1_icon2.png) no-repeat;_background:none;_filter:progid:dximagetransform.microsoft.alphaimageloader(src='http://www1.pchouse.com.cn/zt/gz20141128/sdj/images/bg1_icon2.png',sizingmethod='crop')}
.banner .icon-3{background:url(/uploads/image/wzgsimages/bg1_icon3.png) no-repeat;_background:none;_filter:progid:dximagetransform.microsoft.alphaimageloader(src='http://www1.pchouse.com.cn/zt/gz20141128/sdj/images/bg1_icon3.png',sizingmethod='crop')}
.banner .icon-4{background:url(/uploads/image/wzgsimages/bg1_icon4.png) no-repeat;_background:none;_filter:progid:dximagetransform.microsoft.alphaimageloader(src='http://www1.pchouse.com.cn/zt/gz20141128/sdj/images/bg1_icon4.png',sizingmethod='crop')}
.banner .icon-5{background:url(/uploads/image/wzgsimages/bg1_icon5.png) no-repeat;_background:none;_filter:progid:dximagetransform.microsoft.alphaimageloader(src='http://www1.pchouse.com.cn/zt/gz20141128/sdj/images/bg1_icon5.png',sizingmethod='crop')}
.icon-fx{background:url(/uploads/image/wzgsimages/icon_fx.png) no-repeat;_background:none;_filter:progid:dximagetransform.microsoft.alphaimageloader(src='http://www1.pchouse.com.cn/zt/gz20141128/sdj/images/icon_fx.png',sizingmethod='crop')}
.icon-sd{background:url(/uploads/image/wzgsimages/icon_sd.png) no-repeat;_background:none;_filter:progid:dximagetransform.microsoft.alphaimageloader(src='http://www1.pchouse.com.cn/zt/gz20141128/sdj/images/icon_sd.png',sizingmethod='crop')}

.area-1-wrap,.area-1,.switch-a-box{background:url(/uploads/image/wzgsimages/bg_1.png) center 0 no-repeat;}
.area-2-wrap,.area-2{background:url(/uploads/image/wzgsimages/bg_2.jpg) center 0 no-repeat;}
.area-3-wrap,.area-3,.switch-a-box-2{background:url(/uploads/image/wzgsimages/bg_3.jpg) center 0 no-repeat;}
.area-4-wrap,.area-4{background:url(/uploads/image/wzgsimages/bg_4.jpg) center 0 no-repeat;}
.area-5-wrap,.area-5{background:url(/uploads/image/wzgsimages/bg_5.jpg) center 0 no-repeat;}
.area-6-wrap,.area-6{background:url(/uploads/image/wzgsimages/bg_6.jpg) center 0 no-repeat;}

.switch-a-tab .icon,.switch-a .btn,.switch-b-tab .tab,.surney .like,.surney .dislike,.scroll-a-box .en,.scroll-a .btn{background:url(/uploads/image/wzgsimages/bg.png) no-repeat;}
.pics-a .item,.mod-a .icon,.switch-a-box-2 .info .stit{background:url(/uploads/image/wzgsimages/bg32.png) no-repeat;_background:url(/uploads/image/wzgsimages/bg8.png) no-repeat;}


/* website */
.img-png32{display:inline-block;}
.banner{height:562px;width:1000px;margin:0 auto;position:relative;}
.banner .icon{position:absolute;}
.banner .icon-1{left:-188px;top:34px;width:57px;height:151px;}

.banner .icon-2{left:49px;top:0;width:79px;height:158px;}
.banner .icon-3{left:938px;top:0;width:90px;height:201px;}
.banner .icon-4{left:312px;top:127px;width:240px;height:95px;}
.banner .icon-5{left:297px;top:102px;width:95px;height:84px;}
.guide{position:absolute;left:344px;top:405px;line-height:20px;color:#99c9be;width:420px;}
.mainnav{height:74px;font-size:0;line-height:0;text-align:center;}
.mainnav .nav{display:inline-block;font-size:20px;padding-left:32px;height:74px;line-height:74px;width:90px;overflow:hidden;color:#fff;font-family:"\5fae\8f6f\96c5\9ed1";background-position:-457px -85px;text-align:left;}
.mainnav .nav:hover{text-decoration:none;color:#fff;}
/*area-1*/
.icon-fx{position:absolute;width:82px;height:176px;left:300px;top:0;}
.area-1{height:793px;}
.switch-a{position:relative;}
.switch-a-con{position:relative;width:999px;overflow:hidden;height:740px;}
.switch-a-box{width:999px;background-position:-221px 0;height:740px;}
.switch-a-box .col-a{float:left;width:340px;margin-right:30px;padding-left:20px;}
.switch-a-box .col-b{float:left;width:280px;}
.switch-a-box .col-c{float:right;width:320px;position:relative;}
.switch-a-box .col-c .stit{float:left;font-size:18px;width: 20px;text-align:center;color:#fff;padding:141px 0 0 40px;font-family:"\5fae\8f6f\96c5\9ed1";line-height:20px;}
.switch-a-box .sum{font:12px/24px "\5fae\8f6f\96c5\9ed1";color:#222;padding-top:235px;overflow:hidden;height:87px;}
.pics-a{overflow:hidden;position:relative;}
.pics-a .pic{display:block;}
.pics-a .tit{display:block;height:32px;font:18px/32px "\5fae\8f6f\96c5\9ed1";color:#f2f2f2;text-align:center;margin-top:-32px;position:relative;z-index:10;}
.pics-a .info{height:134px;margin-top:-0;position:relative;padding:0 15px 0 26px;overflow:hidden;z-index:10;}
.pics-a ul{padding:17px 0}
.pics-a .item{line-height:22px;color:#222;padding-left:24px;vertical-align:top;zoom:1;}
.pics-a .item .b{float:left;width:68px;}
.pics-a .item-1{background-position:-73px -21px;}
.pics-a .item-2{background-position:-73px -90px;}
.pics-a .item-3{background-position:-73px -68px;}
.pics-a .item-4{background-position:-73px -45px;}
.pics-a-340{width:340px;height:400px;}
.pics-a-280{width:280px;height:320px;}
.switch-a-box .pics-a-280-1{margin-top:23px;margin-bottom:36px;height:343px;}
.txts-a-1{padding:162px 0 0 55px;margin-bottom:26px;float:left;}
.txts-a .item{height:24px;font:16px/24px "\5fae\8f6f\96c5\9ed1";color:#fff;}
.product{width:310px;height:480px;position:relative;clear:both;}

.mod-a{position:absolute;}
.mod-a .tips{position:absolute;width:20px;height:20px;}
.mod-a .icon{width:20px;height:20px;background-position:-71px 0;cursor:pointer;display:block;}
.mod-a .tips-else{position:absolute;padding:6px 10px 0;width:128px;height:123px;border:1px #d4d4d4 solid;left:10px;top:10px;display:none;z-index:100;}
.mod-a .tips-hov .tips-else{display:block;zoom:1;overflow:hidden;}
.mod-a .btit{float:left;font:bold 16px/20px "\5fae\8f6f\96c5\9ed1";color:#aa1411;margin-bottom:4px;padding-left:5px;}
.mod-a .txts-b{clear:both;margin-bottom:4px;}
.mod-a li{line-height:22px;padding-left:5px;}
.mod-a .b{font-size: 14px;font-family:"\5fae\8f6f\96c5\9ed1";}


.mod-a-1{width:232px;height:215px;left:58px;top:18px;}
.mod-a-1 .tips{left:95px;top:145px;}
.mod-a-2{width:165px;height:163px;left:10px;top:310px;}
.mod-a-2 .tips{left:10px;top:10px;}
.mod-a-3{width:102px;height:147px;left:200px;top:330px;}
.mod-a-3 .tips{left:0px;top:0px;}
.mod-a-3 .tips .tips-else{left:-40px;}

.switch-a-tab{width:77px;height:306px;position:absolute;right:-78px;top:35px;_right:-79px;}
.switch-a-tab .tab{width:100%;height:84px;margin-bottom:18px;cursor:pointer;}
.switch-a-tab .icon{display:block;height:84px;}
.switch-a-tab .icon-1{background-position:0 0;}
.switch-a-tab .icon-2{background-position:-156px 0;}
.switch-a-tab .icon-3{background-position:-312px 0;}
.switch-a-tab .current{}
.switch-a-tab .current .icon-1{background-position:-78px 0;}
.switch-a-tab .current .icon-2{background-position:-234px 0;}
.switch-a-tab .current .icon-3{background-position:-390px 0;}

.switch-a .btn{position:absolute;width:39px;height:70px;top:371px;}
.switch-a .btn-l{left:-39px;background-position:0 -85px;}
.switch-a .btn-l:hover{background-position:-40px -85px;}
.switch-a .btn-r{right:-40px;background-position:-81px -85px;_right:-41px;}
.switch-a .btn-r:hover{background-position:-122px -85px;}
/*area-2*/
.area-2{height:855px;position:relative;}
.area-2 .col-a{float:left;width:444px;padding-left:29px;padding-top:260px;}
.area-2 .col-b{float:right;width:465px;padding-right:18px;}

.box-a{}
.box-a .addr{}
.box-a .addr .btit{font:14px/16px "\5fae\8f6f\96c5\9ed1";color:#fff;background-color:#a31108;padding:2px 5px;display:inline-block;}
.box-a .addr li{line-height:22px;color:#01393a;}
.box-a .tips{line-height:22px;color:#222;font-family:"\5fae\8f6f\96c5\9ed1";}
.box-a .pic{clear:both;}

.box-a-1{height:519px;}
.box-a-1 .addr{float:left;width:180px;padding:93px 0 0 25px;margin-bottom:17px;}
.box-a-1 .addr .btit{margin-bottom:5px;}
.box-a-1 .tips{float:right;width:175px;}
.box-a-1 .pic{width:444px;height:340px;}

.box-a-2{height:351px;margin-top:50px;margin-bottom:36px;}
.box-a-2 .pic{float:left;width:249px;margin-bottom:10px;height:284px;}
.box-a-2 .tips{float:right;width:160px;padding:32px 18px 0 0;}
.box-a-2 .addr{clear:both;padding-left:129px;}
.box-a-2 .addr .btit{float:left;margin-right:11px;margin-top:6px;width:56px;}
.box-a-2 ul{float:left;width:180px;}

.box-a-3{height:351px;margin-bottom:35px;}
.box-a-3 .pic{float:right;width:243px;margin-bottom:14px;padding-right:10px;}
.box-a-3 .tips{float:left;width:160px;padding:42px 0 0 34px;}
.box-a-3 .addr{clear:both;padding-left:190px;}
.box-a-3 .addr .btit{float:left;margin-right:11px;margin-top:6px;width:56px;}
.box-a-3 ul{float:left;}

.box-a-1-hov,.box-a-2-hov,.box-a-3-hov{background:url(/uploads/image/wzgsimages/bg_2_1.jpg) no-repeat;}
.box-a-1-hov{background-position:-28px -260px;}
.box-a-2-hov{background-position:-516px -50px;}
.box-a-3-hov{background-position:-516px -437px;}
/*area-3*/
.area-3{height:768px;position:relative;}
.switch-a-box-2{width:999px;background-position:-221px 0;}
.switch-a-box-2 .col-a{float:left;width:340px;padding:217px 0 0 19px;}

.switch-a-box-2 .col-b{float:left;width:245px;}
.switch-a-box-2 .col-b .stit{text-align:center;font:bold 18px/30px '\5fae\8f6f\96c5\9ed1';color:#01393a;padding-top:255px;margin-bottom:5px;}
.switch-a-box-2 .list-a{font-family:"\5fae\8f6f\96c5\9ed1";padding:0 45px;height:116px;}
.switch-a-box-2 .list-a li{line-height:24px;color:#01393a;font-size:14px;}
.switch-a-box-2 .shopname{display:block;height:30px;font:20px/30px "\5fae\8f6f\96c5\9ed1";color:#fff;text-align:center;margin-bottom:13px;}
.switch-a-box-2 .list-b{padding:0 9px 0 6px;}
.switch-a-box-2 .list-b .item{margin-bottom:2px;}
.switch-a-box-2 .col-b .sum{line-height:24px;color:#222;text-indent:2em;padding:0 5px;font-family:"\5fae\8f6f\96c5\9ed1";height:128px;}
.switch-a-box-2 .col-c{float:right;width:358px;padding-right:20px;position:relative;}
.switch-a-box-2 .col-c .bhd{text-align:center;font:24px/30px "\5fae\8f6f\96c5\9ed1";padding:91px 0 25px;}
.switch-a-box-2 .col-c .info{width:160px;float:left;position:relative;padding-left:11px;margin-right:36px;}
.switch-a-box-2 .info .stit{position:absolute;width:55px;height:64px;background-position:0 0;font:16px/22px "\5fae\8f6f\96c5\9ed1";color:#fff;text-align:center;padding:11px 10px 0 5px;left:98px;top:133px;}
.switch-a-box-2 .info .pic{display:block;margin-bottom:55px;}
.switch-a-box-2 .info .sum{line-height:24px;color:#222;padding:0 5px;font-family:"\5fae\8f6f\96c5\9ed1";height:128px;}
.switch-a-box-2 .pics{float:left;width:129px;}
.pics-b{position:relative;}
.pics-b .pic{display:block;}
.pics-b .bg{display:block;width:129px;height:84px;position:relative;color:#fff;cursor:pointer;z-index:10;}
.pics-b .btxt{font:16px/30px "\5fae\8f6f\96c5\9ed1";padding:5px 10px 0 15px;display:block;}
.pics-b .stxt{font:12px/20px "\5fae\8f6f\96c5\9ed1";padding:0 10px 0 15px;display:block;}
.pics-b-129{width:129px;height:84px;margin-bottom:36px;overflow:hidden;}
.pics-b-129 .bg{margin-top:0;}

/*area-4*/
.area-4{height:827px;position:relative;}
.box-b{}
.box-b .sum{line-height:23px;color:#222;text-indent:1em;}
.box-b .pics{width:118px;}
.box-b .pics .pic{margin-bottom:17px;display:block;}
.box-b .pics .tit{text-align:center;color:#fff;height:21px;line-height:21px;font-family:"\5fae\8f6f\96c5\9ed1";display:block;}
.box-b .switch-b{}

.box-b-1{float:left;width:295px;padding-top:313px;padding-left:35px;}
.box-b-1 .sum{float:left;width:158px;padding-top:8px;}
.box-b-1 .pics{float:right;padding-right:7px;margin-bottom:40px;}
.box-b-2{float:right;width:500px;padding-right:125px;padding-top:73px;height:269px;margin-bottom:65px;overflow:hidden;}
.box-b-2 .switch-b{float:left;margin-right:45px;padding-top:18px;}
.box-b-2 .pics{float:left;width:146px;}
.box-b-2 .pics .pic{margin-left:13px;}
.box-b-2 .pics .tit{text-align:center;margin-bottom:14px;}
.box-b-2 .sum{float:left;width:158px;}

.box-b-3{float:right;width:300px;padding-right:31px;}
.box-b-3 .sum{float:left;width:158px;}
.box-b-3 .pics{float:right;padding-right:9px;margin-bottom:16px;}
.box-b-3 .pics .pic{margin-bottom:11px;}

.switch-b{width:295px;clear:both;}
.switch-b-con{width:295px;height:232px;position:relative;overflow:hidden;}
.switch-b-con a{display:block;height:232px;width:295px;}
.switch-b-con .tit{display:block;height:20px;line-height:20px;text-align:center;color:#fff;position:relative;margin-top:-20px;}
.switch-b-tab{font-size:0;line-height:0;text-align:right;padding-top:11px;height:8px;}
.switch-b-tab .tab{display:inline-block;width:8px;height:8px;background-position:-373px -85px;margin:0 6px;cursor:pointer;}
.switch-b-tab .current{background-position:-364px -85px;}

.icon-sd{position:absolute;width:108px;height:64px;left:320px;top:610px;}
/*area-5*/
.area-5{height:14px;position:relative;}
.area-5 .btit{display:block;font:18px/24px "\5fae\8f6f\96c5\9ed1";color:#e61b24;padding:475px 0 0 600px;margin-bottom:14px;}
.area-5 ul{padding-left:630px;width:340px;color:#fff;font-weight:normal;}
.area-5 li{line-height:24px;font-size:14px;font-family:"\5fae\8f6f\96c5\9ed1";}
.area-5 .item{margin-bottom:7px;}
/*area-6*/
.area-6{height:889px;position:relative;overflow:hidden;}
.surney{padding:68px 112px 0;height:60px;margin-bottom:168px;width:775px;overflow:hidden;}
.surney .like{float:left;width:60px;height:60px;background-position:-162px -85px;margin-right:3px;cursor:pointer;overflow:hidden;text-indent:9999em;}
.surney .data{height:38px;width:648px;overflow:hidden;margin-top:11px;font:18px/38px "arial";color:#fff;position:relative;background-color:#1d565a;float:left;}
.surney .data-a{width:0;background-color:#1d565a;_margin-right:-3px;text-align:center;float:left;position:absolute;left:0;top:0;}
.surney .data-b{float:right;text-align:center;width:0;background-color:#a31108;position:absolute;right:0;top:0;}
.surney .dislike{float:right;width:60px;height:60px;background-position:-223px -85px;cursor:pointer;overflow:hidden;text-indent:9999em;}

.scroll-a{height:235px;position:relative;margin-bottom:95px;}
.scroll-a-con{height:235px;width:895px;margin:0 auto;position:relative;overflow:hidden;}
.scroll-a-box{height:235px;width:220px;float:left;margin-right:4px;}
.scroll-a-box .en{display:block;height:28px;font:18px/28px "\5fae\8f6f\96c5\9ed1";color:#8f8f8f;background-position:-166px -146px;text-align:center;}
.scroll-a-box .btit{display:block;height:44px;background-color:#484848;text-align:center;color:#fff;font:30px/44px "\5fae\8f6f\96c5\9ed1";margin-bottom:15px;}
.scroll-a-box .pic img{border:1px #e9e9e9 solid;}
.scroll-a-box .tit{display:block;font:14px/20px "\5fae\8f6f\96c5\9ed1";height:20px;text-align:center;padding-top:4px;}
.scroll-a-box a{color:#333;}
.scroll-a-box a:hover{text-decoration:none;color:#a31108;}
.scroll-a .btn{position:absolute;width:19px;height:53px;top:126px;}
.scroll-a .btnl{background-position:-284px -85px;left:26px;}
.scroll-a .btnl:hover{background-position:-304px -85px;}
.scroll-a .btnr{background-position:-324px -85px;right:26px;}
.scroll-a .btnr:hover{background-position:-344px -85px;}

.team{height:125px;}
.team .list-1{float:left;padding-left:250px;width:220px;margin-right:62px;}
.team .list-1 li{float:left;width:110px;font:normal 14px/30px "\5fae\8f6f\96c5\9ed1";color:#fff;}
.team .list-2{font-family:"\5fae\8f6f\96c5\9ed1";}
.team .list-2 li{line-height:22px;color:#fff;}
.team .list-2 .stit{float:left;width:65px;}

.icons{background:url(/uploads/image/wzgpimages/icons.png) no-repeat scroll 0% 0% transparent; }
.icons_a{background:url(/uploads/image/wzgpimages/icons.png) no-repeat scroll 0% 0% transparent;_background:url(/uploads/image/wzgpimages/icons.png) no-repeat scroll 0% 0% transparent; }
*html{_background-image:;_background-attachment:fixed}
.fixboxa{width:130px;position:fixed;left:50%;bottom:50px;margin-left:565px;_position:absolute;_top:expression(documentelement.scrolltop   (documentelement.clientheight - this.clientheight)  - 50   "px");}
.fixboxa a{width:44px;height:44px;margin-top:1px;display:block; }
.fixboxa .afav{ background-position:-9px -596px;}
.fixboxa .afav:hover{ background-position:-180px -596px;}
.fixboxa .ashare{background-position:-358px -595px;}
.fixboxa .ashare:hover{background-position:-414px -595px;}
.fixboxa .apchouse{ background-position:-66px -595px;}
.fixboxa .apchouse:hover{ background-position:-239px -595px;}
.fixboxa .atop{ background-position:-119px -595px; display:none;}
.fixboxa .atop:hover{ background-position:-300px -595px;}
.div_share{width:130px; height:44px;position:relative;}
.share{display:none;position:absolute;right:0px;top:0;}
.share em{width:20px; height:30px; background-position:-563px -43px;position:absolute;left:-20px;top:10px;}
#bdshare{width:75px; height:50px; padding-bottom:3px; background-color:#7c7c7c;display:inline; float:left; position:relative; margin-left:-10px;}
#bdshare .bds_more{display:none;}
#bdshare .itxt{display:block;color:#fff;width:60px;padding-left:5px;}
#bdshare a{width:0px;overflow:hidden;float:left;margin-left:5px;display:inline;margin-right:0;}
#bdshare .bds_tqq{display:none;}
/* footer */
body .g-footer .gft-links,
body .g-footer .gft-links a{ color:#000;}
body .g-footer .gft-copyright,
body .g-footer .gft-copyright a{ color:#000;} 


