/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafbfc;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 头部样式 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
}

.header-content {
    text-align: center;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    width: auto;
    display: inline-block;
}

.logo-main-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.logo-main-img1 {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* 列表样式 */
.list {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0;
}

.list-item {
    height: 157px;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    position: relative;
    border: 1px solid transparent;
    transition: border-color 0.2s;
}

.list-item:hover {
    border-color: #2176d7;
    z-index: 1;
    background: #f6faff;
}

.list-item:hover .item-logo{
    display: none;
}

.list-item:hover .item-logo1{
    display: flex;
}


.item-logo {
    width: 48px;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin:52px 29px 52px 20px;
}

.item-logo1 {
    width: 97px;
    color: #fff;
    background-image: url(../images/pic_1.png);
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    display: none;
}

.logo-main {
    line-height: 1.1;
    letter-spacing: 2px;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-left: 65px;
}

.item-desc {
    color: #222;
    font-size: 15px;
}

/* 主要内容区域 */
.main-content {
    flex: 1;
    margin-top: 33px;
}

.item-logo1-text1{
    width: 100px;
    font: 24px bold;
    color: #fff;
    padding: 20px 20px 20px 10px;
}

.item-logo1-text2{
    width: 100px;
    font: 30px bold;
    color: #D84861;
    padding: 0px 20px 20px 10px;
}

.list-item-a{
    text-decoration: none;
}


h1, h2 {
    margin-bottom: 1rem;
    color: #222;
}

/* 页脚样式 */
.footer {
    background-color: #f8f9fa;
    padding: 1rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
} 