/* CC官方直营招商区域样式 */
.cc-official-banner {
    /* background: #1a1a1a;
    border: 1px solid #333; */
    margin: 20px 0;
    color: #fff;
    font-family: Arial, "Microsoft YaHei", sans-serif;
}

.cc-banner-container {
    max-width: 1010px;
    margin: 0 auto;
    /* padding: 15px; */
    width: 1010px; /* 固定宽度与原有元素保持一致 */
}

/* 轮播图区域样式 - 横排显示 */
.cc-carousel-section {
    margin: 0 0 20px 0;
}

.cc-carousel-container {
    position: relative;
    overflow: hidden;
    /* border: 1px solid #333; */
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.cc-carousel-wrapper {
    overflow: hidden;
    /* margin: 0 30px; */
    position: relative;
}

.cc-carousel-slides-horizontal {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.cc-carousel-slide {
    flex: 0 0 calc(33.333% - 20px);
    padding: 0 10px;
    box-sizing: border-box;
    min-width: 0;
}

.cc-carousel-slide img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #444;
}

/* 克隆的幻灯片样式 */
.cc-carousel-slide.cloned {
    /* 可以添加特殊样式，或保持与其他幻灯片一致 */
}

.cc-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
    z-index: 10;
}

.cc-carousel-prev, 
.cc-carousel-next {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.cc-carousel-prev:hover, 
.cc-carousel-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.cc-carousel-dots {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.cc-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.cc-carousel-dot.active {
    background: #e3ca7a;
}

.cc-official-title {
    text-align: center;
    background: linear-gradient(to right, #000, #222, #000);
    margin: 15px 0;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

.cc-official-title::before,
.cc-official-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #e3ca7a, transparent);
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.cc-official-title::before {
    bottom: 5px;
}

.cc-official-title::after {
    top: 5px;
}

.cc-official-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 5px rgba(255, 165, 0, 0.7);
    letter-spacing: 2px;
}

.cc-contact-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    border: 1px solid #333;
    /* border-radius: 4px; */
    background: #222;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.cc-contact-column {
    flex: 1;
    padding: 15px;
    position: relative;
}

.cc-contact-column:first-child {
    border-right: 1px solid #333;
}

.cc-contact-column h3 {
    font-size: 18px;
    text-align: center;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
    color: #e3ca7a;
    position: relative;
}

.cc-contact-column h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: #e3ca7a;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.cc-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc-contact-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center; /* 添加水平居中对齐 */
    border-bottom: 1px dotted #333;
    transition: background-color 0.2s ease;
}

.cc-contact-list li:last-child {
    border-bottom: none;
}

.cc-contact-list li:hover {
    background-color: rgba(255, 215, 0, 0.05);
    color: #e3ca7a;
}

.cc-contact-list li .icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    border-radius: 3px;
    flex-shrink: 0;
    vertical-align: middle; /* 确保垂直居中 */
}

.cc-contact-list li.hot .icon {
    background: url('00.png') no-repeat center; /* 更改图标为00.png */
    background-size: contain;
    color: transparent; /* 隐藏原有文字 */
}

.cc-contact-list li .contact-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle; /* 确保垂直居中 */
}

.cc-contact-list li .icon.qq {
    background: url('q1.png') no-repeat center;
    background-size: contain;
}

.cc-contact-list li .icon.wechat {
    background: url('v1.png') no-repeat center;
    background-size: contain;
}

.cc-contact-list li .icon.qq-group {
    background: url('q3.png') no-repeat center;
    background-size: contain;
}

.cc-slogan-banner {
    display: flex
    ;
        align-items: center;
        justify-content: center;
        background: #222;
        padding: 15px;
        border: 1px solid #333;
        margin: 15px 0;
        border-radius: 0;
        border-top: 0;
    /* box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); */
}

.cc-logo-small {
    width: 40px;
    height: 40px;
    background: url('logo-small.png') no-repeat center;
    background-size: contain;
    margin-right: 15px;
}

.cc-slogan {
    font-size: 16px;
    text-align: center;
}

/* 设置特殊样式 */
.cc-slogan em {
    font-style: normal;
    color: #e3ca7a;
    font-weight: bold;
}

.cc-year {
    color: #ff0000;
    font-weight: bold;
    font-size: 25px;
    vertical-align: middle;
    text-shadow: 0 0 5px #e3ca7a, 0 0 10px #e3ca7a, 0 0 15px #e3c874;
}

.cc-service-banner {
    text-align: center;
    padding: 15px;
    background: #222;
    border: 1px solid #333;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.cc-service-banner p {
    margin: 0;
    font-size: 16px;
    color: #e3ca7a;
    letter-spacing: 1px;
}

.cc-info-section {
    display: flex;
    margin: 20px 0;
}

.cc-company-info {
    flex: 1;
    padding: 15px;
    background: #222;
    border: 1px solid #333;
    margin-right: 10px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.cc-company-info h4 {
    text-align: center;
    font-size: 18px;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
    color: #e3ca7a;
    position: relative;
}

.cc-company-info h4::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #e3ca7a;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.cc-company-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cc-company-content img {
    width: 100%;
    /* height: 120px; */
    margin-bottom: 15px;
    margin-right: 0;
    border-radius: 4px;
    border: 1px solid #444;
}

.cc-company-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cc-news-section {
    flex: 1;
    padding: 15px;
    background: #222;
    border: 1px solid #333;
    margin-left: 10px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.cc-news-section h4 {
    text-align: center;
    font-size: 18px;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
    color: #e3ca7a;
    position: relative;
}

.cc-news-section h4::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #e3ca7a;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.cc-news-list {
    max-height: none; /* 移除最大高度限制 */
    overflow-y: visible; /* 移除滚动条 */
}

.cc-news-item {
    display: flex;
    align-items: center;
    justify-content: center; /* 添加水平居中对齐 */
    padding: 8px 0;
    border-bottom: 1px dotted #444;
    transition: background-color 0.2s ease;
}
.contact-item:hover{
    background-color: rgba(227, 202, 122, 0.05);
    color: #e3ca7a;
}

.cc-news-item:hover {
    background-color: rgba(227, 202, 122, 0.05);
    color: #e3ca7a;
}

.contact-item:hover span {
    color: #e3ca7a !important;
}
/* 替换为te.gif图标 */
.cc-news-dot {
    width: 24px;
    height: 24px;
    background: url('te.gif') no-repeat center;
    background-size: contain;
    margin-right: 10px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle; /* 确保垂直居中 */
}

.cc-news-content {
    font-size: 16px;
    font-weight: 500;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle; /* 确保垂直居中 */
}

/* 响应式设计 */
@media (max-width: 768px) {
    .cc-contact-container,
    .cc-info-section {
        flex-direction: column;
    }
    
    .cc-contact-column,
    .cc-company-info,
    .cc-news-section {
        margin: 10px 0;
    }
    
    .cc-carousel-slides {
        height: 200px;
    }
    
    .cc-contact-column:first-child {
        border-right: none;
        border-bottom: 1px solid #333;
    }
} 