/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    color: white;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../pic/background.png'); /* 替换为实际图片地址 */
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.logo {
    position: absolute;
    top: 20px; /* 根据需要调整距离顶部的距离 */
    left: 20px; /* 根据需要调整距离左侧的距离 */
    margin-bottom: 20px; /* 可以去掉或保留 */
}

.logo img {
    width: 150px;
}

.experience {
    font-size: 2em;
    margin-bottom: 10px;
    padding-left: 80px;
}

.details {
    margin-bottom: 20px;
    line-height: 1.5em;
    padding-left: 80px;
}

.oem-odm {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    padding-left: 80px;
}

.view-more {
    font-size: 2em;
    color: yellow;
    padding-left: 80px;
    text-decoration: 1;
}

.contact {
    margin-top: 20px;
    font-size: 1em;
    padding-left: 80px;
}

.footer {
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-size: 1em;
    color: white;
}

.bottom-bar {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 0.9em;
}

.bottom-bar a {
    color: #00f;
    text-decoration: none;
}