/* Reset CSS */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo img{
    width: 50px;
    height: 50px;
    border-radius: 8px;
}
.header{
    display:flex;
    justify-content:space-between;
    align-items: center;
}
.menu {
    list-style: none;
}

.menu li {
    display: inline-block;
    margin-left: 20px;
}

.menu li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.menu li a:hover {
    color: #333;
}

/* Hero Section */
.hero {
    background-image: url(/assets/img/mixiu/hero.jpg);
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #666;
}

/* Products and Services Section */
.products-services {
    background-color: #f7f7f7;
    padding: 60px 0;
    text-align: center;
}

.products-services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.downloadgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}


.item , .ditem {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-bottom: 20px;
}

.ditem img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}

.item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.item p {
    font-size: 16px;
    color: #777;
}

/* Solutions Section */
.solutions {
    background-color: #eee;
    padding: 60px 0;
    text-align: center;
}

.solutions h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.solutions .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* About Us Section */
.about-us {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.about-us h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.about-us p {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.white{ color:#ffffff}
/*文本对齐方式*/
.tl{ text-align:left;}
.tc{ text-align:center}
.tr{ text-align:right;}
img { border:0}
:focus { outline:0; }
a{ text-decoration:none; color:#909090}
ul, ol, li {list-style:none;}
a{blr:expression(this.onFocus=this.blur());word-wrap: break-word; word-break: normal; }
a:hover{ text-decoration:none; color:#06c}