/*
 * @Author: 大老王
 * @E-mail: 28691039@qq.com
 * @Update: 2024-12-11 23:50
 * @Statement: 尊重原创作者,请保留版权信息！
 *
 *  ┌─────────────────────────────────────────────────────────────┐
 *  │┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐│
 *  ││Esc│!1 │@2 │#3 │$4 │%5 │^6 │&7 │*8 │(9 │)0 │_- │+= │|\ │`~ ││
 *  │├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤│
 *  ││ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │{[ │}] │ BS  ││
 *  │├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤│
 *  ││ Ctrl │ A │ S │ D │ F │ G │ H │ J │ K │ L │: ;│" '│ Enter  ││
 *  │├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┤│
 *  ││ Shift  │ Z │ X │ C │ V │ B │ N │ M │< ,│> .│? /│Shift │Fn ││
 *  │└─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴──┬┴───┴┬──┴┬─────┴───┘│
 *  │      │Fn │ Alt │         Space         │ Alt │Win│  ShanWu  │
 *  │      └───┴─────┴───────────────────────┴─────┴───┘          │
 *  └─────────────────────────────────────────────────────────────┘
 *           键盘在手                          模版我有
 */
:root {
    --main-color: #333333;
    --hover-color: #EC6517;
    --border-color: #efefef;
    --text-color: #999999;
    --des-color: #666666;
    --white-color: #ffffff;
    --weight-color: #f9f9f9;
    --red-color: #ca1235;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--main-color);
    cursor: pointer;
}

a:hover,
a:focus {
    color: var(--hover-color);
    outline: none;
}

ul,
ol {
    list-style: none;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--main-color);
    background-color: var(--white-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 2em;
    font-weight: normal;
}

h2 {
    font-size: 1.5em;
    font-weight: normal;
}

h3 {
    font-size: 1.17em;
    font-weight: normal;
}

h4,
h5,
h6 {
    font-weight: normal;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

th,
td {
    border: 1px solid var(--border-color);
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

th {
    background-color: var(--hover-color);
    color: var(--white-color);
    font-weight: normal;
}

label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: var(--main-color);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea {
    font-family: inherit;
    font-size: 14px;
    line-height: 19px;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
    background-color: var(--white-color);
    color: var(--main-color);
    resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--hover-color);
    outline: none;
}

input[type="submit"],
button {
    font-family: inherit;
    background-color: var(--hover-color);
    color: var(--white-color);
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover,
button:hover,
input[type="submit"]:focus,
button:focus {
    outline: none;
}

input:disabled,
button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
    font-size: 14px;
    line-height: 19px;
    color: var(--text-color);
}

/* 针对特定类型的输入框 */
input[type="text"]::placeholder {
    color: var(--text-color);
}

blockquote {
    margin: 15px 0;
    padding-left: 1em;
    border-left: 4px solid var(--hover-color);
    color: var(--weight-color);
    font-style: italic;
}

code,
pre {
    font-family: monospace, monospace;
    background-color: #f5f5f5;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 90%;
}

hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2em 0;
}

/* reset */
.imgitem {
    position: relative;
    height: 0;
    padding-bottom: 75%;
}

.imgitem img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn {
    display: inline-block;
    background: var(--hover-color);
    border: 1px solid var(--hover-color);
    color: var(--white-color);
    padding: 5px 10px;
    text-transform: uppercase;
    text-align: center;
    overflow: hidden;
    font-size: 14px;
}

.btn:hover {
    background: var(--hover-color);
    opacity: 0.9;
    color: var(--white-color);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06);
}

.text-title {
    font-size: 18px;
    line-height: 24px;
    color: var(--main-color);
    font-weight: bold;
}

.text-des {
    font-size: 14px;
    line-height: 24px;
    color: var(--des-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hovermove {
    transition: all 0.3s ease;
}

.hovermove:hover {
    transform: translateY(-10px);
}

/* mobile menu */
.m-menu-open,
.m-menu-close {
    display: none;
}

.nav-menu-child {
    display: none;
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
}

.nav-menu-child>li:nth-child(n+2) {
    margin-top: 15px;
}

.nav-menu-child>li {
    position: relative;
}

.nav-menu-child li a {
    display: block;
    font-size: 16px;
    line-height: 21px;
}

.nav-menu-full {
    display: none;
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
}

.nav-menu-dl {
    font-size: 16px;
    line-height: 21px;
}

.nav-menu-dl dt {
    font-weight: bold;

}

.nav-menu-dl dd {
    margin-top: 15px;
    position: relative;
    padding-left: 15px;
}

.nav-menu-dl dd::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 6px;
    height: 6px;
    background: var(--hover-color);
    line-height: 6px;
    border-radius: 50%;
}

/* mobile menu */
/* tool bar */
.tool-bar {
    position: fixed;
}

.tool-item-cap {
    background: rgba(0, 0, 0, .45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    color: var(--white-color);
}

.tool-item-cap .fa {
    line-height: 1;
}

.tool-item-cap.active {
    background: var(--hover-color);
    color: var(--white-color);
}

.tool-bar .back-top {
    cursor: pointer;
}

.tool-qrcode {
    position: absolute;
    background: var(--white-color);
    text-align: center;
}

.tool-tel {
    position: absolute;
    left: 0;
    background: var(--hover-color);
    color: var(--white-color);
    text-align: center;
    white-space: nowrap;
}

.tool-tel a {
    display: block;
    color: var(--white-color);
}

.tool-item-sub {
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s, visibility .2s
}

.tool-item:hover .tool-item-sub {
    visibility: visible;
    opacity: 1
}

/* end tool bar */
/* swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.bgcolor {
    background: var(--weight-color);
}

.box {
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, .05);
}

.grid {
    display: grid;
    gap: 15px;
}

.text-center {
    text-align: center;
}

.p15 {
    padding: 15px 0;
}

.ps15 {
    padding: 15px;
}

.flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flex10 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flex30 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.imgtext,
.textimg {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.imgtext-img,
.textimg-img {
    flex-shrink: 0;
}

.imgtext-text,
.textimg-text {
    flex: 1;
}

.m30 {
    margin: 30px 0;
}

.p30 {
    padding: 30px 0;
}

.bigimg {
    overflow: hidden;
}

.bigimg img {
    transition: transform 0.3s ease;
}

.bigimg:hover img {
    transform: scale(1.1);
}

/* swiper */
/* header */
#header {
    position: relative;
    z-index: 999;
}

.header {
    position: relative;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.head {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    display: inline-block;
    max-height: 42px;
}

.header-contact .text {
    font-size: 12px;
    border-right: 1px solid var(--text-color);
    padding-right: 15px;
    text-align: center;
}

.header-contact .text p {
    line-height: 17px;
}

.header-contact .text .text2 {
    letter-spacing: 2px;
}

.header-contact .text .text2 span {
    color: var(--hover-color);
}

.header-contact .phone a {
    font-size: 32px;
    line-height: 45px;
    font-weight: 600;
    color: var(--hover-color);

}

/* header */
/* btnlist */
.btnlist {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 15px;
}

.btnlist>a {
    display: inline-block;
    border: 1px solid var(--hover-color);
    color: var(--hover-color);
    font-size: 14px;
    line-height: 21px;
    padding: 7px 14px;
}

.btnlist>a:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.btnlist>a:nth-child(1) {
    background: var(--hover-color);
    color: var(--white-color);
}

.btnlist>a:nth-child(1):hover {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--white-color);
}

/* btnlist */
/* slider */
/* .slider {
    background: url(../img/m-banner.webp) no-repeat;
    background-position: center;
    background-size: cover;
    height: 700px;
} */

/* slider */
/* layout */
/* box-title */
.box-title h3 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: var(--hover-color);
    text-transform: uppercase;
}

