.eol_section.only_top_padding {
  padding-top: var(--section-padding);
}

.eol_section.only_bottom_padding {
  padding-bottom: var(--section-padding);
}

.eol_section.section_padding {
  padding: var(--section-padding) 0;
}
#global__loading {
  display: none;
  color: #0073ed;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

#global__loading .loading__indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Breadcrumbs */
.eol_breadcrumbs .breadcrumbs_items {
  font-size: var(--text-14-size);
  font-family: var(--theme-text-regular-family);
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.eol_breadcrumbs .breadcrumbs_items span.item::after {
  content: "›";
  margin: 0 8px;
  font-size: 18px;
}

.eol_breadcrumbs .breadcrumbs_items span.item:last-child::after {
  opacity: 0;
}

.eol_breadcrumbs .breadcrumbs_items a {
  color: #333;
}
.eol_section h2.section_title {
  color: var(--text-title-color);
  font-size: var(--text-32-size);
  font-family: var(--theme-text-bold-family);
  text-align: center;
  margin-bottom: var(--section-title-margin-bottom);
}
.eol_section .section_desc {
  color: var(--text-color);
  font-size: var(--text-16-size);
  text-align: center;
  margin-top: -15px;
}
.toastify {
  font-family: var(--font-family-regular);
  font-size: var(--text-20-size);
  max-width: calc(100% - 32px);
  position: fixed;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 9999;
  border-radius: 4px;
  padding: 12px 15px;
  color: #fff;
  opacity: 0;
  animation: toastFadeIn 0.4s forwards, toastFadeOut 0.4s 5s forwards;
}
.toastify .aliIconfont {
  padding-right: 10px;
}
.toastify.toastify_primary {
  background: rgb(236, 245, 255);
  color: var(--theme-color);
  border: 1px solid rgb(217, 236, 255);
}
.toastify.toastify_primary .aliIconfont {
  color: var(--theme-color);
}
.toastify.toastify_success {
  background: #edf7eb;
  color: #34cf00;
  border: 1px solid #34cf00;
}
.toastify.toastify_success .aliIconfont {
  font-size: var(--text-20-size);
  color: #34cf00;
}
.toastify.toastify_error {
  background: rgb(254, 240, 240);
  color: #f56c6c;
  border: 1px solid rgb(253, 226, 226);
}
.toastify.toastify_error .aliIconfont {
  color: #f56c6c;
}
.toastify.toastify_info {
  background: rgb(244, 244, 245);
  color: #909399;
  border: 1px solid rgb(233, 233, 235);
}
.toastify.toastify_info .aliIconfont {
  color: #909399;
}
.toastify.toastify_warning {
  background: rgb(253, 246, 236);
  color: #e6a23c;
  border: 1px solid rgb(250, 236, 216);
}
.toastify.toastify_warning .aliIconfont {
  color: #e6a23c;
}
@keyframes toastFadeIn {
  from {
    opacity: 0;
    top: 0;
  }

  to {
    opacity: 1;
    top: 20px;
  }
}

@keyframes toastFadeOut {
  from {
    opacity: 1;
    top: 20px;
  }

  to {
    opacity: 0;
    top: 0;
  }
}

/* header */
.eol__header {
  display: flex;
  align-items: center;
  padding: 24px 0px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.eol__header .row {
  justify-content: space-between;
  align-items: center;
}

.eol__header .eol_header_left {
  display: flex;
  align-items: center;
}

.eol__header .eol_header_title {
  font-size: var(--text-24-size);
  font-family: "Jost-Medium";
  display: var(--element-only-pc-show);
}

.eol__header .eol_logo {
  height: 50px;
  object-fit: contain;
}

.eol__header .eol_header_btn {
  padding: 10px 24px;
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: var(--text-20-size);
  text-decoration: none;
}

.eol__header .eol_header_btn:hover {
  background: var(--theme-color-hover);
}
/* banner */
.eol_banner .container {
  height: 100%;
}

.eol_banner {
  width: 100%;
  height: var(--banner-height);
  background-image: var(--banner--default-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.eol_banner .banner_container {
  max-width: 800px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eol_banner .eol_banner_description {
  margin-top: 8px;
}
.eol_banner.eol_banner_left .banner_container {
  max-width: 65%;
  margin: 0;
}
.eol_banner .banner_container.banner_container_left {
  max-width: 700px;
  margin: 0;
  text-align: left;
}

.eol_banner .eol_banner_title {
  color: #000;
  font-size: var(--text-banner-title-size);
  font-family: var(--theme-text-bold-family);
  line-height: 1.5;
}
.eol_banner.eol_banner_product .eol_banner_title span {
  font-family: var(--theme-text-bold-family);
}

.eol_banner.eol_banner_product .eol_banner_title span.product_name {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.eol_banner.eol_banner_product .eol_banner_title span.eol_c {
  font-size: var(--text-32-size);
}
.eol_banner .eol_banner_desc {
  color: #000;
  font-size: var(--text-32-size);
  font-family: var(--theme-text-bold-family);
  line-height: 1.5;
}

.eol_search_bar {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 60px auto 0;
  border-radius: 10px;
}

.eol_search_bar select,
.eol_search_bar .border_gap,
.eol_search_bar input,
.eol_search_bar button {
  color: var(--text-color);
  height: 48px;
  font-size: var(--text-normal-size);
  background: #fff;
  border: none;
}

.eol_search_bar select {
  padding: 12px 10px;
  border-radius: 10px 0px 0px 10px;
}

.eol_search_bar .border_gap {
  width: 10px;
  border-right: 1px solid #bbb;
}

.eol_search_bar #eol_banner_search_keyword {
  width: 398px;
  padding: 12px 20px;
}

.eol_search_bar #eol_search_btn {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 12px 20px;
  justify-content: center;
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 0px 10px 10px 0px;
}

.eol_search_bar #eol_search_btn:hover {
  background: var(--theme-color-hover);
}
.eol_search_bar #eol_search_btn .aliIcon-search {
  font-size: var(--text-24-size);
}
.eol_search_bar #eol_search_btn span {
  color: #fff;
}
.eol_search_bar #eol_search_btn .search_text {
  display: var(--element-only-pc-show);
}
/* product table */
.eol_section .product_table .table_list {
  border-radius: 10px;
  border: 1px solid #ccc;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.eol_section .product_table .table_list table {
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}
.eol_section .product_table .table_stats {
  text-align: right;
  margin-bottom: 5px;
}
.eol_section .product_table .table_list thead tr {
  background-color: var(--theme-color);
}

