.banner{
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.banner img{
    width: 100%;
    min-width: 1920px;
}
.company{
    font-size: 18px;
    line-height: 36px;
}
.company h1{
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    text-align: center;
}
.company .intro{
    padding-top: 90px;
    margin-bottom: 40px;
}
.company .introText{
    margin-top: 36px;
    color:#56585D;
}
.company .introText p{
    margin-top: 40px;
}
.company .introText p:first-child{
    margin-top: 0;
}
.company b{
    color:#181A20;
}
.company .medal{
    padding-top: 90px;
    margin-bottom: 40px;
}
.company .us{
    padding-top: 110px;
}
.company h2{
    margin-top: 16px;
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
    text-align: center;
}
.company .map{
    height:470px;
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
}
#map{
    width: 100%;
    height: 100%;
}
.map_way{
    position: absolute;
    right:20px;
    top:40px;
    width: 376px;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.5);
}
.map_way img{
    width: 100%;
}
.medalSwiper {
    width: 100%;
    height: 100%;
}
.medalSwiper .slideImg{
    display: block;
    width: 100%;
    height: 290px;
    object-fit: cover;
}
.medalSwiper .swiper-slide{
    text-align: center;
    cursor: pointer;

}
.medalSwiper .text {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 26px;
    margin-bottom: 18px;
}
.slideSerial{
    width: 520px;
    height: 88px;
    position: relative;
    display: flex;
    justify-content: center;
}
.medalSwiper .swiper-slide:hover .slideSerial::after{
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    z-index: 1;
    background-image: url("../image/about/hover-circle.png");
    background-size: 100%;
    top: 50%;
    left: 50%;
    margin-left:-7px;
    margin-top: -7px;
    animation: myScale .4s;
}
.medalSwiper .swiper-slide:hover .slideSerial::before{
    content: '';
    width: 180px;
    height: 2px;
    position: absolute;
    z-index: 1;
    background-image: url("../image/about/hover-line.png");
    top: 50%;
    margin-top: -2px;
    animation: myWidth .4s;
}
@keyframes myScale {
    0%{
        transform: scale(0)
    }
    100%{
        transform: scale(1)
    }
}
@keyframes myWidth {
    0%{
        width:0;
    }
    100%{
        width: 180px;
    }
}
.slideSerial img{
    display: block;
    width: 104px;
    height: 88px;
    margin: 0 auto;
}
.medalSwiper .swiper-button-prev,.medalSwiper .swiper-button-next{
    top:unset;
    bottom:22px;
    width: 48px;
    height: 48px;
    z-index: 2;
}
.medalSwiper .swiper-button-prev:after,.medalSwiper .swiper-button-next:after{
    content: unset;
}
.medalSwiper .swiper-button-prev{
    background-image: url("../image/about/btn_left_nor@2x.png");
    left:0;
    background-size: 100%;
}
.medalSwiper .swiper-button-next{
    background-image: url("../image/about/btn_right_nor@2x.png");
    right: 0;
    background-size: 100%;
}
.medalSwiper .swiper-button-prev.swiper-button-disabled{
    background-image: url("../image/about/btn_left_dis@2x.png");
    opacity: 1;
    pointer-events:inherit;
}
.medalSwiper .swiper-button-next.swiper-button-disabled{
    background-image: url("../image/about/btn_right_dis@2x.png");
    opacity: 1;
    pointer-events:inherit;
}
.medalSwiper .swiper-button-prev:not(.swiper-button-disabled):hover{
    background-image: url("../image/about/btn_left_sel@2x.png");
}
.medalSwiper .swiper-button-next:not(.swiper-button-disabled):hover{
    background-image: url("../image/about/btn_right_sel@2x.png");
}
.swiper-line{
    position: absolute;
    bottom:44px;
    height: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ECEEF0;
    z-index: 0;
}