.base_banner {
    width: 100%;
    height: 43.125rem;
    overflow: hidden;
    position: relative;
}

.base_banner .title {
    font-size: 3.75rem;
    color: white;
    text-transform: capitalize;
    font-family: 'LXGW975GothicSC-600W';
    position: relative;
    z-index: 9;
}

.base_banner .bg {
    position: absolute;
    inset: 0;
    transform: scale(1.3);
    animation: contactZoom 5s ease-out forwards
}

.base_banner .bg.news_banner {
    background: url(../images/new_banner.jpg) no-repeat center/cover;
}

.base_banner .bg.Publication_banner {
    background: url(../images/Publication_banner.jpg) no-repeat center/cover;
}

.base_banner .bg.Contact_banner {
    background: url(../images/Contact_banner.jpg) no-repeat center/cover;
}

.base_banner .bg.Careers_banner {
    background: url(../images/Careers_banner.jpg) no-repeat center/cover;
}

.base_banner .bg.About_banner {
    background: url(../images/About_banner.jpg) no-repeat center/cover;
}

.base_banner .bg.Platform_banner {
    background: url(../images/Platform_banner.jpg) no-repeat center/cover;
}

.base_banner .bg.Pipeline_banner {
    background: url(../images/Pipeline_banner.jpg) no-repeat center/cover;
}

.bg_light{
    background: #e0ecff;
}
.bg_light_pipeline{
    background: #d7eaff;
}

@keyframes contactZoom {
    from {
        transform: scale(1.1)
    }

    to {
        transform: scale(1)
    }
}

/*news style begin*/
.news-tab {
    display: inline-block;
    padding: .5rem 1.5rem;
    border-radius: 3rem;
    background: #fff;
    color: #1a7fbd;
    font-size: 1.25rem;
}


.news-tab.active,
.news-tab:hover {
    background: #1a7fbd;
    color: #fff;
}

.news-list .news-item {
    padding: 2rem;
    border-bottom: 1px solid #ebebeb;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.news-list .news-item .pic {
    width: 40%;
    height: 100%;
    position: absolute;
    right: -100%;
    top: 0;
    z-index: 1;
    transition: all .5s;
}

.news-list .news-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list .news-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(25, 125, 219, 1) 0%, rgba(60, 149, 234, 1) 60%, rgba(60, 149, 234, 0) 100%);
    z-index: 2;
    transition: all .5s;
}

.news-list .news-item .txt {
    position: relative;
    z-index: 3;
    max-width: 70%;
}

.news-list .news-date {
    color: #96a4b8;
    font-size: 1.25rem;
}

.news-list .news-title {
    font-size: 1.75rem;
    color: #1a3b5f;
}

.news-list .news-read {
    color: #25cfff;
    font-size: 1rem;
}

.pagination-wrap .page-btn {
    display: inline-block;
    padding: .375rem .875rem;
    border-radius: .5rem;
    border: 1px solid rgba(0, 0, 0, .1);
    color: #1a3b5f
}

.pagination-wrap .page-btn.active {
    background: #1a7fbd;
    color: #fff;
    border-color: #1a7fbd
}

.news-list .news-item:hover .pic {
    right: 0;
}

.news-list .news-item:hover::before {
    left: 0;
}

.news-list .news-item:hover .news-date,
.news-list .news-item:hover .news-title,
.news-list .news-item:hover .news-read {
    color: #fff;
}
.news-desc {
    font-size: 1rem;
    color: #48525c;
}
.news-list .news-item:hover .news-desc {
    color: #fff;
}
/*news detail style begin*/
.news_detail .news_date {
    font-size: 1rem;
}

.news_detail .news_date span {
    padding: 0.5rem 1.5rem;
    background: #0770d3;
    color: white;
    border-radius: 3rem;
    margin-right: 0.5rem;
}

.news_detail .news_title {
    font-size: 2rem;
    color: #1a3b5f;
}