.eol_section .product_table .table_list thead tr th {
  padding: 12px 24px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: "Jost-Medium";
  color: #fff;
  vertical-align: middle;
}
.eol_section .product_table .table_list tbody tr:hover {
  background-color: #fafdff;
}

.eol_section .product_table .table_list tbody tr:nth-child(even) {
  background-color: #eff7fe;
}

.eol_section .product_table .table_list tr td {
  color: var(--text-td-color);
  padding: 12px 24px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.eol_section .product_table tbody .part_number_cell a {
  color: var(--theme-color);
}
.eol_section .product_table .table_list tbody .eosl_date_cell {
  color: red;
}
.eol_section .product_table .table_no_result {
  text-align: center;
  color: #666;
  margin-top: 20px;
}
.eol_products_table .table_list::-webkit-scrollbar {
  height: 10px;
  background: #f5f5f5;
}

.eol_products_table .table_list::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 3px;
}

.eol_products_table .table_list::-webkit-scrollbar-thumb:hover {
  background: #888;
  box-shadow: 0 0 4px #bbb;
}
/* Manufacturer EOL Lists */
.card_border_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card_border_list li {
  width: calc(25% - 18px);
  display: flex;
  align-items: center;
  padding: 12px;
  gap: 8px;
  border: 1px solid #bbb;
  border-radius: 10px;
}

.card_border_list li .content {
  display: flex;
  flex-direction: column;
}

.eol_card_lists .card_border_list li img {
  width: 80px;
}

.eol_card_lists .card_border_list li a {
  font-family: var(--theme-text-bold-family);
}

.eol_card_lists .card_border_list li span {
  color: #666;
  margin-top: 8px;
}
.eol_card_lists .content span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

/* .eol_card_lists .card_border_list.noimg_list li {
  display: list-item;
  list-style-type: disc;
  list-style-position: inside;
}

.eol_card_lists .card_border_list.noimg_list li a {
  color: var(--text-color);
  font-family: var(--theme-text-family);
} */
.eol_card_lists .card_border_list.noimg_list {
  list-style: none;
  padding-left: 0;
}
.eol_card_lists .card_border_list.noimg_list li {
  position: relative;
  padding-left: 30px;
}

