html {
    --color: #F8AF3F;
    --font-family: 'Arial';
}


button {
    cursor: pointer;
}

.w1520 {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
}

.w1400 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.w1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.w400 {
    max-width: 400px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.flex-x {
    display: flex;
    flex-direction: row;
}

.flex-y {
    display: flex;
    flex-direction: column;
}

.dialog {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.dialog .form {
    width: 100%;
    max-width: 700px;
    height: 400px;
    background: #E8E8E8;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.dialog .form span{
   
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    
}
.dialog .form .cspan{
   
    position: inherit;
    top: 10px;
    right: 10px;
    cursor: pointer;
    
}
.dialog .form span img
{ width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, .5);
    border-radius: 50%;
    padding: 5px;
    }
.dialog .form .title {
    font-size: 32px;
    line-height: 1.6;

}

.dialog .form .text {
    width: 380px;
    height: 50px;
    line-height: 50px;
    text-align: left;
    /* padding: 0 20px; */
    font-size: 18px;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 15px;
    background: #fff;
    margin: 20px 0;
    cursor: pointer;
    position: relative;
}

.dialog .form .country-label {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.dialog .form .country-label::before {
    content: '';
    border-top: 12px solid #000;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid transparent;
    position: absolute;
    top: 62%;
    right: 20px;
    transform: translateY(-50%);
}

.dialog .form .country-input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.dialog .form .ul-w {
    width: 100%;
    padding: 10px 5px 10px 10px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 101;
    background: #fff;
    border-radius: 10px;
    margin-top: 2px;
    display: none;
}

.dialog .form ul {
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border: 1px solid #fff;
}

.dialog .form ul::-webkit-scrollbar {
    width: 3px;
}

.dialog .form ul::-webkit-scrollbar-thumb {
    background: #f00;
}

.dialog .form ul li {
    height: 36px;
    line-height: 36px;
    padding: 0 10px;
}

.dialog .form ul li:hover {
    background: #eee;
}

.dialog .form button {
    width: 380px;
    padding: 15px 0;
    font-size: 18px;
    background: #f00;
    color: #fff;
    border-radius: 15px;
    cursor: pointer;
}

.index-page {
    height: 100%;
}

.index-page1 {
    height: 100vh;
    position: relative;
}

.header {
    color: #fff;
    border-bottom: 1px solid #eeeeee23;
    background: #232323;
}

.index-page1 .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
}

.header .flex-x {
    height: 90px;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    height: 60px;
}

.header .right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header .right a {
    color: #fff;
    font-size: 14px;
    margin: 0 15px;
}

.header .right a.a3 {
    border: 1px solid #fff;
    padding: 6px 20px 5px;
    border-radius: 20px;
}

.header .right a.a4 {
    border: 1px solid #fff;
    padding: 6px 20px 5px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
}

.header .right a.a4 img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.header .right a.a4 span {
    padding: 2px 0 0;
    /* line-height: 1; */
}
.header .right a.a5{
    position: relative;
}
.header .right a.a5 span{
    position: absolute;
    top: -5px;
    right: -20px;
    /* width: 30px; */
    padding: 0 5px;
    height: 16px;
    line-height: 16px;
    background: #f00;
    border-radius: 20px;
    text-align: center;
    font-size: 10px;
}
.header .right .header-icon {
    height: 24px;
}

.index-page1 .bg {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    object-fit: cover;
}

.index-page1 .content {
    position: absolute;
    left: 0;
    top: 90px;
    width: 100%;
    height: calc(100vh - 90px);
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
}

.index-page1 .content .w1520 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index-page1 .content .top {
    margin-bottom: 50px;
}

.index-page1 .content .top .tit1 {
    font-size: 80px;
    color: #ccc;
    font-weight: bold;
    font-style: italic;
    line-height: 1;
    margin-bottom: 10px;
}

.index-page1 .content .top .tit2 {
    display: flex;
    flex-direction: row;
    align-items: end;
}

.index-page1 .content .top .tit2 .left {
    width: 61%;
    font-size: 48px;
    color: #fff;
    font-weight: bold;
    font-style: italic;
    line-height: 40px;
}

.index-page1 .content .top .tit2 .right {
    font-size: 16px;
    color: #ccc;
    border-bottom: 1px solid #ccc;
}

.index-page1 .content .bottom {
    display: flex;
    flex-direction: row;
}

.index-page1 .content .bottom .thum_swiper {
    height: 100%;
    margin-right: 20px;
    font-size: 16px;
    color: #999;
}

.thum_swiper {
    border: 1px solid #666;
    border-radius: 10px;
}

.thum_swiper .swiper-wrapper {
    margin: 0;
    padding: 0;
}

.thum_swiper .swiper-slide {
    /* height: 100%; */
    padding: 22px 30px;
    cursor: pointer;
}

.thum_swiper .swiper-slide+.swiper-slide {
    border-top: 1px solid #666;
}

.thum_swiper .swiper-slide-thumb-active {
    color: #fff;
}

.index-page1 .content .bottom .swiper1 {
    flex: 1;
    height: 500px;
}

.index-page1 .content .bottom .swiper1 .swiper-slide {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.index-page1 .content .bottom .swiper1 .left {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-page1 .content .bottom .swiper1 .left img {
    width: 80%;
    height: 100%;
    max-height: 450px;
    object-fit: contain;
    margin: 0 auto;
}

.p-item {
    width: 45%;
}

.p-item .top {
    padding-bottom: 30px;
    margin: 0 !important;
    position: relative;
}

.p-item .top::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    display: inline-block;
    width: 100px;
    height: 3px;
    background: #f00;
}

.p-item h1 {
    font-size: 72px;
    font-weight: bold;
    line-height: 1;
    width: 100%;
}

.p-item p {
    font-size: 20px;
}

.p-item ul {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid;
    border-top: 1px solid;
    border-image: linear-gradient(to right, rgba(108, 108, 108, 1), rgba(108, 108, 108, .1)) 1;
    margin: 0 0 50px;
}

.p-item ul li {
    padding: 30px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.p-item ul li .item {
    width: 33%;
}

.p-item ul li+li {
    border-top: 1px solid;
    border-image: linear-gradient(to right, rgba(108, 108, 108, 1), rgba(108, 108, 108, .1)) 1;
}

.p-item ul li>.item .name {
    color: #999;
    font-size: 16px;
    line-height: 1;
}

.p-item ul li>.item .value {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}

.p-item .btn {
    color: #999;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #999;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
}

.p-item .btn:hover {
    background: #f00;
    color: #fff;
    border-color: #f00;
}

.p-item .btns a+a {
    margin-left: 10px;
}

.index-page2 {
    /* position: relative; */
	background: url('../images/index_bg_2.jpg') no-repeat top center;
    background-size: cover;
}

.index-page2 .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-page2 .content {
   /*  position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0; */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.index-page2 .content>.item {
    width: 100%;
    /* height: 33.3%; */
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.index-page2 .content>.item:nth-child(2n+2) {
    display: flex;
    flex-direction: row-reverse;
}

.index-page2 .content .item .left {
    width: 46%;
}

.index-page2 .content .item .right {
    width: 45%;
    position: relative;
}

.index-page2 .content .item .right .p-img {
    width: 100%;
}

.index-page2 .content .item .right .hot-icon {
    position: absolute;
    top: 0;
    right: 10%;
    width: 70px;
}

.index-page3 {
    background: #474747;
    width: 100%;
    min-height: 300px;

}

.index-page3 .w1520 {
    padding: 40px 0 80px;
}

.index-page3 .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    color: #fff;
    line-height: 1;
    margin-bottom: 30px;
}

.index-page3 .top .title {
    font-size: 48px;
    font-weight: bold;

}

.index-page3 .top button {
    height: 100%;
    font-size: 14px;
    padding: 5px 20px;
    color: #999;
    border: 1px solid #999;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.index-page3 .top button:hover {
    background: #f00;
    border-color: #f00;
    color: #fff;
}

.index-page3 ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.index-page3 ul li {
    width: 24%;
    background: #000;
    margin-bottom: 25px;
}

.index-page3 ul li a {
    color: #fff;
    display: inline-block;
    padding: 30px;
    width: 100%;
    height: 100%;
    text-align: center;
}

.index-page3 ul li .accessory-img {
    margin-bottom: 25px;
    width: 100%;
}

.index-page3 ul li .info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;

}

.index-page3 ul li .info .name {
    font-size: 16px;
    line-height: 2;
	text-align: left;
}

.index-page3 ul li .info .price {
    font-size: 18px;
    color: #f00;
    line-height: 30px;
}
.index-page3 ul li .info .price2{
	font-size: 15px;
    color: #999;
    line-height: 30px;
    margin-left: 10px;
    text-decoration: line-through;
}
.index-page3 ul li .right{
	margin-bottom:10px;
}
.index-page3 ul li .right img {
    height: 20px;
}

.footer {
    height: 279px;
    background: #000;
    padding: 30px 0;
}

.footer .f_logo img {
    height: 60px;
}

.footer .top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.footer .top ul {
    display: flex;
    flex-direction: row;
    align-items: end;
}

.footer .top ul li {
    margin: 0 10px;
}

.footer .top ul li img {
    height: 20px;

}

.footer .bottom {
    display: flex;
    align-items: end;
}

.footer .bottom-left {
    flex: 1;
    display: flex;
    flex-direction: column;

}

.footer .bottom-left ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);

}

.footer .bottom-left ul li a {
    color: #999;
    font-size: 14px;
}

.footer .bottom-left ul li a:hover {
    color: #fff;
}

.footer .bottom-left .icp-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    color: rgba(255, 255, 255, .3);
    padding-top: 20px;
}

