* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
}

main{
    display: flex;
}
.main-left{
    margin: 50px 20px 20px 20px;
}


.main-right{
    margin: 30px 80px 5px 80px;
}

.image-one{
    height: 200px;
    width: 380px;
    border-radius: 20px;

}

.li-image{
    margin: 0px 8px 0px 0px;
    filter: brightness(0) saturate(100%);
}
.flex-span{
    display: flex;
    padding: 10px 8px 10px 8px;
    margin: 10px 0px 0px 5px;
    background-color: white;
    border-radius: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: white;
    color: black;
    padding: 10px 0;
}   

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

.header-left{
        margin:0 auto;


}
.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-left span i, .header-right span i {
    font-size: 14px;
    margin-right: 5px;
}

/* Page Hero */
.page-hero {
    position: relative;
    background: url('https://example.com/image.jpg') center center no-repeat;
    background-size: cover;
    height: 300px;
    margin-bottom: 20px;
}

.page-hero-content {
    position: absolute;
    top: 20px;
    left: 20px;
}

.back-arrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 14px;
}

/* Recharge Section */
.recharge-section {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.recharge-logo-img {
    width: 50px;
    height: 50px;
}

.recharge-title {
    font-size: 24px;
    margin: 0;
}

.recharge-country-flag {
    width: 20px;
    height: 20px;
}

.recharge-country-text {
    font-size: 14px;
}

.recharge-delivery {
    font-size: 14px;
    margin-top: 10px;
}

.recharge-form {
    margin-top: 20px;
}

.recharge-label {
    font-size: 16px;
}

.recharge-input-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.recharge-input-phonecode {
    display: flex;
    align-items: center;
    background: #eee;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.recharge-phonecode {
    font-size: 14px;
    margin-left: 5px;
}

.recharge-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.recharge-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.recharge-button.active {
    background-color: #000;
    color: white;
}

/* Plans Section */
.plans-section {
    gap: 20px;
}

.plan {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    
}

.plan-title {
    font-size: 20px;
    margin: 0;
}

.plan-note {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    margin-top: 12px;
}

.plan-popular {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.plan-popular i {
    color: orange;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}
/* 支付部分样式 */
.payment-section {
    margin-top: 40px;
    background-color: #f5f5f5;
    padding: 20px;
}

.payment-columns {
    display: flex;
    gap: 40px;
}

.payment-column-left {
    flex: 1;
}

.payment-column-right {
    flex: 1;
}

.payment-form {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.form-checkbox {
    margin-right: 5px;
}

.form-checkbox-label {
    font-size: 14px;
}

.form-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.form-note {
    font-size: 12px;
    color: #666;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-method-name {
    font-size: 14px;
}

.order-summary {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
}

.order-summary-title {
    font-size: 20px;
    margin: 0;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.order-item-logo {
    width: 50px;
    height: 50px;
}

.order-item-details {
    flex: 1;
}

.order-item-number {
    display: flex;
    align-items: center;
    gap: 5px;
}

.order-price {
    font-weight: bold;
}

.discount-code {
    margin-top: 20px;
    text-align: right;
}

.discount-code-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.order-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

#translate{
    /* width : 100%; */
    display: flex;
    justify-self:center;
    align-items: center;
}

select {
  /* 基本样式 */
  width: 200px;
  height: 40px;
  padding: 8px 12px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background-color: white;
  color: #333;
  font-size: 14px;
  
  /* 去除默认下拉箭头（部分浏览器支持） */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  
  /* 添加自定义下拉箭头（需配合 background-image） */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="5" viewBox="0 0 10 5"><path d="M0 0l5 5 5-5z" fill="%23666"/></svg>');
  background-position: right 10px center;
  background-repeat: no-repeat;
}

/* 选中状态样式 */
select:focus {
  border-color: #2196F3;
  outline: none;
  box-shadow: 0 0 5px rgba(33, 150, 243, 0.5);
}

/* 选项样式（注意：选项样式在不同浏览器中兼容性较差） */
select option {
  background-color: white;
  color: #333;
}