.eol_card_lists .card_border_list.noimg_list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--theme-color); /* 蓝色 */
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.eol_card_lists .card_border_list.noimg_list li a {
  color: var(--text-color);
  font-family: var(--theme-text-family);
}
.eol_card_lists .eol_tab_menu {
  display: flex;
  justify-content: center;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid #dddddd;
  gap: 40px;
}

.eol_card_lists .eol_tab_menu li {
  font-family: var(--theme-text-family);
  font-size: var(--text-16-size);
  color: #666;
  position: relative;
  cursor: pointer;
}

.eol_card_lists .eol_tab_menu li.active h3 {
  color: var(--theme-color);
  font-family: var(--theme-text-bold-family);
}

.eol_card_lists .eol_tab_menu li.active::after {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--theme-color);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/* scroll tab */
.eol_tab___wrap .tabList_wrap {
  margin: 24px 0;
  border-bottom: 1px solid #ccc;
  position: relative;
  display: flex;
  align-items: center;
}

.eol_tab___wrap .tabList_wrap .tabList_container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.eol_tab___wrap .tabList_wrap .tabList_container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.eol_tab___wrap .tabList_wrap .tabList {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
}

.eol_tab___wrap .tabList_wrap li {
  position: relative;
  padding: 12px 32px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.eol_tab___wrap .tabList_wrap li:first-child {
  margin-left: 5px;
}

.eol_tab___wrap .tabList_wrap li:last-child {
  margin-right: 5px;
}

.eol_tab___wrap .tabList_wrap li.active {
  color: #0073ed;
}

.eol_tab___wrap .tabList_wrap li.active::after {
  content: "";
  width: 80px;
  height: 2px;
  position: absolute;
  left: calc(50% - 40px);
  bottom: 0px;
  background: #0073ed;
  border-radius: 5px;
}

.eol_tab___wrap .tabList_wrap .nav-arrow {
  position: absolute;
  text-align: center;
  padding: 10px 0 0 0;
  top: calc(50% - 20px);
  display: none;
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  z-index: 10;
}

.eol_tab___wrap .tabList_wrap .nav-arrow.nav-prev {
  left: 0;
}

.eol_tab___wrap .tabList_wrap .nav-arrow.nav-next {
  right: 0;
}

.eol_tab___wrap .tabList_wrap .nav-arrow:hover {
  background-color: #e0e0e0;
}

.eol_tab___wrap .tabList_wrap .nav-arrow.disabled {
  opacity: 0;
}
/* eol_faq */
.eol_faq .faq_wrapper {
  width: 100%;
  padding: var(--section-padding);
  background-color: #e6f2ff;
  border-radius: 20px;
}

.eol_faq .faq_item:not(:first-child) {
  margin-top: 24px;
}

.eol_faq .faq_item .faq_question {
  font-size: var(--text-24-size);
  font-family: var(--theme-text-bold-family);
}

.eol_faq .faq_item .faq_answer {
  font-size: var(--text-16-size);
  margin-top: 15px;
  line-height: 1.5;
}
.eol_faq .faq_item .faq_answer .item_content {
  margin-top: 15px;
}
.eol_faq .faq_item .faq_answer .item_list li {
  margin-top: 5px;
  list-style: disc;
  list-style-position: inside;
}
.eol_faq .faq_item .faq_answer .item_list li::marker {
  color: var(--theme-color);
}
.eol_faq .faq_item .faq_answer .faq_image {
  width: 100%;
  margin: 24px 0 0 0;
}

/* eol_footer */
.eol_footer {
  background: linear-gradient(45deg, #00479d 0%, #0073ed 100%);
  padding: 72px 0 28px 0;
}

.eol_footer .footer_container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.eol_footer .item_container {
  padding-bottom: 8px;
}

.eol_footer .item_container .item {
  width: 20%;
  color: #fff;
}

.eol_footer .item_container .item .item_title {
  display: flex;
  font-size: var(--text-20-size);
  padding-bottom: 10px;
}
.eol_footer .item_container .item .item_title span {
  color: #fff;
}
.eol_footer .item_container .item .collapse_control {
  display: none;
}

.eol_footer .item_container .item .item_list a {
  color: #fff;
  font-size: var(--text-14-size);
  line-height: 1.8;
}

.eol_footer .copyright_container {
  padding-top: 30px;
  border-top: 1px solid #fff;
}

.eol_footer .copyright_container .media_wrap a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  width: 34px;
  height: 34px;
  margin-right: 5px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.12);
  transition: all 0.3s;
  cursor: pointer;
}

