#loginErrorModal{
    display:none; 
    position:fixed; 
    width:400px;
    height:100px;
    top:30%;
    left:50%; 
    text-align: center;
    transform:translate(-50%, -50%);
    background:#fff;
    border:1px solid #929292;
    padding:20px; 
    z-index:9999;
    border-radius: 5px;
    p{
        width:80%;
        margin:0 auto;
        color:red;
        height:60px;
    }
    .closeBtn{
        width:100px;
        height:40px;
        margin:0 auto;
        border:none;
        outline: none;
        color:#fff;
        background: #216be6;
    }
}
.LoginBox{
    max-width:960px;
    height: 570px;
    margin:3% auto;
    .LoginImg{
        width:55%;
        float:left;
    }
    .LoginForm{
        width:45%;
        float:right;
        .LoginTxt-title{
            width: 380px;
            height:80px;
            line-height:80px;
            margin:0 auto;
            ul{
                li{
                    float:left;
                    width:50%;
                    text-align: center;
                    border-bottom:2px solid #edf1f2;
                }
                li.active{
                        border-bottom:2px solid #216be6; 
                }
            }
        }
        .LoginConent{
            width:380px;
            height:470px;
            margin:0 auto;
            overflow: hidden;
            .Tip{
                width: 100%;
                height:40px;
                line-height: 40px;
                margin:30px auto;
                font-size:24px;
                border-left:10px solid #216be6;
                text-indent: 50px;
            }
            ul{
                li{
                    width: 100%;
                    height:50px;
                    line-height: 50px;
                    position:relative;
                    margin:20px auto;
                    input{
                        width: 96%;
                        height:40px;
                        margin:5px auto;
                        border:1px solid #b6b6b6;
                        outline: none;
                        padding-left: 10px;
                    }
                    .codeBox{
                        width:120px;
                        height:40px;
                        position:absolute;
                        right:4px;
                        top:7px;
                        img{
                            width:100%;
                            height:100%;
                        }
                    }
                    button{
                        width: 100%;
                        height:50px;
                        font-size:18px;
                        color:#ffffff;
                        background: #216be6;
                        border:1px solid #216be6;
                        outline: none;
                    }
                    span{
                        width:50%;
                        float:left;
                        text-align:center;
                    }
                }
            }
        }
    }
}
.RegBox{
    width:900px;
    height:600px;
    margin:0 auto;
     .Tip{
                width: 100%;
                height:40px;
                line-height: 40px;
                margin:30px auto;
                font-size:24px;
                border-left:10px solid #216be6;
                text-indent: 50px;
            }
    .RegTxt-title{
        width:100%;
            height:80px;
            line-height:80px;
            margin:0 auto;
            ul{
                li.l1{
                    float:left;
                    width:20%;
                    text-align: center;
                    border-bottom:2px solid #edf1f2;
                }
                li.l2{
                    float:left;
                    width:20%;
                    text-align: center;
                    border-bottom:2px solid #edf1f2;
                }
                li.l3{
                    float:left;
                    width:60%;
                    text-align: right;
                    border-bottom:2px solid #edf1f2;
                }
                li.active{
                   
                        border-bottom:2px solid #216be6;
                   
                }
            }
    }
     .RegConent{
            width:100%;
            height:auto;
            margin:0 auto;
            overflow: hidden;
            ul{
                
                li{
                    width: 100%;
                    height:50px;
                    line-height: 50px;
                    position:relative;
                    margin:20px auto;
                    display: flex;
                   .n{
                        display: inline-block;
                        width:20%;
                        margin-left:10%;
                        text-align:left;
                    }
                     input[type='date']{
                        width: 60%;
                        height:40px;
                        border:1px solid #b6b6b6;
                        float:left;
                        outline: none;
                        padding-left: 10px;
                    }
                    input[type='text']{
                        width: 60%;
                        height:40px;
                        border:1px solid #b6b6b6;
                        float:left;
                        outline: none;
                        padding-left: 10px;
                    }
                     input[type='password']{
                        width: 60%;
                        height:40px;
                        border:1px solid #b6b6b6;
                        float:left;
                        outline: none;
                        padding-left: 10px;
                    }
                    input[type='radio']{
                        margin-right:20px;
                        margin-left:20px;
                    }
                    .RegcodeBox{
                        width:120px;
                        height:40px;
                        position:absolute;
                        right:80px;
                        top:1px;
                        img{
                            width:100%;
                            height:100%;
                        }
                    }
                    button{
                        width: 100%;
                        height:50px;
                        font-size:18px;
                        color:#ffffff;
                        background: #216be6;
                        border:1px solid #216be6;
                        outline: none;
                    }
                    span{
                        width:50%;
                        float:left;
                        text-align:center;
                    }
                }
            }
        }
}
/* 浮动购物车样式 */
.floating-cart {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.cart-icon {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #f8f8f8;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#cart-toggle {
    display: none;
}

.cart-content {
    display: none;
    position: absolute;
    right: 0;
    bottom: 60px;
    width: 300px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    max-height: 400px;
    overflow-y: auto;
}

#cart-toggle:checked ~ .cart-content {
    display: block;
}

