@charset "utf-8";
/* CSS Document */

/*

.DivLeftRightAutoMidFix {
	min-width: 600px;		中间固定宽度
	width: auto;
	position: relative;
}

.DivMid {
	width: 600px;			中间固定宽度
	height: 100%;
	padding: 0px;
	margin: auto;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	position: absolute;
}

<div class="DivLeftRightAutoMidFix" style="height: 100px; background: blue;">
  <div class="DivMid" style="background: red;">中间内容</div>
</div>

*/

.DivLeftRightAutoMidFix {
    min-width: 1590px;    /*中间固定宽度*/
    
    width: auto;
    min-height: 1px;
    position: relative;
}
.DivMid {
    width: 1490px;     /*中间固定宽度，比外框小，以便左右留白*/

    height: 100%;
    padding: 0px;
    margin: auto;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    position: absolute;
}
.DivMid02 {
    width: 1490px;       /*中间固定宽度，比外框小，以便左右留白*/
    
    height: 100%;
    padding: 0px;
    margin: 0px auto;
    position: relative;
    min-height: 1px;
}

.DivMid03 {
    width: 1490px;       /*中间固定宽度，比外框小，以便左右留白*/
    
    padding: 0px;
    margin: 0px auto;
    position: relative;
    min-height: 1px;
}



.MenuDiv01 {
    min-width: 1590px;    /*中间固定宽度*/
    width: 100%;

    height: 277px;
    background-image: url(../image2022/topshadow.png);
    background-repeat: no-repeat;
    background-size: 100% 277px;
    
    position: fixed;
    top: 0px;
    left: 0px;
    
    z-index: 5;
}

.MenuDiv02 {
    width: 95%;
    height: 100%;
    padding: 0px;
    margin: auto;
    position: relative;
}

