*
 * author iikurs
 * Init
 * Bootstrap Change
 * Header
 * Footer
 * Page
 * Transition
**/

/* Root Start */
:root {
    --theme-color: 0, 81, 164;
    --theme-light-color: 24, 102, 183;
    --theme-dark-color: 5, 49, 95;
    --theme-assist-color: 13, 71, 161;
}

/* Root End */

/* Init Start */
*::before,
*::after {
    font-size: inherit;
    font-style: inherit;
    font-family: inherit;
    color: inherit;
}

html {
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: "Microsoft YaHei", "Ã¥Â¾Â®Ã¨Â½Â¯Ã©â€ºâ€¦Ã©Â»â€˜";
    line-height: 1.2;
    font-weight: 400;
    font-style: normal;
    color: #333333;
}

dl, ol, ul {
    padding-inline-start: 0;
    padding-left: 0;
    margin-bottom: 0;
}

li {
    list-style: none;
}

input, textarea, button {
    border: none;
    border-radius: unset;
    background-color: transparent;
}

input:focus, textarea:focus, button:focus {
    outline: none;
}

a {
    color: inherit;
    font-size: inherit;
    text-decoration: none;
    transition: color ease-out 0.3s;
}

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

img {
    max-width: 100%;
}

i {
    font-style: normal;
}

.icon {
    display: inline-block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.tab .tab-main-list .tab-main-item {
    cursor: pointer;
}

.tab .tab-content-list .tab-content-item {
    display: none;
}

.tab .tab-content-list .tab-content-item.active {
    display: block;
}

.image-wrap,
.full-image-wrap,
.fill-image-wrap {
    position: relative;
    max-width: 100%;
    font-size: 0;
    overflow: hidden;
    z-index: 1;
}

.center-image-wrap {
    text-align: center;
}

.full-image-wrap {
    width: 100%;
}

.fill-image-wrap {
    width: 100%;
    height: 100%;
}

.image-wrap img,
.full-image-wrap img,
.fill-image-wrap img {
    display: block;
    max-width: 100%;
    object-fit: cover;
    transition: transform ease-out 0.3s;
}

.center-image-wrap img {
    margin: 0 auto;
}

.full-image-wrap img {
    width: 100%;
}

.fill-image-wrap img {
    width: 100%;
    height: 100%;
}

.image-wrap .image-mask,
.full-image-wrap .image-mask,
.fill-image-wrap .image-mask {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.theme-btn-wrap {
    display: flex;
    align-items: center;
}

.theme-btn-wrap .theme-btn {
    padding: 0.5rem 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(var(--theme-color));
    border-radius: 0.3rem;
    font-size: 0.875rem;
    color: #ffffff;
    border: unset !important;
    outline: unset !important;
}

.theme-btn-wrap .theme-btn:not(:last-child) {
    margin-right: 1rem;
}

.theme-btn-wrap .theme-btn:hover {
    background: linear-gradient(to bottom, rgb(var(--theme-dark-color)), rgb(var(--theme-color)));
}

.theme-btn-wrap .theme-btn .theme-btn-icon {
    margin-right: 0.25rem;
    font-size: 1em;
}

/* Init End */

/* Plugins Change Start */
.container,
.container-fluid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.container {
    max-width: 1500px;
}

.swiper-container-wrap {
    position: relative;
}

.swiper-container-wrap .swiper-navigation-prev,
.swiper-container-wrap .swiper-navigation-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    width: 3rem;
    height: 3rem;
    margin-top: -1.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 10;
}

.swiper-container-wrap .swiper-navigation-prev {
    background-image: url("/template/pc/static/icon/swiper-prev-white.svg");
    left: 2rem;
}

.swiper-container-wrap .swiper-navigation-prev.swiper-navigation-black {
    background-image: url("/template/pc/static/icon/swiper-prev-black.svg");
}

.swiper-container-wrap .swiper-navigation-next {
    background-image: url("/template/pc/static/icon/swiper-next-white.svg");
    right: 2rem;
}

.swiper-container-wrap .swiper-navigation-next.swiper-navigation-black {
    background-image: url("/template/pc/static/icon/swiper-next-black.svg");
}

.swiper-box .swiper-thumb {
    margin-top: 2rem;
}

.swiper-box .swiper-thumb .swiper-container-wrap {
    padding: 0 4rem;
}

.swiper-box .swiper-navigation-prev,
.swiper-box .swiper-navigation-next {
    width: 4rem;
    height: 4rem;
    margin-top: -2rem;
}

.swiper-box .swiper-thumb .swiper-navigation-prev {
    left: 0;
    background-position: left center;
    opacity: 0.6;
}

.swiper-box .swiper-thumb .swiper-navigation-next {
    right: 0;
    background-position: right center;
    opacity: 0.6;
}

.swiper-container-wrap .swiper-pagination-wrap {
    margin-top: 3rem;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.swiper-container-wrap .swiper-pagination-bullet {
    width: 1.875rem;
    height: 0.25rem;
    border-radius: 0;
    opacity: 0.5;
}

.swiper-container-wrap .swiper-pagination-bullet:not(:last-child) {
    margin-right: 1rem;
}

.swiper-container-wrap .swiper-pagination-bullet-active {
    background-color: rgb(var(--theme-color));
    opacity: 1;
}

.swiper-container-wrap .swiper-pagination-number {
    border: 1px solid #292929;
    border-radius: 100%;
    text-align: center;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #292929;
    transition: all ease 0.5s;
}

.swiper-pagination-white .swiper-pagination-number {
    border-color: #ffffff;
    color: #ffffff;
}

.swiper-container-wrap .swiper-pagination-number:not(:last-child) {
    margin-right: 1.5rem;
}

.swiper-container-wrap .swiper-pagination-number-active {
    background-color: #292929;
    color: #ffffff;
}

.swiper-pagination-white .swiper-pagination-number-active {
    background-color: #ffffff;
    color: #292929;
}

/* Plugins Change End */

/* Global Start */
.global-slide img{
    width: 100%;
}

.global-slide .swiper-pagination-wrap{
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    width: 100%;
    z-index: 10;
}

.pagination{
    display: flex;
    justify-content: center;
    padding: 2rem 0 0;
    list-style: none;
    text-align: center;
}

.pagination li {
    display: block;
    margin: 0 0.375rem;
    font-size: 0.875rem;
    border: none;
    border-radius: 0.25rem;
}

.pagination li > * {
    display: block;
    border-radius: 0.25rem;
    color: #6e6e6e;
    background: #ffffff;
    padding: 0.75rem 1rem;
    border: 1px solid #DCDCDC;
}

.pagination li.active > *,
.pagination li:hover > *,
.pagination li > *.current{
    background: rgb(var(--theme-color));
    color: #ffffff;
    border: 1px solid rgb(var(--theme-color));
}

.pagination li.disabled > *,
.pagination li > *.disabled{
    background: #eeeeee;
    color: #808080;
    border-color: #eeeeee;
}

#contactBar {
    position: fixed;
    right: 0;
    top: 45%;
    z-index: 100;
}

#contactBar .contact-bar-list {
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
}

