body {
    font-family: 'Lato', sans-serif;
}

body::-webkit-scrollbar {
    display: none;
  }
/* @font-face {
    font-family: 'Baloo 2';
    src: url(../fonts/Baloo2-Medium.ttf) format('woff2');
} */

  .placeholder{
    object-fit: cover;
    margin: auto; 
    background-color: #fff;
    opacity: 1;
    cursor: pointer;
      }

.t_1l {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}


.t_12,
a h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


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

.t_14 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.catename {
    text-transform: capitalize !important;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #dc3545;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span {
    font-family: 'Lato', sans-serif;
}

a h2:hover {
    text-decoration: underline;
}

.dt-content h1,
.dt-content h2,
.dt-content h3,
.dt-content h4,
.dt-content h1 span,
.dt-content h2 span,
.dt-content h3 span,
.dt-content h4 span {
    font-size: 16px !important;
    line-height: 1.5 !important;
    text-indent: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    color: #333 !important;
    font-family: 'Lato', sans-serif !important;
}

.dt-content .dt-title {
    font-size: 20px !important;
    line-height: 1.5 !important;
    color: #333 !important;
    margin-bottom: 15px !important;
    font-style: normal;
    font-weight: 600 !important;
    font-family: 'Lato', sans-serif !important;
}


.dt-content p,
.dt-content span,
.dt-content ul li,
.dt-content ol li {
    color: #333 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    text-indent: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-style: normal !important;
    font-family: 'Lato', sans-serif !important;
    font-weight: 400 !important;
    text-align: left !important;
    margin-left: 0 !important;
}

.dt-content ul,
.dt-content ol {
    margin-bottom: 15px;
    margin-left: 0px !important;
    padding-left: 30px !important;
    font-family: 'Lato', sans-serif !important;
}

.dt-content ul,
.dt-content ul li {
    list-style: disc;
}

.dt-content ol,
.dt-content ol li {
    list-style: decimal;
}

.dt-content img {
    display: block;
    cursor: auto;
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
    margin: auto;
    margin-bottom: 15px;
}

.dt-content strong,
.dt-content strong span {
    font-weight: 600 !important;
}

.dt-content table {
    width: 100% !important;
    overflow: auto !important;
    display: block !important;
    border: none !important;
}

header {
    position: relative;
    padding: 0px 0px;
    background: #232323;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    max-width: 1400px;
    margin: auto;
}


.nav-links {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    align-items: center;
}


.nav-links li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    padding: 6px 8px;
    display: block;
    font-family: 'Lato', sans-serif;

}

.nav-links li a:hover {
    color: #dc3545;
}

.nav-links li a img {
    width: 24px; object-fit: contain;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px;
}

.line1,
.line2,
.line3 {
    width: 22px;
    height: 2px;
    background-color: #fff;
    margin: 2px;
}

.logo a {
    font-size: 26px;
    line-height: 34px;
    color: #fff;
    padding: 10px 10px;
    display: block;
    font-weight: 600;
    text-transform: capitalize;

}



@media (max-width:992px) {
    .nav-links li a {
        padding: 6px 4px;
    }
}


@media screen and (max-width: 768px) {
  .nav-links li a img{    width: 38px;
    object-fit: contain;         }
  .h5-sear a{padding: 6px 6px !important}
    .nav-links {
        display: none;
        flex-direction: column;
        /* 将导航链接改为纵向布局 */
        background-color: #fff;
        /* 为导航链接添加背景色 */
        padding: 10px;
        /* 为导航链接添加内边距 */
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        z-index: 9999;
        padding-top: 60px;
        height: 100vh;
    }

    .navbar {
        padding: 0px 0px;
    }

    .logo a {
        padding: 6px 15px;
        font-size: 20px;
        line-height: 26px;
    }

    .nav-links.nav-active {
        display: flex;
        position: fixed;
    }

    .nav-links li a {
        padding: 10px 10px;
        color: #333;
    }

    .burger {
        display: flex;
        padding: 10px 15px;
    }

    .toggle {
        position: fixed;
        z-index: 9999;
        right: 6px;
        font-size: 24px;
        top: 0px;
        color: #333;
    }

    header:after {
        width: 50%;
        left: 0;
    }

    .nav-links li:last-child a {
        width: max-content;
        background-color: #222;
        border-radius: 100px;
        margin-left: 10px;
    }
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

img {
    object-fit: cover;
    display: block;
    width: 100%;
    border-radius: 10px;
}

footer {
    margin-top: 50px;
    padding: 16px 10px;
    position: relative;
    background: #232323;
}

footer .pt p,
footer .pb {
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 0;
}

footer .pb {
    padding-bottom: 10px;
}

footer .pb a {
    color: #fff;
    padding: 0 20px 0;
    text-decoration: underline;
    display: inline;
}


@media (max-width:550px) {

    footer .pt p,
    footer .pb {
        font-size: 14px;
        line-height: 18px;
    }

    footer .pb {
        padding-bottom: 10px;
    }

    footer .pb a {
        padding: 0 14px 0;
    }
}