@font-face {
    font-family: 'Unbounded';
    src: url('../fonts/Unbounded-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: 'Kanit';
    src: url('../fonts/Kanit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Kanit';
    src: url('../fonts/Kanit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Kanit';
    src: url('../fonts/Kanit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Kanit';
    src: url('../fonts/Kanit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

html,
body {
    font-family: 'Asap', sans-serif;
    margin: 0;
}


.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    width: 100%;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

*,
::after,
::before {
    box-sizing: border-box;
}


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

.t_12 {
    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;
}

a {
    text-decoration: none;
}

p {
    color: #686a6f;
}

h1,
h2,
h3,
h4,
p {
    margin: 0%;
    padding: 0;
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    max-width: 1200px;
    margin: auto;
}

.logo {
    width: 100%;
}

.logo a {
    font-family: 'Unbounded';
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    padding: 10px 10px;
    display: block;
    color: #E6564D;
    text-align: center;
}

.head-sear {
    position: absolute;
    right: 10px;
    top: 14px;
    height: 32px;
    width: 300px;
    border-radius: 4px;
    background: #E6564D;
}

.head-sear input {
    border: none;
    width: calc(100% - 65px);
    margin-left: 12px;
    border-radius: 4px;
    padding-left: 10px;
    outline: none;
    font-size: 14px;
    line-height: 18px;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 22px;
}

.head-sear_btn {
    position: absolute;
    right: 12px;
    top: 7px;
}

.head-sear_btn a,
.head-sear_btn img {
    display: block;
    width: 20px;
    height: 20px;
}

.head-sear input::placeholder {
    color: #666;
    font-family: Kanit;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
}

.sear-img1 {
    display: none !important;
}

.nav-links {
    width: auto;
    display: flex;
    list-style-type: none;
    margin: 0 auto;
    padding: 0 0 5px;
    overflow-x: auto;
}

.nav-links::-webkit-scrollbar {
    height: 4px;
}

.nav-links::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #e9ecef;
}

.nav-links li a {
    text-transform: capitalize;
    color: #333;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
    padding: 0 20px;
}

.nav-links li a.active,
.nav-links li a:hover {
    color: #E6564D;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

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

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

.back-to-top {
    border: none;
    position: fixed;
    bottom: 160px;
    right: 65px;
    z-index: 99;
    cursor: pointer;
    display: none;
    border-radius: 50%;
    background-color: transparent;
}

.back-to-top img {
    width: 35px;
    vertical-align: bottom;
}

@media (max-width:992px) {
    .head-sear {
        width: 200px;
    }

    .head-sear input {
        width: calc(100% - 55px);
        margin-left: 6px;
        padding-left: 4px;
    }

    .logo a {
        font-size: 28px;
    }
}

@media (max-width:768px) {
    .logo a {
        padding: 5px 10px;
        font-size: 24px;
        line-height: 30px;
    }

    .head-sear {
        background: transparent;
        top: 4px;
    }

    .head-sear input {
        display: none;
    }

    .sear-img {
        display: none !important;
    }

    .sear-img1 {
        display: block !important;
    }
}


@media (max-width:550px) {
    .back-to-top img {
        width: 30px;
    }

    .back-to-top {
        bottom: 140px;
        right: 40px;
    }
}

.m1 {
    padding: 32px 0;
}

.m1 .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
}

.home-1,
.home-3 {
    flex: 0 0 calc(28% - 12px);
    width: calc(28% - 12px);
}

.home-2 {
    flex: 0 0 calc(44% - 12px);
    width: calc(44% - 12px);
}

.home-head {
    position: relative;
    padding: 12px 12px 12px 12px;
    border-radius: 4px 4px 0px 0px;
    background: #FFF;
    box-shadow: 0px -2px 12px 0px rgba(255, 0, 0, 0.08) inset;
}

.home-head h1 {
    overflow: hidden;
    color: #E6564D;
    text-overflow: ellipsis;
    font-family: Kanit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 116.667% */
}

.home-1 .list {
    margin-bottom: 18px;
}

.home-1 .list .item {
    border-radius: 0px 0px 4px 4px;
    background: #FFF;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
}

.home-1 .list .item a {
    padding: 24px 12px;
    display: block;
}

.home-1 .list .item img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    background: #D9D9D9;
    margin-bottom: 4px;
}

.home-1 .list .item .cate-name {
    color: #E6564D;
    font-family: Kanit;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    /* 128.571% */
    text-transform: capitalize;
}

.home-1 .list .item h2 {
    margin-top: 4px;
    color: #333;
    font-family: Kanit;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
}

.home-1 .list .item .time {
    color: #A6A6A6;
    font-family: Kanit;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: 16px;
    /* 133.333% */
}

.head02 h1 {
    color: #CB8E57;
}

.home-1 .list .item p {
    margin-top: 4px;
    color: #999;
    font-family: Kanit;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    /* 128.571% */
}

.home-1 .list:nth-child(3) h2 {
    margin-top: 0;
    margin-bottom: 8px;
}

.home-1 .list:nth-child(3) img {
    margin-bottom: 0;
    aspect-ratio: 1 / 0.56;
}

.home-1 .list:nth-child(3) a {
    padding: 24px 12px 0;
}

.home-1 .list:nth-child(3) .item:last-child a {
    padding-bottom: 24px;
}

.head03::before {
    content: '';
    position: absolute;
    background: url(../img/head-featured.svg);
    top: -4px;
    right: -4px;
    width: 75px;
    height: 75px;
    background-repeat: no-repeat;
    background-size: contain;

}

.list04 .dt-header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.list04 .dt-header p {
    padding: 12px;
    cursor: pointer;
    color: #CB8E57;
    font-family: Kanit;
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    /* 116.667% */
}

.list04 .dt-header p.active {
    background: #CB8E57;
    color: #FFF;
    border-radius: 4px;
}

.list04 .item {
    margin-top: 6px;
    border-radius: 4px !important;
    border: 4px solid #CB8E57;
    background: #FFF;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
}

.list04 #content {
    position: relative;
}

.list04 #content-1::before {
    content: '';
    position: relative;
    background: url(../img/triangle.svg);
    background-repeat: no-repeat;
    width: 20px;
    height: 10px;
    top: 6px;
    left: 20%;
    background-size: contain;
}

.list04 #content-2::before {
    content: '';
    position: relative;
    background: url(../img/triangle.svg);
    background-repeat: no-repeat;
    width: 20px;
    height: 10px;
    top: 6px;
    left: 56%;
    background-size: contain;
}


.list04 #content-3::before {
    content: '';
    position: relative;
    background: url(../img/triangle.svg);
    background-repeat: no-repeat;
    width: 20px;
    height: 10px;
    top: 6px;
    left: 83%;
    background-size: contain;
}

