| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- cite {
- font-style: normal;
- }
- /*首页样式*/
- .notice {
- background: #e0e0e0;
- }
- .title {
- font-size: 16px;
- height: 50px;
- line-height: 50px;
- }
- .list li {
- float: left;
- width: 120px;
- padding: 20px 0;
- text-align: center;
- cursor: pointer;
- border-radius: 5px;
-
- }
- .list li:hover {
- background-color: #fff;
- box-shadow: 0 0 10px rgba(0, 0, 0, .1)
- }
- .list li:hover .f_icon>i {
- animation: jianyin 0.5s ease-in-out;
- animation-iteration-count: 1;
- }
- .free {
- position: relative;
- }
- .free a {
- display: inline-block;
- }
- .free .f_icon {
- width: 80px;
- position: relative;
- height: 80px;
- line-height: 80px;
- margin: 0 auto;
- background-color: #54cc8c;
- border-radius: 10px;
- }
- .free .f_icon i {
- font-size: 50px;
- color: #fff;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .free .f_name {
- padding: 10px 10px 0 10px;
- color: #666;
- }
- @keyframes jianyin{
- 0% {
- transform: translate(0, 0);
- opacity: 1
- }
- 60% {
- transform: translate(0, -50%);
- opacity: 0
- }
- 61% {
- transform: translate(0, 50%);
- opacity: 0
- }
- 100% {
- transform: translate(0, 0);
- opacity: 1
- }
- }
|