/* 全局设置 box-sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

p,
div,
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;
}

.titleTextSmall,
.titleText {
    font-size: 0.48rem;
    color: #000;
    font-weight: bold;
    font-family: 'Poppins-Bold', Arial, sans-serif;
    margin-bottom: 0.5rem;
}

.titleTextSmall {
    font-size: 0.38rem;
    margin-bottom: 0.3rem;
}

.titleContent {
    font-size: 0.3rem;
    color: #000;
    /*font-weight: bold;*/
    font-family: 'Poppins-Regular', Arial, sans-serif;
}

.imgCss {
    width: 100%;
    height: 100%;
}

.textCenter {
    text-align: center;
}

.blueBtn {
    width: 3rem;
    height: 0.66rem;
    line-height: 0.66rem;
    color: #fff;
    font-size: 0.3rem;
    background-color: #0188e2;
    text-align: center;
    cursor: pointer;
    border-radius: 0.4rem;
    margin-top: 0.4rem;
}