.home-2 .item {
    border-radius: 0px 0px 4px 4px;
    background: #FFF;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
}

.home-2 .item a,
.carousel-item a {
    padding: 12px 24px;
    display: block;
}

.home-2 .item a h2,
.carousel-item a h2 {
    color: #333;
    font-family: Kanit;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 8px;
}

.home-2 .item a div,
.carousel-item a div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.home-2 .item a div .cate-name,
.carousel-item a div .cate-name {
    color: #CB8E57;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
}

.home-2 .item a div .time,
.carousel-item a div .time {
    color: #A6A6A6;
    font-family: Kanit;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.home-2 .item a img,
.carousel-item a img {
    width: 100%;
    background: #D9D9D9;
    aspect-ratio: 1/0.76;
    margin-bottom: 8px;
    object-fit: cover;
}

.home-2 .item p,
.carousel-item p {
    color: #666;
    font-family: Kanit;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    margin-bottom: 8px;
}

.home-2 .item button,
.carousel-item .read {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    border-radius: 4px;
    background: #CB5F57;
    padding: 8px 24px;
    border: none;
    color: #FFF;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
}

.home-2 .item button img,
.carousel-item button img {
    width: 20px;
    height: 20px;
    background: transparent;
    margin-bottom: 0 !important;
}

.head06{
    box-shadow: none;}

.head06::before {
    position: absolute;
    content: '';
    background: url(../img/editor.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 52px;
    top: 2px;
    left: 0;
}

.head06 h1 {
    z-index: 99;
    color: #fff;
    position: relative;
    text-align: center;
}

.home-3 .list-1 .item a {
    padding: 20px 0 0;
    display: block;
}

.home-3 .list-1 .item div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.home-3 .list-1 .item span {
    color: #CB5F57;
    font-family: Kanit;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.home-3 .list-1 .item h2 {
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
}

.home-3 .list-1 .item img {
    width: 100%;
    background: #D9D9D9;
    aspect-ratio: 1/0.67;
    margin-bottom: 0px;
    object-fit: cover;
}

.home-3 .list-1 .item:last-child a {
    padding-bottom: 20px;
}

.home-3 .list-1 .item {
    counter-increment: mvp-trend;
}

.home-3 .list-1 .item span::after {
    content: counter(mvp-trend) ".";
}

.home-3 .list-2 .item {
    border-radius: 0px 0px 4px 4px;
    background: #FFF;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
}


.home-3 .list-2 .item a {
    padding: 24px 12px;
    display: block;
}

.home-3 .list-2 .item img {
    width: 100%;
    aspect-ratio: 1/0.64;
    object-fit: cover;
    background: #D9D9D9;
    margin-bottom: 4px;
}

.home-3 .list-2 .item .cate-name {
    color: #CB8E57;
    font-family: Kanit;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    /* 128.571% */
    text-transform: capitalize;
}

.home-3 .list-2 .item h2 {
    margin-top: 4px;
    color: #333;
    font-family: Kanit;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
}

.home-3 .list-2 .item .time {
    color: #A6A6A6;
    font-family: Kanit;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: 16px;
}
.home-3 .list-3{
    padding-top: 24px;}
.home-3 .list-3 .item .cate-name {
    color: #E6564D;
}

.line {
    margin: 32px 0;
    padding: 10px 0;
    background: url(../img/bg-1.svg);
    background-size: contain;
}

.m2 {
    padding: 32px 0;
}

.m2 .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.m2 .list {
    width: calc(25% - 18px);
    flex: 0 0 calc(25% - 18px);
    padding: 12px 0 0;
    border-radius: 8px;
    border: 2px solid #CB8E57;
    background: #F8F3E3;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
}

.m2 .list {
    position: relative;
}

.m2 .list .head01::before {
    content: '';
    position: absolute;
    background: url(../img/head-31.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 12px;
    left: -10px;
    width: 80%;
    height: 52px;
}


.m2 .list .head02::before {
    content: '';
    position: absolute;
    background: url(../img/head-32.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 12px;
    left: -10px;
    width: 80%;
    height: 52px;
}

.m2 .list .head01 h1,
.m2 .list .head02 h1 {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'liga' off;
    font-family: Kanit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    z-index: 999;
    position: relative;
    text-transform: capitalize;
    width: 75%;
}

.m2 .list a {
    display: block;
    padding: 12px 24px;
}

.m2 .list a h2 {
    color: #333;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
}

.m2 .list a div {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}

.m2 .list a div span {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    font-family: Kanit;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    /* 125% */
    color: #F8F3E3;
}

.m2 .list a {
    counter-increment: mvp-trend;
}

.m2 .list a span::after {
    content: counter(mvp-trend);
}

footer {
    padding-top: 12px;
}

footer .news .head {
    color: #E6564D;
    font-family: Unbounded;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    /* 125% */
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

footer .news .head::after {
    position: absolute;
    content: '';
    top: 18px;
    left: 0;
    width: 43%;
    height: 5px;
    background: linear-gradient(270deg, #E6564D 0%, rgba(230, 86, 77, 0.00) 100%);
    ;
}

footer .news .head::before {
    position: absolute;
    content: '';
    top: 18px;
    right: 0;
    width: 43%;
    height: 5px;
    background: linear-gradient(90deg, #E6564D 0%, rgba(230, 86, 77, 0.00) 100%);
    ;
}

footer .news p {
    width: 70%;
    margin: auto;
    text-align: center;
    color: #333;
    font-family: Kanit;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 12px;
}

footer .pt {
    margin: 40px auto 12px;
    text-align: center;
}

footer .pt a {
    color: #333;
    text-align: center;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding: 0px 20px;
}

footer .pt a:first-child {
    border-right: 2px solid #E6564D;
}

footer .pb {
    text-align: center;
    color: #333;
    text-align: center;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 20px;
    /* 137.5% */
}

.cate-list .flex {
    gap: 0;
}

.cate-list .home-2 {
    width: 100%;
    flex: 0 0 100%;
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
}

.cate-list .home-2 .item {
    width: 33.33%;
    flex: 0 0 33.33%;
    box-shadow: none
}

.cate-list .home-head {
    width: 100%;
    text-transform: capitalize;
    text-align: center;
}

.cate-list .home-2 .item a {
    padding: 12px 12px;
}

.cate-list .home-2 .item img {
    aspect-ratio: 1/0.6;
}

.sear-main {
    padding-top: 32px;
    padding-bottom: 32px;
}

.search {
    width: 100%;
    max-width: 600px;
    margin: auto;
    background-color: #E6564D;
    border-radius: 4px;
    position: relative;
    height: 40px;
}

.search input {
    width: calc(100% - 50px);
    border: none;
    margin-left: 5px;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
    line-height: 24px;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 30px;
    padding-left: 10px;
}

.search_btn {
    position: absolute;
    right: 15px;
    top: 10px;
}

.search input::placeholder {
    color: #666;
    font-family: Kanit;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
}

.sear-list {
    max-width: 800px;
    margin: 32px auto 0;
    width: 100%;
}

.sear-list a {
    display: block;
    padding: 10px;
}

.sear-list .item {
    padding: 15px;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
}

.sear-list .item h2 {
    color: #333;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 8px;
}

.sear-list .item p {
    color: #666;
    font-family: Kanit;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
}

.dt {
    padding-top: 32px;
    padding-bottom: 0px;
}

.dt-right {
    width: 26%;
    margin-top: 10%;
    height: fit-content;
}

.dt-main {
    width: 60%;
}

.dt-content h1,
.dt-content h2,
.dt-content h3,
.dt-content h4 {
    font-size: 18px !important;
    line-height: 1.4 !important;
    text-indent: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-style: normal;
    font-weight: 400;
    color: #333;
    font-family: Kanit !important;
}

.dt-content .dt-title {
    font-size: 22px !important;
    line-height: 1.4 !important;
    color: #333 !important;
    margin-bottom: 15px !important;
    font-style: normal;
    font-weight: 500;
    font-family: Kanit !important;
}

.dt-content p,
.dt-content span {
    color: #333 !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    text-indent: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-style: normal;
    font-family: Kanit !important;
    font-weight: 300;
    text-align: left !important;
    margin-left: 0 !important;
}

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


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

.dt-content ol {
    list-style: decimal;

}

.dt-content ul li,
.dt-content ol li {
    color: #333 !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    text-indent: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    font-style: normal;
    font-family: Kanit !important;
    font-weight: 300;
}

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

.dt-content .time{
    color: #A6A6A6 !important;
    font-family: Kanit !important;
    font-size: 16px !important;
    font-style: italic;
    font-weight: 400;
    line-height: 20px !important;
    display: block;
margin-bottom: 10px !important;

}

.dt-main .info {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.dt-main .info h1 {
    color: #FFF;
    z-index: 999;
    position: relative;
    font-family: Kanit;
    font-size: 20px;
    font-weight: 400;
    width: 270px;
    text-align: center;
    line-height: 50px;
}

.dt-main .info::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 50px;
    background: url(../img/head-31.svg);
    left: 0;
    top: 20px;
    background-repeat: no-repeat;
    background-size: contain;
}

.dt-main .like,
.share {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.dt-main .like span,
.share span {
    color: #333;
    font-family: Kanit;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    padding-right: 30px;
}

.dt-main .like a {
    display: inline-block;
    padding: 10px 40px;
}

.dt-main .like #up {
    background: url(../img/up.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.dt-main .like #down {
    background: url(../img/down.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.dt-main .like #up.active {
    background: url(../img/up-active.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.dt-main .like #down.active {
    background: url(../img/down-active.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.share a {
    padding: 5px 15px;
}


#copy-message {
    position: fixed;
    z-index: 999;
    bottom: 30%;
    width: 60px;
    height: 28px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #fff;
    border: 1px solid #d9d9d9;
    color: #333;
    font-size: 12px;
    text-align: center;
    line-height: 28px;
    border-radius: 20px;
}

.dt-right .home-1,
.dt-right .home-1 .list {
    width: 100% !important;
    flex: 0 0 100% !important;
}

.dt-right .list .item a {
    padding: 12px 12px 0;
}

.dt-right .list .item:last-child {
    padding-bottom: 12px;
}

.dt-right .list .item a h2 {
    margin-bottom: 4px;
}

.dt-right .list .item a img {
    aspect-ratio: 1/0.6;
}

@media (max-width:992px) {

    .home-head h1 {
        font-size: 18px;
        line-height: 24px;
    }

    .m2 .list .head01 h1,
    .m2 .list .head02 h1 {
        font-size: 18px;
        line-height: 28px;
    }

    .m2 .list a {
        display: block;
        padding: 12px 12px;
    }

    .m2 .list a div span {
        font-size: 26px;
    }

    footer .news .head {
        font-size: 20px;
    }

    footer .news p {
        font-size: 16px;
    }

}

@media (max-width:768px) {
    .home-1 {
        flex: 0 0 100%;
        width: 100%;
        order: 1;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .home-2 {
        flex: 0 0 100%;
        width: 100%;
        order: 0;
        display: flex;
        flex-wrap: wrap;
        box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);

    }

    .home-3 {
        flex: 0 0 100%;
        width: 100%;
        order: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .home-2 .home-head {
        width: 100%;
    }

    .home-2 .item {
        width: 50%;
    }

    .home-1 .list {
        width: calc(50% - 12px)
    }

    .home-2 .item {
        box-shadow: none;
    }

    .home-2 .item button,
    .carousel-item .read {
        font-size: 14px;
        font-weight: 400;
        line-height: 16px;
        padding: 6px 20px;
    }

    .home-2 .item a div .cate-name {
        font-size: 14px;
    }

    .home-1 .list:nth-child(3) {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
    }

    .home-1 .list:nth-child(3) .head03 {
        width: 100%;
    }

    .home-1 .list:nth-child(3) .item {
        width: 50%;
        box-shadow: none
    }

    .head03::before {
        width: 100px;
        height: 100px;
    }

    .home-1 .list:nth-child(4) {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
    }

    .list04 .dt-header {
        width: 20%;
        flex-wrap: wrap;
        padding-right: 20px;
    }

    .list04 .dt-header p {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        width: 100%;
        writing-mode: vertical-rl;
        text-orientation: upright;
        display: flex;
        align-items: center;
        margin: auto;
    }

    .list04 #content-1::before {
        transform: rotate(270deg);
        left: -15px;
        top: 100px;
    }

    .list04 #content-2::before {
        transform: rotate(270deg);
        left: -15px;
        top: 300px;
    }

    .list04 #content-3::before {
        transform: rotate(270deg);
        left: -15px;
        top: 430px;
    }

    .head06::before {
        top: 0px;
        background: url(../img/editor-1.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .home-3 .list-1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .home-3 .list-1 .head06 {
        width: 100%;
    }

    .home-3 .list-1 .item,
    .home-3 .list-2,
    .home-3 .list-3 {
        width: calc(50% - 12px);
    }

    .line {
        padding: 6px 0;
    }

    .m2 .list {
        width: calc(50% - 12px);
        flex: 0 0 calc(50% - 12px);
    }

    .m2 .list .head01::before,
    .m2 .list .head02::before {
        width: 65%;
    }

    .m2 .list .head01 h1,
    .m2 .list .head02 h1 {
        font-size: 18px;
        line-height: 34px;
        padding-bottom: 10px;
        width: 65%;

    }

    .m2 .list a {
        padding: 6px 12px;
    }

    footer .news p {
        width: 100%;
    }

    .cate-list .home-2 .item {
        width: 50%;
        flex: 0 0 50%;
    }

    .dt-main,
    .dt-right {
        width: 100%;
    }

    .dt-right .home-1 .list .item {
        width: 50%;
        box-shadow: none
    }

    .dt-right .home-1 .list {
        display: flex;
        flex-wrap: wrap;
    }

    .dt-right .home-1 .list .home-head {
        width: 100%;
    }

    .dt-main .info h1,
    .dt-main .lick span,
    .share span {
        font-size: 16px;
    }

    .dt-main .lick #up.active,
    .dt-main .lick #up,
    .dt-main .lick #down,
    .dt-main .lick #down.active {
        background-size: 14px;
    }

    .share a svg {
        width: 18px;
        height: 18px;
    }

    .dt-main .info::before {
        height: 40px;
        top: 10px;
    }

    .dt-main .info h1 {
        line-height: 40px;
        width: 220px;
    }

    .dt-main .info {
        position: relative;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .dt-main .lick,
    .share {
        padding-bottom: 10px;
    }

    .dt-right {
        margin-top: 0%;
    }
}

@media (max-width:650px) {
    .list04 #content-2::before {
        top: 270px;
    }

    .list04 #content-3::before {
        top: 390px;
    }
}

@media (max-width:600px) {
    .logo a {
        font-size: 20px;
    }

    .m1,
    .m2 {
        padding: 15px 0;
    }

    .home-head h1,
    .list04 .dt-header p,
    .m2 .list .head01 h1,
    .m2 .list .head02 h1 {
        font-size: 16px;
        line-height: 20px;
    }

    .home-2 .item a h2,
    .home-1 .list .item h2,
    .home-3 .list-1 .item h2,
    .home-3 .list-2 .item h2,
    .carousel-item a h2 {
        font-size: 14px;
        line-height: 18px;
    }

    .home-2 .item a div .cate-name,
    .home-2 .item a div .time,
    .home-2 .item p,
    .home-1 .list .item .cate-name,
    .home-1 .list .item p,
    .home-3 .list-2 .item .cate-name,
    .carousel-item a div .cate-name,
    .carousel-item a div .time {
        font-size: 12px;
        line-height: 16px;
    }

    .home-2 .item button img,
    .carousel-item .read img {
        width: 16px;
        height: 16px;
    }

    .home-2 .item a,
    .home-1 .list .item a,
    .home-3 .list-2 .item a,
    .carousel-item a {
        padding: 12px 12px;
    }

    .back-to-top {
        bottom: 130px;
        right: 40px;
    }

    .back-to-top img {
        width: 30px;
    }

    .list04 #content-3::before {
        top: 330px;
    }

    .list04 #content-2::before {
        top: 220px;
    }

    .head06::before {
        height: 42px;
    }

    .home-3 .list-1 .item span {
        font-size: 26px;
    }

    .home-3 .list-1 .item a {
        padding: 12px 0 0;
    }

    .m2 .list .head01::before,
    .m2 .list .head02::before {
        height: 30px;
    }

    .m2 .list .head01 h1,
    .m2 .list .head02 h1 {
        line-height: 24px;
        width: 55%;
    }

    footer .news .head {
        font-size: 16px;
    }

    footer .news .head::before,
    footer .news .head::after {
        width: 40%;
    }
}

@media (max-width:450px) {
    .logo a {
        line-height: 25px
    }

    .head-sear {
        top: 0px;
        width: 50px;
    }

    .container {
        padding: 0 10px;
    }

    .m1,
    .m2 {
        padding: 5px 0;
    }

    .home-2 .item {
        width: 100%;
    }

    .home-2 .item a h2,
    .home-2 .item a div,
    .home-2 .item a img,
    .carousel-item a h2,
    .carousel-item a div {
        margin-bottom: 4px;
    }

    .home-2 .item button,
    .carousel-item .read {
        padding: 4px 15px;
    }

    .home-1 .list {
        width: calc(50% - 5px);
    }

    .m1 .flex {
        gap: 5px
    }

    .home-1 .list:nth-child(3) a,
    .home-1 .list:nth-child(3) .item:last-child a {
        padding: 12px 6px 0;
    }

    .home-1 .list:nth-child(3) {
        padding-bottom: 12px;
    }

    .head03::before {
        width: 70px;
        height: 70px;
    }

    .home-1 .home-head,
    .home-3 .list-2 .home-head {
        padding: 8px 12px 8px 12px;
    }

    .home-1 .list:nth-child(4) {
        flex-wrap: wrap;
        margin-bottom: 5px;
    }

    .list04 .dt-header {
        width: 100%;
        padding-right: 0
    }

    .list04 .dt-header p {
        writing-mode: inherit;
        width: auto;
        padding: 6px 12px;
    }

    .list04 #content-1::before,
    .list04 #content-2::before,
    .list04 #content-3::before {
        transform: rotate(0deg);
    }

    .list04 .item {
        margin-top: 4px;
        border: 2px solid #CB8E57;
    }

    .list04 #content-1::before {
        left: 15%;
        top: 4px;
    }

    .list04 #content-2::before {
        left: 53%;
        top: 4px;
    }

    .list04 #content-3::before {
        left: 83%;
        top: 4px;
    }

    .carousel-item a,
    .home-1 .list .item a {
        padding: 10px;
    }

    .home-3 .list-1 .item a {
        padding: 6px 0 0;
    }

    .home-3 .list-1 .item img {
        margin-bottom: 4px;
    }

    .home-1 .list:nth-child(3) .item a {
        padding: 12px 6px 0;
    }

    .home-3 .list-1 .item:last-child a {
        padding-bottom: 0px;
    }

    .home-3 .list-1 .item,
    .home-3 .list-2,
    .home-3 .list-3 {
        width: calc(50% - 6px);
    }

    .home-3 .list-2 .item a {
        padding: 12px 6px;
    }

    .line {
        padding: 4px 0;
        margin: 20px 0;
    }

    .m2 .list {
        width: calc(50% - 6px);
        flex: 0 0 calc(50% - 6px);
    }

    .m2 .flex {
        gap: 12px;
    }

    .m2 .list .head01::before,
    .m2 .list .head02::before {
        width: 90%;
    }

    .m2 .list .head01 h1,
    .m2 .list .head02 h1 {
        width: 80%;
        font-size: 12px;
    }

    .home-3 .list-2 .item img {
        margin-bottom: 0;
    }

    .m2 .list a h2 {
        font-size: 14px;
        line-height: 18px;
    }

    .m2 .list a {
        padding: 0px 6px;
    }

    .m2 .list a div {
        gap: 12px;
    }

    .m2 .list {
        padding-bottom: 6px;
    }

    footer .news .head::before,
    footer .news .head::after {
        width: 35%;
        height: 3px;
    }

    footer .news p {
        font-size: 12px;
        line-height: 18px;
        margin-top: 0px;
    }

    footer .pt a,
    footer .pb {
        font-size: 14px;
    }

    footer .pt {
        margin: 10px auto 4px
    }

    .cate-list .home-2 {
        padding: 0;
    }

    .cate-list .home-2 .item {
        width: 100%;
        flex: 0 0 100%
    }

    .sear-main {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .search {
        height: 34px;
    }

    .search input {
        height: 24px;
    }

    .search_btn {
        top: 7px;
    }

    .sear-list {
        margin: 10px auto 0;
    }

    .sear-list a {
        padding: 5px 0;
    }

    .sear-list .item {
        padding: 10px;
    }

    .sear-list .item h2 {
        margin-bottom: 4px;
    }

    .dt {
        padding-top: 10px;
    }

    .dt-content h1,
    .dt-content h2,
    .dt-content h3,
    .dt-content h4,
    .dt-content ul li, .dt-content ol li,
    .dt-content p, .dt-content span {
        font-size: 16px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    .dt-content .dt-title {
        font-size: 20px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    .dt-content img{
        margin-bottom: 10px !important;
    }

    .dt-content .time span {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
    .share a svg {
        width: 16px;
        height: 16px;
    }
    .dt-right .list .item a{
        padding: 6px 6px 0;
    }
    .dt-right .list{
        margin-bottom: 0;
    }
    .dt-right .list .item:last-child{
        padding-bottom: 0;
    }
.dt-main .lick a{
    padding: 10px 20px;
}
.dt-main .lick span, .share span {
    padding-right: 20px;
}
.share a {
    padding: 5px 10px;
}
}