#contactBar .contact-bar-item {
    position: relative;
    z-index: 1;
}

#contactBar .contact-bar-item:not(:last-child) {
    border-bottom: 1px solid #ffffff;
}

#contactBar .contact-bar-link {
    padding: 0.75rem;
    display: block;
    text-align: center;
    background-color: rgb(var(--theme-color));
}

#contactBar .contact-bar-icon {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

#contactBar .contact-bar-icon.tel-icon {
    background-image: url('/template/pc/static/icon/conatct-bar-tel.png');
}

#contactBar .contact-bar-icon.qq-icon {
    background-image: url('/template/pc/static/icon/conatct-bar-qq.png');
}

#contactBar .contact-bar-icon.wechat-icon {
    background-image: url('/template/pc/static/icon/conatct-bar-wechat.png');
}

#contactBar .contact-bar-icon.top-icon {
    background-image: url('/template/pc/static/icon/conatct-bar-top.png');
}

#contactBar .contact-hide-wrap {
    padding: 1rem;
    display: none;
    position: absolute;
    right: 100%;
    top: 0;
    width: max-content;
    background-color: #ffffff;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    font-size: 1rem;
    color: #333333;
    z-index: -1;
}

#contactBar .contact-bar-item:hover .contact-hide-wrap {
    display: block;
}

#contactBar .contact-hide-wrap img {
    width: 10rem;
}

#productCart {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 100;
    box-shadow: 0 0 1rem rgba(var(--theme-color), 0.2);
}

#productCart .cart-wrap {
    width: 20rem;
    background-color: #ffffff;
}

#productCart .cart-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgb(var(--theme-color));
}

#productCart .cart-top-title {
    font-size: 0.875rem;
    color: #ffffff;
}

#productCart .cart-top-icon {
    cursor: pointer;
}

#productCart .cart-top-icon::before {
    content: "\f055";
    display: block;
    font-size: 1.25rem;
    color: #ffffff;
}

#productCart.active .cart-top-icon::before {
    content: '\f056';
}

#productCart .cart-body-wrap {
    transition: height ease-out 0.3s;
    height: 0;
}

#productCart.active .cart-body-wrap {
    height: unset;
}

#productCart .cart-body {
    padding: 1rem;
}

#productCart .cart-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}

#productCart .cart-item {
    position: relative;
    padding: 0.25rem;
    border: 1px solid #dcdcdc;
}

#productCart .cart-item .cart-item-del {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #ffffff;
    text-align: center;
    line-height: 1.5rem;
    font-size: 0.875rem;
    color: #000000;
    z-index: 10;
}

#productCart .cart-control {
    border-top: 1px solid #dcdcdc;
    padding: 1rem;
}

#productCart .cart-control-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#productCart .cart-control-item {
    padding: 0.25rem 0.5rem;
    border: 1px solid #dcdcdc;
    font-size: 0.875rem;
    color: #666666;
    cursor: pointer;
    user-select: none;
}

#productForm{
    display: none;
    padding: 2rem;
}

#productForm .product-form-section{
    margin-bottom: 2rem;
}

#productForm .product-form-title{
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: #111111;
}

#productForm .product-list{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

#productForm .product-item{
    text-align: center;
}

#productForm .product-item-image{
    border: 1px solid #cccccc;
}

#productForm .product-item-title{
    margin-top: 0.5rem;
}

#productForm .form-control{
    height: auto;
    border-radius: unset;
    border: 1px solid #cccccc;
    outline: none;
    box-shadow: none;
    font-size: 0.875rem;
}

#productForm .form-control:focus{
    border-color: rgb(var(--theme-color));
}


#productForm .form-btn-wrap{
    text-align: right;
}

#productForm .form-submit{
    padding: 0.75rem 2rem;
    background-color: rgb(var(--theme-color));
    font-size: 1rem;
    color: #ffffff;
}

.product-net-section .product-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2rem;
}

.product-net-section .product-list .product-item-image {
    border: 1px solid #dadada;
}

