@charset "utf-8";
@import url('/static/css/iconfont.css');
@import url('/static/css/message.css');
@import url('/static/css/language.css');

:root {
    --color: #ab4813;
    --hovercolor: #EAEBEC;
    --fontcolor: #000000;
    --headercolor: #FFFFFF;
    --footercolor: #4F4F4F;
    --introcolor: #444444;
    --fontsize12: 12px;
    --fontsize13: 13px;
    --fontsize14: 14px;
    --fontsize15: 15px;
    --fontsize16: 16px;
    --fontsize17: 17px;
    --fontsize18: 18px;
    --fontsize20: 20px;
    --fontsize22: 22px;
    --fontsize24: 24px;
    --fontsize26: 26px;
    --fontsize28: 28px;
    --fontsize30: 30px;
    --hometitlefont: 36px;
    --fontbold3: 300;
    --fontbold4: 400;
    --fontbold5: 500;
    --fontbold6: 600;
    --fontbold7: 700;
    --borderradius: 5px;
    --fontfamily: "Lato", "Open Sans", "Roboto", "Poppins", "Oswald", "Noto Sans", "Montserrat", arial, sans-serif
}

@media (max-width:1280px) {
    :root {
        --hometitlefont: 30px
    }
}

@media (max-width:768px) {
    :root {
        --hometitlefont: 22px
    }
}

*,
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
table,
th,
td,
ul,
li,
dl,
dt,
dd,
div,
p {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box
}

body {
    margin: 0px auto;
    padding-top: 140px;
    max-width: 1920px;
    line-height: 1.6;
    font-size: var(--fontsize16);
    color: var(--fontcolor);
    overflow-x: hidden;
    font-family: var(--fontfamily)
}

a {
    text-decoration: none;
    color: inherit
}

iframe,
video {
    max-width: 100%;
    outline: 0;
    border: none;
    vertical-align: bottom
}

@media (max-width:768px) {

    iframe,
    video {
        min-height: 240px;
        height: auto
    }
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .5);
    background: rgba(122, 122, 122, .1)
}

body::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
    background: rgba(122, 122, 122, .8)
}

body::-webkit-scrollbar {
    width: 8px;
    height: 1px
}

img {
    border: 0px;
    vertical-align: bottom;
    max-width: 100%;
    height: auto
}

img.lazy {
    display: inline-block;
    opacity: 0
}

img.lazy,
img.tst {
    transition: opacity .6s, transform .3s ease
}

img.loaded {
    opacity: 1
}

img:not([src]) {
    visibility: hidden;
    position: absolute
}

.lazy-load {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #FD6E05;
    border-top-color: transparent;
    border-bottom-color: transparent;
    transform: translate(-50%, -50%);
    animation: arrow-circle infinite .75s linear
}

.lazy-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.lazy-wrap::after {
    content: "";
    display: block;
    padding-bottom: 50%
}

.lazy-wrap.lazy-loaded .lazy-load {
    -webkit-animation: none;
    animation: none;
    display: none
}

.lazy-wrap.lazy-loaded::after {
    padding-bottom: 0px
}

.lazy-load:after,
.lazy-load:before {
    position: absolute;
    top: 14px;
    left: 0px;
    border-top: 5px solid #FD6E05;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
    content: "";
    transform: rotate(-30deg)
}

.lazy-load:after {
    top: -3px;
    left: 10px;
    transform: rotate(150deg)
}

@keyframes arrow-circle {
    0% {
        transform: translate(-50%, -50%) rotate(360deg)
    }

    100% {
        transform: translate(-50%, -50%) rotate(0)
    }
}

.hidden {
    overflow: hidden
}

.l-wrap {
    width: 100%;
    max-width: 1700px;
    padding: 0px 70px;
    margin: 0px auto
}

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

.line2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

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

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

.line5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden
}

.icon-videoplay {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #FFFFFF;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
    font-size: var(--fontsize18);
    background-color: rgba(0, 0, 0, .5);
    transform: translate(-50%, -50%)
}

header {
    position: fixed;
    width: 100%;
    max-width: 1920px;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100000
}

header.is-active .head-top {
    height: 0;
    opacity: 0;
    visibility: hidden
}

.head-top {
    background-color: #FD6E05;
    height: 40px;
    transition: all .1s linear
}

