
ul, ol { list-style: none; padding-left: 0; margin: 0; }
body{ font-family: pingfang SC,helvetica neue,arial,hiragino sans gb,microsoft yahei ui,microsoft yahei,simsun,sans-serif!important; background:#fff; }
a{ text-decoration:none; }

/* 容器最大宽度1350px */
.guge-container { max-width: 1350px; margin: 0 auto; padding: 0 15px; }
/* 每部分上下padding 80px */
.guge-section { padding: 80px 0; }
@media (max-width: 768px) {
    .guge-section { padding: 50px 0; }
}
/* 大标题30px 居中 */
.guge-tit { font-size: 30px; font-weight: 700; text-align: center; color:#000; }
@media (max-width: 576px) {
    .guge-tit { font-size: 24px; }
}
.guge-tit1 { text-align:center; font-size:0.95rem; color:#666; margin-top:0.5rem; }

/* ===== 主色 #0066ff ===== */
.guge-primary-bg { background: #0066ff; }
.guge-primary-color { color: #0066ff; }
.guge-primary-border { border-color: #0066ff; }

/* ===== 图标颜色控制 ===== */
/* 优势图标 - #0066ff */
.guge-advantage-card img,
.guge-reason-card img {
    filter: brightness(0) saturate(100%) invert(28%) sepia(99%) saturate(4329%) hue-rotate(210deg) brightness(98%) contrast(105%);
}
/* 购买流程图标 - 保持原色白色（不添加滤镜） */
.guge-step-item .guge-step-icon img {
    filter: none;
}
/* 箭头颜色变为 #0066ff */
.guge-arrow-line {
    background: url('/css/2022/images/guge-jt.png') no-repeat top center;
    background-size: contain;
    height: 65px;
    margin: 0 auto;
    max-width: 843px;
    filter: brightness(0) saturate(100%) invert(28%) sepia(99%) saturate(4329%) hue-rotate(210deg) brightness(98%) contrast(105%);
}

/* ===== Banner ===== */
.guge-banner {
    background: url('images/google-banner.jpg') no-repeat top center;
    background-size: cover;
    padding: 100px 0 50px;
    min-height: 500px;
    margin-top: 60px;
}
.guge-banner-txt {
    text-align: left;
    width: 100%;
}
.guge-banner-txt h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: left;
}
.guge-banner-txt p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    line-height: 1.8;
    margin: 30px 0;
    text-align: justify;
}
.guge-banner-txt p b { color: #0066ff; }
.guge-banner-btn {
    text-align: left;
}
.guge-banner-btn a {
    display: inline-block;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #0066ff;
    color: #fff;
    margin-right: 25px;
    border-radius: 4px;
    padding: 0 20px;
    transition: all 0.3s ease;
}
.guge-banner-btn a:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,255,0.3);
}
.guge-banner-btn a:first-child {
    background: none;
    border: 1px solid #333;
    color: #333;
}
.guge-banner-btn a:first-child:hover {
    background: rgba(0,102,255,0.05);
    border-color: #0066ff;
    color: #0066ff;
    transform: translateY(-2px);
    box-shadow: none;
}

/* ===== 购买流程 - 5个步骤两端对齐平均分布 ===== */
.guge-step-wrap { margin-top: 2rem; }
.guge-step-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.guge-step-item {
    text-align: center;
    flex: 1;
    min-width: 0;
    padding: 0 0.3rem;
}
/* ===== 购买流程 - 背景色 #0066ff，图标颜色 #333 ===== */
.guge-step-item .guge-step-icon {
    width: 100%;
    max-width: 210px;
    height: 100px;
    background: #f7f9ff;  /* 背景色改为 #0066ff */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}
.guge-step-item .guge-step-icon img {
    height: auto;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) brightness(0%) contrast(100%);  /* 图标颜色变为黑色 #333 */
}
.guge-step-item .guge-step-icon p {
    color: #333;  /* 文字颜色变为 #333 */
    font-size: 1rem;
    font-weight: 700;
    margin-top: 8px;
}
.guge-step-item .guge-step-num {
    font-size: 1.8rem;
    color: #333;
    font-weight: 700;
    margin: 15px 0 8px;
}
.guge-step-item .guge-step-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}
/* 移动端适配 */
@media (max-width: 768px) {
    .guge-step-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    .guge-step-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 0.5rem;
    }
    .guge-step-item .guge-step-icon {
        max-width: 180px;
        height: 90px;
    }
}
@media (max-width: 576px) {
    .guge-step-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .guge-arrow-line { display: none; }
    .guge-step-item .guge-step-icon { max-width: 200px; height: 85px; }
    .guge-step-item .guge-step-icon img { max-width: 32px; }
    .guge-step-item .guge-step-icon p { font-size: 0.9rem; }
}

.guge-btn-group {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.guge-btn-group a {
    display: inline-block;
    width: 160px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 0.95rem;
    border-radius: 8px;
    padding: 0 25px;
    transition: all 0.3s ease;
}
.guge-btn-group .guge-btn-primary {
    background: #0066ff;
    color: #fff;
}
.guge-btn-group .guge-btn-primary:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,255,0.3);
    color: #fff;
}
.guge-btn-group .guge-btn-outline {
    background: #fff;
    border: 1px solid #dee3f6;
    color: #333;
}
.guge-btn-group .guge-btn-outline:hover {
    border-color: #0066ff;
    color: #0066ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,255,0.1);
}