.box-title h2 {
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    color: var(--main-color);
}

.box-title h2 span {
    color: var(--hover-color);
}

/* box-title */
/* layout */
.hide {
    display: none;
}

/* section-1 */
.section-1-content {
    position: relative;
}

/* section-title */
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.section-title-heading {
    display: flex;
    flex-direction: column;
}

.section-title-heading-entitle {
    position: relative;
    font-size: 50px;
    line-height: 66px;
}

.section-title-heading-entitle::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 45px;
    height: 3px;
    background: var(--main-color);
}

.section-title-heading-entitle::after {
    content: "";
    position: absolute;
    left: 50px;
    bottom: 0;
    display: block;
    width: 12px;
    height: 3px;
    background: var(--hover-color);
}

.section-title-heading-entitle span {
    color: var(--hover-color);
}

.section-title-heading-cntitle {
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    margin-top: 8px;
}

/* section-title */
.product-tabs .tab {
    display: inline-block;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 20px;
    border: 1px solid var(--hover-color);
    color: var(--hover-color);
    transition: background .25s, color .2s;
    font-size: 14px;
}

.product-tabs .tab.active {
    background: var(--hover-color);
    color: var(--white-color);
}

.product-list {
    display: none;
}

.product-list.show {
    display: block;
}

.product-list-ul {
    display: grid;
    gap: 15px;
}

.product-list-ul>li {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--weight-color);
    border-radius: 20px;
}

.product-list-ul>li>.icon {
    position: absolute;
    right: 15px;
    top: -5px;
}

.product-list-ul>li>.img {
    flex-shrink: 0;
    width: 65%;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.product-list-ul>li>.img img {
    transition: transform 0.3s ease;
}

.product-list-ul>li>.img:hover img {
    transform: scale(1.1);
}

.product-list-ul>li>.text {
    flex: 1;
}

.product-list-ul>li>.text>h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-list-ul>li>.text>p {
    font-size: 16px;
    line-height: 21px;
    color: #666;
}

.product-list-ul>li>.text>.more {
    font-size: 14px;
    display: inline-block;
    border: 1px solid var(--hover-color);
    color: var(--hover-color);
    padding: 10px 17px;
    border-radius: 20px;
    margin-top: 35px;
    transition: background-color 1s ease;
}

.product-list-ul>li>.text>.more:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.main-products-ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.main-products-ul>li {
    background: var(--weight-color);
}

/* section-1 */
/* section-2 */
.section-2 {
    background: url(../img/section-2-bg.webp) no-repeat;
    background-position: center;
    background-size: cover;
}

.section-2 .section-title-heading-entitle {
    color: var(--white-color);
}

.section-2 .section-title-heading-entitle::before {
    background: var(--white-color);
}

.section-2 .section-title-heading-cntitle {
    color: var(--white-color);
}

.section-2 .section-title a {
    display: inline-block;
    color: var(--hover-color);
    border: 1px solid var(--hover-color);
    border-radius: 30px;
    padding: 15px;
    font-size: 16px;
    line-height: 21px;
}

.section-2-content-heading {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    color: var(--white-color);
    padding: 50px 0;
}

.section-2-content-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 24px;
    background: url(../img/yh-left.webp) no-repeat;
}

.section-2-content-heading::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 24px;
    background: url(../img/yh-right.webp) no-repeat;
}

.section-2-content-heading span {
    color: var(--hover-color);
}

.section-2-ul>li>a {
    display: block;
    position: relative;
    border-radius: 15px;
}

.section-2-ul>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0) 100%);
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.6s;
}

.section-2-ul>li>a>.text {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    bottom: 0;
}

.section-2-ul>li>a>.text>.text-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-2-ul>li>a>.text>.text-content>h3 {
    width: 70%;
    font-size: 18px;
    line-height: 24px;
    color: var(--white-color);
}

/* section-2 */
/* section-3 */
.section-3 {
    position: relative;
}

.section-3-content {
    position: relative;
}

.news-tabs .tab {
    display: inline-block;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 20px;
    border: 1px solid var(--hover-color);
    color: var(--hover-color);
    transition: background .25s, color .2s;
    font-size: 14px;
}

.news-tabs .tab.active {
    background: var(--hover-color);
    color: var(--white-color);
}

.news-list {
    display: none;
}

.news-list.show {
    display: block;
}

.news-list-ul li a {
    display: block;
    background: var(--weight-color);
    border-radius: 20px;
}

.news-list-ul li a:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.news-list-ul .img img {
    border-radius: 20px 20px 0 0;
}

.news-list-ul .text-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-list-ul li h3 {
    width: 70%;
    font-size: 18px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* section-3 */
/* section-4 */
.section-4 {
    overflow: hidden;
}

.section-4-content {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white-color);
}

.section-4-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 100vw;
    height: 100%;
    background: var(--hover-color);
    z-index: -1;
}

.section-4-img img {
    max-width: none;
    height: auto;
    flex-shrink: 0;
    display: block;
}

.section-4-text {
    flex: 1;
}

.section-4-text-content p {
    font-size: 16px;
    line-height: 26px;
}

.section-4-text-about {
    position: relative;
}

.section-4-text-about-title {
    font-size: 100px;
    line-height: 132px;
    color: var(--weight-color);
    text-transform: uppercase;
}

.section-4-text-ul {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-4-text-ul li img {
    width: 60px;
}

/* section-4 */
/* section-5 */
.section-5-ul>li {
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.section-5-ul .img img {
    border-radius: 20px 20px 0 0;
}

.section-5-ul .text h3 a {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
}

.section-5-text-ul>li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    line-height: 21px;
}

.section-5-text-ul>li:nth-child(n+2) {
    border-top: 1px dashed var(--border-color);
    margin-top: 10px;
    padding-top: 10px;
}

.section-5-text-ul>li>img {
    width: 25px;
    height: 25px;
}

/* section-5 */
/* section-6 */
.section-6-ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.section-6-text span {
    color: var(--hover-color);
    font-weight: bold;
}

/* section-6 */
/* flink */
.flink {
    padding: 15px 0;
}

.flink .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.flink a {
    font-size: 14px;
}

/* flink */
/* footer */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background-color: var(--hover-color);
    border: 1px solid var(--white-color);
    color: var(--white-color);
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
}

.footer {
    background: var(--main-color);
    color: var(--white-color);
}

.footer-top {
    background: url(../img/footer-bg.webp) no-repeat;
    background-position: center;
}

.footer-item {
    flex-wrap: wrap;
    gap: 30px;
}

.footer-pro-title {
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    margin-bottom: 25px;
}

.footer-prolist-ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.footer-prolist-ul>li>a {
    font-size: 14px;
    line-height: 19px;
    color: var(--white-color);
}

.footer-prolist-ul>li>a:hover {
    color: var(--hover-color);
}

.footer-contact-title {
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 30px;
}

.footer-contact-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-contact-phone img {
    width: 30px;
    height: 30px;
}