.head-top .l-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.head-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.head-link .item {
    display: flex;
    align-items: center;
    margin-right: 30px;
    color: var(--headercolor)
}

.head-link .item a {
    color: var(--headercolor)
}

.head-link .item em {
    margin-right: 4px;
    font-size: var(--fontsize18)
}

.head-link .item:last-child {
    margin-right: 0px;
    margin-right: 5px;
    font-size: var(--fontsize16)
}

.head-share {
    height: 100%;
    margin-left: auto;
    margin-right: 30px
}

.head-share ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0px;
    height: 100%
}

.head-share ul li {
    margin-right: 10px
}

.head-share ul li a {
    color: var(--headercolor);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: all .2s linear
}

.head-share ul li a em {
    font-size: var(--fontsize18)
}

.head-lang {
    display: flex;
    align-items: center;
    justify-content: center
}

.lang {
    z-index: 99999;
    text-align: left;
    position: relative
}

.lang-icon {
    display: flex;
    align-items: center;
    width: 100%;
    height: 30px;
    border: none;
    cursor: pointer;
    font-size: var(--fontsize16);
    user-select: none;
    white-space: nowrap
}

.lang-icon span {
    position: relative;
    padding-right: 18px;
    color: var(--headercolor);
    margin-left: 8px
}

.lang-icon span::before {
    content: "";
    position: absolute;
    right: 4px;
    top: 13px;
    width: 8px;
    height: 1px;
    background: var(--headercolor);
    transform: rotate(50deg)
}

.lang-icon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 13px;
    width: 8px;
    height: 1px;
    background: var(--headercolor);
    transform: rotate(-50deg)
}

.lang-drop {
    position: absolute;
    top: calc(100% + 26px);
    right: 50%;
    transform: translateX(50%);
    background: #FFFFFF;
    border: 1px solid #EBEEF5;
    border-radius: 4px;
    box-shadow: 0px 2px 12px 0 rgba(0, 0, 0, .1);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, top .3s
}

.lang-drop.lang-flex {
    transform: translateX(20%)
}

.lang-drop.active {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 7px)
}

.lang-arrow {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border-top: 1px solid #EBEEF5;
    border-left: 1px solid #EBEEF5;
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    top: -6px;
    left: 50%
}

.lang-drop.lang-flex .lang-arrow {
    left: 80%
}

.lang-wrap {
    list-style: none;
    width: 140px;
    padding: 8px 0px;
    box-sizing: border-box
}

.lang-flex .lang-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 8px
}

.lang-wrap li {
    width: 100%;
    box-sizing: border-box;
    transition: background-color .3s
}

.lang-flex .lang-wrap li {
    width: 33.3333%
}

.lang-wrap li.lang-active,
.lang-wrap li:hover {
    background-color: #EEEEEE
}

.lang-wrap li a {
    display: block;
    color: var(--fontcolor);
    font-size: var(--fontsize12);
    padding: 10px 12px;
    text-decoration: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.lang-wrap li img {
    display: inline-block;
    width: 24px;
    height: 16px;
    vertical-align: -.25em;
    margin-right: 4px
}

.head-info {
    height: 100px;
    transition: all .1s linear;
    background-color: #FFFFFF;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, .05)
}

.head-info .l-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.head-info .head-logo {
    min-width: 100px;
    z-index: 100
}

.head-info .head-logo a {
    height: 100%;
    display: flex;
    align-items: center
}

.head-info .head-logo a img {
    width: auto;
    max-height: 70px
}

.head-nav {
    display: flex;
    align-items: center;
    height: 100%
}

.head-nav .nav-ul {
    height: 100%;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0
}

.head-nav .nav-ul>li {
    height: 100%;
    position: relative
}

.head-nav .nav-ul>li>a {
    font-size: var(--fontsize18);
    font-weight: var(--fontbold5);
    color: #000000;
    text-transform: capitalize;
    margin: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    white-space: nowrap
}

.head-nav .nav-ul>li>a em {
    margin-left: 5px;
    font-size: var(--fontsize14);
    font-weight: var(--fontbold5)
}

.head-nav .nav-ul>li>a::before {
    content: "";
    width: 0;
    height: 2px;
    background: var(--color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .2s linear
}

.head-nav .nav-ul>li:hover>a {
    color: var(--color) !important
}

.head-nav .nav-ul>li>a.inmenu_1 {
    color: var(--color) !important
}

.head-nav .nav-ul>li:hover>a::before,
.head-nav .nav-ul>li>a.inmenu_1::before {
    width: 100%
}

.head-nav .nav-ul>li>ul {
    position: absolute;
    left: 0;
    top: 100%;
    background: #FFFFFF;
    min-width: 160px;
    margin: 0;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, .1);
    white-space: nowrap
}

.head-nav .nav-ul>li>ul li {
    position: relative
}

.head-nav .nav-ul>li>ul li:hover>a,
.head-nav .nav-ul>li>ul li:hover>em {
    color: var(--color)
}

.head-nav .nav-ul>li>ul a {
    padding: 0 10px;
    height: 45px;
    line-height: 45px;
    color: var(--fontcolor);
    padding-right: 30px;
    text-align: left;
    transition: all .1s linear;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: var(--fontsize16)
}

.head-nav .nav-ul>li>ul a+em {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%)
}

