/* 通用样式 */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('__PUBLIC__/images/background/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}
.country-card {
    transition: transform 0.3s;
}
.country-card:hover {
    transform: translateY(-5px);
}
.plug-type-card img {
    max-width: 120px;
    margin: 0 auto;
    display: block;
}
.continent-section {
    background-color: #f8f8f8;
}
.search-box {
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* 导航栏样式 */
.uk-navbar-container {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.uk-navbar-container:not(.uk-navbar-transparent) {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.uk-navbar-item.uk-logo {
    display: flex;
    align-items: center;
}
.uk-navbar-nav > li > a {
    font-weight: 500;
    text-transform: none;
    min-height: 70px;
}

/* 底部区域样式 */
.uk-section-secondary {
    background-color: #222;
}
.uk-section-secondary h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}
.uk-section-secondary .uk-list-hyphen > li {
    margin-bottom: 8px;
}
.uk-section-secondary .uk-list-hyphen a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.uk-section-secondary .uk-list-hyphen a:hover {
    color: #fff;
    text-decoration: none;
}
.uk-icon-button {
    background-color: rgba(0,0,0,0.3);
    color: #fff;
    transition: background-color 0.2s;
}
.uk-icon-button:hover {
    background-color: rgba(0,0,0,0.4);
    color: #fff;
}

/* 大洲卡片样式 */
.continent-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    overflow: hidden;
}

.continent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.continent-icon {
    margin: 0 auto;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* 给不同的大洲设置不同的颜色 */
.continent-1 .continent-icon {
    background-color: rgba(52, 152, 219, 0.1); /* 欧洲 - 蓝色 */
}

.continent-2 .continent-icon {
    background-color: rgba(231, 76, 60, 0.1); /* 北美洲 - 红色 */
}

.continent-3 .continent-icon {
    background-color: rgba(241, 196, 15, 0.1); /* 亚洲 - 黄色 */
}

.continent-4 .continent-icon {
    background-color: rgba(46, 204, 113, 0.1); /* 南美洲 - 绿色 */
}

.continent-5 .continent-icon {
    background-color: rgba(155, 89, 182, 0.1); /* 非洲 - 紫色 */
}

.continent-6 .continent-icon {
    background-color: rgba(52, 73, 94, 0.1); /* 大洋洲 - 深灰色 */
}

.continent-7 .continent-icon {
    background-color: rgba(189, 195, 199, 0.1); /* 南极洲 - 浅灰色 */
}

/* 大洲页面特定样式 */
.continent-header {
    background: rgba(0,0,0,0.5);
    padding: 60px 0;
    position: relative;
}

.continent-nav {
    position: sticky;
    top: 80px;
}
.flag-icon {
    width: 30px;
    height: 20px;
    margin-right: 10px;
    border-radius: 2px;
    object-fit: cover;
}
.voltage-badge {
    background: #f8f8f8;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
    display: inline-block;
    margin-right: 5px;
}
.plug-type-icon {
    width: 25px;
    height: 25px;
    margin-right: 5px;
}
.country-card {
    height: 100%;
    transition: transform 0.3s;
}
.country-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 国家详情页特定样式 */
.country-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('__PUBLIC__/images/background/country-default.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
}
.plug-type-large {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}
.voltage-info {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}
.frequency-info {
    font-size: 1.8rem;
    color: #666;
}
.info-card {
    transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.adapter-card {
    transition: all 0.3s ease;
}
.adapter-card:hover {
    transform: translateY(-3px);
}
.warning-box {
    border-left: 4px solid #faa05a;
    padding: 15px;
    background: #fff8f0;
}
.tip-box {
    border-left: 4px solid #32d296;
    padding: 15px;
    background: #f0fff6;
}
.breadcrumb {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 4px;
}

/* 插头类型页面特定样式 */
.plug-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('__PUBLIC__/images/background/plug-type-detail-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
}
.plug-type-card {
    transition: all 0.3s ease;
}
.plug-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.plug-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}
.country-tag {
    display: inline-block;
    padding: 4px 8px;
    margin: 2px;
    background: #f8f8f8;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}
.country-tag:hover {
    background-color: #e6e6e6;
}
.filter-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
}
.plug-specs {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
}
.plug-3d-view {
    border: 1px solid #e5e5e5;
    padding: 10px;
    border-radius: 6px;
    background: #fff;
}
.plug-image-gallery img {
    cursor: pointer;
    transition: transform 0.3s;
    border-radius: 4px;
    width: 100%;
    height: 80px;
    object-fit: cover;
}
.plug-image-gallery img:hover {
    transform: scale(1.05);
}
.spec-box {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.dimension-table {
    background: white;
    border-radius: 6px;
    overflow: hidden;
}
.country-card {
    transition: all 0.3s ease;
}
.country-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.warning-box {
    background: #fff6f6;
    border-left: 4px solid #f0506e;
    padding: 15px;
    margin: 15px 0;
}
.tip-box {
    background: #f0fff6;
    border-left: 4px solid #32d296;
    padding: 15px;
    margin: 15px 0;
}


.checklist-item {
    background: #fff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.category-nav {
    position: sticky;
    top: 80px;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.uk-accordion-title {
    font-size: 1.1rem;
    font-weight: 500;
}
.uk-accordion-content {
    padding: 15px;
    background: #f8f8f8;
    border-radius: 4px;
}
.voltage-badge {
    display: inline-block;
    padding: 3px 8px;
    background: #f8f8f8;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-right: 5px;
}
#country-specific-advice {
    transition: all 0.3s ease;
}
#country-specific-advice .uk-card {
    animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.advice-header{
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('__PUBLIC__/images/background/adapter-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}
/* 旅行建议详情页样式 */
.country-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('__PUBLIC__/images/background/travel-advice-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}
.info-card {
    transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.voltage-badge {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}
.plug-type-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.advice-section {
    margin: 15px 0;
}
.print-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}
.device-compatibility {
    background: #f8f8f8;
    border-radius: 6px;
    padding: 15px;
}
.share-buttons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
@media print {
    .no-print {
        display: none !important;
    }
}
/* 搜索结果页样式 */
.search-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('__PUBLIC__/images/background/search-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
}
.search-box {
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.country-card {
    transition: all 0.3s ease;
}
.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.flag-icon {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 3px;
}
.filter-sidebar {
    position: sticky;
    top: 80px;
}
.voltage-badge {
    background: #f8f8f8;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
}
.plug-type-icon {
    width: 25px;
    height: 25px;
    margin-right: 5px;
}
#search-results-grid .plug-type-icon {
    margin: 0 2px;
}
/* 适配器列表页样式 */
.adapter-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('__PUBLIC__/images/background/adapter-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}
.adapter-card {
    transition: all 0.3s ease;
    position: relative;
}
.adapter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.feature-badge {
    background: #f8f8f8;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
    margin: 2px;
    display: inline-block;
}
.price-tag {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}
.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}
.promotion-price {
    color: #f0506e;
}
.filter-sidebar {
    position: sticky;
    top: 80px;
}
.rating {
    color: #faa05a;
}
.compatibility-icon {
    width: 20px;
    height: 20px;
    margin-right: 3px;
}
.promotion-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f0506e;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 1;
}
#list-view-container .uk-card-body {
    padding: 20px;
}
#list-view-container .promotion-badge {
    top: 5px;
    right: 5px;
}
#list-view-container .feature-badge {
    margin-right: 5px;
    margin-bottom: 5px;
}
.uk-button-group .uk-active {
    background-color: rgba(255,255,255,0.2);
}
@media (max-width: 640px) {
    .adapter-header {
        padding: 40px 0;
    }
    .price-tag {
        font-size: 1.2rem;
    }
    .original-price {
        font-size: 0.9rem;
    }
}
/* 适配器详情页样式 */
.product-gallery img {
    cursor: pointer;
    transition: all 0.3s ease;
}
.product-gallery img:hover {
    transform: scale(1.05);
}
.price-tag {
    font-size: 2rem;
    font-weight: bold;
    color: #f0506e;
}
.original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
    font-size: 1.2rem;
    font-weight: normal;
}
.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}
.compatibility-table td {
    vertical-align: middle;
}
.plug-type-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.review-card {
    transition: all 0.3s ease;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.sticky-buy {
    position: sticky;
    top: 80px;
}
.spec-table {
    background: white;
    border-radius: 8px;
}
.rating-large {
    font-size: 3rem;
    font-weight: bold;
    color: #faa05a;
}
.rating-breakdown {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
}
.share-buttons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
.uk-thumbnav img {
    border: 2px solid transparent;
    transition: all 0.2s ease;
}
.uk-thumbnav .uk-active img {
    border-color: #1e87f0;
}
.uk-progress {
    height: 8px;
    margin: 0;
}
.uk-progress-bar {
    background-color: #faa05a;
}
@media print {
    .no-print {
        display: none !important;
    }
}
@media (max-width: 640px) {
    .share-buttons {
        display: none;
    }
    .sticky-buy {
        position: static;
    }
    .price-tag {
        font-size: 1.5rem;
    }
}


.jumpLayout{
    padding:9%;
    text-align: center;
}
.jumpLayout img{
    width:250px;
    margin-bottom: 20px;
}
.jumpLayout .topTitle{
    font-size:22px;
    margin-bottom: 20px;
}
.jumpLayout .subTitle{
    font-size:13px;
    color:#787878;
    margin-bottom:20px;
}
.jumpLayout .toPage{
    background: #1e87f0;
    color:#fff;
    width:160px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
    font-size:14px;
    display: block;
    margin:0 auto;
}

.botomCopy{
    text-align: center;
    font-size: 13px;
    padding: 20px 0 60px;
    color: #686868;
}
.botomCopy a{
    font-size: 13px;
}

.graytext{
    color:#999;
}

ins.adsbygoogle{
    background-color: transparent;
    text-decoration: none;
}
ins.adsbygoogle[data-ad-status="unfilled"] {
    display: none !important;
}
div.adbox:has(ins.adsbygoogle[data-ad-status="unfilled"]) {
    display: none;
}