 /* 基本样式 */
        body {
            font-family: Lato, sans-serif;
            /*font-family: Arial, sans-serif;*/
            margin: 0;
            padding: 0;
            background-color: #f4f6fb;
        }

        /* 导航菜单样式 */
        .nav-menu {
            justify-content: center;
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 10px;
			padding-top: 10px;
        }
		.nav-menu span{
			display: block;
			width: 200px;
		}
		.nav-menu span img{
			width: 100px;
		}
		.nav_list{
			padding-top: 10px;
			background: rgba(0, 0, 0, 0.32) !important;
			height: 80px;
		}
        .nav-menu .title{
            color: red;
        }

        .nav-menu li {
            margin: 0;
			padding:10px;
			justify-content: center;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .header {
            background: #000;
            color: white;
            text-align: center;
           
            background-image: url("../image/1.jpg");
            background-size: cover;
            /*图片拉伸了导致图片显示不全*/
            background-position: center;
			height: 440px;
        }
		.banner{
			margin-top: 80px;
			color:#fff;
			
		}
        .header .contact-now{
            background:#1296db;
            border: 0;
            border-radius: 4px;
            padding: 5px;
            height: 40px;
            width: 160px;
            color: white;
            margin-bottom: 20px;
        }
        .container{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            gap: 40px;
            /*padding: 0 240px;*/
        }
        .container .image {
            flex: 1;
            /*min-width: 300px;*/
            position: relative;
        }
        .container .image .img{
            width: 100%;
            height: auto;
            max-width: 360px;
            border-radius: 10px;
            position: relative;
            z-index: 1;
        }
        .container .image .overlay-img{
            position: absolute;
            top: -20px;
            right: -20px;
            width: 30%;
            height: auto;
            border-radius: 0px;
            border: 4px solid white;
            z-index: 2;
            transform: rotate(0deg);
            transition: transform 0.3s ease;
        }
        .container .image .overlay-img:hover{
            transform: rotate(0deg) scale(1.05);
        }
        .container .text {
            flex: 1;
            min-width: 300px;
            text-align: left;
            padding: 20px;
        }
        .container .text button {
            background: white;
            color: #1296db;
            border: 1px solid #1296db;
            padding: 12px 25px;
            border-radius: 5px;
            margin-right: 15px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s ease;
        }
        .container .text button.active {
            background: #1296db;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            margin-right: 15px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s ease;
        }

        .container .text h2 {
            color: #333;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .container .text p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #666;
            margin-bottom: 25px;
        }
        .container .text button:hover {
            color: #FFF;
            background: #1296db;
        }
        .section {
            margin-top: 20px;
            padding: 10px 20% 0 20%;
            text-align: center;
        }
        .section h2 {
            margin-bottom: 20px;
        }
        .white-bg{
            background-color: white;
        }
        .features {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }
        .features .feature {
            width: 30%;
            margin: 10px;
            padding: 20px;
            box-sizing: border-box;
        }
        .audience{
            display: flex;
        }
        .audience .feature{
            width: 30%;
            margin: 10px;
            /*padding: 20px;*/
            box-sizing: border-box;
            height: 100%;
        }
        .audience .feature img{
            width: 100%;
            height: 100%;
        }
        .audience .feature .name{
            font-size: 0.8rem;
            font-weight: 500;
            /*color: #333;*/
            margin-top: 10px;
        }

        .Ideal{
            display: flex;
            padding-bottom: 40px;
        }

        .Ideal .feature{
            /* 上下布局 */
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 30%;
            margin: 10px;
            /*padding: 20px;*/
            box-sizing: border-box;
        }
        .Ideal .feature img{
            width: 40px;
            height: 40px;
        }
        .Ideal .feature .name{
            font-size: 0.9rem;
            font-weight: 500;
            /*color: #333;*/
            margin-top: 10px;
        }

        .images-list{
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .images-list .image-item{
            width: 50%;
        }
        .images-list .image-item img{
            width: 100%;
            height: 100%;
        }
        .quote-bg{
            position: relative;
            background-image: url("../image/quote-bg.png");
            background-size: cover;
            background-position: center;
            height: 250px;
        }
        .quote-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("../image/quote-bg.png");
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 1;
        }
        .text-align-left{
            text-align: left;
        }
        .form-item{
            position: relative;
            z-index: 3;
        }img
        
        .form-item input{
            width: 21%;
            padding: 15px 20px;
            border-radius: 10px;
            border:0px solid black;
        }
        
        .form-item button{
            width: 20%;
            padding: 15px 20px;
            border-radius: 8px;
            border: 0;
            background:#1296db;
            color: white;
            /*font-size: 1rem;*/
        }
        .footer {
            background-image: url(/template/default/image/foot.png);
            background-size: cover;
            color: white;
            text-align: center;
            padding: 20px;
        }
        .footer .subtitle{
            font-size: 12px;
        }
        h6{
            color: #787878;
        }