.head-nav .nav-ul>li>ul ul {
    position: absolute;
    left: 100%;
    top: 0;
    background: #FFFFFF;
    min-width: 220px;
    margin: 0;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, .1)
}

.head-nav .nav-ul ul {
    list-style: none;
    padding: 0
}

/* Product Mega Overlay (ID 69 only) */
.product-mega-overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 120px;
    width: 100vw;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    padding: 40px 0;
    z-index: 1000
}

.head-info .nav-ul>li#liproducts:hover .product-mega-overlay {
    display: block
}

.product-mega-overlay .mega-menu-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.product-mega-overlay .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 100%
}

.product-mega-overlay .product-item {
    text-align: center;
    transition: all .3s ease;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    padding: 0
}

.product-mega-overlay .product-item:hover {
    transform: translateY(-3px)
}
.product-item a{
    display: flex;
    align-items: center;
}

.product-mega-overlay .product-image {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    margin-right: 15px;
    border-radius: 0;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0
}

.product-mega-overlay .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease
}

.product-mega-overlay .product-item:hover .product-image img {
    transform: scale(1.05)
}

.product-mega-overlay .product-name {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.4
}

.product-mega-overlay .product-name a {
    color: #333;
    text-decoration: none;
    transition: all .3s ease;
    display: block;
    padding: 5px 0
}

.product-mega-overlay .product-name a:hover {
    color: #FD6E05
}

@media (max-width: 1200px) {
    .product-mega-overlay .mega-menu-content {
        max-width: 1000px
    }

    .product-mega-overlay .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px
    }
}

@media (max-width: 768px) {
    .product-mega-overlay {
        position: absolute;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%)
    }

    .product-mega-overlay .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .product-mega-overlay .product-image {
        height: 80px
    }

    .product-mega-overlay .product-name {
        font-size: 14px
    }
}

/* Home stats bar */
.home-stats{
    width:100%;
    padding:20px 0
}
.home-stats .stats-bar{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fafafa;
    border:1px solid #eee;
    padding:30px 40px
}
.home-stats .stat-item{
    display:flex;
    align-items:center;
    gap:18px
}
.home-stats .stat-number{
    font-size:64px;
    font-weight:700;
    color:#F5A200;
    line-height:1
}
.home-stats .stat-number span{
    font-size:.6em;
    margin-left:4px
}
.home-stats .stat-text{
    color:#666;
    letter-spacing:.5px
}
.home-stats .stat-text .line1{
    font-weight:700
}
.home-stats .stat-text .line2{
    font-size:14px
}
.home-stats .stat-divider{
    height:60px;
    width:1px;
    background:#ddd
}
@media(max-width:1024px){
    .home-stats .stats-bar{flex-wrap:wrap;gap:20px;justify-content:space-around}
    .home-stats .stat-divider{display:none}
    .home-stats .stat-number{font-size:48px}
}

/* Blog categories inline links */
/* .blog-categories a.pcat{color:#FD6E05;text-decoration:underline} */
.blog-categories .pcat-item:last-child .sep{display:none}

.m-menu {
    display: none;
    position: relative;
    width: 30px;
    height: 40px;
    cursor: pointer;
    z-index: 99
}

.m-menu span {
    position: absolute;
    background: #FD6E05;
    height: 2px;
    border-radius: 4px;
    right: 0px;
    transition: all .2s linear
}

