﻿@charset "utf-8";
/* CSS Document */

// 页面加载
.MAINShow {animation: MAINShow 3s;animation-fill-mode:forwards;}
@keyframes MAINShow {from {margin-left:1500px;} to {margin-left:0;}}


// 导航显示
.DTShow {animation:DTShow 1s;animation-fill-mode:forwards;}
@keyframes DTShow {from {left:2000px;} to {left:0;}}

.DCShow {animation:DCShow 1s;animation-fill-mode:forwards;}
@keyframes DCShow {from {left:2000px;} to {left:0;}}

/*.DTShow {animation:DTShow 2s;animation-fill-mode:forwards;}
@keyframes DTShow {from {left:2000px;} to {left:0;}}

.DCShow {animation:DCShow 2s;animation-fill-mode:forwards;}
@keyframes DCShow {from {left:2000px;} to {left:0;}}
*/

// 导航隐藏
.DTHide {animation:DTHide 1s;animation-fill-mode:forwards;}
@keyframes DTHide {from {left:0;} to {left:2000px;}}

.DCHide {animation:DCHide 1s;animation-fill-mode:forwards;}
@keyframes DCHide {from {left:0;} to {left:2000px;}}

/*.DTHide {animation:DTHide 2s;animation-fill-mode:forwards;}
@keyframes DTHide {from {left:0;} to {left:2000px;}}

.DCHide {animation:DCHide 2s;animation-fill-mode:forwards;}
@keyframes DCHide {from {left:0;} to {left:2000px;}}*/