/* 容器样式 */
.content-text {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #1a1a1a;
}

.content-text p {
    color: #fff;
    font-size: 17px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: justify;
}
/* 导航项样式 */
.nav-item {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    position: relative;
}

/* 选中状态 - 上品团队 */
.nav-item.active {
    background-color: #00C08B; /* 绿色背景 */
}

.nav-item.active span {
    color: #fff; /* 保持文字为白色 */
}

/* 响应式调整 */
@media (max-width: 768px) {
    .nav-item {
        font-size: 16px;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .nav-item {
        font-size: 14px;
        padding: 10px 0;
    }
}
/* about容器 */
.about-xiaoercms-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #1a1a1a;
}

.xiaoercms-container {
    max-width: 1500px;
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    background-color: #111;
}

/* 左侧地图区域 */
.map-section {
    flex: 1;
    min-width: 400px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #2a2a2a;
    position: relative;
    overflow: hidden;
    border: 1px solid #444;
}

/* 模拟地图纹理 */
.map-texture {
    position: absolute;
    width: 100%;
    height: 100%;

    background-size: 40px 40px;
    opacity: 0.3;
}

/* 定位标记 */
.location-marker {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(0, 255, 255, 0.3);
}

.marker-pin {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background-color: #00ffff;
}

/* 右侧信息区域 */
.info-section {
    flex: 1;
    min-width: 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 标题样式 */
.chinese-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.english-title {
    font-size: 18px;
    font-style: italic;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}



.contact-line {
    font-size: 18px;
    line-height: 2.2;
    margin-bottom: 12px;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
}

.contact-line:nth-child(2) {
    color: #999999;
    font-size: 17px;
}



/* 响应式设计 */
@media (max-width: 1024px) {
    .xiaoercms-container {
        flex-direction: column;
    }
    
    .map-section, .info-section {
        min-width: 100%;
        padding: 30px;
    }
    
    .map-placeholder {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .map-section, .info-section {
        padding: 25px;
    }
    
    .chinese-title {
        font-size: 28px;
    }
    
    .english-title {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-line {
        font-size: 16px;
        line-height: 2;
    }
    
    .contact-line:nth-child(2) {
        font-size: 15px;
    }
    
    .footer-info {
        font-size: 15px;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .map-section, .info-section {
        padding: 20px;
    }
    
    .chinese-title {
        font-size: 24px;
    }
    
    .english-title {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .contact-line {
        font-size: 15px;
    }
    
    .contact-line:nth-child(2) {
        font-size: 14px;
    }
    
    .footer-info {
        font-size: 14px;
    }
    
    body {
        padding: 10px;
    }
}

.form-container {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
}

/* 标题 */
.form-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-weight: normal;
}

/* 两列布局 */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

/* 输入框样式 */
.form-input {
    width: 100%;
    padding: 12px 15px;
    background-color: transparent;
    border: 1px solid #666;
    color: #fff;
    font-size: 16px;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.form-input::placeholder {
    color: #888;
}

.form-input:focus {
    outline: none;
    border-color: #999;
}

/* 文本区域 */
.textarea-group {
    margin-bottom: 20px;
}

.form-textarea {
    width: 100%;
    height: 150px;
    padding: 12px 15px;
    background-color: transparent;
    border: 1px solid #666;
    color: #fff;
    font-size: 16px;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    resize: none;
}

.form-textarea::placeholder {
    color: #888;
}

.form-textarea:focus {
    outline: none;
    border-color: #999;
}

/* 提交按钮 */
.submit-btn {
    padding: 12px 30px;
    background-color: #fff;
    color: #000;
    border: none;
    font-size: 16px;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .form-input,
    .form-textarea,
    .submit-btn {
        font-size: 15px;
        padding: 10px 12px;
    }
    
    .form-textarea {
        height: 120px;
    }
    
    body {
        padding: 15px;
    }
}

/* 轮播容器样式 */
.location-slider-wrapper {
    max-width: 1500px;
    width: 100%;
    margin: 30px auto 80px auto;
    position: relative;
    background-color: #111;
}

.location-slider {
    width: 100%;
    position: relative;
}

.location-slide {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.location-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* 左右箭头 */
.location-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.location-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.location-arrow svg {
    transition: transform 0.3s ease;
}

.location-arrow:hover svg {
    transform: scale(1.1);
}

.location-arrow-prev {
    left: -40px;
}

.location-arrow-next {
    right: -40px;
}

/* 响应式适配 */
@media (max-width: 1024px) {
    .location-slider-wrapper {
        margin: 20px auto;
    }

    .location-arrow {
        width: 45px;
        height: 45px;
    }

    .location-arrow-prev {
        left: 15px;
    }

    .location-arrow-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .location-arrow {
        width: 40px;
        height: 40px;
    }

    .location-arrow-prev {
        left: 10px;
    }

    .location-arrow-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .location-arrow {
        width: 35px;
        height: 35px;
    }

    .location-arrow-prev {
        left: 8px;
    }

    .location-arrow-next {
        right: 8px;
    }
}