.m-menu span:nth-child(1) {
    width: 30px;
    top: 25%
}

.m-menu span:nth-child(2) {
    width: 30px;
    top: 48%
}

.m-menu span:nth-child(3) {
    width: 30px;
    top: 73%
}

.m-menu.act span {
    top: 48%;
    width: 32px
}

.m-menu.act span:nth-child(1) {
    transform: rotate(45deg)
}

.m-menu.act span:nth-child(2) {
    width: 0
}

.m-menu.act span:nth-child(3) {
    transform: rotate(-45deg)
}
}

@media(min-width:1025px) {
    #liinquiry {
        display: flex;
        align-items: center
    }

    #liinquiry a {
        background: #FD6E05;
        height: 40px;
        padding: 0 15px;
        border-radius: 30px;
        color: #fff !important;
        transition: all .1s linear;
        text-decoration: none
    }

    #liinquiry a:hover {
        opacity: .9
    }
}

footer {
    clear: both;
    margin: 0px auto;
    padding: 0px;
    background-color: var(--hovercolor)
}

footer ul {
    list-style: none;
    padding: 0px
}

footer .foot-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 0px;
    border-bottom: 1px solid #FFFFFF65
}

footer .foot-main .foot-item {
    width: 25%
}

footer .foot-title {
    font-size: var(--fontsize22);
    font-weight: var(--fontbold5);
    margin-bottom: 20px;
    text-transform: capitalize
}

footer .foot-item.foot-info {
    width: 30%;
    box-sizing: border-box;
    padding-right: 5%
}

footer .foot-touch .foot-inner {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
    color: var(--footercolor)
}

footer .foot-touch .foot-inner .icon {
    width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

footer .foot-touch .foot-inner .content {
    flex: 1;
    padding-left: 10px
}

footer .foot-touch .foot-inner .content a {
    transition: all .1s linear
}

footer .foot-touch .foot-inner .content:hover a {
    color: #FD6E05
}

footer .foot-touch .foot-inner .content span {
    margin-right: 4px
}

footer .foot-share {
    margin-top: 20px
}

footer .foot-share ul {
    display: flex;
    flex-wrap: wrap
}

footer .foot-share ul a {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #FFFFFF;
    background-color: var(--footercolor);
    transition: all .1s linear
}

footer .foot-share ul a:hover {
    background-color: #FD6E05
}

footer .foot-list {
    display: flex;
    flex-wrap: wrap
}

footer .foot-list li {
    width: 50%
}

footer .foot-list li a {
    display: inline-block;
    padding: 4px 0px;
    text-transform: capitalize;
    color: var(--footercolor)
}

footer .foot-list li a:hover {
    color: #FD6E05
}

footer .logo {
    display: block;
    margin-bottom: 16px
}

footer .logo img {
    width: auto;
    max-height: 60px
}

footer .foot-categories .foot-list li {
    width: 100%
}

footer .foot-item.foot-code {
    width: 12%
}

footer .foot-code img {
    width: auto;
    height: 140px
}

footer .copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    padding: 12px;
    color: var(--footercolor);
    font-size: var(--fontsize14)
}

footer .copyright a {
    margin-left: 10px
}

footer .copyright a:hover {
    color: #FD6E05
}

footer .gotop {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: var(--fontbold6);
    cursor: pointer;
    transform: rotate(180deg);
    opacity: 0
}

footer .gotop em {
    font-weight: var(--fontbold3);
    font-size: var(--fontsize20) !important;
    color: #FFFFFF;
    background: #FD6E05;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

.bottom-btn {
    background: #fbfbfb;
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, .2);
    transform: translateY(0);
    transition: all .2s linear;
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
    display: none;
    opacity: 1
}

.bottom-btn .btn-item {
    width: 20%;
    height: 55px;
    transition: all .2s linear;
    position: relative
}

.bottom-btn .btn-item a,
.bottom-btn .btn-item div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #222;
    text-transform: capitalize
}

.bottom-btn .btn-item em,
.bottom-btn .btn-item i {
    font-size: var(--fontsize20);
    line-height: 1
}

.bottom-btn .btn-item div,
.bottom-btn .btn-item p {
    font-size: var(--fontsize12);
    text-transform: capitalize
}

