*{
    font-family: "Roboto", sans-serif !important;
}
.img_cv{
    overflow: hidden;
}
.img_cv img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
.school_nav{
    background-color: var(--theme_color);
    color: white;
    position: relative;
    z-index: 50;
}
.school_nav div>ul{
    display: flex;
    
}
.school_nav div>ul>li{
    flex: 1;
    position: relative;
}
.school_nav div>ul>li>a:after{
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url('../img/arrow-bottom.svg') no-repeat center/contain;
    filter: brightness(100);
}
.school_nav div>ul>li>a{
    display: inline-block;
    width: 100%;
    padding: 20px;
    color: white;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    gap: 1rem;
}
.single_top{
    overflow: hidden;
}

.school_nav div>ul>li ul{
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    min-width: 100%;
    max-height: 435px;
    overflow: auto;
}
.school_nav div>ul>li ul a{
    background-color: var(--theme_color);
    display: inline-block;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
    width: 100%;
}
.school_nav div>ul>li ul a:hover{
    background-color: #9E0021;
}
.school_nav div>ul>li ul li + li{
    border-top: 1px solid #a06975;
}
.school_nav div>ul>li:hover ul{
    opacity: 1;
    pointer-events: all;
}
.school_nav div>ul>li>a:hover{
    background-color: #9E0021;
}


/* 针对 Chrome, Edge, Safari */
.school_nav div>ul>li ul::-webkit-scrollbar {
  width: 6px;   /* 垂直滚动条的宽度 */
  height: 6px;  /* 水平滚动条的高度 */
}

.school_nav div>ul>li ul::-webkit-scrollbar-thumb {
  background: rgba(100, 100, 100, 0.5); /* 滚动条滑块 */
  border-radius: 6px;
}

.school_nav div>ul>li ul::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 100, 100, 0.8);
}

.school_nav div>ul>li ul::-webkit-scrollbar-track {
  background: transparent; /* 滚动条背景 */
}

section.school_infos h1{
    color: #000 !important;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    text-transform: capitalize;
    margin-bottom: 15px;
    max-width: unset;
}
.school_infos{
    padding: 100px 0 63px;
    
}
.school_infos .breadcrumbs > div{
    padding: 0 !important;  
}
.breadcrumbs div > span{
    display: flex !important;
    justify-content: center;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}
.school_infos .breadcrumbs{
    padding: 0 !important;  
    background: transparent;
    text-align: center;
}
.school_infos .breadcrumbs {
  padding: 24px 0;
}

.school_infos .breadcrumbs > span {
  color: #666;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  display: flex;
  overflow: auto;
  gap: 12px;
  justify-content: center;
}
.school_infos .breadcrumbs > span::before {
  content: '';
  display: block;
  width: 19px;
  min-width: 19px;
  height: 19px;
  background: url(../img/home-icon.svg) no-repeat center / contain;
  filter: contrast(0) brightness(0);
  transform: translateY(2px);
}
.school_infos .breadcrumbs > span span{
    margin-bottom: 0;
    font-weight: 500;
    text-transform: capitalize;
}
.school_infos .breadcrumbs > span span a {
  color: #666;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
  transition: all 0.3s;
  white-space: nowrap;
}
.school_infos .breadcrumbs > span span a:hover {
  color: var(--theme_color);
}
.school_infos .content>.img{
    margin-top: 66px;
    aspect-ratio: 1205/636;
    border-radius: 31px;
    overflow: hidden;
    margin-bottom: 23px;
}
.school_infos .img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.school_infos .author .img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: 0;
    margin-right: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.school_infos .author .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.school_infos .author{
    font-size: 19px;
}
.school_infos .date{
    font-size: 19px;
    display: flex;
    align-items: center;
}
.school_infos .date:before{
    content: "";
    width: 21px;
    height: 21px;
    margin-right: 11px;
    display: inline-block;
    background: url('../img/clock.svg') no-repeat center/contain;
}
.details_summary{
    margin-bottom: 55px;
}
.details_summary .main{
    padding: 40px 45px 60px;
    border-radius: 17px;
    background-color: #F8F8F8;
}
.details_summary .main strong{
    display: block;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}