.footer .bottom-left .icp-info img {
    height: 20px;
}

.footer .bottom-right {
    display: flex;
    flex-direction: row;
    align-items: end;
    margin-left: 80px;
}

.footer .bottom-right p {
    color: #fff;
    opacity: 0.4;
    margin-left: 20px;
    font-size: 14px;
}






/* login页面 */
.login-page {
    margin: 0 auto;
    min-height: calc(100vh - 280px - 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.login-page h1 {
    width: 400px;
    margin-bottom: 25px;
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    padding: 0 0 18px;
    position: relative;
}

.login-page h1::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: inline-block;
    width: 50px;
    height: 6px;
    background: #f00;
}

.login-page .form {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-page .form input {
    width: 100%;
    border: 1px solid #999;
    border-radius: 10px;
    padding: 0 20px;
    height: 48px;
    line-height: 48px;
    margin: 5px 0;
    font-size: 16px;
}

.login-page .form button {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
    text-align: center;
    margin-top: 15px;
    background: #363636;
    color: #fff;
    font-size: 16px;
}

.login-page .form p {
    margin: 25px 0 20px;
    font-size: 18px;
    color: #333;
    line-height: 1;
}

.login-page .form a {
    line-height: 1;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-decoration: underline;
}

.register-page input {
    color: #666;
}

.country {
    width: 400px;
    text-align: left;
    height: 48px;
    margin: 5px 0;
    font-size: 16px;
    position: relative;
    border: 1px solid #999;

    border-radius: 10px;
    background: #fff;

    position: relative;
    color: #666;
}

.country .country-label {
    display: inline-block;
    width: 100%;
    height: 48px;
    line-height: 48px;
    margin: 0;
    color: #666;
    font-size: 16px;
    padding: 0 20px;
    cursor: pointer;
    z-index: 2;
    /* display: none; */
}

.country .country-label::before {
    content: '';
    border-top: 12px solid #999;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    top: 58%;
    right: 20px;
    transform: translateY(-50%);
}

.country .country-input {
    height: 46px;
    position: absolute;
    top: 0px;
    left: 0;
    z-index: -1;
    margin: 0;
    /* display: none; */
    opacity: 0;
}

.register-page .country .country-input {
    margin: 0;
}

.my-info .country .country-input {
    margin: 0;
}

.country .ul-w {
    width: 400px;
    padding: 10px 5px 10px 10px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 101;
    background: #fff;
    border-radius: 10px;
    margin-top: 1px;
    margin-left: -1px;
    display: none;
    border: 1px solid #ccc;
}

.country ul {
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border: 1px solid #fff;
}

.country ul::-webkit-scrollbar {
    width: 3px;
}

.country ul::-webkit-scrollbar-thumb {
    background: #999;
}

.country ul li {
    height: 36px;
    line-height: 36px;
    padding: 0 10px;
}

.country ul li:hover {
    background: #eee;
}

.register-page .checkbox-w {
    display: flex;
    flex-direction: row;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
}

.register-page .checkbox-w input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    margin-right: 10px;
}


/* 整车页面 */
.product-list-page {
    min-height: calc(100vh - 280px - 90px);
    background: url('/images/product_list_bg.jpg') repeat-y top center;
    background-size: 100% auto;
}

.product-list-page>.top {
    width: 100%;
    background: #474747;
    padding: 50px 0;
    text-align: center;
    font-style: italic;

}

.product-list-page>.top h1 {
    font-size: 80px;
    color: #ccc;
    line-height: 1;
    font-weight: bold;
}

.product-list-page>.top h2 {
    font-size: 48px;
    color: #fff;
    line-height: 1;
    font-weight: bold;
}

.product-list-page .content {
    padding: 30px 0;
}

.product-list-page .content>.item {
    padding: 80px 0;
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

}

.product-list-page .content>.item:nth-child(2n+2) {
    display: flex;
    flex-direction: row-reverse;
}

.product-list-page .content>.item .left {
    width: 47%;
}

.product-list-page .content>.item .right {
    width: 40%;
}

.product-detail-page {
    width: 100%;

}

.product-detail-page1 {
    background: url(/images/product_detail_bg_1.jpg) no-repeat center;
    background-size: cover;
}

.product-detail-page .header {
    width: 100%;
    background: transparent;
}

.product-detail-page .content {
    padding: 80px 0 60px;
    color: #fff;
    position: relative;
}
.product-detail-page .content .product-img{
    width: 50%;
    position: absolute;
    right: 0%;
    top: 42%;
}

.product-detail-page .content .p-item>.top h1 {
    font-size: 48px;
}

.product-detail-page .content .p-item>.top p {
    font-size: 16px;
}

.product-detail-page .content .p-item ul {
    margin: 0;
}

.product-detail-page .content .p-item ul li {
    padding: 15px 0;
}

.product-detail-page2 {
    background: #212121;
    font-size: 16px;
    color: #999;
    display: flex;
    flex-direction: column;
}

.product-detail-page2 hr {
    display: inline-block;
    width: 60%;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    line-height: 1;
    background-image: linear-gradient(to right, rgba(153, 153, 153, .4), rgba(153, 153, 153, 0.2));
}

.product-detail-page2 hr:first-child {
    margin-top: -1px;
}

.product-detail-page2 .info-list {
    display: flex;
    flex-direction: row;
    height: 55px;
    line-height: 55px;

}

.product-detail-page2 .info-list li {
    padding: 0 10px;
    position: relative;
    cursor: pointer;
    font-size: 16px;
}

.product-detail-page2 .info-list li:hover {
    color: #fff;
}

.product-detail-page2 .info-list li:hover::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 4px;
    background: #f00;
    position: absolute;
    top: 0;
    left: 0;
}

