/* @font-face{
    font-family:'pingfang';
    src:url('https://www.lebo.cn/static/font/PingFang/PingFangSC-Regular.ttf?v1') format('truetype');
    font-display: swap;
} */

@font-face {
    font-family: 'sans';
    /* src: url('https://cdn.jointekgroup.cn/jdtek.hk/fonts/Source\ Han\ Sans\ CN\ Regular.ttf') format('truetype'); */
    src: url('//cdn.jointekgroup.cn/jdtek.hk/fonts/Source%20Han%20Sans%20CN%20Regular.ttf') format('truetype');
    font-display: swap;
}

body{
    margin:0 auto;
    font-family: 'sans';
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    webkit-font-smoothing: antialiased;
    line-height: 1.5;
    color:var(--bcolor);
    min-width:1440px;
    max-width: 100%;
}
.in{
    padding-left:1rem;
    padding-right:1rem;
    margin:auto;
    width:1440px;
}

.logo-link{
    display: block;
    border:none;
    position: relative;
}

.u-button{
    display:inline-block;
    background-color: var(--lcolor);
    padding:0.6em 1em;
    border-radius:4px;
    white-space: nowrap;
    line-height: 1;
    transition: all 0.3s;
}
.u-button:hover{
    background-color: var(--mcolor);
    color:#FFF;
}



header > .in{
    display: flex;
    align-items: center;
}

header{
    padding:1rem 0;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 999999;
    background-color: var(--bg);
}

.h-r{
    margin-left:auto;
    display: flex;
    align-items: center;
}
.h-src{
    display: flex;
    white-space: nowrap;
    align-items: center;
    padding-right:1rem;
    border-right:1px solid rgba(180,180,180,0.1);
    margin-right:2rem;
}
.h-src>span{
    margin-left:0.5rem;
}

nav{
   text-align: center; 
   flex:auto;
   --gap:2rem;
}
nav>ul{
    list-style: none;
    padding:0;
    display: flex;
    margin-left:calc(0rem  - var(--gap));
    justify-content: center;
}
nav>ul>li{
    margin-left:var(--gap);

}
nav>ul>li>a{
    transition: all  0.3s;
    position: relative;
    white-space: nowrap;
}
nav>ul>li:hover>a::before {
    content:'';
    /* background-color: rgb(255, 0, 0); */
    position: absolute;
    width:calc(100% + 3rem);
    transform: translateX(-1.5rem);
    height:60px;
}
nav>ul>li:hover>a{
    color: var(--mcolor);
}
.nav-sidelist>*>*{
    padding:1rem 2rem;
    border-bottom:1px solid rgba(180,180,180,0.2);
    width:14rem;
    display: block;
}

@media(min-width:1024px){
    nav>*>*:hover .sub-nav{
        display: block;
    }
    nav>ul>li:hover .arrow{
        transform: rotate(180deg);
    }
    
}

.nav-btn{
    width:24px;
    height:22px;
    display:none;
    flex-direction:column;
    justify-content:space-around;
}
.nav-btn>*{
    height:2px;
    border-radius:1px;
    background-color:var(--dark);
    display:block;
    transition:all .3s ease-in-out;
    transform-origin:center center
}
.nav-active .nav-btn>*:nth-child(1){
    transform:translateY(8px) rotate(45deg)
}
.nav-active .nav-btn>*:nth-child(2){
    transform:rotate(-45deg)
}
.nav-active .nav-btn>*:nth-child(3){
    opacity:0
}