#cart-items li {
    list-style-type: none;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

#cart-items li:last-child {
    border-bottom: none;
}
.member-center {
    width: 90%;
    margin: 0 auto;
    max-width: 1400px;
    display: flex;
    padding: 20px;
    flex-wrap: wrap;
}

.member-sidebar {
    width: 250px;
    background-color: #f5f7fa;
    border-radius: 6px;
    padding: 15px;
    margin-right: 20px;
    font-size:14px;
}

.member-sidebar ul {
    list-style: none;
    padding: 0;

}

.member-sidebar ul li {
    margin-bottom: 15px;
    line-height:40px;
    color:#555;
    border-bottom:1px solid #ebebeb;
}

.member-sidebar ul li a {
    text-decoration: none;
    color: #555;
}

.member-content {
    flex: 1;
    min-width: 300px;
}
.cartTitle{
    width:100%;
    font-size:18px;
    height:40px;
    line-height: 40px;
    margin-bottom:20px;
}
.order-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.order-table th,
.order-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.order-table th {
    background-color: #f1f1f1;
}
.img-box,.img-box img{
    width:33px;
    height:40px;
    float:left;
    margin-right:20px;
}
.EditConent{ 
    width:80%;
    /* height:700px; */
    margin:0 auto;
    ul{
        li{
            height:60px;
            line-height: 60px;
            .n{
                width:15%;
                float:left;
            }
             input[type='date']{
                        width: 74%;
                        height:40px;
                        border:1px solid #b6b6b6;
                        float:left;
                        outline: none;
                        padding-left: 10px;
                    }
            input[type=text]{
                width:75%;
                height:45px;
                text-indent: 20px;
                border:1px solid #ccc;
            }

            input[type=password]{
                width:75%;
                height:45px;
                text-indent: 20px;
                border:1px solid #ccc;
            }
             input[type=radio]{
                margin-left:20px;
                margin-right:20px;
             }
             button{
                width:200px;
                height:40px;
                background-color: #1363ad;
                color:#fff;
                border:none;
                outline: none;
                margin:20px auto 0px;
             }
        }
    }
}

/* --------------------------------------------------------------- */
.tab-navigation {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
  padding: 10px 20px;
  background: #f5f5f5;
  border: none;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  margin-right: 5px;
}

.tab-btn.active {
  background: #1363ad;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.shipping-option, .payment-option, .invoice-option {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.shipping-option:last-child, .payment-option:last-child, .invoice-option:last-child {
  border-bottom: none;
}

.tab-actions {
  margin-top: 20px;
  text-align: right;
}

.btn-primary {
  padding: 10px 20px;
  background: #1363ad;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-left: 10px;
}

.btn-secondary {
  padding: 10px 20px;
  background: #ccc;
  color: #333;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-left: 10px;
}

.order-summary {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}

.summary-item.total {
  font-weight: bold;
  border-top: 1px solid #ddd;
  margin-top: 10px;
  padding-top: 10px;
}