.product-detail-page2 .info-list li.active {
    color: #fff;
}

.product-detail-page2 .info-list li.active::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 4px;
    background: #f00;
    position: absolute;
    top: 0;
    left: 0;
}

.product-detail-page2 .info-list li+li {
    margin-left: 20px;
}

.product-detail-page2 .item {
    display: none;
}

.product-detail-page2 .item:first-child {
    display: block;
}

.product-detail-page2 .item-list {
	width:50%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px 0;
}

.product-detail-page2 .item-list li {
   
    
   
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-right: 20px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.product-detail-page2 .item-list li a{
	 padding: 15px 36px 14px;
	 font-size: 14px;
	  line-height: 1;
    color: #ccc;
}

.product-detail-page2 .item-list li .price {
    display: none;
}

.product-detail-page2 .item-list li:hover {
    border: 1px solid #f00;
    color: #fff;
    position: relative;
}

.product-detail-page2 .item-list li:hover a::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(/images/checked.png) no-repeat center;
    background-size: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.product-detail-page2 .item-list li.active {
    border: 1px solid #f00;
    color: #fff;
    position: relative;
}

.product-detail-page2 .item-list li.active::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(/images/checked.png) no-repeat center;
    background-size: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.product-detail-page3 {
    padding: 45px 0 50px;
    width: 100%;
    background: #000;
}
.product-detail-page3 .price2{
	color: #999;
    font-size: 32px;
	 line-height: 1;
	    font-style: italic;
    text-decoration: line-through;
	margin-bottom:10px;
}
.product-detail-page3 .price {
    font-size: 36px;
    line-height: 1;
    color: #f00;
    font-style: italic;
}


.product-detail-page3 .list {
    font-size: 14px;
    color: #ccc;
    margin: 30px 0;
    display: flex;
    flex-direction: row;
}

.product-detail-page3 .list li {
    padding: 0 20px;
    position: relative;
    display: none;
    line-height: 1;
    padding-top: 3px;
    border-left: 1px solid #ccc;

}

.product-detail-page3 .list .show {
    display: block;

}

/* .product-detail-page3 .list li.show::before{
    content: '';
    display: inline-block;
    width: 1px;
    height: 15px;
    background: #ccc;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
} */
.product-detail-page3 .list li:first-child {
    padding-left: 0;
    border-left: 0;
}

.product-detail-page3 .btns a+a {
    margin-left: 20px;
}

.product-detail-page3 .btn {
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 10px;
    color: #ccc;
    font-size: 18px;
    cursor: pointer;
}

.product-detail-page3 .btn:hover {
    border-color: #f00;
    background: #f00;
    color: #fff;
}

.product-detail-page4 {
    font-size: 0;
}

.product-detail-page4 video {
    width: 100%;
    height: 100%;
}

.product-detail-page5 {
    background: #000;
    padding: 80px 0;
    color: #fff;
}

.product-detail-page5 .top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-detail-page5 .top img {
    width: 60%;
    max-width: 800px;
    margin-bottom: 60px;
}

.product-detail-page5 .top ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-detail-page5 .top ul li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 30px;
}

