@font-face {
    /* 给自定义字体取个名字，后面可以用这个名字引用字体 */
    font-family: 'Tomorrow';
    /* 字体文件的路径，这里假设字体文件在当前目录下 */
    src: url('../font/Tomorrow-Bold.ttf');
    /* 可选的字体样式，如 normal 或 italic */
    font-style: normal;
    /* 可选的字体粗细，如 normal 或 bold */
    font-weight: normal;
}
@font-face {
    /* 给自定义字体取个名字，后面可以用这个名字引用字体 */
    font-family: 'Roboto';
    /* 字体文件的路径，这里假设字体文件在当前目录下 */
    src: url('../font/Roboto-Bold.ttf');
    /* 可选的字体样式，如 normal 或 italic */
    font-style: normal;
    /* 可选的字体粗细，如 normal 或 bold */
    font-weight: normal;
}
body{
    margin: 0;
    padding: 0;
    /* font-family: 'Poppins', sans-serif; */
    background-color: #282929;
    color: white !important;
    font-size: 14px;
}
::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}
.coupon-contant.swiper-pagination {
    bottom: 30px!important; /* 垂直位置 */
}
.swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
}
 .swiper-pagination-bullet-active {
    background: #EA6519 !important;
}
.upload-text{
    width:100%;
}
.flex_box{
    display: flex;
    gap: 10px;
    align-items: center;
}
.nav-detail{
    padding-top: 160px;
    width: 1400px;
    margin: 0 auto;
    text-align: left;
}
.checkbox-box{
    width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    display: flex;
    /* gap: 20px; */
    justify-content: space-between;

}
.checkbox-left{
    width: 67%;
}
.checkbox-right{
    width: 30%;
    background: #1D1D1D;
    border-radius: 10px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 160px;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px 0px #EA65194D;
    border: 1px solid #EA651980;
}

.information1{
    background-color: #1D1D1D;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 10px;
    /* margin-top: 50px; */
}
.nav-detail{
    color: #FFFFFF80;
    /* margin-top: 20px; */
    }
    .form-section {
        /* max-width: 800px; */
        /* margin: 30px auto; */
        margin-top: 30px;
        padding: 20px 0 0;
        /* background: #2D2D2D; */
        border-radius: 8px;
    }
    
    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
        flex-wrap:wrap;
    }
    
    .form-group {
     
        width: 400px;
        position: relative;
    }
    
  
    .phone-input {
        display: flex;
        gap: 10px;
    }


    .flag-icon {
        width: 24px;
        height: 16px;
    }
    
    .error-message {
        color: #EA6519;
        font-size: 12px;
        margin-top: 5px;
        height: 18px;
    }
    .form-group input {
        width: 100%;
        height: 40px;
        padding: 0 15px;
        background: #232528;
        border: 1px solid #3A3A3A;
        border-radius: 6px;
        color: white;
        font-size: 14px;
        box-sizing: border-box;
    }
    
    .form-group input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    

   
    .phone-input input {
        flex: 1;
        height: 40px;
    }
    
    .custom-select {
        position: relative;
        min-width: 120px;
        display: flex;
        gap: 10px;
        }
        .selected-option {
        background: #232528;
        color: white;
        border: none;
        padding: 8px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        border-radius: 4px;
        font-size: 14px;
        box-sizing: border-box;
        height: 40px;
        width:130px ;
        }
        .options {
        position: absolute;
            max-height: 200px; /* 控制最大显示高度 */
            overflow-y: auto;  /* 启用垂直滚动 */
        top: 40px;
        left: 0;
        right: 0;
        background: #333;
        border-radius: 4px;
        margin-top: 4px;
        display: none;
        z-index: 100;
        width:160px ;
        }
        .option {
        padding: 8px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        justify-content: space-between;
        }
        .option:hover {
        background: #444;
        }
