@charset "utf-8";
/*
*在火狐响应式窗口才能调试效果 IE低版本浏览器不支持
*/
/*手机*/
@import url("stylemob.css") screen and (max-device-width:600px);

/*ipad*/
@import url("stylepad.css") screen and (min-device-width:601px) and (max-device-width:934px);

/*笔记本*/
@import url("stylelaptop.css") screen and (min-device-width:934px) and (max-device-width:1200px);

/*宽屏电脑*/
@import url("stylepc.css") screen and (min-device-width:1201px);

/*字体icon*/
@import url("font-awesome.min4.css");

/*去掉苹果效果************/
input[type="button"], input[type="submit"], input[type="reset"] {
-webkit-appearance: none;
}
textarea {  -webkit-appearance: none;}   
/*动画效果************/
body,div,a{
transition:all 1s ease ;
-moz-transition:all 1s ease ; /* Firefox 4 */
-webkit-transition:all 1s ease ; /* Safari and Chrome */
-o-transition:all 1s ease ; /* Opera */
}