.details_summary .main li a{
    font-size: 20px;
    color: #4c4c4c;
    transition: all 0.3s;
}
.details_summary .main li a:hover{
    color: var(--theme_color);
}
.details_summary .main li{
    list-style:decimal;
    font-size: 20px;
    color: #4c4c4c;
    margin-left: 20px;
}
.details_summary .main li + li{
    margin-top: 20px;
}

.school_details p{
    font-size: 20px;
    line-height: 35px;
    color: #333;
    margin-top: 1rem;
}
.school_details h4{
    font-size: 25px;
}
.school_details h5{
    font-size: 22px;
}
.school_details h6{
    font-size: 20px;
}
.school_details ul{
    margin: 2rem 0;
}
.school_details ul li{
    list-style: disc;
    margin-left: 20px;
}
.school_details ul li strong, .school_details ul li b{
    font-weight: 500;
}
.school_details ul li + li{
    margin-top: 0.5rem;
}
.school_details li{
    font-size: 20px;
    line-height: 28px;
}
.school_details p a{
    color: var(--theme_color);
    text-decoration: underline;
    font-size: inherit;
}
.school_details h2{
    font-size: 42px;
    line-height: 47px;
    margin-top: 42px;
}
.school_details h3{
    font-size: 30px;
    line-height: 47px;
    margin-top: 45px;
}

.school_details .bg{
    padding: 45px 48px;
    border-radius: 17px;
    color: white;
    margin-top: 30px;
    margin-bottom: 60px;
    background-color: #171919;
}
.school_details .bg h2{
    font-size: 30px;
    margin-top: 0;
    color: white;
}
.school_details .bg p{
    color: white;
}
.school_details .wp-block-columns{
    display: flex;
    gap: 43px;
    margin-top: 68px;
    align-items: unset;
}
.school_details .wp-block-columns.are-vertically-aligned-center{
    align-items: center;
}
.school_details .wp-block-columns>.wp-block-column{
    flex: 1;
}
.school_details .wp-block-columns h3{
    margin-top: 0;
}

.school_details table{
    border-collapse: collapse;
    width: 100%;
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
}
.school_details table th{
    background-color: #F8F8F8;
}
.school_details table td, .school_details table th{
    padding: 22px 25px;
    border: none;
    border-bottom: 2px solid #F7F8F8;
    font-size: 20px;
    text-align: left;
    color: #333;
}
.school_details table tr td:nth-of-type(1){
    min-width: 230px;
}
.school_details table tr:last-of-type td{
    border-bottom: none;
}
.school_details .product_block{
    background-color: #171918;
    border-radius: 17px;
    margin-top: 120px;
    margin-bottom: 70px;
}
.school_details .product_block .infos{
    width: 68.84%;
    padding: 40px 47px;
}
.school_details .product_block .img{
    width: 31.16%;
    margin-top: -75px;
}
.to-btn {
  font-size: 18px;
  color: #fff;
  padding: 15px 51px;
  background-color: var(--theme_color);
  transition: 0.3s;
  display: inline-block;
}
.to-btn:hover {
  background-color: #000;
}
.school_details .product_block h3{
    margin-top: 0;
}
.school_details .product_block h3, .school_details .product_block p{
    color: white;
}
.school_details .product_block p{
    opacity: 0.7;
}
.school_details .product_block .to-btn{
    margin-top: 27px;
}

.school_details .wp-block-details summary{
    font-size: 25px;
    font-weight: 600;
    padding: 16px 0 0;
}

.wp-block-column img{
    border-radius: 8px;
}
.wp-block-image.aligncenter figcaption{
    text-align: center;
}
.wp-block-image .aligncenter>figcaption{
    text-align: center;
}

.wp-block-table thead{
    border: none !important;
}
.schools_parts{
    padding: 70px 0 125px;
}
.schools_parts .flex{
    gap: 26px;
}
.schools_parts .item{
    flex: 1;
    transition: all 0.3s;
}
.schools_parts .item.active a{
    padding-left: 66px;
    padding-right: 36px;
}
.schools_parts .item a{
    display: block;
    height: 330px;
    width: 100%;
    padding: 65px 36px;
    color: white;
    transition: all 0.3s;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
}
.schools_parts .item.active{
    flex: 2.05;
}
.schools_parts .item strong{
    font-size: 39px;
    line-height: 50px;
    display: block;
    margin-bottom: 1rem;
}

