/* 全局设置 box-sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

p,
body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

@font-face {
    font-family: 'pb';
    src: url('../font/Poppins-Bold.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'pr';
    src: url('../font/Poppins-Regular.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'pm';
    src: url('../font/Poppins-Medium.ttf') format('truetype');
    font-style: normal;
}

.imgCss {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.titleH {
    color: #000;
    font-size: .48rem;
    font-family: pb;
    line-height: 2;
    text-align: center;
    margin-bottom: .2rem;
}

.msgH {
    color: #666;
    font-size: .2rem;
    line-height: 1.8;
    text-align: center;
    font-family: pr;
}