* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: auto;
    font-size: 16px;
}

a {
    cursor: pointer;
}

.max-width {
    max-width: 1400px;
    margin: 0 auto;
}
.max-width20 {
    max-width: 1420px;
    margin: 0 auto;
}

/*header welcome ----------------------------------------------------------------------------------------*/
.header-welcome {
    background: #eee;
    padding: 8px 10px;
    font-size: 14px
}

.header-welcome-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-welcome-tel,
.header-logo-nav {
    i {
        color: #003377;
    }

    a:hover {
        color: #FF6600;
    }
}

@media (max-width: 750px) {
    .header-welcome-flex {
        justify-content: flex-end;
    }
}

/*header logo ----------------------------------------------------------------------------------------*/
.header-logo {
    background: #fff;
    padding: 20px 10px;
}

.header-logo-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 20px;
    height: 3px;
    margin: 3px auto;
    background-color: #003377;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 750px) {
    .header-logo-nav>ul {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 50px;
    }

}

@media (max-width: 750px) {
    .hamburger {
        display: block;
    }

    .header-logo-nav {
        position: absolute;
        left: -100%;
        top: 100px;
        width: 100%;
        border-bottom: 5px solid #ff6600;
        background: #f5f5f5;
        padding: 10px;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .header-logo-nav>ul>li {
        padding: 15px 20px;
        font-weight: 700;
    }

    .header-logo-nav.active-div {
        left: 0;
    }

}


/*header type ----------------------------------------------------------------------------------------*/
.header-type {
    position: sticky;
    top: -1px;
    padding: 8px 10px;
    background: #003277;
    z-index: 9;
}

.header-type-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px
}

.header-type-list {
    width: 260px;
    height: 40px;
    line-height: 40px;
    padding: 0px 10px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/*header-type-nav*/
.header-type-nav {
    width: 100%;
    position: absolute;
    left: 0;
    top: 60px;
    height: auto;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding-bottom:20px;
    display: none;
}

.header-type-nav-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
}

.header-type-nav-pid {
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 2px solid #FF6600;
    padding: 10px;
    min-width: 260px;
    display: flex;
    align-items: center;
}

.header-type-nav-pid:hover {
    background: rgba(255, 255, 255, 1);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    color: #FF6600;
}

.header-type-nav-id {
    flex-grow: 3;
    border-bottom: 1px dotted #ddd;
    padding: 8px 15px;
    font-size: 14px
}

.header-type-nav-id li {
    min-width: 240px;
    padding: 5px 10px;
    float: left;
    transition: all 0.2s ease;
}

.header-type-nav-id li:hover {
    background: rgba(0, 50, 119, 1);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    color: #fff;
    font-weight: 700;
}

@media (max-width: 750px) {
    .header-type-div {
        gap: 10px;
    }

    .header-type-list{
        width:auto;
    }
    
    .header-type-nav {
        top: 55px;
        height: 500px;
        overflow: auto;
    }

    .header-type-nav-div {
        flex-wrap: wrap;
        gap: 0px;
    }

    .header-type-nav-pid {
        width: 100%;
        background: #ddd;
    }
}

/*header-type-search*/
.header-type-search button {
    background: #fff;
    height: 38px;
}

/*header-type-icon*/
.header-type-icon img {
    width: 28px;
}

.header-type-icon p {
    font-size: 10px;
    color: #fff
}

.header-type-icon-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 30px;
    text-align: center;
    ;
}

/*footer ----------------------------------------------------------------------------------------*/
.footer {
    width: 100%;
    padding: 20px 0px 0px 0px;
    background: url(/style/images/index/footer_00.png) no-repeat center / cover;
    font-size: 14px;
}
.footer-text {
    max-width: 1400px;
    margin: 0 auto;
    color: #fff;
    text-align: left;
    padding: 10px 20px 20px 20px
}
.footer ul {
    margin-top: 20px;
}
.footer li {
    margin-top: 15px;
}
.footer i {
    width: 25px;
    text-align: center;
    color: #ff6600;
}
.footer a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.footer a:hover {
    font-weight: 700;
    color: #ff6600;
}
.footer-cop {
    padding: 10px;
    background: #151927;
    font-size: 12px;
    text-align: center;
    color: #d5d5d5
}
/*footer share icon*/
.social-share .social-share-icon {
    border-width: 2px;
}

/*qita ----------------------------------------------------------------------------------------*/
/*page*/
.layui-laypage .layui-laypage-curr .layui-laypage-em {
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    background-color: #ff6600;
}

/*layui*/
.layui-input:focus,
.layui-textarea:focus {
    border-color: #ff6600 !important;
}

/*right top btn*/
.layui-fixbar {
    right: 24px;
    bottom: 16px;
}

/*评价星星间距*/
.layui-rate {
    padding: 5px 6px 5px 0;
    font-size: 0;
}

/*text hidden*/
.text-hidden1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.text-hidden2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    line-height: 1.5;
}

/*banner icon color*/
.swiper-pagination-bullet-active {
    background: #ff6600;
}

/*products img hover big*/
.image-big-products {
    background: #fff;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid #f1f1f1;
    border-radius:5px;
}

.image-big-products img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.image-big-products:hover {
    box-shadow: 0px 10px 50px #aaa, -5px -20px 30px #ffffff;
     img {
        transform: scale(1.1);
    }
    
}

.image-big-products-hot::after {
    content: "";
    background-image: url('/style/images/index/hot_01.png');
    background-size: 100%; 
    width:70px;
    height:70px;
    position: absolute;
    top: 5px;
    right: 5px;
}

.ih-item.square {
    position: relative;
    width: 100%;
    height: auto;
    border: 0px solid #fff;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
}

/*left kefu*/
.list-div-title {
    color: #fff;
    padding: 10px 20px;
    font-weight: 700;
    background:url(/style/images/index/list.png) no-repeat center / cover
}

.list-div-kefu {
    font-size: 14px;
    color: #666;
    padding: 20px 10px;
    text-align: center;
    background: #fff;
}

.list-div-kefu img {
    width: 65px;
    height: 65px
}

/*left nav*/
.list-nav-left {
    font-size: 14px;
    color: #666;
    padding: 20px 10px;
    background: #fff;
    
    li {
        border-bottom: 1px dotted #ddd;
        cursor: pointer;
    }
    li:hover {
        background: rgba(10, 10, 10, 0.1);
    }
}

.list-nav-left-ok {
    background: rgba(10, 10, 10, 0.1);
    color: #f93318;
    
    a {
        color: #ff6600;
    }
}

.list-nav-list-li {
    height: 38px;
    line-height: 38px;
    position: relative;
    padding: 0px 10px;
    
    .fa {
        width: 20px
    }
    .layui-icon {
        position: absolute;
        right: 10px
    }
}