.conBox {
    position: relative;
    margin-top: 90px;
}

.no-scroll {
    overflow: hidden;
}

.inDBox {
    width: 100%;
    padding: 0 20px;
    height: calc(100vh - 90px);
    position: relative;
    overflow: hidden;
}

.inDItem {
    width: 100%;
    height: calc(100vh - 120px);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.inDImg {
    width: 100%;
    height: 100%;
    position: relative;
}

.inDImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
}

.inDImg::after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .2) 0, rgba(0, 0, 0, .2) 75%, rgba(0, 0, 0, .5) 100%);
}

.inDImg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inDTbox {
    width: 80%;
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inDTBt {
    font-size: 16px;
    color: #ddd;
}

.inDTit {
    font-size: 36px;
    text-align: center;
    color: #fff;
    margin: 10px 0;
    transition: all 0.48s;
}

.inDBtn {
    font-size: 14px;
    transition: all 0.48s;
    color: #ddd;
    border-bottom: 1px solid rgba(255, 255, 255, 0.62);
}

.inDItem2 {
    width: 25%;
    position: absolute;
    top: 0;
    height: 0;
    overflow: hidden;
    left: 0;
    transition: height .48s ease-out, width .48s ease-out;
}

.inDItem3 {
    width: 25%;
    position: absolute;
    top: 0;
    right: 0;
    height: 0;
    overflow: hidden;
    transition: height .48s ease-out, width .48s ease-out;
}

.inDItem2 .inDBtn, .inDItem3 .inDBtn {
    opacity: 0;
    transform: translateY(20px);
}

.inDItem2:hover .inDImg img, .inDItem3:hover .inDImg img {
    transform: scale(1.1);
}

.inDItem2 .inDTit, .inDItem3 .inDTit {
    font-size: 28px;
}

.inDItem2:hover .inDTit, .inDItem3:hover .inDTit {
    font-size: 32px;
}

.inDItem2:hover .inDBtn {
    opacity: 1;
    transform: translateY(0);
}

.inDItem3:hover .inDBtn {
    opacity: 1;
    transform: translateY(0);
}

.inDItem2.inDItemAct {
    height: calc(100vh - 120px);
    width: calc(33.3% - 20px);
}

.inDItem3.inDItemAct {
    height: calc(100vh - 120px);
    width: calc(33.3% - 20px);
}

.inDList {
    position: relative;
}

.inDBox .inner {
    width: 100%;
}

@media (max-width: 1680px) {
    .inDTit {
        font-size: 32px;
    }

    .inDItem2 .inDTit, .inDItem3 .inDTit {
        font-size: 24px;
    }

    .inDItem2:hover .inDTit, .inDItem3:hover .inDTit {
        font-size: 28px;
    }
}

@media (max-width: 1468px) {
    .inDTit {
        font-size: 28px;
    }

    .inDItem2 .inDTit, .inDItem3 .inDTit {
        font-size: 20px;
    }

    .inDItem2:hover .inDTit, .inDItem3:hover .inDTit {
        font-size: 24px;
    }
}

@media (max-width: 1280px) {
    .inDTit {
        font-size: 24px;
    }

    .inDItem2 .inDTit, .inDItem3 .inDTit {
        font-size: 18px;
    }

    .inDItem2:hover .inDTit, .inDItem3:hover .inDTit {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .inDBox, .inDItem {
        height: 700px;
    }
}








.inFBox {
    padding: 70px 0;
    position: relative;
}

.inFImg {
    width: 100%;
    /* height: 100%; */
    height: 100vh;
}

.inFImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inJItem {
    width: 100%;
    height: 100%;
    position: relative;
}

.inJItem:hover .inCBtn::after {
    width: 0;
    left: 0;
}

.inJImg {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.inJImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inJImg::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.32);
}

.inJTbox {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 80%;
    transform: translate(-50%, -50%);
    z-index: 3;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inJTit {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 400;
    text-align: center;
    color: #fff;
}

.inJBtn {
    font-size: 14px;
    color: #ddd;
    position: relative;
}

.inJBtn::after {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.62);
    position: absolute;
    bottom: 0;

    right: 0;
    content: '';
    transition: width 0.8s;
}

.inJBtn:hover::after {
    width: 0;
    left: 0;
}

.inJText {
    font-size: 14px;
    color: #ddd;
}

.inCList {
    display: flex;
    position: relative;
    margin-top: 50px;
    justify-content: space-between;
}

.inCItem {
    width: calc(33.3% - 10px);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.inCImg {
    width: 100%;
    position: relative;
    padding-top: 130%;
    overflow: hidden;
}

.inCImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.inCImg::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .2) 0, rgba(0, 0, 0, .2) 75%, rgba(0, 0, 0, .5) 100%);
}

