/*这是 font.css 可设置多种字体； */
/*注意：font-family: 'XXX'; 将字体名字自定义为 XXX,使用时要用这个名字*/


@font-face {
    font-family: 'sNormal';
    src: url('../asset/SourceHanSansCN-Regular.otf');
}

@font-face {
    font-family: 'sBold';
    src: url('../asset/SourceHanSansCN-Medium.otf');
}

@font-face {
    font-family: 'sHeavy';
    src: url('../asset/SourceHanSansCN-Bold.otf');
}

@font-face {
    font-family: 'sNumber';
    src: url('../asset/squada-one.ttf');
}

body {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
    font-family: 'sNormal';
}

.app {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
    width: 1400px;
    /* border: 1px solid #eeeeee; */
}

.header {
    /* width: 1400px; */
    height: 100px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}

.company-icon {
    height: 100px;
    /* width: 200px; */
    text-align: center;
    display: inline-flex;
    cursor: pointer;

    img {
        width: 159px;
        height: 36px;
        margin: 32px auto;
    }
}

.menu-con {
    height: 100px;
    width: 600px;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
}

.menu-item {
    font-size: 18px;
    color: #000012;
    line-height: 96px;
    border-bottom: 4px solid #FFFFFF;
    cursor: pointer;
    width: 100px;
}

.menu-item-active {
    border-color: #0158D1 !important;
    color: #0158D1 !important;
}

.company-tel {
    height: 100px;
    /* width: 200px; */
    font-size: 16px;
    color: #000012;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 18px;

    img {
        height: 18px;
        width: 18px;
        margin: 0 10px;
    }
}

.footer {
    height: 120px;
    font-size: 16px;
    line-height: 35px;
    color: #ffffff;
    background-color: #0b59b2;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}