   /* 基础样式重置 */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

body {
    color: #444;
    line-height: 1.6;
    background: #f8f9fa;
}

a {
    text-decoration: none;
    color: #555;
    transition: all 0.3s;
    cursor: pointer;
}

a:hover {
    color: #ff6b6b;
}

ul, ol {
    list-style: none;
}

.clearfix {
    clear: both;
}

/* 头部样式 */
.media-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.header-top-bar {
    background: #343a40;
    color: #fff;
    padding: 8px 0;
    font-size: 12px;
}

.container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
   
    align-items: center;
}

.header-top-bar p {
    margin: 0;
}

.top-nav-links a {
    color: #adb5bd;
    margin: 0 8px;
    font-size: 12px;
}

.top-nav-links a:hover {
    color: #fff;
}

.header-content {
    padding: 25px 0;
    background: linear-gradient(to right, #5f27cd, #341f97);
    color: #fff;
}

.header-content .header-text {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.header-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.header-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* 主导航 */
.main-nav {
    background: #341f97;
}

.main-nav ul {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}

.main-nav li {
    flex: 1;
    text-align: center;
    position: relative;
}

.main-nav li span {
    display: block;
    padding: 16px 0;
}

.main-nav li a {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.main-nav li:hover {
    background: #ff6b6b;
}

/* 主要内容区 */
.content-section {
    padding: 40px 0;
    background: #fff;
}

.content-box {
    display: flex;
    margin-bottom: 30px;
}

.company-info {
    flex: 1;
    padding: 25px;
}

.company-info h2 {
    font-size: 28px;
    color: #341f97;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ff6b6b;
}

.company-info p {
    margin-bottom: 18px;
    text-align: justify;
    line-height: 1.8;
    color: #555;
}

.view-detail {
    display: inline-block;
    padding: 10px 25px;
    background: #ff6b6b;
    color: #fff;
    border-radius: 4px;
    margin-top: 15px;
    font-weight: bold;
}

.view-detail:hover {
    background: #ff5252;
    color: #fff;
}

/* 页脚样式 */
.footer-section {
    background: #343a40;
    color: #fff;
    padding: 40px 0 25px;
}

.footer-contact {
    float: right;
    width: 400px;
}

.footer-contact h2 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #fff;
}

.footer-contact ul {
    margin-bottom: 25px;
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
}

.contact-label {
    display: inline-block;
    width: 80px;
    color: #adb5bd;
}

.footer-links {
    float: left;
    width: 700px;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-links li {
    width: 33.33%;
    margin-bottom: 18px;
}

.footer-links a {
    color: #adb5bd;
    font-size: 15px;
}

.footer-links a:hover {
    color: #fff;
}

.copyright-info {
    clear: both;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #495057;
    color: #adb5bd;
    font-size: 13px;
    line-height: 1.8;
}

.copyright-info a {
    color: #adb5bd;
}

.copyright-info a:hover {
    color: #fff;
}
.server-sec{
       padding: 30px;
}
.srver-title{
    font-size: 26px;
    margin-bottom: 20px;
}
.server-sec .list{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.server-sec .list .item{
    padding: 20px ;
    width: 33%;
    display: block;
}
/* 响应式设计 */
@media (max-width: 768px) {
    .header-top-bar .container,
    .header-content .header-text,
    .container,
    .main-nav ul {
        width: 100%;
        padding: 0 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
    }
    
    .main-nav li {
        flex: 0 0 50%;
    }
    
    .content-box {
        flex-direction: column;
    }
    
    .footer-contact,
    .footer-links {
        float: none;
        width: 100%;
    }
    
    .footer-links li {
        width: 50%;
    }

  
}