.product-detail-page5 .top ul li .item {
    width: 300px;
    display: flex;
    flex-direction: column;
    font-size: 48px;

    text-align: center;
    line-height: 1.4;
}

.product-detail-page5 .top ul li .item p {
    font-size: 24px;
    color: #fff;
    font-weight: 300;
}



.product-detail-page5 .editor table{
	min-width:60%;
	margin:0 auto;
}
.product-detail-page5 .editor table td{
	padding:10px 20px;
}


.accessory-page1 {
    width: 100%;
    background: #363636;
    padding: 50px 0;
    color: #fff;
    text-align: center;
}

.accessory-page1 h1 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px;
    font-weight: bold;
    font-style: italic;
}

.accessory-page1 input {
    width: 60%;
    background: url('/images/search.png') no-repeat 19px center;
    background-size: 16px;
    padding: 8px 50px;
    line-height: 1;
    border: 1px solid #666;
    border-radius: 50px;
    font-size: 16px;
    color: #666;
}

.accessory-page1 input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 12px;
    width: 12px;
    background: url('/images/x.png') no-repeat;
    background-size: 100%;
    cursor: pointer;
}

.accessory-page2 {
    width: 100%;
    background: #232323;
    padding: 40px 0;
}

.accessory-page2 .list {

    display: flex;
    flex-direction: column;
}