.eol_footer .copyright_container .media_wrap a:hover {
  background: #0073ed;
}

.eol_footer .copyright_container .row {
  width: 100%;
  align-items: center;
}

.eol_footer .copyright_container .content {
  color: #fff;
  font-size: var(--text-12-size);
  text-align: right;
  line-height: 1.5;
}
/* subscribe */
.eol_subscribe {
  padding: 32px 0;
  background: #e6f2ff;
  text-align: center;
}

.eol_subscribe .eol_subscribe_container {
  max-width: 800px;
  margin: 0 auto;
}

.eol_subscribe h3 {
  font-size: var(--text-24-size);
}

.eol_subscribe .subscribe_form {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 10px 0;
}
.eol_subscribe .subscribe_errorInfo {
  display: none;
  color: red;
  font-family: var(--theme-text-bold-family);
  text-align: left;
}
.eol_subscribe .subscribe_form #newsletter {
  width: 384px;
  height: 48px;
  color: #888;
  font-size: var(--text-16-size);
  border: none;
  background-color: #fff;
  border-radius: 5px;
  padding: 12px 16px;
  outline: none;
}

.eol_subscribe .subscribe_form #subscribe-btn {
  height: 48px;
  color: #fff;
  padding: 12px 50px;
  background: var(--theme-color);
  font-size: var(--text-16-size);
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.eol_subscribe .subscribe_form #subscribe-btn span {
  color: #fff;
}
.eol_subscribe .subscribe_form #subscribe-btn:hover {
  background: var(--theme-color-hover);
}

.eol_subscribe .subscribe_info {
  font-size: var(--text-14-size);
}

/* 404 */
.container_404Page .img_box {
  max-width: 600px;
  margin: 0 auto;
}

.container_404Page .img_box img {
  width: 100%;
  text-align: center;
}

/* 页码 */
.eol_pagination_wrapper {
  text-align: center;
  margin: 24px auto 0 auto;
}

.eol_pagination_wrapper .pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.eol_pagination_wrapper .pagination a,
.eol_pagination_wrapper .pagination span {
  display: inline-block;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0 8px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #ddd;
  color: #888;
  border-radius: 5px;
  transition: all 0.3s;
  font-size: var(--text-16-size);
}

.eol_pagination_wrapper .pagination a:hover {
  background: #e3f2fd;
  border-color: var(--theme-color);
}

.eol_pagination_wrapper .pagination .current {
  color: white;
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.eol_pagination_wrapper .pagination .disabled {
  color: #888;
  cursor: not-allowed;
  border-color: #eee;
}

.eol_pagination_wrapper .pagination .ellipsis {
  border: none;
  cursor: default;
}

.eol_pagination_wrapper .page_jumper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 15px;
  font-size: var(--text-16-size);
}
.eol_pagination_wrapper .page_jumper .jumper_label {
  border: none;
}

.eol_pagination_wrapper .page_jumper input {
  width: 60px;
  height: 40px;
  padding: 0 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  font-size: var(--text-16-size);
}

.eol_pagination_wrapper .page_jumper input:focus {
  outline: none;
  border-color: var(--theme-color);
}

.eol_pagination_wrapper .page_jumper input.error {
  border-color: red;
}

.eol_pagination_wrapper .page_jumper button {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #888;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: var(--text-16-size);
}

.eol_pagination_wrapper .page_jumper button:hover {
  background: #e3f2fd;
  border-color: var(--theme-color);
}
/* 询盘 */
.eol_banner.eol_banner_left {
  text-align: left;
}

/* EOL Product Information */
.eol_product_info .product_info_title {
  color: #000;
  font-size: var(--text-32-size);
  font-family: var(--theme-text-bold-family);
}

.eol_product_info .product_info_table {
  margin-top: 24px;
}
.eol_product_info .product_info_table h3 {
  color: #fff;
}
.eol_product_info .product_info_table + .product_info_table {
  margin-top: 56px;
}

.eol_product_info .product_info_table table {
  width: 100%;
  border-collapse: collapse;
}

.eol_product_info .product_info_table table {
  font-size: var(--text-16-size);
}

