@charset "UTF-8";

/*动画*/
.transition{
    transition: all 600ms;
    -moz-transition: all 600ms; /* Firefox 4 */
    -webkit-transition: all 600ms; /* Safari 和 Chrome */
    -o-transition: all 600ms; /* Opera */
}

/*字体*/
.title-base{
    font-family: MicrosoftYaHei;
    font-size: 30px;
    font-weight: bold;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-base::before,
.title-base::after{
    content: '';
    display: inline-block;
    width: 93px;
    height: 2px;
    background-color: #e0e1e3;
    margin: 0 9px;
}
.subtitle-base{
    font-family: MicrosoftYaHei;
    font-size: 14px;
    color: #8a8a8a;
    text-align: center;
    padding-top: 20px;
}

/*1200*/
.y-1200{
    width: 1200px;
    margin: 0 auto;
}


/*响应式配置*/
@media (max-width:1920px) {
}
@media (max-width:1599px) {
}
@media (max-width:1477px) {}

@media (max-width:1365px) {}

@media (max-width:1199px) {
    .y-1200{
        width: 100%;
        padding: 0 25px;
    }
    .title-base{
        font-size: 28px;
    }
    .title-base::before, .title-base::after{
        width: 65px;
    }
}

@media (max-width:990px) {
    .y-1200{
        padding: 0 10px;
    }
    .title-base{
        font-size: 22px;
    }
}

@media (max-width:767px) {
    .title-base::before, .title-base::after{
        width: 35px;
    }
}