.footer-contact-phone a {
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    color: var(--white-color);
}

.footer-contact-phone a:hover {
    color: var(--hover-color);
}

.footer-contact-ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-contact-ul>li {
    font-size: 14px;

}

.footer-contact-ul>li>a {
    color: var(--white-color);
}

.footer-contact-ul>li>a:hover {
    color: var(--hover-color);
}

.footer-ewm-ul>li {
    text-align: center;
}

.footer-ewm-ul>li>img {
    max-width: 130px;
    margin: 0 auto;
}

.footer-ewm-ul>li>h3 {
    font-size: 14px;
    line-height: 19px;
    margin-top: 20px;
}

.footer-bottom {
    background: #222222;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    padding: 15px 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--hover-color);
}

.footer-bottom-ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hide {
    display: none;
}

/* footer */
/* crumb */
#crumb {
    position: relative;
    overflow: hidden;
    margin-top: -30px;
}

/* 延伸背景色 */
#crumb::before {
    content: "";
    position: absolute;
    top: 0;
    right: 62%;
    width: 200vw;
    height: 100%;
    z-index: 0;
    background: var(--hover-color);
}

.crumb {
    position: relative;
    z-index: 1;
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 50%;
    color: var(--white-color);
    background: var(--hover-color);
    clip-path: polygon(0 0,
            calc(100% - 15px) 0,
            100% 60px,
            100% 100%,
            0 100%);
}

.crumb a {
    color: var(--white-color);
    display: inline-block;
    text-transform: capitalize;
}

.crumb a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.crumb span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--white-color);
}

/* crumb */
/* pagnavi */
.pagnavi {
    text-align: center;
    padding-bottom: 50px;
}

.pagnavi a {
    font-size: 14px;
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    margin: 5px 0;
    background: var(--border-color);
    color: var(--main-color);
    text-transform: capitalize;
    border-radius: 5px;
}

.pagnavi a:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.pagnavi .current {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px 0;
    border-radius: 5px;
    background: var(--hover-color);
    color: var(--white-color);
}

/* pagnavi */
/* page-banner */
.page-banner {
    position: relative;
    height: 400px;
}

.page-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.page-banner .container {
    position: relative;
    z-index: 1;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-banner-content {
    color: var(--white-color);
}

.page-banner-title {
    font-size: 36px;
    line-height: 47px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* page-banner */
/* index-products */
.main-title {
    display: flex;
    justify-content: space-between;
}

.main-title-title {
    position: relative;
    font-size: 40px;
    line-height: 52px;
    font-weight: bold;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.main-title-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 45px;
    height: 3px;
    background: var(--main-color);
}

.main-title-title::after {
    content: "";
    position: absolute;
    left: 50px;
    bottom: 0;
    display: block;
    width: 12px;
    height: 3px;
    background: var(--hover-color);
}

.main-title-title span {
    color: var(--hover-color);
}

.main-title-menu {
    background: var(--hover-color);
}

.main-title-menu-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.main-title-ul {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.main-title-ul>li>a {
    display: block;
    position: relative;
    padding-left: 10px;
    font-size: 16px;
    line-height: 21px;
    color: var(--white-color);
}

.main-title-ul>li>a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background: var(--white-color);
    border-radius: 50%;
}

.main-title-menu-content .arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.indexpro-ul {
    flex: 1;
}

.indexpro-ul .img {
    position: relative;
    overflow: hidden;
}

.indexpro-ul .img img {
    transition: transform 0.3s ease;
}

.indexpro-ul .img:hover img {
    transform: scale(1.1);
}

.indexpro-ul .img .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    background: var(--hover-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.indexpro-ul .text h3 {
    font-size: 18px;
    line-height: 24px;
}

/* indexpro-item2 */
.indexpro-item2-heading {
    background: url(../img/indexpro-item2-bg.webp) no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    justify-content: center;

}

.indexpro-item2-heading-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 15px 0;
    gap: 15px;
}

.indexpro-item2-heading-content h3 {
    font-size: 36px;
    line-height: 48px;
    font-weight: bold;
    color: var(--white-color);
    margin-bottom: 30px;
}

.indexpro-item2-heading-content .arrow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--hover-color);
}

.indexpro-item2-ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: column;
    gap: 20px;
}

.indexpro-item2-ul>li>a {
    display: block;
    position: relative;
    font-size: 18px;
    line-height: 24px;
    color: var(--white-color);
    padding-left: 10px;
}

.indexpro-item2-ul>li>a:hover {
    color: var(--hover-color);
}

.indexpro-item2-ul>li>a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--white-color);
}

/* indexpro-item2 */
/* indexpro-item3 */
.indexpro-item3 .main-title-ul {
    grid-template-columns: repeat(2, 1fr);
}

/* indexpro-item3 */
/* indexpro-item4 */
.indexpro-item4 {
    position: relative;
    overflow: hidden;
}

.indexpro-item4::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    background: url(../img/indexpro-item4-bg.webp) no-repeat;
    background-position: center center;
    width: 1920px;
    height: 350px;
}

.indexpro-item4 .main-title-title {
    color: var(--white-color);
}

.indexpro-item4 .main-title-title::before {
    background: var(--white-color);
}

.indexpro-item4 .main-title-menu {
    background: none;
}

/* indexpro-item4 */
/* indexpro-item5 */
.indexpro-item5 {
    margin-top: 0 !important;
}

/* indexpro-item5 */
/* list-products */

/* list-products */
/* single products */
.page {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.page-content {
    flex: 1;
}

.page-content-title {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.page-content-title h2 {
    position: relative;
    font-size: 40px;
    line-height: 52px;
    font-weight: bold;
    color: var(--main-color);
    padding-bottom: 15px;
}

.page-content-title h2 span {
    color: var(--hover-color);
}

.page-content-title h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 45px;
    height: 3px;
    background: var(--main-color);
}

.page-content-title h2::after {
    content: "";
    position: absolute;
    left: 50px;
    bottom: 0;
    display: block;
    width: 12px;
    height: 3px;
    background: var(--hover-color);
}

.page-content-title p {
    margin-top: 15px;
}

.page-content-title .more {
    align-self: self-start;
    display: inline-block;
    font-size: 14px;
    line-height: 21px;
    color: var(--hover-color);
    border: 1px solid var(--hover-color);
    border-radius: 30px;
    padding: 12px 20px;
}

.page-content-title .more:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

/* sidebar */
.sidebar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.side-contact {
    background: var(--weight-color);
}

.side-contact .text {
    padding: 20px;
}

.side-contact-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-left: 10px;
}

.side-contact-smalltitle {
    font-size: 20px;
    line-height: 26px;
    padding-left: 10px;
}

.side-contact .text .more {
    display: block;
    background: var(--hover-color);
    color: var(--white-color);
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 5px;
    height: 50px;
    line-height: 50px;
    margin-top: 30px;
}

