* {
    font-family: "arila", sans-serif, 微软雅黑 !important;
}

html {
    font-size: 16px;
}

body,p {
    margin: 0;
}

ul,
ol,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a,textarea {
    text-decoration: none;
    /* 去除默认的下划线 */
    outline: none;
    /* 去除旧版浏览器的点击后的外虚线框 */
    color: #000;
    /* 去除默认的颜色和点击后变化的颜色 */
}

input {
    background: none;
    outline: none;
    border: 0px;
}

button {
    /* 清除默认边框 */
    border: 0;
    outline: none;
    /*清除默认背景 */
    background-color: transparent;
}


.jl-row {
    display: flex;
    align-items: center;
}

.jl-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media all and (max-width: 1200px) {
    .jl-header {
        height: 70px;
    }

    .jl-header-title-container {
        display: none;
    }

    .jl-header-list {
        display: block;
    }
}

@media all and (min-width: 1201px) {
    .jl-header {
        height: 100px;
    }

    .jl-header-title-container {
        display: flex;
    }

    .jl-header-list {
        display: none;
    }
}

.jl-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
    background: rgba(255, 255, 255, 0.95);
}

.jl-header-container {
    width: 94%;
    height: 100%;
    margin: 0 auto;
    justify-content: space-between;
}

.jl-header-logo {
    width: 180px;
}

@media all and (max-width: 768px) {
    .jl-header-logo {
        width: 100px;
    }
}

.jl-header-title-container {
    width: 80%;
    justify-content: flex-end;
}

.jl-header-a-title {
    padding: 0 1.4vw;
}

.jl-header-title-item {
    color: #656569;
}

.jl-header-a-img {
    padding: 0 12px;
    color: #656569;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.jl-header-a-img:last-child {
    padding-right: 0;
}

.jl-header-img-item {
    width: 36px;
}
.jl-header-language {
    line-height: 30px;
    position: relative;
    /*cursor: default;*/
    cursor: pointer;
}
.jl-header-language span {
    font-size: 24px;
    margin-right: 4px;
}
.jl-header-language img {
    width: 20px;
    margin-right: 4px;
}
.jl-header-language-down {
    display: flex;
    /*display: none;*/
    position: absolute;
    left: 12px;
    bottom: -30px;
    right: 12px;
    height: 30px;
    padding-top: 8px;
    cursor: pointer;
}
.jl-header-language:hover .jl-header-language-down {
    /*display: flex;*/
}
.jl-header-action {
    position: fixed;
    width: 100%;
    top: 70px;
    height: 0;
    overflow: hidden;
    left: 0;
    z-index: 11;
    background: rgba(255, 255, 255, 0.95);
    /* transform: translateY(-100%); */
    transition: all 1s;
    
}
.jl-header-action-active {
    height: calc(100% - 70px);
    /* transform: translateY(0); */
}
.jl-header-action-item {
    line-height: 56px;
    
    padding: 0 0 0 20px;
    font-size: 16px;
    justify-content: space-between;
}
.jl-header-action-item a {
    padding: 0 1.4vw;
    color: #656569;
    cursor: pointer;
}
.jl-header-action-item a span {
    font-size: 12px;
    margin-left: 4px;
}
.jl-header-action-item-add {
    font-size: 20px;
    padding: 0 18px;
    box-sizing: border-box;
}
.jl-header-action-product {
    padding: 12px 24px;
}
.jl-header-action-product-container {
    transition: all 1s;
    height: 0;
    overflow: hidden;
}
.jl-header-action-product-container-active {
    height: auto;
}
.jl-header-action-product-item {
    line-height: 42px;
    font-size: 16px;
    color: #48b2da;
    padding-left: 18px;
    position: relative;
    display: block;
}
.jl-header-action-product-item::before {
    content: '';
    display: block;
    width: 5px;
    height: 2px;
    background: #ccc;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    left: 0;
    line-height: 42px;
    font-size: 16px;
    color: #48b2da;
}

.jl-main {}

.jl-bottom {
    max-width: 1420px;
    margin: 0 auto;
    padding-bottom: 5%;
}

.jl-bottom-1 {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgba(230, 230, 230, 1);
    padding-top: 4%;
    padding-bottom: 4%;
}

.jl-bottom-img-item {
    width: 100%;
}
.jl-bottom-img-bg {
    width: 100%;
}

.jl-bottom-2 {
    color: #666666;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 3%;
    padding: 0 10px;
}
.jl-bottom-2-item {
    margin-right: 20px;
}

.jl-bottom-2-item-icp {
    color: #666666;
    flex: 1;
}

.jl-bottom-3 {
    width: 96%;
    margin: 0 auto;
    justify-content: space-between;
}

.jl-bottom-mobile {}

.jl-bottom-email {
    text-align: right;
}

.jl-bottom-item-name {
    margin-bottom: 8px;
}