.eol_product_info .product_info_table table tr:first-child td {
  color: #fff;
  background-color: var(--theme-color);
  border-bottom: none;
  text-align: center;
}

.eol_product_info .product_info_table table td {
  width: 50%;
  padding: 12px 0;
  border-bottom: 1px solid #bbb;
}

.eol_product_info .product_info_table table td:first-child {
  font-family: var(--theme-text-bold-family);
  padding-right: 10px;
}

.eol_product_info .product_info_feedback {
  font-size: var(--text-16-size);
  margin-top: 24px;
}
.eol_quote_form {
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0px 6px 18px 1px rgba(0, 0, 0, 0.16);
}

.eol_quote_form .title {
  font-size: var(--text-40-size);
  font-family: var(--theme-text-bold-family);
  color: #000;
  margin-bottom: 24px;
}

.eol_quote_form .form-row {
  margin-top: 8px;
}

.eol_quote_form label,
.eol_quote_form .contact_method .content {
  position: relative;
  margin-bottom: 4px;
  font-size: var(--text-16-size);
}

.eol_quote_form label.required::after {
  content: "*";
  color: #ff3a3a;
  position: absolute;
  right: -10px;
}

.eol_quote_form .contact_method {
  margin-top: 16px;
}

.eol_quote_form .contact_method label {
  font-size: var(--text-16-size);
  color: #666;
}

.eol_quote_form .contact_method input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

.eol_quote_form .contact_method .contact_method_list .items {
  display: flex;
  flex-wrap: nowrap;
  margin-top: 5px;
  gap: 20px;
}

.eol_quote_form .contact_method .item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.eol_quote_form .contact_method label {
  margin-bottom: 0;
}

.eol_quote_form .submit_btn #submit-inquiry {
  color: #fff;
  font-size: var(--text-16-size);
  margin-top: 16px;
  padding: 12px 30px;
  display: inline-block;
  border: 0;
  border-radius: 5px;
  background-color: var(--theme-color);
  transition: all 0.3s ease;
}

.eol_quote_form .submit_btn #submit-inquiry:hover {
  background-color: var(--theme-color-hover);
}
.product_info_container .out_link {
  color: var(--theme-color);
  font-size: var(--text-12-size);
  font-weight: 900;
}
/* no result */
.noresult_container .img_box {
  max-width: 228px;
  margin: 0 auto;
}

.noresult_container .img_box img {
  width: 100%;
}

.noresult_container .text_box {
  text-align: center;
  color: var(--text-color);
}

.noresult_container .text_box .title {
  margin: 8px 0;
  font-family: var(--theme-text-bold-family);
  font-size: var(--text-24-size);
}

.noresult_container .text_box p {
  font-size: var(--text-16-size);
}