.accessory-page2 .list>li {
    background: #474747;
    width: 100%;
    border-radius: 20px;
    margin: 120px 0;
    position: relative;
    display: flex;
    justify-content: end;
}

.accessory-page2 .list>li .left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    /* height: calc(80px + 100%); */
    height: 300px;
    text-align: center;
}

.accessory-page2 .list>li .left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.accessory-page2 .list>li .right {
    width: 60%;
    padding: 40px 0;
}

.accessory-page2 .list>li .right .title {
    color: rgba(255, 255, 255, .5);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 30px;
    /* font-weight: bold; */
}

.accessory-page2 .item {
    display: flex;
    flex-wrap: wrap;
}

.accessory-page2 .item li {
    height: 40px;
    line-height: 40px;
    padding: 0 40px;

    margin-right: 20px;
    margin-bottom: 20px;
    border: 1px solid #999;
    border-radius: 20px;
    cursor: pointer;
}

.accessory-page2 .item li:hover {
    background: #f00;
    border-color: #f00;
}

.accessory-page2 .item li:hover a {
    color: #fff;

}

.accessory-page2 .item li a {
    color: #999;
}

.accessory-list-page2 {
    width: 100%;
    background: #2E2E2E;
    padding: 40px;
}

.accessory-list-page2 .title {
    font-size: 36px;
    line-height: 1.2;
    margin: 10px 0;
    color: #fff;
}

.accessory-list-page2 ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.accessory-list-page2 ul li {
    border: 1px solid #444;
    margin-right: 20px;
    border-radius: 30px;
    cursor: pointer;
}

.accessory-list-page2 ul li.active {
    background: #f00;
    border-color: #f00;
}

.accessory-list-page2 ul li.active a {
    color: #fff;
}

.accessory-list-page2 ul li a {
    padding: 10px 40px;
    font-size: 14px;
    color: #888;
    display: inline-block;
}

.accessory-list-page2 ul li:hover {
    background: #f00;
    border-color: #f00;
}

.accessory-list-page2 ul li:hover a {
    color: #fff;
}

.accessory-list-page3 {
    background: #232323;
}

.accessory-list-page3 .w1520 {
    padding: 50px 0 50px;
}

.accessory-detail-page {
    background: #ECECEC;
    padding: 40px 0;

}

.accessory-detail-page .w1520 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.accessory-detail-page .left {
    width: 49%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessory-detail-page .left img {
    width: 100%;

}

.accessory-detail-page .right {
    width: 49%;
    background: #fff;
    border-radius: 10px;
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
}

.accessory-detail-page .right .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    line-height: 1;
    margin: 20px 0;
}

.accessory-detail-page .right .name {
    font-size: 48px;
    font-weight: bold;
	line-height:1;
}

.accessory-detail-page .right .price-w{
    text-align: right;
}
.accessory-detail-page .right .price {
    font-size: 30px;
    color: #f00;
}
.accessory-detail-page .right .price2{
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 10px;
}


.accessory-detail-page .right .nav {
    margin-bottom: 30px;
}

.accessory-detail-page .right .nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #999;
    font-size: 16px;
}

.accessory-detail-page .right .nav ul a {
    color: #999;
    font-size: 16px;
}

.accessory-detail-page .right .nav ul li::after {
    content: '>';
    font-size: 16px;
    margin: 0 5px;
}

.accessory-detail-page .right .nav ul li:last-child {
    color: #000;
}

.accessory-detail-page .right .nav ul li:last-child::after {
    content: '';
}

.accessory-detail-page .right .editor {
    padding: 30px 0 50px;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    font-size: 16px;
    line-height: 36px;
    color: #888;
    flex: 1;
}

.accessory-detail-page .right .btns {
    /* margin-left: auto; */
    margin-top: 20px;
    display: flex;
    justify-content: end;
    position: relative;

}

.step {
    height: 48px;
    padding: 10px 205px 10px 0;
    background: #666;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 30px;
    background: #666;

}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.step .num {
    width: 80px;
    padding: 0 10px;
    text-align: center;
    font-size: 18px;
    background: transparent;
    color: #fff;
    border-left: 1px solid #5c5c5c;
    border-right: 1px solid #5c5c5c;
    cursor: pointer;
}

.step .del,
.step .add {
    padding: 2px 15px 0;
    color: #ccc;
    font-size: 20px;
    background: transparent;
    cursor: pointer;
}

