*{
    box-sizing: border-box;
}
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #333;
}
ul, li {
    list-style: none;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;    
}

.text-center {
    text-align: center;
}

section {
    padding: 50px 0;
}

h1, h2, h3 {
    color: #1a2b4d;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    color: #555;
    line-height: 1.6;
}

/*
 * 头部区域 (Hero Section)
 */
.hero-section {
    height: 572px;
    padding: 135px 0 0;
    position: relative;
    overflow: hidden;
    z-index: 555;
}
.hero-section .title{
    color: #0065BD;
    font-size: 48px;
}
.hero-section .subtitle {
    font-size: 20px;
    color: #606266;
    margin: 20px 0 30px;
}
.hero-image .nav-list ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
}
.hero-image .nav-list ul li{
    margin-left: 36px;
    position: relative;
}
.hero-image .nav-list ul li:hover a{
    color: #0088FF;
}

.hero-image .nav-list ul li a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.hero-image .nav-list ul li .menu-list{
    position: absolute;
    top: 22px;
    left: 0;
    width: 110px;
    height: auto;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}
.hero-image .nav-list ul li .menu-list .link-nav{
    width: 80%;
    height: 30px;
    font-size: 10px;
    line-height: 30px;
    text-align: center;
    color: #606266;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid #C6C3C3;
    margin-left: 10%;
}
.hero-image .nav-list ul li .menu-list .link-nav:last-child{
    border: none;
}
.hero-image .nav-list ul li:hover .menu-list{
    display: block;
}
.menu-list:hover .link-nav{
    display: inline-block;
    width: 70px;
    height: 30px;
    font-size: 10px;
    line-height: 30px;
    text-align: center;
    color: #606266;
}
.hero-image .nav-list ul li .menu-list .link-nav:hover{
    color: #0088FF;
}

.hero-image .nav-list ul li img{
    width: 10px;
    height: 10px;
    margin-left: 8px;
}
.login-register{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.login-register a{
    width: 80px;
    height: 30px;
    border-radius: 10px;
}
.login-register a:first-child{
    background: transparent;
    color: #252525;
    font-size: 14px;
}
.login-register a:last-child{
    margin-left: 10px;
    background: #00A5A4;
    color: #ffffff;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
}

.hero-image {
    width: 100%;
    height: 58px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(247, 247, 247, 0.6);
    z-index: 99;
    padding: 0;
}
.hero-image img {
    width: 118px;
    height: 36px;
}
.btn-primary{
  background-color: #0065BD;
  color: white;
  height: 43px;
  width: 134px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 1440px) {
    .container {
        max-width: 1200px
    }
    .container2 {
        max-width: 1200px
    }
}

@media (min-width: 2000px) {
    .container {
        max-width: 1560px
    }
    .container2 {
        max-width: 1560px
    }
    .hero-image{
        height: 80px;
        padding-top: 15px;
    }
    .hero-image img{
        height: 50px;
        width: 164px;
    }
}