body {
    margin: 0;
    font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: -webkit-linear-gradient(to bottom, #eef7ff, #ffffff);
    background: linear-gradient(to bottom, #eef7ff, #ffffff);
    color: #333;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.header-bar {
    background: white;
    box-shadow: 0px 1px 10px 5px rgba(0,0,0,0.14);
}

.header-bar-inner{
    background: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo img:first-child {
    margin-right: 15px;
}

.main{
    min-width: 1200px;
    background: url(../images/m_bg.png) no-repeat ;
    background-size: 100% 140%;
}

.hero-section {
    padding: 40px 0 50px 0 ;
    background-color: rgba(72,162,243,0.2);
}
.h100{
    height: 100%;
}
.hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.hero-left{
    width: 822px;
    height: 462px;
    overflow: hidden;
}
.hero-left a{
    display: block;
    height: 100%;
    width: 100%;
}
.hero-left img {
    display: block;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.hero-right {
    background-color: rgba(255, 255, 255, 1);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 20px 0;
    width: 380px;
    height: 462px;
    box-sizing: border-box;
}

.hero-right h3 {
    margin: 0 0 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    color: #000;
    padding: 0 20px 10px 20px;
}

.hero-right h3::before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url(../images/icon1.png) no-repeat center center;
    background-size: 100% 100%;
    vertical-align: top;
    margin: 1px   10px 0 0;
}

.hero-right ul {
    padding: 0 20px ;
    list-style: none;
    margin: 0;
    color: #666;
}

.hero-right li {
    margin-bottom: 15px;
}
.hero-right li:last-child {
    margin-bottom: 0;
}

.hero-right li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #666;
}

.hero-right li img {
    width: 157px;
    height: 102px;
    object-fit: cover;
    margin-right: 15px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.cards-section {
    padding: 50px 0 40px 0;
    /* background: white; */
}

.cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.card-container {
    position: relative;
    padding-top: 35px;
    text-decoration: none;
}

.card {
    width: 280px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    background-color: #007bff;
}

.card-icon {
    position: absolute;
    top: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #2697fd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
}

.card-icon img {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.card img {
    display: block;
    width: 100%;
}

.card p {
    margin: 0;
    padding: 15px;
    background-color: #007bff;
    color: white;
    font-size: 18px;
    /* height: 102px;
    box-sizing: border-box; */
}

footer {
    color: white;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    min-width: 1200px;
}
footer .f-inner{
    padding: 20px 0;
    background-color: #0d6efd;
}

footer .container {

}

footer p {
    margin: 5px 0;
} 