.bottom-btn.act {
    transform: translateY(60px) !important;
    opacity: 0
}

.bottom-btn.bottom-btn-keep {
    transform: translateY(0) !important;
    opacity: 1
}

.mobile-bottom-bag {
    display: none
}

.bottom-btn.bottom-btn-menu {
    transform: translateY(60px) !important;
    opacity: 0
}

.rfixed {
    position: fixed;
    bottom: calc(150px + constant(safe-area-inset-bottom));
    bottom: calc(150px + env(safe-area-inset-bottom));
    right: 50px;
    z-index: 99
}

.rfixed-sc {
    width: 40px;
    height: 40px;
    background: #FD6E05;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #FFFFFF;
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
    display: none
}

.rfixed-sc em {
    font-size: var(--fontsize20)
}

.rfixed-scnum {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #d4322c;
    border-radius: 50%;
    text-align: center;
    font-size: var(--fontsize12);
    color: #FFFFFF;
    transform: scale(.9);
    line-height: 16px
}

footer .gotop.act {
    animation: gotop .5s forwards
}

@keyframes gotop {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@media (min-width:1024px) {
    .head-info .nav-ul>li .submenu {
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: all .3s ease-in-out
    }

    .head-info .nav-ul>li:hover>a {
        color: #FD6E05
    }

    .head-info .nav-ul>li:hover .submenu {
        transform: scaleY(1);
        opacity: 1
    }

    .head-info .nav-ul>li:hover .submenu li:hover ul {
        display: block
    }
}

@media(max-width:1024px) {
    .bottom-btn {
        display: flex
    }

    .m-menu {
        display: block;
    }

    .rfixed .gotop {
        display: none
    }

    footer {
        margin-bottom: calc(60px + constant(safe-area-inset-bottom));
        margin-bottom: calc(60px + env(safe-area-inset-bottom))
    }

    footer .gotop {
        opacity: 1;
        margin: 0px
    }

    footer .gotop em {
        width: 38px;
        height: 38px;
        font-size: var(--fontsize20) !important
    }

    footer .foot-main .foot-item {
        width: 100%;
        margin-top: 30px
    }

    footer .foot-main .foot-item:first-child {
        margin-top: 0px
    }

    footer .foot-main .foot-item.foot-code {
        display: none
    }

    footer .foot-title {
        margin-bottom: 10px
    }
}

@media(max-width:1366px) {
    body {
        padding-top: 120px
    }

    .head-info {
        height: 80px
    }

    .head-info .nav-ul>li {
        margin: 0px
    }

    .head-info .nav-ul>li a {
        font-size: var(--fontsize16)
    }

    .head-company {
        display: none
    }
}

@media (max-width:1024px) {
    body {
        padding-top: 0px
    }

    .l-wrap {
        padding: 0px 15px
    }

    .lang {
        transition: all .2s linear;
        margin-top: 2px
    }

    .lang-icon img {
        width: 36px
    }

    .lang-icon span {
        display: none
    }

    .lang-drop {
        display: none
    }

    .lang-drop.active {
        display: block;
        top: calc(100% + 13px)
    }

    header {
        position: static;
        transform: none
    }

    .head-link {
        padding: 10px 0px;
        border-top: 1px solid #EEEEEE
    }

    .head-link .item {
        width: 100%;
        color: var(--introcolor);
        font-size: var(--fontsize17)
    }

    .head-link .item em {
        font-size: var(--fontsize22);
        color: #FD6E05
    }

    .head-link .item a {
        color: var(--fontcolor)
    }

    .head-top {
        display: none
    }

    .head-info,
    header.is-active .head-info {
        height: 60px;
        box-shadow: 1px 2px 10px rgba(0, 0, 0, .15)
    }

    .head-info .head-logo a img {
        max-height: 50px
    }

    .head-info .search-box {
        width: 100%;
        height: auto;
        background: #FFFFFF;
        z-index: 2
    }

    .head-info .search-box .head-search {
        display: none
    }

    .head-info .search-box .search-input {
        display: flex;
        position: static;
        opacity: 1;
        transform: none;
        visibility: inherit;
        box-shadow: none;
        width: 92%;
        margin: 10px auto;
        border: 1px solid #EEE;
        border-radius: 4px
    }

    .head-info .search-box .search-input input {
        flex: 1;
        padding-left: 20px;
        height: 45px
    }

    .head-info .search-box .search-input button {
        width: 45px;
        height: 45px
    }

    .head-info .head-nav {
        position: fixed;
        left: 100%;
        top: 0px;
        width: 100%;
        height: 100vh;
        background: #FFFFFF;
        transition: all .15s linear;
        opacity: 0;
        visibility: hidden;
        z-index: 99;
        padding-top: 60px
    }

    .head-info .head-nav.head-nav-act {
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-end;
        left: 0px;
        opacity: 1;
        visibility: inherit
    }

    .head-info .head-nav .opacity {
        width: 100%;
        height: 100vh;
        position: fixed;
        left: 0px;
        top: 60px;
        z-index: 1
    }

    .head-info .head-nav .nav-ul {
        display: block;
        width: 92%;
        height: calc(100vh - 111px);
        padding: 0px;
        padding-bottom: 100px;
        overflow: hidden;
        overflow-y: auto;
        background: #FFFFFF;
        z-index: 2
    }

    .head-info .head-nav .nav-ul>li {
        height: auto;
        display: block
    }

    .head-info .head-nav .nav-ul>li.cur>a {
        color: #FD6E05
    }

    .head-info .head-nav .nav-ul>li.cur>em {
        transform: rotate(0);
        color: #FD6E05
    }

    .head-info .head-nav .nav-ul>li a {
        color: var(--fontcolor);
        font-size: var(--fontsize18);
        display: block;
        width: 100%;
        padding: 10px 0px;
        font-weight: var(--fontbold4);
        padding-right: 40px;
        text-align: left
    }

    .head-info .head-nav .nav-ul>li a.inmenu_1,
    .head-info .head-nav .nav-ul>li a.inmenu_1+em {
        color: #FD6E05
    }

    .head-info .head-nav .nav-ul>li>em {
        transform: rotate(-90deg);
        position: absolute;
        right: 0px;
        top: 6px;
        font-size: var(--fontsize20);
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        cursor: pointer;
        transition: all .1s linear
    }

    .head-info .nav-ul>li ul {
        box-shadow: none
    }

    .head-info .head-nav .nav-ul>li>.submenu {
        display: none;
        opacity: 1;
        visibility: inherit;
        position: static;
        transform: none;
        transition: none;
        padding-left: 15px;
        min-width: inherit;
        background: 0 0
    }

    .head-info .head-nav .nav-ul>li>.submenu .item-info {
        display: none
    }

    .head-info .head-nav .nav-ul>li>.submenu em,
    .head-info .head-nav .nav-ul>li>.submenu i {
        display: none
    }

    .head-info .head-nav .nav-ul>li>.submenu a {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-right: 15px
    }

    .head-info .head-nav .nav-ul>li>.submenu ul {
        display: block;
        position: static;
        background: 0 0;
        padding: 0px 0px 0px 15px
    }

    .head-lang {
        margin-left: auto;
        margin-right: 20px
    }

    @media(max-width:768px) {
        footer .foot-main {
            padding: 20px 0px
        }

        footer .foot-main .foot-item {
            margin-top: 20px
        }

        footer .copyright {
            padding: 20px 0px;
            font-size: var(--fontsize14)
        }
    }

    .toast-title {
        font-weight: var(--fontbold7)
    }

    .toast-message {
        -ms-word-wrap: break-word;
        word-wrap: break-word
    }

    .toast-message a,
    .toast-message label {
        color: #FFFFFF
    }

    .toast-message a:hover {
        color: #CCCCCC;
        text-decoration: none
    }

    .toast-close-button {
        position: relative;
        right: -.3em;
        top: -.3em;
        float: right;
        font-size: var(--fontsize20);
        font-weight: var(--fontbold7);
        color: #FFFFFF;
        -webkit-text-shadow: 0 1px 0 #FFFFFF;
        text-shadow: 0 1px 0 #FFFFFF;
        opacity: .8;
        line-height: 1
    }

    .toast-close-button:focus,
    .toast-close-button:hover {
        color: var(--fontcolor);
        text-decoration: none;
        cursor: pointer;
        opacity: .4
    }

    .rtl .toast-close-button {
        left: -.3em;
        float: left;
        right: .3em
    }

    button.toast-close-button {
        padding: 0px;
        cursor: pointer;
        background: 0 0;
        border: 0;
        -webkit-appearance: none
    }

    .toast-center-center {
        top: 40%;
        right: 0px;
        width: 100%;
        transform: translateY(-50%)
    }

    .toast-top-center {
        top: 20%;
        right: 0px;
        width: 100%
    }

    .toast-bottom-center {
        bottom: 0px;
        right: 0px;
        width: 100%
    }

    .toast-top-full-width {
        top: 0px;
        right: 0px;
        width: 100%
    }

    .toast-bottom-full-width {
        bottom: 0px;
        right: 0px;
        width: 100%
    }

    .toast-top-left {
        top: 12px;
        left: 12px
    }

    .toast-top-right {
        top: 12px;
        right: 12px
    }

    .toast-bottom-right {
        right: 12px;
        bottom: 12px
    }

    .toast-bottom-left {
        bottom: 12px;
        left: 12px
    }

    #toast-container {
        position: fixed;
        z-index: 999999;
        pointer-events: none
    }

    #toast-container * {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }

    #toast-container>div {
        font-size: var(--fontsize16);
        position: relative;
        pointer-events: auto;
        overflow: hidden;
        margin: 0px 0px 6px;
        padding: 15px 15px 15px 50px;
        width: 300px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        background-position: 15px center;
        background-repeat: no-repeat;
        -moz-box-shadow: 0 0 12px #999;
        -webkit-box-shadow: 0 0 12px #999;
        box-shadow: 0 0 12px #999;
        color: #FFFFFF;
        opacity: .9
    }

    #toast-container>div.rtl {
        direction: rtl;
        padding: 15px 50px 15px 15px;
        background-position: right 15px center
    }

    #toast-container>div:hover {
        -moz-box-shadow: 0 0 12px var(--fontcolor);
        -webkit-box-shadow: 0 0 12px var(--fontcolor);
        box-shadow: 0 0 12px var(--fontcolor);
        opacity: 1;
        cursor: pointer
    }

    #toast-container>.toast-info {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=) !important
    }

    #toast-container>.toast-error {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important
    }

    #toast-container>.toast-success {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important
    }

    #toast-container>.toast-warning {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important
    }

    #toast-container.toast-bottom-center>div,
    #toast-container.toast-center-center>div,
    #toast-container.toast-top-center>div {
        width: 300px;
        margin-left: auto;
        margin-right: auto
    }

    #toast-container.toast-bottom-full-width>div,
    #toast-container.toast-top-full-width>div {
        width: 96%;
        margin-left: auto;
        margin-right: auto
    }

    .toast {
        background-color: #030303
    }

    .toast-success {
        background-color: #51a351
    }

    .toast-error {
        background-color: #bd362f
    }

    .toast-info {
        background-color: #2f96b4
    }

    .toast-warning {
        background-color: #f89406
    }

    .toast-progress {
        position: absolute;
        left: 0px;
        bottom: 0px;
        height: 4px;
        background-color: var(--fontcolor);
        opacity: .4
    }

    @media all and (max-width:240px) {
        #toast-container>div {
            padding: 8px 8px 8px 50px;
            width: 11em
        }

        #toast-container>div.rtl {
            padding: 8px 50px 8px 8px
        }

        #toast-container .toast-close-button {
            right: -.2em;
            top: -.2em
        }

        #toast-container .rtl .toast-close-button {
            left: -.2em;
            right: .2em
        }
    }

    @media all and (min-width:241px) and (max-width:480px) {
        #toast-container>div {
            padding: 8px 8px 8px 50px;
            width: 18em
        }

        #toast-container>div.rtl {
            padding: 8px 50px 8px 8px
        }

        #toast-container .toast-close-button {
            right: -.2em;
            top: -.2em
        }

        #toast-container .rtl .toast-close-button {
            left: -.2em;
            right: .2em
        }
    }

    @media all and (min-width:481px) and (max-width:768px) {
        #toast-container>div {
            padding: 15px 15px 15px 50px;
            width: 25em
        }

        #toast-container>div.rtl {
            padding: 15px 50px 15px 15px
        }
    }

    @media (max-width:768px) {
        #toast-container>div {
            font-size: var(--fontsize15);
            opacity: 1
        }
    }

    @media (max-width:415px) {
        #toast-container>div {
            font-size: var(--fontsize13)
        }
    }