.accessory-detail-page .right .btns .add-cart {
    width: 200px;
    height: 48px;
    line-height: 50px;
    border-radius: 30px;
    background: #f00;
    font-size: 20px;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}
.accessory-detail-page .right .btns .step{
	width:100%;
}
.my-page {
    background: #ECECEC;
    padding: 20px 0;
}

.my-page>.flex-x {
    justify-content: space-between;
}

.my-page .side-bar {
    width: 24%;
    height: 100%;
    min-width: 300px;
    padding: 30px 15px;
    background: #fff;
    border-radius: 10px;
}

.my-page .side-bar li {
    border-bottom: 1px solid #ECECEC;
}

.my-page .side-bar li img {
    width: 20px;
    object-fit: contain;
    margin-right: 10px;
}

.my-page .side-bar li:hover {
    background: #363636;
    border-radius: 10px;
    border-bottom: 1px solid #ececec;
}

.my-page .side-bar li:hover a {
    color: #fff;
}

.my-page .side-bar li:hover .img1 {
    display: none;
}

.my-page .side-bar li:hover .img2 {
    display: block;
}

.my-page .side-bar li .img2 {
    display: none;
}

.my-page .side-bar li.active {
    background: #363636;
    border-radius: 10px;
    border-bottom: 1px solid #ececec;

}

.my-page .side-bar li.active .img2 {
    display: block;
}

.my-page .side-bar li.active .img1 {
    display: none;
}

.my-page .side-bar li.active a {
    color: #fff;
}

.my-page .side-bar li a {
    display: flex;
    flex-direction: row;
    color: #000;
    padding: 20px 15px;

}

.my-page .side-bar li p {
    font-size: 16px;
}

.my-page .my-info {
    width: 75%;
    border-radius: 10px;
    background: #fff;
    padding: 0 40px;
}

.my-page .my-info .top {
    padding: 20px 0;
    border-bottom: 1px solid #ececec;
}

.my-page .my-info .top li {
    height: 36px;
    line-height: 36px;
    padding: 1px 20px 0;
    background: #ECECEC;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    border-radius: 20px;
}

.my-page .my-info .top li+li {
    margin-left: 10px;
}

.my-page .my-info .top li.active {
    background: #f00;
    color: #fff;
}

.my-page .my-info .top li:hover {
    background: #f00;
    color: #fff;
}

.my-page .my-info .content {
    justify-content: flex-start;
    margin: 80px 0;
    min-height: 200px;
}

.my-info .form input {
    /* text-align: center; */
}

.my-info .form .change-url {
    margin-left: auto;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px solid #000;
    margin: 20px 0 15px auto;
    font-size: 16px;
}

.login-page .form .tip {
    margin-left: 0;
    margin-right: auto;
    color: #f00;
    font-size: 12px;
    display: none;
}

.my-order-list {
    width: 75%;
}

.my-order-list .item {
    width: 100%;
    padding: 0 40px;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 10px;
}

.my-order-list .top {
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}

.my-order-list .top .left h3 {
    font-size: 14px;
    color: #999;
    font-weight: bold;
}

.my-order-list .top .left h2 {
    font-size: 18px;

}

.my-order-list .top img {
    width: 18px;
    object-fit: contain;
    margin-right: 10px;
}

.my-order-list .top .right {
    display: flex;
    flex-direction: row;
}

.my-order-list .top .right p {
    font-size: 14px;
    color: #f00;
    font-weight: bold;
}

.product-item {
    background: #000;
    border-radius: 10px;
    color: #fff;
    overflow: hidden;
}
.product-item+.product-item{
    margin-top: 10px;
}

.product-item .product-item-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 30px;
}

.product-item img {
    width: 25%;
    object-fit: contain;
}

.product-item .info {
    width: 70%;
}
.product-item .info-top{
    padding-bottom: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    border-bottom: 1px solid #474747;
    line-height: 1.2;
}
.product-item .info-top .name{
    font-size: 24px;
}
.product-item .info-top .classify{
    font-size: 18px;
    color: #999;
}
.product-item .info-top-right{
   
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: end;
}
.product-item .info-top-right .price{
    font-size: 20px;
    color: #f00;
    line-height: 30px;
}
.product-item .info-top-right .price2{
    font-size: 16px;
    line-height: 30px;
    color: #999;
    margin-right: 10px;
    text-decoration: line-through;
}

