﻿/* 原有内容保持不变 */

/* 统一字体声明 */
@font-face {
      font-family: 'kzfont tom';
      src: url('../font-ttf/kzfont_tom.woff2') format('woff2'),
           url('../font-ttf/kzfont_tom.woff') format('woff');
		   url('../font-ttf/kzfont_tom.svg') format('woff');
		   url('../font-ttf/kzfont_tom.eot') format('woff');
            font-weight: normal;
            font-style: normal;
        }

* {
    font-family: 'kzfont tom', sans-serif !important;
}

        
/* 基本样式 */
        body {
            font-family: 'kzfont tom', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #CCCCCC;
            color: #333;
        }

/* 自定义动画效果 */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}