.news_content {
    grid-column: span 8;
    padding-right: 5vw;
    border-right: 1px solid rgba(0, 0, 0, .1);
    font-size: 1.25rem;
}

.news_content img {
    display: block;
    max-width: 100%;
}

.news_hot {
    grid-column: span 4;
    padding-left: 2vw;
}

.column_title {
    font-size: 1.5rem;
    color: #1a3b5f;
}

.news_hot_list {
    margin: 0;
    padding: 0;
}

.column_title {
    font-size: 1.75rem;
    color: #1a3b5f;
}

.news_hot_list li {
    padding: 1rem 0;
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.news_hot_list li .date {
    color: #96a4b8;
  
}

.news_hot_list li .title {
    color: #1a3b5f;
    font-size: 1.5rem;
}

.news_hot_list li:hover .title{
    color: #1a7fbd;
     font-size: 1.5rem;
}

/*news detail style end*/
/*news style end*/

/*Publication style begin*/
.Publication-list .item {
    grid-column: span 6;
    background: white;
    border-radius: 1rem;
    border: 2px solid white;
    transition: all 0.3s;
    position: relative;
    top: 0;
}

.Publication-list .item .pic {
    border-radius: 0.5rem;
}

.Publication-list .item .title {
    font-size: 2rem;
    color: #0770d3;
    font-family: 'LXGW975GothicSC-600W';
}

.Publication-list .item .info {
    font-size: 1.25rem;
    color: #48525c;
}

.Publication-list .item .date {
    font-size: 1.25rem;
    color: #08b4dc;
    font-style: oblique;
    position: relative;
}

.Publication-list .item .date::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 70%;
    height: 1px;
    background: #e2e9f4;
}

.Publication-list .item:hover {
    border-color: #066ecf;
    top: -1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(182, 210, 244, .2);
}

/*Publication style end*/

/*all_big_title begin*/

.all_big_title {
    font-size: 2.25rem;
    color: #0770d3;
    font-family: 'LXGW975GothicSC-600W';
    text-transform: capitalize;
    background: url(../images/all_big_title.png) no-repeat top center;
    background-size: contain;
}

/*all_big_title end*/

/*contact style begin*/
.contact .item {
    grid-column: span 4;
    border-right: 1px solid #e2e9f4;
}

.contact .item:last-child {
    border-right: none;
}

.contact .item p {
    margin: 0;
    font-size: 1.5rem;
    color: #7e8997;
    word-break: break-all;
}

.contact .item p .icon {
    width: 4rem;
}

.contact .item p span {
    font-size: 1.75rem;
    color: #00529f;
    font-family: 'LXGW975GothicSC-600W';
}

.contact .item p b {
    color: #000;
    display: block;
}

/*contact style end*/

/*careers_pic style begin*/
.careers_pic {
    grid-column: span 5;
}

.careers_pic img {
    max-width: 100%;
    display: block;
}

.join_txt {
    grid-column: span 7;
}


.join_txt .title {
    font-family: 'LXGW975GothicSC-600W';
    color: #1b62ab;
    font-size: 2.5rem;
}

.join_txt p {
    line-height: 2;
    font-size: 1.5rem;
    color: #757c8b;
}

.join_txt span,.join_txt a {
    color: #11b4e3;
    font-size: 1.5rem;
}

.careers_list .item {
    grid-column: span 4;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
}

.careers_list .item img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: all .5s;
}

.careers_list .item .txt {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 90, 172, .65);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all .5s;
    font-size: 2rem;
}

.careers_list .item:hover .txt {
    left: 0;
}

.careers_list .item:hover img {
    transform: scale(1.1);
}

.explore {
    background: #e1ecff;
    padding: 6vw 0;
}

.explore h3 {
    font-size: 2.5rem;
    color: #1b62ab;
    font-family: 'LXGW975GothicSC-600W';
}

.explore p {
    font-size: 1.5rem;
    color: #677180;
    margin-bottom: 3rem;
}

