/*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.2);
}

body {
    min-width: 1320px;
    background-color: #fbfbfb;
}

input,button,select {
    outline: none;
}

a {
    text-decoration: none!important;
    transition: .3s;
    color: #333;
}

a:hover {
    color: #4577e6;
}

i,em {
    font-style: normal;
}

ul,li {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    padding: 0;
    margin: 0;
}

.public-nav {
    width: 100%;
    height: 70px;
    background-color: #4577e6;
    background-image: linear-gradient(135deg,#5aabfc,#4577e6);
    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 {
    width: 480px;
    height: 45px;
}

.public-nav .container .fa form {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 25px;
    background-color: #fff;
    overflow: hidden;
}

.public-nav .container .fa form .search-focus {
    width: calc(100% - 95px);
    height: 35px;
    border: 0;
    color: #333;
    background-color: #fff;
    font-size: 14px;
    text-indent: 20px;
}

.public-nav .container .fa form .search-submit {
    width: 90px;
    height: 35px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #4577e6;
    background-image: linear-gradient(135deg,#5aabfc,#4577e6);
    border: 0;
    border-radius: 20px;
    transition: .2s;
}

.public-nav .container .fa form .search-submit i {
    margin-right: 8px;
}

.public-nav .container .fa form .search-submit:hover {
    background: #5aabfc;
}

.public-nav .container .fr {
    display: flex;
    height: 40px;
    position: relative;
}

.public-nav .container .fr a.item {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 25px;
    margin-left: 10px;
    background-color: #fff;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.public-nav .container .fr a.item i {
    width: 20px;
    height: 20px;
    background: url("../img/header-fr-icon.png") no-repeat;
    background-size: 80px;
}

.public-nav .container .fr a.item:nth-child(2) i {
    background-position: -20px;
}

.public-nav .container .fr a.item:nth-child(3) i {
    background-position: -40px;
}

.public-nav .container .fr a.item:nth-child(4) i {
    background-position: -60px;
}

.public-nav .container .fr .public-nav-user {
    display: flex;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    background-color: #fff;
    position: relative;
}

.public-nav .container .fr .public-nav-user .pic {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.public-nav-user-list {
    position: absolute;
    top: 40px;
    right: -20px;
    width: 80px;
    padding-top: 5px;
    z-index: 999;
    animation-name: navuser;
    animation-duration: .2s;
}

@keyframes navuser {
    from {opacity: .2;transform: translateY(10px)}
    to {opacity: 1;transform: translateY(0px)}
}

.public-nav-user-list .wrap {
    width: 80px;
    height: 80px;
    padding: 10px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 8px rgb(0 0 0 / 8%);
}

.public-nav-user-list a {
    display: flex;
    width: 100%;
    height: 30px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.public-nav-user-list a:hover {
    background-color: #f7f7f7;
}

.public-crumbs {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 4%);
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.public-crumbs .item {
    display: block;
    font-size: 14px;
    color: #666;
    position: relative;
}

.public-crumbs .item:hover {
    color: #4577e6;
}

.public-crumbs .item i {
    margin-right: 5px;
    font-size: 12px;
}

.public-crumbs span {
    margin: 0 10px;
    color: #d3d3d3;
}

.public-crumbs span i {
    font-size: 12px;
}

.public-scroll-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgb(0 0 0 / 10%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.public-scroll-top path {
    color: #fff;
    transition: .3s;
}

.public-scroll-top:hover path {
    color: #4577e6;
}

.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;
    color: #333;
    background-color: #f7f7f7;
    line-height: 30px;
    padding: 0 10px;
}

.page-item.disabled .page-link {
    color: #333;
    background-color: rgb(0 0 0 / 5%);
}

.pagination li.disabled span {
    background-color: rgb(0 0 0 / 5%);
}

.pagination li.active span,
.pagination li a:hover,
.page-item.active .page-link {
    background: #4577e6;
    border-color: #4577e6;
    color: #fff;
}

.public-footer {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    color: #7a7a7a;
}

@font-face {
    font-family: 'icomoon';
    src:  url('fonts/icomoon.eot?lvkjdz');
    src:  url('fonts/icomoon.eot?lvkjdz#iefix') format('embedded-opentype'),
      url('fonts/icomoon.ttf?lvkjdz') format('truetype'),
      url('fonts/icomoon.woff?lvkjdz') format('woff'),
      url('fonts/icomoon.svg?lvkjdz#icomoon') 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";
}