.side-blog {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-title>h2 {
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    padding-left: 5px;
}

.side-title>h2::before {
    content: "";
    width: 3px;
    height: 18px;
    background: var(--hover-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.side-title>.more {
    font-size: 14px;
    line-height: 19px;
    color: var(--text-color);
}

.side-blog {
    border: 1px solid var(--border-color);
    padding: 20px;
}

.side-blog-top>a {
    display: block;
    position: relative;
}

.side-blog-top>a:hover {
    color: inherit;
}

.side-blog-top>a>.text {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px;
    width: 100%;
    background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.side-blog-top>a>.text>h3 {
    color: var(--white-color);
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 5px;
}

.side-blog-top>a>.text>.time {
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.side-blog-ul li:nth-child(n+2) {
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
    padding-top: 10px;
}

.side-blog-ul li h3 {
    position: relative;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 5px;
    padding-left: 10px;
}

.side-blog-ul li h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--main-color);
}

.side-blog-ul li .time {
    font-size: 12px;
    line-height: 16px;
    color: var(--text-color);
    padding-left: 10px;
}

.side-pro-ul li:nth-child(n+2) {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 15px;
}

.side-pro-ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.side-pro-ul li a .img {
    flex-shrink: 0;
    width: 100px;
}

.side-pro-ul li a .text h3 {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 5px;
}

.side-pro-ul li a .text p {
    font-size: 12px;
    line-height: 16px;
    color: var(--text-color);
}

/* sidebar */
/* toppro */
.toppro-img img {
    border-radius: 5px;
}

.toppro-img {
    flex-shrink: 0;
}

.toppro-text {
    flex: 1;
}

.toppro-text h1 {
    font-weight: 700;
    font-size: 34px;
    color: var(--main-color);
    line-height: 45px;
}

.toppro-contact {
    color: var(--hover-color);
    display: flex;
    gap: 30px;
}

.toppro-contact>a {
    background: var(--white-color);
    color: var(--hover-color);
    font-size: 20px;
}

.toppro-contact>a:hover {
    color: var(--hover-color);
}

.toppro-contact i {
    margin-right: 10px;
}

.toppro-img .swiper-button-next,
.toppro-img .swiper-button-prev {
    color: var(--hover-color);
}

/* toppro */
.single-title {
    margin-bottom: 30px;
}

.single-title h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: var(--main-color);
    margin-bottom: 20px;
}

.text-ul {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: var(--text-color);
}

.text-ul i {
    margin-right: 5px;
}

.text-ul a {
    color: var(--hover-color);
}

.text-ul a:hover {
    color: var(--text-color);
}

.single-des {
    background: var(--weight-color);
}

.single-des-text p {
    font-size: 14px;
    line-height: 19px;
    color: var(--des-color);
}

.single-des-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-des-contact-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-des-contact-icon {
    flex-shrink: 0;
}

.single-des-contact-info {
    flex: 1;
}

.single-des-contact-info h4 {
    font-size: 14px;
    line-height: 28px;
    color: var(--des-color);
    letter-spacing: 5px;
}

.single-des-contact-info p {
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    color: var(--hover-color);
}

.single-des-contact-btn {
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--hover-color);
}

.single-des-contact-btn a {
    display: block;
    color: var(--white-color);
}

.single-arc h2 {
    position: relative;
    color: var(--main-color);
    font-weight: bold;
    font-size: 24px;
    line-height: 31px;
    padding-left: 35px;
    display: flex;
    align-items: center;
}

.single-arc h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/single-icon-1.webp) no-repeat;
    width: 30px;
    height: 24px;
}

.single-arc h3 {
    color: var(--main-color);
    font-weight: bold;
    font-size: 20px;
    line-height: 26px;
}

.single-arc h4 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.single-arc img {
    display: inline-block;
    width: inherit;
    margin: 0 auto;
}

.single-arc p {
    font-size: 16px;
    line-height: 30px;
}

.single-arc p img {
    margin: 0;
}

.single-arc table p {
    margin: 0;
}

.single-arc table th:first-child {
    background: var(--main-color);
}

.single-arc iframe {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.single-arc ul,
.single-arc ol {
    padding-left: 25px;
}

.single-arc li {
    margin: 15px 0;
    list-style-type: disc;
}

.single-arc a {
    color: var(--hover-color);
    font-weight: bold;
}

.single-arc a:hover {
    color: var(--main-color);
}

.prenext {
    background: var(--weight-color);
}

.prenext li {
    color: var(--des-color);
}

/* single products */
/* message */
.message-title {
    font-size: 40px;
    line-height: 52px;
    font-weight: bold;
    margin-bottom: 30px;
}

.message form {
    display: grid;
    gap: 15px;
}

.message form .submit {
    width: 150px;
    display: inline-block;
}

/* message */
/* single blog */
.single-table {
    overflow-x: auto;
    width: 100%;
}

/* single blog */
/* rel */
.rel-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* rel */
/* list-blog */
.bloglist>li>a {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    background: var(--border-color);
    color: inherit;
}

.bloglist>li>a:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.bloglist>li>a:hover .text-ul {
    color: var(--white-color);
}

.bloglist>li>a:hover h3 {
    color: var(--white-color);
}

.bloglist>li>a:hover p {
    color: var(--white-color);
}

.bloglist>li>a:hover .text .more {
    color: var(--white-color);
}


/* list-blog */
/* list-case */
.caselist {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.caselist>li>a {
    background: var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.caselist>li>a:hover {
    color: inherit;
}

.caselist .img {
    flex-shrink: 0;
}

.caselist .text .more {
    font-size: 14px;
    text-transform: capitalize;
    color: var(--hover-color);
}

/* list-case */
/* list-solution */
.solution-ul>li {
    border: 1px solid var(--border-color);
}

.solution-ul>li>a>.text>h3 {
    font-size: 16px;
    line-height: 26px;
}

/* list-solution */
/* about */
#about {
    background: var(--weight-color);
}

/* about-1 */
.about-1 {
    overflow: hidden;
    margin-top: -25px;
}

.about-1-img {
    flex-shrink: 0;
}

.about-1-text {
    flex: 1;
}

.about-1-text-content {
    position: relative;
}

.about-1-text-content::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 844px;
    height: 411px;
    background: url(../img/about-map-bg.webp) no-repeat;
    background-size: auto;
    z-index: 0;
    pointer-events: none;
}

.about-1-text-content p {
    position: relative;
    z-index: 1;
}

.about-1-ul {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
}

.about-1-ul-title {
    font-size: 14px;
    line-height: 26px;
}

.about-1-ul li {
    text-align: center;
}

.about-1-ul li p {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 40px;
    line-height: 48px;
    color: var(--hover-color);
}

.about-1-ul li:nth-child(n+2) {
    border-left: 1px solid rgba(153, 153, 153, 0.5);
}

/* about-1 */
/* about-2 */
.about-2 {
    position: relative;
    overflow: hidden;
}

.about-2::after {
    content: "";
    background: url(../img/about-2-bg.webp) no-repeat;
    background-position: center center;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 1920px;
    height: 580px;
}

.about-2 .section-title {
    color: var(--white-color);
    position: relative;
    z-index: 2;
}

.about-2 .section-title-heading-entitle::before {
    background: var(--white-color);
}

.about-2-text-ul {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--white-color);
}

.about-2-ul {
    position: relative;
    z-index: 2;
    margin-top: 80px;
}

