﻿@charset "utf-8";
/* CSS Document */


/* 放大效果
_________________________________________*/
.zoompic {
	background: #fff;
	width: 100%;
	height: auto;
	padding: 0;
	padding-bottom:67%;
	margin: 0;
	position: relative;
	border: 0px;
	/*box-sizing: border-box;*/
	cursor: pointer;
	overflow: hidden
}
.zoompic .he_ZoomInImg_img {
	position: absolute;
	display: block;
	width: 100%;
	height:auto;
	padding: 0;
	margin: 0;
	opacity: 1;
	-webkit-transition: all 1s ease-in-out;/*zoomin的速度如.7s*/
	-moz-transition: all 1s ease-in-out;/*zoomin的速度*/
	-o-transition: all 1s ease-in-out;/*zoomin的速度*/
	-ms-transition: all 1s ease-in-out;/*zoomin的速度*/
	transition: all 1s ease-in-out;
	overflow: hidden
}
.zoompic .he_ZoomInImg_img
.data:hover .he_ZoomInImg_img, .theme:hover .he_ZoomInImg_img{
	opacity: 1;/*zoomin的圖片透明度如.7*/
	-webkit-transform: scale(1.2);/*zoomin的圖片放大比例*/
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2)
}


