/* 未能缩小。正在返回未缩小的内容。 (5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (15,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (17,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (19,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (21,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (23,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (25,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (59,17): run-time error CSS1039: Token not allowed after unary operator: '-web-fontcolor' (64,21): run-time error CSS1039: Token not allowed after unary operator: '-web-bule' (68,21): run-time error CSS1039: Token not allowed after unary operator: '-web-mainwidth' (69,21): run-time error CSS1039: Token not allowed after unary operator: '-web-fontsize' (70,23): run-time error CSS1039: Token not allowed after unary operator: '-web-fontfamily' (82,23): run-time error CSS1039: Token not allowed after unary operator: '-web-divmargin' (83,17): run-time error CSS1039: Token not allowed after unary operator: '-web-mainwidth' (88,29): run-time error CSS1039: Token not allowed after unary operator: '-web-divmargin' (101,39): run-time error CSS1046: Expect comma, found '255' (101,47): run-time error CSS1046: Expect comma, found '/' (113,32): run-time error CSS1039: Token not allowed after unary operator: '-web-bule' (115,25): run-time error CSS1039: Token not allowed after unary operator: '-web-fontsize-s' (119,25): run-time error CSS1039: Token not allowed after unary operator: '-web-mainwidth' (132,44): run-time error CSS1034: Expected closing parenthesis, found ',' (132,44): run-time error CSS1042: Expected function, found ',' (132,49): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')' (140,32): run-time error CSS1039: Token not allowed after unary operator: '-web-bule' (144,25): run-time error CSS1039: Token not allowed after unary operator: '-web-mainwidth' (154,33): run-time error CSS1039: Token not allowed after unary operator: '-web-fontsize-xx' (184,22): run-time error CSS1039: Token not allowed after unary operator: '-web-bule' (186,21): run-time error CSS1039: Token not allowed after unary operator: '-web-fontsize-s' (191,21): run-time error CSS1039: Token not allowed after unary operator: '-web-mainwidth' */ @CHARSET "UTF-8"; :root { /*首页版心宽度*/ --web-mainwidth: 1370px; /*其他页版心宽度*/ --web-main-width: 1200px; /*布局行距*/ --web-divmargin: 50px; /*字体*/ --web-fontfamily: Microsoft YaHei, 微软雅黑, Arial, Tahoma, Verdana, STHeiTi, sans-serif, Helvetica, SimSun; /*字体颜色*/ --web-fontcolor: #333; /*基准字体大小(新闻标题)*/ --web-fontsize: 18px; /*比基准小*/ --web-fontsize-s: 16px; /*比基准大(栏目标题)*/ --web-fontsize-x: 20px; /*比基准加大(导航)*/ --web-fontsize-xx: 24px; /*主体蓝色*/ --web-bule: #0152a9; /*灰色背景*/ --web-grey: #f2f6fb; } body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td { margin: 0px; padding: 0px; } em, i { font-style: normal; } ul, li { list-style: none; } input, select, img, button { vertical-align: middle; } img { border: 0; } textarea { resize: none; } textarea:focus, input:focus { outline: none; } a { color: var(--web-fontcolor); text-decoration: none; } a:hover { color: var(--web-bule); } body { min-width: var(--web-mainwidth); font-size: var(--web-fontsize); font-family: var(--web-fontfamily); } body > div { margin: auto; } .hidden { display: none; } .main { padding-top: var(--web-divmargin); width: var(--web-mainwidth); background-color: white; } .main > div { margin-bottom: var(--web-divmargin); } a.adTop { display: flex; justify-content: center; align-items: center; height: 150px; font-size: 70px; font-weight: bold; background: linear-gradient(180deg, #ffffff, #fff000); -webkit-background-clip: text; color: transparent; text-shadow: 1px 1px 20px rgb(255 255 255 / 20%); } .top { height: 500px; background-repeat: no-repeat; background-position: center; width: 100%; } .top .titBox { line-height: 50px; background-color: var(--web-bule); color: white; font-size: var(--web-fontsize-s); } .top .titBox .content { width: var(--web-mainwidth); margin: auto; display: flex; justify-content: space-between; box-sizing: border-box; padding: 0 30px; } .top .titBox .content .right { } .top .logo { height: 360px; background-color: rgb(255, 255, 255, 0.8); background-repeat: no-repeat; background-position: center; } .top .navBox { height: 90px; line-height: 88px; background-color: var(--web-bule); } .top .navBox .nav { width: var(--web-mainwidth); margin: auto; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-around; align-items: center; } .top .navBox .nav a { font-size: var(--web-fontsize-xx); color: white; letter-spacing: 1px; position: relative; font-weight: lighter; } .top .navBox .nav a:hover { } .top .navBox .nav a:hover:after { content: ''; position: absolute; left: 60%; bottom: -15px; width: 40%; height: 5px; margin-left: -30%; background: #fff; border-radius: 2px; } .top .navBox .nav a.cur { } .top .navBox .nav a.cur:after { } #footer { background: var(--web-bule); color: white; font-size: var(--web-fontsize-s); font-weight: lighter; } #footer .p1 { width: var(--web-mainwidth); margin: auto; display: flex; justify-content: center; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.2); } #footer .p1 span { padding: 0 15px; } #footer .p2 { display: flex; justify-content: center; align-items: center; height: 80px; } #footer .p2 span { padding: 0 5px; } #backTop { width: 36px; height: 36px; border-radius: 100%; display: inline-block; position: fixed; bottom: 20px; right: 20px; background: url(../2025/Images/gotop.png) no-repeat 0 0; } #backTop:hover { background-position: -37px 0; }