.product-net-section .product-list .product-item-image:hover {
    border-color: rgb(var(--theme-color));
}

.product-net-section .product-list .product-item-body {
    padding-top: 0.875rem;
}

.product-net-section .product-list .product-item-title {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(var(--theme-color));
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-net-section .product-list .product-item-btn-wrap{
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.product-net-section .product-list .product-item-btn{
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #ffffff;
    background-color: rgb(var(--theme-color));
    border-radius: 0.25rem;
}

.product-net-section .product-list .product-item-btn:not(:last-child){
    margin-right: 1rem;
}

.product-list-section .product-list {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.product-list-section .product-list .product-item {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #dadada;
}

.product-list-section .product-list .product-item:hover{
    background-color: #f9f9f9;
}

.product-list-section .product-list .product-item-image {
    width: 20%;
    border: 1px solid #dadada;
}

.product-list-section .product-list .product-item-image:hover {
    border-color: rgb(var(--theme-color));
}

.product-list-section .product-list .product-item-body {
    position: relative;
    padding-left: 2rem;
    width: 80%;
}

.product-list-section .product-list .product-item-title {
    max-width: 70%;
    margin-bottom: 0;
    font-size: 1.375rem;
    font-weight: 600;
    color: rgb(var(--theme-color));
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-list-section .product-list .product-item-attr-list{
    margin-top: 1.5rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 4rem;
}

.product-list-section .product-list .product-item-attr-item{
    font-size: 0.875rem;
    color: #666666;
}

.product-list-section .product-list .product-item-btn-wrap{
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-wrap: wrap;
}

.product-list-section .product-list .product-item-btn{
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #ffffff;
    background-color: rgb(var(--theme-color));
    border-radius: 0.25rem;
    cursor: pointer;
}

.product-list-section .product-list .product-item-btn:not(:last-child){
    margin-right: 2rem;
}

.article-card-section .article-list{
    display: grid;
    gap: 2.5rem 2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-card-section .article-item {
    background-color: #ffffff;
}

.article-card-section .article-item-href{
    display: block;
    height: 100%;
}

.article-card-section .article-item .article-item-image{
    height: 16rem;
}

.article-card-section .article-item:hover .article-item-image img{
    transform: scale(1.1);
}

.article-card-section .article-item-body {
    padding: 1.25rem 1.5rem 2rem;
}

.article-card-section .article-item-title{
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.article-card-section .article-item:hover .article-item-title{
    color: rgb(var(--theme-color));
}

.article-card-section .article-item-desc{
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.75;
    font-size: 0.875rem;
    color: #808080;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.article-card-section .article-item-btn{
    width: 7rem;
    display: block;
    margin-top: 0.75rem;
    padding: 0.625rem 1rem;
    border: 1px solid rgb(var(--theme-color));
    line-height: 1;
    text-align: center;
    font-size: 0.875rem;
    color: rgb(var(--theme-color));
    transition: background-color ease-out 0.3s, color ease-out 0.3s;
}

.article-card-section .article-item:hover .article-item-btn{
    background-color: rgb(var(--theme-color));
    color: #ffffff;
}

.article-list-section .article-list{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.article-list-section .article-item {
    background-color: #ffffff;
}

.article-list-section .article-item-href{
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    height: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #dadada;
}

.article-list-section .article-item:hover .article-item-href{
    background-color: #e5e5e5;
}

.article-list-section .article-item .article-item-image{
    width: 30%;
    height: 16rem;
    border: 1px solid #dadada;
}

.article-list-section .article-item:hover .article-item-image img{
    transform: scale(1.1);
}

.article-list-section .article-item-body {
    width: 70%;
    padding: 1rem 1rem 0 1.5rem;
}

.article-list-section .article-item-title{
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.5rem;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.article-list-section .article-item:hover .article-item-title{
    color: rgb(var(--theme-color));
}

.article-list-section .article-item-desc{
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.75;
    font-size: 0.875rem;
    color: #808080;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.article-list-section .article-item-btn{
    width: 7rem;
    display: block;
    margin-top: 1.25rem;
    padding: 0.625rem 1rem;
    border: 1px solid rgb(var(--theme-color));
    line-height: 1;
    text-align: center;
    font-size: 0.875rem;
    color: rgb(var(--theme-color));
    transition: background-color ease-out 0.3s, color ease-out 0.3s;
}

.article-list-section .article-item:hover .article-item-btn{
    background-color: rgb(var(--theme-color));
    color: #ffffff;
}

.article-line-section .article-list{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.article-line-section .article-item {
    background-color: #ffffff;
}

.article-line-section .article-item-href{
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    height: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #dadada;
}

.article-line-section .article-item:hover .article-item-href{
    background-color: #e5e5e5;
}

.article-line-section .article-item .article-item-image{
    width: 20%;
    height: 14rem;
    border: 1px solid #dadada;
}

.article-line-section .article-item:hover .article-item-image img{
    transform: scale(1.1);
}

.article-line-section .article-item-body {
    width: 80%;
    padding: 1rem 1rem 0 1.5rem;
}

.article-line-section .article-item-title{
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.5rem;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.article-line-section .article-item:hover .article-item-title{
    color: rgb(var(--theme-color));
}

.article-line-section .article-item-desc{
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.75;
    font-size: 0.875rem;
    color: #808080;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.article-line-section .article-item-btn{
    width: 7rem;
    display: block;
    margin-top: 1.25rem;
    padding: 0.625rem 1rem;
    border: 1px solid rgb(var(--theme-color));
    line-height: 1;
    text-align: center;
    font-size: 0.875rem;
    color: rgb(var(--theme-color));
    transition: background-color ease-out 0.3s, color ease-out 0.3s;
}

.article-line-section .article-item:hover .article-item-btn{
    background-color: rgb(var(--theme-color));
    color: #ffffff;
}

.certificate-list-section .certificate-list{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

.certificate-list-section .certificate-item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    border: 1px solid #dadada;
}

.certificate-list-section .certificate-item-title{
    margin-bottom: 0;
    font-size: 1.125rem;
}

.certificate-list-section .certificate-item-title:hover{
    color: rgb(var(--theme-color));
}

.certificate-list-section .certificate-item-btn{
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    color: #ffffff;
    background-color: rgb(var(--theme-color));
    font-size: 0.875rem;
}
/* Global End */

/* Header Start */
.header {
    position: relative;
    z-index: 1000;
}

.header {
}

.header .top-navbar {
    background-color: rgba(var(--theme-light-color), 1);
}

.header .bottom-navbar {
    background-color: rgba(var(--theme-dark-color), 1);
}

.header .top-navbar .container {
    position: relative;
}

.header .navbar-brand {
    position: absolute;
    top: 0.375rem;
    left: 1rem;
    padding: 0;
    margin-right: 0;
    font-size: 0;
}

.header .navbar-brand .logo {
    display: block;
    height: 3rem;
    object-fit: contain;
}

.header .nav-wrap {
    padding-left: 16rem;
    display: flex;
    justify-content: space-between;
}

.header .navbar-nav {
    position: relative;
    flex-direction: row;
    align-items: center;
}

.header .other-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header .other-nav .search-box {
    position: relative;
    margin-right: 2rem;
}

.header .other-nav .search-input {
    width: 15rem;
    padding: 0.625rem 0.5rem;
    background-color: #ffffff;
    border: none;
    outline: none;
    font-size: 0.875rem;
}

.header .other-nav .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
    height: 100%;
    border: none;
    outline: none;
    background-color: #dadada;
}

.header .nav-item {
    line-height: 2;
    font-size: 1rem;
    color: #ffffff;
    user-select: none;
}

.header .nav-item:not(:last-child) {
    margin-right: 2rem;
}

.header .top-navbar .lang {
    position: relative;
}

.header .nav-item .nav-link {
    position: relative;
    padding: 0.375rem 0;
    line-height: 1.5;
    color: inherit;
}

.header .top-navbar .nav-item .nav-link {
    padding: 1rem 0;
}

.header .nav-item .nav-link::before {
    content: '';
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.header .nav-item .nav-link:hover::before {
    display: block;
}

.header .sub-nav-father {
    display: flex;
    align-items: center;
}

.header .sub-nav-father .sub-nav-control {
    font-size: inherit;
    font-family: "Font Awesome 5 Pro";
    color: inherit;
}

.header .sub-nav-father .sub-nav-control:after {
    margin-left: 0.125rem;
    font-size: 1.125em;
    content: "\f107";
}

.header .sub-nav-father.active .sub-nav-control:after {
    content: "\f106";
}

.header .sub-nav-father .sub-nav {
    display: none;
    position: absolute;
    top: 99%;
    right: 0;
    width: 100%;
    min-width: 20rem;
    background-color: #ffffff;
    z-index: 50;
}

.header .sub-nav-father.active .sub-nav {
    display: block;
}

.header .sub-nav-father .sub-nav-box {
    display: flex;
}

.header .sub-nav-father .sub-nav-list {
    width: 33.33%;
    margin-bottom: 0;
    padding: 1rem 1.5rem 2rem 1.5rem;
}

.header .sub-nav-father .sub-nav-list:not(:last-child) {
    border-right: 1px solid #e0e0e0;
}

.header .sub-nav-father .sub-nav-list:first-child:last-child {
    width: 100%;
}

.header .sub-nav-father .sub-nav-title {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.2;
    color: #3c3c3c;
}

.header .sub-nav-father .sub-nav-item {
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 2.5;
    color: #444444;
}

.header .sub-nav-father .sub-nav-item:hover {
    color: rgb(var(--theme-color));
}

.mobile-header {
    display: none;
}

.mobile-header .navbar {
    padding: 0.5rem 1rem;
    background-color: #ffffff;
}

.mobile-header .logo-wrap {
    max-width: 50%;
}

.mobile-header #mobileNavbarNav {
    padding-top: 0.5rem;
}

.mobile-header .nav-link {
    color: #333333 !important;
    font-size: 1rem;
}

.mobile-header .nav-item.active .nav-link {
    color: rgb(var(--theme-color)) !important;
}

.mobile-header .son-control {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.mobile-header .son-control::after {
    margin-left: 0.5rem;
    content: "\f0d7";
    font-weight: bold;
}

.mobile-header .son-father.active > .son-control::after {
    content: "\f0d8";
}

.mobile-header .son-list {
    display: none;
    padding: 0.5rem 1rem;
    border: 1px solid #dedede;
}

.mobile-header .son-father.active > .son-list {
    display: block;
}

.mobile-header .son-link {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #666666;
}

.mobile-header .son-item.active > .son-link {
    color: rgb(var(--theme-color));
}
/* Header End */

/* Footer Start */
.footer{
    background-image: linear-gradient(to bottom right, rgb(var(--theme-dark-color)), rgba(var(--theme-dark-color), 0.8));
}

.footer .footer-column{
    padding-top: 3rem;
}

.footer .footer-column .footer-column-body{
    display: flex;
    flex-wrap: wrap;
}

.footer .footer-column .footer-column-company{
    width: 40%;
}

.footer .footer-column .footer-logo-wrap{
    display: block;
    margin-bottom: 1.5rem;
    width: 12rem;
}

.footer .footer-column .contact-info-list{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.75rem;
}

.footer .footer-column .contact-info-item{
    font-size: 0.875rem;
    color: #ffffff;
}

.footer .footer-column .contact-info-item i{
    margin-right: 0.75rem;
}

.footer .footer-column .nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 60%;
}

.footer .footer-column .nav-item:not(:last-child){
    margin-right: 6rem;
}

.footer .footer-column .nav-item-title{
    position: relative;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1.375rem;
    color: #ffffff;
}

.footer .footer-column .nav-item-title::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2em;
    height: 0.25rem;
    background-color: #ffffff;
}

.footer .footer-column .nav-item-link{
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.footer .footer-column .nav-item-link:hover{
    color: #ffffff;
}

.footer .footer-power {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer .footer-power .footer-power-body {
    font-size: 0;
}

.footer .footer-power .power-text{
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.footer .footer-power .power-text:not(:first-child) {
    margin-left: 1rem;
}

.footer .footer-power a.power-text:hover{
    color: #ffffff;
}

.footer .footer-power .power-right{
    float: right;
}
/* Footer End */

/* Product Cart Start */
/* Product Cart End */

/* Home Page Start */
.home-page .page-section {
    padding-top: 5rem;
    padding-bottom: 7rem;
}

.home-page .page-section .section-title-wrap {
    margin-bottom: 2rem;
    text-align: center;
}

.home-page .page-section .section-title {
    margin-bottom: 0;
    font-size: 2.25rem;
    color: #000000;
}

.home-page .page-section .section-subtitle {
    margin-top: 0.25rem;
    margin-bottom: 0;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    color: #b5b5b5;
}

.home-page .page-section .tab-main-list{
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home-page .page-section .tab-main-item{
    margin: 0.5rem 0.75rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #dedede;
    background-color: #f5f5f5;
    font-size: 1rem;
    color: #808080;
    transition: background-color ease-out 0.3s, border-color ease-out 0.3s, color ease-out 0.3s;
}

.home-page .page-section .tab-main-item.active,
.home-page .page-section .tab-main-item:hover{
    background-color: rgb(var(--theme-color));
    border-color: rgb(var(--theme-color));
    color: #ffffff;
}

.home-page .mobile-search{
    display: none;
}

.home-page .business-section .business-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.home-page .business-section .business-item {
    position: relative;
    border: 1px solid #ececec;
}

.home-page .business-section .business-item-image {
    height: 40rem;
}

.home-page .business-section .business-item:hover .business-item-image img{
    transform: scale(1.05);
}

.home-page .business-section .business-item-body {
    position: absolute;
    bottom: 2rem;
    left: 0;
    padding-left: 2rem;
    width: 100%;
    z-index: 5;
}

.home-page .business-section .business-item-title {
    margin-bottom: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
}

.home-page .business-section .business-item-more {
    margin-top: 1rem;
    text-align: left;
}

.home-page .business-section .business-item-btn {
    display: inline-block;
    padding: 0.625rem 2rem;
    color: #000000;
    border: 2px solid #000000;
}

.home-page .business-section .business-item-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.home-page .application-section{
    background-color: #f5f5f5;
}

.home-page .about-section .intro-body {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
}

.home-page .about-section .intro-image {
    width: 48%;
}

.home-page .about-section .intro-content {
    width: 50%;
    padding: 2rem 0 2rem 2rem;
}

.home-page .about-section .intro-name {
    margin-bottom: 0;
    letter-spacing: 0.125rem;
    font-size: 1.875rem;
    color: #000000;
}

.home-page .about-section .intro-desc {
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 2;
    font-size: 1rem;
    color: #999999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    overflow: hidden;
}

.home-page .about-section .intro-more {
    margin-top: 1.5rem;
}

.home-page .about-section .intro-btn {
    display: inline-block;
    padding: 0.625rem 2rem;
    border: 1px solid #000000;
    font-size: 1rem;
    color: #000000;
}

.home-page .about-section .intro-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.home-page .about-section .brand-body{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-page .about-section .brand-list{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    width: 65%;
}

.home-page .about-section .brand-item{
    text-align: center;
}

.home-page .about-section .brand-item-image{
    border: 1px solid #ececec;
}

.home-page .about-section .brand-item-title{
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.home-page .about-section .brand-image{
    width: 35%;
}


.home-page .about-section .images-show-list{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.home-page .about-section .images-show-item{
    text-align: center;
}

.home-page .about-section .images-show-item-image{
    height: 15rem;
}

.home-page .about-section .images-show-item-title{
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

.home-page .news-section{
    background-color: #f5f5f5;
}
/* Home Page End */

/* Sub Page Start */
.sub-page{
    background-color: #f5f5f5;
}

.page-with-sidebar{
    padding-top: 4rem;
    padding-bottom: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.page-with-sidebar .page-sidebar-wrap{
    width: 18%;
}

.page-with-sidebar .sidebar-search{
    position: relative;
    display: flex;
    align-items: stretch;
    margin-bottom: 2rem;
}

.page-with-sidebar .sidebar-search input{
    width: 80%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    background-color: #ffffff;
    border: 1px solid #dddddd;
}

.page-with-sidebar .sidebar-search button{
    width: 20%;
    padding: 0.75rem 0;
    font-size: 1.25rem;
    background-color: rgb(var(--theme-color));
    color: #ffffff;
}

.page-with-sidebar .sidebar-main{
    border: 1px solid #dadada;
}

.page-with-sidebar .sidebar-main-title {
    margin-bottom: 0;
    padding: 1.5rem;
    font-size: 1.375rem;
    color: #ffffff;
    background-color: rgb(var(--theme-color));
}

.page-with-sidebar .sidebar-main-title::after{
    content: '';
    display: block;
    margin-top: 0.5rem;
    width: 2em;
    height: 0.125rem;
    background-color: #ffffff;
}

.page-with-sidebar .sidebar-main .main-list{
    display: block;
    width: 100%;
}

.page-with-sidebar .sidebar-main .main-father>.main-list{
    display: none;
}

.page-with-sidebar .sidebar-main .main-father.active>.main-list{
    display: block;
}

.page-with-sidebar .sidebar-main .main-item{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #ffffff;
    border-top: 1px solid #dadada;
}

.page-with-sidebar .sidebar-main .main-item:last-child{
    border-bottom-width: 1px;
}

.page-with-sidebar .sidebar-main .main-father-icon{
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 3.175rem;
    text-align: center;
    line-height: 3.175rem;
    font-size: 2rem;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: inherit;
}

.page-with-sidebar .sidebar-main .main-father-icon:after{
    content: "\f107";
}

.page-with-sidebar .sidebar-main .main-father.active>.main-father-icon:after{
    content: "\f106";
    color: #ffffff;
}

.page-with-sidebar .sidebar-main .main-link{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 1rem 1.5rem;
    width: 100%;
    font-size: 1rem;
    color: #666666;
}

.page-with-sidebar .sidebar-main .grandson-main-father>.main-link{
    background-color: #ececec;
}

.page-with-sidebar .sidebar-main .main-item.active>.main-link{
    background-color: rgb(var(--theme-color));
    color: #ffffff;
}

.page-with-sidebar .sidebar-main .main-link-icon{
    position: relative;
    width: 1.5rem;
    font-size: 1em;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
}

.page-with-sidebar .sidebar-main .main-link-icon::after{
    content: '\f105';
    display: block;
    position: absolute;
    left: 0;
    top: -0.85rem;
    font-size: 1.75rem;
    line-height: 1;
}

.page-with-sidebar .page-body-wrap{
    width: 80%;
}

.page-with-sidebar .page-body-wrap{
    padding: 1.5rem 1.5rem 3rem;
    background-color: #ffffff;
}

.page-with-sidebar .page-header{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ececec;
}

.page-with-sidebar .page-header-title{
    margin-bottom: 0;
    font-size: 1.375rem;
    color: rgb(var(--theme-color))
}

.page-with-sidebar .page-header-title i{
    margin-right: 0.5rem;
}

.page-with-sidebar .page-header-position{
    font-size: 0.875rem;
    color: #808080;
}
/* Sub Page Start */

/* Business Page Start */
.business-page .page-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}

.business-page .application-section,
.business-page .article-card-section{
    background-color: #f5f5f5;
}

.business-page .page-section .section-title-wrap {
    margin-bottom: 2rem;
    text-align: center;
}

.business-page .page-section .section-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2rem;
    color: #000000;
}

.business-page .page-section .section-sub-title {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: #808080;
}

.business-page .page-section .section-more-wrap {
    margin-top: 2.5rem;
    text-align: center;
}

.business-page .page-section .section-more-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: rgb(var(--theme-assist-color));
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: #ffffff;
}

.business-page .certificate-section .certificate-item-image{
    border: 1px solid #dadada;
}
/* Business Page End */

/* Product Page Start */
.product-detail-page .product-base-wrap{
    display: flex;
    flex-wrap: wrap;
}

.product-detail-page .product-atlas{
    width: 35%;
}

.product-detail-page .product-atlas .swiper-slide{
    border: 1px solid #dadada;
}

.product-detail-page .product-atlas-thumb{
    margin-top: 1.5rem;
}

.product-detail-page .product-base-content{
    padding-left: 2rem;
    width: 65%;
}

.product-detail-page .product-title{
    padding-bottom: 3rem;
    border-bottom: 1px solid #dadada;
    font-size: 2.25rem;
    color: rgb(var(--theme-color));
}

.product-detail-page .product-attr-list{
    margin-top: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #dadada;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2rem;
}

.product-detail-page .product-attr-item{
    font-size: 1rem;
    color: #666666;
}

.product-detail-page .product-btn-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #dadada;
}

.product-detail-page .product-btn{
    margin: 0.25rem 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: #ffffff;
    background-color: rgb(var(--theme-color));
    border-radius: 0.25rem;
}

.product-detail-page .product-btn:not(:last-child){
    margin-right: 1.5rem;
}

.product-detail-page .product-detail-rap{
    margin-top: 2rem;
}

.product-detail-page .product-detail-nav{
    margin-bottom: 2rem;
}

.product-detail-page .product-recom {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #ffffff;
}

.product-detail-page .product-recom-title {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: rgb(var(--theme-color));
}

.product-detail-page .product-recom-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.product-detail-page .product-recom-item {
    text-align: center;
}

.product-detail-page .product-recom-item img {
    border: 1px solid #eeeeee;
}

.product-detail-page .product-recom-item-title {
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 0.875rem;
}
/* Product Page end */

/* Article Page Start */
/* Article Page End */

/* Application Page Start */
/* Application Page End */

/* Certificate Page Start */
.certificate-detail-page .certificate-detail-btn{
    display: block;
    margin: 0 auto;
    padding: 1rem 3rem;
    max-width: max-content;
    font-size: 0.875rem;
    color: #ffffff;
    background-color: rgb(var(--theme-color));
    border-radius: 0.25rem;
}
/* Certificate Page End */

/* Detail Page Start */
.detail-page .detail-title{
    margin-bottom: 0;
    font-size: 1.75rem;
    text-align: center;
}

.detail-page .detail-attr-list{
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.detail-page .detail-attr-item{
    font-size: 0.875rem;
    color: #666666;
}

.detail-page .detail-attr-item:not(:last-child){
    margin-right: 1.5rem;
}

.detail-page .detail-content{
    margin-top: 1.5rem;
}
/* Detail Page End */

/* About Page Start */
.about-page .culture-body .culture-advantage-wrap {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
}

.about-page .culture-body .culture-advantage-title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.about-page .culture-body .culture-advantage-item {
    word-break: break-all;
}

.about-page .culture-body tr:first-child td {
    font-weight: 600;
    background-color: rgb(var(--theme-color));
    color: #ffffff;
}

.about-page .culture-body td {
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #666666;
    border-color: #e5e5e5;
}

.about-page .history-body .history-wrap {

}

.about-page .history-body .history-item {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ececec;
}

.about-page .history-body .history-item:first-child{
    padding-top: 0;
}

.about-page .history-body .history-item-time {
    float: left;
    width: 10rem;
    color: rgb(var(--theme-color));
}

.about-page .history-body .history-item-thing {
    margin-left: 10rem;
    width: calc(100% - 10rem);
}

.about-page .culture {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.about-page .contact-name {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.about-page .contact-text {
    font-size: 1rem;
    color: #666666;
}

.about-page .form-wrap {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.about-page .form-wrap .title-wrap {
    text-align: center;
}

.about-page .form-wrap .title-wrap .sub-title {
    color: #808080;
}

.about-page .form-wrap .form {
    max-width: 80%;
    margin: 2rem auto 0;
}

.about-page .form-wrap label {
    font-size: 1rem;
}

.about-page .form-wrap button {
    display: block;
    padding: 0.5rem 2rem;
    margin: 1rem auto 0;
}

.about-page #map {
    height: 25rem;
}

.about-page .history-body .history-item{
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ececec;
}

.about-page .history-body .history-item:first-child{
    padding-top: 0;
}

.about-page .history-body .history-item-time{
    float: left;
    width: 10rem;
    color: rgb(var(--theme-color));
}

.about-page .history-body .history-item-thing{
    margin-left: 10rem;
    width: calc(100% - 10rem);
}

.about-page .culture-body .culture-advantage-wrap{
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
}

.about-page .culture-body .culture-advantage-title{
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.about-page .culture-body .culture-advantage-item{
    word-break: break-all;
}
/* About Page end */

/* Media Start */
@media (min-width: 2000px) {
    html {
        font-size: 22px;
    }

    .container {
        max-width: 80%;
    }
}

@media (max-width: 1600px) {
    .container {
        max-width: 1480px;
    }
    
    .page-with-sidebar .page-sidebar-wrap{
        width: 20%;
    }
    
    .page-with-sidebar .page-body-wrap{
        width: 76%;
    }
}

@media (max-width: 1400px) {
    .container {
        max-width: 1250px;
    }

    .header .nav-item {
        font-size: 0.875rem;
    }

    .header .nav-item:not(:last-child) {
        margin-right: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .header .navbar-brand{
        top: 0.25rem;
    }
    
    .header .nav-wrap{
        padding-left: 12rem;
    }

    .header .other-nav .search-box {
        display: none;
    }

    .header .nav-item:not(:last-child) {
        margin-right: 1rem;
    }
}

@media (max-width: 998px) {
    #contactBar {
        display: none;
    }

    .header {
        display: none;
    }

    .mobile-header {
        display: block;
    }
    
    .mobile-header .navbar{
        padding: 0.5rem 0.75rem;
    }
    
    .footer .footer-column{
        padding-top: 1.5rem;
    }
    
    .footer .footer-column .footer-column-company{
        width: 100%;
    }
    
    .footer .footer-column .footer-logo-wrap{
        margin-bottom: 1.25rem;
        width: 10rem;
    }
    
    .footer .footer-column .nav-list{
        display: none;
    }

    .footer .footer-power{
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .footer .footer-power .footer-power-body{
        text-align: center;
    }
    
    .footer .footer-power .power-right{
        float: unset;
    }
    
    .global-slide .swiper-slide img{
        /*height: 12rem;*/
    }
    
    .page-banner .page-banner-image{
        /*height: 10rem;*/
    }

    .product-net-section .product-list{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .product-net-section .product-list .product-item-btn {
        padding: 0.5rem;
    }

    .product-net-section .product-list .product-item-btn:not(:last-child){
        margin-right: 0.5rem;
    }

    .article-card-section .article-list{
        gap: 1rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .article-card-section .article-item .article-item-image{
        height: 10rem;
    }
    
    .article-card-section .article-item-body{
        padding: 0.875rem;
    }
    
    .article-card-section .article-item-title{
        font-size: 1rem;
    }

    .article-card-section .article-item-desc {
        -webkit-line-clamp: 2;
    }
    
    .article-card-section .article-item-btn{
        width: 6rem;
    }
    
    .home-page .page-section {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .home-page .page-section .section-title-wrap {
        margin-bottom: 1.5rem;
    }

    .home-page .page-section .section-title {
        font-size: 2rem;
    }

    .home-page .page-section .section-subtitle {
        font-size: 1rem;
        letter-spacing: 0.125rem;
    }

    .home-page .mobile-search{
        display: block;
        padding-top: 2rem;
    }
    
    .home-page .mobile-search form{
        position: relative;
    }
    
    .home-page .mobile-search input[type=text]{
        padding: 0.75rem 3rem 0.75rem 1rem;
        width: 100%;
        border-radius: 2rem;
        background-color: #e5e5e5;
    }

    .home-page .business-section .business-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .home-page .business-section .business-item-image {
        height: 18rem;
    }

    .home-page .business-section .business-item-body {
        padding-left: 1rem;
        bottom: 1rem;
    }

    .home-page .business-section .business-item-title {
        font-size: 1.125rem;
    }

    .home-page .business-section .business-item-more {
        margin-top: 0.5rem;
    }

    .home-page .business-section .business-item-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .home-page .page-section .tab-main-item{
        margin-bottom: 0.5rem;
    }
    
    .home-page .about-section .intro-image{
        width: 100%;
    }
    
    .home-page .about-section .intro-content{
        width: 100%;
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .home-page .about-section .intro-name{
        font-size: 1.25rem;
    }
    
    .home-page .about-section .intro-desc{
        font-size: 0.875rem;
    }

    .article-card-section .article-item-desc{
          -webkit-line-clamp: 2;
    }
    
    .page-with-sidebar{
        padding-top: 2rem;
        padding-bottom: 4rem;
    }
    
    .page-with-sidebar .page-sidebar-wrap{
        width: 100%;
    }
    
    .page-with-sidebar .sidebar-search{
        margin-bottom: 0;
    }
    
    .page-with-sidebar .sidebar-search input{
        width: 85%;
        padding: 0.5rem 0.75rem;
    }
    
    .page-with-sidebar .sidebar-search button{
        width: 15%;
        padding: 0.5rem 0;
    }

    .page-with-sidebar .sidebar-main {
        display: none;
    }

    .page-with-sidebar .sidebar-main-title{
        padding: 1rem;
    }
    
    .page-with-sidebar .sidebar-main .main-link{
        padding: 1rem 1rem;
    }
    
    .page-with-sidebar .page-body-wrap{
        margin-top: 2rem;
        padding: 0.75rem 0.75rem 1.5rem;
        width: 100%;
    }
    
    .page-with-sidebar .page-header{
        padding-bottom: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .page-with-sidebar .page-header-position{
        display: none;
    }
    
    .product-list-section .product-list{
        gap: 0.75rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .product-list-section .product-list .product-item{
        padding: 0;
        border-bottom: none;
    }
    
    .product-list-section .product-list .product-item-image{
        width: 100%;
    }
    
    .product-list-section .product-list .product-item-body{
        width: 100%;
        padding-left: 0;
        padding-top: 0.75rem;
    }
    
    .product-list-section .product-list .product-item-title{
        max-width: 100%;
        font-size: 1.125rem;
    }
    
    .product-list-section .product-list .product-item-attr-list{
        display: none;
        margin-top: 0.75rem;
        gap: 0.5rem 2rem;
    }
    
    .product-list-section .product-list .product-item-attr-item{
        font-size: 0.75rem;
    }
    
    .product-list-section .product-list .product-item-btn-wrap{
        position: static;
        margin-top: 0.75rem;
    }
    
    .product-list-section .product-list .product-item-btn{
        padding: 0.5rem 0.5rem;
    }
    
    .product-list-section .product-list .product-item-btn:not(:last-child){
        margin-right: 0.5rem;
    }
    
    .product-detail-page .product-atlas{
        width: 100%;
    }
    
    .product-detail-page .product-base-content{
        width: 100%;
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .product-detail-page .product-title{
        padding-bottom: 1.5rem;
        font-size: 1.25rem;
    }
    
    .product-detail-page .product-attr-list{
        margin-top: 1.5rem;
        padding-bottom: 1.5rem;
        gap: 0.75rem 1rem;
    }
    
    .product-detail-page .product-attr-item{
        font-size: 0.75rem;
    }
    
    .product-detail-page .product-btn-wrap{
        justify-content: flex-start;
        margin-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .product-detail-page .product-btn{
        padding: 0.5rem 0.75rem;
    }
    
    .product-detail-page .product-btn:not(:last-child){
        margin-right: 1rem;
    }

    .product-detail-page .product-recom-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .article-list-section .article-list{
        gap: 1.5rem;
    }
    
    .article-list-section .article-item-href{
        padding: 0;
        border-bottom: none;
    }
    
    .article-list-section .article-item:hover .article-item-href{
        background-color: #ffffff;
    }
    
    .article-list-section .article-item .article-item-image{
        width: 100%;
        height: 12rem;
    }
    
    .article-list-section .article-item-body{
        padding: 0.75rem 0 0;
        width: 100%;
    }
    
    .article-list-section .article-item-title{
        font-size: 1.25rem;
    }
    
    .article-list-section .article-item-desc{
        margin-top: 0.5rem;
    }
    
    .article-list-section .article-item-btn{
        display: none;
        margin-top: 0.75rem;
        width: 6rem;
    }
    
    .detail-page .detail-title{
        font-size: 1.25rem;
    }
    
    .detail-page .page-with-sidebar .page-body-wrap{
        padding-top: 1.25rem;
    }
    
    .detail-page .detail-attr-list{
        margin-top: 0.75rem;
    }
    
    .detail-page .detail-attr-item:not(:last-child){
        margin-right: 1rem;
    }
}

/* Media End <!--ºÄÊ±1754925249.4758Ãë-->