/* 全局设置 box-sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

p,
body {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Poppins-Blod';
    src: url('./font/Poppins-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('./font/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('./font/Poppins-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.titleText {
    font-size: 0.48rem;
    color: #000;
    font-weight: bold;
    font-family: 'Poppins-Bold', Arial, sans-serif;
}
.titleContent {
    font-size: 0.18rem;
    color: #000;
    font-family: 'Poppins-Regular', Arial, sans-serif;
}

.imgCss {
    width: 100%;
    height: 100%;
}