.about-2-ul li a {
    display: block;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.about-2-ul .img {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.about-2-ul .img img {
    border-radius: 20px 20px 0 0;
    transition: transform 0.3s ease;
}

.about-2-ul li:hover .img img {
    transform: scale(1.1);
}

.about-2-ul .text h3 {
    font-size: 18px;
    line-height: 24px;
}

/* about-2 */
/* about-3 */
.about-3 {
    background: var(--white-color);
}

.about-3-ul-1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-3-ul-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.about-3-ul-2>li>img {
    border-radius: 10px;
}

/* about-3 */
/* about-4 */
.about-4-ul {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 460px;
    margin-top: 30px;
}

.about-4-ul li {
    width: 340px;
    border-radius: 20px;
    background: var(--white-color);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}

.about-4-ul-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.about-4-ul-heading span {
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 40px;
    color: rgba(221, 221, 221, 0);
    line-height: 56px;
    text-stroke: 1px #999999;
    text-align: left;
    font-style: normal;
    -webkit-text-stroke: 1px #999999;
}

.about-4-ul-text-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-4-ul li .text p {
    font-size: 18px;
    line-height: 24px;
    color: #666666;
}

/* about-4 */
/* about */
/* contact */
/* contact-ul-1 */
.contact-ul-1 li {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.contact-ul-1 .text-top {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 7px;
}

.contact-ul-1 .text {
    margin-bottom: 15px;
}

.contact-ul-1 .text-text-info {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
}

.contact-ul-1 .bottom {
    font-size: 16px;
    line-height: 21px;
    color: var(--text-color);
}

.contact-ul-1 .chatnow a{
    color: var(--hover-color);
}
.contact-ul-1 .chatnow a:hover{
    color: var(--main-color);
}
/* contact-ul-1 */
/* contact-ul-2 */
.contact-2 {
    position: relative;
}
.contact-ul-2-2 {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
}

.contact-ul-2-2 li {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-ul-2-2 li .icon {
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: 16px;
}

.contact-ul-2-2 li .icon .img-1,
.contact-ul-2-2 li .icon .img-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
}

.contact-ul-2-2 li .img-1 {
    opacity: 0;
}

.contact-ul-2-2 li .img-2 {
    opacity: 1;
}

.contact-ul-2-2 li.active .img-1 {
    opacity: 1;
}

.contact-ul-2-2 li.active .img-2 {
    opacity: 0;
}

.contact-ul-2-1 li {
    display: none;
}

.contact-ul-2-1 li.active {
    display: inline-block;
}
.contact-ul-2-2 li .text h4{
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}
.contact-ul-2-2 li .text p{
    font-size: 14px;
    line-height: 19px;
    color: var(--text-color);
}
/* contact-ul-2 */
/* contact-ul-3 */
.contact-ul-3 {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}

.contact-ul-3 li {
    background: var(--weight-color);
}

.contact-ul-3 li img {
    display: block;
    margin: 0 auto;
}

.contact-ul-3 li h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin: 30px 0 15px 0;
}

/* contact-ul-3 */
/* contact-4 */
.contact-content-title {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.contact-content-title h2 {
    position: relative;
    font-size: 40px;
    line-height: 52px;
    font-weight: bold;
    color: var(--white-color);
    padding-bottom: 15px;
}

.contact-content-title h2 span {
    color: var(--hover-color);
}

.contact-content-title h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 45px;
    height: 3px;
    background: var(--white-color);
}

.contact-content-title h2::after {
    content: "";
    position: absolute;
    left: 50px;
    bottom: 0;
    display: block;
    width: 12px;
    height: 3px;
    background: var(--hover-color);
}

.contact-content-title p {
    margin-top: 15px;
    color: var(--white-color);
}

.contact-content-title .btn-more .more{
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 15px;
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 50px;
}

.contact-content-title .more:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.contact-4-ul-1 {
    display: grid;
    align-items: center;
}

.contact-4-ul-1 li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 20px;
}

.contact-4-ul-1 li:nth-child(1) {
    background: url(../img/contact-4-bg-1.webp) no-repeat;
    background-size: 253px 48px;
}

.contact-4-ul-1 li:nth-child(2) {
    background: url(../img/contact-4-bg-2.webp) no-repeat;
    background-size: 253px 48px;
}

.contact-4-ul-1 li:nth-child(3) {
    background: url(../img/contact-4-bg-3.webp) no-repeat;
    background-size: 253px 48px;
}

.contact-4-ul-1 li .num {
    font-size: 32px;
    line-height: 46px;
    color: var(--hover-color);
    font-weight: bold;
}

.contact-4-ul-1 li .text h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-4-ul-1 li .text p {
    font-size: 14px;
    line-height: 19px;
    color: var(--text-color);
}

.contact-4-ul-2 {
    display: grid;
    gap: 15px;
}

.contact-4-ul-2 li {
    background: var(--white-color);
}

.contact-4-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 30px;
}

.contact-4-form form input,
.contact-4-form form textarea {
    background: var(--weight-color);
    border: none;
}

.contact-4-form form .submit {
    align-self: start;
}



/* .contact-4-message-ul>li {
    background: var(--weight-color);
}

.contact-4-message-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-4-message-title .img {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
}

.contact-4-message-title .img img {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.contact-4-message-title .text {
    flex: 1;
}

.contact-4-message-content p {
    font-size: 14px;
    line-height: 24px;
    color: var(--des-color);
} */
.contact-4-message-ul>li {
    background: var(--weight-color);
}

.contact-4-message-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-4-message-title .img {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.contact-4-message-title .img img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.contact-4-message-title .text {
    flex: 1;
    font-size: 16px;
    line-height: 21px;
    color: var(--des-color);
}

.contact-4-message-content p {
    font-size: 14px;
    line-height: 24px;
    color: var(--des-color);
}

/* 滚动容器样式 */
.message-scroll-container {
    height: 260px;
    overflow: hidden;
    position: relative;
}

/* 滚动内容样式 */
.message-scroll-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: scrollAnimation 20s linear infinite;
}

.message-scroll-content:hover {
    animation-play-state: paused;
}