.schools_parts .item p{
    font-size: 17px;
    line-height: 30px;
    max-width: 460px;
}
.schools_parts .item span{
    width: 48px;
    height: 48px;
    background: url('../img/square_btn.svg') no-repeat center/cover;
    display: block;
    margin-left: auto;
    margin-top: 10px;
    transition: all 0.3s;
    
}
.schools_parts .item:hover span{
    transform: scale(1.1);
}

.school_reading h2{
    margin-bottom: 33px;
    font-size: 40px;
}




.school_reading {
    padding-bottom: 185px;
}
.school_reading li a{
    display: block;
    padding: 20px;
    border-radius: 13px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.school_reading li .infos{
    padding-left: 15px;
    padding-right: 100px;
    width: 65.4%;
}

.school_reading li .flex{
    align-items: center;
}

.school_reading li strong{
    font-size: 24px;
    display: block;
    margin-bottom: 20px;
}
.school_reading li p{
    line-height: 26px;
    color: #111111;
    margin-bottom: 30px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.school_reading li span{
    display: flex;
    font-weight: 500;
    align-items: center;
}
.school_reading li span:after{
    content: "";
    width: 16px;
    transition: all 0.3s;
    height: 16px;
    background: url('../img/jianyou-red.svg') no-repeat center/contain;
    margin-left: 10px;
}
.school_reading li .img{
    width: 29.56%;
    aspect-ratio: 300/180;
    border-radius: 10px;
    overflow: hidden;
}
.school_reading li .img img{
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.school_reading li.active a{
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.school_reading li:hover span:after{
    transform: translateX(5px);
}
.school_reading li + li{
    margin-top: 20px;
}
.school_reading li:hover .img img{
    transform: scale(1.1);
}
.school_reading ul{
    margin-bottom: 50px;
}



body .dek-cta-card{
    padding: 0;
    color: white;
}
body .dek-cta-card .dek-cta-card__col{
    padding: 46px;
}
body .dek-cta-card h2, body .dek-cta-card h3{
    font-size: 30px;
    line-height: 47px;
    margin-top: 0;
    color: white;
}
body .dek-cta-card p{
    font-size: 20px;
    line-height: 35px;
    color: #fff;
    margin-top: 1rem;
    opacity: 0.7;
}
body .dek-cta-card{
    margin: 70px 0;
}

body .dek-note{
    padding: 45px 48px;
    border-radius: 17px;
    color: white;
    margin-top: 30px;
    margin-bottom: 60px;
    background-color: #171919;
}
body .dek-note p, body .dek-note span, body .dek-note strong{
    font-size: 20px;
    line-height: 35px;
} 
body .dek-cta-card{
    align-items: center;
}

.wp-block-table .has-fixed-layout td.has-text-align-center{
    text-align: center !important;
}
.nav_de li{
    list-style: none !important;
    margin: 0 !important;
}
.school_details .loaded_formula table{
    margin-top: 0 !important;
}
.image_contain .dek-cta-card__img{
    object-fit: contain !important;
}
.school_details p img{
    max-width: 100%;
    height: auto;
}
@media screen and (max-width: 1400px) {
    body .dek-cta-card__imgwrap{
        padding-right: 1.5rem;
    }
    body .dek-cta-card p{
        font-size: 1rem;
        line-height: 1.5;
    }
}
@media screen and (max-width: 1400px) {
    .school_details .wp-block-columns.are-vertically-aligned-center{
        justify-content: center;
    }
    .school_details table td, .school_details table th{
        font-size: 16px;
        line-height: 1.5;
    }
    .school_details .wp-block-columns .wp-block-column figure{
        height: auto !important;
    }
}

@media screen and (max-width: 786px) {
    .school_infos .breadcrumbs > span span a{
        font-size: 14px;
    }
    .school_infos .breadcrumbs > span{
        align-items: center;
    }
    .school_infos .breadcrumbs > span::before{
        transform: translateY(-2px);
    }
    
    .school_infos>.content>.flex>*{
        width: 50%;
    }
    .school_nav{
        display: none;
    }
    .school_details{
        overflow: hidden;
    }
    .schools_parts{
        overflow: hidden;
    }
    .schools_banner{
        padding: 5rem 0;
    }
    .schools_banner .head p{
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
    .schools_parts{
        padding: 3rem 0;
    }
    .schools_parts .item, .schools_parts .item.active{
        flex: unset;
    }
    .schools_parts .flex{
        gap: 20px;
        flex-direction: column;
    }
    .schools_parts .item a, .schools_parts .item.active a{
        height: auto;
        padding: 2rem 1.2rem;
    }
    .schools_parts .item strong{
        font-size: 1rem;
        line-height: 1.5;
    }
    .schools_parts .item p{
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
    .schools_parts .item span{
        width: 30px;
        height: 30px;
    }

    .school_infos{
        padding: 3rem 0;
    }
    .school_infos .head span{
        margin-bottom: 0;
    }
    .school_infos .content>.img{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .school_infos .author .img{
        width: 30px;
        height: 30px;
    }
    .school_infos .author, .school_infos .date{
        font-size: 0.9rem;
    }
    .school_infos .date:before{
        width: 1rem;
        height: 1rem;
    }
    .details_summary .main{
        padding: 30px 20px;
    }
    .details_summary .main strong{
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    .details_summary .main li a, .details_summary .main li{
        font-size: 1rem;
    }
    .details_summary .main li + li{
        margin-top: 0.5rem;
    }
    .details_summary{
        margin-bottom: 1rem;
    }
    .school_details p{
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
    .school_details .wp-block-details summary{
        font-size: 17px;
    }
    .school_details .bg{
        padding: 1.5rem 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .school_details .bg h2{
        font-size: 20px;
        line-height: 1.5;
    }
    .school_details h2{
        font-size: 20px;
        margin-top: 1.5rem;
    }
    .school_details h3{
        font-size: 18px;
        margin-top: 1rem;
        line-height: unset;
    }
    .school_details .wp-block-columns{
        flex-direction: column;
    }
    .school_details .wp-block-columns>*{
        width: 100%;
    }
    .wp-block-image img{
        width: 100%;
    }
    .school_details .wp-block-columns{
        margin-top: 1.5rem;
    }
    .school_details .wp-block-columns{
        gap: 1rem;
    }
    .school_details table td, .school_details table th{
        padding: 1rem;
        font-size: 0.9rem;
    }
    .school_details table{
        display: block;
        overflow: auto;
    }
    .school_details table tr td:nth-of-type(1){
        min-width: unset;
    }
    .school_details .product_block{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .product_block .flex{
        flex-direction: column;
    }
    .school_details .product_block .infos{
        width: 100%;
        order: 9;
    }
    .school_details .product_block .img{
        width: 100%;
        height: 260px;
        margin-top: -2rem;
    }
    .school_details .product_block .img img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .school_details .product_block .infos{
        padding: 1.2rem;
    }
    .to-btn{
        font-size: 0.9rem;
        padding: 0.8rem 2rem;
    }

    .school_reading li .flex{
        flex-flow: wrap;
    }
    .school_reading li .infos{
        order: 9;
        width: 100%;
        padding: 0;
    }
    .school_reading li .img{
        width: 100%;
    }
    .school_reading li strong{
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .school_reading li p{
        font-size: 0.9rem;
        line-height: 1.5rem;
        margin-bottom: 1rem;
    }
    .school_reading li span{
        font-size: 0.9rem;
    }
    .school_reading li a{
        padding: 0;
        box-shadow: none;
    }
    .school_reading li.active a{
        box-shadow: none;
    }
    .school_reading{
        padding-bottom: 5rem;
    }
    body .dek-cta-card{
        margin: 2rem 0;
        padding: 20px;
    }
    body .dek-cta-card p{
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
    body .dek-cta-card .dek-cta-card__col{
        padding: 0;
    }
    .school_details ul li{
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
    body .dek-note{
        padding: 1.2rem;
    }
    body .dek-note span, body .dek-note strong{
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
    .wp-block-image img{
        width: 100% !important;
        height: auto !important;
    }
    .wp-block-spacer{
        height: 20px !important;
    }
    .wp-block-table .has-fixed-layout td, .wp-block-table .has-fixed-layout th{
        white-space: nowrap;
    }
}