.extend_container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/*global service*/

.continent {
    background: white;
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.continent-header {
    padding: 20px 30px;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
}

.continent-header .icon {
    font-size: 1.5em;
}

/* 各大洲不同颜色 */
.asia .continent-header {
    background: linear-gradient(90deg, #ff6b6b, #ee5a5a);
}

.europe .continent-header {
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

.north-america .continent-header {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.south-america .continent-header {
    background: linear-gradient(90deg, #f093fb, #f5576c);
}

.africa .continent-header {
    background: linear-gradient(90deg, #ff9a56, #ff6b35);
}

.oceania .continent-header {
    background: linear-gradient(90deg, #17a2b8, #138496);
}

.southeast-asia .continent-header {
    background: linear-gradient(90deg, #11998e, #38ef7d);
}

.central-asia .continent-header {
    background: linear-gradient(90deg, #d4a373, #b5835a);
}

.middle-east .continent-header {
    background: linear-gradient(90deg, #f7971e, #ffd200);
}

.australia .continent-header {
    background: linear-gradient(90deg, #1c92d2, #f2fcfe);
}

.russia .continent-header {
    background: linear-gradient(90deg, #2b5876, #4e4376);
}

.india .continent-header {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
}

.countries {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 15px;
    padding: 25px;
}

.country {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.country:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.flag {
    font-size: 2em;
    line-height: 1;
}

.country-name {
    font-size: 0.85em;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    .countries {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
        padding: 15px;
    }

    .country {
        padding: 10px;
    }

    .flag {
        font-size: 1.5em;
    }

    .country-name {
        font-size: 0.85em;
    }
}

/*top search*/

.global_page {
    position: relative;
    font-size: 14px;
    line-height: 29px;
    padding: 50px 0;
    font-family: Arial;
}

.global_page h1 {
    font-size: 20px;
    color: #858585;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding-bottom: 24px;
    margin-bottom: 4px;
}

.global_page .keyword_search {
    margin-bottom: 17px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.global_page .keyword_search>strong {
    margin-right: 20px;
    font-weight: 400;
    color: #000;
}

.global_page .keyword_search a strong {
    color: #8db9e8;
    font-weight: 400;
}

.global_page .keyword_search a {
    margin: 0 5px;
}

.global_page .keyword_search a:hover strong {
    color: #0b87fb;
    text-decoration: underline;
    transition: all .35s ease-in-out;
}

.global_page .keyword_list {
    width: 100%;
    list-style: none;
    font-size: 0;
}

.global_page .keyword_list li {
    width: 20%;
    display: inline-block;
}

.global_page .keyword_list li a {
    font-size: 13px;
    line-height: 2;
    color: #333;
}

.global_page .keyword_list li a:hover {
    color: #0b87fb;
    text-decoration: underline;
    transition: all .35s ease-in-out;
}

.global_page .keyword_pageNav {
    margin-top: 40px;
}

.global_page .keyword_pageNav a {
    display: inline-block;
    margin-left: 8px;
    width: 22px;
    background: #fff;
    color: #000;
    vertical-align: middle;
    text-align: center;
    font-size: 12px;
    line-height: 22px;
}

.global_page .keyword_pageNav a:hover,
.global_page .keyword_pageNav a.current {
    background: #015aaa;
}

.global_page .keyword_pageNav a.prev,
.global_page .keyword_pageNav a.next {
    box-shadow: 1px 1px 1px #a2a1a1;
    font-size: 18px;
}

@media only screen and (max-width:1280px) {
    .global_page .keyword_list li {
        width: 33.33%;
    }
}

@media only screen and (max-width:768px) {
    .global_page .keyword_list li {
        width: 50%;
    }
}