.explore a {
    background: #11b4e3;
    color: white;
    font-size: 1rem;
    border-radius: 3rem;
    padding: 0.75rem 2rem;
}

.explore a:hover {
    background: #066ecf;
}

/*careers_pic style end*/

/*about style begin*/
.about_content .txt {
    grid-column: span 7;
}

.about_content .txt .title {
    font-size: 2.5rem;
    color: #1b62ab;
    font-family: 'LXGW975GothicSC-600W';
}

.about_content .txt .desc {
    font-size: 1.5rem;
    color: #545d6b;
    line-height: 2;
}

.about_content .txt .desc p {
    margin-bottom: 2rem;
}

.about_content .img {
    grid-column: span 5;
    padding-left: 6vw;
}

.about_content .img img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
}

.about_numbers .number-item {
    grid-column: span 4;
}

.about_numbers .number-item .icon {
    width: 8.875rem;
}

.about_numbers .number-item .txt .num {
    font-size: 4.125rem;
    color: #2d86e1;
    font-family: 'LXGW975GothicSC-600W';
    position: relative;
    display: inline-block;
    line-height: 1;
}

.about_numbers .number-item .txt .num::after {
    content: "+";
    position: absolute;
    top: 0;
    right: -1rem;
    font-size: 2rem;
    color: #2d86e1;
}

.about_numbers .number-item .txt .desc {
    font-size: 2rem;
    color: #828da0;
    display: block;
    padding-top: 0.25em;
}

/*about style end*/

/*Development style begin*/
.Development {
    background: #e4efff;
}

.history_cont .cul_title {
    font-size: 2.5rem;
    color: #1b62ab;
    font-family: 'LXGW975GothicSC-600W';
}

.Development .history_cont .history-content .swiper-slide .grid-container {
    grid-template-columns: 6fr 6fr;
    gap: 2rem
}

.Development .history_cont .pic {
    width: 100%;
    border-radius: 1.5rem
}

.Development .history_cont .info .year {
    color: #ff7a21;
    font-size: 3rem;
    font-family: 'LXGW975GothicSC-600W';
}

.Development .history_cont .info .events {
    margin: 0;
    padding-left: 1rem;
    font-size: 1.5rem;
}

.Development .history_cont .info .events li {
    list-style: none;
    position: relative;
    color: #545d6b;
    font-size: 1.75rem;
    padding: .5rem 0 .5rem 1.5rem;
}

.Development .history_cont .info .events li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: .3rem;
    height: .3rem;
    border-radius: 50%;
    background: #1e67c1
}

.Development .history_change {
    position: relative;
}

.Development .history_change::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3.4rem;
    width: 100%;
    height: 1px;
    background: #c7dbf8;
}

.Development .history_tab {
    padding: 2rem 0;
}

.history-years {
    width: 100%
}

.history-years .swiper-slide {
    width: auto
}

.history-years .year-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    color: #7598cc;
    font-size: 1.75rem;
}

.history-years .year-item .dot {
    padding: 0.5rem;
    border-radius: 50%;
    background: #b8cee6;
    border: 0.5rem solid #e4efff;
}

.history-years .swiper-slide-active .year-item {
    color: #1e67c1;
    font-family: 'LXGW975GothicSC-600W';
}

.history-years .swiper-slide-active .year-item .dot {
    background: #1e67c1;
    border: 0.5rem solid #b8cee6;
}

.history-years .swiper-button-prev,
.history-years .swiper-button-next {
    background: #1e67c1;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 2rem;
    top: 1.5rem;
}

.history-years .swiper-button-prev:after,
.history-years .swiper-button-next:after {
    font-size: 1rem;
}
/*Development style end*/

