/* 全局重置与基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
        }
::-webkit-scrollbar-track{background-color:#1f1e33;border-radius: 5px}
::-webkit-scrollbar{width:5px;}
::-webkit-scrollbar-thumb{background:#be4b32;border-radius: 5px;}
        body {
            background: url("../images/bg01.jpg") center top no-repeat;
    background-size: 100% auto;
    background-color: #000;
        }

        .container {
            width: 1200px;
            margin: 0 auto;
        }

        .banner {
            width: 100%;
            height: 1080px;
            position: relative;
            margin-bottom: 40px;
        }

        .banner-top-btns {
            position: absolute;
            top: 30px;
            right: 20px;
            display: flex;
            gap: 15px;
        }

        .section {
            width: 100%;
            margin-bottom: 50px;
            text-align: center;
        }

        .section-title {
			width:100%;
			text-align:center;
			height:146px;
            margin-bottom: 35px;
        }
		.title01 {background: url("../images/01.png") center top no-repeat;width:100%;height:143px;background-size: 80% auto;}
		.title02 {background: url("../images/02.png") center top no-repeat;width:100%;height:143px;background-size: 80% auto;}
		.title03 {background: url("../images/03.png") center top no-repeat;width:100%;height:146px;background-size: 80% auto;}
		.title04 {background: url("../images/04.png") center top no-repeat;width:100%;height:143px;background-size: 80% auto;}
		.title05 {background: url("../images/05.png") center top no-repeat;width:100%;height:143px;background-size: 80% auto;}
		.title06 {background: url("../images/06.png") center top no-repeat;width:100%;height:143px;background-size: 80% auto;}
		.title07 {background: url("../images/07.png") center top no-repeat;width:100%;height:146px;background-size: 80% auto;}
		.title08 {background: url("../images/08.png") center top no-repeat;width:100%;height:146px;background-size: 80% auto;}
		.title09 {background: url("../images/09.png") center top no-repeat;width:100%;height:143px;background-size: 80% auto;}
		.title10 {background: url("../images/10.png") center top no-repeat;width:100%;height:143px;background-size: 80% auto;}
		.title11 {background: url("../images/11.png") center top no-repeat;width:100%;height:142px;background-size: 80% auto;}
		.title12 {background: url("../images/12.png") center top no-repeat;width:100%;height:143px;background-size: 80% auto;}

        .section-info {
            font-size: 16px;
            color: #9892a9;
            text-align: left;
            margin-bottom: 15px;
            line-height: 1.8;
            padding: 0 10px;
        }
		.section-info span {
            color: #f1d29e;
            font-weight: bold;
        }
		.section-info-l {text-align:left;font-size:16px;color:#f1d29e;
            position: relative;top:39px;}
			
        .table-wrap {
            width: 100%;
            position: relative;
			margin:0 auto;
        }
        
        .table-corner-top {
            position: relative;
            z-index: 5;
            background: url("../images/tb-center.png") center top no-repeat;
            top: 2px; 
            left: 50%;
            transform: translateX(-50%);
            width: 45px;
            height: 13px;
        }
        .table-wrap::before {
            content: "";
            position: absolute;
            left: 0; top: 0; right: 0; bottom: 0;
            pointer-events: none;
        }
        .div-table {
            width: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
			border: 1px solid #a18452;border-bottom: 6px solid #a18452;;border-top: 2px solid #a18452;
			
            border-radius: 10px 10px 0px 0px;
        }
        .div-tr {
            display: flex;
            width: 100%;
        }
		
        .div-td, .div-th {
            flex: 1;
			line-height:2.2;
			font-size:16px;
            text-align: center;
            color: #9892a9;
            display: flex;
            align-items: center;
            justify-content: center;
            word-break: break-all;
            background:#292843;border: 1px solid #0e0d13;
			
        }
        .div-th {
            background:#292843;
            color: #a18452;
            font-weight: bold;
            border-radius: 10px 10px 0px 0px;
        }
		
		
		

		
        .btn-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .btn {
			width:174px;
			height:39px;
			line-height:39px;
            background: url("../images/btn-bg.png") center top no-repeat;
            color: #000;
            font-weight: bold;
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

		
        .section-content {
            font-size: 12px;
            color: #ccc;
            text-align: left;
            line-height: 1.6;
            padding: 0 10px;
        }

        /* H5/移动端适配 */
        @media screen and (max-width: 1200px) {
            .container { width: 100%; padding: 0 15px; }
            .banner { height: auto; padding-bottom:40%; background-size: cover; }
            .section-title { font-size: 22px; }
            .section-subtitle { font-size: 12px; }
            .table-wrap{ width: 100%; }
        }

        @media screen and (max-width: 480px) {
            .banner-top-btns { right: 10px; gap: 8px; }
            .section-title { font-size: 18px; }
            .div-td, .div-th { padding: 5px 3px; font-size: 11px; }
        }