/* 滚动动画 */
@keyframes scrollAnimation {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* 消息项样式 */
.message-item {
    transition: all 0.3s ease;
}

.message-item:hover {
    background-color: #f8fafc;
    transform: translateX(5px);
}

/* contact-4 */
/* contact-5 */
.contact-5{
    background: var(--weight-color);
}
.contact-5-title{
    flex: 1;
}
.contact-5-title h3{
    font-size: 24px;
    line-height: 31px;
}
.contact-5-title h2{
    font-size: 28px;
    line-height: 37px;
    font-weight: bold;
    margin: 10px 0 20px 0;
}
.contact-5-title h2 span{
    color: var(--hover-color);
}
.contact-5-title .icon{
    margin-bottom: 20px;
}
.contact-5-title-ul{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.contact-5-title-ul li{
    font-size: 16px;
    line-height: 21px;    
}
.contact-5-ul{
    display: grid;
    gap: 15px;
}
.contact-5-ul li{
    background: var(--white-color);
    border-bottom: 4px solid var(--hover-color);
    padding: 15px;
}
.contact-5-ul li h3{
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.contact-5-ul li p{
    font-size: 16px;
    line-height: 28px;
    color: var(--des-color);
}
/* contact-5 */
/* contact */
/* 404 */
.page404 {
    text-align: center;
}

.page404 h1 {
    font-size: 100px;
    font-weight: 700;
    color: var(--hover-color);
    margin-bottom: 30px;
}

.page404 p {
    margin-bottom: 30px;
}

/* 404 */
/* zkl */
.bread {
    position: relative;
    z-index: 1;
    background: var(--main-color);
}

.bread .container {
    position: relative;
    left: 0;
    top: 0;
}

.slogan {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--white-color);
    letter-spacing: 6px;
}

.bread #crumb {
    margin-top: 0;
}

.zkl-banner {
    position: relative;
}

.zkl-banner .container {
    display: flex;
    align-items: center;
}

.zkl-banner-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.zkl-banner-text {
    flex: 1;
    color: var(--white-color);
}

.banner-des {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 26px;
}

.banner-title {
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner-textlist {
    margin-bottom: 40px;
}

.banner-textlist li {
    color: var(--white-color);
    display: flex;
}

.banner-textlist li span {
    font-weight: bold;
    display: block;
    width: 88px;
    flex-shrink: 0;
}

.banner-btn-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.banner-btn-list>a {
    display: inline-block;
    background: var(--white-color);
    color: var(--hover-color);
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    padding: 12px 30px;
}

.banner-btn-list>a:first-child {
    background: var(--hover-color);
    color: var(--white-color);
    padding: 12px 107px;
}

.zkl-banner-img {
    flex-shrink: 0;
}

.page-menu {
    background: var(--weight-color);
}

.page-menu-ul {
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
}

.page-menu-ul li a {
    position: relative;
    display: block;
    padding: 15px 0;
}

.page-menu-ul li a .menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.page-menu-ul img {
    width: 40px;
    height: 40px;
}

.page-menu-title {
    font-size: 18px;
    line-height: 24px;
}

.zkl-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* item1 */
.page-content-item1-ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.page-content-item1-ul>li {
    background: var(--weight-color);
}

.page-content-item1-ul>li>.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
}

.page-content-item1-ul>li>.text>h3 {
    font-size: 18px;
    line-height: 24px;
}

.page-content-item1-ul>li>.text>.more {
    display: inline-block;
    color: var(--hover-color);
    padding: 5px 15px;
    border: 1px solid var(--hover-color);
}

/* item1 */
/* item2 */
.page-content-item2-content {
    background: url(../img/zkl-item2-bg.webp) no-repeat;
    background-position: center;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.page-content-item2-content-heading {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.page-content-item2-content-heading-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-content-item2-content-heading-text .text .des {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 10px;
}

.page-content-item2-content-heading-text .text .title {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
}

.page-content-item2-content-heading .more {
    display: inline-block;
    background: var(--hover-color);
    color: var(--white-color);
    border-radius: 30px;
    font-size: 16px;
    line-height: 21px;
    padding: 15px 25px;
}

.page-content-item2-ul {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}

.page-content-item2-ul>li {
    background: var(--white-color);
    padding: 20px;
}

.page-content-item2-ul>li>.text {
    margin-top: 15px;
}

.page-content-item2-ul>li>.text>h3 {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 5px;
}

.page-content-item2-ul>li>.text>p {
    font-size: 14px;
    line-height: 19px;
    color: var(--des-color);
}

.page-content-item2-ul-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 27px;
    padding: 10px;
}

.page-content-item2-ul-bar .txt p {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 5px;
}

.page-content-item2-ul-bar .txt p span {
    color: var(--hover-color);
}

.page-content-item2-ul-bar .txt .tel {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    color: var(--hover-color);
}

/* item2 */
/* item3 */
.page-content-item3-ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-content-item3-ul::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 90%;
    background: var(--border-color);
}

.page-content-item-iconbg .page-content-item3-ul::before {
    display: none;
}

.page-content-item3-ul>li {
    position: relative;
    background: none;
}

.page-content-item3-ul-head {
    position: absolute;
    left: 0;
    top: 20px;
}

.page-content-item3-ul-head-content {
    background: url(../img/zkl-arrow.webp) no-repeat;
    background-position: center;
    background-size: contain;
    width: 117px;
    height: 106px;
    padding: 20px 30px 26px 15px;
    color: var(--white-color);
}

.page-content-item-iconbg .page-content-item3-ul-head-content {
    background: url(../img/page-content-item-iconbg.webp) no-repeat;
    padding-top: 55px;
}

.page-content-item3-ul-head-num {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 30px;
    line-height: 36px;
    display: block;
}

.page-content-item3-ul-head-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
}

.page-content-item3-ul-text {
    flex: 1;
    background: var(--weight-color);
    padding: 30px 15px 30px 117px;
    margin-left: 40px;
    min-height: 140px;
}

.page-content-item3-ul-text-ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-content-item3-ul-text-ul>li>h4 {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 5px;
    font-weight: bold;
}

.page-content-item3-ul-text-ul>li>p {
    font-size: 16px;
    line-height: 26px;
    color: var(--des-color);
}

.page-content-item3-ul-text-ul>li>p:nth-child(n+2) {
    margin-top: 5px;
}

.page-content-item-iconbg .page-content-item3-ul-text-ul>li>p {
    color: var(--main-color);
}

.page-content-item-iconbg .page-content-item3-ul-text-ul>li>p>span {
    font-weight: bold;
}

/* item3 */
/* item4 */
.page-content-item4-tabslist {
    display: flex;
    gap: 11px;
    justify-content: space-between;
}

.page-content-item4-tabslist>li {
    position: relative;
    cursor: pointer;
}

.tab-img-wrap {
    position: relative;
    display: inline-block;
    width: 110px;
    height: 450px;
    overflow: hidden;
}

.tab-img-wrap img {
    display: block;
    width: 110px;
    height: 450px;
    transition: box-shadow .3s;
}

.tab-img-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s;
    z-index: 1;
    pointer-events: none;
    border-radius: 8px;
}

.page-content-item4-tabslist li.active .tab-img-wrap::after {
    opacity: 0;
}

.page-content-item4-tabslist li.active .tab-img-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 30px solid #fff;
    border-top: 0;
    z-index: 2;
}

.page-content-item4-tabslist>li>h3 {
    position: absolute;
    z-index: 1;
    top: 70px;
    right: 15px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: bold;
    width: 18px;
    word-break: break-all;
}

.page-content-item4-tabslist li.active h3 {
    display: none;
}

.page-content-item4-textlist>li {
    display: none;
    background: var(--weight-color);
}

.page-content-item4-textlist li.active {
    display: block;
}

.page-content-item4-textlist>li>h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-content-item4-textlist>li>h3>span {
    color: var(--hover-color);
    margin: 0 5px;
}

.page-content-item4-textlist-content-ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-content-item4-textlist-content-ul>li>h4 {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 3px;
}

.page-content-item4-textlist-content-ul>li>p {
    color: var(--des-color);
}

/* item4 */
/* item5 */
.page-content-item5-ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-content-item5-ul>li {
    background: var(--weight-color);
}

.page-content-item5-ul>li>a {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-content-item5-ul>li>a>.img {
    flex-shrink: 0;
}

.page-content-item5-ul>li>a>.text {
    flex: 1;
}

.page-content-item5-ul>li>a>.text>h3 {
    font-size: 18px;
    line-height: 26px;
    color: var(--main-color);
}

.page-content-item5-ul>li>a>.text>.text-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 28px;
    color: var(--text-color);
}

/* item5 */
/* item6 */
.page-content-item6-content {
    background: url(../img/page-content-item6-bg.webp) no-repeat, url(../img/page-content-item6-bg-2.webp) no-repeat;
    background-position: center top, center bottom;
}

