@charset "utf-8";

img{ border:0px;}
body {
	font-size:12px; overflow-x:hidden;
	margin:0;
	padding:0;
	line-height:22px;
	color:#fff;
	background-color:#47A0FB;font-family:"微软雅黑";
}

.main{width:100px; margin:0 auto; position:relative;}
ul,li {margin:0;padding:0;list-style:none;}
A:link {TEXT-DECORATION: none;color:#fff;}
A:visited {TEXT-DECORATION: none;color:#fff;}
A:hover {TEXT-DECORATION: none;color:#ffff00;}
A.b:link {COLOR: #FFD334; TEXT-DECORATION: underline}
A.b:visited {COLOR: #FFD334; TEXT-DECORATION: underline}
A.b:hover {COLOR: #ffff00; TEXT-DECORATION: none}
input{background:transparent;border:0px;margin:0px; color:#939598;list-style:none; font-family:"微软雅黑"; font-size:14px;}
.white {color:#ffffff;}
.red {color:#0682f2; font-size:25px;line-height:50px;}
.red2{color:#d30101;}
.green {color:green;}
.black{ color:#000;}
.blue{color:#549FD6;}
.yellow{color:#ffff00;}
.blue3{color:#255E98;}
.gray{color:#6A3906;}
.org{color:#ff5a00;}
.bg_h{background-color:#f0f0f0;}
.f_13{font-size:13px;}
.f_14{font-size:14px;}
.clr2{clear:both; height:1px; overflow:hidden;}
.m_t36{margin-top:36px;}
.m_t20{margin-top:20px;}
.m_t10{margin-top:10px;}
.t_c{text-align:center;}
.f_12{font-size:12px; font-family:"宋体";}
.f_16{font-size:16px;font-weight:bold;}
.f_17{font-size:17px;}
.f_26{font-size:26px; font-family:"微软雅黑"; line-height:50px;}
.f_30{font-size:28px; color:#603813; line-height:50px; font-weight:bold;}
.f_22{font-size:22px; font-family:"微软雅黑";}
.h340{height:340px;}
td{font-size:18px;text-align:center; background-color:#fff;}

.bt { font-weight:bold;color: #4d83f3;	font-size: 30px;}
.bt2{color: #4d83f3;	font-size: 21px;}
.f-r{float:right;}
.f-l{float:left;}
.f1{background-color:#f3f3fd; color:#333; padding:3px 5px;}

#dbg1{background:url(../images/index_01.png) center top;height:323px;}
#dbg2{background:url(../images/index_02.png) center top;height:480px;}
#dbg3{background:url(../images/index_03.png) center top;height:532px;}
#dbg4{background:url("../images/index_04.png") center top;height:613px;}
#dbg5{background:url("../images/index_05.png") center top;height:580px;}

.pf{background:url("../images/pf.png") center top no-repeat; height:160px; width: 100%; position: fixed; left: 0px; bottom: 0px;}
.btn{
	width:323px;
	height: 80px;
	background: url("../images/btn.png")
}
.a1{
	position: absolute;
	left: 153px;
	top: 36px;
}
.a2{
	position: absolute;
	left: 210px;
	top: 37px;
}
.btn2{
	position: absolute;
	left: -342px;
	top: 452px;
	width: 239px;
	height: 66px;
	background: url("../images/btn2.png")
}
.pic2{
    position: absolute;
    left: -376px;
top: -35px;
    width: 854px;
    height: 496px;
}
.dh{
  -webkit-animation: dh 0.3s linear infinite alternate;
  animation-name: dh 0.3s linear infinite alternate;
}
@-webkit-keyframes dh{
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes dh{
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.txt1 {
	color: #fff;
	font-size: 18px;
	position: absolute;
	top: 426px; text-align: center;
	left: -100px; /* 确保文字可见，可按需调整 */
	width: 300px; /* 限制文字宽度，避免自动换行 */
	height: 40px; /* 高度=1行文字高度，视口内仅显示1行 */
	line-height: 40px; /* 行高=容器高度，文字垂直居中 */
	overflow: hidden; /* 隐藏视口外内容，形成滚动窗口 */
}

/* 内部文字容器：承载10行内容，实现从下往上滚动 */
.txt1 .text-inner {
    position: absolute;
    top: 0; /* 初始位置：从视口底部开始（适配“从下往上”方向） */
    left: 0;
    width: 100%;
    /* 总时长=10行×（1秒滚动+5秒停顿）=60秒，匀速循环 */
    animation: LineScroll 60s linear infinite;
}

/* 10行内容的滚动关键帧：每行对应“5秒停顿+1秒滚动”，最后1行停顿后复位 */
@keyframes LineScroll {
    /* 第1行：0-5秒停顿（0%-8.33%：60秒×8.33%≈5秒） */
    0%, 8.33% { top: 0; }
    /* 第1→2行：5-6秒滚动（8.33%-10%：60秒×1.67%≈1秒） */
    10% { top: -40px; }

    /* 第2行：6-11秒停顿（10%-18.33%≈5秒） */
    18.33% { top: -40px; }
    /* 第2→3行：11-12秒滚动（18.33%-20%≈1秒） */
    20% { top: -80px; }

    /* 第3行：12-17秒停顿（20%-28.33%≈5秒） */
    28.33% { top: -80px; }
    /* 第3→4行：17-18秒滚动（28.33%-30%≈1秒） */
    30% { top: -120px; }

    /* 第4行：18-23秒停顿（30%-38.33%≈5秒） */
    38.33% { top: -120px; }
    /* 第4→5行：23-24秒滚动（38.33%-40%≈1秒） */
    40% { top: -160px; }

    /* 第5行：24-29秒停顿（40%-48.33%≈5秒） */
    48.33% { top: -160px; }
    /* 第5→6行：29-30秒滚动（48.33%-50%≈1秒） */
    50% { top: -200px; }

    /* 第6行：30-35秒停顿（50%-58.33%≈5秒） */
    58.33% { top: -200px; }
    /* 第6→7行：35-36秒滚动（58.33%-60%≈1秒） */
    60% { top: -240px; }

    /* 第7行：36-41秒停顿（60%-68.33%≈5秒） */
    68.33% { top: -240px; }
    /* 第7→8行：41-42秒滚动（68.33%-70%≈1秒） */
    70% { top: -280px; }

    /* 第8行：42-47秒停顿（70%-78.33%≈5秒） */
    78.33% { top: -280px; }
    /* 第8→9行：47-48秒滚动（78.33%-80%≈1秒） */
    80% { top: -320px; }

    /* 第9行：48-53秒停顿（80%-88.33%≈5秒） */
    88.33% { top: -320px; }
    /* 第9→10行：53-54秒滚动（88.33%-90%≈1秒） */
    90% { top: -360px; }

    /* 第10行：54-59秒停顿（90%-98.33%≈5秒） */
    98.33%,100% { top: -360px; }

}


.footer{text-align:center; font-family:"宋体"; font-size:12px; padding: 20px 0 200px;}
