1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .footer {
- background: #000 ;
- margin: 0;
- padding: 0;
- border: 0;
- font-size: 12px;
- //height: 150px;
- color: #888;
- width: 100%;
- text-align: center;
- position: relative;
- .footer-item-wrapper {
- width: 1200px;
- margin: 0 auto;
- display: flex;
- justify-content: center;
- padding: 25px 0;
- .footer-item-logo {
- height: 66px;
- width: 64px;
- margin: auto 0;
- a {
- width: 100%;
- height: 100%;
- display: block;
- background: url('https://file.funcheergame.com/office/image/footer-logo.png') center no-repeat;
- background-size: contain;
- }
- }
- .footer-item-content {
- height: 100%;
- text-align: left;
- display: inline-block;
- font-size: 12px;
- padding: 0 20px;
- margin-left: 50px;
- border-left: 1px solid #888;
- border-shadow: 0px 1px 1px 1px #666;
- p {
- font-size: 12px;
- font-family: "宋体";
- color: #888;
- a{
- display: inline-block;
- color: #888;
- }
- }
- }
- }
- }
|