.page-content-item6-top-title {
    font-size: 16px;
    line-height: 28px;
    color: var(--white-color);
    padding-top: 40px;
    padding-left: 30px;
    margin-bottom: 30px;
}

.page-content-item6-top-text {
    width: 290px;
}

.page-content-item6-top-text p {
    font-size: 16px;
    line-height: 28px;
    color: var(--white-color);
    margin-left: 30px;
}

.page-content-item6-top-ul {
    margin: 20px 0 20px 30px;
    width: 185px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

.page-content-item6-top-ul>li {
    position: relative;
    padding-left: 25px;
    color: var(--white-color);
    font-size: 14px;
    line-height: 28px;
}

.page-content-item6-top-ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--hover-color);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    background: transparent;
}

.page-content-item6-top-ul li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--hover-color);
    border-radius: 50%;
}

.page-content-item6-icon {
    margin: 20px 0 20px 30px;
}

.page-content-item6-listimg {
    margin: 20px 30px 0 30px;
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.page-content-item6-listjg {
    padding: 45px 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.page-content-item6-listjg li span {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: var(--hover-color);
    font-size: 30px;
    line-height: 36px;
}

.page-content-item6-listjg li h3 {
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    color: var(--main-color);
    margin: 10px 0 15px 0;
}

.page-content-item6-listjg li .text {
    margin: 15px 0 30px 0;
}

.page-content-item6-listjg li .text p {
    font-size: 14px;
    line-height: 19px;
    color: var(--main-color);
}

/* item6 */
/* item7 */
.page-content-item7-ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-content-item7-ul li h3 {
    position: relative;
    font-size: 18px;
    line-height: 24px;
    color: var(--main-color);
    font-weight: bold;
    padding-left: 40px;
}

.page-content-item7-ul li h3::before {
    content: "";
    background: url(../img/q.webp) no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 0;
}

.page-content-item7-ul li .text {
    position: relative;
    padding-left: 40px;
    font-size: 16px;
    line-height: 28px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-content-item7-ul li .text::before {
    content: "";
    background: url(../img/a.webp) no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 0;
}

.page-content-item7-ul .page-content-item7-dl dt {
    font-weight: bold;
}

/* item7 */
/* item9 */
.page-content-item9-ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(204px, 1fr));
    gap: 10px;
}

.page-content-item9-ul li {
    position: relative;
    width: 100%;
    height: 204px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-content-item9-ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-content-item9-ul li h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: var(--white-color);
    text-align: center;
    z-index: 2;
}

.page-content-item9-ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    transition: all 0.3s ease;
}

.page-content-item9-ul li:hover::after {
    background-color: rgba(0, 0, 0, 0);
}

.page-content-item9-ul li:hover {
    transform: scale(1.03);
}

/* item9 */
/* item10 */
.page-content-item10-ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-content-item10-ul>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.page-content-item10-ul-heading {
    flex: 1;
    min-width: 160px;
    min-height: 340px;
    padding: 15px 17px;
    display: flex;
    align-items: center;
}

.bg-item {
    background-position: center;
    background-size: 100% 100%;
}

.bg-item1 {
    background: url(../img/page-content-item10-bg-1.webp) no-repeat;
}

.bg-item2 {
    background: url(../img/page-content-item10-bg-2.webp) no-repeat;
}

.bg-item3 {
    background: url(../img/page-content-item10-bg-3.webp) no-repeat;
}

.bg-item4 {
    background: url(../img/page-content-item10-bg-4.webp) no-repeat;
}

.bg-item5 {
    background: url(../img/page-content-item10-bg-5.webp) no-repeat;
}

.page-content-item10-ul-heading-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-content-item10-ul-heading-num {
    font-family: Impact;
    font-size: 30px;
    line-height: 28px;
    color: var(--hover-color);
}

.page-content-item10-ul-heading-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
}

.page-content-item10-ul-li1-ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.page-content-item10-ul-li1-ul>li {
    background: #eaf0f5;
    position: relative;
}

.page-content-item10-ul-li1-ul .text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.page-content-item10-ul-li1-ul .text h3 {
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    margin-bottom: 5px;
}

.page-content-item10-ul-li1-ul .text p {
    font-size: 15px;
    line-height: 21px;
}

.page-content-item10-li2-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.page-content-item10-ul-li2-ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.page-content-item10-ul-li2-ul>li {
    position: relative;
    background: var(--border-color);
}

.page-content-item10-ul-li2-ul>li>.text {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.page-content-item10-ul-li2-ul>li>.text>h3 {
    font-size: 16px;
    line-height: 21px;
}

.page-content-item10-ul-li2-mainimg {
    position: relative;
    background: var(--border-color);
}

.page-content-item10-ul-li2-mainimg>.text {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.page-content-item10-ul-li2-mainimg>.text>h3 {
    font-size: 16px;
    line-height: 21px;
}

.page-content-item10-ul-li3-ul {
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(2, 1fr);
}

.page-content-item10-ul-li3-ul>li {
    position: relative;
}

.page-content-item10-ul-li3-ul>li>.text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100%;
    color: var(--white-color);
}

.page-content-item10-ul-li4-ul {
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(2, 1fr);
}

.page-content-item10-ul-li4-ul>li {
    position: relative;
}

.page-content-item10-ul-li4-ul>li>.text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100%;
    color: var(--white-color);
}

.page-content-item10-ul-li5-ul {
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(2, 1fr);
}

.page-content-item10-ul-li5-ul>li {
    background: var(--border-color);
    position: relative;
}

.page-content-item10-ul-li5-ul .text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.page-content-item10-ul-li5-ul .text h3 {
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* item10 */
/* item11 */
.page-content-item11-content .page-content-item2-content-heading-text .page-content-item11-ul .text {
    margin-top: 30px;
}

.page-content-item11-ul .text h3 {
    font-size: 16px;
    line-height: 21px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.page-content-item11-ul .text p {
    font-size: 14px;
    line-height: 19px;
    color: #666666;
}

/* item11 */
/* item12 */
.page-content-item12-content {
    background: url(../img/page-content-item12-content-bg.webp) no-repeat;
    background-position: center;

}

.page-content-item12-content-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}

.page-content-item12-content-img {
    max-width: 420px;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.page-content-item12-content-img-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: url(../img/page-content-item12-content-img-icon-bg.webp) no-repeat;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: var(--white-color);
    font-size: 18px;
    line-height: 22px;
    padding: 7px 0 0 7px;
}

.page-content-item12-content-text {
    flex: 1;
    padding: 55px 70px;
}

.page-content-item12-content-text>h2 {
    font-size: 24px;
    line-height: 31px;
    font-weight: bold;
    color: var(--white-color);
    position: relative;
    padding-bottom: 20px;
}

.page-content-item12-content-text>h2::before {
    content: "";
    width: 20px;
    height: 3px;
    background: var(--hover-color);
    position: absolute;
    left: 0;
    bottom: -1px;
}

.page-content-item12-content-text>h2::after {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--text-color);
    position: absolute;
    left: 20px;
    bottom: 0;
}

.page-content-item12-content-text-des>p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 24px;
    color: var(--white-color);
}

.page-content-item12-content-bottom {
    background: var(--hover-color);
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    width: 530px;
    height: 90px;
}

.page-btnlist {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-left: 180px;
    padding-top: 27px;
}