.inCTbox {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    z-index: 3;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inCTit {
    font-size: 28px;
    /* margin-bottom: 10px; */
    font-weight: 400;
    text-align: center;
    color: #fff;
}

.inCBtn {
    font-size: 14px;
    color: #ddd;
    position: relative;
}

.inCBtn::after {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.62);
    position: absolute;
    bottom: 0;

    right: 0;
    content: '';
    transition: width 0.8s;
}

.inCBtn:hover::after {
    width: 0;
    left: 0;
}

@media (max-width: 1680px) {

    .inCList {
        margin-top: 30px;
    }

    .inCTit {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

@media (max-width: 1280px) {
    .inFBox {
        padding: 50px 0;
    }

    .inJTit {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .inCList {
        flex-wrap: wrap;
    }

    .inCItem {
        width: 100%;
        margin-right: 0;
    }

    .inCImg {
        padding-top: 45%;
        margin-bottom: 20px;

    }

    .inJImg {
        height: auto;
        padding-top: 52%;
        overflow: hidden;
        position: relative;
    }

    .inJImg img {
        position: absolute;
        left: 0;
        top: 0;
    }

    .inFBox {
        padding: 10px 0;
    }

    #inFBox1 {
        margin-top: 50px;
    }

    #inFBox2 {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .inCTit {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .inJImg {
        height: auto;
        padding-top: 75%;
    }
}

@media (max-width: 680px) {
    .inJTit {
        font-size: 20px;
    }

    .inDBox, .inDItem {
        height: 600px;
    }
}

@media (max-width: 500px) {
    .inCImg {
        padding-top: 65%;
        margin-bottom: 12px;
    }
}




/* 产品 */
.proBox {
    position: relative;
    padding: 70px 0 0;
}

.proGj {
    font-size: 14px;
    text-align: center;
    color: rgb(123, 132, 135);
}

.proList {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

.proItem {
    width: calc(25% - 30px);
    margin-right: 40px;
    margin-bottom: 30px;
    position: relative;
}

.proItem:nth-child(4n) {
    margin-right: 0;
}

.proImgBox {
    width: 100%;
    padding-top: 120%;
    position: relative;
    overflow: hidden;
    background: #f7f8f9;
}

.proImgBox .swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.proImg {
    width: 100%;
    height: 100%;
}

.proImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.proIcon {
    font-size: 12px;
    color: #aaa;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 9;
}

.proTbox {
    position: relative;
    display: block;
    margin-top: 30px;
    min-height: 130px;
}

.proTit {
    font-size: 16px;
    position: relative;
    text-align: center;
}

.proText {
    font-size: 14px;
    color: rgb(123, 132, 135);
    text-align: center;
    line-height: 20px;
    height: 0;
    overflow: hidden;
    transition: all 0.48s;
}

.proItem:hover .proText {
    height: 20px;
    margin-top: 10px;
}

.proJg {
    font-size: 14px;
    color: rgb(123, 132, 135);
    text-align: center;
    margin-top: 10px;
}

.proImgJt {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    z-index: 9;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.48s;
}

.proItem:hover .proImgJt {
    opacity: 1;
    transform: translateY(0);
}

.proImgJt svg {
    width: 100%;
    height: 100%;
}

.proImgJt svg path {
    fill: #666;
}

.proImgSwier_next {
    right: 5px;
}

.proImgSwier_prev {
    left: 5px;
}

.proImgSwier_pagination {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    z-index: 6;
    background: transparent;
    opacity: 0;
}

.proItem:hover .proImgSwier_pagination {
    opacity: 1;
}

.proImgSwier_pagination .swiper-pagination-progressbar-fill {
    background: #333;
}

@media (max-width: 1280px) {
    .proItem {
        width: calc(25% - 10px);
        margin-right: 12px;
        margin-bottom: 30px;
        position: relative;
    }

    .proItem:nth-child(4n) {
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
    .proItem {
        width: calc(50% - 10px);
        margin-right: 20px;
        margin-bottom: 30px;
        position: relative;
    }

    .proItem:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 680px) {
    .proItem {
        width: calc(50% - 5px);
        margin-right: 10px;
        margin-bottom: 30px;
        position: relative;
    }

    .proItem:nth-child(2n) {
        margin-right: 0;
    }
}



/* 分页 */
.NavBox{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
}
.NavItem{
    width: 45px;
    height: 45px;
    border: 1px solid rgba(0, 0, 0, .2);
    font-size: 14px;
    color: #7B8487;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: pointer;
    transition: all 0.48s;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
}
.NavItemAct,.NavItem:hover{
    background: #333;
    color: #fff;
}


@media (max-width: 680px){
    .NavItem{
    width: 42px;
    height: 42px;
}
    .NavBox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}
}




/* 产品详情 */
.proIBox {
    position: relative;
    display: flex;
}

.proILeft {
    width: 50%;
}

.proImgItem {
    width: 100%;
}

.proImg {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #f7f8f9;
    margin-bottom: 5px;
}

.proImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.proImg p {
    position: absolute;
    left: 30px;
    bottom: 30px;
    color: #aaa;
    z-index: 2;
}

.proIRig {
    width: 50%;
    padding: 0 5% 0;
}

.proITbox {
    position: sticky;
    top: 30vh;
}

.proITop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proITop p {
    width: calc(100% - 50px);
    font-size: 24px;
}

.proISc {
    width: 25px;
    height: 25px;
    position: relative;
}

.proISc svg {
    width: 100%;
    height: 100%;
    display: none;
    cursor: pointer;
}
.proISc svg:first-child{
    display: block;
}
.proISc.on svg:last-child{
    display: block;
}
.proISc.on svg:first-child{
    display: none;
}

.proIBh {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.proIBh p {
    font-size: 14px;
    color: #7B8487;
}

.proIY_box {
    margin: 50px 0 30px;
}

.proIY_box h4 {
    font-size: 14px;
    font-weight: 500;
}

.proIY_List {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.proIY_Item {
    width: 80px;
    height: 80px;
    background: #f7f8f9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 3px;
}

.proIY_Item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proIY_Btn {
    width: 100%;
    height: 55px;
    border-radius: 8px;
    background: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    cursor: pointer;
}

.proIY_Btn span {
    color: #eee;
}

.proIY_Wx {
    width: 100%;
    height: 55px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    background: #fff;
    margin-top: 10px;
    cursor: pointer;
}

.proIY_Wx svg {
    width: 30px;
    height: 30px;
}

.proIY_Wx span {
    margin-left: 10px;
}

.proIY_Ty {
    position: relative;
    font-size: 14px;
    color: #7B8487;
    margin-top: 20px;
}

.proIY_Ty a {
    font-size: 14px;
    color: #7B8487;
    text-decoration: underline;
}

.proIBon {
    margin-top: 50px;
}

.proIB_box {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proIB_Nav {
    position: relative;
    padding: 12px 0;
}

.proIB_NavAct {
    border-bottom: 1px solid rgba(0, 0, 0, .5);
}

.proIB_List {
    position: relative;
}

.proIB_Item {
    position: relative;
    padding: 30px 0;
}

.proIB_Item p {
    color: #7B8487;
}

.proSwiperBox {
    display: none;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.proSwiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.proSlide {
    position: relative;
}

.proSImg {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #f7f8f9;
}

.proSImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.proSImg p {
    position: absolute;
    left: 30px;
    bottom: 30px;
    color: #aaa;
    z-index: 2;
}

.proSwiper_pagination {
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    z-index: 9;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #333;
}

.proSItem {
    padding: 25px 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.proSItem:first-child {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.proSTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.conFIcon {
    width: 15px;
    height: 15px;
    position: relative;
}

.conFIcon svg {
    width: 100%;
    height: 100%;
}

.conFIcon svg path {
    fill: #333;
}

.conFIcon .icon1 {
    display: block;
}

.conFIcon .icon2 {
    display: none;
}

.proSTBox {
    margin-top: 30px;
    position: relative;
    display: none;
}

.proSTBox p {
    font-size: 14px;
    color: #7B8487;
    margin-bottom: 10px;
}

.proSTop p {
    font-size: 16px;
    font-weight: 500;
}

.proSList {
    margin-top: 50px;
}

.proSItemAct .conFIcon .icon1 {
    display: none;
}

.proSItemAct .conFIcon .icon2 {
    display: block;
}

.proSList {
    display: none;
}

@media (max-width: 1024px) {
    .proIBox {
        flex-wrap: wrap;
    }

    .proILeft {
        display: none;
        position: relative;
    }

    .proIRig {
        width: 100%;
        padding: 50px 5%;
    }

    .proSwiperBox {
        display: block;
    }

    .proIBon {
        display: none;
    }

    .proSList {
        display: block;
    }
}





/* 新闻 */
.NewBox {
    position: relative;
    padding: 90px 0;
}

.NewSText {
    margin-top: 30px;
}

.NewSText p {
    font-size: 14px;
    text-align: center;
    color: #7B8487;
    margin-top: 10px;
}

.NewList {
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
}

.NewItem {
    width: calc(25% - 20px);
    background: #f7f8f9;
    position: relative;
    margin-right: 26px;
    margin-bottom: 25px;
}

.NewItem:nth-child(4n) {
    margin-right: 0;
}

.NewImg {
    width: 100%;
    padding-top: 65%;
    position: relative;
}

.NewImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.NewTbox {
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.NewTit {
    font-size: 20px;
    text-align: center;
}

.NewText {
    font-size: 14px;
    color: #7B8487;
    text-align: center;
    margin: 15px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

@media (max-width: 1280px) {
    .NewTit {
        font-size: 18px;
    }

    .NewTbox {
        padding: 20px;
    }

    .NewItem {
        width: calc(25% - 10px);
        margin-right: 13px
    }
}

@media (max-width: 1200px) {
    .NewItem {
        width: calc(50% - 10px);
        margin-right: 20px
    }

    .NewItem:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 768px) {

    .NewTit {
        font-size: 16px;
    }
}

@media (max-width: 680px) {
    .NewList {
        margin-top: 50px;
    }

    .NewBox {
        padding: 70px 5% 70px;
    }

    .NewItem {
        width: 100%;
        margin-right: 0
    }

    .NewItem:nth-child(2n) {
        margin-right: 0;
    }
}



/* 登陆 */
.logBox {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #f7f8f9;
}

.logCon {
    width: 90%;
    max-width: 1200px;
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transform: translate(-50%, -50%);
    height: 780px;
    display: flex;
    justify-content: space-between;
}

.logImg {
    width: 50%;
    height: 100%;
    position: relative;
}

.logImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logTBox {
    width: 50%;
    height: 100%;
    position: relative;
    padding: 70px 50px;
}

.logTit {
    font-size: 32px;
    font-weight: 400;
}

.logForm {
    position: relative;
    margin-top: 10px;
}

.logFTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.logFTop p {
    font-size: 20px;
    font-weight: 600;
}

.logFItem {
    position: relative;
    margin-bottom: 30px;
}

.logFItem span {
    font-size: 12px;
    position: absolute;
    left: 0;
    bottom: 6px;
    transition: all .5s;
    cursor: pointer;
    color: #7b8487;
}

.logFItemAct span {
    bottom: 25px;
}

.logFItem input {
    width: 100%;
    height: 100%;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    background-color: transparent;
    outline: none;
    box-sizing: border-box;
    padding: 20px 0 4px;
}

.logFImg {
    width: 125px;
    height: 40px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: #333;
    text-align: center;
    line-height: 40px;
    color: #fff;
    cursor: pointer;
}

.logFImg img {
    width: 100%;
    height: 100%;
}

.logFBtn {
    width: 100%;
    height: 55px;
    background: #33383c;
    color: #fff;
    border-radius: 6px;
    transition: background .5s;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.logFTy {
    display: flex;
    position: relative;

}

.logFTyz {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    margin-right: 10px;
}

.logFTyz input {
    opacity: 0;
    outline: none;
    position: absolute;
    margin: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.logFTy p {
    width: calc(100% - 30px);
    position: relative;
    color: #7b8487;
}

.logFTy p a {
    color: #7b8487;
    text-decoration: underline;
}

.logList {
    margin-top: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logItem {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.logIcon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #33383c;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 8px;
}

.logItem {
    color: #7b8487;
}

@media (max-width: 1368px) {
    .logTit {
        font-size: 28px;
    }

    .logTBox {
        padding: 50px 30px;
    }

    .logCon {
        max-width: 1200px;
        top: 54%;
        height: 650px;
    }

    .logFTop {
        margin-bottom: 30px;
    }
}

@media (max-width: 1024px) {
    .logCon {
        flex-wrap: wrap;
        height: auto;
    }

    .logTBox {
        width: 100%;
    }

    .logImg {
        width: 100%;
        display: none;
    }

    .logCon {
        max-width: 1200px;
        top: 40%;
    }
}

@media (max-width: 768px) {
    .logTit {
        font-size: 24px;
    }

    .logFTop p {
        font-size: 18px;
    }

    .logList {
        margin-top: 40px;
    }

    .logIcon {
        width: 35px;
        height: 35px;
    }
}





/*  */
.cusBan {
    width: 100%;

    padding: 0 20px;
    position: relative;
}

.cusBanSwiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    height: calc(100vh - 120px);
}

.cusBanImg {
    width: 100%;
    height: 100%;
}

.cusBanImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cusBanImg::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .2) 0, rgba(0, 0, 0, .2) 75%, rgba(0, 0, 0, .5) 100%);
}

.cusBanTbox {
    padding: 70px 0;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.cusBanTit {
    font-size: 28px;
    text-align: center;
    margin: 10px 0 20px;
}

.cusBanTime {
    font-size: 14px;
    color: #7B8487;
    text-align: center;
}

.cusBanText {
    font-size: 14px;
    color: #7B8487;
    text-align: center;
}

@media (max-width: 1024px) {
    .cusBanSwiper {
        height: auto;
    }

    .cusBanImg {
        padding-top: 65%;
        height: auto;
    }

    .cusBanImg img {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }
}

@media (max-width: 900px) {
    .cusBanTit {
        font-size: 24px;
    }

    .cusBanTbox {
        padding: 50px 0;
    }
}

@media (max-width: 680px) {
    .cusBanTit {
        font-size: 20px;
    }
}

.cusJBox {
    background: #f7f8f9;
    position: relative;
}

.cusJList {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.cusJSwiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.cusJImg {
    width: 100%;
    padding-top: 135%;
    position: relative;
}

.cusJImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.cusJBon {
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.cusBanBtn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cusBanBtn svg {
    width: 15px;
    height: 15px;
}

.cusJSwiper_pagination {
    width: calc(100% - 150px);
    margin-left: 50px;
    height: 1px;
    background: #ddd;
    position: relative;
}

.cusJSwiper_pagination .swiper-pagination-bullet {}

.cusJSwiper_pagination .swiper-pagination-progressbar-fill {
    background: #333;
}









/* 订单 */
.ordBox {
    width: 100%;
    background: #f7f8f9;
    padding: 120px 0;
}

.ordBox .inner {
    display: flex;
    max-width: 1440px;
}

.ordLeft {
    width: 26%;
    margin-right: 20px;
    position: relative;
}

.ordFBox {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 40px;
    background: #fff;
    margin-bottom: 20px;
}

.ordFGr {
    font-size: 18px;
    font-weight: 600;
}

.ordFTc {
    margin: 8px 0 24px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ordFList {
    box-sizing: border-box;
    padding: 24px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.ordFItem {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.ordFItem:last-child {
    margin-bottom: 0;
}

.ordFTop {
    display: flex;
    align-items: center;
}

.ordFTop svg {
    width: 24px;
    height: 24px;
}

.ordFTop svg path {
    fill: #333;
}

.ordFTop p {
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
}

.ordFTbox {
    margin-top: 20px;
    position: relative;
    padding-left: 30px;
}

.ordFTbox a {
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.ordXBox {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 40px;
    background: #fff;
    margin-bottom: 20px;
}

.ordXTop {
    display: flex;
}

.ordXBox svg {
    width: 24px;
    height: 24px;
}

.ordXTop p {
    font-size: 16px;
    margin-left: 8px;
}

.ordXText {
    padding-left: 30px;
    margin-top: 20px;
}

.ordXText p {
    font-size: 14px;
    margin-bottom: 12px;
}

.ordXText a {
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ordRig {
    width: 70%;
    position: relative;
}

.ordRLikeList {
    margin-top: 50px;
}

.ordRLikeList .FrameLikeItem {
    background: #fff;
}

.ordRItem {
    position: relative;
}

.ordRDTit {
    font-size: 18px;
    font-weight: 600;
}

.ordRDList {
    margin-top: 20px;
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 24px;
    background: #fff;
}

.ordRTab {
    width: 100%;
}

.ordRTab tr {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.ordRTab tr th, .ordRTab tr td {
    text-align: left;
}
.orderId{
    width: 25% !important;
}
.orderId, .date, .status, .price {
    width: 18%;
}

.oper {
    width: 28%;
}

.ordRTab tr th {
    font-size: 18px;
    font-weight: 600;
}

.ordRTab tr td p {
    font-size: 14px;
    font-weight: 400;
}

.ordRBtn {
    transition: background .5s;
    cursor: pointer;
    width: 168px;
    height: 46px;
    background: #fff;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, .1);
    color: #33383c;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px 0 rgba(51, 56, 60, .0392156862745098);
    box-shadow: 0 4px 80px 0 rgba(51, 56, 60, .0784313725490196);
    margin: 0 0 0 auto;
}

.orderId a {
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ordRNav {
    margin-top: 30px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ordRNItem {
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.ordRNItemAct {
    font-size: 16px;
    font-weight: 600;
}





/* 订单详情 */
.ordIFh {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.ordIFh p {
    font-size: 14px;
    margin-left: 5px;
}

.ordIFh svg {
    width: 15px;
    height: 15px;
}

.ordICon {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 24px;
    background: #fff;
    margin-top: 20px;
}

.ordICItem {
    position: relative;
}

.ordICItem:nth-child(1) {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.ordITit {
    font-size: 16px;
    font-weight: 600;
    color: #7b8487;
}

.ordIType {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    margin: 10px 0;
}

.ordIText {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.ordIText span {
    font-size: 14px;
}

.ordIText p {
    font-size: 14px;
    font-weight: 600;
}

.ordIFItem {
    position: relative;
    margin-top: 30px;
    position: relative;
}

.ordIFTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ordIFTop p {
    font-size: 14px;
    color: #7B8487;
}

.ordIFTbox {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-sizing: border-box;
    background: #fff;
    padding: 24px 16px;
    margin-top: 20px;
}

.ordIFCp {
    display: flex;
    justify-content: space-between;
}

.ordIFText {
    position: relative;
}

.ordIFImg {
    width: 120px;
    height: 120px;
    position: relative;
    background: #f7f8f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ordIFImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ordIFRig {
    width: calc(100% - 150px);
    margin-left: 30px;
    position: relative;
}

.ordIFTit {
    font-size: 18px;
    font-weight: 600;
}

.ordIFNum {
    margin: 20px 0;
}

.ordIFBon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ordIFJe {
    font-size: 18px;
    font-weight: 600;
}

.ordIFZj {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
}


/* 地址 */
.addItem {
    background: #f6f6f6;
    position: relative;
    padding: 15px;
    margin: 5px 0;

}

.addTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addTit {
    font-size: 18px;
    font-weight: 600;
}
.addBjA{
    display: flex;
}

.addBjb{
    margin-left: 15px;
}
.addBj {
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}

.addCon {
    position: relative;
    margin-top: 15px;
}

.addCon p {
    font-size: 14px;
    margin-bottom: 8px;
}

.addTj {
    transition: background .5s;
    cursor: pointer;
    width: 164px;
    height: 46px;
    background: #fff;
    box-sizing: border-box;
    border: 1px solid #acb2b4;
    color: #33383c;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px 0 rgba(51, 56, 60, .0392156862745098);
    box-shadow: 0 4px 80px 0 rgba(51, 56, 60, .0784313725490196);
    margin: 20px auto 0;
}

.addJBox {
    position: relative;
    margin-top: 30px;
}

.addJTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.addJTit p {
    font-size: 18px;
    font-weight: 600;
}

.addJTit span {
    color: #7b8487;
}

.addJIcon {
    width: 18px;
    height: 18px;
    position: relative;
}

.addJIcon svg {
    width: 100%;
    height: 100%;
}

.addJIcon svg path {
    fill: #33383c;
}




.addJFrom {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.addJItem {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
}

.addJItem_50 {
    width: calc(50% - 10px);
    margin-right: 20px;
}

.addJItem_50:nth-child(2) {
    margin-right: 0;
}

.addJItem span {
    font-size: 14px;
    color: #7b8487;
}

.addJItem input {
    width: 100%;
    height: 25px;
    position: relative;
}

.addJMr {
    margin: 20px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.addJMrK {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.addJMr p {
    font-size: 16px;
    margin-left: 8px;
}

.addJBtn {
    transition: background .5s;
    cursor: pointer;
    width: 350px;
    height: 55px;
    background: #33383c;
    color: #fff;
    border: 0 !important;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.ordRig .ShopList {
    margin-top: 20px;
}

.LikeItem {
    background: #fff;
}




/* 购物车 */
.shopTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
}

.ShopItem {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
    background: #fff;
    position: relative;
}
.Shopxj{
    position: absolute;
    left: 0;
    width: 250px;
    z-index: 99;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #33333359;
    color: #fff;
}
.ShopImg {
    width: 250px;
    position: relative;
    height: 250px;
    background: #f7f8f9;
}

.ShopImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: contain;
}

.ShopRig {
    box-sizing: border-box;
    width: calc(100% - 250px);
    padding: 24px 48px;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: space-between;
}

.ShopBh {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ShopBh a {
    width: calc(100% - 120px);
    font-size: 18px;
}

.ShopBh p {
    font-size: 20px;
    font-weight: 600;
}

.ShopText {
    color: #7B8487;
    font-size: 14px;
    margin: 5px 0;
}

.ShopBon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.ShopSl {
    display: flex;
    align-items: center;
}

.ShopSl span {
    color: #7B8487;
}

.ShopSl p {
    cursor: pointer;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B8487;
    border: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 1;
    font-size: 14px;
}

.ShopSl input {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B8487;
    text-align: center;
    background: transparent;
}

.ShopSc {
    color: #7B8487;
    position: relative;
    cursor: pointer;
}

.ShopSc::after {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.62);
    position: absolute;
    bottom: 0;
    right: 0;
    content: '';
    transition: width 0.8s;
}

.ShopSc:hover::after {
    width: 0;
    left: 0;
}

.ShopBtn {
    width: 100%;
    height: 55px;
    background: #33383c;
    color: #fff;
    border-radius: 6px;
    transition: background .5s;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    margin-top: 10px;
}

.ShopBtn span {
    font-size: 14px;
    color: #eee;
}

.ShopYz {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ShopYz img {
    width: 100%;
    height: 100%;
    opacity: 0;
}

.ShopItemAct .ShopYz {
    background: #000;
}

.ShopItemAct .ShopYz img {
    opacity: 1;
}

.shopFList {
    margin-top: 30px;
}

.shopFItem {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.shopFBtn {
    margin: 30px auto 0;
    transition: background .5s;
    cursor: pointer;
    width: 380px;
    height: 55px;
    background: #33383c;
    color: #fff;
    border: 0 !important;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shopFZj {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.shopFZj p {
    font-size: 18px;
    font-weight: 600;
}



/* 支付 */
.ordPItem {
    position: relative;
    border-bottom: 1px solid #e5e5e5;
}

.ordPTop {
    padding: 30px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ordPTit {
    font-size: 14px;
}

.ordPRig {
    width: calc(100% - 80px);
    display: flex;
    justify-content: end;
    align-items: center;
}

.ordPRig a {
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-left: 10px;
    font-weight: 600;
}

.ordPRig p {
    text-align: end;
    width: calc(100% - 50px);
    font-size: 14px;
    color: #7B8487;
}

.ordPDx {
    display: flex;
    align-items: center;
    margin-left: 20px;
    position: relative;
}

.ordPDx input {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(26, 3, 3, 0.2);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 5px;
}

.ordPDxAct input::after {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    content: '';
    background: #333;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}





/* 我的 */
.meTop {
    position: relative;
}

.meRTit {
    font-size: 16px;
    font-weight: 600;
}

.meRFrom {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
}

.meRItem {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
}

.meRInput {
    width: 49%;
    position: relative;
}

.meRInput span {
    font-size: 12px;
    color: #7B8487;
}

.meRInput input {
    background: transparent;
    width: 100%;
    height: 36px;
    font-size: 16px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.meRBtn {
    transition: background .5s;
    cursor: pointer;
    width: 49%;
    height: 48px;
    background: #33383c;
    color: #fff;
    border: 0 !important;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meRText {
    font-size: 14px;
    margin-top: 20px;
}

.meRTs {
    font-size: 12px;
    margin: 20px 0;
    color: #7B8487;
}

.meRBtnYx {
    cursor: pointer;
    text-align: center;
    width: 49%;
    margin: 12px 0;
    font-size: 14px;
    position: relative;
    text-align: center;
    line-height: 20px;
    color: #33383c;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.meRAdd .meRInput {
    width: 100%;
}

.meRIcon {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    bottom: 8px;
}




.ordRHBox2{
    display: none;
}
.ordRHList {
    position: relative;
    margin-top: 20px;
}

.ordRHItem {
    display: block;
    margin-bottom: 20px;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, .1);
    background: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    padding: 20px;
}

.ordRHTop {
    display: flex;
    justify-content: space-between;
}

.ordRHTime {
    font-size: 12px;
    color: #7b8487;
}
.ordRHType{
   font-size: 12px; 
}
.ordRHCon{
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}
.ordRHNum{
    font-size: 16px;
    font-weight: 600;
        text-decoration: underline;
    text-underline-offset: 4px;
}
.ordRHPir{
    font-size: 16px;
    font-weight: 600;
}
.ordRHbtn{
    margin: 30px auto 0;
    width: 100%;
    max-width: 350px;
    height: 55px;
        transition: background .5s;
    cursor: pointer;
    background: #fff;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, .1);
    color: #33383c;
    border-radius: 6px;
    font-weight: 500;
    display: flex
;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px 0 rgba(51, 56, 60, .0392156862745098);
    box-shadow: 0 4px 80px 0 rgba(51, 56, 60, .0784313725490196);

}
@media (max-width: 1368px) {
    .ShopImg {
        width: 220px;
        position: relative;
        height: 220px;
    }

    .ShopRig {
        width: calc(100% - 220px);
        padding: 20px 32px;
    }

    .ordXBox, .ordFBox {
        padding: 25px;
    }

    .ordXText {
        padding-left: 0;
    }

    .ordIFTit {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .ordBox {
        padding: 100px 0 50px;
    }

    .ordBox .inner {
        flex-wrap: wrap;
    }

    .ordLeft {
        margin-right: 0;
        width: 100%;
    }

    .ordXBox {
        display: none;
    }

    .ordRig {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .ordRHBox1 {
        display: none;
    }
    .ordRHBox2{
        display: block;
    }
}

@media (max-width: 680px) {
    .ordIFNum {
        margin: 12px 0;
    }

    .ordIFTit {
        font-size: 14px;
    }

    .ordIFImg {
        width: 100px;
        height: 120px;
    }

    .ordIFRig {
        width: calc(100% - 120px);
        margin-left: 20px;
    }

    .ordIFJe {
        font-size: 16px;
    }

    .ordIFTbox {
        padding: 20px 15px;
    }

    .ordIFZj {
        font-size: 18px;
    }

    .ordFTbox a {
        font-size: 14px;
        display: block;
        margin-bottom: 5px;
    }

    .ordFItem {
        display: block;
        margin-bottom: 12px;
    }

    .ordICon {
        padding: 20px;
    }

    .ordFTbox {
        margin-top: 10px;
    }

    .meRInput {
        width: 100%;
    }

    .meRItem {
        flex-wrap: wrap;
    }

    .meRInput:nth-child(2) {
        margin-top: 20px;
    }

    .meRBtn {
        width: 100%;
    }

    .meRBtnYx {
        width: 100%;
    }

    .ordRDList {
        padding: 20px;
    }

    .addJBtn {
        width: 100%;
    }

    .addJMr p {
        font-size: 14px;
    }

    .FrameLikeItem {
        flex-wrap: wrap;
    }

    .FrameLikeImg {
        width: 100%;
        padding-top: 65%;
    }

    .FrameLikeRig {
        width: 100%;
    }

    .FrameShopList {
        height: calc(100vh - 200px);
    }

    .ShopItem {
        flex-wrap: wrap;
    }

    .ShopImg {
        width: 100%;
    }

    .ShopRig {
        padding: 20px;
        width: 100%;
    }

    .ShopYz {
        width: 18px;
        height: 18px;
        position: absolute;
        left: 12px;
        top: 12px;
    }

    .ShopBh p {
        font-size: 16px;
    }

    .ShopBh a {
        width: calc(100% - 80px);
    }

    .shopFBtn {
        width: 100%;
    }

    .ordPTop {
        padding: 20px 0
    }

    .ordIFCp {
        flex-wrap: wrap;
    }

    .ordIFImg {
        width: 100%;
        height: 220px;
    }

    .ordIFRig {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}