.form-group-phone{
    /* flex: 1; */
}
.form-group-phone .form-group{
    flex: 1;
}
.form-phone{
    width: 280px;
}
.fa-chevron-down{
    position: absolute;
    left: 110px;
    top: 12px;
}
 input[type="checkbox"] {
   
    width: 20px; 
    height: 20px; 
    -webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #FFFFFF80;
  
    margin: 0;
    /* margin-right: 10px; */
    cursor: pointer;
}
input[type="checkbox"]:checked {
    background-color: #ea6519 !important;  
    background: #ea6519 url('../img/checkdui.png') no-repeat center center;
}
 input[type="checkbox"] + label {
    flex: 1;
}
.information2{
    margin-top: 20px;
    background-color: #1D1D1D;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 10px;
}
.layui-upload{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}
.layui-btn{
    width: 84px !important;
    height: 84px !important;
    border: 1px solid #FFFFFF1A !important;
    border-radius: 6px;

    background-color: #232528 !important;
}
.layui-elem-quote{
    border: none !important;
    padding: 0 !important;
    margin:0 !important;
    background-color: #1D1D1D!important;
    
}
.layui-upload-list{
    gap: 10px;
    margin:0;
}
.layui-upload-list img{
    width: 84px!important;
    height: 84px!important;
    gap: 10px;
    border: 0 !important;
    margin-right: 16px;
    border-radius: 6px;
}
.tips{
    width:100%;
    color: #FFDFAB;
    margin-top: 20px;
    border-radius: 10px;
    background-color: #352E1F;
    padding: 20px;
    border: 1px solid #FFDFAB80

}
.tips-contant{
    line-height: 22px;
    color: #fff;
}
.information2 .flex_box{
    margin-bottom: 10px;
}
.pay-box{
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}
.pay-item{
    width: calc(100% / 5 - 15px);
    border: 1px solid #FFFFFF1A;
    height: 80px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    background-color: #fff;
    position: relative;
    margin-bottom: 20px;
}
.pay-item input[type="radio"] {
    width: 22px; 
    height: 22px; 
    border-radius: 50%;
    -webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #C4C4C4;
  
    margin: 0;
    margin-right: 10px;
    cursor: pointer;
    padding: 10px;
}
.pay-item input[type="radio"]:checked {
    /* background-color: #1d1d1d !important; */
    border: 1px solid #EA6519!important;
    background: #ea6519 url('../img/radio2.png') no-repeat center center; 
}
.pay-item input[type="radio"]:checked + label{
   /* color: #EA6519; */
}
.pay-label1{
    display: flex;flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.pay-label1 img{
    width: calc(100% / 2 - 8px);
}
.pacypay{
    position: absolute;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(90deg, #0078D1 0%, #00B490 100%);
    padding: 4px;
    border-bottom-right-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}
.pay-spare{
    position: absolute;
    top: -12px;
    right: -5px;
    padding:5px;
    background: linear-gradient(97.39deg, #B17F3A 0%, #D0B365 61.8%, #B17F3A 123.59%);
    border-radius: 30px;
    font-size: 12px;
  
}
.pay-label2 img{
    width: calc(100%  - 8px);
}
.choose-us{
    width: 1880px;
    margin: 0 auto;
    padding-top: 100px;
    /* background-color: #1d1d1d; */
    /* margin-top: 100px; */
}
.chooss-img{
    /* text-align: center; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Tomorrow';
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    gap: 10px;
}
.choose-game{
    padding-top: 10px;
}
.choose-game div{
    text-align: center;
    font-size: 42px;
   
}
.choose-items{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    padding-bottom: 160px;
}
.choose-item{
    flex: 0 0 calc(20% - 25px);
    height: 380px;
  
    text-align: center;
    background: #1d1d1d;
    border-radius: 10px;
    border: 1px solid transparent;
    /* border-image: linear-gradient(
        to bottom right,
        #1d1d1d 35%,
        #EA6519 50%,
        #1d1d1d 70%,
        #1d1d1d 100%
    ) 1; */
    padding: 0 40px;
    box-sizing: border-box;
    position: relative;
}
.choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(
        to bottom right,
        #1d1d1d 33%,
        #EA6519 50%,
        #1d1d1d 66%,
        #1d1d1d 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.choose-item:hover{
    border: 1px solid #EA6519;
    backdrop-filter: blur(40px);

box-shadow: 0px 20px 50px 0px #DE510033;

}
.item-icon{
    width: 160px;
    height: 160px;
    margin: 0 auto;
    margin-top: 10px;
}
.choose-text{
    font-size: 22px;
    line-height: 50px;
}
.choose-introduce{
    font-size: 14px;
    line-height: 20px;
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid  #FFFFFF33;
}
.cart-header h3{
    /* font-family: 'Tomorrow'; */
    font-size: 24px;
    font-weight: 700;
   
}
.close-cart {
    background: none;
    border: none;
    color: #EA6519;
    font-size: 28px;
    cursor: pointer;
    padding: 0 10px;
}
.cart-item {
    /* display: flex;
    align-items: center;
    gap: 15px; */
    padding: 30px 0;
    border-bottom: 1px solid #FFFFFF33;
}
.cart-item-top{
    display: flex;
    align-items: center;
    gap: 15px;
}
.cart-item-bottom{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.item-image {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 6px;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 100px; */
}
.cart-item-title{
    font-size: 16px;
}
.cart-server{
    font-size: 14px;
    color: #FFFFFFB2;
    margin-top: 10px;

}
.quantity-controls {
    display: flex;
    
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    background: #EA6519;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}

.quantity-input {
    width: 80px;
    padding: 5px;
    background: #282828;
    border: 1px solid #3A3A3A;
    border-radius: 4px;
    color: white;
    text-align: center;
    height: 44px;
    box-sizing: border-box;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    justify-content: space-between;
    height: 80px;
}
.price-section .item-price{
font-size: 18px;
font-weight: 600;
}
.item-old-price{
    font-size: 14px;
    color: #FFFFFFB2;

    text-decoration: line-through;
}
.delete-btn {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}
.coupon{
    font-size: 16px;
    gap: 20px;
    margin: 20px 0;
}
.coupon-input{
    flex: 1;
    padding: 5px 10px;
    height: 44px;
    background: #282828;
    border: 1px solid #3A3A3A;
    border-radius: 4px;
    color: white;
    /* text-align: center; */
    box-sizing: border-box;
    margin-right: 10px;
}
.coupon-apply{
    background: linear-gradient(267.71deg, #FF8742 0%, #F25800 100%);
    border-radius: 4px;
    padding: 12px 20px;
    font-weight: 600px;
    color: white;
    border: none;
    cursor: pointer;
}
.prices{
    margin-top: 20px;
}
.flex-between{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.branch-text{
    line-height: 30px;
    color: #FFFFFFB2;
}
.branch-price{
    line-height: 30px;
    color: #FFDFAB;
}
.total-text{
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}
.total-price{
    font-size: 22px;
    font-weight: 600;
    color: #EA6519;
    line-height: 30px;

}
.pay-textarea{
    background-color:#232528 ;
    width: 100%;
    height: 100px;
    padding:10px;
    box-sizing: border-box;
    border: 1px solid #FFFFFF33;
    border-radius: 6px;
    margin-top: 20px;
    color: #fff;
}
.advantage-service{
    margin-top: 20px;
    color:#FFDFAB ;
}
.pay-btn,.pay-skrill-btn{
    position: relative;
    width: calc(100% - 40px);
    background: linear-gradient(267.71deg, #FF8742 0%, #F25800 100%);
    padding: 15px;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    color: #fff;
}
.pay-btn::before,.pay-skrill-btn::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #1d1d1d transparent transparent;
}
.pay-btn::after,.pay-skrill-btn::after {

    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent  transparent #1d1d1d transparent;
}
.accept-box{
    margin-top: 20px;
    line-height: 22px;
}
.accept-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
}
.accept-box a{
    color: #fff !important;
    text-decoration: underline;
    cursor: pointer;
}
.cart-item-top{
    align-items: flex-start !important;
}
.phpne-top{
    display:none !important;
}
.checkbox-right-phone{
    display: none;
}
.choose-us-phone{
    display: none;
}
.cart-totals{
    display: none;
}
@media screen and (max-width: 768px)  {
    body{
        font-size: 14px;
    }
    .phpne-top{
        display: block!important;
    }
    .pc-top{
        display: none!important;
    }
    .top-box{
        display: block;
        height: 140px;
        position: fixed;
        top: 0;
        width: 100vw;
        left: 0;
        z-index: 99;
    }
    .service{
        /* display: none; */
        right: 20px;
        bottom: 30px;
    }
    .service .pc-online{
        display: none;
    }
    .service .phone-online{
        display: block !important;
    }
    .pc-footer{
        display: none !important;
       }
      .phone-footer{
        display: block !important;
       }
    .back-top img {
        width: 35px;
        height: 35px;
    }
    .nav-detail{
        width: 100vw;
        padding: 160px 15px 0;
    }
    .checkbox-box{
        width: 100vw;
        padding: 30px 15px;
        display: block;
        box-sizing: border-box;
    }
    .checkbox-left{
        width: 100%;
        padding: 0 ;
        margin-bottom: 20px;
    }
    .information1,.information2,.information3{
        padding: 15px 15px 30px;
        font-size: 16px;
        font-weight: 600;
    }
    .checkbox-right-phone{
        display: block;
    }
    .checkbox-right-pc{
        display: none;
    }
    .checkbox-right{
        width: 100%;
        padding: 20px ;
        margin-bottom: 20px;
    }
    .form-section{
        margin-top: 0;
    }
    .form-row{
        width: 100%;
        display: block;
        font-size: 14px;
        font-weight: 400;

    }
    .form-group{
        width: 100%;
    }
    .skype-box{
        margin-bottom: 20px;
    }
    .terms-box{
        display: flex;
    }
    .upload-text{
        font-size: 14px;
        color:#FFFFFF80 ;
        font-weight: 400;

    }
    .tips{
        font-size: 13px;
        font-weight: 400;
    }
    .pay-box{
        margin-top: 30px;
    }
    .pay-item{
        width: calc(100% / 2 - 8px);
        margin-bottom: 10px;
    }
    .choose-us-pc{
        display: none;
    }
   .choose-us-phone{
        display: block;
        width: 100vw;
        padding: 0 15px;
        box-sizing: border-box;
        overflow: hidden;
        margin-bottom: 30px;
    }
    .choose-item{
        width: 100%;
        height: auto;
        padding-bottom: 30px;
    }
    .choose-us-pagination{
        text-align: center;
        margin-top: 20px;
    }
    .chooss-img{
        text-align: left;
        display: block;
        font-size: 20px;
        margin-bottom: 20px;
    }
    .cart-totals{
        display: block;
        padding: 20px;
        box-sizing: border-box;
        box-shadow: 0px 0px 20px 0px #EA65194D;
        border: 1px solid #EA651980;
        border-radius: 10px;
        background-color: #1d1d1d;
    }
    .cart-totals-title{
        font-size: 20px;
        font-family: 'Tomorrow';
        padding-bottom: 20px;
        border-bottom: 1px solid #FFFFFF1A;
    }
    .coupon{
        gap: 10px;
    }
    .accept-box{
        display: flex;
    }
}