/* ===== 全球地域列表 ===== */
.guge-region-bg { background: #f7f9ff; }
.guge-region-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.guge-region-grid a {
    display: inline-block;
    padding: 0.3rem 2rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s ease;
}
.guge-region-grid a:hover {
    color: #0066ff;
    border-color: #0066ff;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,102,255,0.1);
}
.guge-region-grid a.guge-more {
    color: #f5553f;
}
.guge-region-grid a.guge-more:hover {
    color: #0066ff;
    border-color: #0066ff;
}

/* ===== 配置信息条 ===== */
.guge-spec-bar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
}
.guge-spec-item {
    text-align: center;
    padding: 0 1rem;
    border-right: 1px solid #ededed;
    flex: 1;
    min-width: 100px;
}
.guge-spec-item:last-child { border-right: none; }
.guge-spec-item .guge-spec-label { font-size: 0.85rem; color: #888; display: block; }
.guge-spec-item .guge-spec-value { font-size: 1.1rem; color: #333; font-weight: 600; }
.guge-spec-item .guge-spec-value .guge-price { color: #0066ff; font-size: 1.3rem; }
.guge-spec-item .guge-spec-btn {
    display: inline-block;
    background: #0066ff;
    color: #fff;
    padding: 0.3rem 2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.guge-spec-item .guge-spec-btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,255,0.3);
    color: #fff;
}
@media (max-width: 768px) {
    .guge-spec-item { border-right: none; border-bottom: 1px solid #eee; padding: 0.5rem 0; }
    .guge-spec-item:last-child { border-bottom: none; }
}

/* ===== 谷歌云优势 ===== */
.guge-advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}
.guge-advantage-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    padding: 1.5rem 0.5rem;
    transition: all 0.3s ease;
    cursor: default;
}
.guge-advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,102,255,0.12);
    border-color: #0066ff;
}
.guge-advantage-card .guge-advantage-icon {
    width: 54px;
    height: 54px;
    border: 2px solid #0066ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.guge-advantage-card .guge-advantage-icon img {
    max-width: 28px;
    height: auto;
}
.guge-advantage-card h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}
@media (max-width: 992px) {
    .guge-advantage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .guge-advantage-grid { grid-template-columns: 1fr; }
}