/* .product-item .info-top-right::before{
    content: '$:';
} */
.product-item .info-bottom{
    padding-top: 15px;
}
.product-item .product-item-bottom {
    font-size: 18px;
    color: #999;
    line-height: 3;
    background: #474747;
    text-align: right;
    padding-right: 30px;
}
.product-item-bottom span{
    color: #fff;
}
.my-order-list .item .bottom{
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    padding: 20px 0;
    font-size: 16px;
    color: #999;
}
.my-order-list .item  .total-price{
    margin-right: 10px;
}
/* .my-order-list .item  .total-price span::before{
    content: '$:';
} */
.my-order-list .item  .total-price span{
    color: #f00;
    font-size: 20px;
    font-weight: bold;
}
.my-order-list .item  button{
    font-size: 16px;
    line-height: 38px;
    color: #999;
    padding: 0 25px;
    border-radius: 20px;
    background: transparent;
    border:1px solid #999;
    margin-left: 10px;
    /* position: relative;
    overflow: hidden;
    z-index: 2; */
}
/* .my-order-list .item  button::after{
    content: '';
    display:inline-block;
    position: absolute;
    top:50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transform: translate(-50%,-50%);
    background: #f00;
    transition: all ease-in-out 1s;
    z-index: -1;
    opacity: 0;
} */
.my-order-list .item  button:hover{
    border-color:#f00;
    color: #fff;
    background: #f00;
    /* opacity: 1; */
}
/* .my-order-list .item  button:hover::after{
    width: 200px;
    height: 200px;
    opacity: 1;
} */
.my-order-detail .item .top .right{
    align-items: flex-end;
   
}
.my-order-detail .item .top .right p{
    color: #999;
}

.pay-form{
    margin-top: 20px;
}
.pay-form .title{
    
    margin: 10px 0 ;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.pay-form .check-item{
    display: flex;
    flex-direction: row;    
    white-space: nowrap;
    align-items: end;
}
.pay-form .check-item label{
    margin-left: 20px;
}
.pay-form .check-item label span{
    font-size: 16px;
    color: #666;
}
.pay-form .check-item input[type="radio"]{
    width: 16px;
    height: 16px;
    margin-right: 5px;
}
.pay-form .title p{
    font-size: 18px;
    color: #666;
    line-height: 2;
}
.pay-form .country{
    width: 100%;
    border: 1px solid #ccc;
    color: #999;
}
.pay-form .country .country-label{
    color: #999;
}
.pay-form  .country .ul-w{
    width: 100%;
}
.pay-form #cart-form{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.pay-form input{
    width: 49.5%;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 0 20px;
    height: 48px;
    line-height: 48px;
    margin: 5px 0;
    font-size: 16px;
    color: #999999;
}
.pay-form input:disabled{
    background: #ffffff90;
}
.pay-form input::placeholder {
    color: #999;
    opacity: 1; /* 确保在Firefox中正常显示 */
  }
  .pay-form .w100{
    width: 100%;
  }
  .pay-form  textarea{
    width: 49.5%;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 5px 20px;
    margin: 5px 0;
    font-size: 16px;
    line-height: 1.4;
    color: #999999;
  }
  .pay-form textarea::placeholder{
    color: #999;
    opacity: 1; /* 确保在Firefox中正常显示 */
  }
.pay-form .check-list{
    width: 100%;
    margin-top: 30px;
}


