/* 
 * Material Icons字体已禁用
 * 我们现在完全使用icons-fallback.css中定义的图标
 */

/* Material Icons字体设置 */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/material-icons/MaterialIcons-Regular.woff2') format('woff2'),
       url('../../fonts/material-icons/MaterialIcons-Regular.woff') format('woff');
}

/* 
 * 基本样式保留，但移除了字体设置
 */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* 推荐的尺寸 */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* 支持所有WebKit浏览器 */
  -webkit-font-smoothing: antialiased;
  /* 支持Safari和Chrome */
  text-rendering: optimizeLegibility;

  /* 支持Firefox */
  -moz-osx-font-smoothing: grayscale;

  /* 支持IE */
  font-feature-settings: 'liga';
}

/* 规则设置为使用系统字体替代 */ 