/* ===== 全球节点布局 ===== */
.guge-map-bg {
    background: #f6f6f6;
    overflow-x: hidden;
}
.guge-c4Con {
    margin-top: 50px;
    position: relative;
    height: 580px;
}
.guge-c4Con .guge-map {
    position: absolute;
    top: 0;
    right: -360px;
    max-width: none;
    height: auto;
}
.guge-quyu {
    width: 314px;
    height: 320px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    z-index: 2;
}
.guge-quyu-L { float: left; width: 110px; }
.guge-quyu-list { margin-bottom: 30px; }
.guge-quyu-list h3 {
    font-size: 30px;
    color: #27a248;
    font-weight: 700;
    margin: 0;
}
.guge-quyu-list h3 span { font-size: 13px; font-weight: 400; }
.guge-quyu-list p { font-size: 14px; color: #333; margin-top: 5px; }
.guge-quyu-R { float: right; }
.guge-liaojie {
    width: 100%;
    margin-top: 70px;
    clear: both;
}
.guge-liaojie a {
    font-size: 14px;
    color: #0066ff;
    transition: 0.3s;
}
.guge-liaojie a:hover { color: #0052cc; }

.guge-tuli {
    width: 400px;
    position: absolute;
    left: 0;
    top: 340px;
    z-index: 2;
}
.guge-tuli .guge-tuli-tit { font-size: 16px; color: #333; font-weight: 600; margin-bottom: 6px; }
.guge-tuli-list { width: 400px; }
.guge-tuli-list li {
    float: left;
    font-size: 14px;
    color: #666;
    margin-top: 14px;
    width: 200px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.guge-tuli-list li:nth-child(2n) { float: right; }
.guge-tuli-list li span {
    display: inline-block;
    flex-shrink: 0;
}
.guge-tuli-list li:nth-child(1) span { width: 25px; height: 4px; background: #4cb2ff; border-radius: 2px; }
.guge-tuli-list li:nth-child(2) span { width: 12px; height: 12px; background: #4cb2ff; border-radius: 50%; border: 1px solid #305fa9; }
.guge-tuli-list li:nth-child(3) span { width: 25px; height: 4px; background: #1c9e3f; border-radius: 2px; }
.guge-tuli-list li:nth-child(4) span { width: 12px; height: 12px; background: #fff; border-radius: 50%; border: 1px solid #305fa9; }
.guge-tuli-list li:nth-child(5) span { width: 5px; height: 5px; background: #16171a; border-radius: 50%; }

.guge-map-txt {
    width: 692px;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
    color: #666;
    line-height: 24px;
    z-index: 1;
}

@media (max-width: 1200px) {
    .guge-c4Con .guge-map { right: -200px; }
}
@media (max-width: 992px) {
    .guge-c4Con { height: auto; min-height: 580px; }
    .guge-c4Con .guge-map { position: relative; right: auto; display: block; margin: 0 auto; max-width: 100%; }
    .guge-quyu { position: relative; width: 100%; max-width: 314px; margin: 0 auto; }
    .guge-tuli { position: relative; top: auto; left: auto; width: 100%; max-width: 400px; margin: 20px auto 0; }
    .guge-tuli-list { width: 100%; }
    .guge-tuli-list li { width: 50%; }
    .guge-map-txt { position: relative; width: 100%; margin-top: 20px; }
}
@media (max-width: 576px) {
    .guge-tuli-list li { width: 100%; float: none !important; }
    .guge-quyu { padding: 20px; height: auto; min-height: 280px; }
    .guge-quyu-L { width: 50%; }
    .guge-quyu-R { width: 50%; }
}

/* ===== 精选产品表格 ===== */
.guge-table-wrap {
    margin-top: 2rem;
    overflow-x: auto;
}
.guge-table-wrap table {
    width: 100%;
    border: 1px solid #eee;
    border-collapse: collapse;
}
.guge-table-wrap table td {
    padding: 1.4rem 1rem;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
}
.guge-table-wrap table td:first-child {
    font-weight: 600;
    color: #333;
    text-align: center;
    width: 200px;
}
.guge-table-wrap table tr:hover td {
    background: #f9faff;
}

/* ===== 选择原因 ===== */
.guge-reason-bg { background: #f7f9ff; }
.guge-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}
.guge-reason-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    cursor: default;
    border: 1px solid transparent;
}
.guge-reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,102,255,0.12);
    border-color: #0066ff;
}
.guge-reason-card img {
    height: auto;
    flex-shrink: 0;
}
.guge-reason-card .guge-reason-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px 0;
}
.guge-reason-card .guge-reason-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}
@media (max-width: 992px) {
    .guge-reason-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .guge-reason-grid { grid-template-columns: 1fr; }
    .guge-reason-card { padding: 1rem; }
}

/* ===== 其他云产品代理 ===== */
.guge-partner-bg { background: #fff; }
.guge-partner-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}
.guge-partner-item {
    background: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    padding: 0.8rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
}
.guge-partner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,102,255,0.10);
    border-color: #0066ff;
}
.guge-partner-item .guge-partner-name {
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
}
.guge-partner-item .guge-partner-name .guge-discount {
    font-size: 1.1rem;
    color: #0066ff;
    font-weight: 700;
}
.guge-partner-item a {
    background: #0066ff;
    color: #fff;
    padding: 0.3rem 2rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-block;
}
.guge-partner-item a:hover {
    background: #0052cc;
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,102,255,0.3);
}
@media (max-width: 992px) {
    .guge-partner-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
    .guge-partner-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 注册 ===== */
.guge-register-bg { background: #f9faff; }
.guge-register-btn {
    display: inline-block;
    background: #0066ff;
    color: #fff;
    padding: 0.6rem 2.5rem;
    border-radius: 30px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}
.guge-register-btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,255,0.3);
    color: #fff;
}

@media (max-width: 768px) {
    .guge-banner { min-height: auto; padding: 40px 0 30px; }
    .guge-banner-txt h1 { font-size: 1.8rem; }
    .guge-banner-txt p { max-width: 100%; }
    .guge-btn-group { gap: 30px; }
    .guge-arrow-line { height: 40px; }
}
@media (max-width: 576px) {
    .guge-banner-btn a { width: 100px; margin-right: 10px; font-size: 0.85rem; }
}