.noresult_container .text_box p:last-child {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .eol__header {
    padding: 5px 15px;
  }
  .eol__header .eol_logo {
    width: 120px;
  }
  .eol__header .eol_header_btn {
    padding: 10px;
  }
  .eol_search_bar{
    margin: 40px auto 0;
  }
  .eol_search_bar #eol_banner_search_keyword {
    width: 140px;
  }
  .eol_breadcrumbs .breadcrumbs_items{
    overflow-x: auto;
  }
  .eol_breadcrumbs .breadcrumbs_items .item{
    flex-shrink: 0;
  }
  .card_border_list {
    gap: 12px;
  }
  .card_border_list li {
    width: 100%;
  }

  .eol_footer {
    padding: 0 0 24px 0;
  }

  .eol_footer .item_container {
    padding: 0;
    max-width: 100%;
  }

  .eol_footer .item_container .item .item_title {
    justify-content: space-between;
    padding: 12px 15px 12px 0;
    width: calc(100% - 30px);
    margin: 0 auto;
    border-bottom: 1px solid #fff;
    transition: all 0.5s;
  }

  .eol_footer .item_container .item .item_title:last-child {
    border-bottom: none;
  }

  .eol_footer .item_container .item .item_list {
    background-color: #00479d;
    display: none;
    padding: 0;
    margin: 0;
  }

  .eol_footer .item_container .item.active .item_list {
    display: block;
  }

  .eol_footer .item_container .item.active .item_title {
    border-bottom: 1px solid transparent;
  }

  .eol_footer .item_container .item .item_list li a {
    display: block;
    padding: 7px 25px;
    color: #fff;
  }

  .eol_footer .item_container .item .collapse_control {
    display: block;
    position: relative;
    transition: transform 0.3s ease;
  }

  .eol_footer .item_container .item .collapse_control::before {
    content: "";
    width: 12px;
    height: 1px;
    display: block;
    background-color: #fff;
    top: 10px;
    position: absolute;
  }

  .eol_footer .item_container .item .collapse_control::after {
    content: "";
    height: 12px;
    width: 1px;
    display: block;
    background-color: #fff;
    left: 5.5px;
    top: 4px;
    position: absolute;
    transition: transform 0.3s ease;
  }

  .eol_footer .item_container .item.active .collapse_control::after {
    transform: rotate(90deg);
    opacity: 0;
  }

  .eol_footer .item_container .item {
    width: 100%;
  }

  .eol_footer .copyright_container .media_wrap a {
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 5px;
    background: #0073ed;
  }

  .eol_footer .copyright_container .row {
    width: auto;
  }

  .eol_footer .copyright_container {
    padding-top: 0;
    border-top: none;
  }

  .eol_footer .copyright_container .media_wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
  }

  .eol_footer .copyright_container .content {
    text-align: center;
  }
  .eol_subscribe .subscribe_form #newsletter {
    width: 265px;
    height: 40px;
    padding: 5px 15px;
  }

  .eol_subscribe .subscribe_form #subscribe-btn {
    height: 40px;
    padding: 5px 15px;
  }
  /* 页码 */
  .eol_pagination_wrapper {
    margin: 15px auto 0 auto;
  }
  .eol_pagination_wrapper .pagination a,
  .eol_pagination_wrapper .pagination span {
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    padding: 0 6px;
  }

  .eol_pagination_wrapper .pagination .page-number {
    display: none;
  }

  .eol_pagination_wrapper .pagination .page-number.show-mobile {
    display: inline-block;
  }

  .eol_pagination_wrapper .page_jumper {
    width: 100%;
    margin: 5px 0 0 0;
    justify-content: center;
  }

  .eol_pagination_wrapper .page_jumper input {
    width: 70px;
    height: 32px;
  }

  .eol_pagination_wrapper .page_jumper button {
    width: 32px;
    height: 32px;
  }
  .product_quote_container {
    margin-top: 56px;
  }
  .product_quote_container .eol_quote_form {
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
  }
  .eol_banner.eol_banner_left .banner_container{
    max-width: 100%;
    
  }
}

/* EOL Content HTML Block start */
.eol_content_html_block {
  margin: 0 auto;
  padding: 0 15px;
  color: var(--text-color);
  font-size: var(--text-16-size);
  line-height: 1.8;
}

.eol_content_html_block h2 {
  color: var(--text-title-color);
  font-size: var(--text-32-size);
  font-family: var(--theme-text-bold-family);
  text-align: center;
  margin-bottom: 24px;
}

.eol_content_html_block .intro {
  font-size: var(--text-16-size);
  color: var(--text-color);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 32px;
}

.eol_content_html_block hr {
  border: none;
  border-top: 2px solid var(--theme-color);
  margin: 40px 0;
  opacity: 0.3;
}

.eol_content_html_block h3 {
  color: var(--text-title-color);
  font-size: var(--text-24-size);
  font-family: var(--theme-text-bold-family);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.eol_content_html_block h4 {
  color: var(--text-title-color);
  font-size: var(--text-20-size);
  font-family: var(--theme-text-bold-family);
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.eol_content_html_block p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.eol_content_html_block strong {
  font-family: var(--theme-text-bold-family);
  color: var(--text-title-color);
}

/* Lists - 醒目的圆点样式 */
.eol_content_html_block ul,
.eol_content_html_block ol {
  margin: 20px 0;
  padding-left: 30px;
}

.eol_content_html_block ul li,
.eol_content_html_block ol li {
  margin-bottom: 12px;
  line-height: 1.8;
  position: relative;
}

/* 无序列表 - 使用主题色的醒目圆点 */
.eol_content_html_block ul li {
  list-style: none;
  padding-left: 20px;
}

.eol_content_html_block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--theme-color);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0, 115, 237, 0.2);
}

/* 有序列表 - 使用主题色数字 */
.eol_content_html_block ol li {
  list-style: decimal;
  padding-left: 10px;
}

.eol_content_html_block ol li::marker {
  color: var(--theme-color);
  font-family: var(--theme-text-bold-family);
  font-size: 1.1em;
}