/*platform_title style begin*/
.platform_title {
    font-size: 1.75rem;
    color: #1b62ab;
    font-family: 'LXGW975GothicSC-600W';
}
.faster-item{
    grid-column: span 6;
    padding: 2rem;
    background: #dfebff;
    border-radius: 1rem;
}
.faster-item .icon{
    width: 8.25rem;
    border-radius: 50%;
}
.faster-item .txt{
    flex: 1 1 0;
}
.faster-item h3{
    font-size: 2rem;
    color: #1b62ab;
    font-family: 'LXGW975GothicSC-600W';
    margin-bottom: 1rem;
    margin: 0;
}
.faster-item p{
    font-size: 1.5rem;
    color: #545d6b;
    margin: 0;
}
.faster-item:hover{
    background: #3d87e0;
}
.faster-item:hover h3,
.faster-item:hover p{
    color: white;
}

.platform_info_title .num{
    width: 3rem;
    height: 3rem;
    display: block;
    border-radius: 50%;
    background: #1db2ff;
    color: white;
    font-size: 1.75rem;
    font-family: 'LXGW975GothicSC-600W';
}
.platform_info_title .txt{
    flex: 1 1 0;
}
.platform_info_title .txt h3{
    font-size: 2rem;
    color: #0d63bb;
    font-family: 'LXGW975GothicSC-600W';
    margin: 0;
}
.platform_info_title .txt p{
    color: #62778c;
    font-size: 1.5rem;
    margin: 0;
}
.platform_info_title .txt p img{
    max-width: 100%;
    display: block;
    margin-top: 4vw;
}
.bg_light_pic{
    background: url(../images/platform_bg_pic.png) no-repeat top right;
}
/*platform_title style end*/

/*pipeline style begin*/
.pipeline_title{
    font-size: 2.5rem;
    color: #1b62ab;
    font-family: 'LXGW975GothicSC-600W';
    text-transform: capitalize;
}
.pipeline_table{
    background: linear-gradient(to bottom, rgba(13, 116, 222, 0.8) 0%, rgba(13, 116, 222, 0) 12vw, rgba(239, 245, 255, 1) 100%);
    border-radius: 1rem;
}
.pc_pipeline:nth-child(2n),
.mob_pipeline:nth-child(2n-1){
    background: #d7eaff;
}
.pc_pipeline:nth-child(2n) .pipeline_table{
    background: linear-gradient(to bottom, rgba(13, 116, 222, 0.8) 0%, rgba(13, 116, 222, 0) 12vw, rgba(215, 234, 255, 1) 100%);
    border-radius: 1rem;
}
.mob_pipeline:nth-child(2n-1) .pipeline_table{
    background: linear-gradient(to bottom, rgba(13, 116, 222, 0.8) 0%, rgba(13, 116, 222, 0) 26vw, rgba(215, 234, 255, 1) 100%);
    border-radius: 1rem;
}
.pipeline_table dt{
    color: white;
    padding: 0 1rem;
}
.pipeline_table dt span{
    width: 10%;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
}
.pipeline_table .w15{
    width: 15%;
}
.pipeline_table dd{
    background: white;
    border-radius: 1rem;
    padding: 2rem 1rem;
}
.pipeline_table dd .product{
    width: 9%;
    font-size: 1.25rem;
    font-family: 'LXGW975GothicSC-600W';
    color: #00529f;
}
.pipeline_table dd .other{
    width: 91%;
}
.pipeline_table .list{
    width: 91%;
}
.pipeline_table dd ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.pipeline_table dd .disease{
    width: 15%;
    padding-right: 2rem;
    color: #00529f;
    font-size: 1.125rem;
}
.pipeline_table dd .processes{
    width: 74%;
    padding-right: 2rem;
}
.pipeline_table dd .processes .step{
    width: 100%;      
    border-radius: 3rem;
    background: #f5f5f5;
    position: relative;
}
.pipeline_table dd .processes .step span{
    flex: 1;
    display: block;
    position: relative;
    padding: 1rem 0;
}
.pipeline_table dd .processes .step span::after{ 
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.5);
    z-index: 3;
}
.pipeline_table dd .processes .step span:last-child:after{ 
    display: none;
}
.pipeline_table dd .processes .step .step_line{
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    border-radius: 3rem;
    background: #1281cc;
    transition: all 1s;
    width: 0;
}
.pipeline_table dd .processes .step .step_line .circle{
    width: 3rem;
    height: 3rem;
    display: block;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    font-family: 'LXGW975GothicSC-600W';
    position: absolute;
    right: 0;
    top: -0.5rem;
    z-index: 2;
    background: #1281cc;
}
.pipeline_table dd .rights{
    width: 11%;
    color: #08b4dc;
    font-size: 1.125rem;
}