.arrow{
    width: 0.5rem;
    height:0.5rem;
    background-image: url(https://cdn.jointekgroup.cn/jdtek.hk/images/nav-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s;
}



nav .sub-nav{
    position: absolute;
    top:100%;
    width:100%;
    background-color: var(--bg);
    left:0;
    border-top:1px solid rgba(180,180,180,0.1);
    box-shadow: 0 2rem 2rem rgba(180,180,180,0.1);
    display: none;
    border-radius: 0 0 1rem 1rem;
}

nav .sub-nav > .in{
    display: flex;
}





nav .subtabs-wrap{
    border-right:1px  solid rgba(180,180,180,0.2);
    padding:4rem 1rem;
}
nav .subnav-tabs{
    display: grid;
    width:100%;
    gap:1rem;
}
nav .subcontents-wrap{
    flex:1 1 auto;
    padding:4rem 0 4rem 4rem;
}
nav .subnav-tabs>*{
    width:180px;
    padding:1rem;
    line-height: 1;
    
}
nav .subnav-tabs>*.active{
    background-color: var(--mcolor);
    color:var(--text-w);
    border-radius:0.5rem;
}


.nav-subsec{
    display: block;
    width: 100%;
}
.nav-subsec>dt{
    padding:0.5rem 1rem;
    width:100%;
    font-weight: normal;
}
.nav-subsec>dd{
    margin-left:0;
    margin-top:1rem;
    display: none;
}
.nav-sublist{
    grid-template-columns: repeat(4, 1fr);
    gap:2rem;
    display: none;
}
.nav-sublist.active{
    display: grid;
}
.nav-sublist>*>*{
    text-align: left;
    padding:1.5rem;
    display: block;
    border-radius: 0.5rem;
    box-shadow: 0 0 2rem rgba(0,0,0,0.05);
    height:100%;
}
.nav-sublist>*>*:hover{
    color:var(--mcolor);
}
.nav-topbar{
    padding:1rem;
    border-bottom:1px solid rgba(180,180,180,0.2);
    color:var(--mcolor);
    position: sticky;
    top:0;
    background-color: var(--bg);
    z-index: 999;
    display: none;
}
.nav-backbtn{
    text-align: left;
    display: flex;
    align-items: center;
}
.nav-backbtn::before{
    content:"";
    display: block;
    width:0.8rem;
    height:0.8rem;
    border-left:1px solid;
    border-bottom:1px solid;
    transform: rotate(45deg);
    margin-right: 0.5rem;
}

.subnav-title{
    font-size: 1rem;
}
.subnav-desc{
    font-size:0.75rem;
    color: #BBB;
    margin-top:0.3em;
}


.index-banner{
    background: linear-gradient(to bottom,#EB6100,#BC1010);
    overflow: hidden;
    position: relative;
    z-index: 0;
    --swiper-navigation-size:1.6rem;
}

.index-banner .swiper-pagination{
    position: absolute;
    z-index: 99;
    bottom:4rem!important;
}
.index-banner .swiper-pagination-bullet-active{
    background: #FFF;
}
.index-banner .swiper-pagination-bullet{
    width:16px;
    height:4px;
    border-radius:6px;
}
.index-banner .swiper-button-next, .index-banner .swiper-button-prev{
    background-color: rgba(255,255,255,0.1);
    color:#FFF;
    width:3.6rem;
    height:3.6rem;
    border-radius: 50%;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    visibility: hidden;
}
.index-banner:hover .swiper-button-next, .index-banner:hover .swiper-button-prev{
    visibility: visible;
}

.index-banner .swiper-slide::before{
    content:'JOINTEK';
    font-size:10rem;
    font-weight: bold;
    text-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
    color:#EC6B10;
    width:100%;
    height:100%;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    z-index: -1;
}
.swiper-wrapper{
    list-style: none;
    margin:0;
    padding:0;
}


.adv{
    box-shadow: var(--shadow);
    border-radius: 1rem;
    margin-top:-3rem;
    position: relative;
    z-index: 1;
    background-color: var(--bg);
}
.adv>ul{
    width: 100%;
    display: grid;
    justify-content:space-around;
    grid-template-columns: repeat(5,1fr);

}
.adv>ul>li{
    padding:2rem 1rem;
    display: flex;
    overflow: hidden;
}
.adv>ul>li>img{
    width:5rem;
}
.adv .title{
    font-size:1rem;
    font-weight:bold;
}
.adv .info{
    margin-left:1rem;
    
}
.adv .desc{
    font-size:0.875rem;
    color:var(--gcolor);
    font-weight: 300;
    margin-top:0.3rem;
}

.sev-form{
    display: flex;
    padding:var(--sec-pd) 2rem 2rem 2rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.form-title{
    background: linear-gradient(45deg, #333, #888, #333);
    background-size:200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    animation: bg-slide 3s linear infinite;
    font-size:1.5rem;
}
@keyframes bg-slide {
    0% {
        background-position: 0 0;
    }
    0% {
        background-position:500% 0;
    }
    100% {
        background-position: 0 0;
    }
}

#jdtek-sev-form{
    margin-left:1rem;
}

.sev-list{
    overflow: hidden;
    border-radius:0.5rem;
}
.sev-list>ul{
    display: flex;
    color:#FFF;
    flex-wrap: wrap;
}
.sev-list>ul>li{
    width:25%;
    background-color: #333;
    position: relative;
    background-size: cover;
}
.sev-list>ul>li::before{
    content:'';
    display: block;
    padding-top:80%;
}
.sev-list .info{
    position: absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    padding:2rem;
    background-image:linear-gradient(to bottom, var(--lc,rgba(0,0,0,0.8)), transparent );
    text-shadow: 2px 2px 0  rgba(0,0,0,0.2);
}
.sev-list .title{
    font-size:1.25rem;
}

.sev-list .desc{
    font-size:0.75em;
    font-weight: lighter;
}

.sev-list>ul>li:hover .menu{
    transform: translateY(0);
}

.sev-list .menu{
    position: absolute;
    bottom:0;
    width:100%;
    left:0;
    padding:2rem 2rem 1rem 2rem;
    background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    font-size:0.75em;
    transform: translateY(100%);
    transition: all 0.3s;
}

.sev-list .menu>ul{
    display: flex;
    flex-wrap:wrap;
    --gap:0.3rem;
    margin-left:calc(0rem - var(--gap));
    margin-top:calc(0rem - var(--gap));
}

.sev-list .menu>ul>li{
    margin-left:var(--gap);
    margin-top:var(--gap);
}

.sev-list .menu>ul>li>a{
    display: block;
    padding:0.3rem 0.5rem;
    border:1px solid #FFF;
    border-radius: 0.3rem;
    line-height: 1;
    white-space: nowrap;
}
.sev-list .menu>ul>li>a:hover{
    background-color: #FFF;
    color:#333;
}

.sec-light{
    background-color: var(--lcolor);
}
.sec-title{
    padding:0;
    margin:0;
    font-size:2rem;
    text-align: center;
    font-weight: normal;
}

.team-top-list{
    overflow: hidden;
    position: relative;
}
.team-top-list>ul{
    margin-top:2rem;
    display: flex;
    flex-wrap: nowrap;
    --gap:2rem;
    margin-left:calc(0rem - var(--gap));
}

.team-top-list>ul>li{
    padding:2rem;
    background-color: var(--bg);
    box-shadow: var(--shadow);
    border-radius:1rem;
    width:21rem;
    height:25rem;
    position: relative;
    cursor: pointer;
    margin-left:var(--gap);
    flex-shrink: 0;

}

.team-info{
    font-size:0.875rem;
    width:50%;
}
.team-en{
    font-size:3rem;
    color:var(--lgcolor);
}
.team-name{
    font-size:1.5rem;
    font-weight: bold;
}
.team-title{
    color:var(--mcolor);
}
.team-desc{
    color:var(--gcolor);
    margin-top:1rem;
    display: -webkit-box;
    -webkit-box-orient:vertical;
    line-clamp:7;
    -webkit-line-clamp:7;
    overflow: hidden;
}
.team-avatar{
    position: absolute;
    width:55%;
    height:320px;
    bottom:0;
    right:0;
}
.team-top-list .swiper-button-next,.team-top-list .swiper-button-prev{
    color: var(--mcolor);
    width:3.6rem;
    height:3.6rem;
    border-radius:50%;
    box-shadow:0 0.5rem 2rem rgba(0,0,0,0.3);
    background-color: var(--bg);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}
.team-top-list:hover .swiper-button-next, .team-top-list:hover .swiper-button-prev{
    visibility: visible;
    opacity: 1;
}
.team-top-list .swiper-button-next:after,.team-top-list .swiper-button-prev:after{
    font-size: 2rem;
}
.team-details{
    width:600px;
    max-width: 100%;
}
.team-details .team-desc{
    display: block;
    min-height: 12rem;
}
.team-details .team-avatar{
    width:200px;
    flex-shrink: 0;
}




.sec-more{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:3rem;
}
.sec-more .more-icon{
    display: block;
    width:1.2rem;
    height:1.2rem;
    background-image: url(https://cdn.jointekgroup.cn/jdtek.hk/images/more.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left:1rem;
}

.news-list{
    margin-top:2rem;
}

.faq-list{
    max-width: 960px;
    margin: 2rem auto 0;
}
.faq-list>ul{
    margin: 0;
}
.faq-list-item{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(180,180,180,0.2);
}
.faq-list-item:first-child{
    border-top: 1px solid rgba(180,180,180,0.2);
}
.faq-list-icon{
    width: 2.25rem;
    height: 2.25rem;
    flex: 0 0 2.25rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--mcolor);
    color: var(--text-w);
    font-size: 1.25rem;
    font-weight: bold;
}
.faq-list-info{
    min-width: 0;
    flex: 1;
}
.faq-list-info>a{
    display: block;
    font-size: 1.125rem;
    font-weight: bold;
    overflow-wrap: anywhere;
}
.faq-list-info>a:hover{
    color: var(--mcolor);
}
.faq-list-info p{
    margin: 0.75rem 0 0;
    padding: 0.75rem 1rem;
    background-color: var(--lcolor);
    border-radius: 0.25rem;
    color: var(--gcolor);
    font-size: 0.875rem;
    line-height: 1.8;
    overflow-wrap: anywhere;
}
.faq-detail-answer{
    color: var(--gcolor);
    white-space: normal;
}
.faq-empty{
    padding: 3rem 1rem;
    text-align: center;
    color: var(--gcolor);
}
.faq-list + .page-list{
    margin-top: 2rem;
}
.index .news-list>ul>li:nth-child(n+4){
    display: none;
}
.news-list>ul>li>.box{
    box-shadow: var(--shadow);
    border-radius:0.5rem;
    overflow: hidden;
    height:100%;
    display: flex;
    flex-direction: column;
    background-color: var(--bg);
}
.news-info{
    padding:1rem;
}
.news-title{
    font-size:1.125rem;
}
.news-desc{
    font-size:0.8em;
    color:var(--gcolor);
    display: -webkit-box;
    -webkit-box-orient:vertical;
    line-clamp:2;
    -webkit-line-clamp:2;
    overflow: hidden;
    margin-top:1rem;
}
.news-footer{
    border-top:1px solid rgba(180,180,180,0.2);
    padding:0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size:0.8em;
    margin-top:auto;
}
.news-time{
    color:var(--gcolor)
}

.othernews{
    padding:2rem 0;
}

.othernews-list>li>.box{
    overflow: hidden;
    border-radius: 0.5rem;
    position: relative;
    display: block;
}
.othernews-title{
    position: absolute;
    left:0;
    bottom:0;
    width:100%;
    z-index: 1;
    background: linear-gradient(to bottom,transparent, #000);
    color:#FFF;
    padding:2rem 1rem 0.5rem 1rem;
    font-size: 1rem;
}


.partner-list{
    margin-top:2rem;
}

footer{
    padding:2rem 0;
    background-color: #4E4745;
    color:#9E9E9E;
}
footer{
    overflow: hidden;
}
footer .basic{
    display: flex;
}
footer .basic .label{
    font-size:1.25rem;
}

.footer-list>li{
    display: flex;
    align-items: center;
}
footer .basic-end{
    align-self:center;
    margin-left:auto;
}
footer .bottom{
    padding:6rem 0 2rem 0;
    text-align: center;
}

.x-list{
    display: flex;
}
.x-list>*{
    white-space: nowrap;
}

.page-nav-wrap{
    border-bottom:1px solid rgba(180,180,180,0.2)
}
.page-nav{
    display: flex;
    justify-content: space-around;
    padding:0 10%;
    overflow: hidden;
}
.page-nav>li{
    position: relative;
}
.page-nav>li>a{
    display: block;
    padding:1rem  2rem;
    white-space: nowrap;
}
.page-nav>li:hover,.page-nav>li.active{
    color:var(--mcolor);
}
.page-nav>li:hover::after,.page-nav>li.active::after{
    content:'';
    display: block;
    bottom:-1px;
    width:100%;
    height:1px;
}
.page-nav>li.active::after{
    background-color: var(--mcolor);
}

.about-image{
    flex:0 0 320px;
    display: block;
    margin-right:4rem;
}
.about-text{
    display: inline;
}
.about-basic{
    display: flex;
    align-items: center;
    line-height: 2;
}
.about-culture{
    display: flex;
    color:var(--text-w);
    background-color: #000;
    overflow: hidden;
}
.culture-basic{
    background-image: url(https://cdn.jointekgroup.cn/jdtek.hk/images/culture-bg.jpg);
    background-size: cover;
    background-position: center center;
    padding:4rem;
    flex:0 0 55%;
    text-align: right;
}
.culture-title{
    font-size:2rem;
    font-weight: bold;
    text-transform: uppercase;
    padding-right:1rem;
    border-right:4px solid;
}

.culture-title-2{
    font-size:1.25rem;
    font-weight: bold;
}

.culture-text{
    font-weight: 200;
    font-size:1.125rem;
    margin-top:0.5rem;
}
.culture-text.text-gap>*:not(:first-child){
    margin-left:1rem;
}

.culture-list{
    margin-right:-7rem;
    position: relative;
    z-index: 1;
}
.culture-list>*{
    display:flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}
.culture-icon{
    margin-left:2rem;
}
.culture-icon>img{
    display: block;
}
.culture-other{
    flex:auto;
    background-size: cover;
    background-position:center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:4rem;
}
.page-banner{
    background-size: cover;
    background-position: center;
}
.swiper-np-set .swiper-button-next, .swiper-np-set .swiper-button-prev{
    background-color: rgba(0, 0, 0, 0.2);
    color:#FFF;
    width:3.6rem;
    height:3.6rem;
    border-radius: 50%;
    visibility: hidden;
    backdrop-filter: blur(10px);

}
.swiper-np-set:hover .swiper-button-next, .swiper-np-set:hover .swiper-button-prev{
    visibility: visible;
}
.swiper-np-set .swiper-button-next:after, .swiper-np-set .swiper-button-prev:after{
    font-size:1.5rem;
}

.page-list{
    margin-top:2rem;
    text-align: center;
}
.page-list>ul>li{
    display: inline-block;
    margin:3px;
}
.page-list>ul>li>a{
    display: block;
    padding:0.5rem;
    min-width: 2.5rem;
    text-align: center;
    border-radius: 0.5rem;
    white-space: nowrap;
    background-color: var(--lcolor);
}
.page-list>ul>li.active>a,.page-list>ul>li>a.on{
    background-color: var(--mcolor);
    color:var(--text-w);
}

.team-sec-title{
    font-size:1.25rem;
    padding-left:1em;
    border-left:0.3em solid var(--mcolor);
}
.team-list{
    padding:2rem 0;
}
.team-list>li>.box{
    box-shadow: var(--shadow);
    background-color:var(--bg);
    border-radius: 0.5rem;
    overflow: hidden;
}
.team-list>li .name{
    padding:0.5rem 1rem;
    text-align: center;
}

.team-list>li{
    width:16.666%;
}
.swiper-container{
    overflow: hidden;
}
.team-banner-image{
    margin-left:auto;
    position: relative;
    align-self: stretch;
}
.team-banner-image>img{
    position: absolute;right:0;top:0rem;
}

.contact-main{
    position: relative;
}
.contact-list{
    position: sticky;
    bottom:0;
    z-index: 99;
    display: flex;
    /* justify-content: center; */
    padding:4rem 1rem 2rem 1rem;
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
    overflow: hidden;
}
.contact-list.fixbottom{
    position: absolute;
    width:100%;
    left:0;
    bottom:0;
}
.contact-list>ul{
    display: flex;
}
.contact-list>ul>li{
    width:25rem;
}
.contact-list>ul>li>.box{
    padding: 2rem;
    background-color: var(--bg);
    box-shadow: var(--shadow);
    border-radius: 1rem;
    height: 100%;
    transition: all 0.3s;
}
.contact-list>ul>li.swiper-slide-active>.box{
    background-color: var(--dark);
    color:var(--text-w);
}
.contact-title{
    font-size:2rem;
    font-weight: bold;
    padding-bottom:1rem;
}
.contact-list [class*="icon-"]{
    display: flex;
}

.contact-list [class*="icon-"]::before{
    display: block;
    width:1.4rem;
    height:1.4rem;
    content: '';
    flex-shrink: 0;
    margin-right: 1rem;
    background-size: contain;
    background-repeat: no-repeat;

}
.contact-list .icon-location::before{
    background-image: url(https://cdn.jointekgroup.cn/jdtek.hk/images/location.svg);
}
.contact-list .icon-dial::before{
    background-image: url(https://cdn.jointekgroup.cn/jdtek.hk/images/dial.svg);
}

.job-adv{
    padding:2rem;
    box-shadow: var(--shadow);
    border-radius:0.5rem;
}
.job-adv-title{
    font-size:1.125rem;
    font-weight: bold;
}
.job-adv-desc{
    font-size:0.875rem;
    font-weight: 400;
    color: var(--gcolor);
}
.job-adv>ul{
    display: flex;
}
.job-adv>ul>li>.box{
    display: flex;
    flex-wrap: nowrap;
}

.job-list{
    margin-top:var(--sec-pd);
}
.job-list>ul>li>.box{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: var(--shadow);
    overflow: hidden;
    border-radius: 0.5rem;
    height: 100%;
}
.job-title{
    background: linear-gradient(to right, #870000, #EB8D00);
    padding:0.5rem 1rem;
    color: var(--text-w);
    font-size: 1.125rem;
}
.job-desc{
    padding:2rem;
    line-height: 2;
}

.case-top{
    padding:2rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    border-radius:0.5rem;
}
.case-top-image{
    flex-shrink: 0;
    margin-right:2rem;
}
.case-top-desc{
    line-height: 2;
}

.detail-in{
    padding-left:6rem;
    padding-right:6rem;
}
.news-detail{
    display: grid;
    grid-template-columns: 220px 750px 300px;
    grid-template-areas: "start content end"; 
    justify-content: space-between; 
    gap:2rem;
}
.detail-sevnav{
    padding:2rem 1.5rem;
    background-color: var(--lcolor);
    position: sticky;
    top:1rem;
}
.sevnav-title{
    font-size:1.125rem;
    font-weight: bold;
    padding-bottom:1rem;
}
.related-title{
    font-size:1.125rem;
    font-weight: bold;
    padding-bottom:1rem;
}
.detail-content{
    line-height:2;
    grid-area: content;
}
.detail-content-title{
    font-size:1.5rem;
    line-height: 1.2;
    padding:0 0 1rem 0;
    margin:0;
}
.detail-topbar{
    border-bottom:1px solid rgba(180,180,180,0.2);
    margin-bottom:2rem;
    padding:0.5rem 0;
    line-height: 1;
    display: flex;
}
.detail-breadcrumb{
    font-size:0.875rem;
}
.detail-content-time{
    color:var(--gcolor);
    font-size:0.875rem;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.detail-content-time::before{
    content:'';
    width:1rem;
    height:1rem;
    display: block;
    background:url(https://cdn.jointekgroup.cn/jdtek.hk/images/time.svg) no-repeat center;
    background-size:contain;
    margin-right:0.5rem;
}
.morelist-title{
    font-size:1.2rem;
    font-weight: bold;
    margin-top:2rem;
}
.detail-morelist{
    margin-top:1rem;
}
.detail-morelist>*>.box{
    background-color:var(--lcolor);
    display: flex;
    flex-flow: column;
    height:100%;
}
.morelist-text{
    margin:0.4rem 0.5rem;
    line-height: 1.2;
    font-size:0.8rem;
}

.content-body{
    position: relative;
    white-space: wrap;
    word-break: break-all;
    padding-top:2rem;
    max-width: calc(100vw - 2rem);
}
.content-body::after{
    content:'';
    display: block;
    clear:both;
}
.content-body img{
    max-width:100%;
    height:auto!important;
}
.content-body *{
    font-family: inherit!important;
}
.content-body h2{
    background-image: linear-gradient(to right,rgba(235, 97, 0,0.05),transparent);
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    padding:0.5rem;
    margin: 2rem 0;
    font-size:1.2rem;
    clear:both;
}
.content-body h2::before{
    content: ""; 
    width:1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='16' viewBox='0 0 15 16'%3E%3Cg id='icon-point-4' transform='translate(-363 -695)'%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' transform='translate(363 695)' fill='%23eb6100'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' transform='translate(371 695)' fill='%23eb6100' opacity='0.54'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' transform='translate(371 704)' fill='%23eb6100'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' transform='translate(363 704)' fill='%23eb6100'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center center;
    background-size:contain;
    background-repeat: no-repeat; 
    display: inline-block;
    margin-right:1rem;
    margin-left: 0.5rem;
}
.content-body h3{
    font-size:1.1rem;
}
.content-body .section-image{
    float:right;
    width:180px;
    max-width:50%;
    border:3px solid #FFF;
    box-shadow: 0 0 1rem rgba(0,0,0,0.1);
    margin-left:2rem;
}
.detail-start{
    grid-area: start;
    position: relative;
}
.detail-end{
    grid-area: end;
}
.detail-related{
    position: sticky;
    top:1rem;
}
.detail-related>ul>li>a{
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.content-anchors{
    padding:1rem;
    background-color: var(--lcolor);
    border-radius:0.5rem;
}
.content-anchors>ul{
    list-style-type: decimal;
    padding-left:2rem;
}
.content-anchors>ul>li{
    list-style-type: decimal;
}
.content-sec-title{
    font-size:1.125rem;
    padding:0.5rem 1rem;
    background: linear-gradient(to right,rgba(235,97,0,0.06), transparent );
    display: flex;
    align-items: center;
    border-radius: 0.5rem;
    margin-bottom:1rem;
}
.content-sec-title::before{
    display: inline-block;
    content:'';
    width:1.2rem;
    height:1.2rem;
    background: url(https://cdn.jointekgroup.cn/jdtek.hk/images/sec-title-icon.svg) no-repeat center;
    background-size: contain;
    margin-right:1rem;
}

/* 搜索页 */
.search-word{
    font-size: 1.5rem;
    padding:1rem 0;
    border-bottom:1px solid  rgba(180,180,180,0.3)
}
.search-results{
    margin-top:2rem;
}
.search-results>ul>li>.box{
    
}
.result-title{
    font-size:1.25rem;
    font-weight: bold;
}
.result-tag{
    padding:0.5rem 0.8rem;
    background-color: var(--lcolor);
    font-size:1rem;
    margin-right:0.5rem;
}
.result-info{
    display: flex;
    margin-top:1rem;
    align-items: center;
}
.result-image{
    width:160px;
    max-width:30vw;
    margin-right:2rem;
    background-color: var(--lgcolor);
    flex-shrink: 0;
}
.result-desc{
    display: -webkit-box;
    -webkit-box-orient:vertical;
    line-clamp:4;
    -webkit-line-clamp:4;
    overflow: hidden;
}
.result-highlight{
    color:#F00;
}

.search-box{
    padding:3rem 1rem;
    background-color: var(--lcolor);
    text-align: center;
    border-radius: 1rem;
}
.search-input{
    display: inline-flex;
    font-size:1.2rem;
    background-color:var(--bg);
    align-items: center;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-top:2rem;
}
.search-input>input[type='text']{
    font:inherit;
    outline: none;
    flex:auto;
    align-self: stretch;
    border:0;
    padding:0.5rem 1rem;
    text-align: inherit;
}
.search-submit{
    width: 1.6rem;
    min-height:1.6rem;
    background: url(https://cdn.jointekgroup.cn/jdtek.hk/images/search.svg) no-repeat center;
    background-size: contain;
    flex-shrink: 0;
    height:100%;
    margin-right:1rem;
}


/* 讲座沙龙 */
.lecture-body{
    background: url(https://cdn.jointekgroup.cn/jdtek.hk/images/bg-lecture.jpg) #050A13 no-repeat;
    background-attachment: fixed;
    background-position: 100% auto;
    color:var(--text-w);
    position: relative;
    padding:0 1rem 6rem 1rem;
}
.lecture-body::before{
    content: '';
    display: block;
    position: absolute;
    width:100%;
    left:0;
    top:0;
    height:6rem;
    z-index: 0;
    background: linear-gradient(to bottom,#050A13, transparent);
}
.lecture-nav{
    border:1px solid var(--mcolor);
    display: inline-flex;
    padding:0.5rem;
    border-radius: 1rem;
    font-weight: bold;
    color: var(--text-w);
    position: relative;
}
.lecture-nav>ul{
    display: flex;
}
.lecture-nav>ul>li>a{
    display: block;
    padding: 0.5rem 4rem;
    border-radius: 0.5rem;
}
.lecture-nav>ul>li.active>a{
    background-color: var(--mcolor);
}
.lecture-body .page-list{
    margin-top:3rem;
}
.lecture-body .page-list>ul>li>a{
    min-width:2.75rem;
    border:1px solid rgba(235,97,0,0.6);
    background:rgba(255,255,255,0.08);
    color:var(--text-w);
}
.lecture-body .page-list>ul>li>a:hover{
    border-color:var(--mcolor);
    background:rgba(235,97,0,0.18);
}
.lecture-body .page-list>ul>li>a.on{
    border-color:var(--mcolor);
    background:var(--mcolor);
    color:var(--text-w);
}

.lecture-list{
    max-width:58rem;
    margin:6rem auto 0 auto;
    overflow: hidden;
}
.lecture-list-head{
    display: flex;
    align-items: center;

}
.lecture-list-title{
    font-size:2rem;
    font-weight: bold;
    word-break: break-all;
}
.lecture-list-endtag{
    padding:0.3rem 0.5rem;
    background-color:var(--gcolor);
    margin-left:0.5rem;
    font-size:1rem;
    border-radius:0.3rem;
    white-space: nowrap;
}
.lecture-list-time{
    font-size:1.25rem;
}
.lecture-list-desc{
    background: linear-gradient(to bottom,#224667,#091320 );
    padding:3rem 2rem;
    line-height: 2;
    margin-top:1rem;
    border-radius: 1rem 1rem 0 0 ;
    font-weight: 100;
    color:#9DC1D5;
    position: relative;
}
.lecture-list-basic{
    background: linear-gradient(to right, var(--mcolor), var(--mcolor-1));
    padding:1rem 2rem;
    border-radius:  0 0 1rem 1rem;
}
.lecture-list-name{
    font-size:1.25rem;
    font-weight: bold;
}
.lecture-list-other{
    margin-top:0.5rem;
}
.lecture-list-image{
    width:16rem;
    height:20rem;
    position: absolute;
    bottom:0;
    right:2rem;
}
.lecture-list-disabled{
    opacity: 0.5;
}
.lecture-list-disabled:hover{
    opacity:1;
}
.lecture-review{
    margin-top: 4rem;
    max-width:58rem;
    margin-left:auto;
    margin-right: auto;
    overflow: hidden;
}
.lecture-review>ul>li>.box{
    display: flex;
    padding:2rem;
    background: linear-gradient(to bottom,#224667,#091320 );
    border-radius:1rem;
}
.lecture-review>ul>li .cover{
    width:18rem;
    background-color: #050A13;
    flex-shrink: 0;
    align-self: flex-start;
}
.lecture-review-basic{
    margin-left:2rem;
    overflow: hidden;
}
.lecture-review-title{
    font-size:1.5rem;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex:0 0 auto;
}
.lecture-review-desc{
    margin-top:1rem;
    color: #9DC1D5;
    display: -webkit-box;
    -webkit-line-clamp: 2;

}
.lecture-review-time{
    padding-top:0.5rem;
    border-top:1px solid rgba(180,180,180,0.1);
    color: #9DC1D5;
    margin-top:0.5rem;
}

@keyframes move-falsh {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% + 6rem);
  }
}
.auto-flash{
  position: relative;
  overflow: hidden;
}
.auto-flash::before {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  transform: skew(-20deg) translateX(-150%);
  z-index: 1;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3333333333), transparent);
  animation: move-falsh 1s linear infinite;
  animation-delay: 1s;
}


@media(max-width:1600px){
    html{
        font-size:14px;
    }
    .index-banner .swiper-pagination-bullet{
        width:10px;
        height:4px;
    }
    body{
        min-width:1280px;
    }
    .in{
        width:1280px;
    }
    .detail-in{
        padding-left:2rem;
        padding-right:2rem;
    }
    nav{
        --gap:3rem;
    }
}

@media (max-width:1440px) {
    body{
        min-width:1280px;
    }
    .in{
        width:1280px;
    }
}

@media (max-width:1380px) {
    .news-detail{
        justify-content: space-around;
        grid-template-columns:12.5rem 750px;
        grid-template-areas: 
        'start content .'
        'start end .'
        ;
    }
    .detail-related{
        margin-top:2rem;
    }
}

@media(max-width:1280px){
    html{
        font-size:12px;
    }
    body{
        min-width:1200px;
    }
    .in{
        width:1100px;
    }
    .team-list>li{
        width:20%;
    }
    
}

@media(max-width:1024px){
    html{
        font-size:16px;
    }
    body{
        min-width: auto;
    }
    .in{
        width:auto;
        padding-left:2rem;
        padding-right:2rem;
    }
    .nav-active nav{
        display:block!important;
    }
    .nav-active::before{
        content:'';
        display: block;
        width:100vw;
        height:100vh;
        position: fixed;
        left:0;
        top:0;
        background-color: rgba(0,0,0,0.5);
        z-index: 99999;
    }
    .nav-topbar{
        display: block;
    }
    .nav-active{
        overflow: hidden;
    }
    .nav-btn{
        display:flex;
    }
    nav{
        position: absolute;
        top:100%;
        background-color: var(--bg);
        width:100vw;
        height:calc(100vh - 3.75rem);
        left:0;
        padding:4rem 0;
        --gap:0rem;
        border-top:1px solid rgba(180,180,180,0.2);
        display: none;
        font-size:1.2rem;
        overflow: hidden;
        overflow-y: auto;
    }
    nav .sub-nav{
        position: fixed;
        border-top:none;
        box-shadow: none;
        top:0;
        background-color: var(--bg);
        height: 100%;
        width:100%;
        z-index: 9999999;
        overflow-y: auto;
    }
    nav .sub-nav.mb-active{
        display: block;
    }
    nav>ul{
        flex-direction: column;
        align-items: stretch;
        margin-left:auto;
        margin-top:calc(0rem - var(--gap));
    }
    nav>ul>li{
        margin-top:var(--gap);
        border-bottom:1px solid rgba(180,180,180,0.2);
        padding:1rem 0;
    }

    nav .subtabs-wrap{
        padding:1rem 1rem 1rem 0;
        position: relative;
    }
    nav .subnav-tabs{
        position: sticky;
        top:5rem;
        font-size:1rem;
    }
    
    nav .subnav-tabs>*{
        width:10rem;
    }
    nav .subcontents-wrap{
        padding:2rem;
    }
    .nav-sublist{
        grid-template-columns:auto;
        gap:1rem;
    }
    .nav-sublist>*>*{
        box-shadow: none;
        padding:1rem;
        border-bottom:1px solid rgba(180,180,180,0.2);
        
    }
    .nav-sidelist>*>*{
        width:auto;
    }

    .adv>ul{
        grid-template-columns: repeat(2 , 1fr);
    }
    .adv>ul>li{
        width:50%;
        align-items: center;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        margin: auto;
    }
    .adv>ul>li:nth-child(4){
        display: none;
    }
    .adv .info{
        margin-left:0;
        margin-top:1rem;
    }
    .tel-pic{
        display: none;
    }
    .sev-list>ul>li{
        width:50%;
    }
    .news-list>ul>li{
        display: block!important;
    }
    .footer-logo{
        display: none;
    }
    .about-basic{
        display: block;
    }
    .about-image{
        min-width: 200px;
        width:20%;
        float: left;
        margin-right:2rem;
    }
    .about-culture{
        flex-direction: column-reverse;
    }
    .culture-basic{
        text-align: left;
    }
    .culture-list>li{
        flex-direction: row-reverse;
    }
    .culture-icon{
        margin-left:0;
        margin-right: 2rem;
    }
    .team-list>li{
        width:25%;
    }

    .news-detail{
        grid-template-columns:auto;
        grid-template-areas: 
        'content'
        'end'
        'start'
        ;
    }
}

@media(max-width:800px){
    footer{
        padding:5rem 0;
    }
    footer .basic{
        flex-direction: column;
        align-items: center;
    }
    .footer-list>li{
        flex-direction: column;
    }
    footer .basic-end{
        margin-left:0;
    }
    footer .basic-end>*{
        flex-direction: column;
    }
    .sev-form{
        flex-direction: column;
        align-items: stretch;
        padding:5rem 0;
    }
    .sev-form .form-title{
        font-size:2rem;
        padding-bottom:1rem;
        text-align: center;
    }
    .page-nav>li>a{
        padding:1rem;
    }
    .page-nav-wrap{
        overflow: hidden;
        overflow-x: auto;
    }
    .page-nav{
        overflow: visible;
        justify-content: flex-start;
        padding:0;
    }
}

@media(max-width:600px){
    html{
        font-size:12px;
    }
    .in{
        padding-left:1rem;
        padding-right:1rem;
    }
    .index-banner .swiper-slide::before{
        font-size:5rem;
    }
    .sev-list>ul>li::before{
        padding-top:75%;
    }
    
    .logo-pic{
        width:12rem;
    }
    #jdtek-sev-form{
        margin-left:0!important;
        padding:1rem 0;
        
    }
    .jdtek-sevform{
        flex-direction: column;
        font-size:1.25rem!important;
    }
    .jdtek-sevform>button{
        margin-left:0!important;
        margin-top:1rem;
        justify-content: center;
        font-size:1.25rem!important;
        padding:0.8rem 2rem!important;
    }
    .about-image{
        width:auto;
        float:none;
        margin-right:0;
        margin-bottom: 1rem;
    }
    .team-avatar{
        /*width:50%;*/
    }
    .culture-title{
        font-size:1.5rem;
    }
    .team-list>li{
        width:40%;
    }

    .case-top{
        display: block;
    }
    .case-top-image{
        float:left;
        max-width: 20%;
    }
    .detail-in{
        padding-left:1rem;
        padding-right:1rem;
    }
    .lecture-list-image{
        right:0;
    }
    .lecture-review>ul>li>.box{
        flex-direction: column;
    }
    .lecture-review>ul>li .cover{
        width:100%;
    }
    .lecture-review-basic{
        margin-top:1rem;
        margin-left:0;
    }
    .sev-list .menu{
        padding:2rem 1rem 1rem 1rem;
    }
}