/* Note Box - 注意事项框 */
.eol_content_html_block .note {
  background-color: #e6f2ff;
  border-left: 4px solid var(--theme-color);
  padding: 20px 24px;
  border-radius: 5px;
  margin: 24px 0;
}

.eol_content_html_block .note p {
  margin-bottom: 0;
  line-height: 1.8;
}

.eol_content_html_block .note strong {
  color: var(--theme-color);
}

/* Image */
.eol_content_html_block .faq_image {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .eol_content_html_block {
    padding: 0 15px;
  }

  .eol_content_html_block h2 {
    font-size: var(--text-24-size);
    margin-bottom: 16px;
  }

  .eol_content_html_block .intro {
    font-size: var(--text-14-size);
    margin-bottom: 24px;
  }

  .eol_content_html_block hr {
    margin: 24px 0;
  }

  .eol_content_html_block h3 {
    font-size: var(--text-20-size);
    margin-top: 32px;
    margin-bottom: 12px;
  }

  .eol_content_html_block h4 {
    font-size: var(--text-16-size);
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .eol_content_html_block ul,
  .eol_content_html_block ol {
    padding-left: 20px;
    margin: 16px 0;
  }

  .eol_content_html_block ul li {
    padding-left: 15px;
  }

  .eol_content_html_block ul li::before {
    top: 8px;
    width: 6px;
    height: 6px;
  }

  .eol_content_html_block .note {
    padding: 16px 20px;
    margin: 20px 0;
  }

  .eol_content_html_block .faq_image {
    margin: 20px 0;
    border-radius: 5px;
  }
}
/* Tables - 表格样式 */
.eol_content_html_block table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.eol_content_html_block table thead {
  background-color: var(--theme-color);
}

.eol_content_html_block table thead tr th {
  padding: 16px 20px;
  text-align: left;
  color: #fff;
  font-family: var(--theme-text-bold-family);
  font-size: var(--text-16-size);
  vertical-align: middle;
  border: none;
}

.eol_content_html_block table tbody tr {
  transition: background-color 0.2s ease;
}

.eol_content_html_block table tbody tr:nth-child(even) {
  background-color: #eff7fe;
}

.eol_content_html_block table tbody tr:hover {
  background-color: #e6f2ff;
}

.eol_content_html_block table tbody tr td {
  padding: 14px 20px;
  color: var(--text-color);
  font-size: var(--text-16-size);
  border-bottom: 1px solid #e8e8e8;
  vertical-align: top;
  line-height: 1.6;
}

.eol_content_html_block table tbody tr:last-child td {
  border-bottom: none;
}

.eol_content_html_block table td strong {
  color: var(--text-title-color);
  font-family: var(--theme-text-bold-family);
}

/* External Links - 外部链接箭头样式 */
.eol_content_html_block a[target="_blank"] {
  color: var(--theme-color);
  text-decoration: none;
  position: relative;
  padding-right: 18px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.eol_content_html_block a[target="_blank"]::after {
  content: "↗";
  font-size: 14px;
  font-weight: bold;
  color: var(--theme-color);
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
  margin-left: 2px;
}

.eol_content_html_block a[target="_blank"]:hover {
  color: var(--theme-color-hover);
  text-decoration: underline;
}

.eol_content_html_block a[target="_blank"]:hover::after {
  transform: translate(2px, -2px);
  color: var(--theme-color-hover);
}

/* Mobile Responsive - 表格响应式 */
@media screen and (max-width: 768px) {
  .eol_content_html_block table {
    font-size: var(--text-14-size);
    margin: 20px 0;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .eol_content_html_block table thead tr th {
    padding: 12px 16px;
    font-size: var(--text-14-size);
  }

  .eol_content_html_block table tbody tr td {
    padding: 10px 16px;
    font-size: var(--text-14-size);
  }

  /* 表格滚动条样式 */
  .eol_content_html_block table::-webkit-scrollbar {
    height: 8px;
    background: #f5f5f5;
  }

  .eol_content_html_block table::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
  }

  .eol_content_html_block table::-webkit-scrollbar-thumb:hover {
    background: #888;
  }

  .eol_content_html_block a[target="_blank"] {
    padding-right: 16px;
  }

  .eol_content_html_block a[target="_blank"]::after {
    font-size: 12px;
  }
}
/* EOL Content HTML Block end */
