+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ //监听行工具事件
+ //注:tool 是工具条事件名,test 是 table 原始容器的属性 lay-filter="对应的值"
+ //obj.data //获得当前行数据
+ //var layEvent = obj.event; //获得 lay-event 对应的值
+ table.on('tool(test)', function (obj) {
+ var event = obj.event;
+ var data = obj.data;
+ if (event === 'edit') { //执行编辑
+ layer.open({
+ type: 2,
+ title: '编辑管理员',
+ area: ['400px', '500px'],
+ content: '/admin/editAdmin/' + data.id
+ });
+ } else if (event === 'del') {//执行删除
+ var adminId = $("#adminId").val();
+ if (data.roleName == "超级管理员") {
+ layer.msg('超级管理员不能删除');
+ return;
+ }
+ if (data.id == adminId) {
+ layer.msg('不能删除自己');
+ return;
+ }
+ layer.confirm('确认删除', function (index) {
+ $.ajax({
+ url: '/admin/deleteAdmin/' + data.id,
+ type: 'delete',
+ dataType: 'json',
+ success: function (result) {
+ if (result.code == 200) {
+ layer.msg("删除成功", {icon: 1});
+ location.reload();
+ } else {
+ layer.msg("删除失败", {icon: 5});
+ }
+ }
+ })
+ layer.close(index);
+ })
+ }
+ })
+
+
+ });
+
+
+
+
+
\ No newline at end of file
diff --git a/pccenter/src/main/resources/templates/sys/complainList.html b/pccenter/src/main/resources/templates/sys/complainList.html
new file mode 100644
index 0000000000000000000000000000000000000000..24714708abb6b8a6587ad05ce769ca774cf9ebbe
--- /dev/null
+++ b/pccenter/src/main/resources/templates/sys/complainList.html
@@ -0,0 +1,161 @@
+
+
+
+
+
物业投诉列表
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pccenter/src/main/resources/templates/sys/dynamic_commentList.html b/pccenter/src/main/resources/templates/sys/dynamic_commentList.html
new file mode 100644
index 0000000000000000000000000000000000000000..9ad824aa01a414be6af08033462328498e0c6b73
--- /dev/null
+++ b/pccenter/src/main/resources/templates/sys/dynamic_commentList.html
@@ -0,0 +1,163 @@
+
+
+
+
+
活动评论列表
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pccenter/src/main/resources/templates/sys/editMenu.html b/pccenter/src/main/resources/templates/sys/editMenu.html
new file mode 100644
index 0000000000000000000000000000000000000000..47fc05fafebf118c4792d78d49431073e1a14ac7
--- /dev/null
+++ b/pccenter/src/main/resources/templates/sys/editMenu.html
@@ -0,0 +1,99 @@
+
+
+
+
+
编辑菜单
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pccenter/src/main/resources/templates/sys/editRole.html b/pccenter/src/main/resources/templates/sys/editRole.html
index 570fcac7668793ab364b251f3402b8fdf5e84cab..8a5799424cf1e1fe55a08bddc0d7e45f9bce5d58 100644
--- a/pccenter/src/main/resources/templates/sys/editRole.html
+++ b/pccenter/src/main/resources/templates/sys/editRole.html
@@ -33,7 +33,6 @@
diff --git a/pccenter/src/main/resources/templates/sys/index.html b/pccenter/src/main/resources/templates/sys/index.html
index 47fcf32ef3ded84627953cd3b611c2aa3c531366..7aaa30a4c5b94f8970df4f29ff54e063cb86d894 100644
--- a/pccenter/src/main/resources/templates/sys/index.html
+++ b/pccenter/src/main/resources/templates/sys/index.html
@@ -1,5 +1,5 @@
-
+
后台首页
@@ -24,19 +24,19 @@
修改密码
- 退出
+ 退出
-
+
- 个人资料
- 修改密码
- - 退出
+ - 退出
diff --git a/pccenter/src/main/resources/templates/sys/menuList.html b/pccenter/src/main/resources/templates/sys/menuList.html
index 95a1b818453a0d483e05df92c3034ae4edc2cd5f..a239710039d746ea6999d204116030bbc467f2aa 100644
--- a/pccenter/src/main/resources/templates/sys/menuList.html
+++ b/pccenter/src/main/resources/templates/sys/menuList.html
@@ -1,5 +1,5 @@
-
+
菜单列表
@@ -8,9 +8,12 @@
-
-
-
+
+
+
+
+
+
@@ -58,9 +61,6 @@
{title:'排序',field:'sorting',event:'sorting',style:'cursor:pointer'}
]
]
- })
- $("#editMenu").click(function () {
-
})
//添加菜单
$("#addMenu").click(function () {
@@ -82,10 +82,34 @@
layer.open({
type:2,
title:'添加菜单',
- area:['500px','600px'],
+ area:['400px','400px'],
content:'/menus/addMenu/'+parentId
})
})
+ //编辑菜单
+ $("#editMenu").click(function () {
+ var checkStatus = treeGrid.checkStatus('treeTable');
+ var data = checkStatus.data;//获取选中行的数据
+ if(data.length>1){
+ layer.msg('只能选择一条数据',{icon:5});
+ return ;
+ }
+ var menuId;
+
+ if(data != ''){
+ //获取当前行的节点菜单的Id
+ menuId = data[0].menuId;
+ }
+ //如果没有勾选复选框,默认id的值为0;即是根节点。
+ //parentId = parentId==undefined?0:parentId;
+
+ layer.open({
+ type:2,
+ title:'编辑菜单',
+ area:['400px','400px'],
+ content:'/menus/editMenu/'+menuId
+ })
+ })
//排序:监听行工具事件 tool()
treeGrid.on("tool(treeTable)",function (row) {
if(row.event === 'sorting'){
@@ -118,7 +142,7 @@
})
}
})
-
+
//删除菜单
$("#delMenu").click(function () {
var checkStatus = treeGrid.checkStatus('treeTable');
diff --git a/pccenter/src/main/resources/templates/sys/merchantList.html b/pccenter/src/main/resources/templates/sys/merchantList.html
new file mode 100644
index 0000000000000000000000000000000000000000..54fb4f82022acbdf74fcb993d39de35d7384e841
--- /dev/null
+++ b/pccenter/src/main/resources/templates/sys/merchantList.html
@@ -0,0 +1,187 @@
+
+
+
+
+
商家注册列表
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pccenter/src/main/resources/templates/sys/pmList.html b/pccenter/src/main/resources/templates/sys/pmList.html
new file mode 100644
index 0000000000000000000000000000000000000000..4af99772c727f0730465a47bce1beb0164e6c9fb
--- /dev/null
+++ b/pccenter/src/main/resources/templates/sys/pmList.html
@@ -0,0 +1,188 @@
+
+
+
+
+
物业审核
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pccenter/src/main/resources/templates/sys/reply.html b/pccenter/src/main/resources/templates/sys/reply.html
new file mode 100644
index 0000000000000000000000000000000000000000..cd2cb47caef10ea776bd5129dba42b2284a7dda4
--- /dev/null
+++ b/pccenter/src/main/resources/templates/sys/reply.html
@@ -0,0 +1,56 @@
+
+
+
+
+
Title
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pccenter/src/main/resources/templates/sys/roleList.html b/pccenter/src/main/resources/templates/sys/roleList.html
index 895701e40e68564dfb9578e93815c28652c0f21d..a2d3567ebd6d0895990af67116e6cdccc63fea57 100644
--- a/pccenter/src/main/resources/templates/sys/roleList.html
+++ b/pccenter/src/main/resources/templates/sys/roleList.html
@@ -1,5 +1,5 @@
-
+
角色列表
@@ -7,19 +7,29 @@
-
+
+
-
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/personcentor/pom.xml b/personcentor/pom.xml
index 152243fd923a741bd34e7fc2bcd654843508d07e..93355173e8a1c756fc1ae368d6eeac5c76cf62bb 100644
--- a/personcentor/pom.xml
+++ b/personcentor/pom.xml
@@ -24,6 +24,12 @@
qiniu-java-sdk
[7.2.0, 7.2.99]
+
+ com.auth0
+ java-jwt
+ 2.2.0
+
+
com.google.code.gson
gson
@@ -124,10 +130,45 @@
spring-context
5.2.4.RELEASE
+
+ org.springframework.cloud
+ spring-cloud-starter-netflix-eureka-client
+ 2.2.2.RELEASE
+
- org.springframework
- spring-context
- 5.2.4.RELEASE
+ biz.aQute.bnd
+ biz.aQute.bndlib
+ 3.2.0
+
+
+ io.springfox
+ springfox-swagger2
+ 2.9.2
+
+
+ io.swagger
+ swagger-annotations
+
+
+ io.swagger
+ swagger-models
+
+
+
+
+ io.springfox
+ springfox-swagger-ui
+ 2.9.2
+
+
+ io.swagger
+ swagger-annotations
+ 1.5.21
+
+
+ io.swagger
+ swagger-models
+ 1.5.21
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/PersoncentorApplication.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/PersoncentorApplication.java
index b96fd6ccee9571fbc967b2904dea3413fc8aefdd..43634606682acd779944993364ad1a429889a9a2 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/PersoncentorApplication.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/PersoncentorApplication.java
@@ -4,6 +4,7 @@ import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
+import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.context.annotation.Bean;
import org.springframework.data.redis.cache.RedisCacheConfiguration;
import org.springframework.data.redis.connection.RedisConnectionFactory;
@@ -17,6 +18,7 @@ import org.springframework.session.data.redis.config.annotation.web.http.EnableR
@MapperScan("com.team7.happycommunity.personcentor.dao")
@EnableCaching//开启声明式缓存
@EnableRedisHttpSession
+@EnableEurekaClient
public class PersoncentorApplication {
public static void main(String[] args) {
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/common/LoginToken.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/common/LoginToken.java
new file mode 100644
index 0000000000000000000000000000000000000000..71bce91c46faa08999a53b94291acfbb433897ee
--- /dev/null
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/common/LoginToken.java
@@ -0,0 +1,37 @@
+package com.team7.happycommunity.personcentor.common;
+
+
+
+import java.io.Serializable;
+
+//@Component
+
+public class LoginToken implements Serializable {
+ private String username;
+ private String token;
+ private Integer userId;
+
+ public String getUsername() {
+ return username;
+ }
+
+ public void setUsername(String username) {
+ this.username = username;
+ }
+
+ public String getToken() {
+ return token;
+ }
+
+ public void setToken(String token) {
+ this.token = token;
+ }
+
+ public Integer getUserId() {
+ return userId;
+ }
+
+ public void setUserId(Integer userId) {
+ this.userId = userId;
+ }
+}
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/config/Swagger2Config.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/config/Swagger2Config.java
new file mode 100644
index 0000000000000000000000000000000000000000..473e92b0245455ec1261ab6156cb73e01804a266
--- /dev/null
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/config/Swagger2Config.java
@@ -0,0 +1,18 @@
+package com.team7.happycommunity.personcentor.config;
+
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import springfox.documentation.spi.DocumentationType;
+import springfox.documentation.spring.web.plugins.Docket;
+import springfox.documentation.swagger2.annotations.EnableSwagger2;
+
+@Configuration
+//@EnableSwagger2//启动
+public class Swagger2Config {
+
+ @Bean
+ public Docket decket(){
+ return new Docket(DocumentationType.SWAGGER_2);
+ }
+
+}
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/BusinessImageController.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/BusinessImageController.java
deleted file mode 100644
index 01b46687c4d9fb6db7d05d6908833192876b53d8..0000000000000000000000000000000000000000
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/BusinessImageController.java
+++ /dev/null
@@ -1,35 +0,0 @@
-package com.team7.happycommunity.personcentor.controller;
-
-import com.team7.happycommunity.personcentor.entity.BusinessImage;
-import com.team7.happycommunity.personcentor.service.BusinessImageService;
-import org.springframework.web.bind.annotation.*;
-
-import javax.annotation.Resource;
-
-/**
- * (BusinessImage)表控制层
- *
- * @author makejava
- * @since 2020-03-22 21:19:30
- */
-@RestController
-@RequestMapping("businessImage")
-public class BusinessImageController {
- /**
- * 服务对象
- */
- @Resource
- private BusinessImageService businessImageService;
-
- /**
- * 通过主键查询单条数据
- *
- * @param id 主键
- * @return 单条数据
- */
- @GetMapping("selectOne")
- public BusinessImage selectOne(Integer id) {
- return this.businessImageService.queryById(id);
- }
-
-}
\ No newline at end of file
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/CommunityActivityComplaintController.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/CommunityActivityComplaintController.java
deleted file mode 100644
index 0681a593e83b08f4e823f470996fa8dbfc1818cc..0000000000000000000000000000000000000000
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/CommunityActivityComplaintController.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package com.team7.happycommunity.personcentor.controller;
-
-import com.team7.happycommunity.personcentor.entity.CommunityActivityComplaint;
-import com.team7.happycommunity.personcentor.service.CommunityActivityComplaintService;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
-
-import javax.annotation.Resource;
-
-/**
- * (CommunityActivityComplaint)表控制层
- *
- * @author makejava
- * @since 2020-03-25 11:18:29
- */
-@RestController
-@RequestMapping("communityActivityComplaint")
-public class CommunityActivityComplaintController {
- /**
- * 服务对象
- */
- @Resource
- private CommunityActivityComplaintService communityActivityComplaintService;
-
- /**
- * 通过主键查询单条数据
- *
- * @param id 主键
- * @return 单条数据
- */
- @GetMapping("selectOne")
- public CommunityActivityComplaint selectOne(Integer id) {
- return this.communityActivityComplaintService.queryById(id);
- }
-
-}
\ No newline at end of file
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/CommunityChatController.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/CommunityChatController.java
deleted file mode 100644
index 429f030d5cdc13ee4077d7d7d95c91d731210519..0000000000000000000000000000000000000000
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/CommunityChatController.java
+++ /dev/null
@@ -1,36 +0,0 @@
-package com.team7.happycommunity.personcentor.controller;
-import com.team7.happycommunity.personcentor.entity.CommunityChat;
-import com.team7.happycommunity.personcentor.service.CommunityChatService;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
-
-import javax.annotation.Resource;
-
-/**
- * (CommunityChat)表控制层
- *
- * @author makejava
- * @since 2020-03-24 16:58:04
- */
-@RestController
-@RequestMapping("communityChat")
-public class CommunityChatController {
- /**
- * 服务对象
- */
- @Resource
- private CommunityChatService communityChatService;
-
- /**
- * 通过主键查询单条数据
- *
- * @param id 主键
- * @return 单条数据
- */
- @GetMapping("selectOne")
- public CommunityChat selectOne(Integer id) {
- return this.communityChatService.queryById(id);
- }
-
-}
\ No newline at end of file
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/CommunityDynamicCommentController.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/CommunityDynamicCommentController.java
deleted file mode 100644
index 954faa837087041ddca002578fea960a0704e704..0000000000000000000000000000000000000000
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/CommunityDynamicCommentController.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package com.team7.happycommunity.personcentor.controller;
-
-import com.team7.happycommunity.personcentor.entity.CommunityDynamicComment;
-import com.team7.happycommunity.personcentor.service.CommunityDynamicCommentService;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
-
-import javax.annotation.Resource;
-
-/**
- * (CommunityDynamicComment)表控制层
- *
- * @author makejava
- * @since 2020-03-24 17:26:32
- */
-@RestController
-@RequestMapping("communityDynamicComment")
-public class CommunityDynamicCommentController {
- /**
- * 服务对象
- */
- @Resource
- private CommunityDynamicCommentService communityDynamicCommentService;
-
- /**
- * 通过主键查询单条数据
- *
- * @param id 主键
- * @return 单条数据
- */
- @GetMapping("selectOne")
- public CommunityDynamicComment selectOne(Integer id) {
- return this.communityDynamicCommentService.queryById(id);
- }
-
-}
\ No newline at end of file
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/CommunityDynamicController.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/CommunityDynamicController.java
index 6bfc5a07832954689a79f25674fd6c787a680150..f6f09fe89175b4d9e3f2ffc3217d087cf49b424e 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/CommunityDynamicController.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/CommunityDynamicController.java
@@ -1,12 +1,19 @@
package com.team7.happycommunity.personcentor.controller;
+import com.team7.happycommunity.personcentor.common.CommonResult;
import com.team7.happycommunity.personcentor.entity.CommunityDynamic;
+import com.team7.happycommunity.personcentor.entity.CommunityDynamicComment;
+import com.team7.happycommunity.personcentor.entity.DynamicCommit;
+import com.team7.happycommunity.personcentor.service.CommunityDynamicCommentService;
import com.team7.happycommunity.personcentor.service.CommunityDynamicService;
+import io.swagger.annotations.*;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
+import java.util.Date;
+import java.util.List;
/**
* (CommunityDynamic)表控制层
@@ -16,12 +23,15 @@ import javax.annotation.Resource;
*/
@RestController
@RequestMapping("communityDynamic")
+@Api(tags="社区动态接口")
public class CommunityDynamicController {
/**
* 服务对象
*/
@Resource
private CommunityDynamicService communityDynamicService;
+ @Resource
+ private CommunityDynamicCommentService communityDynamicCommentService;
/**
* 通过主键查询单条数据
@@ -34,4 +44,76 @@ public class CommunityDynamicController {
return this.communityDynamicService.queryById(id);
}
+ /**
+ * 查询当前动态的所有评论
+ * @param dynamicId 动态id
+ * @return 评论内容
+ */
+ @GetMapping("queryCommit")
+ @ApiOperation(value = "查询当前动态的所有评论")
+ @ApiImplicitParams(value = {
+ @ApiImplicitParam(name = "dynamicId",value = "动态id",required = true)
+ })
+ public List
queryCommit(Integer dynamicId){
+ return communityDynamicService.queryCommit(dynamicId);
+ }
+
+ /**
+ * 添加评论
+ * @param dynamicId 动态id
+ * @param userId 评论用户的id
+ * @param cdcContent 评论内容
+ * @return
+ */
+ @GetMapping("addCommit")
+ @ApiOperation(value = "添加评论")
+ @ApiImplicitParams(value = {
+ @ApiImplicitParam(name = "dynamicId",value = "动态id",required = true),
+ @ApiImplicitParam(name = "userId",value = "评论用户的id",required = true),
+ @ApiImplicitParam(name = "userId",value = "评论内容",required = true)
+ })
+
+ @ApiResponses(value = {
+ @ApiResponse(code = 200,message = "评论成功"),
+ @ApiResponse(code = 500,message = "评论失败")
+ })
+ public CommonResult addCommit(Integer dynamicId,Integer userId,String cdcContent){
+ try {
+ CommunityDynamicComment comment=new CommunityDynamicComment();
+ comment.setCdcContent(cdcContent);
+ comment.setCdcDynamicId(dynamicId);
+ comment.setCdcUserId(userId);
+ comment.setCdcTime(new Date());
+ communityDynamicCommentService.insert(comment);
+ return CommonResult.success();
+ } catch (Exception e) {
+ e.printStackTrace();
+ return CommonResult.failed();
+ }
+ }
+
+ /**
+ * 删除评论
+ * @param id 评论的id
+ * @return
+ */
+ @GetMapping("deleteCommit")
+ @ApiOperation(value = "删除评论")
+ @ApiImplicitParams(value = {
+ @ApiImplicitParam(name = "id",value = "评论id",required = true)
+ })
+
+ @ApiResponses(value = {
+ @ApiResponse(code = 200,message = "删除成功"),
+ @ApiResponse(code = 500,message = "删除失败")
+ })
+ public CommonResult deleteCommit(Integer id){
+ try {
+ communityDynamicCommentService.deleteById(id);
+ return CommonResult.success();
+ } catch (Exception e) {
+ e.printStackTrace();
+ return CommonResult.failed();
+ }
+ }
}
\ No newline at end of file
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/PersonCollectUserController.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/PersonCollectUserController.java
index 0bb033c0a0ce53a3d06d213203df6d0ce00cc9c5..21c02750b4a0290725ef26cc277255a40d7c6003 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/PersonCollectUserController.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/PersonCollectUserController.java
@@ -2,6 +2,7 @@ package com.team7.happycommunity.personcentor.controller;
import com.team7.happycommunity.personcentor.entity.PersonCollectUser;
import com.team7.happycommunity.personcentor.service.PersonCollectUserService;
+import io.swagger.annotations.Api;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
@@ -14,6 +15,7 @@ import javax.annotation.Resource;
*/
@RestController
@RequestMapping("personCollectUser")
+
public class PersonCollectUserController {
/**
* 服务对象
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/PersonUserController.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/PersonUserController.java
index 2a433ba065089a7f911cd19aab3e9a033ec4e51a..1f0f57f715daa0fb7418f625352365db3a9b027f 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/PersonUserController.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/controller/PersonUserController.java
@@ -2,6 +2,7 @@ package com.team7.happycommunity.personcentor.controller;
import com.sun.mail.imap.protocol.ID;
import com.team7.happycommunity.personcentor.common.CommonResult;
+import com.team7.happycommunity.personcentor.common.LoginToken;
import com.team7.happycommunity.personcentor.entity.Dynamic;
import com.team7.happycommunity.personcentor.entity.MyPublishAcitivity;
import com.team7.happycommunity.personcentor.entity.PersonUser;
@@ -10,6 +11,8 @@ import com.team7.happycommunity.personcentor.exception.MailboxStatusException;
import com.team7.happycommunity.personcentor.service.PersonUserService;
import com.team7.happycommunity.personcentor.util.CookieUtils;
import com.team7.happycommunity.personcentor.util.QiniuUploadUtil;
+import io.swagger.annotations.*;
+import org.apache.catalina.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.web.bind.annotation.*;
@@ -33,6 +36,7 @@ import java.util.concurrent.locks.ReentrantLock;
*/
@RestController
@RequestMapping("personUser")
+@Api(tags="用户接口")
public class PersonUserController {
/**
* 服务对象
@@ -70,22 +74,45 @@ public class PersonUserController {
*/
@RequestMapping("/subLogin")
@ResponseBody
- public CommonResult login(String text, String password) throws Exception {
+ @ApiOperation(value = "登录")
+ @ApiImplicitParams(value = {
+ @ApiImplicitParam(name = "text",value = "登录的手机号或者邮箱",required = true),
+ @ApiImplicitParam(name = "password",value = "密码",required = true)
+ })
+ @ApiResponses(value = {
+ @ApiResponse(code = 200,message = "登录成功"),
+ @ApiResponse(code = 500,message = "登录失败")
+ })
+ public CommonResult login(String text, String password) throws Exception {
+ PersonUser user =null;
if(text==null||password==null){
return CommonResult.failed("账号或密码不能为空");
}
try {
- personUserService.login(text,password);
+ user =personUserService.login(text, password);
} catch (LoginException e) {
e.printStackTrace();
return CommonResult.failed(e.getMessage());
}
- return CommonResult.success("登录成功");
+ LoginToken loginToken=new LoginToken();
+ loginToken.setUserId(user.getId());
+ loginToken.setUsername(user.getName());
+ return CommonResult.success("登录成功",loginToken);
}
+ /**
+ * 发送邮件
+ * @param user
+ * @return
+ */
@PostMapping("/mailboxRegister")
@ResponseBody
+ @ApiOperation(value = "发送邮件")
+ @ApiResponses(value = {
+ @ApiResponse(code = 200,message = "邮件发送成功"),
+ @ApiResponse(code = 500,message = "邮件发送失败")
+ })
public CommonResult mailboxRegister(PersonUser user){
//1.搜索邮箱,邮箱不存在或邮箱状态不为0
boolean flag=personUserService.queryMailbox(user.getMailbox());
@@ -104,13 +131,23 @@ public class PersonUserController {
}
/**
- * 手机号码注册,密码重置
+ * 发送验证码
* @param phone 手机号码
* @param resetCode 密码重置参数,1密码重置,0注册
* @return
*/
@PostMapping("/phoneRegister")
@ResponseBody
+ @ApiOperation(value = "发送验证码")
+ @ApiImplicitParams(value = {
+ @ApiImplicitParam(name = "phone",value = "手机号码",required = true),
+ @ApiImplicitParam(name = "resetCode",value = "密码重置参数,1密码重置,0注册",required = true)
+ })
+
+ @ApiResponses(value = {
+ @ApiResponse(code = 200,message = "验证码发送成功"),
+ @ApiResponse(code = 500,message = "验证码发送失败")
+ })
public CommonResult phoneRegister(String phone,String resetCode){
try {
@@ -130,6 +167,16 @@ public class PersonUserController {
*/
@PostMapping("/codeCheck")
@ResponseBody
+ @ApiOperation(value = "验证码校正")
+ @ApiImplicitParams(value = {
+ @ApiImplicitParam(name = "phone",value = "手机号码",required = true),
+ @ApiImplicitParam(name = "code",value = "验证码",required = true)
+ })
+
+ @ApiResponses(value = {
+ @ApiResponse(code = 200,message = "校正成功"),
+ @ApiResponse(code = 500,message = "校正失败")
+ })
public CommonResult codeCheck(String phone,String code){
try {
personUserService.codeCheck(code,phone);
@@ -147,6 +194,11 @@ public class PersonUserController {
*/
@PostMapping("/addInfo")
@ResponseBody
+ @ApiOperation(value = "添加个人信息")
+ @ApiResponses(value = {
+ @ApiResponse(code = 200,message = "添加成功"),
+ @ApiResponse(code = 500,message = "添加失败")
+ })
public CommonResult addInfo(PersonUser user){
if(user.getPassword()==null){
return CommonResult.failed("注册失败,密码不能为空");
@@ -156,7 +208,7 @@ public class PersonUserController {
return CommonResult.success();
} catch (Exception e) {
e.printStackTrace();
- return CommonResult.failed("注册失败,请联系管理员");
+ return CommonResult.failed(e.getMessage());
}
}
/**
@@ -166,19 +218,30 @@ public class PersonUserController {
*/
@GetMapping("/activate")
@ResponseBody
- public ModelAndView activate(String code){
+ @ApiOperation(value = "修改邮箱状态")
+ @ApiImplicitParams(value = {
+ @ApiImplicitParam(name = "code",value = "邮箱的令牌")
+ })
+
+ @ApiResponses(value = {
+ @ApiResponse(code = 200,message = "激活成功"),
+ @ApiResponse(code = 500,message = "激活失败")
+ })
+ public CommonResult activate(String code){
//激活邮箱
ModelAndView mv=new ModelAndView();
try {
personUserService.updateMailboxStatus(code);
mv.setViewName("mailboxRegisterMessage");
- return mv;
+ return CommonResult.success("激活成功");
}catch (MailboxStatusException e){
e.printStackTrace();
+ return CommonResult.failed(e.getMessage());
}catch (Exception e) {
e.printStackTrace();
+ return CommonResult.failed(e.getMessage());
}
- return null;
+
}
/**
@@ -188,6 +251,15 @@ public class PersonUserController {
* @return
*/
@PostMapping("/resetPassword")
+ @ApiOperation(value = "密码修改")
+ @ApiImplicitParams(value = {
+ @ApiImplicitParam(name = "cellPhNumber",value = "手机号"),
+ @ApiImplicitParam(name = "password",value = "新密码")
+ })
+ @ApiResponses(value = {
+ @ApiResponse(code = 200,message = "修改成功"),
+ @ApiResponse(code = 500,message = "修改失败")
+ })
public CommonResult resetPasswordByPhone(String cellPhNumber,String password){
if (password==null){
return CommonResult.failed("密码不能为空");
@@ -203,13 +275,14 @@ public class PersonUserController {
/**
* 个人中心,账户管理
- * @param userId 用户id
+ * @param
* @return
*/
@GetMapping("/personCenter")
@ResponseBody
- public CommonResult personCenter(Integer userId){
- String name = cookieUtils.getName();
+ @ApiOperation(value = "个人中心,账户管理")
+ public CommonResult personCenter(){
+ String name = request.getHeader("userName");
if(name==null){
return CommonResult.failed("未登录");
}
@@ -223,8 +296,13 @@ public class PersonUserController {
*/
@GetMapping("/exit")
@ResponseBody
+ @ApiOperation(value = "退出登录")
+ @ApiResponses(value = {
+ @ApiResponse(code = 200,message = "退出成功"),
+ @ApiResponse(code = 500,message = "退出失败")
+ })
public CommonResult exit(){
- String name = cookieUtils.getName();
+ String name = request.getHeader("userName");
if(name==null){
return CommonResult.failed("退出失败");
}
@@ -249,13 +327,23 @@ public class PersonUserController {
* @param password 新密码
* @return
*/
- @PostMapping("/resetPasswordBypassword")
+ @PostMapping(value="/resetPasswordBypassword")
@ResponseBody
+ @ApiOperation(value = "密码修改")
+ @ApiImplicitParams(value = {
+ @ApiImplicitParam(name = "oldPassword",value = "旧密码",required = true),
+ @ApiImplicitParam(name = "password",value = "新密码",required = true)
+ })
+
+ @ApiResponses(value = {
+ @ApiResponse(code = 200,message = "修改成功"),
+ @ApiResponse(code = 500,message = "修改失败")
+ })
public CommonResult resetPasswordBypassword(String oldPassword,String password){
if (password==null||password.equals("")||oldPassword==null||oldPassword.equals("")){
return CommonResult.failed("密码不能为空");
}
- String name = cookieUtils.getName();
+ String name = request.getHeader("userName");
if(name==null){
return CommonResult.failed("未登录");
}
@@ -273,8 +361,9 @@ public class PersonUserController {
* @return
*/
@GetMapping("/dynamic")
+ @ApiOperation(value = "帖子动态")
public List dynamic(){
- String name = cookieUtils.getName();
+ String name = request.getHeader("userName");
if(name==null){
return null;
}
@@ -287,8 +376,9 @@ public class PersonUserController {
* @return
*/
@GetMapping("/myPublishAcitivity")
+ @ApiOperation(value = "我发布的活动")
public List myPublishAcitivity(){
- String name = cookieUtils.getName();
+ String name = request.getHeader("userName");
if(name==null){
return null;
}
@@ -302,6 +392,7 @@ public class PersonUserController {
* @return
*/
@GetMapping("/acitivityDetail")
+
public List acitivityDetail(String acid){
return null;
@@ -312,8 +403,9 @@ public class PersonUserController {
* @return
*/
@GetMapping("/myJoinAcitivity")
+ @ApiOperation(value = "我参加的活动")
public List myJoinAcitivity(){
- String name = cookieUtils.getName();
+ String name = request.getHeader("userName");
if(name==null){
return null;
}
@@ -326,19 +418,34 @@ public class PersonUserController {
* @return
*/
@GetMapping("/myAttentionDynamic")
+ @ApiOperation(value = "我收藏的帖子")
public List myAttentionDynamic(){
- String name = cookieUtils.getName();
- if(name==null){
+ String userName = request.getHeader("userName");
+ if(userName==null){
return null;
}
- List user=personUserService.queryMyAttentionDynamicByName(name);
+ List user=personUserService.queryMyAttentionDynamicByName(userName);
return user;
}
+ /**
+ * 上传头像
+ * @param file
+ * @return
+ */
@ResponseBody
@PostMapping("/uploadHeadImage")
+ @ApiOperation(value = "上传头像")
+ @ApiImplicitParams(value = {
+ @ApiImplicitParam(name = "file",value = "图片",required = true)
+ })
+
+ @ApiResponses(value = {
+ @ApiResponse(code = 200,message = "上传成功"),
+ @ApiResponse(code = 500,message = "上传失败")
+ })
public CommonResult uploadHeadImage(MultipartFile file){
- String userName = cookieUtils.getName();
+ String userName = request.getHeader("userName");
if(userName==null){
return null;
}
@@ -357,4 +464,20 @@ public class PersonUserController {
return CommonResult.success("上传成功",map);
}
+
+ /**
+ * 测试专用
+ * @param request
+ * @return
+ */
+ @RequestMapping("/test")
+ @ResponseBody
+ public String test(HttpServletRequest request){
+ String userName = request.getHeader("userName");
+ String userId = request.getHeader("userId");
+
+ System.out.println("request test..."+userId);
+ System.out.println("request test..."+userName);
+ return "test";
+ }
}
\ No newline at end of file
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/dao/CommunityDynamicDao.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/dao/CommunityDynamicDao.java
index a4a971833e9460307554deb4361716081e6c0ef8..8576af26f7b54075744483ea4f58696d1d484229 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/dao/CommunityDynamicDao.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/dao/CommunityDynamicDao.java
@@ -1,6 +1,7 @@
package com.team7.happycommunity.personcentor.dao;
import com.team7.happycommunity.personcentor.entity.CommunityDynamic;
+import com.team7.happycommunity.personcentor.entity.DynamicCommit;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -62,5 +63,10 @@ public interface CommunityDynamicDao {
* @return 影响行数
*/
int deleteById(Integer id);
-
+ /**
+ * 查询当前动态的所有评论
+ * @param dynamicId 动态id
+ * @return 评论内容
+ */
+ List queryCommit(Integer dynamicId);
}
\ No newline at end of file
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/dao/PersonUserDao.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/dao/PersonUserDao.java
index fdf9d3ce0f2ec88384c155bdd0c34555f6db22d9..d599d059589b168f3b757130efcc7b6d2877600c 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/dao/PersonUserDao.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/dao/PersonUserDao.java
@@ -121,4 +121,20 @@ public interface PersonUserDao {
* @return
*/
List queryMyAttentionDynamicByName(String name);
+
+
+
+
+ /**
+ * 个人信息头像的修改
+ * @param id 用户id
+ * @param imgurl 头像的url
+ */
+ void updateHeadImage(@Param("id")Integer id, @Param("imgurl")String imgurl);
+
+ /**
+ * 根据邮箱删除数据
+ * @param mailbox
+ */
+ void deleteByMailbox(String mailbox);
}
\ No newline at end of file
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/Areainfo.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/Areainfo.java
index 71508a450a41cd3445f09c426246a0d8cea4bcc3..581aab9eed9ec03732c03a609bce2aa3f54be8bb 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/Areainfo.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/Areainfo.java
@@ -1,5 +1,8 @@
package com.team7.happycommunity.personcentor.entity;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
import java.io.Serializable;
/**
@@ -8,15 +11,17 @@ import java.io.Serializable;
* @author makejava
* @since 2020-03-23 14:46:47
*/
+@ApiModel(value = "小区信息表")
public class Areainfo implements Serializable {
private static final long serialVersionUID = 893984337762180737L;
-
+
+ @ApiModelProperty(value = "id")
private Integer id;
-
+ @ApiModelProperty(value = "小区名称")
private String areaName;
-
+ @ApiModelProperty(value = "小区地址")
private String areaAddress;
-
+ @ApiModelProperty(value = "详细信息")
private String detail1;
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityActivity.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityActivity.java
index fd76b9bc18d38d8368b96b2d0263d5d78b58256a..23f916212169d4b6a84a810cef90a358801ad1e0 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityActivity.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityActivity.java
@@ -1,5 +1,8 @@
package com.team7.happycommunity.personcentor.entity;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
import java.io.Serializable;
import java.util.Date;
@@ -9,59 +12,73 @@ import java.util.Date;
* @author makejava
* @since 2020-03-25 11:18:29
*/
+@ApiModel(value = "社区动态")
public class CommunityActivity implements Serializable {
private static final long serialVersionUID = -32549005841184090L;
/**
* 动态id
*/
+ @ApiModelProperty(value = "id")
private Integer id;
/**
* 发布者id
*/
+ @ApiModelProperty(value = "发布者id")
private Integer caUserId;
/**
* 活动图片id
*/
+ @ApiModelProperty(value = "活动图片id")
private String caPicPath;
/**
* 活动类型
*/
+ @ApiModelProperty(value = "活动类型")
private Integer caType;
/**
* 活动标题
*/
+ @ApiModelProperty(value = "活动标题")
private String caTitle;
/**
* 活动内容
*/
+ @ApiModelProperty(value = "活动内容")
private String caContent;
/**
* 发起时间
*/
+ @ApiModelProperty(value = "发起时间")
private Date caStartTime;
/**
* 结束时间
*/
+ @ApiModelProperty(value = "结束时间")
private Date caEndTime;
/**
* 活动状态
*/
+ @ApiModelProperty(value = "活动状态")
private Integer caStatus;
/**
* 消费金额
*/
+ @ApiModelProperty(value = "消费金额")
private Object caMoney;
/**
* 参与人数
*/
+ @ApiModelProperty(value = "参与人数")
private Integer caPeopelCount;
/**
* 最大参与人数
*/
+ @ApiModelProperty(value = "最大参与人数")
private Integer caMaxPeopleCount;
/**
* 创建时间
*/
+ @ApiModelProperty(value = "创建时间")
private Date caCreateTime;
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityActivityComplaint.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityActivityComplaint.java
index 9f4bde478cdf5b72cfcb30093b149a46b98ad813..080101f7a6ba59ef19189074170b3b706960f379 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityActivityComplaint.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityActivityComplaint.java
@@ -1,5 +1,8 @@
package com.team7.happycommunity.personcentor.entity;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
import java.io.Serializable;
import java.util.Date;
@@ -9,29 +12,35 @@ import java.util.Date;
* @author makejava
* @since 2020-03-25 11:18:29
*/
+@ApiModel(value = "社区动态投诉实体类")
public class CommunityActivityComplaint implements Serializable {
private static final long serialVersionUID = -35019715504984022L;
-
+ @ApiModelProperty(value = "id")
private Integer id;
/**
* 投诉用户 id
*/
+ @ApiModelProperty(value = "投诉用户 id")
private Integer cacUserId;
/**
* 投诉活动 id
*/
+ @ApiModelProperty(value = "投诉活动 id")
private Integer cacActivityId;
/**
* 投诉理由
*/
+ @ApiModelProperty(value = "投诉理由")
private String cacReason;
/**
* 图片证据id
*/
+ @ApiModelProperty(value = "图片证据id")
private String cacPic;
/**
* 投诉时间(创建时间)
*/
+ @ApiModelProperty(value = "投诉时间(创建时间)")
private Date ccTime;
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityActivityUser.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityActivityUser.java
index bbcec491f790a265e49049d13d20c3c30d3f6658..58aac148a5e7f646ed12189eee234ed58b7f14ae 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityActivityUser.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityActivityUser.java
@@ -1,5 +1,8 @@
package com.team7.happycommunity.personcentor.entity;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
import java.io.Serializable;
/**
@@ -8,17 +11,20 @@ import java.io.Serializable;
* @author makejava
* @since 2020-03-25 11:18:29
*/
+@ApiModel(value = "社区活动用户实体类")
public class CommunityActivityUser implements Serializable {
private static final long serialVersionUID = 649975225445944595L;
-
+ @ApiModelProperty(value = "id")
private Integer id;
/**
* 活动id
*/
+ @ApiModelProperty(value = "活动id")
private Integer cauActivityId;
/**
* 用户id
*/
+ @ApiModelProperty(value = "用户id")
private Integer cauUserId;
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityChat.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityChat.java
index 2d1fd4cb170de5c80a5b9e5810e71529288e6b77..5e34aef5dab795de384985c1df50c9f4feef4346 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityChat.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityChat.java
@@ -1,5 +1,7 @@
package com.team7.happycommunity.personcentor.entity;
+import io.swagger.annotations.ApiModel;
+
import java.io.Serializable;
import java.util.Date;
@@ -9,6 +11,7 @@ import java.util.Date;
* @author makejava
* @since 2020-03-24 16:58:02
*/
+@ApiModel(value = "社区动态投诉实体类")
public class CommunityChat implements Serializable {
private static final long serialVersionUID = -63416663913483268L;
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityDynamic.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityDynamic.java
index 71199d8df38c57c01cac8f8cc8012b89d6bd9104..39e71c963124f3a9ea0dd70e63ae529e735482e4 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityDynamic.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityDynamic.java
@@ -1,5 +1,8 @@
package com.team7.happycommunity.personcentor.entity;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
import java.io.Serializable;
import java.util.Date;
import java.util.List;
@@ -10,35 +13,43 @@ import java.util.List;
* @author makejava
* @since 2020-03-24 17:26:32
*/
+@ApiModel(value = "社区动态实体类")
public class CommunityDynamic implements Serializable {
private static final long serialVersionUID = 744418746282083773L;
/**
* 动态id
*/
+ @ApiModelProperty(value = "动态id")
private Integer id;
/**
* 发布者id
*/
+ @ApiModelProperty(value = "发布者id")
private Integer cdUserId;
/**
* 动态图片id
*/
+ @ApiModelProperty(value = "动态图片id")
private String cdPicPath;
/**
* 动态类型
*/
+ @ApiModelProperty(value = "动态类型")
private Integer cdType;
/**
* 动态内容
*/
+ @ApiModelProperty(value = "动态内容")
private String cdContent;
/**
* 获赞数量
*/
+ @ApiModelProperty(value = "获赞数量")
private Integer cdFavor;
/**
* 发布时间(创建时间)
*/
+ @ApiModelProperty(value = "发布时间")
private Date cdTime;
private List communityDynamicComment;
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityDynamicComment.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityDynamicComment.java
index daa6dec7bc4b262a819cf6c16df4caaf114f7a48..d02006ee468dc9f5aefcccebc7092d3bdaa7571d 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityDynamicComment.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/CommunityDynamicComment.java
@@ -1,5 +1,8 @@
package com.team7.happycommunity.personcentor.entity;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
import java.io.Serializable;
import java.util.Date;
import java.util.List;
@@ -10,31 +13,37 @@ import java.util.List;
* @author makejava
* @since 2020-03-24 17:26:32
*/
+@ApiModel(value = "动态评论实体类")
public class CommunityDynamicComment implements Serializable {
private static final long serialVersionUID = 256951165143287277L;
-
+ @ApiModelProperty(value = "id")
private Integer id;
/**
* 动态id
*/
+ @ApiModelProperty(value = "动态id")
private Integer cdcDynamicId;
/**
* 评论者id
*/
+ @ApiModelProperty(value = "评论者id")
private Integer cdcUserId;
/**
* 其他评论者id,针对评论的评论
*/
+ @ApiModelProperty(value = "其他评论者id,针对评论的评论")
private Integer cdcOtherUserId;
/**
* 评论内容
*/
+ @ApiModelProperty(value = "评论内容")
private String cdcContent;
/**
* 评论时间(创建时间)
*/
+ @ApiModelProperty(value = "评论时间")
private Date cdcTime;
-
+ @ApiModelProperty(value = "用户")
private List personUser;
public List getPersonUser() {
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/Dynamic.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/Dynamic.java
index fa4cbb88b85d17e75d8a8f0a1dace8b8b1de0331..526568fac48cee1dae16bd172720d3183e77a5dd 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/Dynamic.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/Dynamic.java
@@ -1,16 +1,20 @@
package com.team7.happycommunity.personcentor.entity;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
import org.springframework.data.relational.core.sql.In;
import java.io.Serializable;
import java.util.Date;
-
+@ApiModel(value = "社区动态实体类")
public class Dynamic implements Serializable {
-
+ @ApiModelProperty(value = "图片链接")
private String url;
+ @ApiModelProperty(value = "图片主题")
private String title;
+ @ApiModelProperty(value = "发布时间")
private Date timee;
-
+ @ApiModelProperty(value = "动态id")
private Integer dynamicId;
public Integer getDynamicId() {
@@ -54,4 +58,5 @@ public class Dynamic implements Serializable {
public void setCommentName(String commentName) {
this.commentName = commentName;
}
+
}
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/DynamicCommit.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/DynamicCommit.java
new file mode 100644
index 0000000000000000000000000000000000000000..2864a00044300b96ddbd7bc38ca9dea3e9ebc4a9
--- /dev/null
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/DynamicCommit.java
@@ -0,0 +1,61 @@
+package com.team7.happycommunity.personcentor.entity;
+
+import aQute.bnd.service.repository.SearchableRepository;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+import java.io.Serializable;
+import java.util.Date;
+@ApiModel(value = "社区动态评论实体类")
+public class DynamicCommit implements Serializable {
+ @ApiModelProperty(value = "评论id")
+ private Integer id;//评论id
+ @ApiModelProperty(value = "评论内容")
+ private String cdcContent;
+ @ApiModelProperty(value = "评论时间")
+ private Date cdcTime;
+ @ApiModelProperty(value = "评论姓名")
+ private String name;
+ @ApiModelProperty(value = "用户头像")
+ private String url;
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public String getCdcContent() {
+ return cdcContent;
+ }
+
+ public void setCdcContent(String cdcContent) {
+ this.cdcContent = cdcContent;
+ }
+
+ public Date getCdcTime() {
+ return cdcTime;
+ }
+
+ public void setCdcTime(Date cdcTime) {
+ this.cdcTime = cdcTime;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getUrl() {
+ return url;
+ }
+
+ public void setUrl(String url) {
+ this.url = url;
+ }
+}
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/MyPublishAcitivity.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/MyPublishAcitivity.java
index 33d4b947739c8eddcf06de45305de42893a38923..da3ebac508291cf3b2fa1f62fbb1a15b6afff9cc 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/MyPublishAcitivity.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/MyPublishAcitivity.java
@@ -1,18 +1,21 @@
package com.team7.happycommunity.personcentor.entity;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
import java.io.Serializable;
import java.util.Date;
-
+@ApiModel(value = "发表活动实体类")
public class MyPublishAcitivity implements Serializable {
-
+ @ApiModelProperty(value = "活动id")
private String acId;//活动id
-
+ @ApiModelProperty(value = "个人头像")
private String url;//个人头像
-
+ @ApiModelProperty(value = "个人别称")
private String nickname;//个人别称
-
+ @ApiModelProperty(value = "活动主题")
private String CaTitle;//活动主题
-
+ @ApiModelProperty(value = "活动创建时间")
private Date caCreateTime;//活动创建时间
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/PersonCollectUser.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/PersonCollectUser.java
index a5fc704de6cec2466cf5a1b526d617c295ae271d..0b14c5bc7062a7b6f6700758b1a7f688ad02fac8 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/PersonCollectUser.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/PersonCollectUser.java
@@ -1,5 +1,8 @@
package com.team7.happycommunity.personcentor.entity;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
import java.util.Date;
import java.io.Serializable;
@@ -9,17 +12,18 @@ import java.io.Serializable;
* @author makejava
* @since 2020-03-22 21:19:30
*/
+@ApiModel(value = "用户收藏实体类")
public class PersonCollectUser implements Serializable {
private static final long serialVersionUID = 828483762597894081L;
-
+ @ApiModelProperty(value = "收藏用户id")
private Integer collectUserId;
-
+ @ApiModelProperty(value = "评论用户id")
private Integer concernedUserId;
-
+ @ApiModelProperty(value = "关注用户id")
private Integer focusedUserId;
-
+ @ApiModelProperty(value = "评论id")
private Integer dynamicId;
-
+ @ApiModelProperty(value = "关注时间")
private Date attentTmie;
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/PersonImage.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/PersonImage.java
index e33f667ecb025c83e9fcac2e3337f3867f729f8f..477cb8879f8b096b3c3f680692eadf4030036faf 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/PersonImage.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/PersonImage.java
@@ -1,5 +1,8 @@
package com.team7.happycommunity.personcentor.entity;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
import java.util.Date;
import java.io.Serializable;
@@ -9,21 +12,22 @@ import java.io.Serializable;
* @author makejava
* @since 2020-03-22 21:19:30
*/
+@ApiModel(value = "图片实体类")
public class PersonImage implements Serializable {
private static final long serialVersionUID = 651560723597011661L;
-
+ @ApiModelProperty(value = "id")
private Integer id;
-
+ @ApiModelProperty(value = "小区id(小区图片)")
private Integer personPlotId;
-
+ @ApiModelProperty(value = "住宅表的id(住宅id)")
private Integer personHomeId;
-
+ @ApiModelProperty(value = "用户表的id")
private Integer personUserId;
-
+ @ApiModelProperty(value = "(0-用户空间图片,1-用户头像)")
private Integer state;
-
+ @ApiModelProperty(value = "上传时间")
private Date time;
-
+ @ApiModelProperty(value = "图片链接")
private String url;
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/PersonUser.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/PersonUser.java
index 90988128e80cbe66c691193c096c63d79e4ccba8..0ba6096c2d99b0a9cd8bd21fb579925808b2ad72 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/PersonUser.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/entity/PersonUser.java
@@ -1,5 +1,8 @@
package com.team7.happycommunity.personcentor.entity;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
import java.util.Date;
import java.io.Serializable;
import java.util.List;
@@ -10,41 +13,42 @@ import java.util.List;
* @author makejava
* @since 2020-03-20 19:21:36
*/
+@ApiModel(value = "用户实体类")
public class PersonUser implements Serializable {
private static final long serialVersionUID = 156440124825734371L;
-
+ @ApiModelProperty(value = "id")
private Integer id;
-
+ @ApiModelProperty(value = "身份证")
private String idNumber;
-
+ @ApiModelProperty(value = "手机号")
private String cellPhNumber;
-
+ @ApiModelProperty(value = "密码")
private String password;
-
+ @ApiModelProperty(value = "姓名")
private String name;
-
+ @ApiModelProperty(value = "性别")
private Integer sex;
-
+ @ApiModelProperty(value = "昵称")
private String nickname;
-
+ @ApiModelProperty(value = "邮箱")
private String mailbox;
-
+ @ApiModelProperty(value = "小区id")
private Integer plotId;
-
+ @ApiModelProperty(value = "标签")
private String tag;
-
+ @ApiModelProperty(value = "邮箱状态")
private Integer mailboxStatus;
-
+ @ApiModelProperty(value = "邮箱的令牌")
private String code;
-
+ @ApiModelProperty(value = "盐")
private String passwordSalt;
-
+ @ApiModelProperty(value = "账户创建时间")
private Date createTime;
-
+ @ApiModelProperty(value = "小区实体类")
private Areainfo areainfo;
-
+ @ApiModelProperty(value = "用户图片实体类")
private List personImage;
-
+ @ApiModelProperty(value = "动态评论实体类")
private List communityDynamic;
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/CommunityDynamicService.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/CommunityDynamicService.java
index ba35056652844ec2363078c762203bb29dcb1ae4..36175a1395665a18778e288d155dad800e7b144b 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/CommunityDynamicService.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/CommunityDynamicService.java
@@ -1,6 +1,7 @@
package com.team7.happycommunity.personcentor.service;
import com.team7.happycommunity.personcentor.entity.CommunityDynamic;
+import com.team7.happycommunity.personcentor.entity.DynamicCommit;
import java.util.List;
@@ -52,5 +53,10 @@ public interface CommunityDynamicService {
* @return 是否成功
*/
boolean deleteById(Integer id);
-
+ /**
+ * 查询当前动态的所有评论
+ * @param dynamicId 动态id
+ * @return 评论内容
+ */
+ List queryCommit(Integer dynamicId);
}
\ No newline at end of file
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/PersonUserService.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/PersonUserService.java
index 83b735f81c6c7519de40dcd2b0c0835a9945d56a..bd10d9ac511c23cc03b25e0aa6c494e4f8a06694 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/PersonUserService.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/PersonUserService.java
@@ -80,7 +80,7 @@ public interface PersonUserService {
* @param text
* @param password
*/
- void login(String text, String password) throws Exception;
+ PersonUser login(String text, String password) throws Exception;
/**
* 手机号码注册
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/impl/CommunityDynamicServiceImpl.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/impl/CommunityDynamicServiceImpl.java
index 66c9420d131109fd0cafc2881bce847f9d59d337..78327552679f01fbbe5137a8b5f66ebfa988d163 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/impl/CommunityDynamicServiceImpl.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/impl/CommunityDynamicServiceImpl.java
@@ -2,6 +2,7 @@ package com.team7.happycommunity.personcentor.service.impl;
import com.team7.happycommunity.personcentor.dao.CommunityDynamicDao;
import com.team7.happycommunity.personcentor.entity.CommunityDynamic;
+import com.team7.happycommunity.personcentor.entity.DynamicCommit;
import com.team7.happycommunity.personcentor.service.CommunityDynamicService;
import org.springframework.stereotype.Service;
@@ -76,4 +77,10 @@ public class CommunityDynamicServiceImpl implements CommunityDynamicService {
public boolean deleteById(Integer id) {
return this.communityDynamicDao.deleteById(id) > 0;
}
+
+ @Override
+ public List queryCommit(Integer dynamicId){
+
+ return communityDynamicDao.queryCommit(dynamicId);
+ }
}
\ No newline at end of file
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/impl/PersonUserServiceImpl.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/impl/PersonUserServiceImpl.java
index bd998df3215b85b148511aad33ddbab005654cba..b4dade0ae8fa8096c360adb2584753a375679d7d 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/impl/PersonUserServiceImpl.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/service/impl/PersonUserServiceImpl.java
@@ -96,13 +96,13 @@ public class PersonUserServiceImpl implements PersonUserService {
throw new RegisterException("姓名已存在");
}
PersonUser user2=new PersonUser();
- user.setNickname(personUser.getNickname());
+ user2.setNickname(personUser.getNickname());
List personUsers2 = personUserDao.queryAll(user2);
if(personUsers2!=null&&personUsers2.size()>0){
throw new RegisterException("昵称已存在");
}
PersonUser user3=new PersonUser();
- user.setMailbox(personUser.getMailbox());
+ user3.setMailbox(personUser.getMailbox());
List personUsers3 = personUserDao.queryAll(user3);
if(personUsers3!=null&&personUsers3.size()>0){
throw new RegisterException("邮箱已存在");
@@ -143,18 +143,20 @@ public class PersonUserServiceImpl implements PersonUserService {
public boolean queryMailbox(String mailbox) {
PersonUser user = personUserDao.queryByMailbox(mailbox);
if(user==null||user.getMailboxStatus()!=0){
+ if(user!=null&&user.getMailboxStatus()!=0){
+ personUserDao.deleteByMailbox(mailbox);
+ }
return true;
}
return false;
}
-
@Override
public void register(PersonUser user) {
// 发送邮件,存储邮箱,并将mailbox_status状态改为1,并随机生成一个code邮箱令牌,并存储到数据库,密码加密
//1.生成一个UUID数字
String code = UUID.randomUUID().toString().replace("_","");
user.setCode(code);
- String content="点击激活";
+ String content="点击激活";
MailUtils.sendMail(user.getMailbox(),content,"幸福小区邀请您注册,请点击链接");
//2.进行密码加密
try {
@@ -182,7 +184,7 @@ public class PersonUserServiceImpl implements PersonUserService {
}
@Override
- public void login(String text, String password) throws Exception {
+ public PersonUser login(String text, String password) throws Exception {
PersonUser user =null;
if(text.contains("@")){
//为邮箱
@@ -206,15 +208,17 @@ public class PersonUserServiceImpl implements PersonUserService {
//保存用户名到cookie和redis中,存活时间24小时,原理,客户端发送cookie过来,我取出来值name,看redis中是否有cookie的值,有则登录,
//无,则提醒用户登录;
// request.getSession();
- Cookie c=new Cookie("name"+user.getName(),user.getName());
+ //Cookie c=new Cookie("name"+user.getName(),user.getName());
//cookie存活时间24小时
- c.setMaxAge(60*60*24);
- c.setPath("/"); //根据个人的不用,在不同功能的路径下创建
- response.addCookie(c);
+ //c.setMaxAge(60*60*24);
+ // c.setPath("/"); //根据个人的不用,在不同功能的路径下创建
+ // response.addCookie(c);
//存储到redis中,
//2.将验证码保存到redis中
- redisTemplate.boundValueOps("name"+user.getName()).set(user.getName());
- redisTemplate.boundValueOps("name"+user.getName()).expire(24, TimeUnit.HOURS);//24小时过期
+ // redisTemplate.boundValueOps("name"+user.getName()).set(user.getName());
+ //redisTemplate.boundValueOps("name"+user.getName()).expire(24, TimeUnit.HOURS);//24小时过期
+
+ return user;
}
@Override
@@ -271,7 +275,7 @@ public class PersonUserServiceImpl implements PersonUserService {
PersonUser user = personUserDao.queryPersonInfoByName(name);
if(user.getPassword().equals(Md5Util.encodeByMd5(oldPassword))){
//2.修改新密码
- personUserDao.updatePasswordByName( name,password);
+ personUserDao.updatePasswordByName( name,Md5Util.encodeByMd5(password));
}else{
throw new UpdatePasswordException("输入密码不正确");
}
@@ -296,7 +300,12 @@ public class PersonUserServiceImpl implements PersonUserService {
}
@Override
public void updateHeadImage(String userName, String imgurl){
+ //查询用户的id
+ PersonUser personUser=new PersonUser();
+ personUser.setName(userName);
+ List personUsers = personUserDao.queryAll(personUser);
+ personUserDao.updateHeadImage(personUsers.get(0).getId(),imgurl);
}
}
\ No newline at end of file
diff --git a/personcentor/src/main/java/com/team7/happycommunity/personcentor/util/MailUtils.java b/personcentor/src/main/java/com/team7/happycommunity/personcentor/util/MailUtils.java
index d59c040a5c72976bb4753b91b9964219655fac15..cefd71f5d3048ac43c53779fee0da365540e3e39 100644
--- a/personcentor/src/main/java/com/team7/happycommunity/personcentor/util/MailUtils.java
+++ b/personcentor/src/main/java/com/team7/happycommunity/personcentor/util/MailUtils.java
@@ -9,9 +9,9 @@ import java.util.Properties;
* 发邮件工具类
*/
public final class MailUtils {
- private static final String USER = "2870485806@qq.com"; // 发件人称号,同邮箱地址
+ private static final String USER = ""; // 发件人称号,同邮箱地址
//使用POP3/SMTP服务的授权码
- private static final String PASSWORD = "ubtdveqxwecsdcjg"; // 如果是qq邮箱可以使户端授权码,或者登录密码
+ private static final String PASSWORD = ""; // 如果是qq邮箱可以使户端授权码,或者登录密码
/**
*
diff --git a/personcentor/src/main/resources/application.properties b/personcentor/src/main/resources/application.properties
index ca703a44142111929e8d29aee614492f7271c989..12805e99f86e5216356d68604c96f6cc59b0f044 100644
--- a/personcentor/src/main/resources/application.properties
+++ b/personcentor/src/main/resources/application.properties
@@ -1,6 +1,7 @@
-accessKeyId=LTAI4FikHBhJzcaPm22pWeGS
-accessKeySecret=6Isjtn6eBPaas1NNBpfVczkAEY7BDB
-smsCode=SMS_186615599
+accessKeyId=
+accessKeySecret=
+smsCode=
param={"code":"[value]"}
website=localhost
-port=80
\ No newline at end of file
+port=9100
+
diff --git a/personcentor/src/main/resources/application.yml b/personcentor/src/main/resources/application.yml
index b2c0ae3735523032efdc46ccbf4345b67f3a84c7..5aef428ea9faa0f77de3b2f65947a806550400ba 100644
--- a/personcentor/src/main/resources/application.yml
+++ b/personcentor/src/main/resources/application.yml
@@ -1,3 +1,9 @@
+eureka:
+ client:
+ service-url:
+ defaultZone: http://localhost:8761/eureka
+server:
+ port: 9888
spring:
datasource:
username: develop
@@ -9,10 +15,10 @@ spring:
port: 6379
rabbitmq:
port: 5672
- username: admin
+ username: t1
password: 123
- virtual-host: /myhost
- host: 192.168.43.112
+ virtual-host: /boothost
+ host: 192.168.190.128
listener:
simple:
acknowledge-mode: manual
@@ -24,12 +30,14 @@ spring:
jackson:
date-format: yyyy-MM-dd
time-zone: GMT+8
+ application:
+ name: personcentor
+
mybatis:
mapper-locations: classpath:mapper/*.xml
configuration:
map-underscore-to-camel-case: true
-server:
- port: 80
+
pagehelper:
params: pageNum=currentPage,pageSize=pageSize
reasonable: true
@@ -37,4 +45,7 @@ pagehelper:
helper-dialect: mysql
logging:
level:
- com.team7.happycommunity.personcentor.dao: debug
\ No newline at end of file
+ com.team7.happycommunity.personcentor.dao: debug
+
+
+
diff --git a/personcentor/src/main/resources/mapper/CommunityDynamicDao.xml b/personcentor/src/main/resources/mapper/CommunityDynamicDao.xml
index efe247fc912ed6a25b8f50a5ee2c78337906b496..ebe0fe43f9503cec6cb8ceba8e9f436d5dd060e5 100644
--- a/personcentor/src/main/resources/mapper/CommunityDynamicDao.xml
+++ b/personcentor/src/main/resources/mapper/CommunityDynamicDao.xml
@@ -94,5 +94,8 @@
delete from happycommunity.community_dynamic where id = #{id}
-
+
\ No newline at end of file
diff --git a/personcentor/src/main/resources/mapper/PersonUserDao.xml b/personcentor/src/main/resources/mapper/PersonUserDao.xml
index cc2d610bc92c1cd5a604d728b273db2903ddb227..8564f060f1ae663b46e7155ed7b8750129856de7 100644
--- a/personcentor/src/main/resources/mapper/PersonUserDao.xml
+++ b/personcentor/src/main/resources/mapper/PersonUserDao.xml
@@ -187,22 +187,31 @@
UPDATE person_user set password=#{password} where name=#{name}
+
+
+ update person_image set url=#{imgurl} where person_image.person_user_id=#{id} and state=1
+
+
+ delete from happycommunity.person_user where mailbox = #{mailbox}
+
\ No newline at end of file
diff --git a/personcentor/src/main/resources/static/css/animate.min.css b/personcentor/src/main/resources/static/css/animate.min.css
deleted file mode 100644
index 8ae4afdb46a6a6964418bd5b5319a41df8ccdc19..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/animate.min.css
+++ /dev/null
@@ -1,12 +0,0 @@
-@charset "UTF-8";/*!
-Animate.css - http://daneden.me/animate
-Licensed under the MIT license
-
-Copyright (c) 2013 Daniel Eden
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-*/.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes pulse{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%{-webkit-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(0.75);transform:scaleX(1.25) scaleY(0.75)}40%{-webkit-transform:scaleX(0.75) scaleY(1.25);transform:scaleX(0.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(0.85);transform:scaleX(1.15) scaleY(0.85)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes rubberBand{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(0.75);-ms-transform:scaleX(1.25) scaleY(0.75);transform:scaleX(1.25) scaleY(0.75)}40%{-webkit-transform:scaleX(0.75) scaleY(1.25);-ms-transform:scaleX(0.75) scaleY(1.25);transform:scaleX(0.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(0.85);-ms-transform:scaleX(1.15) scaleY(0.85);transform:scaleX(1.15) scaleY(0.85)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}}.swing{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(0.9) rotate(-3deg);transform:scale(0.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(0.9) rotate(-3deg);-ms-transform:scale(0.9) rotate(-3deg);transform:scale(0.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);-ms-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);-ms-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateX(0%);transform:translateX(0%)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}100%{-webkit-transform:translateX(0%);transform:translateX(0%)}}@keyframes wobble{0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);-ms-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);-ms-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);-ms-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);-ms-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);-ms-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);-ms-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{0%{-webkit-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}}@keyframes bounceOut{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes bounceOutDown{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes bounceOutRight{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes bounceOutUp{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-ms-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;-ms-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);-ms-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);-ms-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}}.flipInX{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);-ms-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);-ms-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}}.flipInY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);-ms-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0%) skewX(-15deg);-ms-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}@keyframes lightSpeedOut{0%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);-ms-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);-ms-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes slideOutLeft{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes slideOutRight{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes slideOutUp{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}@-webkit-keyframes slideInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInUp{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes slideOutDown{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes hinge{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}}@keyframes hinge{0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);-ms-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);-ms-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);-ms-transform:translateY(700px);transform:translateY(700px);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}@keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);-ms-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);-ms-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}50%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}100%{opacity:0}}@keyframes zoomOut{0%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}50%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}100%{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;transform-origin:center bottom}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);-ms-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);-ms-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;transform-origin:center top}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}
\ No newline at end of file
diff --git a/personcentor/src/main/resources/static/css/application.css b/personcentor/src/main/resources/static/css/application.css
deleted file mode 100644
index 9f186fdb91798608628519b205cbc7c8ebb82795..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/application.css
+++ /dev/null
@@ -1,7 +0,0 @@
-@CHARSET 'UTF-8';
-
-@IMPORT url('normalize.css');
-@IMPORT url('common.css');
-@IMPORT url('pygments.css');
-@IMPORT url('font-awesome.css');
-@IMPORT url('demo.css');
diff --git a/personcentor/src/main/resources/static/css/datetime/mobiscroll.animation.css b/personcentor/src/main/resources/static/css/datetime/mobiscroll.animation.css
deleted file mode 100644
index 55ad12a633a9b1c9f033970d680f13ebc61f3b5f..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/datetime/mobiscroll.animation.css
+++ /dev/null
@@ -1,656 +0,0 @@
-.dw-trans .dw-persp {
- overflow: hidden;
- -webkit-perspective: 1000px;
- -moz-perspective: 1000px;
- perspective: 1000px;
-}
-.dw-trans .dw,
-.dw-trans .dwo {
- -webkit-animation-fill-mode: forwards;
- -webkit-animation-duration: 200ms;
- -moz-animation-fill-mode: forwards;
- -moz-animation-duration: 200ms;
- animation-fill-mode: forwards;
- animation-duration: 200ms;
-}
-.dw-trans .dwo {
- -webkit-backface-visibility: hidden;
-}
-.dw-in .dw {
- -webkit-animation-timing-function: ease-out;
- -moz-animation-timing-function: ease-out;
- animation-timing-function: ease-out;
-}
-.dw-out .dw {
- -webkit-animation-timing-function: ease-in;
- -moz-animation-timing-function: ease-in;
- animation-timing-function: ease-in;
-}
-.dw-in .dwo {
- -webkit-animation-name: dw-f-in;
- -moz-animation-name: dw-f-in;
- animation-name: dw-f-in;
-}
-.dw-out .dwo {
- -webkit-animation-name: dw-f-out;
- -moz-animation-name: dw-f-out;
- animation-name: dw-f-out;
-}
-.dw-flip,
-.dw-swing,
-.dw-slidehorizontal,
-.dw-slidevertical,
-.dw-slidedown,
-.dw-slideup,
-.dw-fade {
- -webkit-backface-visibility: hidden;
- -webkit-transform: translateX(0);
- -moz-backface-visibility: hidden;
- -moz-transform: translateX(0);
- backface-visibility: hidden;
- transform: translateX(0);
-}
-.dw-swing,
-.dw-slidehorizontal,
-.dw-slidevertical,
-.dw-slidedown,
-.dw-slideup,
-.dw-fade {
- -webkit-transform-origin: 0 0;
- -moz-transform-origin: 0 0;
- transform-origin: 0 0;
-}
-.dw-flip,
-.dw-pop {
- -webkit-transform-origin: 50% 50%;
- -moz-transform-origin: 50% 50%;
- transform-origin: 50% 50%;
-}
-.dw-in .dw-pop {
- opacity: 1;
- -webkit-animation-name: dw-p-in;
- -webkit-transform: scale(1);
- -moz-animation-name: dw-p-in;
- -moz-transform: scale(1);
- transform: scale(1);
- animation-name: dw-p-in;
-}
-.dw-out .dw-pop {
- opacity: 0;
- -webkit-animation-name: dw-p-out;
- -moz-animation-name: dw-p-out;
- animation-name: dw-p-out;
-}
-.dw-in .dw-flip {
- opacity: 1;
- -webkit-animation-name: dw-fl-in;
- -webkit-transform: scale(1);
- -moz-animation-name: dw-fl-in;
- -moz-transform: scale(1);
- animation-name: dw-fl-in;
- transform: scale(1);
-}
-.dw-out .dw-flip {
- opacity: 0;
- animation-name: dw-fl-out;
- -webkit-animation-name: dw-fl-out;
- -moz-animation-name: dw-fl-out;
-}
-.dw-in .dw-swing {
- opacity: 1;
- -webkit-animation-name: dw-sw-in;
- -webkit-transform: scale(1);
- -moz-animation-name: dw-sw-in;
- -moz-transform: scale(1);
- transform: scale(1);
- animation-name: dw-sw-in;
-}
-.dw-out .dw-swing {
- opacity: 0;
- -webkit-animation-name: dw-sw-out;
- -moz-animation-name: dw-sw-out;
- animation-name: dw-sw-out;
-}
-.dw-in .dw-slidehorizontal {
- opacity: 1;
- -webkit-animation-name: dw-sh-in;
- -webkit-transform: scale(1);
- -moz-animation-name: dw-sh-in;
- -moz-transform: scale(1);
- transform: scale(1);
- animation-name: dw-sh-in;
-}
-.dw-out .dw-slidehorizontal {
- opacity: 0;
- -webkit-animation-name: dw-sh-out;
- -moz-animation-name: dw-sh-out;
- animation-name: dw-sh-out;
-}
-.dw-in .dw-slidevertical {
- opacity: 1;
- -webkit-animation-name: dw-sv-in;
- -webkit-transform: scale(1);
- -moz-animation-name: dw-sv-in;
- -moz-transform: scale(1);
- animation-name: dw-sv-in;
- transform: scale(1);
-}
-.dw-out .dw-slidevertical {
- opacity: 0;
- -webkit-animation-name: dw-sv-out;
- -moz-animation-name: dw-sv-out;
- animation-name: dw-sv-out;
-}
-.dw-in .dw-slidedown {
- -webkit-animation-name: dw-sd-in;
- -webkit-transform: scale(1);
- -moz-animation-name: dw-sd-in;
- -moz-transform: scale(1);
- animation-name: dw-sd-in;
- transform: scale(1);
-}
-.dw-out .dw-slidedown {
- animation-name: dw-sd-out;
- -webkit-animation-name: dw-sd-out;
- -webkit-transform: translateY(-100%);
- -moz-animation-name: dw-sd-out;
- -moz-transform: translateY(-100%);
-}
-.dw-in .dw-slideup {
- -webkit-animation-name: dw-su-in;
- -webkit-transform: scale(1);
- -moz-animation-name: dw-su-in;
- -moz-transform: scale(1);
- transform: scale(1);
- animation-name: dw-su-in;
-}
-.dw-out .dw-slideup {
- animation-name: dw-su-out;
- -webkit-animation-name: dw-su-out;
- -webkit-transform: translateY(100%);
- -moz-animation-name: dw-su-out;
- -moz-transform: translateY(100%);
-}
-.dw-in .dw-fade {
- opacity: 1;
- -webkit-animation-name: dw-f-in;
- -moz-animation-name: dw-f-in;
- animation-name: dw-f-in;
-}
-.dw-out .dw-fade {
- opacity: 0;
- -webkit-animation-name: dw-f-out;
- -moz-animation-name: dw-f-out;
- animation-name: dw-f-out;
-}
-/* Fade in */
-@keyframes dw-f-in {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
-}
-@-webkit-keyframes dw-f-in {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
-}
-@-moz-keyframes dw-f-in {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
-}
-/* Fade out */
-@keyframes dw-f-out {
- from {
- visibility: visible;
- opacity: 1;
- }
- to {
- opacity: 0;
- }
-}
-@-webkit-keyframes dw-f-out {
- from {
- visibility: visible;
- opacity: 1;
- }
- to {
- opacity: 0;
- }
-}
-@-moz-keyframes dw-f-out {
- from {
- visibility: visible;
- opacity: 1;
- }
- to {
- opacity: 0;
- }
-}
-/* Pop in */
-@keyframes dw-p-in {
- from {
- opacity: 0;
- transform: scale(0.8);
- }
- to {
- opacity: 1;
- transform: scale(1);
- }
-}
-@-webkit-keyframes dw-p-in {
- from {
- opacity: 0;
- -webkit-transform: scale(0.8);
- }
- to {
- opacity: 1;
- -webkit-transform: scale(1);
- }
-}
-@-moz-keyframes dw-p-in {
- from {
- opacity: 0;
- -moz-transform: scale(0.8);
- }
- to {
- opacity: 1;
- -moz-transform: scale(1);
- }
-}
-/* Pop out */
-@keyframes dw-p-out {
- from {
- opacity: 1;
- transform: scale(1);
- }
- to {
- opacity: 0;
- transform: scale(0.8);
- }
-}
-@-webkit-keyframes dw-p-out {
- from {
- opacity: 1;
- -webkit-transform: scale(1);
- }
- to {
- opacity: 0;
- -webkit-transform: scale(0.8);
- }
-}
-@-moz-keyframes dw-p-out {
- from {
- opacity: 1;
- -moz-transform: scale(1);
- }
- to {
- opacity: 0;
- -moz-transform: scale(0.8);
- }
-}
-/* Flip in */
-@keyframes dw-fl-in {
- from {
- opacity: 0;
- transform: rotateY(90deg);
- }
- to {
- opacity: 1;
- transform: rotateY(0);
- }
-}
-@-webkit-keyframes dw-fl-in {
- from {
- opacity: 0;
- -webkit-transform: rotateY(90deg);
- }
- to {
- opacity: 1;
- -webkit-transform: rotateY(0);
- }
-}
-@-moz-keyframes dw-fl-in {
- from {
- opacity: 0;
- -moz-transform: rotateY(90deg);
- }
- to {
- opacity: 1;
- -moz-transform: rotateY(0);
- }
-}
-/* Flip out */
-@keyframes dw-fl-out {
- from {
- opacity: 1;
- transform: rotateY(0deg);
- }
- to {
- opacity: 0;
- transform: rotateY(-90deg);
- }
-}
-@-webkit-keyframes dw-fl-out {
- from {
- opacity: 1;
- -webkit-transform: rotateY(0deg);
- }
- to {
- opacity: 0;
- -webkit-transform: rotateY(-90deg);
- }
-}
-@-moz-keyframes dw-fl-out {
- from {
- opacity: 1;
- -moz-transform: rotateY(0deg);
- }
- to {
- opacity: 0;
- -moz-transform: rotateY(-90deg);
- }
-}
-/* Swing in */
-@keyframes dw-sw-in {
- from {
- opacity: 0;
- transform: rotateY(-90deg);
- }
- to {
- opacity: 1;
- transform: rotateY(0deg);
- }
-}
-@-webkit-keyframes dw-sw-in {
- from {
- opacity: 0;
- -webkit-transform: rotateY(-90deg);
- }
- to {
- opacity: 1;
- -webkit-transform: rotateY(0deg);
- }
-}
-@-moz-keyframes dw-sw-in {
- from {
- opacity: 0;
- -moz-transform: rotateY(-90deg);
- }
- to {
- opacity: 1;
- -moz-transform: rotateY(0deg);
- }
-}
-/* Swing out */
-@keyframes dw-sw-out {
- from {
- opacity: 1;
- transform: rotateY(0deg);
- }
- to {
- opacity: 0;
- transform: rotateY(-90deg);
- }
-}
-@-webkit-keyframes dw-sw-out {
- from {
- opacity: 1;
- -webkit-transform: rotateY(0deg);
- }
- to {
- opacity: 0;
- -webkit-transform: rotateY(-90deg);
- }
-}
-@-moz-keyframes dw-sw-out {
- from {
- opacity: 1;
- -moz-transform: rotateY(0deg);
- }
- to {
- opacity: 0;
- -moz-transform: rotateY(-90deg);
- }
-}
-/* Slide horizontal in */
-@keyframes dw-sh-in {
- from {
- opacity: 0;
- transform: translateX(-100%);
- }
- to {
- opacity: 1;
- transform: translateX(0);
- }
-}
-@-webkit-keyframes dw-sh-in {
- from {
- opacity: 0;
- -webkit-transform: translateX(-100%);
- }
- to {
- opacity: 1;
- -webkit-transform: translateX(0);
- }
-}
-@-moz-keyframes dw-sh-in {
- from {
- opacity: 0;
- -moz-transform: translateX(-100%);
- }
- to {
- opacity: 1;
- -moz-transform: translateX(0);
- }
-}
-/* Slide horizontal out */
-@keyframes dw-sh-out {
- from {
- opacity: 1;
- transform: translateX(0);
- }
- to {
- opacity: 0;
- transform: translateX(100%);
- }
-}
-@-webkit-keyframes dw-sh-out {
- from {
- opacity: 1;
- -webkit-transform: translateX(0);
- }
- to {
- opacity: 0;
- -webkit-transform: translateX(100%);
- }
-}
-@-moz-keyframes dw-sh-out {
- from {
- opacity: 1;
- -moz-transform: translateX(0);
- }
- to {
- opacity: 0;
- -moz-transform: translateX(100%);
- }
-}
-/* Slide vertical in */
-@keyframes dw-sv-in {
- from {
- opacity: 0;
- transform: translateY(-100%);
- }
- to {
- opacity: 1;
- transform: translateY(0);
- }
-}
-@-webkit-keyframes dw-sv-in {
- from {
- opacity: 0;
- -webkit-transform: translateY(-100%);
- }
- to {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
-}
-@-moz-keyframes dw-sv-in {
- from {
- opacity: 0;
- -moz-transform: translateY(-100%);
- }
- to {
- opacity: 1;
- -moz-transform: translateY(0);
- }
-}
-/* Slide vertical out */
-@keyframes dw-sv-out {
- from {
- opacity: 1;
- transform: translateY(0);
- }
- to {
- opacity: 0;
- transform: translateY(100%);
- }
-}
-@-webkit-keyframes dw-sv-out {
- from {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
- to {
- opacity: 0;
- -webkit-transform: translateY(100%);
- }
-}
-@-moz-keyframes dw-sv-out {
- from {
- opacity: 1;
- -moz-transform: translateY(0);
- }
- to {
- opacity: 0;
- -moz-transform: translateY(100%);
- }
-}
-/* Slide Down In */
-@keyframes dw-sd-in {
- from {
- transform: translateY(-100%);
- }
- to {
- transform: translateY(0);
- }
-}
-@-webkit-keyframes dw-sd-in {
- from {
- opacity: 1;
- -webkit-transform: translateY(-100%);
- }
- to {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
-}
-@-moz-keyframes dw-sd-in {
- from {
- -moz-transform: translateY(-100%);
- }
- to {
- -moz-transform: translateY(0);
- }
-}
-/* Slide down out */
-@keyframes dw-sd-out {
- from {
- transform: translateY(0);
- }
- to {
- transform: translateY(-100%);
- }
-}
-@-webkit-keyframes dw-sd-out {
- from {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
- to {
- opacity: 1;
- -webkit-transform: translateY(-100%);
- }
-}
-@-moz-keyframes dw-sd-out {
- from {
- -moz-transform: translateY(0);
- }
- to {
- -moz-transform: translateY(-100%);
- }
-}
-/* Slide Up In */
-@keyframes dw-su-in {
- from {
- transform: translateY(100%);
- }
- to {
- transform: translateY(0);
- }
-}
-@-webkit-keyframes dw-su-in {
- from {
- opacity: 1;
- -webkit-transform: translateY(100%);
- }
- to {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
-}
-@-moz-keyframes dw-su-in {
- from {
- -moz-transform: translateY(100%);
- }
- to {
- -moz-transform: translateY(0);
- }
-}
-/* Slide up out */
-@keyframes dw-su-out {
- from {
- transform: translateY(0);
- }
- to {
- transform: translateY(100%);
- }
-}
-@-webkit-keyframes dw-su-out {
- from {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
- to {
- opacity: 1;
- -webkit-transform: translateY(100%);
- }
-}
-@-moz-keyframes dw-su-out {
- from {
- -moz-transform: translateY(0);
- }
- to {
- -moz-transform: translateY(100%);
- }
-}
diff --git a/personcentor/src/main/resources/static/css/datetime/mobiscroll.scroller.css b/personcentor/src/main/resources/static/css/datetime/mobiscroll.scroller.css
deleted file mode 100644
index 86771c791206b4ba66fe8a62b43d39ca1ce1c957..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/datetime/mobiscroll.scroller.css
+++ /dev/null
@@ -1,261 +0,0 @@
-.dwwb,
-.dwwo,
-.dwwol {
- /*-webkit-backface-visibility: hidden;*/
- -webkit-transform: translateZ(0);
-}
-/* Wheel container wrapper */
-.dwc {
- max-width: 100%;
- vertical-align: middle;
- display: inline-block;
- overflow: hidden;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-/* Wheel label */
-.dwl {
- line-height: 30px;
- height: 30px;
- top: -30px;
- left: 0;
- text-align: center;
- white-space: nowrap;
- position: absolute;
- width: 100%;
-}
-/* Wheel container */
-.dwwc {
- margin: 0 auto;
- position: relative;
- zoom: 1;
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
-}
-.dwfl {
- max-width: 100%;
- -webkit-box-flex: 1;
- -webkit-flex: 1 auto;
- -ms-flex: 1 auto;
- flex: 1 auto;
-}
-/* Wheels */
-.dwwl {
- position: relative;
- z-index: 5;
-}
-.dwww {
- position: relative;
- padding: 1px;
- /*overflow: hidden;*/
-}
-.dww {
- overflow: hidden;
- position: relative;
-}
-.dw-bf {
- -webkit-backface-visibility: hidden;
- -webkit-perspective: 1000px;
- backface-visibility: hidden;
- perspective: 1000px;
-}
-.dw-ul {
- position: relative;
- z-index: 3;
-}
-.dw-li {
- padding: 0 5px;
- position: relative;
- text-align: center;
- white-space: nowrap;
- vertical-align: bottom;
- opacity: .3;
- filter: Alpha(Opacity=30);
-}
-/* Valid entry */
-.dw-li.dw-v {
- opacity: 1;
- filter: Alpha(Opacity=100);
-}
-/* Hidden entry */
-.dw-li.dw-h {
- visibility: hidden;
-}
-.dw-i {
- position: relative;
- height: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-/* Clickpick mode */
-.dwwb {
- position: absolute;
- z-index: 4;
- left: 0;
- cursor: pointer;
- width: 100%;
- text-decoration: none;
- text-align: center;
- opacity: 1;
- -webkit-transition: opacity .2s linear;
- transition: opacity .2s linear;
-}
-.dwa .dwwb {
- opacity: 0;
-}
-.dwpm .dwwbp {
- top: 0;
-}
-.dwpm .dwwbm {
- bottom: 0;
-}
-.dwpm .dwwol {
- display: none;
-}
-/* Wheel overlay */
-.dwwo {
- position: absolute;
- z-index: 3;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- pointer-events: none;
-}
-/* Background line */
-.dwwol {
- position: absolute;
- z-index: 1;
- top: 50%;
- left: 0;
- width: 100%;
- pointer-events: none;
-}
-/* Liquid mode */
-.dw-liq .dwc {
- display: block;
-}
-.dw-liq .dw-tbl {
- width: 100%;
- table-layout: fixed;
-}
-/* Hidden label */
-.dwhl .dwl {
- display: none;
-}
-/* Hidden select element */
-.dw-hsel {
- position: absolute;
- height: 1px;
- width: 1px;
- left: 0;
- overflow: hidden;
- clip: rect(1px,1px,1px,1px);
-}
-/* Multiple lines */
-.dw-ml .dw-li {
- overflow: hidden;
-}
-.dw-ml .dw-li .dw-i {
- width: 100%;
- height: auto;
- display: inline-block;
- vertical-align: middle;
- white-space: normal;
-}
-/* Multiple selection */
-.dwwms .dw-li {
- padding: 0 40px;
-}
-.dwwms .dwwol {
- display: none;
-}
-.dw-msel:before {
- width: 40px;
- text-align: center;
- position: absolute;
- top: 0;
- left: 0;
-}
-/* Select groups */
-.dww .dw-w-gr {
- padding: 0 5px;
- opacity: 1;
- font-weight: bold;
- text-align: left;
-}
-
-
-/* Default theme */
-.mbsc-mobiscroll .dwc {
- padding: 2em .25em 0 .25em;
-}
-.mbsc-mobiscroll .dwl {
- color: #4eccc4;
- font-size: .75em;
- text-transform: uppercase;
-}
-.mbsc-mobiscroll .dwhl {
- padding-top: 0;
-}
-.mbsc-mobiscroll .dwfl {
- padding: .5em .25em;
-}
-.mbsc-mobiscroll .dw-li {
- font-size: 1.375em;
-}
-.mbsc-mobiscroll .dw-hl {
- background: rgba(78,204,196,.3);
-}
-.mbsc-mobiscroll .dwwol {
- border-top: 1px solid #4eccc4;
- border-bottom: 1px solid #4eccc4;
-}
-/* Clickpick mode */
-.mbsc-mobiscroll .dwpm .dwwol {
- display: block;
-}
-.mbsc-mobiscroll .dwwb {
- color: #4eccc4;
- background: #f7f7f7;
-}
-.mbsc-mobiscroll .dwwbp {
- bottom: 0;
- top: auto;
-}
-.mbsc-mobiscroll .dwwbm {
- top: 0;
- bottom: auto;
-}
-.mbsc-mobiscroll .dwwb span {
- display: none;
-}
-.mbsc-mobiscroll .dwwb:before {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- font-size: 24px;
- text-align: center;
-}
-.mbsc-mobiscroll .dwwb.dwb-a:before {
- background: rgba(78,204,196,.3);
-}
-/* Group select */
-/* Multiple select */
-.mbsc-mobiscroll .dw-w-gr {
- font-size: 1.125em;
-}
-.mbsc-mobiscroll .dw-msel:before {
- font-size: 40px;
- color: #4eccc4;
-}
-.mbsc-mobiscroll .dwwms .dwwol {
- display: none;
-}
\ No newline at end of file
diff --git a/personcentor/src/main/resources/static/css/datetime/mobiscroll.scroller.ios.css b/personcentor/src/main/resources/static/css/datetime/mobiscroll.scroller.ios.css
deleted file mode 100644
index 07aaa07cb47dca81095b57f9b3ac6342ce525f53..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/datetime/mobiscroll.scroller.ios.css
+++ /dev/null
@@ -1,89 +0,0 @@
-.mbsc-ios .dwl {
- text-align: left;
- text-indent: 5px;
- color: #ababab;
-}
-.mbsc-ios .dwwc {
- padding: 30px 10px 10px 10px;
-}
-.mbsc-ios .dwhl .dwwc {
- padding-top: 10px;
-}
-.mbsc-ios .dwwo {
- background: -webkit-gradient(linear,left bottom,left top,from(#f7f7f7),color-stop(0.52, rgba(245,245,245,0)),color-stop(0.48, rgba(245,245,245,0)),to(#f7f7f7));
- background: -webkit-linear-gradient(#f7f7f7,rgba(245,245,245,0) 52%, rgba(245,245,245,0) 48%, #f7f7f7);
- background: -moz-linear-gradient(#f7f7f7,rgba(245,245,245,0) 52%, rgba(245,245,245,0) 48%, #f7f7f7);
- background: linear-gradient(#f7f7f7,rgba(245,245,245,0) 52%, rgba(245,245,245,0) 48%, #f7f7f7);
-}
-.mbsc-ios .dwwol {
- padding: 0 10px;
- height: 34px;
- margin: -18px 0 0 -10px;
- border-top: 1px solid #dbdbdb;
- border-bottom: 1px solid #dbdbdb;
-}
-.mbsc-ios .dw-li {
- color: #9d9d9d;
- font-size: 22px;
- text-align: left;
-}
-.mbsc-ios .dw-hl {
- background: rgba(0,122,255,.2);
-}
-.mbsc-ios .dw-sel {
- color: #000;
-}
-/* Clickpick mode */
-.mbsc-ios .dwpm .dw-li {
- text-align: center;
-}
-.mbsc-ios .dwpm .dwwol {
- display: block;
-}
-.mbsc-ios .dwwb {
- color: #007aff;
- background: #f7f7f7;
-}
-.mbsc-ios .dwwbp {
- bottom: 0;
- top: auto;
-}
-.mbsc-ios .dwwbm {
- top: 0;
- bottom: auto;
-}
-.mbsc-ios .dwwb span {
- display: none;
-}
-.mbsc-ios .dwwb:before {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- font-size: 24px;
- text-align: center;
-}
-/* Select */
-.mbsc-ios.dw-select .dwwo {
- display: none;
-}
-/* Multiple select */
-.mbsc-ios .dwwms .dw-li {
- padding: 0 5px 0 40px;
- color: #000;
-}
-.mbsc-ios .dwwms .dw-msel {
- color: #007aff;
-}
-.mbsc-ios .dw-msel:before {
- font-size: 40px;
-}
-/* Group select */
-.mbsc-ios .dw-select-gr .dw-li {
- padding-left: 40px;
-}
-.mbsc-ios .dw-select-gr .dw-w-gr {
- padding-left: 5px;
- font-weight: normal;
- font-size: 18px;
-}
\ No newline at end of file
diff --git a/personcentor/src/main/resources/static/css/datetime/mobiscroll.widget.css b/personcentor/src/main/resources/static/css/datetime/mobiscroll.widget.css
deleted file mode 100644
index 6b7ab6a1560c14932da6739fca870ebb055c4aa2..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/datetime/mobiscroll.widget.css
+++ /dev/null
@@ -1,202 +0,0 @@
-.dw,
-.dwo {
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-}
-.dw {
- max-width: 98%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 2;
- font-size: 12px;
- text-shadow: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- -ms-touch-action: none;
- user-select: none;
- /*touch-action: none;*/ /* Kills native scroll in Chrome >=35 */
-}
-.dw:focus {
- /*outline-color: transparent;*/
- outline: none;
-}
-.dw-rtl {
- direction: rtl;
-}
-/* Box sizing */
-.dw,
-.dwbc {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-.dwwr {
- min-width: 170px;
- zoom: 1;
- overflow: hidden;
- text-align: center;
- font-family: arial, verdana, sans-serif;
-}
-/* Modal overlay */
-.dw-persp,
-.dwo {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
-}
-.dw-persp {
- z-index: 99998;
-}
-.dwo {
- z-index: 1;
- background: #000;
- background: rgba(0,0,0,.7);
- filter: Alpha(Opacity=70);
-}
-/* Liquid mode */
-.dw-liq .dw {
- max-width: 100%;
-}
-/* Top/Bottom mode */
-.dw-top .dw,
-.dw-bottom .dw {
- width: 100%;
- max-width: 100%;
-}
-/* Inline mode */
-.dw-inline .dw {
- position: static;
- display: inline-block;
- max-width: 100%;
-}
-.dw-inline.dw-liq .dw-persp .dw {
- display: block;
-}
-.dw-inline .dw-persp {
- position: static;
-}
-/* Bubble mode */
-.dw-bubble .dw {
- margin: 20px 0;
-}
-.dw-bubble .dw-arrw {
- position: absolute;
- left: 0;
- width: 100%;
-}
-.dw-bubble-top .dw-arrw {
- bottom: -36px;
-}
-.dw-bubble-bottom .dw-arrw {
- top: -36px;
-}
-.dw-bubble .dw-arrw-i {
- margin: 0 30px;
- position: relative;
- height: 36px;
-}
-.dw-bubble .dw-arr {
- display: block;
-}
-.dw-arr {
- display: none;
- position: absolute;
- left: 0;
- width: 0;
- height: 0;
- border-width: 18px 18px;
- border-style: solid;
- margin-left: -18px;
-}
-.dw-bubble-bottom .dw-arr {
- top: 0;
-}
-.dw-bubble-top .dw-arr {
- bottom: 0;
-}
-.dw-hidden {
- width: 0;
- height: 0;
- margin: 0;
- padding: 0;
- border: 0;
- overflow: hidden;
-}
-/* Buttons */
-.dwb {
- overflow: hidden;
- display: block;
- text-decoration: none;
- white-space: nowrap;
- text-overflow: ellipsis;
- vertical-align: top;
-}
-.dwb-e {
- cursor: pointer;
-}
-.dwb-d {
- cursor: default;
-}
-/* Button container */
-.dwbc {
- display: table;
- width: 100%;
- text-align: center;
-}
-/* Button wrapper */
-.dwbw {
- vertical-align: top;
- display: table-cell;
- position: relative;
- z-index: 5;
-}
-.dwbw .dwb:before {
- padding: .375em;
-}
-
-/* Default theme */
-.mbsc-mobiscroll .dwwr {
- min-width: 220px;
- background: #f7f7f7;
- color: #454545;
- font-size: 16px;
-}
-.mbsc-mobiscroll .dwv {
- padding-top: .6666em;
- color: #4eccc4;
- font-size: .75em;
- text-transform: uppercase;
- line-height: 2em;
-}
-.mbsc-mobiscroll .dwbc {
- display: block;
- overflow: hidden;
- text-align: right;
- padding: 0 .5em .5em .5em;
-}
-.mbsc-mobiscroll .dwbw {
- display: block;
- float: right;
-}
-.mbsc-mobiscroll .dw-rtl .dwbw {
- float: left;
-}
-.mbsc-mobiscroll .dwb {
- height: 2.5em;
- line-height: 2.5em;
- padding: 0 1em;
- color: #4eccc4;
- text-transform: uppercase;
-}
-.mbsc-mobiscroll .dwb-a {
- background: rgba(78,204,196,.3);
-}
-.mbsc-mobiscroll .dw-bubble-bottom .dw-arr {
- border-color: transparent transparent #f7f7f7 transparent;
-}
-.mbsc-mobiscroll .dw-bubble-top .dw-arr {
- border-color: #f7f7f7 transparent transparent transparent;
-}
diff --git a/personcentor/src/main/resources/static/css/datetime/mobiscroll.widget.ios.css b/personcentor/src/main/resources/static/css/datetime/mobiscroll.widget.ios.css
deleted file mode 100644
index 23aa7723b5918dc741e82f382cb2b2171c3e7db1..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/datetime/mobiscroll.widget.ios.css
+++ /dev/null
@@ -1,59 +0,0 @@
-.mbsc-ios .dwo {
- background: rgba(0,0,0,.2);
- filter: Alpha(Opacity=20);
-}
-.mbsc-ios .dwwr {
- position: relative;
- background: #f7f7f7;
- color: #000;
- padding-top: 40px;
-}
-.mbsc-ios .dwv {
- color: #9d9d9d;
- line-height: 30px;
- font-size: 12px;
- border-bottom: 1px solid #acacac;
-}
-.mbsc-ios .dwbc {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- border-bottom: 1px solid #acacac;
-}
-.mbsc-ios .dwb {
- height: 40px;
- line-height: 40px;
- padding: 0 10px;
- display: inline-block;
- color: #5cb188;
- font-size: 17px;
-}
-.mbsc-ios .dwb-a {
- opacity: .5;
-}
-.mbsc-ios .dwbw {
- display: block;
- float: right;
-}
-.mbsc-ios .dwb-c {
- float: left;
-}
-.mbsc-ios .dwb-s .dwb {
- /*font-weight: bold;*/
-}
-/* Bubble arrow */
-.mbsc-ios .dw-bubble-bottom .dw-arr {
- border-color: transparent transparent #f7f7f7 transparent;
-}
-.mbsc-ios .dw-bubble-top .dw-arr {
- border-color: #f7f7f7 transparent transparent transparent;
-}
-.mbsc-ios.dw-bubble .dwwr {
- -webkit-border-radius: 8px;
- border-radius: 8px;
-}
-/* Inline display */
-.mbsc-ios.dw-nobtn .dwwr {
- padding-top: 0;
-}
diff --git a/personcentor/src/main/resources/static/css/font-awesome.min.css b/personcentor/src/main/resources/static/css/font-awesome.min.css
deleted file mode 100644
index 866437fa415f1874c0855718445c7aff915a915a..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/font-awesome.min.css
+++ /dev/null
@@ -1,403 +0,0 @@
-@font-face{font-family:'FontAwesome';src:url('../font/fontawesome-webfont.eot?v=3.2.1');src:url('../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'),url('../font/fontawesome-webfont.woff?v=3.2.1') format('woff'),url('../font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'),url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');font-weight:normal;font-style:normal;}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;}
-[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;}
-.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;}
-a [class^="icon-"],a [class*=" icon-"]{display:inline;}
-[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.1428571428571428em;text-align:right;padding-right:0.2857142857142857em;}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.4285714285714286em;}
-.icons-ul{margin-left:2.142857142857143em;list-style-type:none;}.icons-ul>li{position:relative;}
-.icons-ul .icon-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;text-align:center;line-height:inherit;}
-[class^="icon-"].hide,[class*=" icon-"].hide{display:none;}
-.icon-muted{color:#eeeeee;}
-.icon-light{color:#ffffff;}
-.icon-dark{color:#333333;}
-.icon-border{border:solid 1px #eeeeee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
-.icon-2x{font-size:2em;}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
-.icon-3x{font-size:3em;}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
-.icon-4x{font-size:4em;}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
-.icon-5x{font-size:5em;}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;}
-.pull-right{float:right;}
-.pull-left{float:left;}
-[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em;}
-[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em;}
-[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0;}
-.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none;}
-.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em;}
-.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block;}
-.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em;}
-.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em;}
-.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em;}
-.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em;}
-.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em;}
-.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em;}
-.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em;}
-.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{line-height:inherit;}
-.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%;}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em;}
-.icon-stack .icon-stack-base{font-size:2em;*line-height:1em;}
-.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;}
-a .icon-stack,a .icon-spin{display:inline-block;text-decoration:none;}
-@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);} 100%{-moz-transform:rotate(359deg);}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);} 100%{-webkit-transform:rotate(359deg);}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);} 100%{-o-transform:rotate(359deg);}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);} 100%{-ms-transform:rotate(359deg);}}@keyframes spin{0%{transform:rotate(0deg);} 100%{transform:rotate(359deg);}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);}
-.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);}
-.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);}
-.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1);}
-.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1);}
-a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block;}
-.icon-glass:before{content:"\f000";}
-.icon-music:before{content:"\f001";}
-.icon-search:before{content:"\f002";}
-.icon-envelope-alt:before{content:"\f003";}
-.icon-heart:before{content:"\f004";}
-.icon-star:before{content:"\f005";}
-.icon-star-empty:before{content:"\f006";}
-.icon-user:before{content:"\f007";}
-.icon-film:before{content:"\f008";}
-.icon-th-large:before{content:"\f009";}
-.icon-th:before{content:"\f00a";}
-.icon-th-list:before{content:"\f00b";}
-.icon-ok:before{content:"\f00c";}
-.icon-remove:before{content:"\f00d";}
-.icon-zoom-in:before{content:"\f00e";}
-.icon-zoom-out:before{content:"\f010";}
-.icon-power-off:before,.icon-off:before{content:"\f011";}
-.icon-signal:before{content:"\f012";}
-.icon-gear:before,.icon-cog:before{content:"\f013";}
-.icon-trash:before{content:"\f014";}
-.icon-home:before{content:"\f015";}
-.icon-file-alt:before{content:"\f016";}
-.icon-time:before{content:"\f017";}
-.icon-road:before{content:"\f018";}
-.icon-download-alt:before{content:"\f019";}
-.icon-download:before{content:"\f01a";}
-.icon-upload:before{content:"\f01b";}
-.icon-inbox:before{content:"\f01c";}
-.icon-play-circle:before{content:"\f01d";}
-.icon-rotate-right:before,.icon-repeat:before{content:"\f01e";}
-.icon-refresh:before{content:"\f021";}
-.icon-list-alt:before{content:"\f022";}
-.icon-lock:before{content:"\f023";}
-.icon-flag:before{content:"\f024";}
-.icon-headphones:before{content:"\f025";}
-.icon-volume-off:before{content:"\f026";}
-.icon-volume-down:before{content:"\f027";}
-.icon-volume-up:before{content:"\f028";}
-.icon-qrcode:before{content:"\f029";}
-.icon-barcode:before{content:"\f02a";}
-.icon-tag:before{content:"\f02b";}
-.icon-tags:before{content:"\f02c";}
-.icon-book:before{content:"\f02d";}
-.icon-bookmark:before{content:"\f02e";}
-.icon-print:before{content:"\f02f";}
-.icon-camera:before{content:"\f030";}
-.icon-font:before{content:"\f031";}
-.icon-bold:before{content:"\f032";}
-.icon-italic:before{content:"\f033";}
-.icon-text-height:before{content:"\f034";}
-.icon-text-width:before{content:"\f035";}
-.icon-align-left:before{content:"\f036";}
-.icon-align-center:before{content:"\f037";}
-.icon-align-right:before{content:"\f038";}
-.icon-align-justify:before{content:"\f039";}
-.icon-list:before{content:"\f03a";}
-.icon-indent-left:before{content:"\f03b";}
-.icon-indent-right:before{content:"\f03c";}
-.icon-facetime-video:before{content:"\f03d";}
-.icon-picture:before{content:"\f03e";}
-.icon-pencil:before{content:"\f040";}
-.icon-map-marker:before{content:"\f041";}
-.icon-adjust:before{content:"\f042";}
-.icon-tint:before{content:"\f043";}
-.icon-edit:before{content:"\f044";}
-.icon-share:before{content:"\f045";}
-.icon-check:before{content:"\f046";}
-.icon-move:before{content:"\f047";}
-.icon-step-backward:before{content:"\f048";}
-.icon-fast-backward:before{content:"\f049";}
-.icon-backward:before{content:"\f04a";}
-.icon-play:before{content:"\f04b";}
-.icon-pause:before{content:"\f04c";}
-.icon-stop:before{content:"\f04d";}
-.icon-forward:before{content:"\f04e";}
-.icon-fast-forward:before{content:"\f050";}
-.icon-step-forward:before{content:"\f051";}
-.icon-eject:before{content:"\f052";}
-.icon-chevron-left:before{content:"\f053";}
-.icon-chevron-right:before{content:"\f054";}
-.icon-plus-sign:before{content:"\f055";}
-.icon-minus-sign:before{content:"\f056";}
-.icon-remove-sign:before{content:"\f057";}
-.icon-ok-sign:before{content:"\f058";}
-.icon-question-sign:before{content:"\f059";}
-.icon-info-sign:before{content:"\f05a";}
-.icon-screenshot:before{content:"\f05b";}
-.icon-remove-circle:before{content:"\f05c";}
-.icon-ok-circle:before{content:"\f05d";}
-.icon-ban-circle:before{content:"\f05e";}
-.icon-arrow-left:before{content:"\f060";}
-.icon-arrow-right:before{content:"\f061";}
-.icon-arrow-up:before{content:"\f062";}
-.icon-arrow-down:before{content:"\f063";}
-.icon-mail-forward:before,.icon-share-alt:before{content:"\f064";}
-.icon-resize-full:before{content:"\f065";}
-.icon-resize-small:before{content:"\f066";}
-.icon-plus:before{content:"\f067";}
-.icon-minus:before{content:"\f068";}
-.icon-asterisk:before{content:"\f069";}
-.icon-exclamation-sign:before{content:"\f06a";}
-.icon-gift:before{content:"\f06b";}
-.icon-leaf:before{content:"\f06c";}
-.icon-fire:before{content:"\f06d";}
-.icon-eye-open:before{content:"\f06e";}
-.icon-eye-close:before{content:"\f070";}
-.icon-warning-sign:before{content:"\f071";}
-.icon-plane:before{content:"\f072";}
-.icon-calendar:before{content:"\f073";}
-.icon-random:before{content:"\f074";}
-.icon-comment:before{content:"\f075";}
-.icon-magnet:before{content:"\f076";}
-.icon-chevron-up:before{content:"\f077";}
-.icon-chevron-down:before{content:"\f078";}
-.icon-retweet:before{content:"\f079";}
-.icon-shopping-cart:before{content:"\f07a";}
-.icon-folder-close:before{content:"\f07b";}
-.icon-folder-open:before{content:"\f07c";}
-.icon-resize-vertical:before{content:"\f07d";}
-.icon-resize-horizontal:before{content:"\f07e";}
-.icon-bar-chart:before{content:"\f080";}
-.icon-twitter-sign:before{content:"\f081";}
-.icon-facebook-sign:before{content:"\f082";}
-.icon-camera-retro:before{content:"\f083";}
-.icon-key:before{content:"\f084";}
-.icon-gears:before,.icon-cogs:before{content:"\f085";}
-.icon-comments:before{content:"\f086";}
-.icon-thumbs-up-alt:before{content:"\f087";}
-.icon-thumbs-down-alt:before{content:"\f088";}
-.icon-star-half:before{content:"\f089";}
-.icon-heart-empty:before{content:"\f08a";}
-.icon-signout:before{content:"\f08b";}
-.icon-linkedin-sign:before{content:"\f08c";}
-.icon-pushpin:before{content:"\f08d";}
-.icon-external-link:before{content:"\f08e";}
-.icon-signin:before{content:"\f090";}
-.icon-trophy:before{content:"\f091";}
-.icon-github-sign:before{content:"\f092";}
-.icon-upload-alt:before{content:"\f093";}
-.icon-lemon:before{content:"\f094";}
-.icon-phone:before{content:"\f095";}
-.icon-unchecked:before,.icon-check-empty:before{content:"\f096";}
-.icon-bookmark-empty:before{content:"\f097";}
-.icon-phone-sign:before{content:"\f098";}
-.icon-twitter:before{content:"\f099";}
-.icon-facebook:before{content:"\f09a";}
-.icon-github:before{content:"\f09b";}
-.icon-unlock:before{content:"\f09c";}
-.icon-credit-card:before{content:"\f09d";}
-.icon-rss:before{content:"\f09e";}
-.icon-hdd:before{content:"\f0a0";}
-.icon-bullhorn:before{content:"\f0a1";}
-.icon-bell:before{content:"\f0a2";}
-.icon-certificate:before{content:"\f0a3";}
-.icon-hand-right:before{content:"\f0a4";}
-.icon-hand-left:before{content:"\f0a5";}
-.icon-hand-up:before{content:"\f0a6";}
-.icon-hand-down:before{content:"\f0a7";}
-.icon-circle-arrow-left:before{content:"\f0a8";}
-.icon-circle-arrow-right:before{content:"\f0a9";}
-.icon-circle-arrow-up:before{content:"\f0aa";}
-.icon-circle-arrow-down:before{content:"\f0ab";}
-.icon-globe:before{content:"\f0ac";}
-.icon-wrench:before{content:"\f0ad";}
-.icon-tasks:before{content:"\f0ae";}
-.icon-filter:before{content:"\f0b0";}
-.icon-briefcase:before{content:"\f0b1";}
-.icon-fullscreen:before{content:"\f0b2";}
-.icon-group:before{content:"\f0c0";}
-.icon-link:before{content:"\f0c1";}
-.icon-cloud:before{content:"\f0c2";}
-.icon-beaker:before{content:"\f0c3";}
-.icon-cut:before{content:"\f0c4";}
-.icon-copy:before{content:"\f0c5";}
-.icon-paperclip:before,.icon-paper-clip:before{content:"\f0c6";}
-.icon-save:before{content:"\f0c7";}
-.icon-sign-blank:before{content:"\f0c8";}
-.icon-reorder:before{content:"\f0c9";}
-.icon-list-ul:before{content:"\f0ca";}
-.icon-list-ol:before{content:"\f0cb";}
-.icon-strikethrough:before{content:"\f0cc";}
-.icon-underline:before{content:"\f0cd";}
-.icon-table:before{content:"\f0ce";}
-.icon-magic:before{content:"\f0d0";}
-.icon-truck:before{content:"\f0d1";}
-.icon-pinterest:before{content:"\f0d2";}
-.icon-pinterest-sign:before{content:"\f0d3";}
-.icon-google-plus-sign:before{content:"\f0d4";}
-.icon-google-plus:before{content:"\f0d5";}
-.icon-money:before{content:"\f0d6";}
-.icon-caret-down:before{content:"\f0d7";}
-.icon-caret-up:before{content:"\f0d8";}
-.icon-caret-left:before{content:"\f0d9";}
-.icon-caret-right:before{content:"\f0da";}
-.icon-columns:before{content:"\f0db";}
-.icon-sort:before{content:"\f0dc";}
-.icon-sort-down:before{content:"\f0dd";}
-.icon-sort-up:before{content:"\f0de";}
-.icon-envelope:before{content:"\f0e0";}
-.icon-linkedin:before{content:"\f0e1";}
-.icon-rotate-left:before,.icon-undo:before{content:"\f0e2";}
-.icon-legal:before{content:"\f0e3";}
-.icon-dashboard:before{content:"\f0e4";}
-.icon-comment-alt:before{content:"\f0e5";}
-.icon-comments-alt:before{content:"\f0e6";}
-.icon-bolt:before{content:"\f0e7";}
-.icon-sitemap:before{content:"\f0e8";}
-.icon-umbrella:before{content:"\f0e9";}
-.icon-paste:before{content:"\f0ea";}
-.icon-lightbulb:before{content:"\f0eb";}
-.icon-exchange:before{content:"\f0ec";}
-.icon-cloud-download:before{content:"\f0ed";}
-.icon-cloud-upload:before{content:"\f0ee";}
-.icon-user-md:before{content:"\f0f0";}
-.icon-stethoscope:before{content:"\f0f1";}
-.icon-suitcase:before{content:"\f0f2";}
-.icon-bell-alt:before{content:"\f0f3";}
-.icon-coffee:before{content:"\f0f4";}
-.icon-food:before{content:"\f0f5";}
-.icon-file-text-alt:before{content:"\f0f6";}
-.icon-building:before{content:"\f0f7";}
-.icon-hospital:before{content:"\f0f8";}
-.icon-ambulance:before{content:"\f0f9";}
-.icon-medkit:before{content:"\f0fa";}
-.icon-fighter-jet:before{content:"\f0fb";}
-.icon-beer:before{content:"\f0fc";}
-.icon-h-sign:before{content:"\f0fd";}
-.icon-plus-sign-alt:before{content:"\f0fe";}
-.icon-double-angle-left:before{content:"\f100";}
-.icon-double-angle-right:before{content:"\f101";}
-.icon-double-angle-up:before{content:"\f102";}
-.icon-double-angle-down:before{content:"\f103";}
-.icon-angle-left:before{content:"\f104";}
-.icon-angle-right:before{content:"\f105";}
-.icon-angle-up:before{content:"\f106";}
-.icon-angle-down:before{content:"\f107";}
-.icon-desktop:before{content:"\f108";}
-.icon-laptop:before{content:"\f109";}
-.icon-tablet:before{content:"\f10a";}
-.icon-mobile-phone:before{content:"\f10b";}
-.icon-circle-blank:before{content:"\f10c";}
-.icon-quote-left:before{content:"\f10d";}
-.icon-quote-right:before{content:"\f10e";}
-.icon-spinner:before{content:"\f110";}
-.icon-circle:before{content:"\f111";}
-.icon-mail-reply:before,.icon-reply:before{content:"\f112";}
-.icon-github-alt:before{content:"\f113";}
-.icon-folder-close-alt:before{content:"\f114";}
-.icon-folder-open-alt:before{content:"\f115";}
-.icon-expand-alt:before{content:"\f116";}
-.icon-collapse-alt:before{content:"\f117";}
-.icon-smile:before{content:"\f118";}
-.icon-frown:before{content:"\f119";}
-.icon-meh:before{content:"\f11a";}
-.icon-gamepad:before{content:"\f11b";}
-.icon-keyboard:before{content:"\f11c";}
-.icon-flag-alt:before{content:"\f11d";}
-.icon-flag-checkered:before{content:"\f11e";}
-.icon-terminal:before{content:"\f120";}
-.icon-code:before{content:"\f121";}
-.icon-reply-all:before{content:"\f122";}
-.icon-mail-reply-all:before{content:"\f122";}
-.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123";}
-.icon-location-arrow:before{content:"\f124";}
-.icon-crop:before{content:"\f125";}
-.icon-code-fork:before{content:"\f126";}
-.icon-unlink:before{content:"\f127";}
-.icon-question:before{content:"\f128";}
-.icon-info:before{content:"\f129";}
-.icon-exclamation:before{content:"\f12a";}
-.icon-superscript:before{content:"\f12b";}
-.icon-subscript:before{content:"\f12c";}
-.icon-eraser:before{content:"\f12d";}
-.icon-puzzle-piece:before{content:"\f12e";}
-.icon-microphone:before{content:"\f130";}
-.icon-microphone-off:before{content:"\f131";}
-.icon-shield:before{content:"\f132";}
-.icon-calendar-empty:before{content:"\f133";}
-.icon-fire-extinguisher:before{content:"\f134";}
-.icon-rocket:before{content:"\f135";}
-.icon-maxcdn:before{content:"\f136";}
-.icon-chevron-sign-left:before{content:"\f137";}
-.icon-chevron-sign-right:before{content:"\f138";}
-.icon-chevron-sign-up:before{content:"\f139";}
-.icon-chevron-sign-down:before{content:"\f13a";}
-.icon-html5:before{content:"\f13b";}
-.icon-css3:before{content:"\f13c";}
-.icon-anchor:before{content:"\f13d";}
-.icon-unlock-alt:before{content:"\f13e";}
-.icon-bullseye:before{content:"\f140";}
-.icon-ellipsis-horizontal:before{content:"\f141";}
-.icon-ellipsis-vertical:before{content:"\f142";}
-.icon-rss-sign:before{content:"\f143";}
-.icon-play-sign:before{content:"\f144";}
-.icon-ticket:before{content:"\f145";}
-.icon-minus-sign-alt:before{content:"\f146";}
-.icon-check-minus:before{content:"\f147";}
-.icon-level-up:before{content:"\f148";}
-.icon-level-down:before{content:"\f149";}
-.icon-check-sign:before{content:"\f14a";}
-.icon-edit-sign:before{content:"\f14b";}
-.icon-external-link-sign:before{content:"\f14c";}
-.icon-share-sign:before{content:"\f14d";}
-.icon-compass:before{content:"\f14e";}
-.icon-collapse:before{content:"\f150";}
-.icon-collapse-top:before{content:"\f151";}
-.icon-expand:before{content:"\f152";}
-.icon-euro:before,.icon-eur:before{content:"\f153";}
-.icon-gbp:before{content:"\f154";}
-.icon-dollar:before,.icon-usd:before{content:"\f155";}
-.icon-rupee:before,.icon-inr:before{content:"\f156";}
-.icon-yen:before,.icon-jpy:before{content:"\f157";}
-.icon-renminbi:before,.icon-cny:before{content:"\f158";}
-.icon-won:before,.icon-krw:before{content:"\f159";}
-.icon-bitcoin:before,.icon-btc:before{content:"\f15a";}
-.icon-file:before{content:"\f15b";}
-.icon-file-text:before{content:"\f15c";}
-.icon-sort-by-alphabet:before{content:"\f15d";}
-.icon-sort-by-alphabet-alt:before{content:"\f15e";}
-.icon-sort-by-attributes:before{content:"\f160";}
-.icon-sort-by-attributes-alt:before{content:"\f161";}
-.icon-sort-by-order:before{content:"\f162";}
-.icon-sort-by-order-alt:before{content:"\f163";}
-.icon-thumbs-up:before{content:"\f164";}
-.icon-thumbs-down:before{content:"\f165";}
-.icon-youtube-sign:before{content:"\f166";}
-.icon-youtube:before{content:"\f167";}
-.icon-xing:before{content:"\f168";}
-.icon-xing-sign:before{content:"\f169";}
-.icon-youtube-play:before{content:"\f16a";}
-.icon-dropbox:before{content:"\f16b";}
-.icon-stackexchange:before{content:"\f16c";}
-.icon-instagram:before{content:"\f16d";}
-.icon-flickr:before{content:"\f16e";}
-.icon-adn:before{content:"\f170";}
-.icon-bitbucket:before{content:"\f171";}
-.icon-bitbucket-sign:before{content:"\f172";}
-.icon-tumblr:before{content:"\f173";}
-.icon-tumblr-sign:before{content:"\f174";}
-.icon-long-arrow-down:before{content:"\f175";}
-.icon-long-arrow-up:before{content:"\f176";}
-.icon-long-arrow-left:before{content:"\f177";}
-.icon-long-arrow-right:before{content:"\f178";}
-.icon-apple:before{content:"\f179";}
-.icon-windows:before{content:"\f17a";}
-.icon-android:before{content:"\f17b";}
-.icon-linux:before{content:"\f17c";}
-.icon-dribbble:before{content:"\f17d";}
-.icon-skype:before{content:"\f17e";}
-.icon-foursquare:before{content:"\f180";}
-.icon-trello:before{content:"\f181";}
-.icon-female:before{content:"\f182";}
-.icon-male:before{content:"\f183";}
-.icon-gittip:before{content:"\f184";}
-.icon-sun:before{content:"\f185";}
-.icon-moon:before{content:"\f186";}
-.icon-archive:before{content:"\f187";}
-.icon-bug:before{content:"\f188";}
-.icon-vk:before{content:"\f189";}
-.icon-weibo:before{content:"\f18a";}
-.icon-renren:before{content:"\f18b";}
diff --git a/personcentor/src/main/resources/static/css/font/iconfont.eot b/personcentor/src/main/resources/static/css/font/iconfont.eot
deleted file mode 100644
index a24b99879fa25c8589ca5c655267c38e0bce0423..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/css/font/iconfont.eot and /dev/null differ
diff --git a/personcentor/src/main/resources/static/css/font/iconfont.svg b/personcentor/src/main/resources/static/css/font/iconfont.svg
deleted file mode 100644
index ce72a551e3c82d372f698a7093e076a96f6adb25..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/font/iconfont.svg
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
diff --git a/personcentor/src/main/resources/static/css/font/iconfont.ttf b/personcentor/src/main/resources/static/css/font/iconfont.ttf
deleted file mode 100644
index c3e7f5a13e7fbeeb443631d69b8483c925dfcf63..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/css/font/iconfont.ttf and /dev/null differ
diff --git a/personcentor/src/main/resources/static/css/font/iconfont.woff b/personcentor/src/main/resources/static/css/font/iconfont.woff
deleted file mode 100644
index 672198315fab5a6052660018aa3fef6149d7aaa9..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/css/font/iconfont.woff and /dev/null differ
diff --git a/personcentor/src/main/resources/static/css/iconfont.css b/personcentor/src/main/resources/static/css/iconfont.css
deleted file mode 100644
index 6321cc7f8e0bd67115fa2d86b173114d42552e71..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/iconfont.css
+++ /dev/null
@@ -1,25 +0,0 @@
-
-@font-face {font-family: "iconfont";
- src: url('iconfont.eot'); /* IE9*/
- src: url('iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('iconfont.woff') format('woff'), /* chrome、firefox */
- url('iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
- url('iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */
-}
-
-.iconfont {
- font-family:"iconfont" !important;
- font-size:16px;
- font-style:normal;
- -webkit-font-smoothing: antialiased;
- -webkit-text-stroke-width: 0.2px;
- -moz-osx-font-smoothing: grayscale;
-}
-.icon-weixin:before { content: "\e600"; }
-.icon-dianhua:before { content: "\e601"; }
-.icon-Go:before { content: "\e606"; }
-.icon-youxiang:before { content: "\e602"; }
-.icon-xinlang:before { content: "\e603"; }
-.icon-coordinate:before { content: "\e604"; }
-.icon-you:before { content: "\e605"; }
-.icon-xiangyouhover:before { content: "\e607"; }
diff --git a/personcentor/src/main/resources/static/css/idangerous.swiper.css b/personcentor/src/main/resources/static/css/idangerous.swiper.css
deleted file mode 100644
index 98d6a4dc4a54f6e83f832de2c5cf6f818505c8ea..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/idangerous.swiper.css
+++ /dev/null
@@ -1,15 +0,0 @@
-/**
- * Swiper 3.2.7
- * Most modern mobile touch slider and framework with hardware accelerated transitions
- *
- * http://www.idangero.us/swiper/
- *
- * Copyright 2015, Vladimir Kharlampidi
- * The iDangero.us
- * http://www.idangero.us/
- *
- * Licensed under MIT
- *
- * Released on: December 7, 2015
- */
-.swiper-container{margin:0 auto;position:relative;overflow:hidden;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate(0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-webkit-box-lines:multiple;-moz-box-lines:multiple;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;-ms-flex:0 0 auto;flex-shrink:0;width:100%;height:100%;position:relative}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;-webkit-transition-property:-webkit-transform,height;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform,height}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-wp8-horizontal{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;-moz-background-size:27px 44px;-webkit-background-size:27px 44px;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s;-moz-transition:.3s;-o-transition:.3s;transition:.3s;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-moz-appearance:none;-ms-appearance:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-white .swiper-pagination-bullet{background:#fff}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-container-vertical>.swiper-pagination{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);-moz-transform:translate3d(0,-50%,0);-o-transform:translate(0,-50%);-ms-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination .swiper-pagination-bullet{margin:5px 0;display:block}.swiper-container-horizontal>.swiper-pagination{bottom:10px;left:0;width:100%}.swiper-container-horizontal>.swiper-pagination .swiper-pagination-bullet{margin:0 5px}.swiper-container-3d{-webkit-perspective:1200px;-moz-perspective:1200px;-o-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;visibility:hidden;-webkit-transform-origin:0 0;-moz-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;width:100%;height:100%;z-index:1}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-moz-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;-moz-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12,end) infinite;-moz-animation:swiper-preloader-spin 1s steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:"";width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;-webkit-background-size:100%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}
\ No newline at end of file
diff --git a/personcentor/src/main/resources/static/css/layui.css b/personcentor/src/main/resources/static/css/layui.css
deleted file mode 100644
index 5a1046950efa0b0ce03b7f3bd194485e904b1b93..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/layui.css
+++ /dev/null
@@ -1,2 +0,0 @@
-/** layui-v2.5.6 MIT License By https://www.layui.com */
- .layui-inline,img{display:inline-block;vertical-align:middle}h1,h2,h3,h4,h5,h6{font-weight:400}.layui-edge,.layui-header,.layui-inline,.layui-main{position:relative}.layui-body,.layui-edge,.layui-elip{overflow:hidden}.layui-btn,.layui-edge,.layui-inline,img{vertical-align:middle}.layui-btn,.layui-disabled,.layui-icon,.layui-unselect{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-elip,.layui-form-checkbox span,.layui-form-pane .layui-form-label{text-overflow:ellipsis;white-space:nowrap}.layui-breadcrumb,.layui-tree-btnGroup{visibility:hidden}blockquote,body,button,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}a:active,a:hover{outline:0}img{border:none}li{list-style:none}table{border-collapse:collapse;border-spacing:0}h4,h5,h6{font-size:100%}button,input,optgroup,option,select,textarea{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;outline:0}pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}body{line-height:24px;font:14px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif}hr{height:1px;margin:10px 0;border:0;clear:both}a{color:#333;text-decoration:none}a:hover{color:#777}a cite{font-style:normal;*cursor:pointer}.layui-border-box,.layui-border-box *{box-sizing:border-box}.layui-box,.layui-box *{box-sizing:content-box}.layui-clear{clear:both;*zoom:1}.layui-clear:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-inline{*display:inline;*zoom:1}.layui-edge{display:inline-block;width:0;height:0;border-width:6px;border-style:dashed;border-color:transparent}.layui-edge-top{top:-4px;border-bottom-color:#999;border-bottom-style:solid}.layui-edge-right{border-left-color:#999;border-left-style:solid}.layui-edge-bottom{top:2px;border-top-color:#999;border-top-style:solid}.layui-edge-left{border-right-color:#999;border-right-style:solid}.layui-disabled,.layui-disabled:hover{color:#d2d2d2!important;cursor:not-allowed!important}.layui-circle{border-radius:100%}.layui-show{display:block!important}.layui-hide{display:none!important}@font-face{font-family:layui-icon;src:url(../font/iconfont.eot?v=256);src:url(../font/iconfont.eot?v=256#iefix) format('embedded-opentype'),url(../font/iconfont.woff2?v=256) format('woff2'),url(../font/iconfont.woff?v=256) format('woff'),url(../font/iconfont.ttf?v=256) format('truetype'),url(../font/iconfont.svg?v=256#layui-icon) format('svg')}.layui-icon{font-family:layui-icon!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-icon-reply-fill:before{content:"\e611"}.layui-icon-set-fill:before{content:"\e614"}.layui-icon-menu-fill:before{content:"\e60f"}.layui-icon-search:before{content:"\e615"}.layui-icon-share:before{content:"\e641"}.layui-icon-set-sm:before{content:"\e620"}.layui-icon-engine:before{content:"\e628"}.layui-icon-close:before{content:"\1006"}.layui-icon-close-fill:before{content:"\1007"}.layui-icon-chart-screen:before{content:"\e629"}.layui-icon-star:before{content:"\e600"}.layui-icon-circle-dot:before{content:"\e617"}.layui-icon-chat:before{content:"\e606"}.layui-icon-release:before{content:"\e609"}.layui-icon-list:before{content:"\e60a"}.layui-icon-chart:before{content:"\e62c"}.layui-icon-ok-circle:before{content:"\1005"}.layui-icon-layim-theme:before{content:"\e61b"}.layui-icon-table:before{content:"\e62d"}.layui-icon-right:before{content:"\e602"}.layui-icon-left:before{content:"\e603"}.layui-icon-cart-simple:before{content:"\e698"}.layui-icon-face-cry:before{content:"\e69c"}.layui-icon-face-smile:before{content:"\e6af"}.layui-icon-survey:before{content:"\e6b2"}.layui-icon-tree:before{content:"\e62e"}.layui-icon-ie:before{content:"\e7bb"}.layui-icon-upload-circle:before{content:"\e62f"}.layui-icon-add-circle:before{content:"\e61f"}.layui-icon-download-circle:before{content:"\e601"}.layui-icon-templeate-1:before{content:"\e630"}.layui-icon-util:before{content:"\e631"}.layui-icon-face-surprised:before{content:"\e664"}.layui-icon-edit:before{content:"\e642"}.layui-icon-speaker:before{content:"\e645"}.layui-icon-down:before{content:"\e61a"}.layui-icon-file:before{content:"\e621"}.layui-icon-layouts:before{content:"\e632"}.layui-icon-rate-half:before{content:"\e6c9"}.layui-icon-add-circle-fine:before{content:"\e608"}.layui-icon-prev-circle:before{content:"\e633"}.layui-icon-read:before{content:"\e705"}.layui-icon-404:before{content:"\e61c"}.layui-icon-carousel:before{content:"\e634"}.layui-icon-help:before{content:"\e607"}.layui-icon-code-circle:before{content:"\e635"}.layui-icon-windows:before{content:"\e67f"}.layui-icon-water:before{content:"\e636"}.layui-icon-username:before{content:"\e66f"}.layui-icon-find-fill:before{content:"\e670"}.layui-icon-about:before{content:"\e60b"}.layui-icon-location:before{content:"\e715"}.layui-icon-up:before{content:"\e619"}.layui-icon-pause:before{content:"\e651"}.layui-icon-date:before{content:"\e637"}.layui-icon-layim-uploadfile:before{content:"\e61d"}.layui-icon-delete:before{content:"\e640"}.layui-icon-play:before{content:"\e652"}.layui-icon-top:before{content:"\e604"}.layui-icon-firefox:before{content:"\e686"}.layui-icon-friends:before{content:"\e612"}.layui-icon-refresh-3:before{content:"\e9aa"}.layui-icon-ok:before{content:"\e605"}.layui-icon-layer:before{content:"\e638"}.layui-icon-face-smile-fine:before{content:"\e60c"}.layui-icon-dollar:before{content:"\e659"}.layui-icon-group:before{content:"\e613"}.layui-icon-layim-download:before{content:"\e61e"}.layui-icon-picture-fine:before{content:"\e60d"}.layui-icon-link:before{content:"\e64c"}.layui-icon-diamond:before{content:"\e735"}.layui-icon-log:before{content:"\e60e"}.layui-icon-key:before{content:"\e683"}.layui-icon-rate-solid:before{content:"\e67a"}.layui-icon-fonts-del:before{content:"\e64f"}.layui-icon-unlink:before{content:"\e64d"}.layui-icon-fonts-clear:before{content:"\e639"}.layui-icon-triangle-r:before{content:"\e623"}.layui-icon-circle:before{content:"\e63f"}.layui-icon-radio:before{content:"\e643"}.layui-icon-align-center:before{content:"\e647"}.layui-icon-align-right:before{content:"\e648"}.layui-icon-align-left:before{content:"\e649"}.layui-icon-loading-1:before{content:"\e63e"}.layui-icon-return:before{content:"\e65c"}.layui-icon-fonts-strong:before{content:"\e62b"}.layui-icon-upload:before{content:"\e67c"}.layui-icon-dialogue:before{content:"\e63a"}.layui-icon-video:before{content:"\e6ed"}.layui-icon-headset:before{content:"\e6fc"}.layui-icon-cellphone-fine:before{content:"\e63b"}.layui-icon-add-1:before{content:"\e654"}.layui-icon-face-smile-b:before{content:"\e650"}.layui-icon-fonts-html:before{content:"\e64b"}.layui-icon-screen-full:before{content:"\e622"}.layui-icon-form:before{content:"\e63c"}.layui-icon-cart:before{content:"\e657"}.layui-icon-camera-fill:before{content:"\e65d"}.layui-icon-tabs:before{content:"\e62a"}.layui-icon-heart-fill:before{content:"\e68f"}.layui-icon-fonts-code:before{content:"\e64e"}.layui-icon-ios:before{content:"\e680"}.layui-icon-at:before{content:"\e687"}.layui-icon-fire:before{content:"\e756"}.layui-icon-set:before{content:"\e716"}.layui-icon-fonts-u:before{content:"\e646"}.layui-icon-triangle-d:before{content:"\e625"}.layui-icon-tips:before{content:"\e702"}.layui-icon-picture:before{content:"\e64a"}.layui-icon-more-vertical:before{content:"\e671"}.layui-icon-bluetooth:before{content:"\e689"}.layui-icon-flag:before{content:"\e66c"}.layui-icon-loading:before{content:"\e63d"}.layui-icon-fonts-i:before{content:"\e644"}.layui-icon-refresh-1:before{content:"\e666"}.layui-icon-rmb:before{content:"\e65e"}.layui-icon-addition:before{content:"\e624"}.layui-icon-home:before{content:"\e68e"}.layui-icon-time:before{content:"\e68d"}.layui-icon-user:before{content:"\e770"}.layui-icon-notice:before{content:"\e667"}.layui-icon-chrome:before{content:"\e68a"}.layui-icon-edge:before{content:"\e68b"}.layui-icon-login-weibo:before{content:"\e675"}.layui-icon-voice:before{content:"\e688"}.layui-icon-upload-drag:before{content:"\e681"}.layui-icon-login-qq:before{content:"\e676"}.layui-icon-snowflake:before{content:"\e6b1"}.layui-icon-heart:before{content:"\e68c"}.layui-icon-logout:before{content:"\e682"}.layui-icon-file-b:before{content:"\e655"}.layui-icon-template:before{content:"\e663"}.layui-icon-transfer:before{content:"\e691"}.layui-icon-auz:before{content:"\e672"}.layui-icon-console:before{content:"\e665"}.layui-icon-app:before{content:"\e653"}.layui-icon-prev:before{content:"\e65a"}.layui-icon-website:before{content:"\e7ae"}.layui-icon-next:before{content:"\e65b"}.layui-icon-component:before{content:"\e857"}.layui-icon-android:before{content:"\e684"}.layui-icon-more:before{content:"\e65f"}.layui-icon-login-wechat:before{content:"\e677"}.layui-icon-shrink-right:before{content:"\e668"}.layui-icon-spread-left:before{content:"\e66b"}.layui-icon-camera:before{content:"\e660"}.layui-icon-note:before{content:"\e66e"}.layui-icon-refresh:before{content:"\e669"}.layui-icon-female:before{content:"\e661"}.layui-icon-male:before{content:"\e662"}.layui-icon-screen-restore:before{content:"\e758"}.layui-icon-password:before{content:"\e673"}.layui-icon-senior:before{content:"\e674"}.layui-icon-theme:before{content:"\e66a"}.layui-icon-tread:before{content:"\e6c5"}.layui-icon-praise:before{content:"\e6c6"}.layui-icon-star-fill:before{content:"\e658"}.layui-icon-rate:before{content:"\e67b"}.layui-icon-template-1:before{content:"\e656"}.layui-icon-vercode:before{content:"\e679"}.layui-icon-service:before{content:"\e626"}.layui-icon-cellphone:before{content:"\e678"}.layui-icon-print:before{content:"\e66d"}.layui-icon-cols:before{content:"\e610"}.layui-icon-wifi:before{content:"\e7e0"}.layui-icon-export:before{content:"\e67d"}.layui-icon-rss:before{content:"\e808"}.layui-icon-slider:before{content:"\e714"}.layui-icon-email:before{content:"\e618"}.layui-icon-subtraction:before{content:"\e67e"}.layui-icon-mike:before{content:"\e6dc"}.layui-icon-light:before{content:"\e748"}.layui-icon-gift:before{content:"\e627"}.layui-icon-mute:before{content:"\e685"}.layui-icon-reduce-circle:before{content:"\e616"}.layui-icon-music:before{content:"\e690"}.layui-main{width:1140px;margin:0 auto}.layui-header{z-index:1000;height:60px}.layui-header a:hover{transition:all .5s;-webkit-transition:all .5s}.layui-side{position:fixed;left:0;top:0;bottom:0;z-index:999;width:200px;overflow-x:hidden}.layui-side-scroll{position:relative;width:220px;height:100%;overflow-x:hidden}.layui-body{position:absolute;left:200px;right:0;top:0;bottom:0;z-index:998;width:auto;overflow-y:auto;box-sizing:border-box}.layui-layout-body{overflow:hidden}.layui-layout-admin .layui-header{background-color:#23262E}.layui-layout-admin .layui-side{top:60px;width:200px;overflow-x:hidden}.layui-layout-admin .layui-body{position:fixed;top:60px;bottom:44px}.layui-layout-admin .layui-main{width:auto;margin:0 15px}.layui-layout-admin .layui-footer{position:fixed;left:200px;right:0;bottom:0;height:44px;line-height:44px;padding:0 15px;background-color:#eee}.layui-layout-admin .layui-logo{position:absolute;left:0;top:0;width:200px;height:100%;line-height:60px;text-align:center;color:#009688;font-size:16px}.layui-layout-admin .layui-header .layui-nav{background:0 0}.layui-layout-left{position:absolute!important;left:200px;top:0}.layui-layout-right{position:absolute!important;right:0;top:0}.layui-container{position:relative;margin:0 auto;padding:0 15px;box-sizing:border-box}.layui-fluid{position:relative;margin:0 auto;padding:0 15px}.layui-row:after,.layui-row:before{content:'';display:block;clear:both}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9,.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9,.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9,.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{position:relative;display:block;box-sizing:border-box}.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{float:left}.layui-col-xs1{width:8.33333333%}.layui-col-xs2{width:16.66666667%}.layui-col-xs3{width:25%}.layui-col-xs4{width:33.33333333%}.layui-col-xs5{width:41.66666667%}.layui-col-xs6{width:50%}.layui-col-xs7{width:58.33333333%}.layui-col-xs8{width:66.66666667%}.layui-col-xs9{width:75%}.layui-col-xs10{width:83.33333333%}.layui-col-xs11{width:91.66666667%}.layui-col-xs12{width:100%}.layui-col-xs-offset1{margin-left:8.33333333%}.layui-col-xs-offset2{margin-left:16.66666667%}.layui-col-xs-offset3{margin-left:25%}.layui-col-xs-offset4{margin-left:33.33333333%}.layui-col-xs-offset5{margin-left:41.66666667%}.layui-col-xs-offset6{margin-left:50%}.layui-col-xs-offset7{margin-left:58.33333333%}.layui-col-xs-offset8{margin-left:66.66666667%}.layui-col-xs-offset9{margin-left:75%}.layui-col-xs-offset10{margin-left:83.33333333%}.layui-col-xs-offset11{margin-left:91.66666667%}.layui-col-xs-offset12{margin-left:100%}@media screen and (max-width:768px){.layui-hide-xs{display:none!important}.layui-show-xs-block{display:block!important}.layui-show-xs-inline{display:inline!important}.layui-show-xs-inline-block{display:inline-block!important}}@media screen and (min-width:768px){.layui-container{width:750px}.layui-hide-sm{display:none!important}.layui-show-sm-block{display:block!important}.layui-show-sm-inline{display:inline!important}.layui-show-sm-inline-block{display:inline-block!important}.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9{float:left}.layui-col-sm1{width:8.33333333%}.layui-col-sm2{width:16.66666667%}.layui-col-sm3{width:25%}.layui-col-sm4{width:33.33333333%}.layui-col-sm5{width:41.66666667%}.layui-col-sm6{width:50%}.layui-col-sm7{width:58.33333333%}.layui-col-sm8{width:66.66666667%}.layui-col-sm9{width:75%}.layui-col-sm10{width:83.33333333%}.layui-col-sm11{width:91.66666667%}.layui-col-sm12{width:100%}.layui-col-sm-offset1{margin-left:8.33333333%}.layui-col-sm-offset2{margin-left:16.66666667%}.layui-col-sm-offset3{margin-left:25%}.layui-col-sm-offset4{margin-left:33.33333333%}.layui-col-sm-offset5{margin-left:41.66666667%}.layui-col-sm-offset6{margin-left:50%}.layui-col-sm-offset7{margin-left:58.33333333%}.layui-col-sm-offset8{margin-left:66.66666667%}.layui-col-sm-offset9{margin-left:75%}.layui-col-sm-offset10{margin-left:83.33333333%}.layui-col-sm-offset11{margin-left:91.66666667%}.layui-col-sm-offset12{margin-left:100%}}@media screen and (min-width:992px){.layui-container{width:970px}.layui-hide-md{display:none!important}.layui-show-md-block{display:block!important}.layui-show-md-inline{display:inline!important}.layui-show-md-inline-block{display:inline-block!important}.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9{float:left}.layui-col-md1{width:8.33333333%}.layui-col-md2{width:16.66666667%}.layui-col-md3{width:25%}.layui-col-md4{width:33.33333333%}.layui-col-md5{width:41.66666667%}.layui-col-md6{width:50%}.layui-col-md7{width:58.33333333%}.layui-col-md8{width:66.66666667%}.layui-col-md9{width:75%}.layui-col-md10{width:83.33333333%}.layui-col-md11{width:91.66666667%}.layui-col-md12{width:100%}.layui-col-md-offset1{margin-left:8.33333333%}.layui-col-md-offset2{margin-left:16.66666667%}.layui-col-md-offset3{margin-left:25%}.layui-col-md-offset4{margin-left:33.33333333%}.layui-col-md-offset5{margin-left:41.66666667%}.layui-col-md-offset6{margin-left:50%}.layui-col-md-offset7{margin-left:58.33333333%}.layui-col-md-offset8{margin-left:66.66666667%}.layui-col-md-offset9{margin-left:75%}.layui-col-md-offset10{margin-left:83.33333333%}.layui-col-md-offset11{margin-left:91.66666667%}.layui-col-md-offset12{margin-left:100%}}@media screen and (min-width:1200px){.layui-container{width:1170px}.layui-hide-lg{display:none!important}.layui-show-lg-block{display:block!important}.layui-show-lg-inline{display:inline!important}.layui-show-lg-inline-block{display:inline-block!important}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9{float:left}.layui-col-lg1{width:8.33333333%}.layui-col-lg2{width:16.66666667%}.layui-col-lg3{width:25%}.layui-col-lg4{width:33.33333333%}.layui-col-lg5{width:41.66666667%}.layui-col-lg6{width:50%}.layui-col-lg7{width:58.33333333%}.layui-col-lg8{width:66.66666667%}.layui-col-lg9{width:75%}.layui-col-lg10{width:83.33333333%}.layui-col-lg11{width:91.66666667%}.layui-col-lg12{width:100%}.layui-col-lg-offset1{margin-left:8.33333333%}.layui-col-lg-offset2{margin-left:16.66666667%}.layui-col-lg-offset3{margin-left:25%}.layui-col-lg-offset4{margin-left:33.33333333%}.layui-col-lg-offset5{margin-left:41.66666667%}.layui-col-lg-offset6{margin-left:50%}.layui-col-lg-offset7{margin-left:58.33333333%}.layui-col-lg-offset8{margin-left:66.66666667%}.layui-col-lg-offset9{margin-left:75%}.layui-col-lg-offset10{margin-left:83.33333333%}.layui-col-lg-offset11{margin-left:91.66666667%}.layui-col-lg-offset12{margin-left:100%}}.layui-col-space1{margin:-.5px}.layui-col-space1>*{padding:.5px}.layui-col-space2{margin:-1px}.layui-col-space2>*{padding:1px}.layui-col-space4{margin:-2px}.layui-col-space4>*{padding:2px}.layui-col-space5{margin:-2.5px}.layui-col-space5>*{padding:2.5px}.layui-col-space6{margin:-3px}.layui-col-space6>*{padding:3px}.layui-col-space8{margin:-4px}.layui-col-space8>*{padding:4px}.layui-col-space10{margin:-5px}.layui-col-space10>*{padding:5px}.layui-col-space12{margin:-6px}.layui-col-space12>*{padding:6px}.layui-col-space14{margin:-7px}.layui-col-space14>*{padding:7px}.layui-col-space15{margin:-7.5px}.layui-col-space15>*{padding:7.5px}.layui-col-space16{margin:-8px}.layui-col-space16>*{padding:8px}.layui-col-space18{margin:-9px}.layui-col-space18>*{padding:9px}.layui-col-space20{margin:-10px}.layui-col-space20>*{padding:10px}.layui-col-space22{margin:-11px}.layui-col-space22>*{padding:11px}.layui-col-space24{margin:-12px}.layui-col-space24>*{padding:12px}.layui-col-space25{margin:-12.5px}.layui-col-space25>*{padding:12.5px}.layui-col-space26{margin:-13px}.layui-col-space26>*{padding:13px}.layui-col-space28{margin:-14px}.layui-col-space28>*{padding:14px}.layui-col-space30{margin:-15px}.layui-col-space30>*{padding:15px}.layui-btn,.layui-input,.layui-select,.layui-textarea,.layui-upload-button{outline:0;-webkit-appearance:none;transition:all .3s;-webkit-transition:all .3s;box-sizing:border-box}.layui-elem-quote{margin-bottom:10px;padding:15px;line-height:22px;border-left:5px solid #009688;border-radius:0 2px 2px 0;background-color:#f2f2f2}.layui-quote-nm{border-style:solid;border-width:1px 1px 1px 5px;background:0 0}.layui-elem-field{margin-bottom:10px;padding:0;border-width:1px;border-style:solid}.layui-elem-field legend{margin-left:20px;padding:0 10px;font-size:20px;font-weight:300}.layui-field-title{margin:10px 0 20px;border-width:1px 0 0}.layui-field-box{padding:10px 15px}.layui-field-title .layui-field-box{padding:10px 0}.layui-progress{position:relative;height:6px;border-radius:20px;background-color:#e2e2e2}.layui-progress-bar{position:absolute;left:0;top:0;width:0;max-width:100%;height:6px;border-radius:20px;text-align:right;background-color:#5FB878;transition:all .3s;-webkit-transition:all .3s}.layui-progress-big,.layui-progress-big .layui-progress-bar{height:18px;line-height:18px}.layui-progress-text{position:relative;top:-20px;line-height:18px;font-size:12px;color:#666}.layui-progress-big .layui-progress-text{position:static;padding:0 10px;color:#fff}.layui-collapse{border-width:1px;border-style:solid;border-radius:2px}.layui-colla-content,.layui-colla-item{border-top-width:1px;border-top-style:solid}.layui-colla-item:first-child{border-top:none}.layui-colla-title{position:relative;height:42px;line-height:42px;padding:0 15px 0 35px;color:#333;background-color:#f2f2f2;cursor:pointer;font-size:14px;overflow:hidden}.layui-colla-content{display:none;padding:10px 15px;line-height:22px;color:#666}.layui-colla-icon{position:absolute;left:15px;top:0;font-size:14px}.layui-card{margin-bottom:15px;border-radius:2px;background-color:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.layui-card:last-child{margin-bottom:0}.layui-card-header{position:relative;height:42px;line-height:42px;padding:0 15px;border-bottom:1px solid #f6f6f6;color:#333;border-radius:2px 2px 0 0;font-size:14px}.layui-bg-black,.layui-bg-blue,.layui-bg-cyan,.layui-bg-green,.layui-bg-orange,.layui-bg-red{color:#fff!important}.layui-card-body{position:relative;padding:10px 15px;line-height:24px}.layui-card-body[pad15]{padding:15px}.layui-card-body[pad20]{padding:20px}.layui-card-body .layui-table{margin:5px 0}.layui-card .layui-tab{margin:0}.layui-panel-window{position:relative;padding:15px;border-radius:0;border-top:5px solid #E6E6E6;background-color:#fff}.layui-auxiliar-moving{position:fixed;left:0;right:0;top:0;bottom:0;width:100%;height:100%;background:0 0;z-index:9999999999}.layui-form-label,.layui-form-mid,.layui-form-select,.layui-input-block,.layui-input-inline,.layui-textarea{position:relative}.layui-bg-red{background-color:#FF5722!important}.layui-bg-orange{background-color:#FFB800!important}.layui-bg-green{background-color:#009688!important}.layui-bg-cyan{background-color:#2F4056!important}.layui-bg-blue{background-color:#1E9FFF!important}.layui-bg-black{background-color:#393D49!important}.layui-bg-gray{background-color:#eee!important;color:#666!important}.layui-badge-rim,.layui-colla-content,.layui-colla-item,.layui-collapse,.layui-elem-field,.layui-form-pane .layui-form-item[pane],.layui-form-pane .layui-form-label,.layui-input,.layui-layedit,.layui-layedit-tool,.layui-quote-nm,.layui-select,.layui-tab-bar,.layui-tab-card,.layui-tab-title,.layui-tab-title .layui-this:after,.layui-textarea{border-color:#e6e6e6}.layui-timeline-item:before,hr{background-color:#e6e6e6}.layui-text{line-height:22px;font-size:14px;color:#666}.layui-text h1,.layui-text h2,.layui-text h3{font-weight:500;color:#333}.layui-text h1{font-size:30px}.layui-text h2{font-size:24px}.layui-text h3{font-size:18px}.layui-text a:not(.layui-btn){color:#01AAED}.layui-text a:not(.layui-btn):hover{text-decoration:underline}.layui-text ul{padding:5px 0 5px 15px}.layui-text ul li{margin-top:5px;list-style-type:disc}.layui-text em,.layui-word-aux{color:#999!important;padding:0 5px!important}.layui-btn{display:inline-block;height:38px;line-height:38px;padding:0 18px;background-color:#009688;color:#fff;white-space:nowrap;text-align:center;font-size:14px;border:none;border-radius:2px;cursor:pointer}.layui-btn:hover{opacity:.8;filter:alpha(opacity=80);color:#fff}.layui-btn:active{opacity:1;filter:alpha(opacity=100)}.layui-btn+.layui-btn{margin-left:10px}.layui-btn-container{font-size:0}.layui-btn-container .layui-btn{margin-right:10px;margin-bottom:10px}.layui-btn-container .layui-btn+.layui-btn{margin-left:0}.layui-table .layui-btn-container .layui-btn{margin-bottom:9px}.layui-btn-radius{border-radius:100px}.layui-btn .layui-icon{margin-right:3px;font-size:18px;vertical-align:bottom;vertical-align:middle\9}.layui-btn-primary{border:1px solid #C9C9C9;background-color:#fff;color:#555}.layui-btn-primary:hover{border-color:#009688;color:#333}.layui-btn-normal{background-color:#1E9FFF}.layui-btn-warm{background-color:#FFB800}.layui-btn-danger{background-color:#FF5722}.layui-btn-checked{background-color:#5FB878}.layui-btn-disabled,.layui-btn-disabled:active,.layui-btn-disabled:hover{border:1px solid #e6e6e6;background-color:#FBFBFB;color:#C9C9C9;cursor:not-allowed;opacity:1}.layui-btn-lg{height:44px;line-height:44px;padding:0 25px;font-size:16px}.layui-btn-sm{height:30px;line-height:30px;padding:0 10px;font-size:12px}.layui-btn-sm i{font-size:16px!important}.layui-btn-xs{height:22px;line-height:22px;padding:0 5px;font-size:12px}.layui-btn-xs i{font-size:14px!important}.layui-btn-group{display:inline-block;vertical-align:middle;font-size:0}.layui-btn-group .layui-btn{margin-left:0!important;margin-right:0!important;border-left:1px solid rgba(255,255,255,.5);border-radius:0}.layui-btn-group .layui-btn-primary{border-left:none}.layui-btn-group .layui-btn-primary:hover{border-color:#C9C9C9;color:#009688}.layui-btn-group .layui-btn:first-child{border-left:none;border-radius:2px 0 0 2px}.layui-btn-group .layui-btn-primary:first-child{border-left:1px solid #c9c9c9}.layui-btn-group .layui-btn:last-child{border-radius:0 2px 2px 0}.layui-btn-group .layui-btn+.layui-btn{margin-left:0}.layui-btn-group+.layui-btn-group{margin-left:10px}.layui-btn-fluid{width:100%}.layui-input,.layui-select,.layui-textarea{height:38px;line-height:1.3;line-height:38px\9;border-width:1px;border-style:solid;background-color:#fff;border-radius:2px}.layui-input::-webkit-input-placeholder,.layui-select::-webkit-input-placeholder,.layui-textarea::-webkit-input-placeholder{line-height:1.3}.layui-input,.layui-textarea{display:block;width:100%;padding-left:10px}.layui-input:hover,.layui-textarea:hover{border-color:#D2D2D2!important}.layui-input:focus,.layui-textarea:focus{border-color:#C9C9C9!important}.layui-textarea{min-height:100px;height:auto;line-height:20px;padding:6px 10px;resize:vertical}.layui-select{padding:0 10px}.layui-form input[type=checkbox],.layui-form input[type=radio],.layui-form select{display:none}.layui-form [lay-ignore]{display:initial}.layui-form-item{margin-bottom:15px;clear:both;*zoom:1}.layui-form-item:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-form-label{float:left;display:block;padding:9px 15px;width:80px;font-weight:400;line-height:20px;text-align:right}.layui-form-label-col{display:block;float:none;padding:9px 0;line-height:20px;text-align:left}.layui-form-item .layui-inline{margin-bottom:5px;margin-right:10px}.layui-input-block{margin-left:110px;min-height:36px}.layui-input-inline{display:inline-block;vertical-align:middle}.layui-form-item .layui-input-inline{float:left;width:190px;margin-right:10px}.layui-form-text .layui-input-inline{width:auto}.layui-form-mid{float:left;display:block;padding:9px 0!important;line-height:20px;margin-right:10px}.layui-form-danger+.layui-form-select .layui-input,.layui-form-danger:focus{border-color:#FF5722!important}.layui-form-select .layui-input{padding-right:30px;cursor:pointer}.layui-form-select .layui-edge{position:absolute;right:10px;top:50%;margin-top:-3px;cursor:pointer;border-width:6px;border-top-color:#c2c2c2;border-top-style:solid;transition:all .3s;-webkit-transition:all .3s}.layui-form-select dl{display:none;position:absolute;left:0;top:42px;padding:5px 0;z-index:899;min-width:100%;border:1px solid #d2d2d2;max-height:300px;overflow-y:auto;background-color:#fff;border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.12);box-sizing:border-box}.layui-form-select dl dd,.layui-form-select dl dt{padding:0 10px;line-height:36px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.layui-form-select dl dt{font-size:12px;color:#999}.layui-form-select dl dd{cursor:pointer}.layui-form-select dl dd:hover{background-color:#f2f2f2;-webkit-transition:.5s all;transition:.5s all}.layui-form-select .layui-select-group dd{padding-left:20px}.layui-form-select dl dd.layui-select-tips{padding-left:10px!important;color:#999}.layui-form-select dl dd.layui-this{background-color:#5FB878;color:#fff}.layui-form-checkbox,.layui-form-select dl dd.layui-disabled{background-color:#fff}.layui-form-selected dl{display:block}.layui-form-checkbox,.layui-form-checkbox *,.layui-form-switch{display:inline-block;vertical-align:middle}.layui-form-selected .layui-edge{margin-top:-9px;-webkit-transform:rotate(180deg);transform:rotate(180deg);margin-top:-3px\9}:root .layui-form-selected .layui-edge{margin-top:-9px\0/IE9}.layui-form-selectup dl{top:auto;bottom:42px}.layui-select-none{margin:5px 0;text-align:center;color:#999}.layui-select-disabled .layui-disabled{border-color:#eee!important}.layui-select-disabled .layui-edge{border-top-color:#d2d2d2}.layui-form-checkbox{position:relative;height:30px;line-height:30px;margin-right:10px;padding-right:30px;cursor:pointer;font-size:0;-webkit-transition:.1s linear;transition:.1s linear;box-sizing:border-box}.layui-form-checkbox span{padding:0 10px;height:100%;font-size:14px;border-radius:2px 0 0 2px;background-color:#d2d2d2;color:#fff;overflow:hidden}.layui-form-checkbox:hover span{background-color:#c2c2c2}.layui-form-checkbox i{position:absolute;right:0;top:0;width:30px;height:28px;border:1px solid #d2d2d2;border-left:none;border-radius:0 2px 2px 0;color:#fff;font-size:20px;text-align:center}.layui-form-checkbox:hover i{border-color:#c2c2c2;color:#c2c2c2}.layui-form-checked,.layui-form-checked:hover{border-color:#5FB878}.layui-form-checked span,.layui-form-checked:hover span{background-color:#5FB878}.layui-form-checked i,.layui-form-checked:hover i{color:#5FB878}.layui-form-item .layui-form-checkbox{margin-top:4px}.layui-form-checkbox[lay-skin=primary]{height:auto!important;line-height:normal!important;min-width:18px;min-height:18px;border:none!important;margin-right:0;padding-left:28px;padding-right:0;background:0 0}.layui-form-checkbox[lay-skin=primary] span{padding-left:0;padding-right:15px;line-height:18px;background:0 0;color:#666}.layui-form-checkbox[lay-skin=primary] i{right:auto;left:0;width:16px;height:16px;line-height:16px;border:1px solid #d2d2d2;font-size:12px;border-radius:2px;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-checkbox[lay-skin=primary]:hover i{border-color:#5FB878;color:#fff}.layui-form-checked[lay-skin=primary] i{border-color:#5FB878!important;background-color:#5FB878;color:#fff}.layui-checkbox-disbaled[lay-skin=primary] span{background:0 0!important;color:#c2c2c2}.layui-checkbox-disbaled[lay-skin=primary]:hover i{border-color:#d2d2d2}.layui-form-item .layui-form-checkbox[lay-skin=primary]{margin-top:10px}.layui-form-switch{position:relative;height:22px;line-height:22px;min-width:35px;padding:0 5px;margin-top:8px;border:1px solid #d2d2d2;border-radius:20px;cursor:pointer;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch i{position:absolute;left:5px;top:3px;width:16px;height:16px;border-radius:20px;background-color:#d2d2d2;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch em{position:relative;top:0;width:25px;margin-left:21px;padding:0!important;text-align:center!important;color:#999!important;font-style:normal!important;font-size:12px}.layui-form-onswitch{border-color:#5FB878;background-color:#5FB878}.layui-checkbox-disbaled,.layui-checkbox-disbaled i{border-color:#e2e2e2!important}.layui-form-onswitch i{left:100%;margin-left:-21px;background-color:#fff}.layui-form-onswitch em{margin-left:5px;margin-right:21px;color:#fff!important}.layui-checkbox-disbaled span{background-color:#e2e2e2!important}.layui-checkbox-disbaled:hover i{color:#fff!important}[lay-radio]{display:none}.layui-form-radio,.layui-form-radio *{display:inline-block;vertical-align:middle}.layui-form-radio{line-height:28px;margin:6px 10px 0 0;padding-right:10px;cursor:pointer;font-size:0}.layui-form-radio *{font-size:14px}.layui-form-radio>i{margin-right:8px;font-size:22px;color:#c2c2c2}.layui-form-radio>i:hover,.layui-form-radioed>i{color:#5FB878}.layui-radio-disbaled>i{color:#e2e2e2!important}.layui-form-pane .layui-form-label{width:110px;padding:8px 15px;height:38px;line-height:20px;border-width:1px;border-style:solid;border-radius:2px 0 0 2px;text-align:center;background-color:#FBFBFB;overflow:hidden;box-sizing:border-box}.layui-form-pane .layui-input-inline{margin-left:-1px}.layui-form-pane .layui-input-block{margin-left:110px;left:-1px}.layui-form-pane .layui-input{border-radius:0 2px 2px 0}.layui-form-pane .layui-form-text .layui-form-label{float:none;width:100%;border-radius:2px;box-sizing:border-box;text-align:left}.layui-form-pane .layui-form-text .layui-input-inline{display:block;margin:0;top:-1px;clear:both}.layui-form-pane .layui-form-text .layui-input-block{margin:0;left:0;top:-1px}.layui-form-pane .layui-form-text .layui-textarea{min-height:100px;border-radius:0 0 2px 2px}.layui-form-pane .layui-form-checkbox{margin:4px 0 4px 10px}.layui-form-pane .layui-form-radio,.layui-form-pane .layui-form-switch{margin-top:6px;margin-left:10px}.layui-form-pane .layui-form-item[pane]{position:relative;border-width:1px;border-style:solid}.layui-form-pane .layui-form-item[pane] .layui-form-label{position:absolute;left:0;top:0;height:100%;border-width:0 1px 0 0}.layui-form-pane .layui-form-item[pane] .layui-input-inline{margin-left:110px}@media screen and (max-width:450px){.layui-form-item .layui-form-label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-form-item .layui-inline{display:block;margin-right:0;margin-bottom:20px;clear:both}.layui-form-item .layui-inline:after{content:'\20';clear:both;display:block;height:0}.layui-form-item .layui-input-inline{display:block;float:none;left:-3px;width:auto;margin:0 0 10px 112px}.layui-form-item .layui-input-inline+.layui-form-mid{margin-left:110px;top:-5px;padding:0}.layui-form-item .layui-form-checkbox{margin-right:5px;margin-bottom:5px}}.layui-layedit{border-width:1px;border-style:solid;border-radius:2px}.layui-layedit-tool{padding:3px 5px;border-bottom-width:1px;border-bottom-style:solid;font-size:0}.layedit-tool-fixed{position:fixed;top:0;border-top:1px solid #e2e2e2}.layui-layedit-tool .layedit-tool-mid,.layui-layedit-tool .layui-icon{display:inline-block;vertical-align:middle;text-align:center;font-size:14px}.layui-layedit-tool .layui-icon{position:relative;width:32px;height:30px;line-height:30px;margin:3px 5px;color:#777;cursor:pointer;border-radius:2px}.layui-layedit-tool .layui-icon:hover{color:#393D49}.layui-layedit-tool .layui-icon:active{color:#000}.layui-layedit-tool .layedit-tool-active{background-color:#e2e2e2;color:#000}.layui-layedit-tool .layui-disabled,.layui-layedit-tool .layui-disabled:hover{color:#d2d2d2;cursor:not-allowed}.layui-layedit-tool .layedit-tool-mid{width:1px;height:18px;margin:0 10px;background-color:#d2d2d2}.layedit-tool-html{width:50px!important;font-size:30px!important}.layedit-tool-b,.layedit-tool-code,.layedit-tool-help{font-size:16px!important}.layedit-tool-d,.layedit-tool-face,.layedit-tool-image,.layedit-tool-unlink{font-size:18px!important}.layedit-tool-image input{position:absolute;font-size:0;left:0;top:0;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-layedit-iframe iframe{display:block;width:100%}#LAY_layedit_code{overflow:hidden}.layui-laypage{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;margin:10px 0;font-size:0}.layui-laypage>a:first-child,.layui-laypage>a:first-child em{border-radius:2px 0 0 2px}.layui-laypage>a:last-child,.layui-laypage>a:last-child em{border-radius:0 2px 2px 0}.layui-laypage>:first-child{margin-left:0!important}.layui-laypage>:last-child{margin-right:0!important}.layui-laypage a,.layui-laypage button,.layui-laypage input,.layui-laypage select,.layui-laypage span{border:1px solid #e2e2e2}.layui-laypage a,.layui-laypage span{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding:0 15px;height:28px;line-height:28px;margin:0 -1px 5px 0;background-color:#fff;color:#333;font-size:12px}.layui-flow-more a *,.layui-laypage input,.layui-table-view select[lay-ignore]{display:inline-block}.layui-laypage a:hover{color:#009688}.layui-laypage em{font-style:normal}.layui-laypage .layui-laypage-spr{color:#999;font-weight:700}.layui-laypage a{text-decoration:none}.layui-laypage .layui-laypage-curr{position:relative}.layui-laypage .layui-laypage-curr em{position:relative;color:#fff}.layui-laypage .layui-laypage-curr .layui-laypage-em{position:absolute;left:-1px;top:-1px;padding:1px;width:100%;height:100%;background-color:#009688}.layui-laypage-em{border-radius:2px}.layui-laypage-next em,.layui-laypage-prev em{font-family:Sim sun;font-size:16px}.layui-laypage .layui-laypage-count,.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh,.layui-laypage .layui-laypage-skip{margin-left:10px;margin-right:10px;padding:0;border:none}.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh{vertical-align:top}.layui-laypage .layui-laypage-refresh i{font-size:18px;cursor:pointer}.layui-laypage select{height:22px;padding:3px;border-radius:2px;cursor:pointer}.layui-laypage .layui-laypage-skip{height:30px;line-height:30px;color:#999}.layui-laypage button,.layui-laypage input{height:30px;line-height:30px;border-radius:2px;vertical-align:top;background-color:#fff;box-sizing:border-box}.layui-laypage input{width:40px;margin:0 10px;padding:0 3px;text-align:center}.layui-laypage input:focus,.layui-laypage select:focus{border-color:#009688!important}.layui-laypage button{margin-left:10px;padding:0 10px;cursor:pointer}.layui-table,.layui-table-view{margin:10px 0}.layui-flow-more{margin:10px 0;text-align:center;color:#999;font-size:14px}.layui-flow-more a{height:32px;line-height:32px}.layui-flow-more a *{vertical-align:top}.layui-flow-more a cite{padding:0 20px;border-radius:3px;background-color:#eee;color:#333;font-style:normal}.layui-flow-more a cite:hover{opacity:.8}.layui-flow-more a i{font-size:30px;color:#737383}.layui-table{width:100%;background-color:#fff;color:#666}.layui-table tr{transition:all .3s;-webkit-transition:all .3s}.layui-table th{text-align:left;font-weight:400}.layui-table tbody tr:hover,.layui-table thead tr,.layui-table-click,.layui-table-header,.layui-table-hover,.layui-table-mend,.layui-table-patch,.layui-table-tool,.layui-table-total,.layui-table-total tr,.layui-table[lay-even] tr:nth-child(even){background-color:#f2f2f2}.layui-table td,.layui-table th,.layui-table-col-set,.layui-table-fixed-r,.layui-table-grid-down,.layui-table-header,.layui-table-page,.layui-table-tips-main,.layui-table-tool,.layui-table-total,.layui-table-view,.layui-table[lay-skin=line],.layui-table[lay-skin=row]{border-width:1px;border-style:solid;border-color:#e6e6e6}.layui-table td,.layui-table th{position:relative;padding:9px 15px;min-height:20px;line-height:20px;font-size:14px}.layui-table[lay-skin=line] td,.layui-table[lay-skin=line] th{border-width:0 0 1px}.layui-table[lay-skin=row] td,.layui-table[lay-skin=row] th{border-width:0 1px 0 0}.layui-table[lay-skin=nob] td,.layui-table[lay-skin=nob] th{border:none}.layui-table img{max-width:100px}.layui-table[lay-size=lg] td,.layui-table[lay-size=lg] th{padding:15px 30px}.layui-table-view .layui-table[lay-size=lg] .layui-table-cell{height:40px;line-height:40px}.layui-table[lay-size=sm] td,.layui-table[lay-size=sm] th{font-size:12px;padding:5px 10px}.layui-table-view .layui-table[lay-size=sm] .layui-table-cell{height:20px;line-height:20px}.layui-table[lay-data]{display:none}.layui-table-box{position:relative;overflow:hidden}.layui-table-view .layui-table{position:relative;width:auto;margin:0}.layui-table-view .layui-table[lay-skin=line]{border-width:0 1px 0 0}.layui-table-view .layui-table[lay-skin=row]{border-width:0 0 1px}.layui-table-view .layui-table td,.layui-table-view .layui-table th{padding:5px 0;border-top:none;border-left:none}.layui-table-view .layui-table th.layui-unselect .layui-table-cell span{cursor:pointer}.layui-table-view .layui-table td{cursor:default}.layui-table-view .layui-table td[data-edit=text]{cursor:text}.layui-table-view .layui-form-checkbox[lay-skin=primary] i{width:18px;height:18px}.layui-table-view .layui-form-radio{line-height:0;padding:0}.layui-table-view .layui-form-radio>i{margin:0;font-size:20px}.layui-table-init{position:absolute;left:0;top:0;width:100%;height:100%;text-align:center;z-index:110}.layui-table-init .layui-icon{position:absolute;left:50%;top:50%;margin:-15px 0 0 -15px;font-size:30px;color:#c2c2c2}.layui-table-header{border-width:0 0 1px;overflow:hidden}.layui-table-header .layui-table{margin-bottom:-1px}.layui-table-tool .layui-inline[lay-event]{position:relative;width:26px;height:26px;padding:5px;line-height:16px;margin-right:10px;text-align:center;color:#333;border:1px solid #ccc;cursor:pointer;-webkit-transition:.5s all;transition:.5s all}.layui-table-tool .layui-inline[lay-event]:hover{border:1px solid #999}.layui-table-tool-temp{padding-right:120px}.layui-table-tool-self{position:absolute;right:17px;top:10px}.layui-table-tool .layui-table-tool-self .layui-inline[lay-event]{margin:0 0 0 10px}.layui-table-tool-panel{position:absolute;top:29px;left:-1px;padding:5px 0;min-width:150px;min-height:40px;border:1px solid #d2d2d2;text-align:left;overflow-y:auto;background-color:#fff;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-table-cell,.layui-table-tool-panel li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.layui-table-tool-panel li{padding:0 10px;line-height:30px;-webkit-transition:.5s all;transition:.5s all}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary]{width:100%;padding-left:28px}.layui-table-tool-panel li:hover{background-color:#f2f2f2}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] i{position:absolute;left:0;top:0}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] span{padding:0}.layui-table-tool .layui-table-tool-self .layui-table-tool-panel{left:auto;right:-1px}.layui-table-col-set{position:absolute;right:0;top:0;width:20px;height:100%;border-width:0 0 0 1px;background-color:#fff}.layui-table-sort{width:10px;height:20px;margin-left:5px;cursor:pointer!important}.layui-table-sort .layui-edge{position:absolute;left:5px;border-width:5px}.layui-table-sort .layui-table-sort-asc{top:3px;border-top:none;border-bottom-style:solid;border-bottom-color:#b2b2b2}.layui-table-sort .layui-table-sort-asc:hover{border-bottom-color:#666}.layui-table-sort .layui-table-sort-desc{bottom:5px;border-bottom:none;border-top-style:solid;border-top-color:#b2b2b2}.layui-table-sort .layui-table-sort-desc:hover{border-top-color:#666}.layui-table-sort[lay-sort=asc] .layui-table-sort-asc{border-bottom-color:#000}.layui-table-sort[lay-sort=desc] .layui-table-sort-desc{border-top-color:#000}.layui-table-cell{height:28px;line-height:28px;padding:0 15px;position:relative;box-sizing:border-box}.layui-table-cell .layui-form-checkbox[lay-skin=primary]{top:-1px;padding:0}.layui-table-cell .layui-table-link{color:#01AAED}.laytable-cell-checkbox,.laytable-cell-numbers,.laytable-cell-radio,.laytable-cell-space{padding:0;text-align:center}.layui-table-body{position:relative;overflow:auto;margin-right:-1px;margin-bottom:-1px}.layui-table-body .layui-none{line-height:26px;padding:15px;text-align:center;color:#999}.layui-table-fixed{position:absolute;left:0;top:0;z-index:101}.layui-table-fixed .layui-table-body{overflow:hidden}.layui-table-fixed-l{box-shadow:0 -1px 8px rgba(0,0,0,.08)}.layui-table-fixed-r{left:auto;right:-1px;border-width:0 0 0 1px;box-shadow:-1px 0 8px rgba(0,0,0,.08)}.layui-table-fixed-r .layui-table-header{position:relative;overflow:visible}.layui-table-mend{position:absolute;right:-49px;top:0;height:100%;width:50px}.layui-table-tool{position:relative;z-index:890;width:100%;min-height:50px;line-height:30px;padding:10px 15px;border-width:0 0 1px}.layui-table-tool .layui-btn-container{margin-bottom:-10px}.layui-table-page,.layui-table-total{border-width:1px 0 0;margin-bottom:-1px;overflow:hidden}.layui-table-page{position:relative;width:100%;padding:7px 7px 0;height:41px;font-size:12px;white-space:nowrap}.layui-table-page>div{height:26px}.layui-table-page .layui-laypage{margin:0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span{height:26px;line-height:26px;margin-bottom:10px;border:none;background:0 0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span.layui-laypage-curr{padding:0 12px}.layui-table-page .layui-laypage span{margin-left:0;padding:0}.layui-table-page .layui-laypage .layui-laypage-prev{margin-left:-7px!important}.layui-table-page .layui-laypage .layui-laypage-curr .layui-laypage-em{left:0;top:0;padding:0}.layui-table-page .layui-laypage button,.layui-table-page .layui-laypage input{height:26px;line-height:26px}.layui-table-page .layui-laypage input{width:40px}.layui-table-page .layui-laypage button{padding:0 10px}.layui-table-page select{height:18px}.layui-table-patch .layui-table-cell{padding:0;width:30px}.layui-table-edit{position:absolute;left:0;top:0;width:100%;height:100%;padding:0 14px 1px;border-radius:0;box-shadow:1px 1px 20px rgba(0,0,0,.15)}.layui-table-edit:focus{border-color:#5FB878!important}select.layui-table-edit{padding:0 0 0 10px;border-color:#C9C9C9}.layui-table-view .layui-form-checkbox,.layui-table-view .layui-form-radio,.layui-table-view .layui-form-switch{top:0;margin:0;box-sizing:content-box}.layui-table-view .layui-form-checkbox{top:-1px;height:26px;line-height:26px}.layui-table-view .layui-form-checkbox i{height:26px}.layui-table-grid .layui-table-cell{overflow:visible}.layui-table-grid-down{position:absolute;top:0;right:0;width:26px;height:100%;padding:5px 0;border-width:0 0 0 1px;text-align:center;background-color:#fff;color:#999;cursor:pointer}.layui-table-grid-down .layui-icon{position:absolute;top:50%;left:50%;margin:-8px 0 0 -8px}.layui-table-grid-down:hover{background-color:#fbfbfb}body .layui-table-tips .layui-layer-content{background:0 0;padding:0;box-shadow:0 1px 6px rgba(0,0,0,.12)}.layui-table-tips-main{margin:-44px 0 0 -1px;max-height:150px;padding:8px 15px;font-size:14px;overflow-y:scroll;background-color:#fff;color:#666}.layui-table-tips-c{position:absolute;right:-3px;top:-13px;width:20px;height:20px;padding:3px;cursor:pointer;background-color:#666;border-radius:50%;color:#fff}.layui-table-tips-c:hover{background-color:#777}.layui-table-tips-c:before{position:relative;right:-2px}.layui-upload-file{display:none!important;opacity:.01;filter:Alpha(opacity=1)}.layui-upload-drag,.layui-upload-form,.layui-upload-wrap{display:inline-block}.layui-upload-list{margin:10px 0}.layui-upload-choose{padding:0 10px;color:#999}.layui-upload-drag{position:relative;padding:30px;border:1px dashed #e2e2e2;background-color:#fff;text-align:center;cursor:pointer;color:#999}.layui-upload-drag .layui-icon{font-size:50px;color:#009688}.layui-upload-drag[lay-over]{border-color:#009688}.layui-upload-iframe{position:absolute;width:0;height:0;border:0;visibility:hidden}.layui-upload-wrap{position:relative;vertical-align:middle}.layui-upload-wrap .layui-upload-file{display:block!important;position:absolute;left:0;top:0;z-index:10;font-size:100px;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-transfer-active,.layui-transfer-box{display:inline-block;vertical-align:middle}.layui-transfer-box,.layui-transfer-header,.layui-transfer-search{border-width:0;border-style:solid;border-color:#e6e6e6}.layui-transfer-box{position:relative;border-width:1px;width:200px;height:360px;border-radius:2px;background-color:#fff}.layui-transfer-box .layui-form-checkbox{width:100%;margin:0!important}.layui-transfer-header{height:38px;line-height:38px;padding:0 10px;border-bottom-width:1px}.layui-transfer-search{position:relative;padding:10px;border-bottom-width:1px}.layui-transfer-search .layui-input{height:32px;padding-left:30px;font-size:12px}.layui-transfer-search .layui-icon-search{position:absolute;left:20px;top:50%;margin-top:-8px;color:#666}.layui-transfer-active{margin:0 15px}.layui-transfer-active .layui-btn{display:block;margin:0;padding:0 15px;background-color:#5FB878;border-color:#5FB878;color:#fff}.layui-transfer-active .layui-btn-disabled{background-color:#FBFBFB;border-color:#e6e6e6;color:#C9C9C9}.layui-transfer-active .layui-btn:first-child{margin-bottom:15px}.layui-transfer-active .layui-btn .layui-icon{margin:0;font-size:14px!important}.layui-transfer-data{padding:5px 0;overflow:auto}.layui-transfer-data li{height:32px;line-height:32px;padding:0 10px}.layui-transfer-data li:hover{background-color:#f2f2f2;transition:.5s all}.layui-transfer-data .layui-none{padding:15px 10px;text-align:center;color:#999}.layui-nav{position:relative;padding:0 20px;background-color:#393D49;color:#fff;border-radius:2px;font-size:0;box-sizing:border-box}.layui-nav *{font-size:14px}.layui-nav .layui-nav-item{position:relative;display:inline-block;*display:inline;*zoom:1;vertical-align:middle;line-height:60px}.layui-nav .layui-nav-item a{display:block;padding:0 20px;color:#fff;color:rgba(255,255,255,.7);transition:all .3s;-webkit-transition:all .3s}.layui-nav .layui-this:after,.layui-nav-bar,.layui-nav-tree .layui-nav-itemed:after{position:absolute;left:0;top:0;width:0;height:5px;background-color:#5FB878;transition:all .2s;-webkit-transition:all .2s}.layui-nav-bar{z-index:1000}.layui-nav .layui-nav-item a:hover,.layui-nav .layui-this a{color:#fff}.layui-nav .layui-this:after{content:'';top:auto;bottom:0;width:100%}.layui-nav-img{width:30px;height:30px;margin-right:10px;border-radius:50%}.layui-nav .layui-nav-more{content:'';width:0;height:0;border-style:solid dashed dashed;border-color:#fff transparent transparent;overflow:hidden;cursor:pointer;transition:all .2s;-webkit-transition:all .2s;position:absolute;top:50%;right:3px;margin-top:-3px;border-width:6px;border-top-color:rgba(255,255,255,.7)}.layui-nav .layui-nav-mored,.layui-nav-itemed>a .layui-nav-more{margin-top:-9px;border-style:dashed dashed solid;border-color:transparent transparent #fff}.layui-nav-child{display:none;position:absolute;left:0;top:65px;min-width:100%;line-height:36px;padding:5px 0;box-shadow:0 2px 4px rgba(0,0,0,.12);border:1px solid #d2d2d2;background-color:#fff;z-index:100;border-radius:2px;white-space:nowrap}.layui-nav .layui-nav-child a{color:#333}.layui-nav .layui-nav-child a:hover{background-color:#f2f2f2;color:#000}.layui-nav-child dd{position:relative}.layui-nav .layui-nav-child dd.layui-this a,.layui-nav-child dd.layui-this{background-color:#5FB878;color:#fff}.layui-nav-child dd.layui-this:after{display:none}.layui-nav-tree{width:200px;padding:0}.layui-nav-tree .layui-nav-item{display:block;width:100%;line-height:45px}.layui-nav-tree .layui-nav-item a{position:relative;height:45px;line-height:45px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-nav-tree .layui-nav-item a:hover{background-color:#4E5465}.layui-nav-tree .layui-nav-bar{width:5px;height:0;background-color:#009688}.layui-nav-tree .layui-nav-child dd.layui-this,.layui-nav-tree .layui-nav-child dd.layui-this a,.layui-nav-tree .layui-this,.layui-nav-tree .layui-this>a,.layui-nav-tree .layui-this>a:hover{background-color:#009688;color:#fff}.layui-nav-tree .layui-this:after{display:none}.layui-nav-itemed>a,.layui-nav-tree .layui-nav-title a,.layui-nav-tree .layui-nav-title a:hover{color:#fff!important}.layui-nav-tree .layui-nav-child{position:relative;z-index:0;top:0;border:none;box-shadow:none}.layui-nav-tree .layui-nav-child a{height:40px;line-height:40px;color:#fff;color:rgba(255,255,255,.7)}.layui-nav-tree .layui-nav-child,.layui-nav-tree .layui-nav-child a:hover{background:0 0;color:#fff}.layui-nav-tree .layui-nav-more{right:10px}.layui-nav-itemed>.layui-nav-child{display:block;padding:0;background-color:rgba(0,0,0,.3)!important}.layui-nav-itemed>.layui-nav-child>.layui-this>.layui-nav-child{display:block}.layui-nav-side{position:fixed;top:0;bottom:0;left:0;overflow-x:hidden;z-index:999}.layui-bg-blue .layui-nav-bar,.layui-bg-blue .layui-nav-itemed:after,.layui-bg-blue .layui-this:after{background-color:#93D1FF}.layui-bg-blue .layui-nav-child dd.layui-this{background-color:#1E9FFF}.layui-bg-blue .layui-nav-itemed>a,.layui-nav-tree.layui-bg-blue .layui-nav-title a,.layui-nav-tree.layui-bg-blue .layui-nav-title a:hover{background-color:#007DDB!important}.layui-breadcrumb{font-size:0}.layui-breadcrumb>*{font-size:14px}.layui-breadcrumb a{color:#999!important}.layui-breadcrumb a:hover{color:#5FB878!important}.layui-breadcrumb a cite{color:#666;font-style:normal}.layui-breadcrumb span[lay-separator]{margin:0 10px;color:#999}.layui-tab{margin:10px 0;text-align:left!important}.layui-tab[overflow]>.layui-tab-title{overflow:hidden}.layui-tab-title{position:relative;left:0;height:40px;white-space:nowrap;font-size:0;border-bottom-width:1px;border-bottom-style:solid;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;font-size:14px;transition:all .2s;-webkit-transition:all .2s;position:relative;line-height:40px;min-width:65px;padding:0 15px;text-align:center;cursor:pointer}.layui-tab-title li a{display:block}.layui-tab-title .layui-this{color:#000}.layui-tab-title .layui-this:after{position:absolute;left:0;top:0;content:'';width:100%;height:41px;border-width:1px;border-style:solid;border-bottom-color:#fff;border-radius:2px 2px 0 0;box-sizing:border-box;pointer-events:none}.layui-tab-bar{position:absolute;right:0;top:0;z-index:10;width:30px;height:39px;line-height:39px;border-width:1px;border-style:solid;border-radius:2px;text-align:center;background-color:#fff;cursor:pointer}.layui-tab-bar .layui-icon{position:relative;display:inline-block;top:3px;transition:all .3s;-webkit-transition:all .3s}.layui-tab-item{display:none}.layui-tab-more{padding-right:30px;height:auto!important;white-space:normal!important}.layui-tab-more li.layui-this:after{border-bottom-color:#e2e2e2;border-radius:2px}.layui-tab-more .layui-tab-bar .layui-icon{top:-2px;top:3px\9;-webkit-transform:rotate(180deg);transform:rotate(180deg)}:root .layui-tab-more .layui-tab-bar .layui-icon{top:-2px\0/IE9}.layui-tab-content{padding:10px}.layui-tab-title li .layui-tab-close{position:relative;display:inline-block;width:18px;height:18px;line-height:20px;margin-left:8px;top:1px;text-align:center;font-size:14px;color:#c2c2c2;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li .layui-tab-close:hover{border-radius:2px;background-color:#FF5722;color:#fff}.layui-tab-brief>.layui-tab-title .layui-this{color:#009688}.layui-tab-brief>.layui-tab-more li.layui-this:after,.layui-tab-brief>.layui-tab-title .layui-this:after{border:none;border-radius:0;border-bottom:2px solid #5FB878}.layui-tab-brief[overflow]>.layui-tab-title .layui-this:after{top:-1px}.layui-tab-card{border-width:1px;border-style:solid;border-radius:2px;box-shadow:0 2px 5px 0 rgba(0,0,0,.1)}.layui-tab-card>.layui-tab-title{background-color:#f2f2f2}.layui-tab-card>.layui-tab-title li{margin-right:-1px;margin-left:-1px}.layui-tab-card>.layui-tab-title .layui-this{background-color:#fff}.layui-tab-card>.layui-tab-title .layui-this:after{border-top:none;border-width:1px;border-bottom-color:#fff}.layui-tab-card>.layui-tab-title .layui-tab-bar{height:40px;line-height:40px;border-radius:0;border-top:none;border-right:none}.layui-tab-card>.layui-tab-more .layui-this{background:0 0;color:#5FB878}.layui-tab-card>.layui-tab-more .layui-this:after{border:none}.layui-timeline{padding-left:5px}.layui-timeline-item{position:relative;padding-bottom:20px}.layui-timeline-axis{position:absolute;left:-5px;top:0;z-index:10;width:20px;height:20px;line-height:20px;background-color:#fff;color:#5FB878;border-radius:50%;text-align:center;cursor:pointer}.layui-timeline-axis:hover{color:#FF5722}.layui-timeline-item:before{content:'';position:absolute;left:5px;top:0;z-index:0;width:1px;height:100%}.layui-timeline-item:last-child:before{display:none}.layui-timeline-item:first-child:before{display:block}.layui-timeline-content{padding-left:25px}.layui-timeline-title{position:relative;margin-bottom:10px}.layui-badge,.layui-badge-dot,.layui-badge-rim{position:relative;display:inline-block;padding:0 6px;font-size:12px;text-align:center;background-color:#FF5722;color:#fff;border-radius:2px}.layui-badge{height:18px;line-height:18px}.layui-badge-dot{width:8px;height:8px;padding:0;border-radius:50%}.layui-badge-rim{height:18px;line-height:18px;border-width:1px;border-style:solid;background-color:#fff;color:#666}.layui-btn .layui-badge,.layui-btn .layui-badge-dot{margin-left:5px}.layui-nav .layui-badge,.layui-nav .layui-badge-dot{position:absolute;top:50%;margin:-8px 6px 0}.layui-tab-title .layui-badge,.layui-tab-title .layui-badge-dot{left:5px;top:-2px}.layui-carousel{position:relative;left:0;top:0;background-color:#f8f8f8}.layui-carousel>[carousel-item]{position:relative;width:100%;height:100%;overflow:hidden}.layui-carousel>[carousel-item]:before{position:absolute;content:'\e63d';left:50%;top:50%;width:100px;line-height:20px;margin:-10px 0 0 -50px;text-align:center;color:#c2c2c2;font-family:layui-icon!important;font-size:30px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-carousel>[carousel-item]>*{display:none;position:absolute;left:0;top:0;width:100%;height:100%;background-color:#f8f8f8;transition-duration:.3s;-webkit-transition-duration:.3s}.layui-carousel-updown>*{-webkit-transition:.3s ease-in-out up;transition:.3s ease-in-out up}.layui-carousel-arrow{display:none\9;opacity:0;position:absolute;left:10px;top:50%;margin-top:-18px;width:36px;height:36px;line-height:36px;text-align:center;font-size:20px;border:0;border-radius:50%;background-color:rgba(0,0,0,.2);color:#fff;-webkit-transition-duration:.3s;transition-duration:.3s;cursor:pointer}.layui-carousel-arrow[lay-type=add]{left:auto!important;right:10px}.layui-carousel:hover .layui-carousel-arrow[lay-type=add],.layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add]{right:20px}.layui-carousel[lay-arrow=always] .layui-carousel-arrow{opacity:1;left:20px}.layui-carousel[lay-arrow=none] .layui-carousel-arrow{display:none}.layui-carousel-arrow:hover,.layui-carousel-ind ul:hover{background-color:rgba(0,0,0,.35)}.layui-carousel:hover .layui-carousel-arrow{display:block\9;opacity:1;left:20px}.layui-carousel-ind{position:relative;top:-35px;width:100%;line-height:0!important;text-align:center;font-size:0}.layui-carousel[lay-indicator=outside]{margin-bottom:30px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind{top:10px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind ul{background-color:rgba(0,0,0,.5)}.layui-carousel[lay-indicator=none] .layui-carousel-ind{display:none}.layui-carousel-ind ul{display:inline-block;padding:5px;background-color:rgba(0,0,0,.2);border-radius:10px;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li{display:inline-block;width:10px;height:10px;margin:0 3px;font-size:14px;background-color:#e2e2e2;background-color:rgba(255,255,255,.5);border-radius:50%;cursor:pointer;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li:hover{background-color:rgba(255,255,255,.7)}.layui-carousel-ind li.layui-this{background-color:#fff}.layui-carousel>[carousel-item]>.layui-carousel-next,.layui-carousel>[carousel-item]>.layui-carousel-prev,.layui-carousel>[carousel-item]>.layui-this{display:block}.layui-carousel>[carousel-item]>.layui-this{left:0}.layui-carousel>[carousel-item]>.layui-carousel-prev{left:-100%}.layui-carousel>[carousel-item]>.layui-carousel-next{left:100%}.layui-carousel>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel>[carousel-item]>.layui-carousel-prev.layui-carousel-right{left:0}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-left{left:-100%}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-right{left:100%}.layui-carousel[lay-anim=updown] .layui-carousel-arrow{left:50%!important;top:20px;margin:0 0 0 -18px}.layui-carousel[lay-anim=updown]>[carousel-item]>*,.layui-carousel[lay-anim=fade]>[carousel-item]>*{left:0!important}.layui-carousel[lay-anim=updown] .layui-carousel-arrow[lay-type=add]{top:auto!important;bottom:20px}.layui-carousel[lay-anim=updown] .layui-carousel-ind{position:absolute;top:50%;right:20px;width:auto;height:auto}.layui-carousel[lay-anim=updown] .layui-carousel-ind ul{padding:3px 5px}.layui-carousel[lay-anim=updown] .layui-carousel-ind li{display:block;margin:6px 0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next{top:100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-left{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-right{top:100%}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev{opacity:0}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{opacity:1}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-right{opacity:0}.layui-fixbar{position:fixed;right:15px;bottom:15px;z-index:999999}.layui-fixbar li{width:50px;height:50px;line-height:50px;margin-bottom:1px;text-align:center;cursor:pointer;font-size:30px;background-color:#9F9F9F;color:#fff;border-radius:2px;opacity:.95}.layui-fixbar li:hover{opacity:.85}.layui-fixbar li:active{opacity:1}.layui-fixbar .layui-fixbar-top{display:none;font-size:40px}body .layui-util-face{border:none;background:0 0}body .layui-util-face .layui-layer-content{padding:0;background-color:#fff;color:#666;box-shadow:none}.layui-util-face .layui-layer-TipsG{display:none}.layui-util-face ul{position:relative;width:372px;padding:10px;border:1px solid #D9D9D9;background-color:#fff;box-shadow:0 0 20px rgba(0,0,0,.2)}.layui-util-face ul li{cursor:pointer;float:left;border:1px solid #e8e8e8;height:22px;width:26px;overflow:hidden;margin:-1px 0 0 -1px;padding:4px 2px;text-align:center}.layui-util-face ul li:hover{position:relative;z-index:2;border:1px solid #eb7350;background:#fff9ec}.layui-code{position:relative;margin:10px 0;padding:15px;line-height:20px;border:1px solid #ddd;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New;font-size:12px}.layui-rate,.layui-rate *{display:inline-block;vertical-align:middle}.layui-rate{padding:10px 5px 10px 0;font-size:0}.layui-rate li i.layui-icon{font-size:20px;color:#FFB800;margin-right:5px;transition:all .3s;-webkit-transition:all .3s}.layui-rate li i:hover{cursor:pointer;transform:scale(1.12);-webkit-transform:scale(1.12)}.layui-rate[readonly] li i:hover{cursor:default;transform:scale(1)}.layui-colorpicker{width:26px;height:26px;border:1px solid #e6e6e6;padding:5px;border-radius:2px;line-height:24px;display:inline-block;cursor:pointer;transition:all .3s;-webkit-transition:all .3s}.layui-colorpicker:hover{border-color:#d2d2d2}.layui-colorpicker.layui-colorpicker-lg{width:34px;height:34px;line-height:32px}.layui-colorpicker.layui-colorpicker-sm{width:24px;height:24px;line-height:22px}.layui-colorpicker.layui-colorpicker-xs{width:22px;height:22px;line-height:20px}.layui-colorpicker-trigger-bgcolor{display:block;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);border-radius:2px}.layui-colorpicker-trigger-span{display:block;height:100%;box-sizing:border-box;border:1px solid rgba(0,0,0,.15);border-radius:2px;text-align:center}.layui-colorpicker-trigger-i{display:inline-block;color:#FFF;font-size:12px}.layui-colorpicker-trigger-i.layui-icon-close{color:#999}.layui-colorpicker-main{position:absolute;z-index:66666666;width:280px;padding:7px;background:#FFF;border:1px solid #d2d2d2;border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-colorpicker-main-wrapper{height:180px;position:relative}.layui-colorpicker-basis{width:260px;height:100%;position:relative}.layui-colorpicker-basis-white{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(90deg,#FFF,hsla(0,0%,100%,0))}.layui-colorpicker-basis-black{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(0deg,#000,transparent)}.layui-colorpicker-basis-cursor{width:10px;height:10px;border:1px solid #FFF;border-radius:50%;position:absolute;top:-3px;right:-3px;cursor:pointer}.layui-colorpicker-side{position:absolute;top:0;right:0;width:12px;height:100%;background:linear-gradient(red,#FF0,#0F0,#0FF,#00F,#F0F,red)}.layui-colorpicker-side-slider{width:100%;height:5px;box-shadow:0 0 1px #888;box-sizing:border-box;background:#FFF;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;left:0}.layui-colorpicker-main-alpha{display:none;height:12px;margin-top:7px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-alpha-bgcolor{height:100%;position:relative}.layui-colorpicker-alpha-slider{width:5px;height:100%;box-shadow:0 0 1px #888;box-sizing:border-box;background:#FFF;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;top:0}.layui-colorpicker-main-pre{padding-top:7px;font-size:0}.layui-colorpicker-pre{width:20px;height:20px;border-radius:2px;display:inline-block;margin-left:6px;margin-bottom:7px;cursor:pointer}.layui-colorpicker-pre:nth-child(11n+1){margin-left:0}.layui-colorpicker-pre-isalpha{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-pre.layui-this{box-shadow:0 0 3px 2px rgba(0,0,0,.15)}.layui-colorpicker-pre>div{height:100%;border-radius:2px}.layui-colorpicker-main-input{text-align:right;padding-top:7px}.layui-colorpicker-main-input .layui-btn-container .layui-btn{margin:0 0 0 10px}.layui-colorpicker-main-input div.layui-inline{float:left;margin-right:10px;font-size:14px}.layui-colorpicker-main-input input.layui-input{width:150px;height:30px;color:#666}.layui-slider{height:4px;background:#e2e2e2;border-radius:3px;position:relative;cursor:pointer}.layui-slider-bar{border-radius:3px;position:absolute;height:100%}.layui-slider-step{position:absolute;top:0;width:4px;height:4px;border-radius:50%;background:#FFF;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.layui-slider-wrap{width:36px;height:36px;position:absolute;top:-16px;-webkit-transform:translateX(-50%);transform:translateX(-50%);z-index:10;text-align:center}.layui-slider-wrap-btn{width:12px;height:12px;border-radius:50%;background:#FFF;display:inline-block;vertical-align:middle;cursor:pointer;transition:.3s}.layui-slider-wrap:after{content:"";height:100%;display:inline-block;vertical-align:middle}.layui-slider-wrap-btn.layui-slider-hover,.layui-slider-wrap-btn:hover{transform:scale(1.2)}.layui-slider-wrap-btn.layui-disabled:hover{transform:scale(1)!important}.layui-slider-tips{position:absolute;top:-42px;z-index:66666666;white-space:nowrap;display:none;-webkit-transform:translateX(-50%);transform:translateX(-50%);color:#FFF;background:#000;border-radius:3px;height:25px;line-height:25px;padding:0 10px}.layui-slider-tips:after{content:'';position:absolute;bottom:-12px;left:50%;margin-left:-6px;width:0;height:0;border-width:6px;border-style:solid;border-color:#000 transparent transparent}.layui-slider-input{width:70px;height:32px;border:1px solid #e6e6e6;border-radius:3px;font-size:16px;line-height:32px;position:absolute;right:0;top:-15px}.layui-slider-input-btn{display:none;position:absolute;top:0;right:0;width:20px;height:100%;border-left:1px solid #d2d2d2}.layui-slider-input-btn i{cursor:pointer;position:absolute;right:0;bottom:0;width:20px;height:50%;font-size:12px;line-height:16px;text-align:center;color:#999}.layui-slider-input-btn i:first-child{top:0;border-bottom:1px solid #d2d2d2}.layui-slider-input-txt{height:100%;font-size:14px}.layui-slider-input-txt input{height:100%;border:none}.layui-slider-input-btn i:hover{color:#009688}.layui-slider-vertical{width:4px;margin-left:34px}.layui-slider-vertical .layui-slider-bar{width:4px}.layui-slider-vertical .layui-slider-step{top:auto;left:0;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-wrap{top:auto;left:-16px;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-tips{top:auto;left:2px}@media \0screen{.layui-slider-wrap-btn{margin-left:-20px}.layui-slider-vertical .layui-slider-wrap-btn{margin-left:0;margin-bottom:-20px}.layui-slider-vertical .layui-slider-tips{margin-left:-8px}.layui-slider>span{margin-left:8px}}.layui-tree{line-height:22px}.layui-tree .layui-form-checkbox{margin:0!important}.layui-tree-set{width:100%;position:relative}.layui-tree-pack{display:none;padding-left:20px;position:relative}.layui-tree-iconClick,.layui-tree-main{display:inline-block;vertical-align:middle}.layui-tree-line .layui-tree-pack{padding-left:27px}.layui-tree-line .layui-tree-set .layui-tree-set:after{content:'';position:absolute;top:14px;left:-9px;width:17px;height:0;border-top:1px dotted #c0c4cc}.layui-tree-entry{position:relative;padding:3px 0;height:20px;white-space:nowrap}.layui-tree-entry:hover{background-color:#eee}.layui-tree-line .layui-tree-entry:hover{background-color:rgba(0,0,0,0)}.layui-tree-line .layui-tree-entry:hover .layui-tree-txt{color:#999;text-decoration:underline;transition:.3s}.layui-tree-main{cursor:pointer;padding-right:10px}.layui-tree-line .layui-tree-set:before{content:'';position:absolute;top:0;left:-9px;width:0;height:100%;border-left:1px dotted #c0c4cc}.layui-tree-line .layui-tree-set.layui-tree-setLineShort:before{height:13px}.layui-tree-line .layui-tree-set.layui-tree-setHide:before{height:0}.layui-tree-iconClick{position:relative;height:20px;line-height:20px;margin:0 10px;color:#c0c4cc}.layui-tree-icon{height:12px;line-height:12px;width:12px;text-align:center;border:1px solid #c0c4cc}.layui-tree-iconClick .layui-icon{font-size:18px}.layui-tree-icon .layui-icon{font-size:12px;color:#666}.layui-tree-iconArrow{padding:0 5px}.layui-tree-iconArrow:after{content:'';position:absolute;left:4px;top:3px;z-index:100;width:0;height:0;border-width:5px;border-style:solid;border-color:transparent transparent transparent #c0c4cc;transition:.5s}.layui-tree-btnGroup,.layui-tree-editInput{position:relative;vertical-align:middle;display:inline-block}.layui-tree-spread>.layui-tree-entry>.layui-tree-iconClick>.layui-tree-iconArrow:after{transform:rotate(90deg) translate(3px,4px)}.layui-tree-txt{display:inline-block;vertical-align:middle;color:#555}.layui-tree-search{margin-bottom:15px;color:#666}.layui-tree-btnGroup .layui-icon{display:inline-block;vertical-align:middle;padding:0 2px;cursor:pointer}.layui-tree-btnGroup .layui-icon:hover{color:#999;transition:.3s}.layui-tree-entry:hover .layui-tree-btnGroup{visibility:visible}.layui-tree-editInput{height:20px;line-height:20px;padding:0 3px;border:none;background-color:rgba(0,0,0,.05)}.layui-tree-emptyText{text-align:center;color:#999}.layui-anim{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.layui-anim.layui-icon{display:inline-block}.layui-anim-loop{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.layui-trans,.layui-trans a{transition:all .3s;-webkit-transition:all .3s}@-webkit-keyframes layui-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}@keyframes layui-rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}.layui-anim-rotate{-webkit-animation-name:layui-rotate;animation-name:layui-rotate;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes layui-up{from{-webkit-transform:translate3d(0,100%,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-up{from{transform:translate3d(0,100%,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-up{-webkit-animation-name:layui-up;animation-name:layui-up}@-webkit-keyframes layui-upbit{from{-webkit-transform:translate3d(0,30px,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-upbit{from{transform:translate3d(0,30px,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-upbit{-webkit-animation-name:layui-upbit;animation-name:layui-upbit}@-webkit-keyframes layui-scale{0%{opacity:.3;-webkit-transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale{0%{opacity:.3;-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-ms-transform:scale(1);transform:scale(1)}}.layui-anim-scale{-webkit-animation-name:layui-scale;animation-name:layui-scale}@-webkit-keyframes layui-scale-spring{0%{opacity:.5;-webkit-transform:scale(.5)}80%{opacity:.8;-webkit-transform:scale(1.1)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale-spring{0%{opacity:.5;transform:scale(.5)}80%{opacity:.8;transform:scale(1.1)}100%{opacity:1;transform:scale(1)}}.layui-anim-scaleSpring{-webkit-animation-name:layui-scale-spring;animation-name:layui-scale-spring}@-webkit-keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}@keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}.layui-anim-fadein{-webkit-animation-name:layui-fadein;animation-name:layui-fadein}@-webkit-keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}@keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}.layui-anim-fadeout{-webkit-animation-name:layui-fadeout;animation-name:layui-fadeout}
\ No newline at end of file
diff --git a/personcentor/src/main/resources/static/css/main.css b/personcentor/src/main/resources/static/css/main.css
deleted file mode 100644
index 8b781bded07d76b3d70721a584ef3e947d84b2d3..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/main.css
+++ /dev/null
@@ -1,2314 +0,0 @@
-@charset "utf-8";
-/* CSS Document */
-
-
-html {
- font-size: 62.5%
-}
-@media screen and (min-width:375px) {
- html {
- font-size:73.24%
- }
-}
-@media screen and (min-width:414px) {
- html {
- font-size:73.24%
- }
-}
-@media screen and (min-width:481px) {
- html {
- font-size:94%
- }
-}
-@media screen and (min-width:561px) {
- html {
- font-size:109%
- }
-}
-@media screen and (min-width:641px) {
- html {
- font-size:125%
- }
-}
-body{
- background-color: #f3f3f3 !important;
-}
-.warpe {
- margin: 0 auto;
- min-width: 320px;
- max-width: 640px;
- min-height: 500px;
- font-family: "Microsoft YaHei", Arial, "Helvetica";
- color: #333;
- font-size: 1.4rem;
- position: relative;
- background: url("../img/bg.jpg") no-repeat !important;
- background-size: 100% 100% !important;
- padding-bottom: 4rem;
-}
-.main{
- height: auto;
- overflow: hidden;
- padding: 1rem;
- background-color: #fff;
- }
-.banner{
- position:relative;
- height: auto;
- overflow: hidden;
- }
-.banner img{
- width: 100%;
- }
-/*幻灯*/
-.swipe {
- width: 100%;
- overflow: hidden;
- position: relative;
- margin:0 auto;
-}
-.swipe a, .swipe img {
- border: 0;
- display: block;
-}
-.swipe ul {
- -webkit-transition: left 800ms ease-in 0;
- -moz-transition: left 800ms ease-in 0;
- transition: left 800ms ease-in 0
-}
-.swipe ul li {
- display: none
-}
-.swipe ul li img {
- width:100%;
-}
-.swipe #pagenavi {
- width:100%;
- position: absolute;
- bottom: 2px;
- text-align:center;
- overflow:hidden;
- left: 0;
-}
-.swipe #pagenavi a {
- width: .7rem;
- height: .7rem;
- line-height: 99em;
- background: #fff;
- -webkit-border-radius: 50%;
- -moz-border-radius: 50%;
- border-radius: 50%;
- margin: 0;
- overflow: hidden;
- cursor: pointer;
- display: inline-block;
- opacity: .5;
-}
-.swipe #pagenavi a.active {
- background: #fff;
- opacity:1;
-}
-.title{
- height:4rem;
- line-height: 4rem;
- padding: 0rem 1rem;
- background-color: #fff;
- font-size: 1.3rem;
-}
-.title i{
- font-size: 1.8rem;
-}
-.id_nav{
- height: auto;
- overflow: hidden;
- background-color: #fff;
- margin-top: 1rem;
- width: 100%;
- border-bottom: .1rem #ededed solid;
-}
-.id_nav_l{
- width: 40%;
- text-align: center;
- border-right: .1rem #ededed solid;
- padding: 5% 0%;
-}
-.id_nav_l img{
- width: 100%;
- -webkit-animation-delay: 1s; //动画延迟时间
-}
-.id_nav_l span{
- display: block;
- width: 50%;
- margin: 0 auto;
- margin-top: 1rem;
-}
-.id_nav_l a p{
- color: #e6202f;
-}
-.id_nav_r{
- width: 59%;
-}
-.id_nav_rt{
- position: relative;
- border-bottom: .1rem #ededed solid;
- padding: 5% 0%;
- padding-left: 5%;
- line-height:2rem;
- font-size: 1.2rem;
-}
-.id_nav_rt img{
- position: absolute;
- height: 2.5rem;
- top: 1.5rem;
- right: 5%;
-}
-.id_nav_rt a p{
- color: #67c148;
-}
-.id_nav_rt a span{
- color: #888;
-}
-.nav{
- background-color: #fff;
- margin-top: 1rem;
- height: auto;
- overflow: hidden;
- padding-bottom: 2rem;
-}
-.nav ul li{
- width: 15%;
- float: left;
- margin-left: 8%;
- font-size: 1.2rem;
- text-align: center;
- margin-top: 2rem;
- line-height:1.5rem;
-}
-.nav ul li a{
- color: #8b8b8b;
-}
-.nav ul li img{
- width: 100%;
- -webkit-animation-delay: 1.5s; //动画延迟时间;
- -webkit-animation-duration: 2s;
-}
-.center{
- height:auto;
- overflow: hidden;
- background-color: #fff;
- margin-top: 1rem;
- padding: 1rem 0rem;
- font-size: 1.4rem;
- line-height:2rem;
-}
-.picbg{
- float: left;
- height: 1.5rem;
- width: 1rem;
- background-color: #ff9813;
- margin-right: .5rem;
- border-radius: 0px .75rem .75rem 0px;
- position: relative;
- top: .2rem;
-}
-.pictitle a{
- margin-right: 1rem;
- color: #b6b6b6;
-}
-.bannerside{
- margin-top: 1rem;
-}
-.bannerside img{
- width: 100%;
-}
-.id_bth a{
- display: block;
- width: 90%;
- height: 3rem;
- line-height:3rem;
- font-size: 1.4rem;
- margin: 0 auto;
- background-color: #f3f3f3;
- text-align: center;
- border-radius: 2rem;
- color: #0b8bab;
- margin-bottom: 1rem;
-}
-.navside{
- height:4rem;
- width: 100%;
- background-color: #fff;
- padding-top: .5rem;
- border-top: .1rem #ededed solid;
- position: fixed;
- bottom: 0rem;
- z-index: 100;
-}
-.navside ul li{
- font-size: 1.2rem;
- float: left;
- text-align: center;
- width: 16%;
- margin-left: 5%;
- line-height:1rem;
-}
-.navside ul li a{
- display: block;
- color: #838383;
-}
-.navside ul li a p{
- font-size: 2rem;
- margin-bottom: .5rem;
-}
-.navside_hover{
- color: #e67c3c !important;
-}
-.head{
- height:5rem;
- line-height: 5rem;
- text-align: center;
- background-color: #182e4c;
- color: #fff;
- position: relative;
- font-size: 1.8rem;
-}
-.return{
- font-size: 1.6rem;
- color: #fff;
- position: absolute;
- left: 1rem;
- top: 0rem;
-}
-.plus{
- color: #fff;
- position: absolute;
- right: 4rem;
-}
-.search{
- color: #fff;
- position: absolute;
- right: 1rem;
-}
-.my_tab{
- height:4rem;
- line-height: 4rem;
- width: 100%;
- border-bottom: .1rem #b1b1b1 solid;
- background-color: #fff;
- position: relative;
- z-index: 100;
-}
-.my_tab a{
- float: left;
- width: 50%;
- text-align: center;
- height:3.8rem;
- font-size: 1.5rem;
- color: #000;
-}
-.my_tab a.active{
- color: #ff8400 !important;
- border-bottom: .2rem #ff8400 solid;
-}
-.interest_list{
- height:auto;
- overflow: hidden;
- padding:1rem;
-}
-.interest_list ul li{
- font-size: 1.2rem;
- border-bottom: .1rem #ededed solid;
- padding-bottom: 1.5rem;
- margin-top: 1.5rem;
- position: relative;
- -webkit-animation-duration: 2s;
-}
-.interest_list a img{
- width: 4rem;
- height:4rem;
- display: inline-block;
- border-radius: 1rem;
- float: left;
- margin-right: .5rem;
-}
-.list_r{
- line-height: 2rem;
-}
-.interest_list a {
- color: #000;
-}
-.list_r p{
- color: #666;
-}
-.list_r p span{
- margin-right: 1rem;
- color: #000;
-}
-.list_r i{
- font-size: 3rem;
- position: absolute;
- right: 0rem;
- top: .5rem;
- color: #999;
-}
-.inter_txt{
- padding:1rem;
- color: #666;
- font-size: 1.2rem;
- line-height:2rem;
- -webkit-animation-delay: 3s;
-}
-.inter_txt p a{
- display: block;
- width: 2rem;
- height:2rem;
- font-size: 2rem;
- color: #9f9e9c;
- line-height:1.8rem;
- text-align: center;
- border-radius: 50%;
- background-color: #f0f0f0;
- margin-top: .5rem;
- border: .08rem #9f9e9c solid;
-}
-.hot_list{
- padding: 1rem;
- height: auto;
- overflow: hidden;
- border-bottom: 1rem #f3f3f3 solid;
-}
-.hottxt{
- font-size: 1.4rem;
-}
-.hot_list ul li{
- width: 25%;
- float: left;
- margin-top: 1rem;
- text-align: center;
- font-size: 1.4rem;
- margin-left: 12%;
-}
-.hot_list ul li p img{
- width: 100%;
- height:7rem;
- border-radius: 2rem;
- display: block;
- margin-bottom: .5rem;
-}
-.hot_list ul li a{
- display: block;
- color: #666;
-}
-.searchall{
- padding:1rem;
- height:2rem;
- background-color: #ededed;
-}
-.searchall_l{
- float: left;
- width: 95%;
- position: absolute;
-}
-.searchall_l input{
- height:2rem;
- line-height:2rem;
- width: 80%;
- border-radius: 1rem;
- border: none;
- font-size: 1.2rem;
- text-indent: 3rem;
- color: #999;
- float: left;
-}
-.searchall_l i{
- font-size: 1.6rem;
- color: #aaaaaa;
- position: absolute;
- top: .4rem;
- left: 1rem;
-}
-.searchall_l a{
- font-size: 1.6rem;
- color: #666;
- line-height: 2rem;
- margin-left: .5rem;
-}
-.search_txt{
- padding: 1rem;
- font-size: 1.4rem;
-}
-.search_t{
- height:3rem;
- line-height: 3rem;
- color: #666;
- border-bottom: .1rem #ededed solid;
-}
-.search_list ul li{
- float: left;
- padding: .5rem 1rem;
- margin-left: 1rem;
- margin-top: 1rem;
- border: .1rem #ff8400 solid;
- border-radius: 1rem;
- -webkit-animation-delay: 1s;
-}
-.search_list ul li a{
- display: block;
- color: #ff8400;
-}
-.inter_add{
- padding:0rem 1rem;
- height: auto;
- overflow: hidden;
- background-color: #fff;
- margin-bottom: 1rem;
-}
-.inter_add ul li{
- padding:1.2rem 0rem;
- border-bottom: .1rem #EFEFEF solid;
- font-size: 1.4rem;
- height:auto;
- overflow: hidden;
- position: relative;
- padding-right: 2rem;
-}
-.inter_add ul li a{
- display: block;
- color: #666;
-}
-.inter_add ul li a i{
- font-size: 2rem;
- position: absolute;
- top: 1.2rem;
- right: 0rem;
-}
-.inter_add ul li span font{
- font-size: 1.2rem;
- color: #999;
-}
-.inter_add ul li span img{
- display: block;
- width: 2rem;
- height:2rem;
- border-radius: .5rem;
-}
-.xqtitle{
- padding:1rem;
- height:auto;
- overflow: hidden;
- background-color: #fff;
- font-size: 1.4rem;
- line-height:1.8rem;
- margin-bottom: 1rem;
-}
-.xqtitle_tl{
- float: left;
-}
-.xqtitle_tl img{
- width: 6rem;
- height:6rem;
- display: block;
- border-radius: 1rem;
-}
-.xqtitle_tr{
- float: left;
- margin-left: 1rem;
-}
-.xqtitle_tr p span{
- font-size: 1.2rem;
- margin-right: 1rem;
-}
-.xqtitle_tr p a{
- padding: .2rem 1rem;
- color: #ff5400;
- background-color: #f6f6f6;
- border: .1rem #f3f3f3 solid;
- border-radius: 1rem;
- margin-top: .5rem;
- display: inline-block;
-}
-.postall{
- height:auto;
- overflow: hidden;
- margin-top: 1rem;
- padding-bottom:1rem;
- font-size: 1.2rem;
- border-bottom: .1rem #ededed solid;
-}
-.postall a{
- display: block;
- color: #949494;
-}
-.post_t img{
- width: 2rem;
- height:2rem;
- border-radius: .5rem;
- margin-right: .5rem;
-}
-.post_t span{
- position: relative;
- top:-.5rem;
-}
-.post_m{
- font-size: 1.2rem;
- color: #333;
- line-height: 1.5rem;
- margin-top: .5rem;
- clear: both;
- height:auto;
- overflow: hidden;
-}
-.post_m_l {
- font-size: 1.2rem;
- color: #333;
- line-height: 1.6rem;
- margin-top: .5rem;
- clear: both;
- max-height: 5rem;
- overflow: hidden;
-}
-.postimg_list li{
- float: left;
- width: 50%;
- position: relative;
- height:6rem;
-}
-.post_img li img{
- width: 90% !important;
- height: 100%;
- position: absolute;
- left: 50%;
- top: 50%;
- -webkit-transform: translate(-50%,-50%);
- -ms-transform: translate(-50%,-50%);
- -moz-transform: translate(-50%,-50%);
-}
-.post_img{
- height: auto;
- overflow: hidden;
- margin-top: .5rem;
-}
-.post_b span label{
- margin-left: 1rem;
-}
-.post_b{
- margin-top: 1rem;
- height: auto;
- overflow: hidden;
-}
-.postimg_list2 li{
- float: left;
- width: 25%;
- position: relative;
- height:6rem;
-}
-.postinput{
- height:3rem;
- padding: .5rem;
- background-color: #fff;
- border-top: .1rem #ededed solid;
- width: 100%;
- position: fixed;
- bottom: 0rem;
- font-size: 1.4rem;
-}
-.postinput input{
- width: 70%;
- height:2rem;
- border: .1rem #ededed solid;
- border-radius: 1rem;
- line-height:2rem;
- color: #999;
- text-indent: 1em;
- float: left;
-}
-.postinput a{
- float: left;
- width: 11%;
- height: 2rem;
- margin-left: 2%;
-}
-.postinput a i{
- color: #109DCD;
- font-size: 2rem;
- position: relative;
- top: .3rem;
-}
-.postinput a img{
- height: 100%;
-}
-.post_user{
- padding:1rem 0rem;
- height:auto;
- overflow: hidden;
- background-color: #fff;
- font-size: 1.2rem;
- text-align: center;
- line-height:1.5rem;
- color: #666;
- border-bottom: 1rem #f3f3f3 solid;
-}
-.post_user ul li{
- float: left;
- width: 19%;
- height:auto;
- overflow: hidden;
- margin-left: 5%;
- margin-bottom: 1rem;
-}
-.post_user ul li img{
- display: block;
- width: 100%;
- height:5rem;
- border-radius: 1rem;
-}
-.user_add{
- display: block;
- width: 100%;
- height:5rem;
- border-radius: 1rem;
- background-color: #f1f1f1;
- font-size: 3rem;
- color: #c1c1c1;
- line-height:4.8rem;
-}
-.inersest_bth a{
- background-color: #ff8400;
- color: #fff;
-}
-.post_img02 img{
- width: 100%;
-}
-.post_t label{
- line-height: 2rem;
- margin-left: 1rem;
-}
-.post_t2 span{
- top: 0rem;
- line-height:2rem;
- font-size: 1.4rem;
- margin-right: .5rem;
-}
-.xqtitle_t{
- height:auto;
- overflow: hidden;
- margin-bottom: .5rem;
-}
-.comnav{
- padding: 1rem 0rem;
- background-color: #fff;
- height:auto;
- overflow: hidden;
-}
-.comnav ul li{
- width: 20%;
- float: left;
- font-size: 1.2rem;
- line-height: 1.5rem;
- text-align: center;
- margin-left: 10%;
-}
-.comnav ul li img{
- width: 100%;
-}
-.comnav ul li a{
- display: block;
- color: #666;
-}
-.com_ad{
- height:auto;
- overflow: hidden;
- margin-top: 1rem;
- position: relative;
- background-color: #fff;
-}
-.com_ad_l{
- width: 38%;
- float: left;
- border-right: .1rem #ededed solid;
-}
-.com_ad_l img,.com_ad_r img{
- width: 100%;
-}
-.com_ad_r{
- width: 61%;
- float: right;
-}
-.com_ad_rt{
- border-bottom: .1rem #ededed solid;
-}
-.activity{
- height:auto;
- overflow: hidden;
- padding:0rem 1rem;
-}
-.activity ul li{
- height:auto;
- overflow: hidden;
- margin-top: 1rem;
-}
-.activity ul li img{
- width: 40%;
- height:6rem;
- float: left;
-}
-.activity_txt{
- width: 58%;
- margin-left: 2%;
- float: left;
-}
-.activity_txt p{
- display: block;
- height:2rem;
- line-height:2rem;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- font-size: 1.4rem;
-}
-.activity ul li a{
- display: block;
- color: #666;
-}
-.activity_txt p span{
- color: #999;
-}
-.post_t span font{
- margin: 0rem .5rem;
-}
-.sqh_tab a{
- width: 33%;
-}
-.edit_t textarea{
- font-size: 1.4rem;
- color: #666;
- width: 100%;
- border:none;
- line-height:1.2rem;
- padding-top: .5rem;
- text-indent: 1em;
-}
-.edit_b ul li{
- width: 5rem;
- height: 5rem;
- float: left;
- margin-left:5%;
- margin-bottom: 1rem;
- position: relative;
-}
-.edit_b ul li img{
- width: 100%;
- height:5rem;
-}
-.add_img{
- display: block;
- width: 5rem;
- height: 5rem;
- position: relative;
- background-color: #eee;
- line-height: 4rem;
- text-align: center;
- color: #b3b3b3;
- font-size: 5rem;
- float: left;
- margin-left: 5%;
-}
-.add_img input{
- display: block;
- width: 5rem;
- height: 5rem;
- position: absolute;
- top: 0rem;
- left:0rem;
- opacity: 0;
-}
-.postinput select{
- background-color: #FFF;
- height: 2.5rem;
- margin-right: 1rem;
- padding: 0rem 1rem;
- border-radius: 2rem;
- color: #999;
- border: .1rem #ededed solid;
-}
-.place{
- top:0rem !important;
- -webkit-animation-delay: 1s;
-}
-.signTxt{
- border-top: 1rem #f3f3f3 solid;
-}
-.signTxt ul li{
- height: 4rem;
- line-height: 4rem;
- font-size: 1.3rem;
- color: #bcbcbc;
- border-bottom: .1rem #ededed solid;
-}
-.edit{
- height:auto;
- overflow: hidden;
-}
-.partTxt{
- padding:1rem;
- font-size: 1.4rem;
- line-height:2rem;
- color: #666;
-}
-.partTxt p{
- margin-top: 1rem;
-}
-.part{
- padding:0rem 1rem;
- background-color: #fff;
- height:auto;
- overflow: hidden;
- font-size: 1.4rem;
- color: #666;
- margin-bottom: 1rem;
-}
-.part ul li{
- height: 4rem;
- line-height:4rem;
- border-bottom: .1rem #ededed solid;
- position: relative;
-}
-.p_user a{
- padding: 0rem .5rem;
- font-size: 1.6rem;
- color: #666;
-}
-.p_user input{
- background: none;
- width: 3rem;
- text-align: center;
- font-size: 1.4rem;
- border: none;
-}
-.part2 input{
- width: 100%;
- height: 3rem;
- line-height:3rem;
- background: none;
- border: none;
- text-indent: 5em;
- font-size: 1.4rem;
-}
-.part2 ul li label {
- position: absolute;
- top: 0rem;
- left: 0rem;
-}
-.part2{
- margin-top: 1rem;
-}
-.second{
- height:auto;
- line-height:3rem;
- font-size: 1.2rem;
- border-bottom: .1rem #ededed solid;
- overflow: hidden;
-}
-.second2{
- height:4rem;
- line-height:4rem;
- font-size: 1.2rem;
- border-bottom: .1rem #ededed solid;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
-}
-.second span font,.second2 span font{
- color: #333;
-}
-.secondnav{
- height:4rem;
- line-height:4rem;
- font-size: 1.4rem;
- border-top: .1rem #ededed solid;
- position: fixed;
- width: 100%;
- bottom: 0rem;
- text-align: center;
- background-color: #fff;
-}
-.secondnav ul li{
- width: 23%;
- height:4rem;
- border-right: .1rem #ededed solid;
- display: inline-block;
-}
-.secondnav ul li a{
- color: #666;
- display: block;
-}
-.second p{
- font-size: 1.4rem;
- color: #000;
-}
-.carpooling{
- padding:1rem;
- margin-bottom: 1rem;
- background-color: #fff;
-}
-.car_tab {
- width: 50%;
- margin: 0 auto;
- font-size: 1.4rem;
- background-color: #f3f3f3;
- height: 3rem;
- line-height: 3rem;
- position: relative;
- top: 1rem;
- border-radius: 2rem;
- overflow: hidden;
-}
-.car_tab a{
- display: inline-block;
- color: #333;
- width: 48%;
- border-right: .1rem #ededed solid;
- float: left;
- text-align: center;
-}
-.car_tab a.active{
- background-color: #fff !important;
- color: #ff5400 !important;
-}
-.cardiv{
- height:auto;
- overflow: hidden;
- margin-bottom: 1rem;
-}
-.car_t{
- padding:1rem;
- font-size: 1.4rem;
- color: #666;
- line-height: 1.8rem;
-}
-.car_b{
- background-color: #fff;
- padding: 0rem 1rem;
-}
-.car_b ul li{
- height:3rem;
- line-height:3rem;
- border-bottom: .1rem #ededed solid;
- position: relative;
-}
-.car_b ul li input{
- width: 100%;
- height:3rem;
- border: none;
- background: none;
- font-size: 1.4rem;
- color: #AAA6A6;
- font-family: 微软雅黑;
-}
-.car_b ul li a{
- position: absolute;
- right: 1rem;
- top:0rem;
- font-size: 2rem;
-}
-.cardiv textarea{
- padding:1rem;
-}
-.postimg_list3 li{
- float: left;
- width: 50%;
- position: relative;
- height:6rem;
-}
-.navcenter{
- width: 100%;
- height: auto;
- overflow: hidden;
- position: fixed;
- z-index: 201;
- top: 12rem;
- text-align: center;
-}
-.navcenter ul li{
- width: 18%;
- display: inline-block;
- text-align: center;
- margin-bottom: 1rem;
- font-size: 1.2rem;
- line-height:2rem;
- margin-left: 5%;
-}
-.navcenter ul li img{
- width: 80%;
- display: block;
- margin: 0 auto;
-}
-.navcenter ul li a{
- display: block;
- color: #333;
-}
-.comlist ul li{
- height:auto;
- overflow: hidden;
- line-height: 3rem;
- font-size: 1.4rem;
- padding: 1rem 0rem;
- border-bottom: .1rem #ededed solid;
- position: relative;
-}
-.comlist ul li img{
- width: 2rem;
- height:2rem;
- border-radius: .5rem;
- position: relative;
- top: .5rem;
- margin-right: .3rem;
-}
-.comlist ul li span{
- width: 24%;
- float: left;
- text-align: center;
-}
-.comlist ul li a{
- margin-right: .5rem;
- right: 1rem;
- font-size: 1.6rem;
- color: #999;
- font-weight: bold;
- top: 1.7rem;
-}
-.car_b ul li span{
- position: relative;
- top: -3rem;
- background-color: #ff8400;
- color: #fff;
- padding: .2rem .8rem;
- height: 2rem;
- line-height: 2rem;
- border-radius: 1rem;
- font-size: 1.2rem;
-}
-
-.edit_b {
- position: relative;
-}
-.file-input-wrapper {
- position: absolute;
- width: 6rem;
- height: 6rem;
- top: 0rem;
- opacity: 0;
-}
-.action {
- text-align: center;
- display: block;
- font-size: 1.2rem;
- color: #999;
-}
-.part select{
- margin-left: auto;
- margin-right: 20%;
- height: 2rem;
- position: relative;
- top: 1rem;
- border: none;
- font-size: 1.4rem;
- color: #999;
-}
-.uploader-error {
- font-size: 1.2rem;
- line-height: 2rem;
- color: #E64747;
-}
-.post_t i{
- font-size: 1.8rem;
-}
-.file-input-wrapper input{
- position: absolute;
- width: 6rem;
- height: 6rem;
- top: 0rem;
- opacity: 0;
-}
-/*20160519*/
-.secondlist{
- position: absolute;
- width: 48%;
- background-color: #fff;
- top:4.1rem;
- z-index: 100;
- border: .1rem #ECECEC solid;
-}
-.secondlist ul li {
- width: 100%;
- height: auto;
- overflow: hidden;
-}
-.secondlist ul li a{
- display: block;
- width: 100%;
- height: 3rem;
- line-height: 3rem;
- font-size: 1.4rem;
- border-bottom: .1rem #ECECEC solid;
- color: #999;
-}
-.secondlist2{
- left: 49%;
-}
-.group_txt{
- padding: .5rem 0rem;
- font-size: 1.4rem;
- line-height:2rem;
- border-top:.1rem #ededed solid ;
- margin-top: 1rem;
-}
-.group_txt p span{
- color: #666;
-}
-.group_img{
- position: relative;
- top: .5rem;
-}
-.report{
- background-color: #fff;
- margin-bottom: 1rem;
-}
-.report ul li{
- height:3.5rem;
- line-height:3.5rem;
- border-bottom:.1rem #ededed solid ;
- font-size: 1.4rem;
- padding: 0rem 1rem;
-}
-.report ul li span{
- color: #00CC00;
- margin-top: 1rem;
-}
-
-.invit{
- background-color: #fff;
- margin-bottom: 1rem;
-}
-.invit ul li{
- height:3.5rem;
- line-height:3.5rem;
- border-bottom:.1rem #ededed solid ;
- font-size: 1.2rem;
- padding: 0rem 1rem;
-}
-.invit ul li img{
- width: 2rem;
- height:2rem;
- border-radius: .5rem;
- position: relative;
- top: .5rem;
- margin-right: .5rem;
-}
-.useradmin span{
- padding: 0rem 1rem;
- border: .1rem #ededed solid;
- font-size: 1.2rem;
- border-radius: 1rem;
-}
-.useradmin {
- position: absolute;
- top: -.5rem;
- right: 0rem;
- padding-right: 1rem;
-}
-.useradmin i{
- position: relative;
- margin-left: 1rem;
-}
-.publish_tab a{
- width: 20%;
-}
-.inter_add ul li select{
- font-size: 1.2rem;
- color: #999;
- border: none;
- -webkit-appearance: none;
- font-family: 微软雅黑;
-}
-.regall{
- height:auto;
- overflow: hidden;
-}
-.reginput{
- border:.1rem #ededed solid;
- position: relative;
- margin-top: 1rem;
-}
-.reginput input{
- width: 100%;
- height:3rem;
- line-height:3rem;
- text-indent: 1em;
- color: #999;
- font-size: 1.4rem;
- border: none;
-}
-.yzmdiv a{
- width: 7rem;
- height:3.2rem;
- line-height: 3.2rem;
- background-color: #f2f2f2;
- display: block;
- color: #666;
- font-size: 1.4rem;
- text-align: center;
-}
-.yzmdiv img{
- width: 7rem;
- height:3.2rem;
- line-height: 3.2rem;
- display: block;
- font-size: 1.4rem;
- text-align: center;
-}
-.yzmdiv {
- position: absolute;
- bottom: 0rem;
- right: 0rem;
-}
-.regTxt{
- margin: 1rem 0rem;
- font-size: 1.2rem;
- color: #666;
-}
-.regTxt p a{
- color: #666;
-}
-.mess ul li{
- padding: 1rem;
- height: auto;
- overflow: hidden;
- border-bottom: .1rem #ededed solid;
-}
-.mess ul li a{
- display: block;
- color: #333;
-}
-.mess ul li a img{
- float: left;
- width: 4rem;
- height:4rem;
- margin-right: .5rem;
- border-radius: 1rem;
-}
-.mess_t span{
- font-size: 1.4rem;
- line-height:2rem;
-}
-.mess_t font{
- font-size: 1.2rem;
-}
-.mess_b {
- height: 2rem;
- line-height: 2rem;
- overflow: hidden;
-}
-.mess_b p span{
- float: right;
- width: 1.5rem;
- height:1.5rem;
- line-height:1.5rem;
- border-radius: 50%;
- font-size: 1.2rem;
- text-align: center;
- color: #fff;
- background-color: #f43530;
-}
-.mess_txt{
- padding:1rem;
- font-size: 1.2rem;
- background-color: #f4f4f4;
- color: #9b9b9b;
- margin-top: 2rem;
- position: relative;
-}
-.mess_bth{
- margin-top: 1rem;
- text-align: right;
- font-size: 1.2rem;
-}
-.mess_bth a{
- color: #629d23 !important;
-}
-.arrow-up {
- width: 0;
- height: 0;
- border-left: 1rem solid transparent;
- border-right: 1rem solid transparent;
- border-bottom: 1rem solid #F4F4F4;
- position: absolute;
- top: -1rem;
- left: 1rem;
-}
-.title_name {
- width: 100%;
- text-align: center;
- position: absolute;
- top: 1rem;
- z-index: 100;
- color: #fff;
- font-size: 1.6rem;
-}
-.mess_iocn {
- text-align: center;
- position: absolute;
- top:2rem;
- left: 1rem;
- z-index: 100;
- color: #fff;
- font-size: 1.6rem;
-}
-.mess_iocn span{
- float: left;
- width: .5rem;
- height: .5rem;
- border-radius: 50%;
- background-color: #EE414D;
-}
-.mess_iocn a{
- display: block;
- color: #fff;
-}
-.more_public{
- text-align: center;
- font-size: 1.2rem;
- color: #999;
- line-height: 2rem;
-}
-.chatside{
- padding: 1rem;
- height: auto;
- overflow: hidden;
- margin-bottom: 1rem;
-}
-.chat_limg{
- width: 3rem;
- height:3rem;
- overflow: hidden;
- border-radius: 50%;
- margin-top: .5rem;
-}
-.chat_limg a img{
- width: 3rem;
- height:3rem;
-}
-.chat_txt{
- max-width: 20rem;
- margin-left: 1rem;
- padding: .8rem .4rem;
- font-size: 1.2rem;
- line-height:1.5rem;
- background-color: #eeeeee;
- color:#000;
- position: relative;
- border-radius: .5rem;
-}
-.chat_txt2{
- max-width: 18rem;
- margin-right: 1rem;
- padding: .8rem .4rem;
- font-size: 1.2rem;
- line-height:1.5rem;
- background-color: #84c757;
- color:#fff;
- position: relative;
- border-radius: .5rem;
-}
-.chat_txt span{
- color: #999;
- display: block;
-}
-.let_icon {
- display: block;
- width: 0;
- height: 0;
- border-width: 1rem;
- border-style: dashed;
- border-color: transparent;
- border-left-width: 0;
- border-right-color: #EEEEEE;
- border-right-style: solid;
- top: 1rem;
- left: -.6rem;
- position: absolute;
-}
-.right_icon {
- display: block;
- width: 0;
- height: 0;
- border-width: 1rem;
- border-style: dashed;
- border-color: transparent;
- border-right-width: 0;
- border-left-color: #84c757;
- border-left-style: solid;
- top: 1rem;
- right: -.6rem;
- position: absolute;
-}
-
-.radio_bth label{
- position: relative !important;
- width: 2rem !important;
- height: 2rem !important;
-}
-.radio_bth label input{
- width: 1.5rem !important;
- height: 1.5rem !important;
- position: relative;
- top: .3rem;
-}
-.radio_bth{
- float: right;
- position: relative;
-}
-.post_one {
- height: 8rem;
- overflow: hidden;
- margin-top: .5rem;
- position: relative;
-}
-.post_one img{
- max-width: 100%;
- position: absolute;
- left: 50%;
- top: 50%;
- -webkit-transform: translate(-50%,-50%);
- -ms-transform: translate(-50%,-50%);
- -moz-transform: translate(-50%,-50%);
-}·
-.post_title{
- clear: both;
- font-size: 1.4rem;
- height: auto;
- overflow: hidden;
- color: #000;
- padding: .5rem 0rem;
- text-align: left;
-}
-.post_title span{
- display: inline-block;
- font-size: 1.2rem;
- border: .1rem #67BCF5 solid;
- padding: .2rem .5rem;
- margin-left: .5rem;
- color: #67BCF5;
- border-radius: .4rem;
-}
-.post_user2{
- border-bottom: 0rem;
- border-top: 1rem #f3f3f3 solid;
- padding: 0rem;
-}
-.post_user2 ul li {
- float: left;
- width: 14%;
- height: auto;
- overflow: hidden;
- margin-left: 5%;
- margin-bottom: 1rem;
-}
-.post_user2 ul li img {
- display: block;
- width: 100%;
- height: 4rem;
- border-radius: 1rem;
-}
-.edit_t input{
- width: 100%;
- height: 3rem;
- line-height: 3rem;
- font-size: 1.2rem;
- text-indent: 1em;
- border: none;
- border-bottom: .1rem #ededed solid;
- font-family: 微软雅黑;
-}
-.post_title_l p{
- display: block;
- height: 2rem;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
-}
-/*20160713*/
-.mess_iocn2{
- right: 1rem;
- left: inherit;
-}
-.span_delete{
- font-size: 1.2rem;
- float: right;
- display: block;
-}
-.span_delete a{
- color: #DD3D3D;
-}
-.post_title {
- clear: both;
- margin-top: 1rem;
-}
-.comlist ul li p{
- clear: both;
- line-height: 1.6rem;
- font-size: 1.2rem;
- padding-left: .5rem;
- color: #999;
-}
-.finance ul li{
- height: auto;
- overflow: hidden;
- padding: 1rem 0rem;
- line-height: 2rem;
- border-bottom: .1rem #eeeeee solid;
-}
-.finance ul li a{
- display: block;
-}
-.finance ul li a p{
- font-size: 1.4rem;
- color: #000;
- margin-bottom: .5rem;
- height:auto;
- overflow: hidden;
- clear: both;
-}
-.finance ul li a p span{
- font-size: 1.2rem;
- color: #666;
-}
-.fin_p{
- display: block;
- height: 1.5rem;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
-}
-.finance ul li a p label{
- font-size: 1.2rem;
- color: #666;
- font-family: 微软雅黑;
- margin-right: .5rem;
-}
-.xx_tab a{
- font-size: 1.2rem !important;
- width: 16% !important;
-}
-.head2 {
- background-color: #fff;
- border-bottom: .1rem #ccc solid;
- height: 4rem;
- line-height: 4rem;
-}
-.zz_tab {
- position: absolute;
- top: 0px;
- width: 70%;
- left: 15%;
-}
-.zz_txt p{
- font-size: 1.4rem;
- font-weight: bold;
-}
-.zz_txt p span{
- font-size: 1.2rem;
- color: #666;
- font-weight: 100;
-}
-.zz_txt{
- line-height:2rem;
- margin-bottom: 1rem;
-}
-.zz_search{
- height: 2rem;
- width: 70%;
- border-radius: 1rem;
- border: .1rem #ccc solid;
- font-size: 1.2rem;
- text-indent: 1em;
-}
-.fin_txt p span{
- font-size: 1.2rem !important;
- margin-top: 1rem;
- text-indent: 2em;
- color: #999 !important;
-}
-.fin_txt p img{
- width: 100%;
-}
-.Collection{
- padding:1rem;
- position: fixed;
- bottom: 0rem;
- width: 100%;
- font-size: 1.2rem;
- color: #fff;
- background-color: #4b4b4b;
-}
-.Collection a{
- margin-right: 2rem;
- color: #68d518;
-}
-.bq_span span {
- float: left;
- padding: .2rem 1rem;
- border-radius: 2rem;
- font-size: 1.2rem;
- margin-top: .5rem;
- border: .1rem #eeeeee solid;
- margin-left: 1rem;
-
-}
-.bq_span span a{
- margin-left: .5rem;
- color: #fff;
-}
-.bq_add input{
- height:2rem;
- line-height: 2rem;
- width: 99%;
- border: .1rem #eeeeee solid;
- border-radius: 1rem;
- font-size: 1.2rem;
- color: #999;
- margin-top: 1rem;
- text-indent: 1em;
-}
-.nav ul{
- height: auto;
- overflow: hidden;
- clear: both;
-}
-.s_title{
- height: auto;
- overflow: hidden;
- font-size: 1.4rem;
- padding: 1rem;
- margin-bottom: 1rem;
- border-bottom: .1rem #efefef solid;
-}
-.s_title p a{
- font-size: 1.6rem;
- color: #999;
-}
-.id_nav_rt a p img{
- position: relative;
- top: .8rem;
- margin-left:2.5rem;
- margin-right: 1rem;
-}
-.s_list ul li{
- height: 4rem;
- border-bottom: .1rem #EFEFEF solid;
- width: 100%;
- margin-left: 0%;
- padding: 1rem 1rem;
- margin-top: 0rem;
- position: relative;
-}
-.s_list ul li img{
- float: left;
- width: 2.5rem;
- margin-right: .5rem;
- position: relative;
- top: .5rem;
-}
-.s_l_l{
- text-align: left;
- line-height:1.8rem;
- float: left;
-}
-.s_l_l p{
- font-size: 1.4rem;
-}
-.s_l_l p font{
- font-size: 1.2rem;
- color: #999;
-}
-.s_l_l span{
- position: absolute;
- font-size: 1.2rem;
- color: #999;
- right: 3rem;
- top: 2rem;
-}
-.I_list{
- height: auto;
- overflow: hidden;
- padding:0rem 1rem;
- background-color: #fff;
-}
-.I_list ul li{
- padding:1rem 0rem;
- height:auto;
- overflow: hidden;
- line-height:2rem;
- border-bottom: .1rem #EFEFEF solid;
- position: relative;
-}
-.I_list ul li p{
- font-size: 1.4rem;
- color: #333;
-}
-.I_list ul li p font{
- color: #999;
- font-size: 1.2rem;
-}
-.I_list ul li span{
- position: absolute;
- right:1rem;
- top:2rem;
- font-size: 1.2rem;
-}
-.w_txt{
- font-size: 1.2rem;
- color: #999;
- text-align: center;
- line-height: 2rem;
-}
-.er_div{
- margin: 1rem;
- background-color: #fff;
- line-height: 2rem;
- text-align: center;
- font-size: 1.2rem;
- height: auto;
- overflow: hidden;
- padding: 1rem;
-}
-.er_t{
- font-size: 1.6rem;
- margin: 2rem 0rem;
-}
-.er_m{
- font-size: 2.6rem;
- font-weight: bold;
- margin: 2rem 0rem;
-}
-.er_b p span{
- color: #999;
-}
-.er_img img{
- width: 100%;
-}
-.er_btn{
- height:4rem;
- line-height: 4rem;
- background-color: #666;
- font-size: 1.4rem;
-}
-.er_btn a{
- width: 50%;
- float: left;
- color: #fff;
- text-align: center;
-}
-.inter_add2 {
- padding: 1rem;
- height: auto;
- overflow: hidden;
- background-color: #fff;
- margin-bottom: 1rem;
-}
-.inter_add2 ul li {
- padding: 1.2rem 0rem;
- border-bottom: .1rem #EFEFEF solid;
- font-size: 1.4rem;
- height: auto;
- overflow: hidden;
- position: relative;
- padding-right: 2rem;
-}
-.inter_add2 ul li a {
- display: block;
- color: #666;
-}
-.inter_add2 ul li select {
- font-size: 1.4rem;
- color: #999;
- border: none;
- font-family: 微软雅黑;
- position: relative;
- top: .1rem;
-}
-.inter_add2 ul li a i {
- font-size: 2rem;
- position: absolute;
- top: 1.2rem;
- right: 0rem;
-}
-.inter_add2 ul li span font {
- font-size: 1.4rem;
- color: #999;
-}
-.Push_bth{
- display: block;
- width: 4rem;
- height: 2rem;
- float: right;
- border: .1rem #EFEFEF solid;
- border-radius: 2rem;
- position: absolute;
- right: 0rem;
-}
-.pushall{
- width:2rem;
- height:2rem;
- border-radius: 50%;
- background-color:#9ad04d;
- position:absolute;
- left:.2rem;
-}
-.Push{
- width:0px;
- height:2rem;
- border-radius: 2rem;
- position:absolute;
- background-color:#fda100;
-}
-.inter_add2 ul li a input{
- height: 2rem;
- border: none;
- font-size: 1.4rem;
- font-family: 微软雅黑;
-}
-.inter_add ul li a input{
- height: 2rem;
- border: none;
- font-size: 1.4rem;
- font-family: 微软雅黑;
- position: relative;
- top: -.5rem;
-}
-.bq_span{
- height: auto;
- overflow: hidden;
-}
-/*20161012*/
-.pictitle2{
- margin-top: 1rem;
- line-height: 1.8rem;
-}
-.sc_list li{
- width: 25%;
- float: left;
- margin-right: 5%;
- font-size: 1.2rem;
- text-align: center;
- margin-top: 1rem;
- line-height: 1.5rem;
- margin-left: 3%;
-}
-.sc_list li a,.Area ul li a {
- color: #8b8b8b;
-}
-.sc_list li img {
- width: 80%;
- -webkit-animation-delay: 1.5s;
- -webkit-animation-duration: 2s;
-}
-.sc_list{
- padding: 0rem 7%;
-}
-.sc_div {
- background-color: #fff;
- margin-top: 1rem;
- height: auto;
- overflow: hidden;
- padding-bottom: 2rem;
-}
-.Area{
- background-color: #fff;
- margin-top: 1rem;
- height: auto;
- overflow: hidden;
- padding-bottom: 2rem;
-}
-.Area ul li{
- width: 30%;
- float: left;
- margin-left: 3%;
- font-size: 1.2rem;
- text-align: center;
- margin-top: 1rem;
- line-height: 3rem;
-}
-.Area ul li img{
- width: 3rem;
- float: left;
-}
-/*20161018*/
-.M_t{
- background-color: #182e4c;
- padding: 1rem 0rem;
- font-size: 1.4rem;
- text-align: center;
- color: #fff;
-}
-.M_t img{
- width: 7rem;
- height:7rem;
- display: block;
- margin: 0 auto;
- border-radius: 1rem;
- margin-bottom: 1rem;
-}
-.M_list{
- height:4rem;
- background-color: #fff;
- margin-bottom: 1rem;
-}
-.M_list ul li{
- padding-top: .5rem;
- float: left;
- height: 3rem;
- font-size: 1.4rem;
- text-align: center;
- line-height: 1.6rem;
- width: 25%;
-}
-.M_list ul li a{
- display: block;
- color: #999;
-}
-.M_no{
- padding: 5rem 0px;
- text-align: center;
- font-size: 1.4rem;
- color: #666;
-}
-.M_no p img{
- width: 1.5rem;
- position: relative;
- margin-right: .5rem;
- top: .3rem;
-}
-.M_no p{
- margin-bottom: 2rem;
-}
-.scene ul li{
- float: left;
- text-align: center;
- font-size: 1.2rem;
- width: 20%;
- margin-left: 10%;
- margin-top: 2rem;
-}
-.scene ul li img{
- width: 80%;
- display: block;
- margin: 0 auto;
- margin-bottom: 1rem;
-}
-.scene ul li a{
- display: block;
- color: #666;
-}
-.scene_modal{
- position: absolute;
- width: 80%;
- margin-left: 5%;
- padding: 5%;
- height: auto;
- overflow: hidden;
- background-color: #fff;
- z-index: 201;
- top: 10%;
- border-radius: 1rem;
-}
-.scene_t{
- text-align: center;
- font-size: 1.4rem;
-}
-.scene_t p input{
- width: 100%;
- height:2rem;
- line-height:2rem;
- color: #999;
- margin-top: 1rem;
- border: .1rem #EFEFEF solid;
- text-indent: 10px;
-}
-.scene_m ul li{
- margin-left: 5%;
- font-size: 1.2rem;
-}
-.scene_b div{
- height:3rem;
- line-height:3rem;
-}
-.bottomnav{
- position: fixed;
- bottom: -100%;
- background-color: #fff;
- border-radius: 1rem;
- width: 90%;
- margin-left: 5%;
-}
-.bottomnav ul li{
- height:3rem;
- line-height:3rem;
- font-size: 1.2rem;
- text-align: center;
- font-family: 微软雅黑;
- border-bottom: .1rem #EFEFEF solid;
-}
-.bottomnav ul li a{
- display: block;
- color: #666;
-}
-.inter_add ul li a span input{
- top: 0rem;
- text-align: right;
- height: auto;
- font-size: 1.2rem;
-}
-.eq_tab{
- height:5rem;
- background-color: #fff;
-}
-.eq_tab a{
- width: 33%;
- text-align: center;
- float: left;
- padding-top: .5rem;
- color: #666;
-}
-.eq_tab a img{
- width: 2rem;
- display: inline-block;
- margin-bottom: .5rem;
-}
-.eq_tab a span{
- display: block;
- clear: both;
- font-size: 1.4rem;
-}
-.eq_tab a.active{
- color: #fb6a00;
-}
-.eq_div{
- margin-top: 1rem;
- background-color: #FFFFFF;
-}
-.eq_list{
- height:auto;
- overflow: hidden;
- margin-top: 1rem;
- background-color: #fff;
-}
-.eq_list ul li{
- height: 4rem;
- overflow: hidden;
- line-height: 4rem;
- border-bottom: .1rem #EFEFEF solid;
- padding: 0rem 1rem;
-}
-.eq_list ul li a{
- display: block;
- color:#666;
-}
-.eq_list ul li a span img{
- width: 2rem;
- margin-right: 1rem;
- position: relative;
- top: .7rem;
-}
-.eq_list ul li a span font{
- font-size: 1.2rem;
- line-height: 3rem;
- margin-right: 1rem;
- color: #999;
-}
-.eq_list ul li a span i{
- position: relative;
- top:.5rem;
-}
-.auto a{
- height: 4rem;
- display: block;
- width: 95%;
- margin: 0 auto;
- line-height:4rem;
- font-size: 1.4rem;
- background-color: #fff;
- text-align: center;
- color: #333;
- border-radius: .5rem;
-}
-.auto input{
- height: 3rem;
- display: block;
- width: 95%;
- margin: 0 auto;
- line-height:3rem;
- font-size: 1.4rem;
- background-color: #fff;
- text-align: center;
- color: #333;
- border-radius: .5rem;
- border: none;
-}
-.yz_t1{
- font-size: 1.6rem;
- text-align: center;
- margin-top:2rem;
-}
-.yz_t2{
- font-size: 1.2rem;
- text-align: center;
- margin-top: 2rem;
- margin-bottom: 2rem;
-}
-.ser_list ul li{
- padding: 1rem;
- line-height:1.6rem;
- border-bottom: .1rem #EFEFEF solid;
-}
-.ser_list ul li a p{
- font-size: 1.4rem;
- color: #333;
-}
-.ser_list ul li a p span{
- font-size: 1.2rem;
- color: #999;
- margin-left: 1rem;
-}
-.pro_t{
- padding: 1rem;
- text-align: center;
- background-color: #102037;
- color: #fff;
- line-height:2rem;
- font-size: 1.2rem;
-}
-.pro_t p span{
- font-size:2.2rem;
- color: #ff9c00;
-}
-.pro_tab a{
- width: 33%;
-}
-.pro_b{
- height:4rem;
- line-height:4rem;
- text-align: center;
- position: fixed;
- bottom: 0rem;
- width: 100%;
- z-index: 100;
-}
-.pro_b a{
- width: 50%;
- float: left;
- color: #fff;
- font-size: 1.4rem;
- background-color: #224370;
-}
-.pro_btn{
- background-color: #F6F6F6;
- position: absolute;
- right: 1rem;
- top: 1rem;
- font-size: 1.2rem;
- padding: 0rem .8rem;
- border-radius: 1rem;
- color: #000;
- border: .1rem #E7E7E7 solid;
-}
-.pro_b2 a{
- width: 100%;
-}
-.repall{
- height:auto;
- overflow: hidden;
- background-color: #fff;
- font-family: 微软雅黑;
-}
-.repall ul li{
- padding:1rem;
- border-bottom: .1rem #EFEFEF solid;
- font-size: 1.2rem;
- color: #000;
- line-height:1.6rem;
-}
-.repall ul li p span{
- color: #999;
-}
-.repall ul li p a{
- padding: .2rem 1rem;
- color: #21568F;
- border: .1rem #EFEFEF solid;
- border-radius: 1rem;
- background-color: #F6F6F6;
-}
-.repall ul li p{
- margin-bottom: .5rem;
-}
-.rep_star{
- padding: 1rem;
- background-color: #fff;
- border-bottom: .1rem #EFEFEF solid;
-}
-.edit_b ul li span{
- color: #E9203D;
- position: absolute;
- top: 0rem;
- right: 0rem;
- font-size: 1.6rem;
-}
-.title_name a{
- color: #fff;
-}
-.p_list ul li{
- padding: 1rem;
- position: relative;
- border-bottom: .1rem #EFEFEF solid;
-}
-.p_list ul li p{
- text-align: right;
- font-size: 1.1rem;
- line-height:1.6rem;
-}
-.p_list ul li p font{
- font-size: 1.4rem;
-}
-.p_list{
- background-color: #fff;
-}
-.p_list ul li label{
- position: absolute;
- top: 1.5rem;
- font-size: 1.4rem;
-}
-.p_list ul li label input{
- position: relative;
- top:.1rem;
-}
-.inter_add2 ul li a img{
- float: right;
- width: 1.5rem;
- margin-left: 1rem;
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/personcentor/src/main/resources/static/css/shake.css b/personcentor/src/main/resources/static/css/shake.css
deleted file mode 100644
index 80e73e959d95ffb6a5c72c71260f238ab2befc10..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/shake.css
+++ /dev/null
@@ -1,4018 +0,0 @@
-/* ������������֮�� www.lanrenzhijia.com */
-#wrapper {
- margin: 0 auto;
- width: 90%;
- text-align: center;
-}
-#wrapper p {
- font-family: helvetica;
- font-weight: bold;
- font-size: 80px;
- color: red;
-}
-.shake {
- display: inline-block;
- -webkit-transform-origin: center center;
- -ms-transform-origin: center center;
- transform-origin: center center
-}
-.shake:hover {
- -webkit-animation-name: shake-base;
- -ms-animation-name: shake-base;
- animation-name: shake-base;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.freez {
- -webkit-animation-play-state: paused !important;
- -ms-animation-play-state: paused !important;
- animation-play-state: paused !important
-}
-.shake.freez.shake-hard {
- -webkit-animation-name: shake-hard;
- -ms-animation-name: shake-hard;
- animation-name: shake-hard;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.freez.shake-slow {
- -webkit-animation-name: shake-slow;
- -ms-animation-name: shake-slow;
- animation-name: shake-slow;
- -webkit-animation-duration: 5s;
- -ms-animation-duration: 5s;
- animation-duration: 5s;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.freez.shake-little {
- -webkit-animation-name: shake-little;
- -ms-animation-name: shake-little;
- animation-name: shake-little;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.freez.shake-horizontal {
- -webkit-animation-name: shake-horizontal;
- -ms-animation-name: shake-horizontal;
- animation-name: shake-horizontal;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.freez.shake-vertical {
- -webkit-animation-name: shake-vertical;
- -ms-animation-name: shake-vertical;
- animation-name: shake-vertical;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.freez.shake-rotate {
- -webkit-animation-name: shake-rotate;
- -ms-animation-name: shake-rotate;
- animation-name: shake-rotate;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.freez.shake-opacity {
- -webkit-animation-name: shake-opacity;
- -ms-animation-name: shake-opacity;
- animation-name: shake-opacity;
- -webkit-animation-duration: 200ms;
- -ms-animation-duration: 200ms;
- animation-duration: 200ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.freez.shake-crazy {
- -webkit-animation-name: shake-crazy;
- -ms-animation-name: shake-crazy;
- animation-name: shake-crazy;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.freez:hover {
- -webkit-animation-play-state: running !important;
- -ms-animation-play-state: running !important;
- animation-play-state: running !important
-}
-.shake.shake-hard:hover {
- -webkit-animation-name: shake-hard;
- -ms-animation-name: shake-hard;
- animation-name: shake-hard;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-slow {
- -webkit-animation-name: shake-slow;
- -ms-animation-name: shake-slow;
- animation-name: shake-slow;
- -webkit-animation-duration: 5s;
- -ms-animation-duration: 5s;
- animation-duration: 5s;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-little {
- -webkit-animation-name: shake-little;
- -ms-animation-name: shake-little;
- animation-name: shake-little;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-horizontal:hover {
- -webkit-animation-name: shake-horizontal;
- -ms-animation-name: shake-horizontal;
- animation-name: shake-horizontal;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-vertical:hover {
- -webkit-animation-name: shake-vertical;
- -ms-animation-name: shake-vertical;
- animation-name: shake-vertical;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-rotate:hover {
- -webkit-animation-name: shake-rotate;
- -ms-animation-name: shake-rotate;
- animation-name: shake-rotate;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-opacity:hover {
- -webkit-animation-name: shake-opacity;
- -ms-animation-name: shake-opacity;
- animation-name: shake-opacity;
- -webkit-animation-duration: 200ms;
- -ms-animation-duration: 200ms;
- animation-duration: 200ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-crazy:hover {
- -webkit-animation-name: shake-crazy;
- -ms-animation-name: shake-crazy;
- animation-name: shake-crazy;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-constant {
- -webkit-animation-name: shake-base;
- -ms-animation-name: shake-base;
- animation-name: shake-base;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-constant.shake-hard {
- -webkit-animation-name: shake-hard;
- -ms-animation-name: shake-hard;
- animation-name: shake-hard;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-constant.shake-slow {
- -webkit-animation-name: shake-slow;
- -ms-animation-name: shake-slow;
- animation-name: shake-slow;
- -webkit-animation-duration: 5s;
- -ms-animation-duration: 5s;
- animation-duration: 5s;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-constant.shake-little {
- -webkit-animation-name: shake-little;
- -ms-animation-name: shake-little;
- animation-name: shake-little;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-constant.shake-horizontal {
- -webkit-animation-name: shake-horizontal;
- -ms-animation-name: shake-horizontal;
- animation-name: shake-horizontal;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-constant.shake-vertical {
- -webkit-animation-name: shake-vertical;
- -ms-animation-name: shake-vertical;
- animation-name: shake-vertical;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-constant.shake-rotate {
- -webkit-animation-name: shake-rotate;
- -ms-animation-name: shake-rotate;
- animation-name: shake-rotate;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-constant.shake-opacity {
- -webkit-animation-name: shake-opacity;
- -ms-animation-name: shake-opacity;
- animation-name: shake-opacity;
- -webkit-animation-duration: 200ms;
- -ms-animation-duration: 200ms;
- animation-duration: 200ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-constant.shake-crazy {
- -webkit-animation-name: shake-crazy;
- -ms-animation-name: shake-crazy;
- animation-name: shake-crazy;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 0s;
- -ms-animation-delay: 0s;
- animation-delay: 0s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-.shake.shake-constant.hover-stop:hover {
- -webkit-animation-play-state: paused;
- -ms-animation-play-state: paused;
- animation-play-state: paused
-}
-.shake.shake-delay {
- -webkit-animation-name: shake-base;
- -ms-animation-name: shake-base;
- animation-name: shake-base;
- -webkit-animation-duration: 100ms;
- -ms-animation-duration: 100ms;
- animation-duration: 100ms;
- -webkit-animation-iteration-count: infinite;
- -ms-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in-out;
- -ms-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-delay: 4s;
- -ms-animation-delay: 4s;
- animation-delay: 4s;
- -webkit-animation-play-state: running;
- -ms-animation-play-state: running;
- animation-play-state: running
-}
-@-webkit-keyframes shake-base {
- 0% {
- -webkit-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -webkit-transform: translate(1.5px, -2.5px) rotate(-1.5deg)
-}
- 4% {
- -webkit-transform: translate(-2.5px, 0.5px) rotate(-0.5deg)
-}
- 6% {
- -webkit-transform: translate(1.5px, 1.5px) rotate(0.5deg)
-}
- 8% {
- -webkit-transform: translate(1.5px, 1.5px) rotate(-0.5deg)
-}
- 10% {
- -webkit-transform: translate(1.5px, 0.5px) rotate(0.5deg)
-}
- 12% {
- -webkit-transform: translate(0.5px, -1.5px) rotate(-1.5deg)
-}
- 14% {
- -webkit-transform: translate(-2.5px, -0.5px) rotate(-0.5deg)
-}
- 16% {
- -webkit-transform: translate(0.5px, 1.5px) rotate(-1.5deg)
-}
- 18% {
- -webkit-transform: translate(-1.5px, 1.5px) rotate(-0.5deg)
-}
- 20% {
- -webkit-transform: translate(0.5px, 1.5px) rotate(0.5deg)
-}
- 22% {
- -webkit-transform: translate(-1.5px, 0.5px) rotate(-0.5deg)
-}
- 24% {
- -webkit-transform: translate(-2.5px, 1.5px) rotate(-1.5deg)
-}
- 26% {
- -webkit-transform: translate(0.5px, 0.5px) rotate(-0.5deg)
-}
- 28% {
- -webkit-transform: translate(-0.5px, -2.5px) rotate(-1.5deg)
-}
- 30% {
- -webkit-transform: translate(-1.5px, 1.5px) rotate(-1.5deg)
-}
- 32% {
- -webkit-transform: translate(0.5px, 0.5px) rotate(-0.5deg)
-}
- 34% {
- -webkit-transform: translate(1.5px, -0.5px) rotate(0.5deg)
-}
- 36% {
- -webkit-transform: translate(-1.5px, -1.5px) rotate(-0.5deg)
-}
- 38% {
- -webkit-transform: translate(-2.5px, -2.5px) rotate(-1.5deg)
-}
- 40% {
- -webkit-transform: translate(-1.5px, 0.5px) rotate(-0.5deg)
-}
- 42% {
- -webkit-transform: translate(-0.5px, 1.5px) rotate(-1.5deg)
-}
- 44% {
- -webkit-transform: translate(-2.5px, -0.5px) rotate(0.5deg)
-}
- 46% {
- -webkit-transform: translate(-2.5px, -1.5px) rotate(0.5deg)
-}
- 48% {
- -webkit-transform: translate(-2.5px, -2.5px) rotate(0.5deg)
-}
- 50% {
- -webkit-transform: translate(0.5px, -1.5px) rotate(-1.5deg)
-}
- 52% {
- -webkit-transform: translate(0.5px, 1.5px) rotate(0.5deg)
-}
- 54% {
- -webkit-transform: translate(1.5px, -0.5px) rotate(-1.5deg)
-}
- 56% {
- -webkit-transform: translate(-1.5px, -1.5px) rotate(-1.5deg)
-}
- 58% {
- -webkit-transform: translate(0.5px, 1.5px) rotate(-0.5deg)
-}
- 60% {
- -webkit-transform: translate(-0.5px, -0.5px) rotate(0.5deg)
-}
- 62% {
- -webkit-transform: translate(0.5px, 1.5px) rotate(-0.5deg)
-}
- 64% {
- -webkit-transform: translate(-2.5px, 0.5px) rotate(0.5deg)
-}
- 66% {
- -webkit-transform: translate(-0.5px, -2.5px) rotate(0.5deg)
-}
- 68% {
- -webkit-transform: translate(-2.5px, -2.5px) rotate(-1.5deg)
-}
- 70% {
- -webkit-transform: translate(-1.5px, 0.5px) rotate(-1.5deg)
-}
- 72% {
- -webkit-transform: translate(-1.5px, 0.5px) rotate(-0.5deg)
-}
- 74% {
- -webkit-transform: translate(-1.5px, 1.5px) rotate(-0.5deg)
-}
- 76% {
- -webkit-transform: translate(-1.5px, -2.5px) rotate(0.5deg)
-}
- 78% {
- -webkit-transform: translate(-1.5px, -2.5px) rotate(-0.5deg)
-}
- 80% {
- -webkit-transform: translate(-0.5px, 1.5px) rotate(-0.5deg)
-}
- 82% {
- -webkit-transform: translate(1.5px, -1.5px) rotate(-0.5deg)
-}
- 84% {
- -webkit-transform: translate(-0.5px, -1.5px) rotate(-1.5deg)
-}
- 86% {
- -webkit-transform: translate(-2.5px, 0.5px) rotate(-0.5deg)
-}
- 88% {
- -webkit-transform: translate(-2.5px, -0.5px) rotate(-0.5deg)
-}
- 90% {
- -webkit-transform: translate(-0.5px, 0.5px) rotate(-1.5deg)
-}
- 92% {
- -webkit-transform: translate(1.5px, -2.5px) rotate(0.5deg)
-}
- 94% {
- -webkit-transform: translate(0.5px, 1.5px) rotate(-1.5deg)
-}
- 96% {
- -webkit-transform: translate(1.5px, -0.5px) rotate(-1.5deg)
-}
- 98% {
- -webkit-transform: translate(-0.5px, 0.5px) rotate(-0.5deg)
-}
-}
-@-ms-keyframes shake-base {
- 0% {
- -ms-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -ms-transform: translate(-2.5px, 1.5px) rotate(-1.5deg)
-}
- 4% {
- -ms-transform: translate(0.5px, -0.5px) rotate(-0.5deg)
-}
- 6% {
- -ms-transform: translate(1.5px, 1.5px) rotate(0.5deg)
-}
- 8% {
- -ms-transform: translate(1.5px, -2.5px) rotate(0.5deg)
-}
- 10% {
- -ms-transform: translate(1.5px, 1.5px) rotate(-1.5deg)
-}
- 12% {
- -ms-transform: translate(1.5px, -2.5px) rotate(-1.5deg)
-}
- 14% {
- -ms-transform: translate(-1.5px, -1.5px) rotate(-1.5deg)
-}
- 16% {
- -ms-transform: translate(-1.5px, -0.5px) rotate(-1.5deg)
-}
- 18% {
- -ms-transform: translate(-1.5px, -1.5px) rotate(0.5deg)
-}
- 20% {
- -ms-transform: translate(-1.5px, 0.5px) rotate(-1.5deg)
-}
- 22% {
- -ms-transform: translate(1.5px, 1.5px) rotate(-1.5deg)
-}
- 24% {
- -ms-transform: translate(-1.5px, 0.5px) rotate(-0.5deg)
-}
- 26% {
- -ms-transform: translate(1.5px, -2.5px) rotate(0.5deg)
-}
- 28% {
- -ms-transform: translate(-2.5px, -0.5px) rotate(-0.5deg)
-}
- 30% {
- -ms-transform: translate(-1.5px, 1.5px) rotate(0.5deg)
-}
- 32% {
- -ms-transform: translate(0.5px, -1.5px) rotate(-1.5deg)
-}
- 34% {
- -ms-transform: translate(0.5px, -2.5px) rotate(0.5deg)
-}
- 36% {
- -ms-transform: translate(-1.5px, 1.5px) rotate(0.5deg)
-}
- 38% {
- -ms-transform: translate(-1.5px, -0.5px) rotate(0.5deg)
-}
- 40% {
- -ms-transform: translate(1.5px, -1.5px) rotate(0.5deg)
-}
- 42% {
- -ms-transform: translate(0.5px, 0.5px) rotate(-0.5deg)
-}
- 44% {
- -ms-transform: translate(-0.5px, -1.5px) rotate(0.5deg)
-}
- 46% {
- -ms-transform: translate(-0.5px, -0.5px) rotate(-1.5deg)
-}
- 48% {
- -ms-transform: translate(-1.5px, 1.5px) rotate(-1.5deg)
-}
- 50% {
- -ms-transform: translate(-0.5px, -2.5px) rotate(-1.5deg)
-}
- 52% {
- -ms-transform: translate(0.5px, 0.5px) rotate(-1.5deg)
-}
- 54% {
- -ms-transform: translate(0.5px, 1.5px) rotate(-0.5deg)
-}
- 56% {
- -ms-transform: translate(0.5px, -0.5px) rotate(-0.5deg)
-}
- 58% {
- -ms-transform: translate(-2.5px, -0.5px) rotate(0.5deg)
-}
- 60% {
- -ms-transform: translate(1.5px, 0.5px) rotate(-0.5deg)
-}
- 62% {
- -ms-transform: translate(-2.5px, 1.5px) rotate(-1.5deg)
-}
- 64% {
- -ms-transform: translate(0.5px, -1.5px) rotate(-0.5deg)
-}
- 66% {
- -ms-transform: translate(-1.5px, -2.5px) rotate(-0.5deg)
-}
- 68% {
- -ms-transform: translate(1.5px, 1.5px) rotate(-0.5deg)
-}
- 70% {
- -ms-transform: translate(-0.5px, 1.5px) rotate(-1.5deg)
-}
- 72% {
- -ms-transform: translate(1.5px, -1.5px) rotate(-0.5deg)
-}
- 74% {
- -ms-transform: translate(-0.5px, 1.5px) rotate(-1.5deg)
-}
- 76% {
- -ms-transform: translate(1.5px, -2.5px) rotate(-1.5deg)
-}
- 78% {
- -ms-transform: translate(-0.5px, 0.5px) rotate(0.5deg)
-}
- 80% {
- -ms-transform: translate(0.5px, -0.5px) rotate(-1.5deg)
-}
- 82% {
- -ms-transform: translate(1.5px, 0.5px) rotate(0.5deg)
-}
- 84% {
- -ms-transform: translate(-2.5px, 0.5px) rotate(-1.5deg)
-}
- 86% {
- -ms-transform: translate(-1.5px, -0.5px) rotate(-1.5deg)
-}
- 88% {
- -ms-transform: translate(-2.5px, -1.5px) rotate(0.5deg)
-}
- 90% {
- -ms-transform: translate(1.5px, 1.5px) rotate(-0.5deg)
-}
- 92% {
- -ms-transform: translate(0.5px, -0.5px) rotate(-1.5deg)
-}
- 94% {
- -ms-transform: translate(-1.5px, -2.5px) rotate(-0.5deg)
-}
- 96% {
- -ms-transform: translate(1.5px, -1.5px) rotate(-0.5deg)
-}
- 98% {
- -ms-transform: translate(0.5px, 1.5px) rotate(-0.5deg)
-}
-}
-@keyframes shake-base {
- 0% {
- transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- transform: translate(-1.5px, 1.5px) rotate(0.5deg)
-}
- 4% {
- transform: translate(-2.5px, -1.5px) rotate(-1.5deg)
-}
- 6% {
- transform: translate(-0.5px, 1.5px) rotate(-1.5deg)
-}
- 8% {
- transform: translate(1.5px, -0.5px) rotate(-1.5deg)
-}
- 10% {
- transform: translate(0.5px, -0.5px) rotate(-0.5deg)
-}
- 12% {
- transform: translate(0.5px, -1.5px) rotate(-0.5deg)
-}
- 14% {
- transform: translate(-0.5px, 0.5px) rotate(-1.5deg)
-}
- 16% {
- transform: translate(1.5px, -0.5px) rotate(0.5deg)
-}
- 18% {
- transform: translate(1.5px, 1.5px) rotate(0.5deg)
-}
- 20% {
- transform: translate(-2.5px, 0.5px) rotate(0.5deg)
-}
- 22% {
- transform: translate(-0.5px, 0.5px) rotate(-0.5deg)
-}
- 24% {
- transform: translate(1.5px, -1.5px) rotate(0.5deg)
-}
- 26% {
- transform: translate(-2.5px, 1.5px) rotate(-0.5deg)
-}
- 28% {
- transform: translate(-2.5px, 0.5px) rotate(-0.5deg)
-}
- 30% {
- transform: translate(1.5px, 1.5px) rotate(-0.5deg)
-}
- 32% {
- transform: translate(0.5px, 1.5px) rotate(0.5deg)
-}
- 34% {
- transform: translate(1.5px, 1.5px) rotate(-0.5deg)
-}
- 36% {
- transform: translate(1.5px, -1.5px) rotate(-0.5deg)
-}
- 38% {
- transform: translate(-1.5px, 1.5px) rotate(0.5deg)
-}
- 40% {
- transform: translate(0.5px, -2.5px) rotate(-0.5deg)
-}
- 42% {
- transform: translate(-2.5px, -0.5px) rotate(-0.5deg)
-}
- 44% {
- transform: translate(-2.5px, -0.5px) rotate(-0.5deg)
-}
- 46% {
- transform: translate(-1.5px, -0.5px) rotate(-0.5deg)
-}
- 48% {
- transform: translate(-2.5px, 1.5px) rotate(-0.5deg)
-}
- 50% {
- transform: translate(-0.5px, -2.5px) rotate(0.5deg)
-}
- 52% {
- transform: translate(0.5px, 1.5px) rotate(-1.5deg)
-}
- 54% {
- transform: translate(-0.5px, -2.5px) rotate(0.5deg)
-}
- 56% {
- transform: translate(-0.5px, 0.5px) rotate(-0.5deg)
-}
- 58% {
- transform: translate(-0.5px, 1.5px) rotate(0.5deg)
-}
- 60% {
- transform: translate(0.5px, -2.5px) rotate(0.5deg)
-}
- 62% {
- transform: translate(1.5px, -2.5px) rotate(0.5deg)
-}
- 64% {
- transform: translate(-1.5px, 1.5px) rotate(-0.5deg)
-}
- 66% {
- transform: translate(-0.5px, 1.5px) rotate(-0.5deg)
-}
- 68% {
- transform: translate(-1.5px, -0.5px) rotate(0.5deg)
-}
- 70% {
- transform: translate(0.5px, 0.5px) rotate(-0.5deg)
-}
- 72% {
- transform: translate(1.5px, 1.5px) rotate(0.5deg)
-}
- 74% {
- transform: translate(1.5px, -1.5px) rotate(-1.5deg)
-}
- 76% {
- transform: translate(1.5px, 1.5px) rotate(-1.5deg)
-}
- 78% {
- transform: translate(-2.5px, -1.5px) rotate(-1.5deg)
-}
- 80% {
- transform: translate(0.5px, 1.5px) rotate(-0.5deg)
-}
- 82% {
- transform: translate(-2.5px, -1.5px) rotate(0.5deg)
-}
- 84% {
- transform: translate(-0.5px, -1.5px) rotate(-0.5deg)
-}
- 86% {
- transform: translate(-1.5px, 0.5px) rotate(-0.5deg)
-}
- 88% {
- transform: translate(1.5px, 0.5px) rotate(-0.5deg)
-}
- 90% {
- transform: translate(0.5px, -1.5px) rotate(-1.5deg)
-}
- 92% {
- transform: translate(0.5px, 0.5px) rotate(-1.5deg)
-}
- 94% {
- transform: translate(1.5px, 1.5px) rotate(0.5deg)
-}
- 96% {
- transform: translate(-1.5px, -1.5px) rotate(-1.5deg)
-}
- 98% {
- transform: translate(-2.5px, -0.5px) rotate(-1.5deg)
-}
-}
-@-webkit-keyframes shake-little {
- 0% {
- -webkit-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 4% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 6% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 8% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 10% {
- -webkit-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 12% {
- -webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 14% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 16% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 18% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 20% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 22% {
- -webkit-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 24% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 26% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 28% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 30% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 32% {
- -webkit-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 34% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 36% {
- -webkit-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 38% {
- -webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 40% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 42% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 44% {
- -webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 46% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 48% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 50% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 52% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 54% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 56% {
- -webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 58% {
- -webkit-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 60% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 62% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 64% {
- -webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 66% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 68% {
- -webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 70% {
- -webkit-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 72% {
- -webkit-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 74% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 76% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 78% {
- -webkit-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 80% {
- -webkit-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 82% {
- -webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 84% {
- -webkit-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 86% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 88% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 90% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 92% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 94% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 96% {
- -webkit-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 98% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
-}
-@-ms-keyframes shake-little {
- 0% {
- -ms-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -ms-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 4% {
- -ms-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 6% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 8% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 10% {
- -ms-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 12% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 14% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 16% {
- -ms-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 18% {
- -ms-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 20% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 22% {
- -ms-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 24% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 26% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 28% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 30% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 32% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 34% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 36% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 38% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 40% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 42% {
- -ms-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 44% {
- -ms-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 46% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 48% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 50% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 52% {
- -ms-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 54% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 56% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 58% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 60% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 62% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 64% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 66% {
- -ms-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 68% {
- -ms-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 70% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 72% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 74% {
- -ms-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 76% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 78% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 80% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 82% {
- -ms-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 84% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 86% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 88% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 90% {
- -ms-transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 92% {
- -ms-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 94% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 96% {
- -ms-transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 98% {
- -ms-transform: translate(0px, -1px) rotate(-0.5deg)
-}
-}
-@keyframes shake-little {
- 0% {
- transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 4% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 6% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 8% {
- transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 10% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 12% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 14% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 16% {
- transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 18% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 20% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 22% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 24% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 26% {
- transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 28% {
- transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 30% {
- transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 32% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 34% {
- transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 36% {
- transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 38% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 40% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 42% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 44% {
- transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 46% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 48% {
- transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 50% {
- transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 52% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 54% {
- transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 56% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 58% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 60% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 62% {
- transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 64% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 66% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 68% {
- transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 70% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 72% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 74% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 76% {
- transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 78% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 80% {
- transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 82% {
- transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 84% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 86% {
- transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 88% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 90% {
- transform: translate(-1px, -1px) rotate(-0.5deg)
-}
- 92% {
- transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 94% {
- transform: translate(-1px, 0px) rotate(-0.5deg)
-}
- 96% {
- transform: translate(0px, -1px) rotate(-0.5deg)
-}
- 98% {
- transform: translate(0px, -1px) rotate(-0.5deg)
-}
-}
-@-webkit-keyframes shake-slow {
- 0% {
- -webkit-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -webkit-transform: translate(-1px, 8px) rotate(1.5deg)
-}
- 4% {
- -webkit-transform: translate(7px, 0px) rotate(-0.5deg)
-}
- 6% {
- -webkit-transform: translate(8px, 8px) rotate(-3.5deg)
-}
- 8% {
- -webkit-transform: translate(-4px, -3px) rotate(-1.5deg)
-}
- 10% {
- -webkit-transform: translate(5px, 0px) rotate(-2.5deg)
-}
- 12% {
- -webkit-transform: translate(-10px, -3px) rotate(-3.5deg)
-}
- 14% {
- -webkit-transform: translate(5px, 7px) rotate(2.5deg)
-}
- 16% {
- -webkit-transform: translate(8px, -8px) rotate(-1.5deg)
-}
- 18% {
- -webkit-transform: translate(9px, -6px) rotate(-3.5deg)
-}
- 20% {
- -webkit-transform: translate(3px, 1px) rotate(-0.5deg)
-}
- 22% {
- -webkit-transform: translate(6px, 8px) rotate(-2.5deg)
-}
- 24% {
- -webkit-transform: translate(-8px, -1px) rotate(2.5deg)
-}
- 26% {
- -webkit-transform: translate(7px, -10px) rotate(0.5deg)
-}
- 28% {
- -webkit-transform: translate(7px, -4px) rotate(-3.5deg)
-}
- 30% {
- -webkit-transform: translate(-2px, -6px) rotate(-1.5deg)
-}
- 32% {
- -webkit-transform: translate(-1px, 0px) rotate(2.5deg)
-}
- 34% {
- -webkit-transform: translate(6px, 2px) rotate(-0.5deg)
-}
- 36% {
- -webkit-transform: translate(2px, 7px) rotate(1.5deg)
-}
- 38% {
- -webkit-transform: translate(2px, -9px) rotate(1.5deg)
-}
- 40% {
- -webkit-transform: translate(-5px, -1px) rotate(-0.5deg)
-}
- 42% {
- -webkit-transform: translate(-8px, 2px) rotate(-0.5deg)
-}
- 44% {
- -webkit-transform: translate(-4px, 3px) rotate(0.5deg)
-}
- 46% {
- -webkit-transform: translate(-10px, -2px) rotate(-0.5deg)
-}
- 48% {
- -webkit-transform: translate(1px, 9px) rotate(1.5deg)
-}
- 50% {
- -webkit-transform: translate(6px, 7px) rotate(1.5deg)
-}
- 52% {
- -webkit-transform: translate(-8px, 4px) rotate(0.5deg)
-}
- 54% {
- -webkit-transform: translate(6px, -8px) rotate(-2.5deg)
-}
- 56% {
- -webkit-transform: translate(2px, -9px) rotate(-2.5deg)
-}
- 58% {
- -webkit-transform: translate(-2px, -9px) rotate(0.5deg)
-}
- 60% {
- -webkit-transform: translate(2px, 7px) rotate(-0.5deg)
-}
- 62% {
- -webkit-transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 64% {
- -webkit-transform: translate(-9px, -4px) rotate(-3.5deg)
-}
- 66% {
- -webkit-transform: translate(6px, -6px) rotate(0.5deg)
-}
- 68% {
- -webkit-transform: translate(0px, -7px) rotate(-2.5deg)
-}
- 70% {
- -webkit-transform: translate(-10px, 1px) rotate(1.5deg)
-}
- 72% {
- -webkit-transform: translate(-7px, 9px) rotate(2.5deg)
-}
- 74% {
- -webkit-transform: translate(2px, -6px) rotate(-0.5deg)
-}
- 76% {
- -webkit-transform: translate(5px, 1px) rotate(-0.5deg)
-}
- 78% {
- -webkit-transform: translate(-1px, 5px) rotate(2.5deg)
-}
- 80% {
- -webkit-transform: translate(3px, 7px) rotate(2.5deg)
-}
- 82% {
- -webkit-transform: translate(-6px, -7px) rotate(-0.5deg)
-}
- 84% {
- -webkit-transform: translate(-8px, 8px) rotate(-2.5deg)
-}
- 86% {
- -webkit-transform: translate(8px, 3px) rotate(-2.5deg)
-}
- 88% {
- -webkit-transform: translate(-8px, 3px) rotate(-1.5deg)
-}
- 90% {
- -webkit-transform: translate(-7px, -4px) rotate(-3.5deg)
-}
- 92% {
- -webkit-transform: translate(-8px, 4px) rotate(2.5deg)
-}
- 94% {
- -webkit-transform: translate(-6px, -6px) rotate(-3.5deg)
-}
- 96% {
- -webkit-transform: translate(-3px, 2px) rotate(-3.5deg)
-}
- 98% {
- -webkit-transform: translate(2px, 1px) rotate(-0.5deg)
-}
-}
-@-ms-keyframes shake-slow {
- 0% {
- -ms-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -ms-transform: translate(-9px, 1px) rotate(-1.5deg)
-}
- 4% {
- -ms-transform: translate(-10px, -1px) rotate(-3.5deg)
-}
- 6% {
- -ms-transform: translate(6px, 2px) rotate(-1.5deg)
-}
- 8% {
- -ms-transform: translate(-3px, -6px) rotate(-1.5deg)
-}
- 10% {
- -ms-transform: translate(-10px, -3px) rotate(-0.5deg)
-}
- 12% {
- -ms-transform: translate(-8px, 6px) rotate(-2.5deg)
-}
- 14% {
- -ms-transform: translate(7px, 5px) rotate(-1.5deg)
-}
- 16% {
- -ms-transform: translate(2px, 2px) rotate(1.5deg)
-}
- 18% {
- -ms-transform: translate(8px, -2px) rotate(-3.5deg)
-}
- 20% {
- -ms-transform: translate(-9px, 3px) rotate(-3.5deg)
-}
- 22% {
- -ms-transform: translate(8px, -4px) rotate(-1.5deg)
-}
- 24% {
- -ms-transform: translate(-1px, -7px) rotate(2.5deg)
-}
- 26% {
- -ms-transform: translate(9px, 9px) rotate(-0.5deg)
-}
- 28% {
- -ms-transform: translate(9px, -4px) rotate(-3.5deg)
-}
- 30% {
- -ms-transform: translate(6px, -7px) rotate(-0.5deg)
-}
- 32% {
- -ms-transform: translate(9px, 2px) rotate(1.5deg)
-}
- 34% {
- -ms-transform: translate(3px, -9px) rotate(2.5deg)
-}
- 36% {
- -ms-transform: translate(-6px, -4px) rotate(2.5deg)
-}
- 38% {
- -ms-transform: translate(-5px, -9px) rotate(0.5deg)
-}
- 40% {
- -ms-transform: translate(6px, 9px) rotate(-2.5deg)
-}
- 42% {
- -ms-transform: translate(5px, -5px) rotate(0.5deg)
-}
- 44% {
- -ms-transform: translate(8px, 5px) rotate(-3.5deg)
-}
- 46% {
- -ms-transform: translate(-2px, 9px) rotate(1.5deg)
-}
- 48% {
- -ms-transform: translate(-10px, -5px) rotate(-2.5deg)
-}
- 50% {
- -ms-transform: translate(8px, -1px) rotate(-3.5deg)
-}
- 52% {
- -ms-transform: translate(-5px, -7px) rotate(2.5deg)
-}
- 54% {
- -ms-transform: translate(7px, 0px) rotate(2.5deg)
-}
- 56% {
- -ms-transform: translate(-5px, -1px) rotate(-0.5deg)
-}
- 58% {
- -ms-transform: translate(0px, -4px) rotate(-3.5deg)
-}
- 60% {
- -ms-transform: translate(-10px, 2px) rotate(2.5deg)
-}
- 62% {
- -ms-transform: translate(9px, 8px) rotate(0.5deg)
-}
- 64% {
- -ms-transform: translate(-4px, -4px) rotate(-1.5deg)
-}
- 66% {
- -ms-transform: translate(-1px, -9px) rotate(-0.5deg)
-}
- 68% {
- -ms-transform: translate(-6px, -9px) rotate(-2.5deg)
-}
- 70% {
- -ms-transform: translate(-6px, -8px) rotate(-1.5deg)
-}
- 72% {
- -ms-transform: translate(-2px, -3px) rotate(-2.5deg)
-}
- 74% {
- -ms-transform: translate(-8px, 1px) rotate(-0.5deg)
-}
- 76% {
- -ms-transform: translate(-7px, 7px) rotate(2.5deg)
-}
- 78% {
- -ms-transform: translate(7px, 2px) rotate(-3.5deg)
-}
- 80% {
- -ms-transform: translate(-10px, -4px) rotate(-0.5deg)
-}
- 82% {
- -ms-transform: translate(2px, -9px) rotate(1.5deg)
-}
- 84% {
- -ms-transform: translate(3px, 5px) rotate(1.5deg)
-}
- 86% {
- -ms-transform: translate(5px, 2px) rotate(2.5deg)
-}
- 88% {
- -ms-transform: translate(-5px, -1px) rotate(-1.5deg)
-}
- 90% {
- -ms-transform: translate(-1px, -9px) rotate(1.5deg)
-}
- 92% {
- -ms-transform: translate(8px, -6px) rotate(-3.5deg)
-}
- 94% {
- -ms-transform: translate(7px, -9px) rotate(-2.5deg)
-}
- 96% {
- -ms-transform: translate(4px, -5px) rotate(2.5deg)
-}
- 98% {
- -ms-transform: translate(8px, 0px) rotate(-3.5deg)
-}
-}
-@keyframes shake-slow {
- 0% {
- transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- transform: translate(-6px, -8px) rotate(2.5deg)
-}
- 4% {
- transform: translate(3px, -9px) rotate(-0.5deg)
-}
- 6% {
- transform: translate(3px, -8px) rotate(2.5deg)
-}
- 8% {
- transform: translate(0px, 5px) rotate(0.5deg)
-}
- 10% {
- transform: translate(3px, 2px) rotate(0.5deg)
-}
- 12% {
- transform: translate(8px, 0px) rotate(0.5deg)
-}
- 14% {
- transform: translate(4px, 7px) rotate(-3.5deg)
-}
- 16% {
- transform: translate(-4px, 0px) rotate(-0.5deg)
-}
- 18% {
- transform: translate(1px, 3px) rotate(-1.5deg)
-}
- 20% {
- transform: translate(-8px, -1px) rotate(-3.5deg)
-}
- 22% {
- transform: translate(5px, 9px) rotate(2.5deg)
-}
- 24% {
- transform: translate(-9px, -10px) rotate(-2.5deg)
-}
- 26% {
- transform: translate(0px, 7px) rotate(-1.5deg)
-}
- 28% {
- transform: translate(-10px, 7px) rotate(2.5deg)
-}
- 30% {
- transform: translate(8px, -7px) rotate(-1.5deg)
-}
- 32% {
- transform: translate(0px, -8px) rotate(-0.5deg)
-}
- 34% {
- transform: translate(9px, 7px) rotate(-0.5deg)
-}
- 36% {
- transform: translate(-7px, 6px) rotate(0.5deg)
-}
- 38% {
- transform: translate(8px, -10px) rotate(-0.5deg)
-}
- 40% {
- transform: translate(8px, 0px) rotate(0.5deg)
-}
- 42% {
- transform: translate(0px, -2px) rotate(1.5deg)
-}
- 44% {
- transform: translate(5px, -2px) rotate(-0.5deg)
-}
- 46% {
- transform: translate(1px, -10px) rotate(-2.5deg)
-}
- 48% {
- transform: translate(4px, -1px) rotate(2.5deg)
-}
- 50% {
- transform: translate(-5px, -4px) rotate(2.5deg)
-}
- 52% {
- transform: translate(3px, 2px) rotate(-3.5deg)
-}
- 54% {
- transform: translate(1px, -6px) rotate(-0.5deg)
-}
- 56% {
- transform: translate(-3px, -4px) rotate(-0.5deg)
-}
- 58% {
- transform: translate(-10px, -10px) rotate(2.5deg)
-}
- 60% {
- transform: translate(8px, 7px) rotate(-3.5deg)
-}
- 62% {
- transform: translate(9px, -6px) rotate(-3.5deg)
-}
- 64% {
- transform: translate(-5px, 8px) rotate(-0.5deg)
-}
- 66% {
- transform: translate(1px, -3px) rotate(0.5deg)
-}
- 68% {
- transform: translate(-6px, 9px) rotate(1.5deg)
-}
- 70% {
- transform: translate(-5px, 8px) rotate(-1.5deg)
-}
- 72% {
- transform: translate(-10px, -2px) rotate(2.5deg)
-}
- 74% {
- transform: translate(0px, -4px) rotate(1.5deg)
-}
- 76% {
- transform: translate(-2px, -5px) rotate(0.5deg)
-}
- 78% {
- transform: translate(-2px, 9px) rotate(-3.5deg)
-}
- 80% {
- transform: translate(7px, 4px) rotate(-3.5deg)
-}
- 82% {
- transform: translate(-1px, -4px) rotate(-1.5deg)
-}
- 84% {
- transform: translate(3px, -6px) rotate(0.5deg)
-}
- 86% {
- transform: translate(7px, -8px) rotate(-1.5deg)
-}
- 88% {
- transform: translate(4px, -9px) rotate(1.5deg)
-}
- 90% {
- transform: translate(1px, -6px) rotate(2.5deg)
-}
- 92% {
- transform: translate(-8px, -1px) rotate(-1.5deg)
-}
- 94% {
- transform: translate(-4px, -1px) rotate(0.5deg)
-}
- 96% {
- transform: translate(-6px, 9px) rotate(1.5deg)
-}
- 98% {
- transform: translate(7px, 4px) rotate(-0.5deg)
-}
-}
-@-webkit-keyframes shake-hard {
- 0% {
- -webkit-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -webkit-transform: translate(5px, -4px) rotate(-2.5deg)
-}
- 4% {
- -webkit-transform: translate(-10px, 5px) rotate(2.5deg)
-}
- 6% {
- -webkit-transform: translate(0px, 5px) rotate(-3.5deg)
-}
- 8% {
- -webkit-transform: translate(-6px, -10px) rotate(-1.5deg)
-}
- 10% {
- -webkit-transform: translate(2px, -7px) rotate(1.5deg)
-}
- 12% {
- -webkit-transform: translate(0px, 1px) rotate(0.5deg)
-}
- 14% {
- -webkit-transform: translate(7px, -9px) rotate(-0.5deg)
-}
- 16% {
- -webkit-transform: translate(-8px, 4px) rotate(-2.5deg)
-}
- 18% {
- -webkit-transform: translate(-9px, -4px) rotate(-0.5deg)
-}
- 20% {
- -webkit-transform: translate(-8px, -8px) rotate(0.5deg)
-}
- 22% {
- -webkit-transform: translate(-7px, 0px) rotate(-0.5deg)
-}
- 24% {
- -webkit-transform: translate(-10px, -5px) rotate(-3.5deg)
-}
- 26% {
- -webkit-transform: translate(1px, -10px) rotate(-0.5deg)
-}
- 28% {
- -webkit-transform: translate(5px, 2px) rotate(-1.5deg)
-}
- 30% {
- -webkit-transform: translate(-8px, 5px) rotate(-0.5deg)
-}
- 32% {
- -webkit-transform: translate(-4px, 2px) rotate(1.5deg)
-}
- 34% {
- -webkit-transform: translate(-9px, 8px) rotate(1.5deg)
-}
- 36% {
- -webkit-transform: translate(8px, -3px) rotate(1.5deg)
-}
- 38% {
- -webkit-transform: translate(-10px, 7px) rotate(-0.5deg)
-}
- 40% {
- -webkit-transform: translate(-7px, 1px) rotate(-3.5deg)
-}
- 42% {
- -webkit-transform: translate(-9px, 7px) rotate(0.5deg)
-}
- 44% {
- -webkit-transform: translate(4px, 2px) rotate(-3.5deg)
-}
- 46% {
- -webkit-transform: translate(8px, 4px) rotate(2.5deg)
-}
- 48% {
- -webkit-transform: translate(-5px, -1px) rotate(-2.5deg)
-}
- 50% {
- -webkit-transform: translate(-7px, 5px) rotate(-2.5deg)
-}
- 52% {
- -webkit-transform: translate(-1px, -7px) rotate(-3.5deg)
-}
- 54% {
- -webkit-transform: translate(-2px, -3px) rotate(0.5deg)
-}
- 56% {
- -webkit-transform: translate(-4px, -6px) rotate(-2.5deg)
-}
- 58% {
- -webkit-transform: translate(5px, 4px) rotate(-2.5deg)
-}
- 60% {
- -webkit-transform: translate(-3px, 2px) rotate(-0.5deg)
-}
- 62% {
- -webkit-transform: translate(-4px, -10px) rotate(-1.5deg)
-}
- 64% {
- -webkit-transform: translate(-4px, -9px) rotate(-2.5deg)
-}
- 66% {
- -webkit-transform: translate(3px, -8px) rotate(-1.5deg)
-}
- 68% {
- -webkit-transform: translate(-5px, -2px) rotate(0.5deg)
-}
- 70% {
- -webkit-transform: translate(-3px, -1px) rotate(-3.5deg)
-}
- 72% {
- -webkit-transform: translate(9px, -2px) rotate(0.5deg)
-}
- 74% {
- -webkit-transform: translate(7px, -6px) rotate(-2.5deg)
-}
- 76% {
- -webkit-transform: translate(1px, 2px) rotate(-1.5deg)
-}
- 78% {
- -webkit-transform: translate(-3px, -5px) rotate(-1.5deg)
-}
- 80% {
- -webkit-transform: translate(-5px, 3px) rotate(2.5deg)
-}
- 82% {
- -webkit-transform: translate(-2px, -1px) rotate(-3.5deg)
-}
- 84% {
- -webkit-transform: translate(-8px, 7px) rotate(0.5deg)
-}
- 86% {
- -webkit-transform: translate(-2px, 4px) rotate(-0.5deg)
-}
- 88% {
- -webkit-transform: translate(4px, 7px) rotate(-3.5deg)
-}
- 90% {
- -webkit-transform: translate(2px, 7px) rotate(0.5deg)
-}
- 92% {
- -webkit-transform: translate(-3px, 6px) rotate(-3.5deg)
-}
- 94% {
- -webkit-transform: translate(1px, 8px) rotate(1.5deg)
-}
- 96% {
- -webkit-transform: translate(-8px, -2px) rotate(1.5deg)
-}
- 98% {
- -webkit-transform: translate(-5px, 6px) rotate(0.5deg)
-}
-}
-@-ms-keyframes shake-hard {
- 0% {
- -ms-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -ms-transform: translate(-1px, 3px) rotate(-1.5deg)
-}
- 4% {
- -ms-transform: translate(0px, -6px) rotate(2.5deg)
-}
- 6% {
- -ms-transform: translate(3px, 6px) rotate(-0.5deg)
-}
- 8% {
- -ms-transform: translate(-1px, -7px) rotate(0.5deg)
-}
- 10% {
- -ms-transform: translate(-3px, -2px) rotate(-2.5deg)
-}
- 12% {
- -ms-transform: translate(-6px, 7px) rotate(-3.5deg)
-}
- 14% {
- -ms-transform: translate(4px, -4px) rotate(1.5deg)
-}
- 16% {
- -ms-transform: translate(-1px, 4px) rotate(0.5deg)
-}
- 18% {
- -ms-transform: translate(2px, 9px) rotate(0.5deg)
-}
- 20% {
- -ms-transform: translate(-4px, -2px) rotate(0.5deg)
-}
- 22% {
- -ms-transform: translate(0px, 1px) rotate(0.5deg)
-}
- 24% {
- -ms-transform: translate(-2px, 0px) rotate(1.5deg)
-}
- 26% {
- -ms-transform: translate(3px, -2px) rotate(-3.5deg)
-}
- 28% {
- -ms-transform: translate(4px, -9px) rotate(-0.5deg)
-}
- 30% {
- -ms-transform: translate(6px, -7px) rotate(2.5deg)
-}
- 32% {
- -ms-transform: translate(6px, -9px) rotate(-2.5deg)
-}
- 34% {
- -ms-transform: translate(1px, 4px) rotate(-3.5deg)
-}
- 36% {
- -ms-transform: translate(7px, -5px) rotate(-0.5deg)
-}
- 38% {
- -ms-transform: translate(9px, -6px) rotate(-1.5deg)
-}
- 40% {
- -ms-transform: translate(-7px, 6px) rotate(2.5deg)
-}
- 42% {
- -ms-transform: translate(-8px, -9px) rotate(0.5deg)
-}
- 44% {
- -ms-transform: translate(-9px, -6px) rotate(1.5deg)
-}
- 46% {
- -ms-transform: translate(6px, 6px) rotate(-3.5deg)
-}
- 48% {
- -ms-transform: translate(-6px, 9px) rotate(-1.5deg)
-}
- 50% {
- -ms-transform: translate(8px, 1px) rotate(2.5deg)
-}
- 52% {
- -ms-transform: translate(-8px, 2px) rotate(-3.5deg)
-}
- 54% {
- -ms-transform: translate(3px, 3px) rotate(0.5deg)
-}
- 56% {
- -ms-transform: translate(-7px, -7px) rotate(0.5deg)
-}
- 58% {
- -ms-transform: translate(-6px, -5px) rotate(0.5deg)
-}
- 60% {
- -ms-transform: translate(-4px, 9px) rotate(-3.5deg)
-}
- 62% {
- -ms-transform: translate(-2px, -4px) rotate(-3.5deg)
-}
- 64% {
- -ms-transform: translate(9px, -2px) rotate(-3.5deg)
-}
- 66% {
- -ms-transform: translate(-4px, 0px) rotate(-0.5deg)
-}
- 68% {
- -ms-transform: translate(3px, -2px) rotate(-2.5deg)
-}
- 70% {
- -ms-transform: translate(6px, -6px) rotate(-3.5deg)
-}
- 72% {
- -ms-transform: translate(4px, -6px) rotate(-3.5deg)
-}
- 74% {
- -ms-transform: translate(1px, 7px) rotate(-0.5deg)
-}
- 76% {
- -ms-transform: translate(-2px, 8px) rotate(2.5deg)
-}
- 78% {
- -ms-transform: translate(2px, -2px) rotate(-1.5deg)
-}
- 80% {
- -ms-transform: translate(6px, 8px) rotate(0.5deg)
-}
- 82% {
- -ms-transform: translate(0px, 0px) rotate(-3.5deg)
-}
- 84% {
- -ms-transform: translate(-5px, -5px) rotate(-2.5deg)
-}
- 86% {
- -ms-transform: translate(-3px, 2px) rotate(2.5deg)
-}
- 88% {
- -ms-transform: translate(7px, -9px) rotate(-2.5deg)
-}
- 90% {
- -ms-transform: translate(5px, -5px) rotate(-3.5deg)
-}
- 92% {
- -ms-transform: translate(-2px, 8px) rotate(0.5deg)
-}
- 94% {
- -ms-transform: translate(-5px, -9px) rotate(-2.5deg)
-}
- 96% {
- -ms-transform: translate(8px, -9px) rotate(0.5deg)
-}
- 98% {
- -ms-transform: translate(-9px, 4px) rotate(1.5deg)
-}
-}
-@keyframes shake-hard {
- 0% {
- transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- transform: translate(0px, 4px) rotate(0.5deg)
-}
- 4% {
- transform: translate(6px, -2px) rotate(-3.5deg)
-}
- 6% {
- transform: translate(-3px, -8px) rotate(-2.5deg)
-}
- 8% {
- transform: translate(-1px, 9px) rotate(2.5deg)
-}
- 10% {
- transform: translate(6px, 5px) rotate(-2.5deg)
-}
- 12% {
- transform: translate(-3px, 6px) rotate(-2.5deg)
-}
- 14% {
- transform: translate(-9px, 1px) rotate(-0.5deg)
-}
- 16% {
- transform: translate(-6px, 5px) rotate(2.5deg)
-}
- 18% {
- transform: translate(-9px, 8px) rotate(0.5deg)
-}
- 20% {
- transform: translate(-9px, 6px) rotate(-2.5deg)
-}
- 22% {
- transform: translate(-5px, 6px) rotate(0.5deg)
-}
- 24% {
- transform: translate(6px, 3px) rotate(1.5deg)
-}
- 26% {
- transform: translate(8px, -10px) rotate(-2.5deg)
-}
- 28% {
- transform: translate(0px, -5px) rotate(-3.5deg)
-}
- 30% {
- transform: translate(6px, -10px) rotate(2.5deg)
-}
- 32% {
- transform: translate(3px, 0px) rotate(-3.5deg)
-}
- 34% {
- transform: translate(4px, -6px) rotate(-3.5deg)
-}
- 36% {
- transform: translate(-5px, 4px) rotate(-0.5deg)
-}
- 38% {
- transform: translate(-7px, -6px) rotate(-1.5deg)
-}
- 40% {
- transform: translate(4px, -9px) rotate(-3.5deg)
-}
- 42% {
- transform: translate(-9px, -2px) rotate(-1.5deg)
-}
- 44% {
- transform: translate(0px, -3px) rotate(1.5deg)
-}
- 46% {
- transform: translate(-5px, -5px) rotate(-2.5deg)
-}
- 48% {
- transform: translate(-6px, 2px) rotate(-3.5deg)
-}
- 50% {
- transform: translate(0px, -5px) rotate(-1.5deg)
-}
- 52% {
- transform: translate(6px, 1px) rotate(-2.5deg)
-}
- 54% {
- transform: translate(9px, 6px) rotate(2.5deg)
-}
- 56% {
- transform: translate(-8px, -10px) rotate(-0.5deg)
-}
- 58% {
- transform: translate(6px, -2px) rotate(-1.5deg)
-}
- 60% {
- transform: translate(-4px, -8px) rotate(-1.5deg)
-}
- 62% {
- transform: translate(0px, -9px) rotate(0.5deg)
-}
- 64% {
- transform: translate(-7px, -6px) rotate(2.5deg)
-}
- 66% {
- transform: translate(8px, 6px) rotate(2.5deg)
-}
- 68% {
- transform: translate(-10px, -7px) rotate(-2.5deg)
-}
- 70% {
- transform: translate(-1px, 9px) rotate(-2.5deg)
-}
- 72% {
- transform: translate(-6px, 8px) rotate(-2.5deg)
-}
- 74% {
- transform: translate(2px, 5px) rotate(-1.5deg)
-}
- 76% {
- transform: translate(-7px, 6px) rotate(1.5deg)
-}
- 78% {
- transform: translate(3px, -9px) rotate(0.5deg)
-}
- 80% {
- transform: translate(-4px, -9px) rotate(-1.5deg)
-}
- 82% {
- transform: translate(0px, 7px) rotate(0.5deg)
-}
- 84% {
- transform: translate(-4px, -3px) rotate(-1.5deg)
-}
- 86% {
- transform: translate(-10px, 8px) rotate(-0.5deg)
-}
- 88% {
- transform: translate(-9px, 1px) rotate(-0.5deg)
-}
- 90% {
- transform: translate(-3px, 6px) rotate(1.5deg)
-}
- 92% {
- transform: translate(-8px, -10px) rotate(-3.5deg)
-}
- 94% {
- transform: translate(-8px, -7px) rotate(2.5deg)
-}
- 96% {
- transform: translate(-2px, 1px) rotate(2.5deg)
-}
- 98% {
- transform: translate(-3px, 4px) rotate(-2.5deg)
-}
-}
-@-webkit-keyframes shake-horizontal {
- 0% {
- -webkit-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -webkit-transform: translate(-8px, 0px) rotate(0deg)
-}
- 4% {
- -webkit-transform: translate(3px, 0px) rotate(0deg)
-}
- 6% {
- -webkit-transform: translate(7px, 0px) rotate(0deg)
-}
- 8% {
- -webkit-transform: translate(1px, 0px) rotate(0deg)
-}
- 10% {
- -webkit-transform: translate(4px, 0px) rotate(0deg)
-}
- 12% {
- -webkit-transform: translate(3px, 0px) rotate(0deg)
-}
- 14% {
- -webkit-transform: translate(7px, 0px) rotate(0deg)
-}
- 16% {
- -webkit-transform: translate(-3px, 0px) rotate(0deg)
-}
- 18% {
- -webkit-transform: translate(-5px, 0px) rotate(0deg)
-}
- 20% {
- -webkit-transform: translate(-10px, 0px) rotate(0deg)
-}
- 22% {
- -webkit-transform: translate(8px, 0px) rotate(0deg)
-}
- 24% {
- -webkit-transform: translate(2px, 0px) rotate(0deg)
-}
- 26% {
- -webkit-transform: translate(2px, 0px) rotate(0deg)
-}
- 28% {
- -webkit-transform: translate(3px, 0px) rotate(0deg)
-}
- 30% {
- -webkit-transform: translate(7px, 0px) rotate(0deg)
-}
- 32% {
- -webkit-transform: translate(-8px, 0px) rotate(0deg)
-}
- 34% {
- -webkit-transform: translate(-10px, 0px) rotate(0deg)
-}
- 36% {
- -webkit-transform: translate(8px, 0px) rotate(0deg)
-}
- 38% {
- -webkit-transform: translate(-5px, 0px) rotate(0deg)
-}
- 40% {
- -webkit-transform: translate(-1px, 0px) rotate(0deg)
-}
- 42% {
- -webkit-transform: translate(6px, 0px) rotate(0deg)
-}
- 44% {
- -webkit-transform: translate(-3px, 0px) rotate(0deg)
-}
- 46% {
- -webkit-transform: translate(-1px, 0px) rotate(0deg)
-}
- 48% {
- -webkit-transform: translate(9px, 0px) rotate(0deg)
-}
- 50% {
- -webkit-transform: translate(-3px, 0px) rotate(0deg)
-}
- 52% {
- -webkit-transform: translate(8px, 0px) rotate(0deg)
-}
- 54% {
- -webkit-transform: translate(4px, 0px) rotate(0deg)
-}
- 56% {
- -webkit-transform: translate(4px, 0px) rotate(0deg)
-}
- 58% {
- -webkit-transform: translate(2px, 0px) rotate(0deg)
-}
- 60% {
- -webkit-transform: translate(2px, 0px) rotate(0deg)
-}
- 62% {
- -webkit-transform: translate(-9px, 0px) rotate(0deg)
-}
- 64% {
- -webkit-transform: translate(-6px, 0px) rotate(0deg)
-}
- 66% {
- -webkit-transform: translate(-10px, 0px) rotate(0deg)
-}
- 68% {
- -webkit-transform: translate(6px, 0px) rotate(0deg)
-}
- 70% {
- -webkit-transform: translate(7px, 0px) rotate(0deg)
-}
- 72% {
- -webkit-transform: translate(-1px, 0px) rotate(0deg)
-}
- 74% {
- -webkit-transform: translate(-1px, 0px) rotate(0deg)
-}
- 76% {
- -webkit-transform: translate(4px, 0px) rotate(0deg)
-}
- 78% {
- -webkit-transform: translate(1px, 0px) rotate(0deg)
-}
- 80% {
- -webkit-transform: translate(-6px, 0px) rotate(0deg)
-}
- 82% {
- -webkit-transform: translate(-3px, 0px) rotate(0deg)
-}
- 84% {
- -webkit-transform: translate(-8px, 0px) rotate(0deg)
-}
- 86% {
- -webkit-transform: translate(5px, 0px) rotate(0deg)
-}
- 88% {
- -webkit-transform: translate(-3px, 0px) rotate(0deg)
-}
- 90% {
- -webkit-transform: translate(-7px, 0px) rotate(0deg)
-}
- 92% {
- -webkit-transform: translate(-4px, 0px) rotate(0deg)
-}
- 94% {
- -webkit-transform: translate(2px, 0px) rotate(0deg)
-}
- 96% {
- -webkit-transform: translate(-9px, 0px) rotate(0deg)
-}
- 98% {
- -webkit-transform: translate(3px, 0px) rotate(0deg)
-}
-}
-@-ms-keyframes shake-horizontal {
- 0% {
- -ms-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -ms-transform: translate(-9px, 0px) rotate(0deg)
-}
- 4% {
- -ms-transform: translate(3px, 0px) rotate(0deg)
-}
- 6% {
- -ms-transform: translate(-10px, 0px) rotate(0deg)
-}
- 8% {
- -ms-transform: translate(2px, 0px) rotate(0deg)
-}
- 10% {
- -ms-transform: translate(5px, 0px) rotate(0deg)
-}
- 12% {
- -ms-transform: translate(-9px, 0px) rotate(0deg)
-}
- 14% {
- -ms-transform: translate(-8px, 0px) rotate(0deg)
-}
- 16% {
- -ms-transform: translate(6px, 0px) rotate(0deg)
-}
- 18% {
- -ms-transform: translate(1px, 0px) rotate(0deg)
-}
- 20% {
- -ms-transform: translate(7px, 0px) rotate(0deg)
-}
- 22% {
- -ms-transform: translate(4px, 0px) rotate(0deg)
-}
- 24% {
- -ms-transform: translate(9px, 0px) rotate(0deg)
-}
- 26% {
- -ms-transform: translate(2px, 0px) rotate(0deg)
-}
- 28% {
- -ms-transform: translate(4px, 0px) rotate(0deg)
-}
- 30% {
- -ms-transform: translate(-9px, 0px) rotate(0deg)
-}
- 32% {
- -ms-transform: translate(9px, 0px) rotate(0deg)
-}
- 34% {
- -ms-transform: translate(-4px, 0px) rotate(0deg)
-}
- 36% {
- -ms-transform: translate(-6px, 0px) rotate(0deg)
-}
- 38% {
- -ms-transform: translate(-3px, 0px) rotate(0deg)
-}
- 40% {
- -ms-transform: translate(-8px, 0px) rotate(0deg)
-}
- 42% {
- -ms-transform: translate(-8px, 0px) rotate(0deg)
-}
- 44% {
- -ms-transform: translate(-2px, 0px) rotate(0deg)
-}
- 46% {
- -ms-transform: translate(-7px, 0px) rotate(0deg)
-}
- 48% {
- -ms-transform: translate(-1px, 0px) rotate(0deg)
-}
- 50% {
- -ms-transform: translate(-8px, 0px) rotate(0deg)
-}
- 52% {
- -ms-transform: translate(0px, 0px) rotate(0deg)
-}
- 54% {
- -ms-transform: translate(6px, 0px) rotate(0deg)
-}
- 56% {
- -ms-transform: translate(1px, 0px) rotate(0deg)
-}
- 58% {
- -ms-transform: translate(-5px, 0px) rotate(0deg)
-}
- 60% {
- -ms-transform: translate(9px, 0px) rotate(0deg)
-}
- 62% {
- -ms-transform: translate(-3px, 0px) rotate(0deg)
-}
- 64% {
- -ms-transform: translate(-5px, 0px) rotate(0deg)
-}
- 66% {
- -ms-transform: translate(-6px, 0px) rotate(0deg)
-}
- 68% {
- -ms-transform: translate(5px, 0px) rotate(0deg)
-}
- 70% {
- -ms-transform: translate(-3px, 0px) rotate(0deg)
-}
- 72% {
- -ms-transform: translate(-1px, 0px) rotate(0deg)
-}
- 74% {
- -ms-transform: translate(-6px, 0px) rotate(0deg)
-}
- 76% {
- -ms-transform: translate(-2px, 0px) rotate(0deg)
-}
- 78% {
- -ms-transform: translate(1px, 0px) rotate(0deg)
-}
- 80% {
- -ms-transform: translate(4px, 0px) rotate(0deg)
-}
- 82% {
- -ms-transform: translate(7px, 0px) rotate(0deg)
-}
- 84% {
- -ms-transform: translate(-7px, 0px) rotate(0deg)
-}
- 86% {
- -ms-transform: translate(-4px, 0px) rotate(0deg)
-}
- 88% {
- -ms-transform: translate(9px, 0px) rotate(0deg)
-}
- 90% {
- -ms-transform: translate(-6px, 0px) rotate(0deg)
-}
- 92% {
- -ms-transform: translate(-3px, 0px) rotate(0deg)
-}
- 94% {
- -ms-transform: translate(-8px, 0px) rotate(0deg)
-}
- 96% {
- -ms-transform: translate(4px, 0px) rotate(0deg)
-}
- 98% {
- -ms-transform: translate(6px, 0px) rotate(0deg)
-}
-}
-@keyframes shake-horizontal {
- 0% {
- transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- transform: translate(-7px, 0px) rotate(0deg)
-}
- 4% {
- transform: translate(7px, 0px) rotate(0deg)
-}
- 6% {
- transform: translate(5px, 0px) rotate(0deg)
-}
- 8% {
- transform: translate(9px, 0px) rotate(0deg)
-}
- 10% {
- transform: translate(9px, 0px) rotate(0deg)
-}
- 12% {
- transform: translate(3px, 0px) rotate(0deg)
-}
- 14% {
- transform: translate(9px, 0px) rotate(0deg)
-}
- 16% {
- transform: translate(-6px, 0px) rotate(0deg)
-}
- 18% {
- transform: translate(8px, 0px) rotate(0deg)
-}
- 20% {
- transform: translate(-2px, 0px) rotate(0deg)
-}
- 22% {
- transform: translate(-1px, 0px) rotate(0deg)
-}
- 24% {
- transform: translate(0px, 0px) rotate(0deg)
-}
- 26% {
- transform: translate(-6px, 0px) rotate(0deg)
-}
- 28% {
- transform: translate(-5px, 0px) rotate(0deg)
-}
- 30% {
- transform: translate(-4px, 0px) rotate(0deg)
-}
- 32% {
- transform: translate(-10px, 0px) rotate(0deg)
-}
- 34% {
- transform: translate(9px, 0px) rotate(0deg)
-}
- 36% {
- transform: translate(4px, 0px) rotate(0deg)
-}
- 38% {
- transform: translate(-1px, 0px) rotate(0deg)
-}
- 40% {
- transform: translate(2px, 0px) rotate(0deg)
-}
- 42% {
- transform: translate(2px, 0px) rotate(0deg)
-}
- 44% {
- transform: translate(-4px, 0px) rotate(0deg)
-}
- 46% {
- transform: translate(8px, 0px) rotate(0deg)
-}
- 48% {
- transform: translate(-6px, 0px) rotate(0deg)
-}
- 50% {
- transform: translate(4px, 0px) rotate(0deg)
-}
- 52% {
- transform: translate(-5px, 0px) rotate(0deg)
-}
- 54% {
- transform: translate(6px, 0px) rotate(0deg)
-}
- 56% {
- transform: translate(-5px, 0px) rotate(0deg)
-}
- 58% {
- transform: translate(0px, 0px) rotate(0deg)
-}
- 60% {
- transform: translate(3px, 0px) rotate(0deg)
-}
- 62% {
- transform: translate(5px, 0px) rotate(0deg)
-}
- 64% {
- transform: translate(-4px, 0px) rotate(0deg)
-}
- 66% {
- transform: translate(-8px, 0px) rotate(0deg)
-}
- 68% {
- transform: translate(4px, 0px) rotate(0deg)
-}
- 70% {
- transform: translate(-5px, 0px) rotate(0deg)
-}
- 72% {
- transform: translate(7px, 0px) rotate(0deg)
-}
- 74% {
- transform: translate(-5px, 0px) rotate(0deg)
-}
- 76% {
- transform: translate(1px, 0px) rotate(0deg)
-}
- 78% {
- transform: translate(8px, 0px) rotate(0deg)
-}
- 80% {
- transform: translate(8px, 0px) rotate(0deg)
-}
- 82% {
- transform: translate(7px, 0px) rotate(0deg)
-}
- 84% {
- transform: translate(-10px, 0px) rotate(0deg)
-}
- 86% {
- transform: translate(9px, 0px) rotate(0deg)
-}
- 88% {
- transform: translate(-1px, 0px) rotate(0deg)
-}
- 90% {
- transform: translate(0px, 0px) rotate(0deg)
-}
- 92% {
- transform: translate(-2px, 0px) rotate(0deg)
-}
- 94% {
- transform: translate(5px, 0px) rotate(0deg)
-}
- 96% {
- transform: translate(5px, 0px) rotate(0deg)
-}
- 98% {
- transform: translate(-8px, 0px) rotate(0deg)
-}
-}
-@-webkit-keyframes shake-vertical {
- 0% {
- -webkit-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -webkit-transform: translate(0px, 0px) rotate(0deg)
-}
- 4% {
- -webkit-transform: translate(0px, -6px) rotate(0deg)
-}
- 6% {
- -webkit-transform: translate(0px, -7px) rotate(0deg)
-}
- 8% {
- -webkit-transform: translate(0px, -5px) rotate(0deg)
-}
- 10% {
- -webkit-transform: translate(0px, 1px) rotate(0deg)
-}
- 12% {
- -webkit-transform: translate(0px, -1px) rotate(0deg)
-}
- 14% {
- -webkit-transform: translate(0px, -9px) rotate(0deg)
-}
- 16% {
- -webkit-transform: translate(0px, -10px) rotate(0deg)
-}
- 18% {
- -webkit-transform: translate(0px, -9px) rotate(0deg)
-}
- 20% {
- -webkit-transform: translate(0px, 3px) rotate(0deg)
-}
- 22% {
- -webkit-transform: translate(0px, -7px) rotate(0deg)
-}
- 24% {
- -webkit-transform: translate(0px, 2px) rotate(0deg)
-}
- 26% {
- -webkit-transform: translate(0px, 9px) rotate(0deg)
-}
- 28% {
- -webkit-transform: translate(0px, 8px) rotate(0deg)
-}
- 30% {
- -webkit-transform: translate(0px, 8px) rotate(0deg)
-}
- 32% {
- -webkit-transform: translate(0px, 4px) rotate(0deg)
-}
- 34% {
- -webkit-transform: translate(0px, -1px) rotate(0deg)
-}
- 36% {
- -webkit-transform: translate(0px, 7px) rotate(0deg)
-}
- 38% {
- -webkit-transform: translate(0px, 5px) rotate(0deg)
-}
- 40% {
- -webkit-transform: translate(0px, -5px) rotate(0deg)
-}
- 42% {
- -webkit-transform: translate(0px, 5px) rotate(0deg)
-}
- 44% {
- -webkit-transform: translate(0px, 4px) rotate(0deg)
-}
- 46% {
- -webkit-transform: translate(0px, 3px) rotate(0deg)
-}
- 48% {
- -webkit-transform: translate(0px, 6px) rotate(0deg)
-}
- 50% {
- -webkit-transform: translate(0px, -6px) rotate(0deg)
-}
- 52% {
- -webkit-transform: translate(0px, -3px) rotate(0deg)
-}
- 54% {
- -webkit-transform: translate(0px, -4px) rotate(0deg)
-}
- 56% {
- -webkit-transform: translate(0px, -5px) rotate(0deg)
-}
- 58% {
- -webkit-transform: translate(0px, 2px) rotate(0deg)
-}
- 60% {
- -webkit-transform: translate(0px, -2px) rotate(0deg)
-}
- 62% {
- -webkit-transform: translate(0px, 2px) rotate(0deg)
-}
- 64% {
- -webkit-transform: translate(0px, -7px) rotate(0deg)
-}
- 66% {
- -webkit-transform: translate(0px, 0px) rotate(0deg)
-}
- 68% {
- -webkit-transform: translate(0px, 0px) rotate(0deg)
-}
- 70% {
- -webkit-transform: translate(0px, -1px) rotate(0deg)
-}
- 72% {
- -webkit-transform: translate(0px, 2px) rotate(0deg)
-}
- 74% {
- -webkit-transform: translate(0px, 3px) rotate(0deg)
-}
- 76% {
- -webkit-transform: translate(0px, 3px) rotate(0deg)
-}
- 78% {
- -webkit-transform: translate(0px, -10px) rotate(0deg)
-}
- 80% {
- -webkit-transform: translate(0px, -5px) rotate(0deg)
-}
- 82% {
- -webkit-transform: translate(0px, 9px) rotate(0deg)
-}
- 84% {
- -webkit-transform: translate(0px, 9px) rotate(0deg)
-}
- 86% {
- -webkit-transform: translate(0px, 1px) rotate(0deg)
-}
- 88% {
- -webkit-transform: translate(0px, 6px) rotate(0deg)
-}
- 90% {
- -webkit-transform: translate(0px, -2px) rotate(0deg)
-}
- 92% {
- -webkit-transform: translate(0px, 4px) rotate(0deg)
-}
- 94% {
- -webkit-transform: translate(0px, -4px) rotate(0deg)
-}
- 96% {
- -webkit-transform: translate(0px, -1px) rotate(0deg)
-}
- 98% {
- -webkit-transform: translate(0px, -8px) rotate(0deg)
-}
-}
-@-ms-keyframes shake-vertical {
- 0% {
- -ms-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -ms-transform: translate(0px, -5px) rotate(0deg)
-}
- 4% {
- -ms-transform: translate(0px, -1px) rotate(0deg)
-}
- 6% {
- -ms-transform: translate(0px, -8px) rotate(0deg)
-}
- 8% {
- -ms-transform: translate(0px, 5px) rotate(0deg)
-}
- 10% {
- -ms-transform: translate(0px, 9px) rotate(0deg)
-}
- 12% {
- -ms-transform: translate(0px, -3px) rotate(0deg)
-}
- 14% {
- -ms-transform: translate(0px, -7px) rotate(0deg)
-}
- 16% {
- -ms-transform: translate(0px, 0px) rotate(0deg)
-}
- 18% {
- -ms-transform: translate(0px, -7px) rotate(0deg)
-}
- 20% {
- -ms-transform: translate(0px, -6px) rotate(0deg)
-}
- 22% {
- -ms-transform: translate(0px, -7px) rotate(0deg)
-}
- 24% {
- -ms-transform: translate(0px, 2px) rotate(0deg)
-}
- 26% {
- -ms-transform: translate(0px, 5px) rotate(0deg)
-}
- 28% {
- -ms-transform: translate(0px, -3px) rotate(0deg)
-}
- 30% {
- -ms-transform: translate(0px, -5px) rotate(0deg)
-}
- 32% {
- -ms-transform: translate(0px, 6px) rotate(0deg)
-}
- 34% {
- -ms-transform: translate(0px, -1px) rotate(0deg)
-}
- 36% {
- -ms-transform: translate(0px, 0px) rotate(0deg)
-}
- 38% {
- -ms-transform: translate(0px, 4px) rotate(0deg)
-}
- 40% {
- -ms-transform: translate(0px, 6px) rotate(0deg)
-}
- 42% {
- -ms-transform: translate(0px, -8px) rotate(0deg)
-}
- 44% {
- -ms-transform: translate(0px, -6px) rotate(0deg)
-}
- 46% {
- -ms-transform: translate(0px, -9px) rotate(0deg)
-}
- 48% {
- -ms-transform: translate(0px, -3px) rotate(0deg)
-}
- 50% {
- -ms-transform: translate(0px, -3px) rotate(0deg)
-}
- 52% {
- -ms-transform: translate(0px, -2px) rotate(0deg)
-}
- 54% {
- -ms-transform: translate(0px, -3px) rotate(0deg)
-}
- 56% {
- -ms-transform: translate(0px, 0px) rotate(0deg)
-}
- 58% {
- -ms-transform: translate(0px, 8px) rotate(0deg)
-}
- 60% {
- -ms-transform: translate(0px, 9px) rotate(0deg)
-}
- 62% {
- -ms-transform: translate(0px, 7px) rotate(0deg)
-}
- 64% {
- -ms-transform: translate(0px, 1px) rotate(0deg)
-}
- 66% {
- -ms-transform: translate(0px, -5px) rotate(0deg)
-}
- 68% {
- -ms-transform: translate(0px, 0px) rotate(0deg)
-}
- 70% {
- -ms-transform: translate(0px, 9px) rotate(0deg)
-}
- 72% {
- -ms-transform: translate(0px, 4px) rotate(0deg)
-}
- 74% {
- -ms-transform: translate(0px, -4px) rotate(0deg)
-}
- 76% {
- -ms-transform: translate(0px, 5px) rotate(0deg)
-}
- 78% {
- -ms-transform: translate(0px, -5px) rotate(0deg)
-}
- 80% {
- -ms-transform: translate(0px, -2px) rotate(0deg)
-}
- 82% {
- -ms-transform: translate(0px, -8px) rotate(0deg)
-}
- 84% {
- -ms-transform: translate(0px, -5px) rotate(0deg)
-}
- 86% {
- -ms-transform: translate(0px, -9px) rotate(0deg)
-}
- 88% {
- -ms-transform: translate(0px, -8px) rotate(0deg)
-}
- 90% {
- -ms-transform: translate(0px, 7px) rotate(0deg)
-}
- 92% {
- -ms-transform: translate(0px, 5px) rotate(0deg)
-}
- 94% {
- -ms-transform: translate(0px, -6px) rotate(0deg)
-}
- 96% {
- -ms-transform: translate(0px, -2px) rotate(0deg)
-}
- 98% {
- -ms-transform: translate(0px, -1px) rotate(0deg)
-}
-}
-@keyframes shake-vertical {
- 0% {
- transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- transform: translate(0px, -2px) rotate(0deg)
-}
- 4% {
- transform: translate(0px, -3px) rotate(0deg)
-}
- 6% {
- transform: translate(0px, 9px) rotate(0deg)
-}
- 8% {
- transform: translate(0px, 7px) rotate(0deg)
-}
- 10% {
- transform: translate(0px, -6px) rotate(0deg)
-}
- 12% {
- transform: translate(0px, 6px) rotate(0deg)
-}
- 14% {
- transform: translate(0px, -3px) rotate(0deg)
-}
- 16% {
- transform: translate(0px, 6px) rotate(0deg)
-}
- 18% {
- transform: translate(0px, 8px) rotate(0deg)
-}
- 20% {
- transform: translate(0px, 9px) rotate(0deg)
-}
- 22% {
- transform: translate(0px, -4px) rotate(0deg)
-}
- 24% {
- transform: translate(0px, -7px) rotate(0deg)
-}
- 26% {
- transform: translate(0px, -9px) rotate(0deg)
-}
- 28% {
- transform: translate(0px, 7px) rotate(0deg)
-}
- 30% {
- transform: translate(0px, 7px) rotate(0deg)
-}
- 32% {
- transform: translate(0px, 6px) rotate(0deg)
-}
- 34% {
- transform: translate(0px, 4px) rotate(0deg)
-}
- 36% {
- transform: translate(0px, 0px) rotate(0deg)
-}
- 38% {
- transform: translate(0px, 4px) rotate(0deg)
-}
- 40% {
- transform: translate(0px, 7px) rotate(0deg)
-}
- 42% {
- transform: translate(0px, -5px) rotate(0deg)
-}
- 44% {
- transform: translate(0px, 0px) rotate(0deg)
-}
- 46% {
- transform: translate(0px, -2px) rotate(0deg)
-}
- 48% {
- transform: translate(0px, -5px) rotate(0deg)
-}
- 50% {
- transform: translate(0px, -4px) rotate(0deg)
-}
- 52% {
- transform: translate(0px, 1px) rotate(0deg)
-}
- 54% {
- transform: translate(0px, -1px) rotate(0deg)
-}
- 56% {
- transform: translate(0px, -2px) rotate(0deg)
-}
- 58% {
- transform: translate(0px, 5px) rotate(0deg)
-}
- 60% {
- transform: translate(0px, 6px) rotate(0deg)
-}
- 62% {
- transform: translate(0px, -3px) rotate(0deg)
-}
- 64% {
- transform: translate(0px, -3px) rotate(0deg)
-}
- 66% {
- transform: translate(0px, -9px) rotate(0deg)
-}
- 68% {
- transform: translate(0px, -8px) rotate(0deg)
-}
- 70% {
- transform: translate(0px, -7px) rotate(0deg)
-}
- 72% {
- transform: translate(0px, 5px) rotate(0deg)
-}
- 74% {
- transform: translate(0px, 5px) rotate(0deg)
-}
- 76% {
- transform: translate(0px, -6px) rotate(0deg)
-}
- 78% {
- transform: translate(0px, 8px) rotate(0deg)
-}
- 80% {
- transform: translate(0px, 2px) rotate(0deg)
-}
- 82% {
- transform: translate(0px, -8px) rotate(0deg)
-}
- 84% {
- transform: translate(0px, -6px) rotate(0deg)
-}
- 86% {
- transform: translate(0px, 5px) rotate(0deg)
-}
- 88% {
- transform: translate(0px, -9px) rotate(0deg)
-}
- 90% {
- transform: translate(0px, 1px) rotate(0deg)
-}
- 92% {
- transform: translate(0px, -9px) rotate(0deg)
-}
- 94% {
- transform: translate(0px, -8px) rotate(0deg)
-}
- 96% {
- transform: translate(0px, -3px) rotate(0deg)
-}
- 98% {
- transform: translate(0px, 1px) rotate(0deg)
-}
-}
-@-webkit-keyframes shake-rotate {
- 0% {
- -webkit-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -webkit-transform: translate(0px, 0px) rotate(-5.5deg)
-}
- 4% {
- -webkit-transform: translate(0px, 0px) rotate(1.5deg)
-}
- 6% {
- -webkit-transform: translate(0px, 0px) rotate(-7.5deg)
-}
- 8% {
- -webkit-transform: translate(0px, 0px) rotate(-7.5deg)
-}
- 10% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 12% {
- -webkit-transform: translate(0px, 0px) rotate(-5.5deg)
-}
- 14% {
- -webkit-transform: translate(0px, 0px) rotate(-4.5deg)
-}
- 16% {
- -webkit-transform: translate(0px, 0px) rotate(0.5deg)
-}
- 18% {
- -webkit-transform: translate(0px, 0px) rotate(3.5deg)
-}
- 20% {
- -webkit-transform: translate(0px, 0px) rotate(-6.5deg)
-}
- 22% {
- -webkit-transform: translate(0px, 0px) rotate(-5.5deg)
-}
- 24% {
- -webkit-transform: translate(0px, 0px) rotate(3.5deg)
-}
- 26% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 28% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 30% {
- -webkit-transform: translate(0px, 0px) rotate(5.5deg)
-}
- 32% {
- -webkit-transform: translate(0px, 0px) rotate(3.5deg)
-}
- 34% {
- -webkit-transform: translate(0px, 0px) rotate(-5.5deg)
-}
- 36% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 38% {
- -webkit-transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 40% {
- -webkit-transform: translate(0px, 0px) rotate(4.5deg)
-}
- 42% {
- -webkit-transform: translate(0px, 0px) rotate(6.5deg)
-}
- 44% {
- -webkit-transform: translate(0px, 0px) rotate(0.5deg)
-}
- 46% {
- -webkit-transform: translate(0px, 0px) rotate(4.5deg)
-}
- 48% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 50% {
- -webkit-transform: translate(0px, 0px) rotate(0.5deg)
-}
- 52% {
- -webkit-transform: translate(0px, 0px) rotate(-7.5deg)
-}
- 54% {
- -webkit-transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 56% {
- -webkit-transform: translate(0px, 0px) rotate(0.5deg)
-}
- 58% {
- -webkit-transform: translate(0px, 0px) rotate(6.5deg)
-}
- 60% {
- -webkit-transform: translate(0px, 0px) rotate(-3.5deg)
-}
- 62% {
- -webkit-transform: translate(0px, 0px) rotate(-6.5deg)
-}
- 64% {
- -webkit-transform: translate(0px, 0px) rotate(1.5deg)
-}
- 66% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 68% {
- -webkit-transform: translate(0px, 0px) rotate(2.5deg)
-}
- 70% {
- -webkit-transform: translate(0px, 0px) rotate(-4.5deg)
-}
- 72% {
- -webkit-transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 74% {
- -webkit-transform: translate(0px, 0px) rotate(-6.5deg)
-}
- 76% {
- -webkit-transform: translate(0px, 0px) rotate(3.5deg)
-}
- 78% {
- -webkit-transform: translate(0px, 0px) rotate(-5.5deg)
-}
- 80% {
- -webkit-transform: translate(0px, 0px) rotate(1.5deg)
-}
- 82% {
- -webkit-transform: translate(0px, 0px) rotate(4.5deg)
-}
- 84% {
- -webkit-transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 86% {
- -webkit-transform: translate(0px, 0px) rotate(-2.5deg)
-}
- 88% {
- -webkit-transform: translate(0px, 0px) rotate(-3.5deg)
-}
- 90% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 92% {
- -webkit-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 94% {
- -webkit-transform: translate(0px, 0px) rotate(-6.5deg)
-}
- 96% {
- -webkit-transform: translate(0px, 0px) rotate(-7.5deg)
-}
- 98% {
- -webkit-transform: translate(0px, 0px) rotate(6.5deg)
-}
-}
-@-ms-keyframes shake-rotate {
- 0% {
- -ms-transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- -ms-transform: translate(0px, 0px) rotate(0.5deg)
-}
- 4% {
- -ms-transform: translate(0px, 0px) rotate(5.5deg)
-}
- 6% {
- -ms-transform: translate(0px, 0px) rotate(-3.5deg)
-}
- 8% {
- -ms-transform: translate(0px, 0px) rotate(-2.5deg)
-}
- 10% {
- -ms-transform: translate(0px, 0px) rotate(-6.5deg)
-}
- 12% {
- -ms-transform: translate(0px, 0px) rotate(6.5deg)
-}
- 14% {
- -ms-transform: translate(0px, 0px) rotate(5.5deg)
-}
- 16% {
- -ms-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 18% {
- -ms-transform: translate(0px, 0px) rotate(-6.5deg)
-}
- 20% {
- -ms-transform: translate(0px, 0px) rotate(6.5deg)
-}
- 22% {
- -ms-transform: translate(0px, 0px) rotate(3.5deg)
-}
- 24% {
- -ms-transform: translate(0px, 0px) rotate(-4.5deg)
-}
- 26% {
- -ms-transform: translate(0px, 0px) rotate(4.5deg)
-}
- 28% {
- -ms-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 30% {
- -ms-transform: translate(0px, 0px) rotate(-5.5deg)
-}
- 32% {
- -ms-transform: translate(0px, 0px) rotate(-6.5deg)
-}
- 34% {
- -ms-transform: translate(0px, 0px) rotate(1.5deg)
-}
- 36% {
- -ms-transform: translate(0px, 0px) rotate(-3.5deg)
-}
- 38% {
- -ms-transform: translate(0px, 0px) rotate(0.5deg)
-}
- 40% {
- -ms-transform: translate(0px, 0px) rotate(-3.5deg)
-}
- 42% {
- -ms-transform: translate(0px, 0px) rotate(-5.5deg)
-}
- 44% {
- -ms-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 46% {
- -ms-transform: translate(0px, 0px) rotate(-7.5deg)
-}
- 48% {
- -ms-transform: translate(0px, 0px) rotate(1.5deg)
-}
- 50% {
- -ms-transform: translate(0px, 0px) rotate(0.5deg)
-}
- 52% {
- -ms-transform: translate(0px, 0px) rotate(-4.5deg)
-}
- 54% {
- -ms-transform: translate(0px, 0px) rotate(0.5deg)
-}
- 56% {
- -ms-transform: translate(0px, 0px) rotate(-4.5deg)
-}
- 58% {
- -ms-transform: translate(0px, 0px) rotate(2.5deg)
-}
- 60% {
- -ms-transform: translate(0px, 0px) rotate(-2.5deg)
-}
- 62% {
- -ms-transform: translate(0px, 0px) rotate(4.5deg)
-}
- 64% {
- -ms-transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 66% {
- -ms-transform: translate(0px, 0px) rotate(-5.5deg)
-}
- 68% {
- -ms-transform: translate(0px, 0px) rotate(0.5deg)
-}
- 70% {
- -ms-transform: translate(0px, 0px) rotate(-3.5deg)
-}
- 72% {
- -ms-transform: translate(0px, 0px) rotate(-2.5deg)
-}
- 74% {
- -ms-transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 76% {
- -ms-transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 78% {
- -ms-transform: translate(0px, 0px) rotate(6.5deg)
-}
- 80% {
- -ms-transform: translate(0px, 0px) rotate(3.5deg)
-}
- 82% {
- -ms-transform: translate(0px, 0px) rotate(1.5deg)
-}
- 84% {
- -ms-transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 86% {
- -ms-transform: translate(0px, 0px) rotate(2.5deg)
-}
- 88% {
- -ms-transform: translate(0px, 0px) rotate(-6.5deg)
-}
- 90% {
- -ms-transform: translate(0px, 0px) rotate(2.5deg)
-}
- 92% {
- -ms-transform: translate(0px, 0px) rotate(6.5deg)
-}
- 94% {
- -ms-transform: translate(0px, 0px) rotate(-7.5deg)
-}
- 96% {
- -ms-transform: translate(0px, 0px) rotate(6.5deg)
-}
- 98% {
- -ms-transform: translate(0px, 0px) rotate(-4.5deg)
-}
-}
-@keyframes shake-rotate {
- 0% {
- transform: translate(0px, 0px) rotate(0deg)
-}
- 2% {
- transform: translate(0px, 0px) rotate(2.5deg)
-}
- 4% {
- transform: translate(0px, 0px) rotate(-4.5deg)
-}
- 6% {
- transform: translate(0px, 0px) rotate(2.5deg)
-}
- 8% {
- transform: translate(0px, 0px) rotate(4.5deg)
-}
- 10% {
- transform: translate(0px, 0px) rotate(-5.5deg)
-}
- 12% {
- transform: translate(0px, 0px) rotate(-3.5deg)
-}
- 14% {
- transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 16% {
- transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 18% {
- transform: translate(0px, 0px) rotate(2.5deg)
-}
- 20% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 22% {
- transform: translate(0px, 0px) rotate(6.5deg)
-}
- 24% {
- transform: translate(0px, 0px) rotate(0.5deg)
-}
- 26% {
- transform: translate(0px, 0px) rotate(-5.5deg)
-}
- 28% {
- transform: translate(0px, 0px) rotate(-4.5deg)
-}
- 30% {
- transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 32% {
- transform: translate(0px, 0px) rotate(2.5deg)
-}
- 34% {
- transform: translate(0px, 0px) rotate(0.5deg)
-}
- 36% {
- transform: translate(0px, 0px) rotate(6.5deg)
-}
- 38% {
- transform: translate(0px, 0px) rotate(-6.5deg)
-}
- 40% {
- transform: translate(0px, 0px) rotate(3.5deg)
-}
- 42% {
- transform: translate(0px, 0px) rotate(-4.5deg)
-}
- 44% {
- transform: translate(0px, 0px) rotate(5.5deg)
-}
- 46% {
- transform: translate(0px, 0px) rotate(2.5deg)
-}
- 48% {
- transform: translate(0px, 0px) rotate(2.5deg)
-}
- 50% {
- transform: translate(0px, 0px) rotate(5.5deg)
-}
- 52% {
- transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 54% {
- transform: translate(0px, 0px) rotate(5.5deg)
-}
- 56% {
- transform: translate(0px, 0px) rotate(-7.5deg)
-}
- 58% {
- transform: translate(0px, 0px) rotate(2.5deg)
-}
- 60% {
- transform: translate(0px, 0px) rotate(6.5deg)
-}
- 62% {
- transform: translate(0px, 0px) rotate(1.5deg)
-}
- 64% {
- transform: translate(0px, 0px) rotate(-7.5deg)
-}
- 66% {
- transform: translate(0px, 0px) rotate(-2.5deg)
-}
- 68% {
- transform: translate(0px, 0px) rotate(3.5deg)
-}
- 70% {
- transform: translate(0px, 0px) rotate(-4.5deg)
-}
- 72% {
- transform: translate(0px, 0px) rotate(2.5deg)
-}
- 74% {
- transform: translate(0px, 0px) rotate(2.5deg)
-}
- 76% {
- transform: translate(0px, 0px) rotate(-2.5deg)
-}
- 78% {
- transform: translate(0px, 0px) rotate(-0.5deg)
-}
- 80% {
- transform: translate(0px, 0px) rotate(-3.5deg)
-}
- 82% {
- transform: translate(0px, 0px) rotate(5.5deg)
-}
- 84% {
- transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 86% {
- transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 88% {
- transform: translate(0px, 0px) rotate(4.5deg)
-}
- 90% {
- transform: translate(0px, 0px) rotate(5.5deg)
-}
- 92% {
- transform: translate(0px, 0px) rotate(4.5deg)
-}
- 94% {
- transform: translate(0px, 0px) rotate(-1.5deg)
-}
- 96% {
- transform: translate(0px, 0px) rotate(3.5deg)
-}
- 98% {
- transform: translate(0px, 0px) rotate(-7.5deg)
-}
-}
-@-webkit-keyframes shake-opacity {
- 0% {
- -webkit-transform: translate(0px, 0px) rotate(0deg);
- opacity: 0.7
-}
- 10% {
- -webkit-transform: translate(-4px, 1px) rotate(-1.5deg);
- opacity: 0.1
-}
- 20% {
- -webkit-transform: translate(-4px, -4px) rotate(-2.5deg);
- opacity: 0.4
-}
- 30% {
- -webkit-transform: translate(-3px, -5px) rotate(-1.5deg);
- opacity: 0
-}
- 40% {
- -webkit-transform: translate(0px, 0px) rotate(0.5deg);
- opacity: 0.6
-}
- 50% {
- -webkit-transform: translate(0px, 0px) rotate(-2.5deg);
- opacity: 0.8
-}
- 60% {
- -webkit-transform: translate(-5px, -2px) rotate(1.5deg);
- opacity: 0.4
-}
- 70% {
- -webkit-transform: translate(-1px, 3px) rotate(-0.5deg);
- opacity: 0.1
-}
- 80% {
- -webkit-transform: translate(-2px, -2px) rotate(1.5deg);
- opacity: 0.2
-}
- 90% {
- -webkit-transform: translate(-3px, -3px) rotate(1.5deg);
- opacity: 0.3
-}
-}
-@-ms-keyframes shake-opacity {
- 0% {
- -ms-transform: translate(0px, 0px) rotate(0deg);
- opacity: 0.9
-}
- 10% {
- -ms-transform: translate(0px, -4px) rotate(-1.5deg);
- opacity: 0.9
-}
- 20% {
- -ms-transform: translate(-2px, 0px) rotate(0.5deg);
- opacity: 0
-}
- 30% {
- -ms-transform: translate(-1px, 1px) rotate(-2.5deg);
- opacity: 0.8
-}
- 40% {
- -ms-transform: translate(-2px, 4px) rotate(-1.5deg);
- opacity: 0.9
-}
- 50% {
- -ms-transform: translate(-4px, 2px) rotate(-2.5deg);
- opacity: 0.1
-}
- 60% {
- -ms-transform: translate(3px, 0px) rotate(0.5deg);
- opacity: 0
-}
- 70% {
- -ms-transform: translate(-4px, -5px) rotate(-0.5deg);
- opacity: 0
-}
- 80% {
- -ms-transform: translate(4px, -1px) rotate(1.5deg);
- opacity: 0.7
-}
- 90% {
- -ms-transform: translate(4px, 0px) rotate(1.5deg);
- opacity: 0.9
-}
-}
-@keyframes shake-opacity {
- 0% {
- transform: translate(0px, 0px) rotate(0deg);
- opacity: 0.6
-}
- 10% {
- transform: translate(-2px, -1px) rotate(-0.5deg);
- opacity: 0.5
-}
- 20% {
- transform: translate(-4px, 4px) rotate(1.5deg);
- opacity: 0.4
-}
- 30% {
- transform: translate(-4px, -1px) rotate(-1.5deg);
- opacity: 0.8
-}
- 40% {
- transform: translate(-2px, -1px) rotate(-2.5deg);
- opacity: 0.3
-}
- 50% {
- transform: translate(-4px, 1px) rotate(-2.5deg);
- opacity: 0.5
-}
- 60% {
- transform: translate(-2px, 4px) rotate(0.5deg);
- opacity: 0.1
-}
- 70% {
- transform: translate(-3px, 1px) rotate(-0.5deg);
- opacity: 0.4
-}
- 80% {
- transform: translate(0px, 0px) rotate(-0.5deg);
- opacity: 0.5
-}
- 90% {
- transform: translate(2px, -1px) rotate(-2.5deg);
- opacity: 0.8
-}
-}
-@-webkit-keyframes shake-crazy {
- 0% {
- -webkit-transform: translate(0px, 0px) rotate(0deg);
- opacity: 0.6
-}
- 10% {
- -webkit-transform: translate(14px, 19px) rotate(-1deg);
- opacity: 0.8
-}
- 20% {
- -webkit-transform: translate(14px, 11px) rotate(5deg);
- opacity: 0.7
-}
- 30% {
- -webkit-transform: translate(9px, -6px) rotate(-9deg);
- opacity: 0.9
-}
- 40% {
- -webkit-transform: translate(0px, -19px) rotate(-6deg);
- opacity: 0.6
-}
- 50% {
- -webkit-transform: translate(16px, 19px) rotate(9deg);
- opacity: 0.7
-}
- 60% {
- -webkit-transform: translate(-11px, -10px) rotate(4deg);
- opacity: 0.4
-}
- 70% {
- -webkit-transform: translate(-1px, 13px) rotate(-9deg);
- opacity: 0.2
-}
- 80% {
- -webkit-transform: translate(-9px, -16px) rotate(0deg);
- opacity: 0.1
-}
- 90% {
- -webkit-transform: translate(3px, 2px) rotate(-2deg);
- opacity: 0.7
-}
-}
-@-ms-keyframes shake-crazy {
- 0% {
- -ms-transform: translate(0px, 0px) rotate(0deg);
- opacity: 0.8
-}
- 10% {
- -ms-transform: translate(18px, -4px) rotate(9deg);
- opacity: 0.2
-}
- 20% {
- -ms-transform: translate(6px, 1px) rotate(8deg);
- opacity: 0.8
-}
- 30% {
- -ms-transform: translate(-4px, 9px) rotate(8deg);
- opacity: 0.2
-}
- 40% {
- -ms-transform: translate(-13px, 1px) rotate(7deg);
- opacity: 0.5
-}
- 50% {
- -ms-transform: translate(-19px, 16px) rotate(-5deg);
- opacity: 0.3
-}
- 60% {
- -ms-transform: translate(9px, 16px) rotate(7deg);
- opacity: 0.3
-}
- 70% {
- -ms-transform: translate(-8px, -6px) rotate(-6deg);
- opacity: 0.8
-}
- 80% {
- -ms-transform: translate(12px, 14px) rotate(-4deg);
- opacity: 0.2
-}
- 90% {
- -ms-transform: translate(-12px, 12px) rotate(-8deg);
- opacity: 0.2
-}
-}
-@keyframes shake-crazy {
- 0% {
- transform: translate(0px, 0px) rotate(0deg);
- opacity: 0.4
-}
- 10% {
- transform: translate(3px, 10px) rotate(-1deg);
- opacity: 0.8
-}
- 20% {
- transform: translate(5px, 14px) rotate(-3deg);
- opacity: 0.5
-}
- 30% {
- transform: translate(14px, 3px) rotate(4deg);
- opacity: 0.6
-}
- 40% {
- transform: translate(-17px, 0px) rotate(9deg);
- opacity: 0.7
-}
- 50% {
- transform: translate(1px, 17px) rotate(-4deg);
- opacity: 0.7
-}
- 60% {
- transform: translate(9px, -4px) rotate(-10deg);
- opacity: 0.2
-}
- 70% {
- transform: translate(13px, 7px) rotate(7deg);
- opacity: 0.4
-}
- 80% {
- transform: translate(10px, 12px) rotate(9deg);
- opacity: 0.1
-}
- 90% {
- transform: translate(0px, 3px) rotate(5deg);
- opacity: 0.6
-}
-}
-/* ������������֮�� www.lanrenzhijia.com */
\ No newline at end of file
diff --git a/personcentor/src/main/resources/static/css/style.css b/personcentor/src/main/resources/static/css/style.css
deleted file mode 100644
index 3c297432e5b080f62ef42082cc812bb053705073..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/css/style.css
+++ /dev/null
@@ -1,163 +0,0 @@
-html, body, div, span, applet, object, iframe,
-h1, h2, h3, h4, h5, h6, p, blockquote, pre,
-a, abbr, acronym, address, big, cite, code,
-del, dfn, em, font, img, ins, kbd, q, s, samp,
-small, strike, strong, sub, sup, tt, var,
-b, u, i, center,
-dl, dt, dd, ol, ul, li,
-fieldset, form, label, legend,
-table, caption, tbody, tfoot, thead, tr, th, td {
- margin: 0;
- padding: 0;
- border: 0;
- outline: 0;
- vertical-align: baseline;
- background: transparent;
-}
-body {
- line-height: 1;
-}
-ol, ul {
- list-style: none;
-}
-a{
- text-decoration:none;
- }
-blockquote, q {
- quotes: none;
-}
-blockquote:before, blockquote:after,
-q:before, q:after {
- content: '';
- content: none;
-}
-
-/* remember to define focus styles! */
-:focus {
- outline: 0;
-}
-
-/* remember to highlight inserts somehow! */
-ins {
- text-decoration: none;
-}
-del {
- text-decoration: line-through;
-}
-
-/* tables still need 'cellspacing="0"' in the markup */
-table {
- border-collapse: collapse;
- border-spacing: 0;
-}
-.clear_border{
- border:none !important;
- }
-.clear_bg{
- background:none !important;
-}
-.margin_left{
- margin-left:0px !important;
- }
-.color_r{
- color:#f7350a !important;
- }
-.color_r2{
- color:#f7350a !important;
- font-weight: bold;
-}
-.color_w{
- color:#fff !important;
- }
-.color_d{
- color:#000 !important;
- }
-.color_g{
- color:#b0b0b0 !important;
- }
-.color_g2{
- color:#378001 !important;
- }
-.color_y{
- color:#ff5400 !important;
- }
-.reveal-modal-bg {
- position: fixed;
- height: 100%;
- width: 100%;
- background: #000;
- z-index:1;
- top: 0;
- left: 0;
- opacity: 0.5;
- filter: alpha(opacity:50);
-}
-.reveal-modal-bg2 {
- position: fixed;
- height: 100%;
- width: 100%;
- background: #fff;
- z-index:100;
- top: 0;
- left: 0;
- opacity: 0.7;
- filter: alpha(opacity:70);
-}
-.margin{
- margin:0;
- }
-.puff_left{
- float:left !important;
- }
-.puff_right{
- float:right !important;
- }
-.margin_top{
- margin-top:0px !important;
- }
-.color_border{
- border:1px #ff6600 solid !important;
- }
-.text_c{
- text-align:center !important;
- }
-.text_r{
- text-align:right !important;
-}
-.dis_none{
- display:none;
- }
-/*橙色*/
-.bg_01{
- background-color:#ca0b0b !important;
- }
-.bg_02{
- background-color:#ffe79d !important;
- }
-.bg_03{
- background-color:#ff8712 !important;
- }
-.bg_04{
- background:#666 !important;
- color: #fff !important;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/personcentor/src/main/resources/static/font/FontAwesome.otf b/personcentor/src/main/resources/static/font/FontAwesome.otf
deleted file mode 100644
index 70125459f7d593b79cabc75bd60b91943aa65e93..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/font/FontAwesome.otf and /dev/null differ
diff --git a/personcentor/src/main/resources/static/font/fontawesome-webfont.eot b/personcentor/src/main/resources/static/font/fontawesome-webfont.eot
deleted file mode 100644
index 0662cb96bfb78cb2603df4bc9995314bd6806312..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/font/fontawesome-webfont.eot and /dev/null differ
diff --git a/personcentor/src/main/resources/static/font/fontawesome-webfont.svg b/personcentor/src/main/resources/static/font/fontawesome-webfont.svg
deleted file mode 100644
index 2edb4ec34cbc0b6559b808a3a1f31e0e587742ff..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/font/fontawesome-webfont.svg
+++ /dev/null
@@ -1,399 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/personcentor/src/main/resources/static/font/fontawesome-webfont.ttf b/personcentor/src/main/resources/static/font/fontawesome-webfont.ttf
deleted file mode 100644
index d3659246915cacb0c9204271f1f9fc5f77049eac..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/font/fontawesome-webfont.ttf and /dev/null differ
diff --git a/personcentor/src/main/resources/static/font/fontawesome-webfont.woff b/personcentor/src/main/resources/static/font/fontawesome-webfont.woff
deleted file mode 100644
index b9bd17e158d87fb1477f7ac3ddbb5a676f3c26d2..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/font/fontawesome-webfont.woff and /dev/null differ
diff --git a/personcentor/src/main/resources/static/font/iconfont.eot b/personcentor/src/main/resources/static/font/iconfont.eot
deleted file mode 100644
index a24b99879fa25c8589ca5c655267c38e0bce0423..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/font/iconfont.eot and /dev/null differ
diff --git a/personcentor/src/main/resources/static/font/iconfont.svg b/personcentor/src/main/resources/static/font/iconfont.svg
deleted file mode 100644
index ce72a551e3c82d372f698a7093e076a96f6adb25..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/font/iconfont.svg
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
diff --git a/personcentor/src/main/resources/static/font/iconfont.ttf b/personcentor/src/main/resources/static/font/iconfont.ttf
deleted file mode 100644
index c3e7f5a13e7fbeeb443631d69b8483c925dfcf63..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/font/iconfont.ttf and /dev/null differ
diff --git a/personcentor/src/main/resources/static/font/iconfont.woff b/personcentor/src/main/resources/static/font/iconfont.woff
deleted file mode 100644
index 672198315fab5a6052660018aa3fef6149d7aaa9..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/font/iconfont.woff and /dev/null differ
diff --git a/personcentor/src/main/resources/static/iconfont.css b/personcentor/src/main/resources/static/iconfont.css
deleted file mode 100644
index 6321cc7f8e0bd67115fa2d86b173114d42552e71..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/iconfont.css
+++ /dev/null
@@ -1,25 +0,0 @@
-
-@font-face {font-family: "iconfont";
- src: url('iconfont.eot'); /* IE9*/
- src: url('iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('iconfont.woff') format('woff'), /* chrome、firefox */
- url('iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
- url('iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */
-}
-
-.iconfont {
- font-family:"iconfont" !important;
- font-size:16px;
- font-style:normal;
- -webkit-font-smoothing: antialiased;
- -webkit-text-stroke-width: 0.2px;
- -moz-osx-font-smoothing: grayscale;
-}
-.icon-weixin:before { content: "\e600"; }
-.icon-dianhua:before { content: "\e601"; }
-.icon-Go:before { content: "\e606"; }
-.icon-youxiang:before { content: "\e602"; }
-.icon-xinlang:before { content: "\e603"; }
-.icon-coordinate:before { content: "\e604"; }
-.icon-you:before { content: "\e605"; }
-.icon-xiangyouhover:before { content: "\e607"; }
diff --git a/personcentor/src/main/resources/static/img/20160307231006_PL4ia.jpg b/personcentor/src/main/resources/static/img/20160307231006_PL4ia.jpg
deleted file mode 100644
index b98c2475521d4ca4efbf2a78a278ebe15af20c40..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/20160307231006_PL4ia.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/4-140H2221J8.jpg b/personcentor/src/main/resources/static/img/4-140H2221J8.jpg
deleted file mode 100644
index fa16e2ed6c38c495bbb1e7a295970c5f82b4c223..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/4-140H2221J8.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/Img346436473.jpg b/personcentor/src/main/resources/static/img/Img346436473.jpg
deleted file mode 100644
index 90e9fbbe9294a92d9f4eb2844814abd2dc238393..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/Img346436473.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/Thumbs.db b/personcentor/src/main/resources/static/img/Thumbs.db
deleted file mode 100644
index 3249565071b4ca767891b9305d6f20a643434f48..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/Thumbs.db and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/banner.jpg b/personcentor/src/main/resources/static/img/banner.jpg
deleted file mode 100644
index 04fa04885faa839d0427c13022b9a33d1a681f97..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/banner.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/er.png b/personcentor/src/main/resources/static/img/er.png
deleted file mode 100644
index 13ebaaeeb6c863be385ab8b6d2a28e4514d26462..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/er.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/fangwu.png b/personcentor/src/main/resources/static/img/fangwu.png
deleted file mode 100644
index 11886141ed9d51a8e8093fe47bf2352e0c04fd17..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/fangwu.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/gengduo.png b/personcentor/src/main/resources/static/img/gengduo.png
deleted file mode 100644
index 1c52e54c519bef8b97fbb7d360cdd40f05e10396..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/gengduo.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_add.png b/personcentor/src/main/resources/static/img/icon_add.png
deleted file mode 100644
index f445f83358e5e7924ddb7af2c44206e44c634dd9..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_add.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_bj.png b/personcentor/src/main/resources/static/img/icon_bj.png
deleted file mode 100644
index 9ed9264a0035aea61266fed9f7b04123da236e89..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_bj.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_bq.png b/personcentor/src/main/resources/static/img/icon_bq.png
deleted file mode 100644
index 90796654013984d48f61c89f91e4e0e542aee1c2..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_bq.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_cy.png b/personcentor/src/main/resources/static/img/icon_cy.png
deleted file mode 100644
index 151b69d8ec6ace51fc6d41418d0719ff283cfe18..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_cy.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_cyfw.png b/personcentor/src/main/resources/static/img/icon_cyfw.png
deleted file mode 100644
index 6c467f6d0074ac7685bc38236e0b6ede3405d784..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_cyfw.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_cysb.png b/personcentor/src/main/resources/static/img/icon_cysb.png
deleted file mode 100644
index 21f978faa6710842b664807bae32e8299d377067..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_cysb.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_ddcl.png b/personcentor/src/main/resources/static/img/icon_ddcl.png
deleted file mode 100644
index 1de5c52cb1206810352a443ab2641e8fddfeccf4..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_ddcl.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_dzg.png b/personcentor/src/main/resources/static/img/icon_dzg.png
deleted file mode 100644
index 347f466b63ab5551afccdb17887a8c077ecb88fb..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_dzg.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_et.png b/personcentor/src/main/resources/static/img/icon_et.png
deleted file mode 100644
index 02fb14910dd9f380696ea25901f4ee5f5d02b8f8..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_et.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_fk.png b/personcentor/src/main/resources/static/img/icon_fk.png
deleted file mode 100644
index 9b6d7831d874b0f539f57490127785bdcdcc73cb..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_fk.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_gb.png b/personcentor/src/main/resources/static/img/icon_gb.png
deleted file mode 100644
index cd91b0bae68e1153dd3fa35b1f8686915ad3daff..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_gb.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_gz.png b/personcentor/src/main/resources/static/img/icon_gz.png
deleted file mode 100644
index 1bbe6d85a464fd956022a466ef80c671b8cba544..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_gz.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_hd.png b/personcentor/src/main/resources/static/img/icon_hd.png
deleted file mode 100644
index 2327ba64653136e06dc7c274c463255ec1790570..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_hd.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_hj.png b/personcentor/src/main/resources/static/img/icon_hj.png
deleted file mode 100644
index b6ba55f1fd62de7901c3a2b038ecee22b597eb5f..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_hj.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_jb.png b/personcentor/src/main/resources/static/img/icon_jb.png
deleted file mode 100644
index e583cf52f7a1a577a023b31fb287dc1d853b02c8..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_jb.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_jc.png b/personcentor/src/main/resources/static/img/icon_jc.png
deleted file mode 100644
index 88f6a5206c79ae8ff0197335db303901383e5ad8..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_jc.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_jjqy.png b/personcentor/src/main/resources/static/img/icon_jjqy.png
deleted file mode 100644
index b702062ce3316c5e9f0c43273d4e1218edaf4d90..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_jjqy.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_jk.png b/personcentor/src/main/resources/static/img/icon_jk.png
deleted file mode 100644
index 7edd7343375cf1b4b6ffe05ffafede3558435f87..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_jk.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_jkda.png b/personcentor/src/main/resources/static/img/icon_jkda.png
deleted file mode 100644
index 23ea5665e70edb841f0e183408da5cd83f6ea3da..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_jkda.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_jkjz.png b/personcentor/src/main/resources/static/img/icon_jkjz.png
deleted file mode 100644
index 6bb76afa94628deecd105775ea81d90fb0e19d05..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_jkjz.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_jkzx.png b/personcentor/src/main/resources/static/img/icon_jkzx.png
deleted file mode 100644
index 032b4900236d2c1e4851d6baf8b636c10d249df0..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_jkzx.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_jq.png b/personcentor/src/main/resources/static/img/icon_jq.png
deleted file mode 100644
index 8010f7d294f1aa8ea3645f006fba974367cbf5c1..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_jq.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_jz.png b/personcentor/src/main/resources/static/img/icon_jz.png
deleted file mode 100644
index a31f0bd9ed7686ddea84c6b1c2156850a0b7684a..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_jz.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_jz2.png b/personcentor/src/main/resources/static/img/icon_jz2.png
deleted file mode 100644
index 0b9bf88b9545a3b007e3ba6d562e43f29c8b80f9..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_jz2.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_km.png b/personcentor/src/main/resources/static/img/icon_km.png
deleted file mode 100644
index 86a5fe7bd7355b469448435b88f242dcdea4f7e3..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_km.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_kt.png b/personcentor/src/main/resources/static/img/icon_kt.png
deleted file mode 100644
index 6fad48f6dd46727269fafb9325d90eae1a74110c..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_kt.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_list.png b/personcentor/src/main/resources/static/img/icon_list.png
deleted file mode 100644
index 8c559b194624a22c7d8bb4e5110150f6fce49456..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_list.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_mj.png b/personcentor/src/main/resources/static/img/icon_mj.png
deleted file mode 100644
index a0ad1a2b8a62ff05fe1826dd77b0e73ccfaa7fa2..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_mj.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_mrfj.png b/personcentor/src/main/resources/static/img/icon_mrfj.png
deleted file mode 100644
index f4975bf04800457e8cfb262e376059a7b63c14e6..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_mrfj.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_mrmj.png b/personcentor/src/main/resources/static/img/icon_mrmj.png
deleted file mode 100644
index 7adff544e2c84ddad9adfad621b863d4f74e4c05..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_mrmj.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_phone.png b/personcentor/src/main/resources/static/img/icon_phone.png
deleted file mode 100644
index dc6762039b6279ebe214168f65e1b2f2b143157b..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_phone.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sb.png b/personcentor/src/main/resources/static/img/icon_sb.png
deleted file mode 100644
index fe55630186439cb79445d49c7b242c81ad1a8458..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sb.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sc.png b/personcentor/src/main/resources/static/img/icon_sc.png
deleted file mode 100644
index b7c47201f313ca3b8263802dba3bf42269107453..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sc.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sm.png b/personcentor/src/main/resources/static/img/icon_sm.png
deleted file mode 100644
index 3f6ccd172d0abc0812f119129cce6d1baa5f4c51..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sm.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sm2.png b/personcentor/src/main/resources/static/img/icon_sm2.png
deleted file mode 100644
index ee806382dde04561cdd38a4ff4e270a75e347c19..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sm2.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sos.png b/personcentor/src/main/resources/static/img/icon_sos.png
deleted file mode 100644
index 9e8adf9c746431d1f5caa1da5821ce4f7c4fbda1..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sos.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sp.png b/personcentor/src/main/resources/static/img/icon_sp.png
deleted file mode 100644
index 706c329945f9a448f5ca686aa8cc30b5b22d0768..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sp.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sq.png b/personcentor/src/main/resources/static/img/icon_sq.png
deleted file mode 100644
index 48d898d883e007011f77c9ac824148213e0728ff..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sq.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sq01.png b/personcentor/src/main/resources/static/img/icon_sq01.png
deleted file mode 100644
index 440e55ebc85a568da250219c17fcfacb43e81682..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sq01.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sq02.png b/personcentor/src/main/resources/static/img/icon_sq02.png
deleted file mode 100644
index 8bfc6d08082842b14d255715e9a289c8db6f6537..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sq02.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sq03.png b/personcentor/src/main/resources/static/img/icon_sq03.png
deleted file mode 100644
index 279680428ded20177e577ff8af699b7669f7d01b..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sq03.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sq04.png b/personcentor/src/main/resources/static/img/icon_sq04.png
deleted file mode 100644
index fcd7b2985054658b0a2cee87eaa96fc70b5a7eb0..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sq04.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sq05.png b/personcentor/src/main/resources/static/img/icon_sq05.png
deleted file mode 100644
index f28dbde0c6bd30d55f277d79470398d5f5315f8f..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sq05.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sq06.png b/personcentor/src/main/resources/static/img/icon_sq06.png
deleted file mode 100644
index 828f1396338745457db7d54f2c8ef58b73ff024c..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sq06.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sqh.png b/personcentor/src/main/resources/static/img/icon_sqh.png
deleted file mode 100644
index 9139fa6c3f7b9da5608cd9bb75a09228e6e089d0..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sqh.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sy.png b/personcentor/src/main/resources/static/img/icon_sy.png
deleted file mode 100644
index fb80ec6581d1307f46737c95f633fccf47819c4d..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sy.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sys.png b/personcentor/src/main/resources/static/img/icon_sys.png
deleted file mode 100644
index 5e5addfedfbe3f74c7201f7c500c4ae212406b1c..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sys.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_sysb.png b/personcentor/src/main/resources/static/img/icon_sysb.png
deleted file mode 100644
index 89266890a22cded3d675f2f3022a47698828e20c..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_sysb.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_tc.png b/personcentor/src/main/resources/static/img/icon_tc.png
deleted file mode 100644
index 8c49544455db847ec2cd3ee7750c2669da5ada2c..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_tc.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_tg01.png b/personcentor/src/main/resources/static/img/icon_tg01.png
deleted file mode 100644
index e7b81b5e630024eebdbc219f81239c2613fc9ade..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_tg01.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_tg02.png b/personcentor/src/main/resources/static/img/icon_tg02.png
deleted file mode 100644
index b0da013bf0039bf773007a21dc9a148d7701b131..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_tg02.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_tg03.png b/personcentor/src/main/resources/static/img/icon_tg03.png
deleted file mode 100644
index 97c3a0211b1135a5e1fa7a33281949fcdc9ba116..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_tg03.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_tg04.png b/personcentor/src/main/resources/static/img/icon_tg04.png
deleted file mode 100644
index 41fe18a85960ec8ff53d6e932649f5bd0c6737c7..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_tg04.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_tj.png b/personcentor/src/main/resources/static/img/icon_tj.png
deleted file mode 100644
index 6dcc983db9708ef64ad09e17cf8a3878b5881e2a..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_tj.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_ts.png b/personcentor/src/main/resources/static/img/icon_ts.png
deleted file mode 100644
index e5cd15e48a40a11e16d974efd8db9ff244c479f1..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_ts.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_wc.png b/personcentor/src/main/resources/static/img/icon_wc.png
deleted file mode 100644
index b49e482c38e7a20e698c6f6caae9efaf497bad5c..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_wc.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_wc2.png b/personcentor/src/main/resources/static/img/icon_wc2.png
deleted file mode 100644
index 6fb5bbc4302df712f85532c5bf48a146c20186a7..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_wc2.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_wifi.png b/personcentor/src/main/resources/static/img/icon_wifi.png
deleted file mode 100644
index ad8b2b3d78a10a92b63ef7d97e7e0700a02b21ae..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_wifi.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_wifi2.png b/personcentor/src/main/resources/static/img/icon_wifi2.png
deleted file mode 100644
index f5dfdd904b11964b1fe929d070eed72b00d67095..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_wifi2.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_wy.png b/personcentor/src/main/resources/static/img/icon_wy.png
deleted file mode 100644
index e4fc7efadcf2466e6ff606690900f84d369ed2b6..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_wy.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_xhyd.png b/personcentor/src/main/resources/static/img/icon_xhyd.png
deleted file mode 100644
index 9f72af4cf0ed44f307ec75a852c6b07c3968f60d..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_xhyd.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_xq.png b/personcentor/src/main/resources/static/img/icon_xq.png
deleted file mode 100644
index f0b954265710f24b64775ebdbb4658f8930d3bd8..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_xq.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_xx.png b/personcentor/src/main/resources/static/img/icon_xx.png
deleted file mode 100644
index eaf05e701c2d46a638e3da8928dd5d87300acee6..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_xx.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_yd.png b/personcentor/src/main/resources/static/img/icon_yd.png
deleted file mode 100644
index a026605d4fe8e0092e337b8132e74ea9504e90f2..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_yd.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_yq.png b/personcentor/src/main/resources/static/img/icon_yq.png
deleted file mode 100644
index c54fed672e1c6a22c5e543441a4a2c983b904e9b..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_yq.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_yy.png b/personcentor/src/main/resources/static/img/icon_yy.png
deleted file mode 100644
index 64cabb717c9f5526d42b74f8a4e1a5dc3210c5ef..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_yy.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_yzm.png b/personcentor/src/main/resources/static/img/icon_yzm.png
deleted file mode 100644
index 4dfad572ea4982f72a24aff4292fbbecb90947ac..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_yzm.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_zd.png b/personcentor/src/main/resources/static/img/icon_zd.png
deleted file mode 100644
index f70ca8f2a2e923701d063c25f3c96011fbddbdca..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_zd.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_zmkm.png b/personcentor/src/main/resources/static/img/icon_zmkm.png
deleted file mode 100644
index 1b3bcb493c07375568c070fe2374f0a48104e164..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_zmkm.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_zn.png b/personcentor/src/main/resources/static/img/icon_zn.png
deleted file mode 100644
index 8f45c8064295c02668f4ef0e0df0ecd5a1f09adf..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_zn.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/icon_zs.png b/personcentor/src/main/resources/static/img/icon_zs.png
deleted file mode 100644
index 205cd09bff3708aa18f19614254153c1db8c1f59..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/icon_zs.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/jiaofei.png b/personcentor/src/main/resources/static/img/jiaofei.png
deleted file mode 100644
index 83968abbf33405afa30cbcaaf537ba3ad8149b77..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/jiaofei.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/jiazheng.png b/personcentor/src/main/resources/static/img/jiazheng.png
deleted file mode 100644
index 3b2794d64a2b442876b79fe2e0463e88e5f17741..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/jiazheng.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/kuaidi.png b/personcentor/src/main/resources/static/img/kuaidi.png
deleted file mode 100644
index b2f4c01420d0e5ab111c550b95da61f4ca438f72..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/kuaidi.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/luntan.png b/personcentor/src/main/resources/static/img/luntan.png
deleted file mode 100644
index e0681ac20ed64e077219897237ae6c7b1c531c37..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/luntan.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/pic1.jpg b/personcentor/src/main/resources/static/img/pic1.jpg
deleted file mode 100644
index 7b7625650dbcf850fe671ce298d62e766bc523fc..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/pic1.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/pic2.jpg b/personcentor/src/main/resources/static/img/pic2.jpg
deleted file mode 100644
index 1bf34f4dd5012a9aa96b7105268595095907f54a..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/pic2.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/pic3.jpg b/personcentor/src/main/resources/static/img/pic3.jpg
deleted file mode 100644
index 99f63ccdbfc9f5ada08dafe983d171ac219aac5b..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/pic3.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/pic4.jpg b/personcentor/src/main/resources/static/img/pic4.jpg
deleted file mode 100644
index bfdc52c784f47ca4ee48f4e214728af2e059559c..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/pic4.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/pic5.jpg b/personcentor/src/main/resources/static/img/pic5.jpg
deleted file mode 100644
index ae0605425a0b7df8a546560a8c33cca47942f5a4..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/pic5.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/pic6.jpg b/personcentor/src/main/resources/static/img/pic6.jpg
deleted file mode 100644
index c9e5dfd30031dedb2c28a43ab1b57c6b00c44ae4..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/pic6.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/pic7.jpg b/personcentor/src/main/resources/static/img/pic7.jpg
deleted file mode 100644
index 37e1443cf2e9179d27d930ed8014b27b4efa16c2..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/pic7.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/pic8.jpg b/personcentor/src/main/resources/static/img/pic8.jpg
deleted file mode 100644
index 27f65da90ab62e6b4248a8e2c17a68b829e936f8..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/pic8.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/qq_icon.jpg b/personcentor/src/main/resources/static/img/qq_icon.jpg
deleted file mode 100644
index 9618579d75d0e81e6ad538f1e87bbdbae04df670..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/qq_icon.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/stopcar.png b/personcentor/src/main/resources/static/img/stopcar.png
deleted file mode 100644
index 8a89611285ae8ff19f1c8cf1ba61054d0b8429ed..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/stopcar.png and /dev/null differ
diff --git a/personcentor/src/main/resources/static/img/tkm002_111926.jpg b/personcentor/src/main/resources/static/img/tkm002_111926.jpg
deleted file mode 100644
index d2d162599eb34972d0be65c367fbe37ac1115c8e..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/img/tkm002_111926.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/jquery/css/font/iconfont.eot b/personcentor/src/main/resources/static/jquery/css/font/iconfont.eot
deleted file mode 100644
index a24b99879fa25c8589ca5c655267c38e0bce0423..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/jquery/css/font/iconfont.eot and /dev/null differ
diff --git a/personcentor/src/main/resources/static/jquery/css/font/iconfont.svg b/personcentor/src/main/resources/static/jquery/css/font/iconfont.svg
deleted file mode 100644
index ce72a551e3c82d372f698a7093e076a96f6adb25..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/jquery/css/font/iconfont.svg
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
diff --git a/personcentor/src/main/resources/static/jquery/css/font/iconfont.ttf b/personcentor/src/main/resources/static/jquery/css/font/iconfont.ttf
deleted file mode 100644
index c3e7f5a13e7fbeeb443631d69b8483c925dfcf63..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/jquery/css/font/iconfont.ttf and /dev/null differ
diff --git a/personcentor/src/main/resources/static/jquery/css/font/iconfont.woff b/personcentor/src/main/resources/static/jquery/css/font/iconfont.woff
deleted file mode 100644
index 672198315fab5a6052660018aa3fef6149d7aaa9..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/jquery/css/font/iconfont.woff and /dev/null differ
diff --git a/personcentor/src/main/resources/static/jquery/css/iconfont.css b/personcentor/src/main/resources/static/jquery/css/iconfont.css
deleted file mode 100644
index 6321cc7f8e0bd67115fa2d86b173114d42552e71..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/jquery/css/iconfont.css
+++ /dev/null
@@ -1,25 +0,0 @@
-
-@font-face {font-family: "iconfont";
- src: url('iconfont.eot'); /* IE9*/
- src: url('iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('iconfont.woff') format('woff'), /* chrome、firefox */
- url('iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
- url('iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */
-}
-
-.iconfont {
- font-family:"iconfont" !important;
- font-size:16px;
- font-style:normal;
- -webkit-font-smoothing: antialiased;
- -webkit-text-stroke-width: 0.2px;
- -moz-osx-font-smoothing: grayscale;
-}
-.icon-weixin:before { content: "\e600"; }
-.icon-dianhua:before { content: "\e601"; }
-.icon-Go:before { content: "\e606"; }
-.icon-youxiang:before { content: "\e602"; }
-.icon-xinlang:before { content: "\e603"; }
-.icon-coordinate:before { content: "\e604"; }
-.icon-you:before { content: "\e605"; }
-.icon-xiangyouhover:before { content: "\e607"; }
diff --git a/personcentor/src/main/resources/static/jquery/css/style.css b/personcentor/src/main/resources/static/jquery/css/style.css
deleted file mode 100644
index a2245e319b9e896c7230b9c388f1ae875d3606c3..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/jquery/css/style.css
+++ /dev/null
@@ -1,314 +0,0 @@
-body, div, ul, ol, li, p, i, em, h1, h2, h3, h4, a, strong, span, img, form, input, textarea, button{
- padding: 0;
- margin:0;
-}
-body{
- font-family:"Microsoft YaHei", "Simsun", Tahoma, Arial,"Helvetica Neue","Hiragino Sans GB", "sans-self";
- font-size: 14px;
- line-height: 24px;
-}
-@font-face {font-family: 'iconfont';
- src: url('font/iconfont.eot'); /* IE9*/
- src: url('font/iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('font/iconfont.woff') format('woff'), /* chrome、firefox */
- url('font/iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
- url('font/iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */
-}
-input, textarea{
- outline: none;
-}
-li{
- list-style: none;
-}
-a{
- text-decoration: none;
- color: inherit;
-}
-img{
- border: 0;
-}
-.pr{
- position: relative;
-}
-.pa{
- position: absolute;
-}
-.pf{
- position: fixed;
-}
-.f-l{
- float: left;
-}
-.f-r{
- float: right;
-}
-li, div, ul{
- *zoom:1;
-}
-li:after, div:after, ul:after{
- content: '';
- display: table;
- clear: both;
-}
-.tran{
- transition:all 0.3s ease-out;
- -webkit-transition:all 0.3s ease-out;
- -moz-transition:all 0.3s ease-out;
- -o-transition:all 0.3s ease-out;
-}
-.container{
- width: 1000px;
- margin: 0 auto;
-}
-/*--------------样式重置------------*/
-/***********/
-
-.login-banner{
- width: 100%;
- background: url(../images/banner.jpg) center bottom no-repeat \9;
- background: url(../images/banner.jpg) center bottom/cover no-repeat;
-}
-@media screen and (min-width: 320px) {
- .login-banner{
- height: 100px;
- }
-}
-@media screen and (min-width: 480px) {
- .login-banner{
- height: 120px;
- }
-}
-@media screen and (min-width: 640px) {
- .login-banner{
- height: 160px;
- }
-}
-@media screen and (min-width: 768px) {
- .login-banner{
- height: 180px;
- }
-}
-@media screen and (min-width: 1024px) {
- .login-banner{
- height: 200px;
- }
-}
-@media screen and (min-width: 1280px) {
- .login-banner{
- height: 220px;
- }
-}
-@media screen and (min-width: 1366px) {
- .login-banner{
- height: 240px;
- }
-}
-@media screen and (min-width: 1680px) {
- .login-banner{
- height: 260px;
- }
-}
-.login-banner{
- height: 260px \9;
-}
-.login-box{
- width: 320px;
- margin:0 auto;
- overflow-x: hidden;
-}
-.box-con{
- width: 1600px;
-}
-.login-con{
- width: 300px;
- margin:0 10px;
-}
-.login-box .form-group{
- margin-top: 20px;
-}
-
-.login-box input, .signup-form{
- width: 300px;
- height:50px;
- line-height: 48px \9;
- padding-left: 10px;
- border: 1px #d9d9d9 solid;
- border-radius: 5px;
- font-size: 14px;
- box-sizing:border-box;
- -webkit-box-sizing:border-box;
- -moz-box-sizing:border-box;
- transition:all 0.3s ease-out;
- -webkit-transition:all 0.3s ease-out;
- -moz-transition:all 0.3s ease-out;
-}
-.login-box input:focus{
- border-color: #03a9f4;
- box-shadow: 0 0 15px #03a9f4;
- -webkit-box-shadow: 0 0 15px #03a9f4;
- -moz-box-shadow: 0 0 15px #03a9f4;
-}
-.login-box button{
- width: 300px;
- height: 50px;
- line-height: 50px;
- font-size: 16px;
- border: 0;
- background-color: #03a9f4;
- color: #fff;
- border-radius: 5px;
-}
-.login-box button a{
- display: block;
-}
-.login-box button a:hover{
- padding-top: 3px;
-}
-.login-box button:hover{
- background-color: #0096da;
-}
-.from-line{
- height: 0;
- overflow: hidden;
- border-top: 1px #c2c2c2 solid;
- margin-top: 20px;
-}
-.a-tag{
- position: relative;
- display: block;
- height: 48px;
- border: 1px #c2c2c2 solid;
- text-align: center;
- line-height: 48px;
- color: #c2c2c2;
- border-radius: 5px;
- background-color: #fff;
-}
-.blue-border{
- border:1px #03a9f4 solid;
- color: #03a9f4;
-}
-
-.a-tag:hover{
- background-color: #aaa;
- color: #fff;
-}
-.blue-border:hover{
- background-color: #03a9f4;
- color: #fff;
-}
-.a-tag i{
- position: absolute;
- right: 20px;
- top: 0;
- font-size: 24px;
- color: #fff;
-}
-.a-tag:hover i{
- right: 10px;
-}
-.signup, .other-way, .mimachongzhi, .mobile-success{
- width: 300px;
- margin: 0 10px;
-}
-
-
-.signup-form {
- margin-top: 20px;
-}
-.signup-form input{
- border: 0;
- height: 48px;
- width: 220px;
-}
-.signup-form input:focus{
- box-shadow:0 0 0 #fff;
-}
-.signup-form.border{
- border-color: #03a9f4;
- box-shadow: 0 0 15px #03a9f4;
- -webkit-box-shadow: 0 0 15px #03a9f4;
- -moz-box-shadow: 0 0 15px #03a9f4;
-}
-.signup-form a{
- color: #03a9f4;
-}
-.view-clause{
- padding-top: 20px;
- line-height: 14px;
- text-align: center;
- color: #808080;
-}
-.view-clause a{
- color: #03a9f4;
-}
-.view-clause a:hover{
- text-decoration: underline;
-}
-a.reacquire{
- color: #c1c1c1;
-}
-.error-notic{
- color: #ff4e00;
- display: none;
-}
-.login-footer{
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- padding: 10px 0;
- border-top: 1px #c1c1c1 solid;
- text-align: center;
- font-size: 12px;
- background-color: #fff;
- line-height: 20px;
-}
-.login-footer h1{
- font-size: 18px;
- font-weight: normal;
-}
-.login-nav{
- width: 100%;
- height: 30px;
- background-color: rgba(0,0,0,0.7);
- color: #fff;
- border-bottom: 1px #c1c1c1 solid;
-}
-.login-nav ul{
- padding-right: 50px;
-}
-.login-nav li{
- float: left;
- line-height: 30px;
- padding: 0 10px;
-}
-.login-nav a:hover{
- text-decoration: underline;
- color: #03a9f4;
-}
-.mobile-success{
- padding-top: 20px;
-}
-.mobile-success p{
- text-align: center;
- color: #666;
-}
-.mobile-success p span{
- font-weight: bold;
- padding: 0 10px;
-}
-.mobile-success p a{
- color: #03a9f4;
- padding-left: 5px;
-}
-.mobile-success p a:hover{
- text-decoration: underline;
-}
-.loading{
- position: absolute;
- top: 10px;
- right: 20px;
- display: none;
-
-}
diff --git a/personcentor/src/main/resources/static/jquery/images/banner.jpg b/personcentor/src/main/resources/static/jquery/images/banner.jpg
deleted file mode 100644
index 6a97855128e7819a0691a938ce79f3258d74f6bd..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/jquery/images/banner.jpg and /dev/null differ
diff --git a/personcentor/src/main/resources/static/jquery/images/loading.gif b/personcentor/src/main/resources/static/jquery/images/loading.gif
deleted file mode 100644
index 8b81cf124b70364218f5eb98d4f49dcaefefc41e..0000000000000000000000000000000000000000
Binary files a/personcentor/src/main/resources/static/jquery/images/loading.gif and /dev/null differ
diff --git a/personcentor/src/main/resources/static/jquery/js/jquery.js b/personcentor/src/main/resources/static/jquery/js/jquery.js
deleted file mode 100644
index ee0233703da37c9cc42591620e0befa769cd6a2a..0000000000000000000000000000000000000000
--- a/personcentor/src/main/resources/static/jquery/js/jquery.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/*! jQuery v1.7.1 jquery.com | jquery.org/license */
-(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"":"")+""),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){if(c!=="border")for(;g=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;ca",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o=""+"",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};
-f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;le&&i.push({elem:this,matches:d.slice(e)});for(j=0;j0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h