.pay-form .check-list:last-child{
    margin-top: 0;
    margin-bottom: 30px;
}
.pay-form .check-list ul{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.pay-form .check-list ul li{
    flex: 1;
    height: 60px;
    border-radius: 10px;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
    color: #999;
}
.pay-form .check-list ul li.active{
    border : 2px solid #f00;
}
.pay-form .check-list ul li.active .left{
    display: block;
    background: url('/images/gou.png') no-repeat;
    background-position: 6px center;
    background-size: 16px;
}
.pay-form .check-list ul li+li{
    margin-left: 20px;
}
.pay-form .check-list ul li .left{
    display: flex;
    flex-direction: row;
    padding-left: 30px;
}
.pay-form .check-list ul li .right{
    display: flex;
    flex-direction: row;
}
.pay-form .check-list ul li .right p{
    color: #000;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    margin-left: 10px;
}
.pay-form .check-list ul li .right img{
  height: 30px;
    object-fit: contain;
    margin-right: 20px;
}
.pay-form .check-list ul li .right p{
    display: none;
}

.pay-form .check-list ul li .right p:first-child{
    display: block;
}
.my-order-detail .other-info {
    padding: 10px 0;
    border-top: 1px solid #ececec;
}
.my-order-detail .other-info ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.my-order-detail .other-info ul li{
    width:50%;
    line-height: 2;
    font-size: 16px;
    color: #999;
}
.my-order-detail .other-info ul li .name{
    display: inline-block;
    width: 160px;
    text-align: right;
}

.cart-page{
    padding: 0;
}
.cart-page .cart-list{
    flex: 1;
    padding: 40px 0;
}
.price-bar {
    width: 30%;
    margin-left: 30px;
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

.price-bar li{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid #d7d7d7;
    line-height: 1.2;
    padding: 22px 0 18px;
}
.price-bar li .name{
    font-size: 20px;
    color: #666;
}
.price-bar li .price{
    font-size: 20px;
    color: #222;
}
/* .price-bar li .price::before{
    content: '$';
} */
.price-bar li:last-child .name{
    font-weight: bold;
}
.price-bar  .submit-btn{
    margin: 30px auto;
    font-size: 20px;
    color: #fff;
    padding: 10px 40px 7px;
    background: #666;
    border-radius: 30px;
}
.cart-page .product-item{
    position: relative;
}
.cart-page .cart-input{
    opacity: 0;
    position: absolute;
    z-index: -1;
}
.cart-page .cart-checkbox{
    position: absolute;
    top: 20px;
    left: 20px;
    border:1px solid #999;
    background: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    cursor: pointer;
}
.cart-page .checkmark::after{
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    width: 8px;
    height: 4px;
    border: 2px solid white;
    border-top: none;
    border-right: none;
    transform:translate(-50%,-50%) rotate(-45deg);
    display: none;
}
.cart-page .cart-input:checked ~ .checkmark::after{
    display: block;
}
.cart-page .product-item-bottom{
    padding: 15px 35px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.cart-page .product-item-bottom .btns{

}

.cart-page .product-item-bottom .btn{
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    color: #ccc;
    font-size: 14px;
    border: 1px solid #666;
    border-radius: 20px;
    background: none;
    margin-right: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.cart-page .product-item-bottom .btn img{
    width: 16px;
    height: 16px;
    padding: 0;
    object-fit: contain;
    margin-right: 6px;
}
.cart-page .product-item-bottom .btn span{
    padding-top: 2px;
}
.cart-page .product-item-bottom .btn:hover{
    background: #666;
}
.cart-page .step{
    height: 35px;
    padding: 5px;
}
.cart-page .step .num{
    min-width: 60px;
    padding: 5px 10px 0;
    height: 100%;
    line-height: 1;
    text-align: center;
}
.pay-form .pay-form-checkbox{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    color: #666;
    font-size: 16px;
}
.pay-form .pay-form-checkbox input{
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}
.pay-form .pay-form-checkbox a{
    color: #000;
    font-size: 16px;
    text-decoration: underline;
    margin:0 5px;
}

.pay-page{
    background: #ececec;
}
.pay-page-list{
    flex: 1;
    padding: 40px 0;
}
.pay-page-list .top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 20px;
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 20px;
}
.pay-page-list .top .return{
    display: inline-block;
    padding: 5px 25px;
    border: 1px solid #d7d7d7;
    border-radius: 20px;
    color: #666;
    font-size: 14px;
}
.pay-page-list .top .return:hover{
    background: #d7d7d7;
}
.pay-page .check-list{
    margin-top: 10px;
}
.check-list li{
    background: #fff;
}
.pay-page  .price-bar .submit-btn{
    margin: 30px auto 10px;
    background: #f00;
    color: #fff;
}
.cart-page  .price-bar p{
    color: #666;
    font-size: 14px;
}

.index-editor{
    padding: 50px;
    min-height: calc(100vh - 280px - 90px);
}
.accessory-page1 label{
    position: relative;
}
.accessory-page1 label p{
    position: absolute;
    right: 7px;
    top:-3px;
    height: 30px;
    line-height: 30px;
    border-radius: 20px;
    padding: 0 20px;
    background: rgba(80, 80, 80, 1);
    cursor: pointer;
}
.complete-a
{
        text-align: center;
    display: inline-block;
    width: 100%;
    margin:20px 0;
}
.complete-btn
{
    width:60%;
    min-width:200px;
    max-width:400px;
    margin:0 auto;
    }
.mpage {
	margin-top: 10px;
	padding: 14px 0 15px;
	text-align: center;
}

.mpage a {
	border: 1px solid #cccccc;
	margin-right: 5px;
	padding: 4px 7px;
}

.mpage span {
	border: 1px solid #cccccc;
	margin-right: 5px;
	padding: 4px 7px;
}

.mpage span.current {
	background: #5280e0;
	border: 1px solid #5280e0;
	color: #ffffff;
	font-weight: bolder;
}
.payment-page{
	width:100%;
	height:100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	padding-bottom:10%;
	box-sizing: border-box;
}
.payment-page h5{
	font-size:18px;
	color:#999999;
	margin:0;
	 line-height: 2;
}
.payment-page h3{
	font-size:30px;
	color:#000;
	margin:0;
	    font-weight: 500;
    line-height: 2;
}
.payment-page .payment-type{
	display: flex;
    flex-direction: column;
    align-items: center;
 margin: 60px 0;
}
.payment-page .payment-type img{
	    width: 160px;
    object-fit: contain;
}
.payment-page .payment-type p{
	text-align:center;
	font-size:18px;
	margin-top: 10px;
}
.payment-page a{
	display: inline-block;
    padding: 0 50px;
    height: 60px;
    line-height: 60px;
    border: 1px solid #999;
    border-radius: 30px;
       text-decoration: none;

	font-size:24px;
	color:#999999;
}