@charset "utf-8";
.about_mask .location {
    position: absolute;
    left: 0;
    width: 100%;
    top: 16px;
}
.about_mask .location .my-container {
    justify-content: flex-end;
}
.about_top {
    position: relative;

    overflow: hidden;
    z-index: 1;
}

.about_top .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.about_mask {
    width: 100%;
    background: linear-gradient(1deg, rgba(0, 0, 0, 0.40) 1.67%, rgba(0, 0, 0, 0.00) 50.47%);
}

.about_content {
    padding-top: 152px;
}

.about_content .title {
    color: var(--white-color);
    font-weight: 400;
    line-height: 1.3;
}

.about_content .title strong {
    display: block;
}

.video-box {
    padding-top: 40px;
}

.video-box a {
    display: inline-flex;
    padding: 14px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 49px;
    background: var(--white-color);
    color: var(--dark);
    font-size: 18px;
    font-weight: 400;
}

.video-box a img {
    width: 32px;
    margin-left: 10px;
}

.about_number {
    padding-top: 180px;
    padding-bottom: 48px;
    align-items: flex-end;
}

.about_number .scrill {
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    animation: jumpDown 1.6s ease-in-out infinite;

}

@keyframes jumpDown {
    0% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

.number_list {
    width: 916px;
}

.number_list ul {
    display: flex;
    justify-content: space-between;
}

.number_list ul li {
    text-align: center;
    min-width: 214px;
}

.number_list .year {
    display: flex;
    align-items: center;
    justify-content: center;
}

.number_list .year img {
    width: 68px;
}

.number_list .year span {
    margin-left: 8px;
    margin-right: 8px;
    color: #FFF;
    font-family: 'D-DIN-PRO';
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.number_list .year em {
    color: #FFF;
    display: block;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    padding-top: 12px;
}

.number_list .des {
    padding-top: 10px;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.about_mid {
    padding-top: 48px;
    padding-bottom: 58px;
    background: #F3F5F7;
    overflow: hidden;
}

.about_mid .my-container {
    align-items: flex-end;
}

.about_mid_left {
    flex: 1;
    padding-right: 85px;
}

.about_mid_left .t {
    padding-bottom: 40px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

.about_mid_left p {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    padding-bottom: 10px;
}

.about_mid_left p:last-child {
    padding-bottom: 0;
}

.about_mid_right {
    width: 45%;
}

.about_mid_right img {
    object-fit: cover;
}

@media (max-width:1440px) {
    .about_mid_left {
        padding-right: 45px;
    }
}

@media (max-width:1366px) {

    .number_list .year span {
        font-size: 42px;
    }

    .number_list .year img {
        width: 60px;
    }

    .about_mid_right {
        width: 50%;
    }
}

@media (max-width:1280px) {
    .number_list {
        width: auto;
    }
    .number_list ul li {
        min-width: 198px;
    }

    .number_list .year span {
        font-size: 40px;
    }

    .number_list .year img {
        width: 56px;
    }

    .about_mid .my-container {
        align-items: center;
    }
}

@media (max-width:1200px) {

    .about_mid .my-container {
        flex-wrap: wrap;
    }

    .about_mid_left {
        flex: inherit;
        padding-right: 0;
    }

    .about_mid_right {
        padding-top: 20px;
        width: 100%;
    }
}

@media (max-width:991px) {
    .about_content {
        padding-top: 60px;
    }

    .number_list ul li {
        min-width: 167px;
    }
    .number_list .year span {
        font-size: 34px;
    }

    .number_list .year img {
        width: 46px;
    }
}

@media (max-width:767px) {
    .about_mask {
        background: linear-gradient(1deg, rgba(0, 0, 0, 0.40) 16.7%, rgba(0, 0, 0, 0.00) 80.47%);
    }
    .about_content {
        padding-top: 160px;
    }
    .about_number {
        padding-top: 100px;
        padding-bottom: 20px;
    }

    .about_number .scrill {
        display: none;
    }

    .number_list {
        width: 100%;
    }

    .number_list .year img {
        width: 36px;
    }

    .number_list ul {
        flex-wrap: wrap;
    }

    .number_list ul li {
        width: 50%;
        padding-bottom: 25px;
    }

    .number_list .year {
        justify-content: center;
    }

    .video-box a {
        padding: 12px 16px;
        font-size: 16px;
    }

    .about_content .title {
        line-height: 1.5;
        font-size: 24px;
    }

    .number_list .year span {
        margin-left: 0;
        margin-right: 8px;
    }

    .number_list .year span {
        font-size: 36px;
    }

    .number_list .des {
        padding-top: 4px;
    }

    .about_mid_left .t {
        padding-bottom: 30px;
    }

}

@media (max-width:375px) {
    .about_content .title {
        font-size: 24px;
    }

}

@media (max-width:360px) {
    .about_content .title {
        font-size: 22px;
    }

}

/* culture */
.about_culture {
    padding-top: 112px;
    padding-bottom: 86px;
    overflow: hidden;
}

.culture_hover {
    width: 100%;
    padding-top: 40px;
    overflow: hidden;
}

.culture_hover .grid-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.culture_hover .grid-box .box {
    width: 160px;
    float: left;
    height: 510px;
    position: relative;
    background: #F3F5F7;
    border-right: 1px solid white;
    -webkit-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.culture_hover .grid-box .s_title {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
}

.culture_hover .grid-box .s_title span {
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.culture_hover .grid-box .s_icon {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.culture_hover .grid-box .inbox {
    position: relative;
    height: 100%;
    opacity: 0;
    min-width: 300px;
    padding: 56px;
    z-index: 1;
}

.culture_hover .grid-box .inbox .icon {
    position: absolute;
    right: 56px;
    bottom: 40px;
    z-index: 9;
}

.culture_hover .grid-box .act {
    width: calc(100% - 480px);
}

.culture_hover .grid-box .box .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    z-index: -1;
}

.culture_hover .grid-box .act .inbox::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
}

.culture_hover .grid-box .text {
    opacity: 0;
}

.culture_hover .grid-box .act .inbox {

    opacity: 1;
}

.culture_hover .grid-box .act .title {
    position: relative;
    color: var(--white-color);
    font-size: 32px;
    font-weight: 700;
    z-index: 9;
}

.culture_hover .grid-box .act .text {
    position: relative;
    padding-top: 30px;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 400;
    opacity: 1;
    z-index: 9;
}

.culture_hover .grid-box .act .bg {
    opacity: 1;
}

.culture_hover .grid-box .title {
    transform: translateY(40px);
    opacity: 0;
    transition: transform .4s;
    transition-delay: .1s ease-in-out;
}

.culture_hover .grid-box .text {
    transform: translateY(50px);
    opacity: 0;
    transition: transform .4s;
    transition-delay: .3s ease-in-out;
}

.culture_hover .grid-box .act .title,
.culture_hover .grid-box .act .text {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width:991px) {
    .about_culture {
        padding-top: 80px;
        padding-bottom: 66px;
    }

    .culture_hover .grid-box .box {
        width: 120px;

    }

    .culture_hover .grid-box .act {
        width: calc(100% - 360px);
    }

    .culture_hover .grid-box .inbox {
        padding: 56px 36PX;
    }


}

@media (max-width:767px) {
    .about_culture {
        padding-top: 80px;
        padding-bottom: 46px;
    }

    .culture_hover .grid-box .box {
        width: 100%;
        height: 280px;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .culture_hover .grid-box .inbox {
        padding: 45px 30px;
    }

    .culture_hover .grid-box .inbox .icon {
        right: inherit;
        left: 30px;
        bottom: 30px;
    }

    .culture_hover .grid-box .act .title {
        font-size: 26px;
    }

    .culture_hover .grid-box .act .text {
        padding-top: 20px;
        font-size: 16px;
    }

}
/* yanfashli */
.about_strength {
    position: relative;
padding: 80px 0 50px 0;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
    overflow: hidden;
}
.about_strength::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.about_strength .page_title h2 {
    color: var(--white-color);
}
.about_strength .page_title p {
    color:var(--white-color);
}
.strength_cont {
    position: relative;
    padding-top: 40px;
}
.strength_cont .text{
    max-width: 730px;
}
.strength_cont .text p {
    padding-bottom: 5px;
    color: var(--white-color);
font-size: 16px;
font-weight: 400;
line-height: 30px;
}
.number_strength {
    padding-top: 70px;
}
.number_strength ul li {
    padding-right: 58px;
    padding-bottom: 30px;
    float: left;
}
.number_strength ul li:last-child {
    padding-right: 0;
}
.number_strength .year {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.number_strength .year span {
    margin-right: 8px;
    color: #FFF;
    font-family: 'D-DIN-PRO';
    font-size: 40px;
    font-weight: 700;
    line-height: 0.8;
}

.number_strength .year em {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
}

.number_strength .des {
    padding-top: 6px;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}
@media (max-width:1280px) {
 
    .number_strength .year span {
        font-size: 38px;
    }
}
@media (max-width:991px) {
    .number_strength ul li {
        padding-right: 38px;
    }
    .number_strength .year span {
        font-size: 36px;
    }
}
@media (max-width:767px) {
    .about_strength {
        padding: 80px 0 20px 0;
    }
    .number_strength ul li {
        width: 33.33%;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    .number_strength {
        padding-top: 50px;
    }
    .number_strength ul {
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .number_strength .year span {
        font-size: 32px;
    }
}
@media (max-width:359px) {
    
    .number_strength ul li {
        width:50%;
    }
    
    .number_strength .year span {
        font-size: 30px;
    }
}

/* honor */
.about_honor {
    position: relative;
    padding-top: 80px;
    background-image: url(/template/default/index/4344/images/honor_bg3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-color: var(--white-color);
    overflow: hidden;
}

.honor_loop {
    padding-top: 40px;
    padding-bottom: 80px;
    margin-left: -30px;
    margin-right: -30px;
}

.honor_loop .thumb {
    overflow: hidden;
}

.honor_loop .thumb i {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.honor_loop .t {
    margin-top: 20px;
    color: var(--dark);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.honor_loop .swiper-slide-active .t {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
}

.honor_loop .swiper-wrapper {
    align-items: stretch;
}

.honor_loop .swiper-slide {
    padding-left: 35px;
    padding-right: 35px;
    height: auto;
}

.honor_loop .swiper-slide.swiper-slide-active {
    padding-left: 0;
    padding-right: 0;
}

.honor_loop .swiper-slide .honor_list {
    width: 100%;
    height: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
}

.honor_loop .swiper-slide.swiper-slide-active .honor_list {
    padding: 0;

}

.honor_loop .honor_button {
    padding-top:15px;
}

.honor_loop .honor_button .in_l {
    justify-content: center;
}

.honor_button .swiper-num {
    padding-left: 24px;
    padding-right: 24px;
    color: #999;
    font-family: 'D-DIN-PRO-Regular';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.honor_button .swiper-num .active {
    color: var(--main-color);
    margin-right: 2px;
}

.honor_button .swiper-num .swiper-paginations {
    margin-left: 2px;
}

.honor_button .honor_prev,
.honor_button .honor_next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    cursor: pointer;
}

.honor_button .honor_prev:hover,
.honor_button .honor_next:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.honor_button .honor_prev:hover svg path,
.honor_button .honor_next:hover svg path {
    stroke: var(--white-color);
}
@media (max-width:1279px) {
  

}
@media (max-width:767px) {
    .honor_loop .swiper-slide {
        padding-left: 25px;
        padding-right: 25px;
    }
    .honor_loop .swiper-slide .honor_list {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .honor_loop .t {
        margin-top: 16px;
        font-size: 16px;
        line-height: 26px;
    }
    .honor_button .swiper-num {
        padding-left: 14px;
        padding-right: 14px;
        font-size: 20px;
    }
    .honor_button .honor_prev, .honor_button .honor_next {
  
        width: 46px;
        height: 46px;
  
    }
}<!--ºÄÊ±1758367492.1103Ãë-->