body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.iconfont{
    font-size: 24px;
    color: #fff;
}
header {
    /*background-color: #333;*/
    background-color: #00A0E9;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
header .header-center{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .header-left{display: flex;align-items: center}
header .header-left nav{margin-left: 30px;}
header .logo img {
    height: 30px;
}

header .nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header .nav-links li {
    /*position: relative;*/
}

header .nav-links li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
}
header .nav-links li a.main-a{
    height: 100%;
}

header .dropdown-content {
    display: none;
    position: absolute;
    /*background-color: #333;*/
    background-color: #fff;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 15;
    left: 0;
    top: 60px;
    min-height: 188px;
}

header .container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0 0 0;
}
header .container ul.header-pro-list{
    display: flex;
    gap:1%;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
header .container ul.header-pro-list li{
    width: 16%;
}
header .container ul.header-pro-list li a{
    display: block;
}
header .container ul.header-pro-list li a img{
    width: 100%;
    display: block;
}
header .container ul.header-pro-list li a p{
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    height: 26px;
    line-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}
header .container ul.header-pro-list li.more-link{
    display: flex;
    justify-content: center;
    align-items: center;
}
header .container ul.header-pro-list li.more-link a{
    padding: 8px 15px;
    background: #00a0e8;
    border-radius: 100px;
    color: #fff;margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-indent: 6px;
    margin-top: -30px;
}
header .container ul.header-pro-list li.more-link a i{
    color: #fff;
    font-size: 14px;
    position: relative;
    top: 1px;
}

header .container .header-pro-null{
    margin-top: 40px;
    text-align: center;
    color: #999;
    width: 100%;
    font-size: 14px;
}

header .column {
    flex: 1 0 calc(25% - 20px);
    margin: 10px;
    color: white;
}

header .column h3 {
    margin: 0;
    margin-bottom: 5px;
}

header .thumbnail {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

header .product-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

header .product-list li {
    margin-bottom: 5px;
}

header .dropdown:hover .dropdown-content {
    display: block;
}

header .header-right {
    display: flex;
    align-items: center;
}

header .shopping-cart {
    /*background-color: #007bff;*/
    background-color: #fff;
    color: #007bff;
    /*color: white;*/
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
header .shopping-cart i{color: #007bff;}
header .language-switcher {
    position: relative;
    cursor: pointer;
}
header .language-switcher-icon{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 8px;
}
header .language-switcher-icon span{
    font-size: 14px;
    display: inline-block;
    width: 70px;
}
header .language-switcher img {
    height: 20px;
    cursor: pointer;
}

header .language-options {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 100px;
    /*box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);*/
    z-index: 10;
    list-style-type: none;
    padding: 0;
    margin: 0;
    top: 22px;
    left: 6px;
    cursor: pointer;
}
header .language-options span{display: block;width: 100%;height: 22px;background-color: #00A0E9;}

header .language-options li {
    border-bottom: 1px solid #e0e0e0;
}

header .language-options li:last-child {
    border-bottom: none;
}

header .language-options li a {
    color: #555;
    padding: 10px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    text-align: center;
}
header .language-options li a:hover,header .language-options li a:active{
    color: #333;
}

header .language-switcher:hover .language-options {
    display: block;
}