/*
Theme Name: Storefront Child
Theme URI: https://woocommerce.com/storefront/
Description: A child theme of Storefront.
Template: storefront
Text Domain: storefront-child
*/

/* 定义 Thin 字重 */
@font-face {
    font-family: 'Gotham';
    font-weight: 300;
    font-style: normal;
    src: url('./fonts/Gotham-Book.otf') format('opentype');
}

/* 定义 Medium 字重 */
@font-face {
    font-family: 'Gotham';
     font-weight: 400;
    font-style: normal;
    src: url('./fonts/Gotham-Medium.otf') format('opentype');
}

/* 定义 Medium 字重 */
@font-face {
    font-family: 'Gotham';
     font-weight: 500;
    font-style: normal;
    src: url('./fonts/Gotham-Medium.otf') format('opentype');
}

/* 定义 Bold 字重 */
@font-face {
    font-family: 'Gotham';
    font-weight: 700;
    font-style: normal;
    src: url('./fonts/Gotham-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'BlackerProDisplayLight';
    font-style: normal;
    src: url('./fonts/BlackerProDisplayLight.otf') format('opentype');
}

body {
    font-family: 'Gotham', Microsoft YaHei, sans-serif;
    /* 默认使用 medium */
}

.hover-item:hover {
    opacity: 0.9;
}

a:focus {
    outline: none;
}