/*by AYANG*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 14px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(0 0 0 / 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-button {
    height: 0;
}

::-webkit-scrollbar-corner {
    background-color: rgb(0 0 0 / 0.4);
}

body {
    min-width: 1320px;
    background-color: #f4f8ff;
}

input,button,select {
    outline: none;
}

a {
    text-decoration: none!important;
    transition: .3s;
    color: #333;
}

i,em {
    font-style: normal;
}

ul,li {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    padding: 0;
    margin: 0;
}

.public-nav {
    width: 100%;
    height: 80px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
    z-index: 99;
}

.public-nav .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.public-nav .container .fl {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
}

.public-nav .container .fl img {
    max-width: 100%;
    max-height: 100%;
}

.public-nav .container .fa {
    display: flex;
    height: 100%;
}

.public-nav .container .fa a {
    display: flex;
    height: 100%;
    padding: 0 20px;
    margin: 0 20px;
    font-size: 16px;
    font-weight: bold;
    align-items: center;
    position: relative;
}

.public-nav .container .fa a.hover::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 50%;
    transform: translateX(50%);
    height: 5px;
    border-radius: 5px;
    background: #59f;
}

.public-nav .container .fr {
    width: 260px;
    height: 40px;
}

.public-nav .container .fr form {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border: 1px solid var(--bs-gray-200);
    border-radius: 20px;
    overflow: hidden;
}

.public-nav .container .fr form .search-focus {
    width: calc(100% - 60px);
    height: 40px;
    border: 0;
    font-size: 14px;
    text-indent: 20px;
}

.public-nav .container .fr form .search-submit {
    width: 50px;
    height: 30px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #59f;
    border: 0;
    border-radius: 20px;
    margin-left: 5px;
    transition: .2s;
}

.public-nav .container .fr form .search-submit:hover {
    background: #73abff;
}

.public-footer {
    width: 100%;
    padding: 40px 0;
    background: #222934;
}

.public-footer .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.public-footer .top .item {
    width: 18.888888%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.public-footer .top .item i.icon {
    width: 60px;
    height: 60px;
    background-image: url('../img/indexfootericon1.png');
    background-size: 60px;
    background-repeat: no-repeat;
}

.public-footer .top .item:nth-child(2) i.icon {
    background-image: url('../img/indexfootericon2.png');
}

.public-footer .top .item:nth-child(3) i.icon {
    background-image: url('../img/indexfootericon3.png');
}

.public-footer .top .item:nth-child(4) i.icon {
    background-image: url('../img/indexfootericon4.png');
}

.public-footer .top .item:nth-child(5) i.icon {
    background-image: url('../img/indexfootericon5.png');
}

.icon-enter {
    animation: entry-icon-enter .2s steps(7) forwards;
}

.icon-leave {
    animation: entry-icon-leave .2s steps(7) forwards;
}

@keyframes entry-icon-enter {
    0% {background-position-y: 0px;}
    to {background-position-y: -420px;}
}

@keyframes entry-icon-leave {
    0% {background-position-y: -420px;}
    to {background-position-y: 0px;}
}

.public-footer .top .item span {
    color: #fff;
    font-size: 16px;
    margin-left: 20px;
}

.public-footer .middle {
    width: 100%;
    display: flex;
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.public-footer .middle .item {
    display: flex;
    flex-direction: column;
    width: 25%;
}

.public-footer .middle .item .title {
    font-size: 15px;
    color: #fff;
    margin-bottom: 10px;
}

.public-footer .middle .item a {
    font-size: 14px;
    color: rgb(255 255 255 / 50%);
    margin-top: 15px;
    width: fit-content;
}

.public-footer .middle .item a:hover {
    color: rgb(255 255 255 / 100%);
}

.public-footer .middle .item .qrcode {
    width: 120px;
    height: 120px;
    padding: 5px;
    background: #fff;
}

.public-footer .bottom {
    padding-top: 40px;
    color: rgb(255 255 255 / 50%);
    font-size: 14px;
    text-align: center;
}

.public-crumbs {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
}

.public-crumbs .item {
    display: block;
    font-size: 14px;
    color: #666;
    position: relative;
}

.public-crumbs .item i {
    margin-right: 5px;
    font-size: 12px;
}

.public-crumbs span {
    margin: 0 10px;
}

.public-crumbs span i {
    font-size: 12px;
}

.public-scroll-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 5%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.public-scroll-top path {
    color: #555;
    transition: .3s;
}

.public-scroll-top:hover path {
    color: #59f;
}

.public-scroll-top:hover {
    box-shadow: 0px 5px 15px rgb(0 0 0 / 10%);
}

.public-scroll-top i {
    margin-bottom: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination li {
    height: 30px;
    line-height: 30px;
    margin-left: -1px;
}

.pagination li a,
.pagination li span {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    border: 1px solid var(--bs-gray-200);
}

.pagination li.disabled span {
    background: var(--bs-gray-200);
    border-color: var(--bs-gray-200);
}

.pagination li.active span,
.pagination li a:hover {
    background: #59f;
    border-color: #59f;
    color: #fff;
}

@font-face {
    font-family: 'icomoon';
    src:  url('../fonts/icomoon.eot');
    src:  url('../fonts/icomoon.eot') format('embedded-opentype'),
      url('../fonts/icomoon.ttf') format('truetype'),
      url('../fonts/icomoon.woff') format('woff'),
      url('../fonts/icomoon.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-redmoney:before {
    content: "\e900";
}
.icon-news:before {
    content: "\e901";
}
.icon-time:before {
    content: "\e902";
}
.icon-tips:before {
    content: "\e903";
}
.icon-setup:before {
    content: "\e904";
}
.icon-collect:before {
    content: "\e905";
}
.icon-shopping-cart:before {
    content: "\e906";
}
.icon-security:before {
    content: "\e907";
}
.icon-record:before {
    content: "\e908";
}
.icon-shopstore:before {
    content: "\e909";
}
.icon-userdata:before {
    content: "\e90a";
}
.icon-untitled:before {
    content: "\e90b";
}
.icon-after-sales:before {
    content: "\e90c";
}
.icon-order-com:before {
    content: "\e90d";
}
.icon-orders-in:before {
    content: "\e90e";
}
.icon-money:before {
    content: "\e90f";
}
.icon-wx:before {
    content: "\e910";
}
.icon-zfb:before {
    content: "\e911";
}
.icon-qq:before {
    content: "\e912";
}
.icon-search:before {
    content: "\e913";
}
.icon-more:before {
    content: "\e914";
}
.icon-plus:before {
    content: "\e915";
}
.icon-reduce:before {
    content: "\e916";
}
.icon-share:before {
    content: "\e917";
}
.icon-customer-service:before {
    content: "\e918";
}
.icon-right-click:before {
    content: "\e919";
}
.icon-left-click:before {
    content: "\e91a";
}
.icon-index:before {
    content: "\e91b";
}
.icon-close:before {
    content: "\e91c";
}