.jl-bottom-item-value {}

@media all and (max-width: 768px) {
    .jl-bottom-2 {
        justify-content: center;
        font-size: 12px;
        flex-direction: column;
    }
    .jl-bottom-2-item {
        line-height: 24px;
    }
    .jl-bottom-2-item:last-child {
        line-height: 1.6;
    }
    .jl-bottom-2-item-icp {
        flex: 0;
    }
    .jl-bottom-line {
        width: 100%;
        box-sizing: border-box;
        padding: 0 10px;
    }
    .jl-bottom-line div {
        background: rgba(230, 230, 230, 1);
        height: 1px;
    }
}
/* 帮助 */
.jl-help {
    color: #000000;
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    z-index: 10;
    transform: translateX(calc(100% - 60px));
}

.jl-help-item {

    background: #9f9fa0;
    opacity: 0.9;
    height: 60px;
    margin-bottom: 4px;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    padding-right: 20px;
    transition: transform 1s;
    /* transform: translateX(calc(100% - 60px)); */
}

.jl-help-item:hover {
    transform: translateX(calc(60px - 100%));
    /* transform: translateX(0); */
}

.jl-help-item img {

    height: 100%;
}

.jl-help-item div {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: pre;
}
/* 手机端帮助 */
.jl-help-mobile-bt {
    position: fixed;
    right: 5px;
    bottom: calc(50% - 25px);
    width: 50px;
    z-index: 13;
}
.jl-help-mobile-bt img {
    position: relative;
    width: 100%;
}
.jl-help-mobile-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: .5;
}
.jl-help-mobile {
    position: absolute;
    bottom: 55px;
    right: -250px;
    width: 240px;
    color: #333;
    background-color: #fff;
    border-radius: 10px;
    max-height: 375px;
    transition: all 0.5s;
    padding: 10px;
    box-sizing: border-box;
}
.jl-help-mobile-active {
    right: 0;
}
.jl-help-mobile-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    /* width: 100%; */
    overflow: hidden;
    padding: 5px 0;
    border-top: 1px solid #f5f5f5;
}
.jl-help-mobile-item:first-child {
    border-top: none;
}
.jl-help-mobile-item img {
    width: 20px;
    padding-right: 8px;
}
.jl-help-mobile-item span {
    font-size: 20px;
    padding-right: 8px;
}
.jl-help-mobile-item div {
    font-size: 14px;
}

/* 搜索 */
.jl-search-container {
    position: fixed;
    left: 0;
    right: 0;
    top: -120px;
    /* height: 114px; */
    z-index: 10;
    background-color: #ffffff;
    /* margin: -57px auto 0px; */
    transition: all 0.5s ease;
}
.jl-search-container-active {
    top: 100px;
}
.jl-search-form-container {
    padding-top: 30px;
    background-color: rgba(245, 245, 245, 1);
}
.jl-search-form {
    width: 94%;
    max-width: 600px;
    margin: 0 auto;
    align-items: flex-start;
    position: relative;
}
.jl-search-form-item {
    flex: 0 0 70%;
    padding-bottom: 26px;
}
.jl-search-keyword {
    flex: 1 1 auto;
    height: 48px;
    border: none;
    border-left: 1px solid rgba(247, 247, 247, 1);
    border-top: 1px solid rgba(247, 247, 247, 1);
    border-bottom: 1px solid rgba(247, 247, 247, 1);
    box-sizing: border-box;
    padding: 16px;
    line-height: 1.5;
    color: #999;
    background-color: #fff;
    background-clip: padding-box;
}
.jl-search-submit {
    flex: 0 0 30%;
    font-size: 16px;
    background-color: #000000;
    padding: 8px;
    line-height: 2;
    color: #ffffff;
}
.jl-search-form-close {
    position: absolute;
    top: 10px;
    right: calc(50% - 350px);
}
.jl-search-form-close span {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}
@media all and (max-width: 768px) {
    /* .jl-search-container {
        top: 70px;
    } */
    .jl-search-container-active {
        top: 70px;
    }
    .jl-search-form-close {
        top: 0;
        right: 0;
    }
}


/* 导航 */
.jl-nav-container {
    border-top: 1px solid #eeeeee;
    margin-top: 100px;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 1);
}
.jl-nav-list {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.jl-nav-item {
    font-size: 14px;
    line-height: 1.66666;
    position: relative;
    color: #6c757d;
}
.jl-nav-item-active {
    color: #212529;
}

.jl-nav-item:not(:first-child) {
    padding: 0 3px 0 15px;
}


.jl-nav-item:not(:first-child)::before {
    content: '>';
    position: absolute;
    left: 3px;
    color: #999;
}
.jl-nav-icon {
    font-size: 12px;
    margin-right: 4px;
}

@media all and (max-width: 768px) {
    .jl-nav-container {
        margin-top: 70px;
    }
}