﻿@charset "utf-8";

//自定义字体
@mixin font-face($fontName,$addedPath:'../images/'){
    @font-face {
        font-family: '#{$fontName}';
        src: url('#{$addedPath}#{$fontName}.eot');
        src:
            url('#{$addedPath}#{$fontName}.eot?#images-spider') format('embedded-opentype'),
            url('#{$addedPath}#{$fontName}.woff') format('woff'),
            url('#{$addedPath}#{$fontName}.ttf') format('truetype'),
            url('#{$addedPath}#{$fontName}.svg') format('svg');
        font-weight: normal;
        font-style: normal;
    };
};