.page-btnlist>a {
    display: inline-block;
    padding: 7px 14px;
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.page-btnlist>a:first-child {
    background: var(--white-color);
    color: var(--hover-color);
}

.page-content-item12-content-ul {
    padding: 40px 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.page-content-item12-content-ul li {
    background: var(--white-color);
    text-align: center;
}

.page-content-item12-content-ul li .text {
    padding: 15px 30px;
}

.page-content-item12-content-ul h3 {
    font-size: 18px;
    line-height: 24px;
    color: var(--main-color);
    margin-bottom: 10px;
}

.page-content-item12-content-ul p {
    font-size: 14px;
    color: var(--des-color);
}

.page-content-item12-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.page-content-item12-list .img {
    position: relative;
}

.page-content-item12-list .text {
    background: var(--weight-color);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.page-content-item12-list .text h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    color: var(--main-color);
    min-height: 50px;
}

.page-content-item12-list .text p {
    font-size: 16px;
    line-height: 21px;
    color: var(--des-color);
    margin: 8px 0 15px 0;
}

/* item12 */
/* zkl */
.toppro-bigimg {
    width: 100%;
    background: var(--weight-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.toppro-bigimg .bigimg {
    display: none;
    transition: 0.3s;
}

.toppro-bigimg .bigimg.selected {
    display: block;
}

.toppro-smallimg {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toppro-smallimg-list {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.toppro-smallimg-list .thumb {
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s;
}

.toppro-smallimg-list .thumb.selected {
    border-color: var(--hover-color);
    box-shadow: 0 0 8px var(--main-color);
}

.toppro-smallimg .arrow {
    width: 7%;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--white-color);
    transition: background 0.3s;
    user-select: none;
}

.toppro-smallimg .arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-content-yy-content-top {
    margin-bottom: 50px;
}

.page-content-yy-content-top-text p {
    font-size: 16px;
    line-height: 28px;
}

.page-content-yy-content-top-ul {
    display: flex;
    gap: 35px;
}

.page-content-yy-content-top-ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-content-yy-content-top-ul li img {
    width: 50px;
    height: 50px;
}

.page-content-yy-content-top-ul li h4 {
    font-size: 14px;
    line-height: 19px;
    color: var(--des-color);
}

.page-content-yy-content-bottom {
    position: relative;
    height: 310px;
}

.page-content-yy-content-bottom-right {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    max-width: 400px;
}

.page-content-yy-content-bottom-left-text h4 {
    margin-bottom: 20px;
}

.page-content-yy-content-bottom-left-text-ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.page-content-yy-content-bottom-left-text-ul>li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ring {
    width: 18px;
    height: 18px;
    background: var(--white-color);
    border: 1px solid var(--hover-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ring-dot {
    width: 8px;
    height: 8px;
    background: var(--hover-color);
    border-radius: 50%;
}

.page-content-yy-content-bottom-left-img-ul {
    display: flex;
    align-items: center;
}

.single-table-cs table tr {
    background: var(--weight-color);
}

.single-table-cs table td {
    border: 1px solid var(--white-color);
}

.single-table-cs table tr:nth-child(odd) {
    background: var(--border-color);
}

.single-table-cs table th:first-child {
    background: var(--main-color);
}

.single-content {
    margin-bottom: 40px;
}

/* indexnews */

.indexnews-1-ul li:hover {
    background: var(--weight-color);
}
.indexnews-1-ul .text h3{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; 
}
.text-title-item {
    padding: 20px;
}

.small-title {
    color: var(--hover-color);
    font-size: 14px;
    line-height: 19px;
}

.text-title-item h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
}

.text-bottom {
    background: var(--weight-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
}

.text-bottom li:first-child {
    font-size: 14px;
    color: var(--des-color);
}

.text-bottom i {
    display: inline-block;
    color: var(--hover-color);
    font-size: 25px;
    line-height: 1;
}

.text-bottom .nowhover {
    display: none;
}
.indexnews-2-ul li:hover .text-bottom .nowhover {
    display: inline-block;
}

.indexnews-2-ul li:hover .text-bottom .now {
    display: none;
}

.indexnews-1-ul li:hover .text-bottom .nowhover {
    display: inline-block;
}

.indexnews-1-ul li:hover .text-bottom .now {
    display: none;
}

.indexnews-2-ul {
    display: grid;
    gap: 15px;
}

.indexnews-2-ul>li {
    background: var(--weight-color);
}

.indexnews-4-ul>li {
    background: var(--white-color);
}

.indexnews-4-ul>li>.img {
    flex-shrink: 0;
}

.indexnews-4-ul>li>.text {
    flex: 1;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}

.indexnews-4-ul>li>.text>.time {
    border: 1px solid var(--text-color);
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.indexnews-4-ul>li>.text>.time>.year {
    font-size: 16px;
    line-height: 21px;
    color: var(--text-color);
}

.indexnews-4-ul>li>.text>.time>.day {
    font-size: 46px;
    line-height: 61px;
    margin-top: 12px;
}

.indexnews-4-ul>li>.text>.txt {
    flex: 1;
}

.indexnews-5-ul>li>.img {
    position: relative;
}

.indexnews-5-ul>li>.img::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: url(../img/play.webp) no-repeat;
    background-position: center center;
}

/* indexnews */
/* listnews */
.page-content-menu {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-content-menu a {
    font-size: 18px;
    line-height: 24px;
    color: var(--main-color);
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.page-content-menu a:hover {
    color: var(--hover-color);
}

.page-content-menu .active {
    font-weight: bold;
}

.page-content-menu .active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--hover-color);
}

.list-blog li {
    background: var(--white-color);
}

.list-blog li .img {
    flex-shrink: 0;
}

.list-blog li .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.info li {
    color: var(--text-color);
    font-size: 14px;
    line-height: 26px;
}

.info li i {
    margin-right: 5px;
}

.list-videos li {
    background: var(--white-color);
}

.list-videos>li>.img {
    position: relative;
}

.list-videos>li>.img::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: url(../img/play.webp) no-repeat;
    background-position: center center;
}

/* listnews */
/* syl */
.page-content-title-menu {
    display: flex;
    align-items: center;
}

.page-content-title-menu a {
    display: block;
    font-size: 18px;
    line-height: 24px;
}

.page-content-title-menu a:nth-child(n+2) {
    border-left: 1px solid var(--text-color);
    padding-left: 20px;
    margin-left: 20px;
}

.indexcase {
    position: relative;
}

.indexcase-content {
    background: var(--weight-color);
}

.indexcase-img {
    flex-shrink: 0;
}

.indexcase-text {
    position: relative;
    flex: 1;
}

.indexcase-text h3 {
    font-size: 14px;
    line-height: 19px;
    color: var(--hover-color);
    margin-bottom: 10px;
}

.indexcase-text h2 {
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.indexcase-text p {
    font-size: 16px;
    line-height: 26px;
    color: var(--des-color);
    margin-bottom: 15px;
}

.indexcase-text a.more {
    display: inline-block;
    border-radius: 30px;
    border: 1px solid var(--hover-color);
    font-size: 14px;
    line-height: 21px;
    padding: 10px 30px;
    color: var(--hover-color);
}

.indexcase .swiper-pagination {
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: auto;
    top: auto;
    width: auto;
}

.indexcase .swiper-pagination span {
    background: var(--hover-color);
}

.index-case-list li {
    background: var(--weight-color);
}

/* syl */