.banner{
    height: 320px;
    text-align: center;
    background: url("../../assets/imgs/tech/banner.png");
    background-size: 100% 100%;
}

.banner h3{
    font-size: 48px;
    font-weight: 600;
    color: #FFFFFF;
    padding-top: 88px;
    margin-bottom: 24px;
}

.banner p{
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}

.tabs{
    margin-top: 100px;
}

.tabs .flex{
    flex-wrap: wrap;
    margin-bottom: 18px;
    align-items: flex-start;
}

.tabs .flex h4{
    margin-right: 56px;
    font-size: 48px;
    font-weight: 600;
    color: #000000;
}

.tabs .flex ul{
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 300px);
    margin-top: 16px;
}

.tabs .flex ul li{
    margin-right: 16px;
}

.tabs .flex li a{
    display: block;
    padding: 5px 16px;
    height: 24px;
    line-height: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.tabs .flex li.active{
    background: #1A8CFF;
    border-radius: 2px;
}

.tabs .flex li.active a{
    color: #FFFFFF;
}

.box{
    width: calc(100% / 3 - 58px);
    height: 282px;
    margin: 17px 12px;
    padding: 16px 16px 24px 16px;
    background: #FFFFFF;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #E6EBF0;
}

.box:hover{
    transition: transform 0.8s;
    transform: translateY(-10px);
    border-radius: 4px;
    border: 1px solid #E6EBF0;
    box-shadow: 0 16px 32px 0 rgba(82,88,102,0.08);
}

.box img{
    width: 100%;
    height: 198px;
    object-fit: cover;
    border-radius: 2px 2px 0 0;
}

.box h6{
    margin: 16px 0;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.box p{
    font-size: 16px;
    font-weight: 600;
    color: #1A8CFF;
}

.box p img{
    margin: 0 0 0 7px;
    width: 18px;
    height: 18px;
    border-radius: 0;
    vertical-align: sub;
}

.box a{
    color: #1A8CFF !important;
}

.tabs-content .tab-con{
    display: none;
}

.tabs-content .tab-con .con{
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

@keyframes box {
    0%{ transform: translateY(0) }
    100%{ transform: translateY(-10px) }
}

.d-divider{
    height: 280px;
    margin: 120px 0 0 0;
    text-align: center;
    background: url("../../assets/imgs/home/easy-banner.png");
    background-size: 100% 100%;
}

.d-divider h5{
    padding-top: 42px;
    margin-bottom: 8px;
    font-size: 48px;
    font-weight: 600;
    color: #FFFFFF;
}

.d-divider p{
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
}

.d-divider button{
    width: 200px;
    height: 52px;
    font-size: 20px;
    font-weight: 600;
    color: #1A8CFF;
    border: none;
    border-radius: 4px;
    background: #FFFFFF;
    cursor: pointer;
}

.container{
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}

h6.text-ellipsis.w-fill{
    width: 100%;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}