.pipeline_table .product_id{
    width: 100%;
    font-size: 1.125rem;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
    line-height: 3em;
    padding-right: 12%;
    
}
.pipeline_table .list .item:hover{
    opacity: 0.8;
}
.pipeline_table .list .item:hover .product_id{
    height: 3em;
    border-bottom: 1px solid #e5e5e5;
}
/*pipeline style end*/


@media (max-width: 1200px) {
    .base_banner {
        height: 30vh;
    }

    .news-list .news-item {
        padding: 1rem 0;
    }

    .news-list .news-item .pic {
        right: 0;
        height: 80%;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 0.5rem;
        overflow: hidden;
    }

    .news-list .news-item::before {
        display: none;
    }

    .news-list .news-item .txt {
        max-width: 50%;
    }

    .news-list .news-title {
        display: -webkit-box;
        line-clamp: 3;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .news-list .news-item:hover .news-date,
    .news-list .news-item:hover .news-title,
    .news-list .news-item:hover .news-read {
        color: #1a3b5f;
    }

    .careers_pic {
        display: none;
    }

    .join_txt {
        grid-column: span 12;
    }

    .careers_list .item .txt {
        left: 0;
        top: auto;
        bottom: 0;
        height: 20%;
    }

    .about_content .txt,
    .about_content .img {
        grid-column: span 12;
        padding: 0;
    }

    .about_content .txt .desc p {
        margin-bottom: 1rem;
    }

    .about_numbers .number-item .icon {
        width: 5rem;
    }

    .about_numbers .number-item .txt .num {
        font-size: 3rem;
    }

    .about_numbers .number-item .txt .desc {
        font-size: 1rem;
    }
    .faster-item .icon{
        width: 5.25rem;
    }
    .pipeline_title{
        font-size: 1.75rem;
    }
    .pipeline_table{
        background: linear-gradient(to bottom, rgba(13, 116, 222, 0.8) 0%, rgba(13, 116, 222, 0) 26vw, rgba(239, 245, 255, 1) 100%);
        border-radius: 0.5rem;
    }
    .mob_product_name{
        font-size: 1rem;
        font-weight: normal;
    }
    .pipeline_table .list{
        width: 100%;
    }
    .pipeline_table dd{
        padding: 1rem;
        border-radius: 0.5rem;
    }
    .pipeline_table dd .disease{
        font-size: 0.75rem;
        width: 100%;
        color: #08b4dc;
        padding: 0;
        font-family: 'LXGW975GothicSC-600W';
    }
    .pipeline_table dd .disease span{
        display: block;
        width: 25%;
    }
    .pipeline_table dd .processes{
        width: 100%;
        padding: 0;
    }
    .mob_disease{
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #e5e5e5;
        font-family: 'LXGW975GothicSC-600W';
        color: #1281cc;
    }
    .mob_rights{
        color: #0aa7d4;
    }
    .mob_product_id{
        font-size: 0.875rem;
        color: #666;
    }
}

@media (max-width: 768px) {
    .base_banner {
        height: 40vh;
    }

    .base_banner .title {
        font-size: 2rem;
    }

    .news-tab {
        font-size: 1rem;
    }

    .news-list .news-item .pic {
        position: relative;
        width: 100%;
        height: 10rem;
        top: 0;
        transform: translateY(0%);
    }

    .news-list .news-item .txt {
        max-width: 100%;
    }

    .news-list .news-date,
    .news-list .news-read {
        font-size: 0.875rem;
    }

    .news-list .news-title {
        font-size: 1.25rem;
        line-clamp: 2;
        -webkit-line-clamp: 2;
    }

    .news_content {
        grid-column: span 12;
        padding-right: 0;
        border-right: none;
    }

    .news_detail .news_title {
        font-size: 1.5rem;
    }

    .news_hot {
        grid-column: span 12;
        padding-left: 0;
    }

    .Publication-list .item {
        grid-column: span 12;
    }

    .Publication-list .item .title {
        font-size: 1.5rem;
    }

    .Publication-list .item .info {
        font-size: 1rem;
    }

    .Publication-list .item .date {
        font-size: 0.875rem;
    }

    .Publication-list .item .date::after {
        width: 60%;
    }

    .contact .item {
        grid-column: span 12;
        border-right: none;
        border-bottom: 1px solid #e2e9f4;
    }

    .contact .item p .icon {
        width: 2rem;
    }

    .contact .item p span {
        font-size: 1.25rem;
    }

    .contact .item p {
        font-size: 1rem;
    }

    .join_txt .title {
        font-size: 1.75rem;
    }

    .careers_list .item {
        grid-column: span 12;
        border-radius: 1rem;
        height: 50vw;
    }

    .explore {
        padding: 3rem 1rem;
    }

    .explore h3 {
         font-size: 1.75rem;
    }

    .explore p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .explore a {
        font-size: 1rem;
    }

    .about_content .txt .title {
        font-size: 1.75rem;
    }

    .about_content .txt .desc {
        line-height: 1.5;
    }

    .about_content .txt .desc p {
        font-size: 1rem;
    }

    .about_numbers .number-item {
        grid-column: span 4;
        margin-top: 0;
        flex-direction: column;
    }


    .about_numbers .number-item .icon {
        width: 3rem;
    }
    .about_numbers .number-item .txt{
        text-align: center;
    }
    .about_numbers .number-item .txt .num {
        font-size: 1.5rem;
        margin: 0.75rem 0 0.25rem;
    }

    .about_numbers .number-item .txt .desc {
        font-size: 0.75rem;
    }
    .about_numbers .number-item .txt .num::after{
        font-size: 0.875rem;
    }

    .history_cont .cul_title{
        font-size: 1.75rem;
    }

    .Development .history_cont .history-content .swiper-slide .grid-container{
        grid-template-columns: repeat(1, 12fr);
        gap: 1rem;
    }
    .Development .history_cont .info .year{
        font-size: 1.5rem;
    }
    .Development .history_cont .info .events li{
        font-size: 1rem;
    }
    .platform_title {
        font-size: 1.5rem;
    }
    .faster-item{
        padding: 1rem;
        grid-column: span 12;
    }
    
    .faster-item h3{
        font-size: 1.25rem;
    }
    .faster-item p{
        font-size: 1rem;
    }
    .platform_info_title .num{
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    .platform_info_title .txt h3{
        font-size: 1.5rem;
    }
    .platform_info_title .txt p{
        font-size: 1rem;
    }
    .bg_light_pic{
        background-size: 80%;
    }
    .pipeline_table dd{
        padding: 0.5rem;
    }
    .Development .history_cont .info .events {
   
    font-size: 1.125rem;
}
.join_txt p {
  
  font-size: 1rem; 
}
.join_txt span,
.join_txt a{
  font-family: 'LXGW975GothicSC-600W';
  font-size: 1rem; 
}

.careers_list .item .txt{
    font-size: 1.25rem;    
}
.pipeline_table dd .processes .step span{
    
    padding: 0.55rem 0;
}
.pipeline_table dd .processes .step .step_line .circle{
    width: 2.25rem;
    height: 2.25rem;
   
}
}