.form-group {
    display: flex;
  margin-bottom: 15px;
}

.form-group label {
  width: 150px;
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.form-group input, .form-group select {
  width: 20%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 3px;
}
/* 添加收获地址 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.modal-header {
  padding: 10px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.modal-header h3 {
font-size:14px;
  margin: 0;
  color: #333;
}
.close {
  position: absolute;
  right: 15px;
  top: 5px;
  color: #aaa;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #000;
}
.modal-body {
  padding: 15px;
}
.form-group {
  margin-bottom: 5px;
}
.form-group label {
    height:30px;
    line-height:30px;
    font-size:13px;
    font-weight: 500;
}
.btn-primary {
  background-color: #1363ad;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.btn-secondary {
  background-color: #ccc;
  color: #333;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #0f528c;
}
.btn-secondary:hover {
  background-color: #bbb;
}

@media screen and (max-width:1024px){

    .LoginBox{ width:100%;}
    .LoginImg{ display: none; background: blue;}
    .LoginForm{ width:100%!important; float:left!important;}
    .LoginConent{
      overflow: visible!important;
    }
    .RegForm{
        width:90%;
        margin:0 auto!important;
    }
    .wapHide{
        display: none;
    }
    .member-center {
        width:90%;
        padding:0px 0px;
        flex-direction: column;
        overflow: hidden;
        margin:10px auto;
    }
    .member-sidebar {
        width:90%;
        background: #fff;
    }
    .member-sidebar ul li{ 
        width:46%; 
        float:left; 
        background: #f5f7fa; 
        text-align:center; 
        margin:5px 5px;
    }
    .member-content {
        width: 100%;
        .cartTitle{
            font-size:14px!important;
        }
        h2{
            text-indent: 20px;;
        }
    }
    .order-table {
      display: table;
    }
    .order-table thead {
      display: table-header-group;
    }
    .order-table thead th:first-child {
      width:40%;
    }
    .order-table tbody tr {
      display: table-row;
      flex-direction: row;
    }
   .order-table tbody td::before {
      display: none;
    }
.order-table th,
.order-table td {
    padding: 5px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    /* display: block; */
}
.cartTitle{ }
.cartTitle span{
    margin-right:10px;
}
    .addressTable tr td{
        font-size:12px!important;
    }
    .addressTable thead th:first-child {
      width:20%!important;
    }
    .RegBox{
        width:100%;
        .RegConent{
            ul{
                li{
                    .n{
                        width:30%;
                        margin-left:15px;
                    }
                }
            }
        }
    }
    .EditConent{ 
        width:100%;
        ul{
            li{
                .n{
                    width:35%;
                    margin-left:15px;
                }
                input[type=text]{
                width:55%;
                height:45px;
                text-indent: 20px;
                border:1px solid #ccc;
            }
              input[type=date]{
                width:53.5%;
                height:45px;
                text-indent: 5px;
                border:1px solid #ccc;
            }
            input[type=password]{
                width:55%;
                height:45px;
                text-indent: 20px;
                border:1px solid #ccc;
            }
             input[type=radio]{
                margin-left:10px;
                margin-right:10px;
             }
             button{
                width:200px;
                height:40px;
                background-color: #1363ad;
                color:#fff;
                border:none;
                outline: none;
                margin:20px auto 0px;
             }
            }
        }
    }
    .wapTable{
        width:96%!important;
        margin:0 auto;
      tr{
            td{
                    display: block;
                    text-align:left;
            }
            .wapOT{
                width:40%;
                float:left;
                background:#f5f7fa
            } 
            .wapOrderTitle{
                font-size:16px;
                font-weight: 600;
            }
            .wapImg{
                width:40%;
                float:left;
                border:none;
            }
      }
    }
    .wapHideDetail{ display: none!important;}
    .tab-navigation{
        .tab-btn{
            font-size:12px;
        }
    }
    .order-table{
        tr{
            td{
                font-size:12px!important;
            }
        }
    }
}