:root {
    /* Global colors */
    --color-primary: #1890ff;
    --color-text: #333;
    --color-bg: #fff;
    --color-hover-bg: #f5f5f5;
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-dropdown-shadow: rgba(0, 0, 0, 0.1);

    /* Global fonts */
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Global spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;

    /* Max width */
    --max-width: 1380px;
    --left-column-width: 985px;
    --right-column-width: 365px;

    --mt25: 25px;
}

* {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-sm);
}

html,
body {
    background-color: #F7F8FA;
}

li {
    list-style: none;
}

img {
      width: 100% !important;
      height: 100% !important;
    object-fit: cover;
}

a {
    text-decoration: none;
}

/* Common max-width class */
.container-public {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.left-public {
    width: var(--left-column-width);
    box-sizing: border-box;
}

.px15 {
    padding: 15px;
}

.p15 {
    padding: 15px;
}

.mt25 {
    margin-top: var(--mt25);
}

.mb25 {
    margin-bottom: var(--mt25);
}

.right-public {
    width: var(--right-column-width);
    box-sizing: border-box;
}



/* Radius public class */
.radius-public {
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;

}

/* Header template base styles */
.header-template {
    padding: 0 24px;
    height: 88px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.header-template .container-public {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo area */
.header-template .logo {
    flex: 0 0 auto;
}

.header-template .logo img {
    height: 80px;
    display: block;
}

/* Navigation overall */
.header-template .nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Navigation list */
.header-template .nav-list {
    flex: 1;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 50px;
}

/* Navigation item */
.header-template .nav-item {
    position: relative;
    margin-left: 32px;
}

/* Navigation link */
.header-template .nav-link {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    line-height: 64px;
    display: block;
    transition: color 0.2s;
}

.header-template .nav-link:hover {
    color: #1890ff;
}

.header-template .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background-color: #000;
    transition: width 0.2s;
}

.header-template .nav-item:hover .nav-link::after {
    width: 100%;
}

/* Dropdown menu container */
.header-template .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 120px;
    list-style: none;
    margin: 0;
    display: none;
    z-index: 1000;
}

/* Dropdown menu item */
.header-template .dropdown-item {
    margin: 0;
}

/* Dropdown menu link */
.header-template .dropdown-link {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

.header-template .dropdown-link:hover {
    background-color: #f5f5f5;
    color: #1890ff;
}

/* Show dropdown menu */
.header-template .nav-item:hover .dropdown,
.header-template .nav-item.active .dropdown {
    display: block;
}

/* 汉堡菜单图标 */
.menu-icon-template {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    transition: all 0.5s ease;
}

/* 三条横线 */
.menu-icon-template .bar {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-icon-template.active {
    display: inline-flex;
    position: fixed;
    left: 20px;
    top: 20px;
    padding: 10px;
    z-index: 1000;
}

.menu-icon-template.active .bar {
    background: #fff;
}

/* active 状态：中间横线隐藏，上下两条变成 X */
.menu-icon-template.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-icon-template.active .bar:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.menu-icon-template.active .bar:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* 路由模板 */
.router_template {
    line-height: 22px;
    padding: 4px 0;
    color: #999;
    font-size: 14px;
}

.router_template:before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 19px;
    position: relative;
    top: 4px;
    background: url(/newdia/images/local.png) no-repeat center center;
}

.router_template a {
    margin-right: 6px;
    font-weight: 400;
    color: #999;
    font-size: 14px;
}

.router_template a:first-child {
    margin-left: 6px;
}

.router_template a:hover {
    color: #333;
    text-decoration: underline;
}

.router_template span {
    display: inline;
}


/* 文章模板 */
.article-template {
    line-height: 30px;
    color: #3d464d;
    font-size: 16px;
    margin-top: 20px;
}

.article-template h2,
.article-template h3,
.article-template h4,
.article-template h5,
.article-template h6 {
	font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}

.article-template p {
    line-height: 30px;
    margin-top: 15px;
	font-size: 16px;
    text-wrap: inherit !important;
}

.article-template p:first-child {
    text-indent: 0;
}

.article-template span {
    text-wrap: inherit !important;
    display: inline;
    word-break: break-all;

}

.article-template img {
    display: block;
    margin: 15px auto;
    max-width: 70% !important;
}

.article-template p strong a {
    color: #444;
	font-size: 16px;
    font-weight: bold;
}

.article-template p strong a:hover {
    color: #2B9DFD;
}

.article-template embed {
    width: 100% !important;
}

.article-template video {
    width: 100% !important;
}

.article-template pre,
.article-template code {
    color: #eee;
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-all;
    padding: 5px 10px;
    border-radius: 3px;
    background-color: #333;
}

.article-template ul,
.article-template ol {
    margin-top: 16px;
    list-style-type: none;
}

.article-template ul li,
.article-template ol li {
    margin-left: 25px;
    word-break: break-all;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 10px;
}

.article-template table {
    width: 100%;
    text-align: center;
    margin-top: 16px;
}

.article-template table td,
.article-template table th {
    border: 1px solid #ddd;
    padding: 5px;
}

.article-template table td sup,
.article-template table th sup {
    color: #999;
}

.article-template table thead td,
.article-template table thead th {
    color: #222;
    background-color: #eee;
}

.article-template table tbody tr:nth-child(even) {
    background-color: #eee;
}

.article-template table tbody tr td {
    color: #333;
    word-break: break-all;
}

.tags-public {
    display: inline-flex;
    margin-top: 20px;
}

.tags-public h3 {
    font-size: 14px;
    font-weight: 400;
    min-width: 70px;
    color: rgb(51, 51, 51);
    margin-right: 18px;
}

.tags-public .tags-box {
    flex-wrap: wrap;
    display: flex;
}

.tags-public .tags-box a {
    font-size: 14px;
    font-weight: 400;
    color: #3da70d;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(238, 238, 238);
    border-image: initial;
    border-radius: 5px;
    margin: 0px 11px 10px 0px;
    padding: 4px 9px 4px 10px;
}

.all-look dt {
    font-size: 18px;
    font-weight: 600;
    color: #FF1526;
    margin: 20px 0;
}

.all-look dd a {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    color: #55B246;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 15px 0;
}

.all-look dd a:hover {
    color: #FF1526;
}

/* 下载公共样式 */
.download-public {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 15px;
    margin-top: 25px;
    background: #f8f8f8;
}

.download-public .left {
    display: flex;
    flex-direction: row;
	align-items: center;
    gap: 15px;
    flex: auto;
}

.download-public .left .download-img {
    display: block;
    width: 60px;
    height: 60px;
    flex: none;
}

.download-public .left .content a {
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.download-public .left .content p {
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-top: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.download-public .download-btn {
    min-width: 130px;
    width: 130px;
    height: 46px;
    line-height: 46px;
    background-color: #fff;
	color: red;
    border: 1px solid red;
    font-size: 22px;
    text-align: center;
    border-radius: 5px;
}


.title-public {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 17px;
}

.title-public a {
    font-size: 14px;
    font-weight: 400;
    color: #adadad;
}

.title-public a:hover {
    color: #000;
}

/*  */
.list-circle-template {
    margin-top: var(--mt25);
    box-sizing: border-box;
}

.list-circle-template.none-circle li a:before {
    display: none;
}

.list-circle-template li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
    margin-bottom: 18px;
    box-sizing: border-box;
    overflow: hidden;
    column-gap: 15px;
}

.list-circle-template.col2 {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list-circle-template.col2 li {
    margin-bottom: 0;
}

.list-circle-template li span.tips {
    display: inline-block;
    border-radius: 9999px;
    color: #fff;
    padding: 0 5px;
    height: 20px;
    font-size: 10px;
    line-height: 20px;
    background-color: #2993FF;
}

.list-circle-template li a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
	font-size: 16px;
    flex: 1;
}

.list-circle-template.row-li li a {
    width: auto;
}

.list-circle-template li a:before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 0%;
    background-color: #A3A3A3;
    position: relative;
    top: -2px;
    margin-right: 10px;
}

.list-circle-template li a:hover {
    opacity: 0.6;
}

.list-circle-template li>span {
    color: #999;
    font-size: 14px;
}

/*  */
.faq-template {
    margin-top: var(--mt25);
;
}

.faq-template li {
    list-style: none;
    padding: 15px 0;
}

.faq-template li:not(:last-child) {
    border-bottom: 1px solid #EEEEEE;
}

.faq-template li a.title {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    font-weight: bold;
}

.faq-template li a.text {
    font-size: 14px;
    font-weight: 400;
    color: #adadad;
    margin: 10px 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 30px;
}

.faq-template li p {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.faq-template li p span {
    color: #999;
    font-size: 14px;
    margin-left: 10px;
}

.faq-template li p .eye {
    display: flex;
    align-items: center;
}

.faq-template li p .eye i {
    display: inline-block;
    width: 13px;
    height: 13px;
    vertical-align: text-bottom;
    margin-right: 3px;
    background: url(/newdia/images/eye.svg) no-repeat center center;
    background-size: contain;
}

/*  */
.img-text-template ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 24px;
}

.img-text-template ul li {
    list-style: none;
    /* 使用grid布局，一行4列，gap24px， */

}

.img-text-template ul li .img-box {
    display: block;
    width: 100%;
    height: 150px;
}

.img-text-template ul li .text {
    display: block;
    padding: 10px 0 18px;
	font-size: 16px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 广告模板 */
.adv-template a {
    display: block;
}

/* switch模板 */
.switch-template {
    display: flex;
    align-items: center;
    gap: 15px;
}

.switch-template span {
    display: block;
    height: 30px;
    line-height: 30px;
	font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #333333;
    border-bottom: 3px solid transparent;
    margin-bottom: 15px;
}

.switch-template span:hover,
.switch-template span.active {
    cursor: pointer;
    color: #FC3930;
    border-bottom-color: #FC3930;
}

.switch-template.grid-switch {
    justify-content: space-between;
}

.switch-list-template ul {
    display: none;
}

.switch-list-template ul.active {
    display: block;
}

/*  */

.lr-img-text-template li {
    list-style: none;
    display: flex;
    gap: 10px;
}

.lr-img-text-template li:not(:last-child) {
    margin-bottom: 15px;
}

.lr-img-text-template li .img-box {
    display: block;
    width: 130px;
    height: 80px;
    flex: none;
}

.lr-img-text-template li .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lr-img-text-template li .content a {
    display: block;
	font-size: 16px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.lr-img-text-template li .content a:hover {
    opacity: 0.6;
}

.lr-img-text-template li .content .info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999999;
}

.footer-template {
    background-color: #292929;
    padding: 20px 0;
}

.footer-template .container-public {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-template .left-item ul {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-template .left-item ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.footer-template .left-item ul li a:hover {
    opacity: 0.6;
}

.footer-template .left-item p,
.footer-template .left-item p a {
    color: #7b7b7b;
    font-size: 14px;
}

.footer-template .right-item .img-box,
.footer-template .right-item .img-box img {
    width: 135px;
    height: 135px;
    border-radius: 12px;
}

.footer-template .right-item p {
    color: #7b7b7b;
    font-size: 14px;
    margin-top: 15px;
}

.new-list-template li {
    padding: 15px 0;
}

.new-list-template li+li {
    border-top: 1px solid #ddd;
}

.new-list-template li a {
    display: block;
    overflow: hidden;
}

.new-list-template li a:hover .title {
    color: #2993FF;
}

.new-list-template li a .img-item {
    width: 160px;
    height: 86px;
    float: left;
    margin-right: 20px;
}

.new-list-template li a .img-item img {
    transform: scale(1);
}

.new-list-template li a .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-right: 100px;
    color: #333;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.new-list-template li a .title .time {
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.new-list-template li a .content {
    line-height: 24px;
	font-size: 15px;
    color: #444;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.laypage-template {
    margin-top: 15px;
    text-align: center;
    padding: 10px 0 5px;
}

.laypage-template a,
.laypage-template span {
    display: inline-block;
    font-size: 14px;
    height: 34px;
    min-width: 24px;
    padding: 0 5px;
    margin-right: 10px;
    text-align: center;
    line-height: 34px;
    border-radius: 6px;
    border: thin solid #E5E5E5;
    color: #666;
    font-weight: 400;
}

.laypage-template a.currentPage,
.laypage-template span.currentPage,
.laypage-template a:hover,
.laypage-template span:hover {
    color: #fff;
    background-color: #2993ff;
}

/*  */

.article-list-template {
    margin-top: 21px;
}

.article-list-template.hover li.active {
    padding: 14px;
    background: #F8F8F8;
}

.article-list-template.hover li.active .hide-item {
    display: block;
}

.article-list-template li {
    padding: 11px 0;
    border-radius: 8px 8px 8px 8px;
}

.article-list-template li a {
    display: block;
    height: 20px;
	font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 95%;
    color: #333;
}

.article-list-template li a em {
    display: inline-block;
    width: 19px;
    height: 19px;
    line-height: 19px;
    border-radius: 4px;
    font-size: 13px;
    margin-right: 6px;
    color: #fff;
    text-align: center;
    background-color: #ddd;
}

.article-list-template li .hide-item {
    padding-left: 29px;
    margin-top: 8px;
    display: none;
}

.article-list-template li .hide-item span {
    display: inline-block;
    color: #999;
	font-size: 14px;
    margin-right: 25px;
}


.article-list-template li:nth-child(1) a em {
    background-color: #D71425;
}

.article-list-template li:nth-child(2) a em {
    background-color: #E56800;
}

.article-list-template li:nth-child(3) a em {
    background-color: #FEC537;
}

/* wz-html */
.main-box {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    gap: 30px;
}

.wz-html .main-box .left-public {
    padding: 22px 17px 30px 14px;
}


/* 文章标题 */
.h1-title {
    font-size: 32px;
    color: #333333;
    line-height: 50px;
    font-weight: bold;
    margin: 10px 0;
}

/* 作者信息 */
.auther-box {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #EEEEEE;
}

.auther-box a {
    display: block;
    width: 64px;
    height: 64px;
    margin-right: 15px;
    border-radius: 50%;
    overflow: hidden;
}

.auther-box .content {
    flex: 1;
}

.auther-box .content>div {
    display: flex;
    justify-content: space-between;
}

.auther-box .content .top p {
    font-size: 16px;
    font-weight: 400;
    font-weight: bold;
    color: #000;
}

.auther-box .content .top .tips {
    display: flex;
    margin: 0 0 13px 30px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    width: 55px;
    height: 28px;
    background: #FEF1EF;
    border-radius: 5px;
    color: #FC3930;
}

.auther-box .content .bottom .auther-time {
    font-size: 14px;
    color: #999;
    font-family: Microsoft YaHei;
    font-weight: 400;
}

.auther-box .content .bottom .person-num {
    font-size: 14px;
    color: #999;
    font-family: Microsoft YaHei;
    font-weight: 400;
}

.source {
    font-size: 14px;
    color: #333;
    text-align: right;
    margin-top: 15px;
}

.sm_info {
    padding: 10px 15px;
    color: #666;
    background: #FDF4F4;
    border-radius: 5px;
    margin-top: 25px;
    font-size: 14px;
}

.sm_info img {
    width: auto;
    height: 40px;
}

.sm_info .sm_info_text {
    margin-top: 15px;
}

.page-content-text {
    margin: 20px 0 21px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
}

.page-content-text a {
    background: #F7F8FA;
    border-radius: 5px;
    padding: 15px 21px 7px 14px;
    color: #333333;
    font-size: 14px;
}

.page-content-text a:hover {
    opacity: 0.6;
}

/*  */
.column-html .theme-box {
    display: flex;
}

.column-html .theme-box .big-img {
    display: block;
    position: relative;
    width: 300px;
    height: 170px;
}

.column-html .theme-box .big-img .text {
    position: absolute;
    z-index: 9;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 5px 10px;
    color: #fff;
    font-size: 12px;
    background-color: rgba(0, 0, 0, .3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.column-html .theme-box .right-content {
    flex: 1;
    margin-left: 15px;
}

.column-html .theme-box .right-content h1 a {
    display: block;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.column-html .theme-box .right-content p {
    color: #666;
    margin-top: 5px;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.column-html .theme-box .list-circle-template {
    margin-top: 10px;
}



/*  */
.column-html .article-list-template {
    margin-top: 11px;
    padding-bottom: 10px;
}

.column-html .article-list-template.hot-article li.active {
    padding: 22px 14px 22px 115px;
}

.column-html .article-list-template.hot-article li.active .img-item {
    display: block;
}

.column-html .article-list-template.hot-article li .hide-item {
    padding-left: 0;
}

.column-html .article-list-template li {
    position: relative;
}

.column-html .article-list-template li .img-item {
    display: none;
    position: absolute;
    left: 5px;
    top: 11px;
    width: 101px;
    height: 66px;
    border-radius: 8px;
    overflow: hidden;
}

.column-html .article-list-template.hot-article li a em {
    width: 16px;
    height: 16px;
    position: relative;
    top: 2px;
    background: url(/newdia/images/h_icon.png) no-repeat center center;
}

.column-html .article-list-template li .hide_item {
    padding-left: 0;
    overflow: hidden;
}

.column-html .article-list-template li .hide_item span {
    margin-right: 0;
}

.column-html .article-list-template li .hide_item .type {
    float: left;
}

.column-html .article-list-template li .hide_item .time {
    float: right;
}

.insert_template6 .it_content .it_content_info .info_text {
    color: #333!important;
}

@media screen and (max-width: 768px) {
    .header-template {
        padding: 0 12px;
        height: 58px;
    }

    .header-template .container-public {
        padding: 0;
    }

    .header-template .logo img {
        height: 50px;
    }

    .menu-icon-template {
        display: flex;
    }

    .h1-title {
        font-size: 20px;
        line-height: 36px;
    }


    .left-public,
    .right-public {
        width: 100%;
    }

    .img-text-template ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav {
        /* display: none; */
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 100%;
        z-index: 100;
        background-color: rgba(0, 0, 0, 0.5);
        box-shadow: 0 2px 4px #eee;
        transition: right 0.3s ease-in-out;
    }

    .nav.show {
        right: 0;
    }

    .header-template .nav {
        overflow: scroll;
    }

    .header-template .nav-list {
        flex-direction: column;
        margin: 0;
        padding-top: 30px;
        width: 100%;
        flex: none;
        background-color: #3d464d;
    }

    .header-template .nav-item {
        margin-left: 0;
        width: 100%;

    }

    .header-template .nav-item .nav-link {
        color: #fff;
    }

    .header-template .dropdown-link {
        color: #fff;
    }

    .header-template .dropdown {
        position: relative;
        top: 0;
        left: 0;
        background-color: #252d32;
        transform: translateX(0);

    }

    .header-template .dropdown-link {
        padding: 20px 10px;
    }

    .header-template .dropdown-item:not(:last-child) {
        border-bottom: 1px solid #3d464d;
    }

    .header-template .dropdown-link:hover {
        background-color: transparent;
    }

    .footer-template .container-public {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        flex-flow: column-reverse;
    }

    .footer-template .left-item ul {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        margin-bottom: 30px;
    }

    .main-box {
        flex-direction: column;
        padding: var(--spacing-md) 0;
    }

    .download-public .download-btn {
        min-width: 80px;
        width: auto;
        line-height: 32px;
        height: 32px;
        font-size: 16px;
    }

    .column-html .theme-box {
        flex-direction: column;
        gap: 25px;
    }

    .column-html .theme-box .big-img {
        width: 100%;
        height: 170px;
    }

    .column-html .theme-box .right-content {
        margin-left: 0;
    }

    .column-html .list-circle-template.col2 {
        display: flex;
        flex-direction: column;
    }

    .column-html .new-list-template li a .title {
        padding-right: 0;
    }

    .column-html .new-list-template li a .title .time {
        display: none;
    }
}