@ -0,0 +1,32 @@
|
|||||||
|
# 页面标题
|
||||||
|
VUE_APP_TITLE = 辽宁药品
|
||||||
|
|
||||||
|
# 开发环境配置
|
||||||
|
ENV = 'development'
|
||||||
|
|
||||||
|
# 若依管理系统/开发环境
|
||||||
|
VUE_APP_BASE_API = https://dev-mssm-liaoning.imian.org.cn/ggfw-api
|
||||||
|
# VUE_APP_BASE_API = http://192.168.0.114:9023/ggfw-api
|
||||||
|
# VUE_APP_BASE_API = http://39.101.188.84:9023/ggfw-api
|
||||||
|
|
||||||
|
#单点登录
|
||||||
|
# 本地
|
||||||
|
# VUE_APP_DAN_Dian = http://39.101.188.84:9023/ggfw-api/pharmaceuticals/singleSignOn/getSessionId
|
||||||
|
#对外
|
||||||
|
VUE_APP_DAN_Dian = https://dev-mssm-liaoning.imian.org.cn/ggfw-api/pharmaceuticals/singleSignOn/getSessionId
|
||||||
|
|
||||||
|
VUE_APP_URL = /ggfw-api
|
||||||
|
|
||||||
|
#后台路径
|
||||||
|
# 本地
|
||||||
|
VUE_APP_HOUTAI = /demo/yaopin
|
||||||
|
#对外
|
||||||
|
# VUE_APP_HOUTAI = /ggfw
|
||||||
|
|
||||||
|
|
||||||
|
# 路由懒加载
|
||||||
|
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
||||||
|
|
||||||
|
# 问卷地址 http://localhost/static/diaowen/design.html
|
||||||
|
VUE_APP_PREFIX=''
|
||||||
|
|
@ -0,0 +1,22 @@
|
|||||||
|
# 页面标题
|
||||||
|
VUE_APP_TITLE = 辽宁药品
|
||||||
|
|
||||||
|
# 生产环境配置
|
||||||
|
ENV = 'production'
|
||||||
|
# !若依管理系统/开发环境
|
||||||
|
# VUE_APP_BASE_API = http://39.101.188.84:9023/ggfw-api
|
||||||
|
# VUE_APP_BASE_API = /ggfw-api
|
||||||
|
# !单点登录
|
||||||
|
# 本地
|
||||||
|
# VUE_APP_DAN_Dian = http://39.101.188.84:9023/ggfw-api/pharmaceuticals/singleSignOn/getSessionId
|
||||||
|
|
||||||
|
# VUE_APP_DAN_Dian = /pharmaceuticals/singleSignOn/getSessionId
|
||||||
|
|
||||||
|
VUE_APP_URL = /ggfw-api
|
||||||
|
# !后台路径
|
||||||
|
# 本地
|
||||||
|
#对外
|
||||||
|
VUE_APP_HOUTAI = /ggfw
|
||||||
|
# VUE_APP_BASE_API = 'http://192.168.0.121:9023'
|
||||||
|
VUE_APP_PREFIX='/ggfw'
|
||||||
|
# VUE_APP_PREFIX='/demo/yaopin'
|
@ -0,0 +1,10 @@
|
|||||||
|
# 页面标题
|
||||||
|
VUE_APP_TITLE = 辽宁药品
|
||||||
|
|
||||||
|
NODE_ENV = production
|
||||||
|
|
||||||
|
# 测试环境配置
|
||||||
|
ENV = 'staging'
|
||||||
|
|
||||||
|
# 若依管理系统/测试环境
|
||||||
|
VUE_APP_BASE_API = '/stage-api'
|
@ -0,0 +1,10 @@
|
|||||||
|
# 忽略build目录下类型为js的文件的语法检查
|
||||||
|
build/*.js
|
||||||
|
# 忽略src/assets目录下文件的语法检查
|
||||||
|
src/assets
|
||||||
|
# 忽略public目录下文件的语法检查
|
||||||
|
public
|
||||||
|
# 忽略当前目录下为js的文件的语法检查
|
||||||
|
*.js
|
||||||
|
# 忽略当前目录下为vue的文件的语法检查
|
||||||
|
*.vue
|
@ -0,0 +1,199 @@
|
|||||||
|
// ESlint 检查配置
|
||||||
|
module.exports = {
|
||||||
|
root: true,
|
||||||
|
parserOptions: {
|
||||||
|
parser: 'babel-eslint',
|
||||||
|
sourceType: 'module'
|
||||||
|
},
|
||||||
|
env: {
|
||||||
|
browser: true,
|
||||||
|
node: true,
|
||||||
|
es6: true,
|
||||||
|
},
|
||||||
|
extends: ['plugin:vue/recommended', 'eslint:recommended'],
|
||||||
|
|
||||||
|
// add your custom rules here
|
||||||
|
//it is base on https://github.com/vuejs/eslint-config-vue
|
||||||
|
rules: {
|
||||||
|
"vue/max-attributes-per-line": [2, {
|
||||||
|
"singleline": 10,
|
||||||
|
"multiline": {
|
||||||
|
"max": 1,
|
||||||
|
"allowFirstLine": false
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
"vue/singleline-html-element-content-newline": "off",
|
||||||
|
"vue/multiline-html-element-content-newline":"off",
|
||||||
|
"vue/name-property-casing": ["error", "PascalCase"],
|
||||||
|
"vue/no-v-html": "off",
|
||||||
|
'accessor-pairs': 2,
|
||||||
|
'arrow-spacing': [2, {
|
||||||
|
'before': true,
|
||||||
|
'after': true
|
||||||
|
}],
|
||||||
|
'block-spacing': [2, 'always'],
|
||||||
|
'brace-style': [2, '1tbs', {
|
||||||
|
'allowSingleLine': true
|
||||||
|
}],
|
||||||
|
'camelcase': [0, {
|
||||||
|
'properties': 'always'
|
||||||
|
}],
|
||||||
|
'comma-dangle': [2, 'never'],
|
||||||
|
'comma-spacing': [2, {
|
||||||
|
'before': false,
|
||||||
|
'after': true
|
||||||
|
}],
|
||||||
|
'comma-style': [2, 'last'],
|
||||||
|
'constructor-super': 2,
|
||||||
|
'curly': [2, 'multi-line'],
|
||||||
|
'dot-location': [2, 'property'],
|
||||||
|
'eol-last': 2,
|
||||||
|
'eqeqeq': ["error", "always", {"null": "ignore"}],
|
||||||
|
'generator-star-spacing': [2, {
|
||||||
|
'before': true,
|
||||||
|
'after': true
|
||||||
|
}],
|
||||||
|
'handle-callback-err': [2, '^(err|error)$'],
|
||||||
|
'indent': [2, 2, {
|
||||||
|
'SwitchCase': 1
|
||||||
|
}],
|
||||||
|
'jsx-quotes': [2, 'prefer-single'],
|
||||||
|
'key-spacing': [2, {
|
||||||
|
'beforeColon': false,
|
||||||
|
'afterColon': true
|
||||||
|
}],
|
||||||
|
'keyword-spacing': [2, {
|
||||||
|
'before': true,
|
||||||
|
'after': true
|
||||||
|
}],
|
||||||
|
'new-cap': [2, {
|
||||||
|
'newIsCap': true,
|
||||||
|
'capIsNew': false
|
||||||
|
}],
|
||||||
|
'new-parens': 2,
|
||||||
|
'no-array-constructor': 2,
|
||||||
|
'no-caller': 2,
|
||||||
|
'no-console': 'off',
|
||||||
|
'no-class-assign': 2,
|
||||||
|
'no-cond-assign': 2,
|
||||||
|
'no-const-assign': 2,
|
||||||
|
'no-control-regex': 0,
|
||||||
|
'no-delete-var': 2,
|
||||||
|
'no-dupe-args': 2,
|
||||||
|
'no-dupe-class-members': 2,
|
||||||
|
'no-dupe-keys': 2,
|
||||||
|
'no-duplicate-case': 2,
|
||||||
|
'no-empty-character-class': 2,
|
||||||
|
'no-empty-pattern': 2,
|
||||||
|
'no-eval': 2,
|
||||||
|
'no-ex-assign': 2,
|
||||||
|
'no-extend-native': 2,
|
||||||
|
'no-extra-bind': 2,
|
||||||
|
'no-extra-boolean-cast': 2,
|
||||||
|
'no-extra-parens': [2, 'functions'],
|
||||||
|
'no-fallthrough': 2,
|
||||||
|
'no-floating-decimal': 2,
|
||||||
|
'no-func-assign': 2,
|
||||||
|
'no-implied-eval': 2,
|
||||||
|
'no-inner-declarations': [2, 'functions'],
|
||||||
|
'no-invalid-regexp': 2,
|
||||||
|
'no-irregular-whitespace': 2,
|
||||||
|
'no-iterator': 2,
|
||||||
|
'no-label-var': 2,
|
||||||
|
'no-labels': [2, {
|
||||||
|
'allowLoop': false,
|
||||||
|
'allowSwitch': false
|
||||||
|
}],
|
||||||
|
'no-lone-blocks': 2,
|
||||||
|
'no-mixed-spaces-and-tabs': 2,
|
||||||
|
'no-multi-spaces': 2,
|
||||||
|
'no-multi-str': 2,
|
||||||
|
'no-multiple-empty-lines': [2, {
|
||||||
|
'max': 1
|
||||||
|
}],
|
||||||
|
'no-native-reassign': 2,
|
||||||
|
'no-negated-in-lhs': 2,
|
||||||
|
'no-new-object': 2,
|
||||||
|
'no-new-require': 2,
|
||||||
|
'no-new-symbol': 2,
|
||||||
|
'no-new-wrappers': 2,
|
||||||
|
'no-obj-calls': 2,
|
||||||
|
'no-octal': 2,
|
||||||
|
'no-octal-escape': 2,
|
||||||
|
'no-path-concat': 2,
|
||||||
|
'no-proto': 2,
|
||||||
|
'no-redeclare': 2,
|
||||||
|
'no-regex-spaces': 2,
|
||||||
|
'no-return-assign': [2, 'except-parens'],
|
||||||
|
'no-self-assign': 2,
|
||||||
|
'no-self-compare': 2,
|
||||||
|
'no-sequences': 2,
|
||||||
|
'no-shadow-restricted-names': 2,
|
||||||
|
'no-spaced-func': 2,
|
||||||
|
'no-sparse-arrays': 2,
|
||||||
|
'no-this-before-super': 2,
|
||||||
|
'no-throw-literal': 2,
|
||||||
|
'no-trailing-spaces': 2,
|
||||||
|
'no-undef': 2,
|
||||||
|
'no-undef-init': 2,
|
||||||
|
'no-unexpected-multiline': 2,
|
||||||
|
'no-unmodified-loop-condition': 2,
|
||||||
|
'no-unneeded-ternary': [2, {
|
||||||
|
'defaultAssignment': false
|
||||||
|
}],
|
||||||
|
'no-unreachable': 2,
|
||||||
|
'no-unsafe-finally': 2,
|
||||||
|
'no-unused-vars': [2, {
|
||||||
|
'vars': 'all',
|
||||||
|
'args': 'none'
|
||||||
|
}],
|
||||||
|
'no-useless-call': 2,
|
||||||
|
'no-useless-computed-key': 2,
|
||||||
|
'no-useless-constructor': 2,
|
||||||
|
'no-useless-escape': 0,
|
||||||
|
'no-whitespace-before-property': 2,
|
||||||
|
'no-with': 2,
|
||||||
|
'one-var': [2, {
|
||||||
|
'initialized': 'never'
|
||||||
|
}],
|
||||||
|
'operator-linebreak': [2, 'after', {
|
||||||
|
'overrides': {
|
||||||
|
'?': 'before',
|
||||||
|
':': 'before'
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
'padded-blocks': [2, 'never'],
|
||||||
|
'quotes': [2, 'single', {
|
||||||
|
'avoidEscape': true,
|
||||||
|
'allowTemplateLiterals': true
|
||||||
|
}],
|
||||||
|
'semi': [2, 'never'],
|
||||||
|
'semi-spacing': [2, {
|
||||||
|
'before': false,
|
||||||
|
'after': true
|
||||||
|
}],
|
||||||
|
'space-before-blocks': [2, 'always'],
|
||||||
|
'space-before-function-paren': [2, 'never'],
|
||||||
|
'space-in-parens': [2, 'never'],
|
||||||
|
'space-infix-ops': 2,
|
||||||
|
'space-unary-ops': [2, {
|
||||||
|
'words': true,
|
||||||
|
'nonwords': false
|
||||||
|
}],
|
||||||
|
'spaced-comment': [2, 'always', {
|
||||||
|
'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ',']
|
||||||
|
}],
|
||||||
|
'template-curly-spacing': [2, 'never'],
|
||||||
|
'use-isnan': 2,
|
||||||
|
'valid-typeof': 2,
|
||||||
|
'wrap-iife': [2, 'any'],
|
||||||
|
'yield-star-spacing': [2, 'both'],
|
||||||
|
'yoda': [2, 'never'],
|
||||||
|
'prefer-const': 2,
|
||||||
|
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
|
||||||
|
'object-curly-spacing': [2, 'always', {
|
||||||
|
objectsInObjects: false
|
||||||
|
}],
|
||||||
|
'array-bracket-spacing': [2, 'never']
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
.DS_Store
|
||||||
|
node_modules/
|
||||||
|
dist/
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
**/*.log
|
||||||
|
|
||||||
|
tests/**/coverage/
|
||||||
|
tests/e2e/reports
|
||||||
|
selenium-debug.log
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.idea
|
||||||
|
.vscode
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.local
|
||||||
|
|
||||||
|
package-lock.json
|
||||||
|
yarn.lock
|
@ -0,0 +1,30 @@
|
|||||||
|
## 开发
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 克隆项目
|
||||||
|
git clone https://gitee.com/y_project/RuoYi-Vue
|
||||||
|
|
||||||
|
# 进入项目目录
|
||||||
|
cd ruoyi-ui
|
||||||
|
|
||||||
|
# 安装依赖
|
||||||
|
npm install
|
||||||
|
|
||||||
|
# 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题
|
||||||
|
npm install --registry=https://registry.npmmirror.com
|
||||||
|
|
||||||
|
# 启动服务
|
||||||
|
npm run dev
|
||||||
|
```
|
||||||
|
|
||||||
|
浏览器访问 http://localhost:80
|
||||||
|
|
||||||
|
## 发布
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 构建测试环境
|
||||||
|
npm run build:stage
|
||||||
|
|
||||||
|
# 构建生产环境
|
||||||
|
npm run build:prod
|
||||||
|
```
|
@ -0,0 +1,13 @@
|
|||||||
|
module.exports = {
|
||||||
|
presets: [
|
||||||
|
// https://github.com/vuejs/vue-cli/tree/master/packages/@vue/babel-preset-app
|
||||||
|
'@vue/cli-plugin-babel/preset'
|
||||||
|
],
|
||||||
|
'env': {
|
||||||
|
'development': {
|
||||||
|
// babel-plugin-dynamic-import-node plugin only does one thing by converting all import() to require().
|
||||||
|
// This plugin can significantly increase the speed of hot updates, when you have a large number of pages.
|
||||||
|
'plugins': ['dynamic-import-node']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
@echo off
|
||||||
|
echo.
|
||||||
|
echo [信息] 使用 Vue CLI 命令运行 Web 工程。
|
||||||
|
echo.
|
||||||
|
|
||||||
|
%~d0
|
||||||
|
cd %~dp0
|
||||||
|
|
||||||
|
cd ..
|
||||||
|
npm run dev
|
||||||
|
|
||||||
|
pause
|
@ -0,0 +1,35 @@
|
|||||||
|
const { run } = require('runjs')
|
||||||
|
const chalk = require('chalk')
|
||||||
|
const config = require('../vue.config.js')
|
||||||
|
const rawArgv = process.argv.slice(2)
|
||||||
|
const args = rawArgv.join(' ')
|
||||||
|
|
||||||
|
if (process.env.npm_config_preview || rawArgv.includes('--preview')) {
|
||||||
|
const report = rawArgv.includes('--report')
|
||||||
|
|
||||||
|
run(`vue-cli-service build ${args}`)
|
||||||
|
|
||||||
|
const port = 9526
|
||||||
|
const publicPath = config.publicPath
|
||||||
|
|
||||||
|
var connect = require('connect')
|
||||||
|
var serveStatic = require('serve-static')
|
||||||
|
const app = connect()
|
||||||
|
|
||||||
|
app.use(
|
||||||
|
publicPath,
|
||||||
|
serveStatic('./dist', {
|
||||||
|
index: ['index.html', '/']
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
|
app.listen(port, function () {
|
||||||
|
console.log(chalk.green(`> Preview at http://localhost:${port}${publicPath}`))
|
||||||
|
if (report) {
|
||||||
|
console.log(chalk.green(`> Report at http://localhost:${port}${publicPath}report.html`))
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
run(`vue-cli-service build ${args}`)
|
||||||
|
}
|
@ -0,0 +1,92 @@
|
|||||||
|
{
|
||||||
|
"name": "ruoyi",
|
||||||
|
"version": "3.8.5",
|
||||||
|
"description": "辽宁药品",
|
||||||
|
"author": "若依",
|
||||||
|
"license": "MIT",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "vue-cli-service serve",
|
||||||
|
"build:prod": "vue-cli-service build",
|
||||||
|
"build:stage": "vue-cli-service build --mode staging",
|
||||||
|
"preview": "node build/index.js --preview",
|
||||||
|
"lint": "eslint --ext .js,.vue src"
|
||||||
|
},
|
||||||
|
"husky": {
|
||||||
|
"hooks": {
|
||||||
|
"pre-commit": "lint-staged"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lint-staged": {
|
||||||
|
"src/**/*.{js,vue}": [
|
||||||
|
"eslint --fix",
|
||||||
|
"git add"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"vue",
|
||||||
|
"admin",
|
||||||
|
"dashboard",
|
||||||
|
"element-ui",
|
||||||
|
"boilerplate",
|
||||||
|
"admin-template",
|
||||||
|
"management-system"
|
||||||
|
],
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://gitee.com/y_project/RuoYi-Vue.git"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@riophae/vue-treeselect": "0.4.0",
|
||||||
|
"axios": "0.24.0",
|
||||||
|
"clipboard": "2.0.8",
|
||||||
|
"core-js": "3.25.3",
|
||||||
|
"echarts": "^5.4.0",
|
||||||
|
"element-ui": "2.15.12",
|
||||||
|
"file-saver": "2.0.5",
|
||||||
|
"fuse.js": "6.4.3",
|
||||||
|
"highlight.js": "9.18.5",
|
||||||
|
"js-beautify": "1.13.0",
|
||||||
|
"js-cookie": "3.0.1",
|
||||||
|
"jsencrypt": "3.0.0-rc.1",
|
||||||
|
"postcss-px2rem": "^0.3.0",
|
||||||
|
"moment": "^2.29.4",
|
||||||
|
"nprogress": "0.2.0",
|
||||||
|
"quill": "1.3.7",
|
||||||
|
"screenfull": "5.0.2",
|
||||||
|
"sortablejs": "1.10.2",
|
||||||
|
"vue": "2.6.12",
|
||||||
|
"vue-count-to": "1.0.13",
|
||||||
|
"vue-cropper": "0.5.5",
|
||||||
|
"vue-meta": "2.4.0",
|
||||||
|
"vue-router": "3.4.9",
|
||||||
|
"vuedraggable": "2.24.3",
|
||||||
|
"vuex": "3.6.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@vue/cli-plugin-babel": "4.4.6",
|
||||||
|
"@vue/cli-plugin-eslint": "4.4.6",
|
||||||
|
"@vue/cli-service": "4.4.6",
|
||||||
|
"babel-eslint": "10.1.0",
|
||||||
|
"babel-plugin-dynamic-import-node": "2.3.3",
|
||||||
|
"chalk": "4.1.0",
|
||||||
|
"compression-webpack-plugin": "5.0.2",
|
||||||
|
"connect": "3.6.6",
|
||||||
|
"eslint": "7.15.0",
|
||||||
|
"eslint-plugin-vue": "7.2.0",
|
||||||
|
"lint-staged": "10.5.3",
|
||||||
|
"runjs": "4.4.2",
|
||||||
|
"sass": "1.32.13",
|
||||||
|
"sass-loader": "10.1.1",
|
||||||
|
"script-ext-html-webpack-plugin": "2.1.5",
|
||||||
|
"svg-sprite-loader": "5.1.1",
|
||||||
|
"vue-template-compiler": "2.6.12"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=8.9",
|
||||||
|
"npm": ">= 3.0.0"
|
||||||
|
},
|
||||||
|
"browserslist": [
|
||||||
|
"> 1%",
|
||||||
|
"last 2 versions"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 5.5 KiB |
@ -0,0 +1,208 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<meta name="renderer" content="webkit">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
||||||
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||||
|
<title><%= webpackConfig.name %></title>
|
||||||
|
<!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
|
||||||
|
<style>
|
||||||
|
html,
|
||||||
|
body,
|
||||||
|
#app {
|
||||||
|
height: 100%;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
.chromeframe {
|
||||||
|
margin: 0.2em 0;
|
||||||
|
background: #ccc;
|
||||||
|
color: #000;
|
||||||
|
padding: 0.2em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader-wrapper {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: 999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader {
|
||||||
|
display: block;
|
||||||
|
position: relative;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
width: 150px;
|
||||||
|
height: 150px;
|
||||||
|
margin: -75px 0 0 -75px;
|
||||||
|
border-radius: 50%;
|
||||||
|
border: 3px solid transparent;
|
||||||
|
border-top-color: #FFF;
|
||||||
|
-webkit-animation: spin 2s linear infinite;
|
||||||
|
-ms-animation: spin 2s linear infinite;
|
||||||
|
-moz-animation: spin 2s linear infinite;
|
||||||
|
-o-animation: spin 2s linear infinite;
|
||||||
|
animation: spin 2s linear infinite;
|
||||||
|
z-index: 1001;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader:before {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
top: 5px;
|
||||||
|
left: 5px;
|
||||||
|
right: 5px;
|
||||||
|
bottom: 5px;
|
||||||
|
border-radius: 50%;
|
||||||
|
border: 3px solid transparent;
|
||||||
|
border-top-color: #FFF;
|
||||||
|
-webkit-animation: spin 3s linear infinite;
|
||||||
|
-moz-animation: spin 3s linear infinite;
|
||||||
|
-o-animation: spin 3s linear infinite;
|
||||||
|
-ms-animation: spin 3s linear infinite;
|
||||||
|
animation: spin 3s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader:after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
top: 15px;
|
||||||
|
left: 15px;
|
||||||
|
right: 15px;
|
||||||
|
bottom: 15px;
|
||||||
|
border-radius: 50%;
|
||||||
|
border: 3px solid transparent;
|
||||||
|
border-top-color: #FFF;
|
||||||
|
-moz-animation: spin 1.5s linear infinite;
|
||||||
|
-o-animation: spin 1.5s linear infinite;
|
||||||
|
-ms-animation: spin 1.5s linear infinite;
|
||||||
|
-webkit-animation: spin 1.5s linear infinite;
|
||||||
|
animation: spin 1.5s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@-webkit-keyframes spin {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
-ms-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(360deg);
|
||||||
|
-ms-transform: rotate(360deg);
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes spin {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
-ms-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(360deg);
|
||||||
|
-ms-transform: rotate(360deg);
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#loader-wrapper .loader-section {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
width: 51%;
|
||||||
|
height: 100%;
|
||||||
|
background: #7171C6;
|
||||||
|
z-index: 1000;
|
||||||
|
-webkit-transform: translateX(0);
|
||||||
|
-ms-transform: translateX(0);
|
||||||
|
transform: translateX(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader-wrapper .loader-section.section-left {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader-wrapper .loader-section.section-right {
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.loaded #loader-wrapper .loader-section.section-left {
|
||||||
|
-webkit-transform: translateX(-100%);
|
||||||
|
-ms-transform: translateX(-100%);
|
||||||
|
transform: translateX(-100%);
|
||||||
|
-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
|
||||||
|
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
|
||||||
|
}
|
||||||
|
|
||||||
|
.loaded #loader-wrapper .loader-section.section-right {
|
||||||
|
-webkit-transform: translateX(100%);
|
||||||
|
-ms-transform: translateX(100%);
|
||||||
|
transform: translateX(100%);
|
||||||
|
-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
|
||||||
|
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
|
||||||
|
}
|
||||||
|
|
||||||
|
.loaded #loader {
|
||||||
|
opacity: 0;
|
||||||
|
-webkit-transition: all 0.3s ease-out;
|
||||||
|
transition: all 0.3s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loaded #loader-wrapper {
|
||||||
|
visibility: hidden;
|
||||||
|
-webkit-transform: translateY(-100%);
|
||||||
|
-ms-transform: translateY(-100%);
|
||||||
|
transform: translateY(-100%);
|
||||||
|
-webkit-transition: all 0.3s 1s ease-out;
|
||||||
|
transition: all 0.3s 1s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-js #loader-wrapper {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-js h1 {
|
||||||
|
color: #222222;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader-wrapper .load_title {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
color: #FFF;
|
||||||
|
font-size: 19px;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
z-index: 9999999999999;
|
||||||
|
position: absolute;
|
||||||
|
top: 60%;
|
||||||
|
opacity: 1;
|
||||||
|
line-height: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader-wrapper .load_title span {
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: italic;
|
||||||
|
font-size: 13px;
|
||||||
|
color: #FFF;
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="app">
|
||||||
|
<div id="loader-wrapper">
|
||||||
|
<div id="loader"></div>
|
||||||
|
<div class="loader-section section-left"></div>
|
||||||
|
<div class="loader-section section-right"></div>
|
||||||
|
<div class="load_title">正在加载系统资源,请耐心等待</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,2 @@
|
|||||||
|
User-agent: *
|
||||||
|
Disallow: /
|
@ -0,0 +1,868 @@
|
|||||||
|
/*** old ***/
|
||||||
|
.starRating {
|
||||||
|
font-size: 26px;
|
||||||
|
}
|
||||||
|
.starRating .fa {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.starRating .fa-star {
|
||||||
|
color: #3388cc;
|
||||||
|
}
|
||||||
|
.subbtn {
|
||||||
|
opacity: 1 !important;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.m_quOrderByUi {
|
||||||
|
margin: 5px 0 5px 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 1px solid #d5d5d5;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
.m_quOrderByUi li {
|
||||||
|
border-color: #fff;
|
||||||
|
font-size: 16px;
|
||||||
|
min-height: 41px;
|
||||||
|
position: relative;
|
||||||
|
padding-right: 45px !important;
|
||||||
|
border-bottom: 1px solid #ebebeb !important;
|
||||||
|
}
|
||||||
|
.m_orderby_num {
|
||||||
|
position: absolute;
|
||||||
|
right: 10px;
|
||||||
|
top: 55%;
|
||||||
|
margin-top: -15px;
|
||||||
|
min-width: 26px;
|
||||||
|
height: 26px;
|
||||||
|
background: #85c8ff;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 26px;
|
||||||
|
border-radius: 15px;
|
||||||
|
z-index: 100;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.m_orderby_sel {
|
||||||
|
position: absolute;
|
||||||
|
top: 0px;
|
||||||
|
left: 0px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
opacity: 0;
|
||||||
|
font-size: 30px;
|
||||||
|
z-index: 9999;
|
||||||
|
|
||||||
|
background-color: rgb(248, 248, 248);
|
||||||
|
border: 1px solid rgb(166, 166, 166);
|
||||||
|
border-image-source: initial;
|
||||||
|
border-image-slice: initial;
|
||||||
|
border-image-width: initial;
|
||||||
|
border-image-outset: initial;
|
||||||
|
border-image-repeat: initial;
|
||||||
|
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
/*** new ***/
|
||||||
|
#answer-m-head .dwSvyName {
|
||||||
|
color: #365f8f;
|
||||||
|
font-weight: bold;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 22px;
|
||||||
|
padding: 10px 0px;
|
||||||
|
}
|
||||||
|
#dwSurveyNoteEdit {
|
||||||
|
padding: 10px 0px;
|
||||||
|
color: grey;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 22px;
|
||||||
|
}
|
||||||
|
#answer-m-content {
|
||||||
|
padding-top: 10px;
|
||||||
|
}
|
||||||
|
#dwSurveyQuContentAppUl {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
#dwSurveyQuContentAppUl > li {
|
||||||
|
padding-bottom: 20px;
|
||||||
|
}
|
||||||
|
#dwSurveyQuContentAppUl > li .surveyQuItemContent legend {
|
||||||
|
/*font-weight: bold;*/
|
||||||
|
color: black;
|
||||||
|
font-size: 16px;
|
||||||
|
/*font-weight: bold;*/
|
||||||
|
line-height: 26px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.surveyQuItem .surveyQuItemContent {
|
||||||
|
padding: 0px;
|
||||||
|
border: none;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .dwQuOptionItemContent {
|
||||||
|
margin: 0.5em 0;
|
||||||
|
position: relative;
|
||||||
|
background-color: #f6f6f6;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
color: #333;
|
||||||
|
/*text-shadow: 0 1px 0 #f3f3f3;*/
|
||||||
|
padding: 6px 10px;
|
||||||
|
border-radius: 0.3125em;
|
||||||
|
font-size: 14px;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .columnItemContnetTd .dwQuOptionItemContent {
|
||||||
|
margin: 0px;
|
||||||
|
background-color: white;
|
||||||
|
border: none;
|
||||||
|
color: #333;
|
||||||
|
text-shadow: none;
|
||||||
|
padding: 0px;
|
||||||
|
border-radius: 0em;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .dwQuOptionItemContent:active {
|
||||||
|
border-color: rgb(129, 152, 186);
|
||||||
|
border-color: #5aa9ef;
|
||||||
|
border-color: #1e94fc;
|
||||||
|
background: #dae8f5;
|
||||||
|
background: white;
|
||||||
|
border-color: #ddd;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .dwQuOptionItemContent.active {
|
||||||
|
border-color: #1e94fc;
|
||||||
|
background: #dae8f5;
|
||||||
|
background: white;
|
||||||
|
background-color: #e4edf7;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .dwQuOptionItemContent input {
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .dwQuOptionItemContent label {
|
||||||
|
margin: 0;
|
||||||
|
text-align: left;
|
||||||
|
white-space: normal;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .inputSytle_1,
|
||||||
|
.surveyQuItemContent .inputSytle_2 {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
outline: 0;
|
||||||
|
margin: 0;
|
||||||
|
text-align: left;
|
||||||
|
padding: 6px 0px;
|
||||||
|
margin-top: 10px;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
text-indent: 6px;
|
||||||
|
}
|
||||||
|
.dwQuOptionItemContent input[type="radio"],
|
||||||
|
.dwQuOptionItemContent input[type="checkbox"] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
/** 单选样式***/
|
||||||
|
.dwQuOptionItemContent .dwRedioStyle {
|
||||||
|
background: transparent url(../images/answer-icon-1.png) no-repeat center top;
|
||||||
|
vertical-align: middle;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;
|
||||||
|
background-position: -2px -6px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.dwQuOptionItemContent .dwRedioStyle.checked {
|
||||||
|
background-position: -2px -31px;
|
||||||
|
}
|
||||||
|
/**多选样式**/
|
||||||
|
.dwQuOptionItemContent .dwCheckboxStyle {
|
||||||
|
background: transparent url(../images/answer-icon-1.png) no-repeat center top;
|
||||||
|
vertical-align: middle;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;
|
||||||
|
background-position: -2px -60px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.dwQuOptionItemContent .dwCheckboxStyle.checked {
|
||||||
|
background-position: -2px -87px;
|
||||||
|
}
|
||||||
|
.ui-controlgroup-controls {
|
||||||
|
border-bottom: 1px solid #ddd;
|
||||||
|
margin-top: 8px;
|
||||||
|
}
|
||||||
|
.ui-controlgroup-controls .m_clickQuOrderItem {
|
||||||
|
background-color: #f6f6f6;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
color: #333;
|
||||||
|
text-shadow: 0 1px 0 #f3f3f3;
|
||||||
|
font-size: 14px;
|
||||||
|
border-radius: 0px;
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
.ui-controlgroup-controls .m_clickQuOrderItem:first-child {
|
||||||
|
}
|
||||||
|
.ui-controlgroup-controls .m_clickQuOrderItem label {
|
||||||
|
border: none;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.surveyQuItemContent .mFillblankTableTr label {
|
||||||
|
display: block;
|
||||||
|
margin: 0 0 0.4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.surveyQuItemContent .mFillblankTableTr {
|
||||||
|
margin: 10px 0px;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent
|
||||||
|
.mFillblankTableTr
|
||||||
|
.surveyQuItemContent
|
||||||
|
.dwQuOptionItemContent.dwQuOptionItemContent
|
||||||
|
label {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .quSliderItemTr .mFillblankTableEditTd label {
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.surveyQuItemContent .mFillblankTableTr .dwMFillblankInput,
|
||||||
|
input[type="text"].fillblankInput {
|
||||||
|
width: 100%;
|
||||||
|
outline: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .mFillblankTableTr .dwMFillblankInput,
|
||||||
|
input[type="text"].fillblankInput,
|
||||||
|
.option_other_text {
|
||||||
|
display: block;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
text-align: left;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.nextPage_a,
|
||||||
|
.submitSurvey {
|
||||||
|
width: 100%;
|
||||||
|
line-height: 25px;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 8px 0px;
|
||||||
|
margin-left: 0px;
|
||||||
|
font-size: 16px;
|
||||||
|
text-decoration: none;
|
||||||
|
color: white;
|
||||||
|
background: #1e94fc;
|
||||||
|
border: none;
|
||||||
|
background: #4f8bff;
|
||||||
|
}
|
||||||
|
.nextPage_a:hover,
|
||||||
|
.submitSurvey:hover {
|
||||||
|
background: #1759e8;
|
||||||
|
background: -moz-linear-gradient(top, #1759e8, #1759e8);
|
||||||
|
background: -webkit-gradient(
|
||||||
|
linear,
|
||||||
|
0 0,
|
||||||
|
0 bottom,
|
||||||
|
from(#1759e8),
|
||||||
|
to(#1759e8)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
.dw-footer {
|
||||||
|
display: block;
|
||||||
|
padding: 20px 0px;
|
||||||
|
width: 100%;
|
||||||
|
height: 30px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: normal;
|
||||||
|
padding-top: 30px;
|
||||||
|
color: #333;
|
||||||
|
background-color: #eeeeee;
|
||||||
|
}
|
||||||
|
.dw-footer a {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dwsurvey-controlgroup {
|
||||||
|
margin: 6px;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
margin-left: 0px;
|
||||||
|
}
|
||||||
|
.dwsurvey-controlgroup .starOptionTitle {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.dwsurvey-controlgroup .starOptionContent {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.starRating {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.starRating .fa {
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
.starRating .fa-star {
|
||||||
|
color: #365f8f;
|
||||||
|
}
|
||||||
|
.quCoItem ul li {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
.radioSelectSet select {
|
||||||
|
width: 100%;
|
||||||
|
border: 1px #cecad2 solid;
|
||||||
|
margin: 0.5em 0;
|
||||||
|
outline-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quCoItem > ul {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
.ui-page {
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
.ui-header {
|
||||||
|
background-color: #5693c0 !important;
|
||||||
|
text-shadow: 0 1px 0 #3d586c !important;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
background-color: #5aa9ef !important;
|
||||||
|
}
|
||||||
|
.ui-content {
|
||||||
|
padding: 0px 1em;
|
||||||
|
}
|
||||||
|
.ui-footer {
|
||||||
|
color: #3d586c !important;
|
||||||
|
background: none !important;
|
||||||
|
}
|
||||||
|
.ui-header,
|
||||||
|
.ui-footer {
|
||||||
|
border: none !important;
|
||||||
|
}
|
||||||
|
.starRating .fa {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.starRating .fa-star {
|
||||||
|
color: #3388cc;
|
||||||
|
}
|
||||||
|
.subbtn {
|
||||||
|
opacity: 1 !important;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.quTitleNum {
|
||||||
|
/* position: absolute; */
|
||||||
|
}
|
||||||
|
.quTitleText {
|
||||||
|
/* text-indent: 2em; */
|
||||||
|
}
|
||||||
|
#dwSurveyNote {
|
||||||
|
padding-top: 0px;
|
||||||
|
}
|
||||||
|
.m_quOrderByUi {
|
||||||
|
margin: 5px 0 5px 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 1px solid #d5d5d5;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
.m_quOrderByUi li {
|
||||||
|
border-color: #fff;
|
||||||
|
font-size: 16px;
|
||||||
|
min-height: 41px;
|
||||||
|
position: relative;
|
||||||
|
padding-right: 45px !important;
|
||||||
|
border-bottom: 1px solid #ebebeb !important;
|
||||||
|
}
|
||||||
|
.m_orderby_num {
|
||||||
|
position: absolute;
|
||||||
|
right: 10px;
|
||||||
|
top: 55%;
|
||||||
|
margin-top: -15px;
|
||||||
|
min-width: 26px;
|
||||||
|
height: 26px;
|
||||||
|
background: #85c8ff;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 26px;
|
||||||
|
border-radius: 15px;
|
||||||
|
z-index: 100;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.m_orderby_sel {
|
||||||
|
position: absolute;
|
||||||
|
top: 0px;
|
||||||
|
left: 0px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
opacity: 0;
|
||||||
|
font-size: 30px;
|
||||||
|
z-index: 9999;
|
||||||
|
|
||||||
|
background-color: rgb(248, 248, 248);
|
||||||
|
border: 1px solid rgb(166, 166, 166);
|
||||||
|
border-image-source: initial;
|
||||||
|
border-image-slice: initial;
|
||||||
|
border-image-width: initial;
|
||||||
|
border-image-outset: initial;
|
||||||
|
border-image-repeat: initial;
|
||||||
|
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#resultProgressRoot {
|
||||||
|
top: 0px;
|
||||||
|
z-index: 200;
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
background-color: #cecad2;
|
||||||
|
background-color: #e0e0e0;
|
||||||
|
}
|
||||||
|
.progress-label {
|
||||||
|
font-size: 14px;
|
||||||
|
font-family: "微软雅黑";
|
||||||
|
margin: 0px auto;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 1.4em;
|
||||||
|
color: #0887d2;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.progressbarDiv {
|
||||||
|
height: 3px !important;
|
||||||
|
box-shadow: none !important;
|
||||||
|
/*border: 1px solid #0887d2;*/
|
||||||
|
border-radius: 0px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progressbarDiv .ui-progressbar-value {
|
||||||
|
background: #0887d2;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
.progressbarDiv .ui-widget-header {
|
||||||
|
background: #0887d2;
|
||||||
|
}
|
||||||
|
.ui-progressbar .ui-progressbar-value {
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
.ui-progressbar {
|
||||||
|
position: relative;
|
||||||
|
background: none !important;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
/*display: inline;*/
|
||||||
|
}
|
||||||
|
.nextPage_a,
|
||||||
|
.submitSurvey {
|
||||||
|
width: 100%;
|
||||||
|
line-height: 25px;
|
||||||
|
border-radius: 3px;
|
||||||
|
padding: 8px 0px;
|
||||||
|
margin-left: 0px;
|
||||||
|
}
|
||||||
|
html head + body .ui-btn.ui-btn-b,
|
||||||
|
html head + body .ui-btn.ui-btn-b:hover {
|
||||||
|
background-color: #00a0df;
|
||||||
|
border-color: #00a0df;
|
||||||
|
text-shadow: 0 1px 0 #00a0df;
|
||||||
|
}
|
||||||
|
.sbtn24 {
|
||||||
|
background-image: none;
|
||||||
|
background-color: #00a0df;
|
||||||
|
background: #4f8bff;
|
||||||
|
color: white !important;
|
||||||
|
font-size: 12px;
|
||||||
|
height: 25px;
|
||||||
|
}
|
||||||
|
.sbtn24:active {
|
||||||
|
background-color: #008dc9;
|
||||||
|
}
|
||||||
|
.sbtn24_0:hover {
|
||||||
|
background: #1759e8;
|
||||||
|
}
|
||||||
|
#dwSurveyHeaderTopImg {
|
||||||
|
height: auto;
|
||||||
|
width: auto\9;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#dwSurveyQuContentBg {
|
||||||
|
/*margin: 16px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
*/
|
||||||
|
padding: 16px;
|
||||||
|
padding-bottom: 0px;
|
||||||
|
}
|
||||||
|
.dwQuCoChenRowTr {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
.dwScoreRowItem {
|
||||||
|
border-bottom: 1px solid #ddd;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
.dwScoreRowItem .dwQuCoScoreCol {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
#jcaptchaImgBody {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.jcaptchaInput {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
outline: 0;
|
||||||
|
margin: 0;
|
||||||
|
text-align: left;
|
||||||
|
padding: 6px 0px;
|
||||||
|
margin-top: 10px;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
text-indent: 6px;
|
||||||
|
}
|
||||||
|
#register-jcaptchaImg {
|
||||||
|
width: 110px !important;
|
||||||
|
}
|
||||||
|
#diaowen-m-content {
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#dwSurveyHeaderTop {
|
||||||
|
/*background: #cecad2;*/
|
||||||
|
/*display: none;*/
|
||||||
|
/*background-repeat:no-repeat; background-size:100% 100%;-moz-background-size:100% 100%;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
#dwSurveyHeaderTopImg,
|
||||||
|
#dwSurveyLogo {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
#dwSurveyHeaderTopImg img,
|
||||||
|
#dwSurveyLogo img {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#dwSurveyHeaderTopImg {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
#dwSurveyHeaderTop.bgImg #dwSurveyHeaderTopImg {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
#dwSurveyHeaderTop.bgImg #dwSurveyLogo {
|
||||||
|
position: absolute;
|
||||||
|
top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.quScaleTable tr td {
|
||||||
|
padding: 3px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dwQuOptionItemContent.inputchecked {
|
||||||
|
background-color: dodgerblue;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
table.quScaleTable tr td.quCoChenTdRC:hover {
|
||||||
|
border: 1px solid transparent;
|
||||||
|
}
|
||||||
|
.cascadeSelectSet select,
|
||||||
|
.radioSelectSet select {
|
||||||
|
width: 100%;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.diaowen-m-content img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .quCoItem.imgSelectQu {
|
||||||
|
/*margin-top: 10px;*/
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .quCoItem ul.transverse {
|
||||||
|
display: -webkit-flex; /* Safari */
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
/*align-content: space-between;*/
|
||||||
|
}
|
||||||
|
@media (max-width: 300px) {
|
||||||
|
.imgQuCoItemUlLi {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .imgSelectQu ul.transverse {
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 300px) {
|
||||||
|
.imgQuCoItemUlLi {
|
||||||
|
width: 49%;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .imgSelectQu ul.transverse {
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 600px) {
|
||||||
|
.imgQuCoItemUlLi {
|
||||||
|
width: 32%;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .imgSelectQu ul.transverse {
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .imgSelectQu ul.transverse .quCoItemUlLi {
|
||||||
|
margin-right: 1%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 900px) {
|
||||||
|
.imgQuCoItemUlLi {
|
||||||
|
width: 22%;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .imgSelectQu ul.transverse {
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .imgSelectQu ul.transverse .quCoItemUlLi {
|
||||||
|
margin-right: 1%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.surveyQuItemContent .imgSelectQu ul.transverse .quCoItemUlLi {
|
||||||
|
/*margin-right: 10px;*/
|
||||||
|
/*margin-bottom: 10px;*/
|
||||||
|
/*margin-top: 10px;*/
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .dwQuOptionItemContent.imgItemContent {
|
||||||
|
border: none;
|
||||||
|
background: none;
|
||||||
|
text-align: left;
|
||||||
|
padding-left: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
.choicequ_img_item {
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid lightgrey;
|
||||||
|
padding: 6px;
|
||||||
|
padding-bottom: 8px;
|
||||||
|
/*width: 180px;*/
|
||||||
|
}
|
||||||
|
.choicequ_img_item_add {
|
||||||
|
border: 1px dashed lightgrey;
|
||||||
|
padding: 6px;
|
||||||
|
padding-bottom: 8px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.choicequ_img_item_img {
|
||||||
|
margin-bottom: 6px;
|
||||||
|
position: relative;
|
||||||
|
/*height: 160px;*/
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.choicequ_img_item_action {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
/*height: 160px;*/
|
||||||
|
width: 100%;
|
||||||
|
line-height: 30px;
|
||||||
|
z-index: 100;
|
||||||
|
opacity: 0.6;
|
||||||
|
}
|
||||||
|
.choicequ_img_item_action .editQuImg {
|
||||||
|
width: 60px;
|
||||||
|
height: 45px;
|
||||||
|
font-size: 14px;
|
||||||
|
text-decoration: none;
|
||||||
|
color: white;
|
||||||
|
display: block;
|
||||||
|
border: 1px solid white;
|
||||||
|
border-radius: 60px;
|
||||||
|
background: black;
|
||||||
|
color: white;
|
||||||
|
margin-top: 50px;
|
||||||
|
margin-left: 50px;
|
||||||
|
padding-top: 15px;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.choicequ_img_item_img:hover .choicequ_img_item_action .editQuImg {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.choicequ_img_item_action .editQuImg:hover {
|
||||||
|
background: #b06886;
|
||||||
|
}
|
||||||
|
.choicequ_img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.imgSelectQu img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.leftValue,
|
||||||
|
.rightValue {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #757575;
|
||||||
|
}
|
||||||
|
table.chenTable {
|
||||||
|
border-right: 1px solid #c9c9c9;
|
||||||
|
border-bottom: 1px solid #c9c9c9;
|
||||||
|
border-spacing: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.chenTable tr.quCoChenTableHead td {
|
||||||
|
background: #dddddd;
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
table.chenTable tr td {
|
||||||
|
border-spacing: 0px;
|
||||||
|
word-break: keep-all;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
.chenTable td {
|
||||||
|
border-left: 1px solid #c9c9c9;
|
||||||
|
border-top: 1px solid #c9c9c9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chenTableRowColumn,
|
||||||
|
.chenTableRowColumn td {
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
.chenScaleRadioRow .columnItemContnetTd .dwQuOptionItemContent {
|
||||||
|
padding: 6px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.chenScaleTable {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
.chenScaleTable tr.quCoChenTableHead td {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
.chenScaleTable td {
|
||||||
|
border: none;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
}
|
||||||
|
table.chenScaleTable tr.quCoChenTableHead td {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
table.chenScaleTable .chenScaleRadioRow .columnItemContnetTd {
|
||||||
|
padding: 3px;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
table.chenScaleTable
|
||||||
|
.chenScaleRadioRow
|
||||||
|
.columnItemContnetTd
|
||||||
|
.dwQuOptionItemContent {
|
||||||
|
border: 1px solid rgb(221, 221, 221);
|
||||||
|
border-radius: 0.3125em;
|
||||||
|
}
|
||||||
|
table.chenScaleTable .chenTableRowTitle td {
|
||||||
|
padding: 6px;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #6b6767;
|
||||||
|
padding-bottom: 0px;
|
||||||
|
}
|
||||||
|
table.scaleLeftRightTable tr td {
|
||||||
|
color: #757575;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
.nextPage_a {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.dwQuChenFbkOptionItemContent {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
.dwChenMFillblankInput {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
table.quCoChenTable {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
table.dwQuCoChenRowTrTable {
|
||||||
|
min-width: 100%;
|
||||||
|
max-width: none;
|
||||||
|
}
|
||||||
|
table.dwQuCoChenRowTrTable tr td {
|
||||||
|
/*border: none;*/
|
||||||
|
}
|
||||||
|
table.dwQuCoChenRowTrTable tr td {
|
||||||
|
}
|
||||||
|
table.dwQuCoChenRowTrTable .quChenColumnTd {
|
||||||
|
padding: 6px;
|
||||||
|
}
|
||||||
|
table.quCoChenTable tr td.quChenRowTitleTrTd label {
|
||||||
|
max-width: none;
|
||||||
|
}
|
||||||
|
.quChenRowTitleTrTd,
|
||||||
|
.quChenRowTitleTrTd label {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
table.dwQuCoChenRowTrTable tr td {
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
table.dwQuCoChenRowTrTable tr td:first-child {
|
||||||
|
}
|
||||||
|
table.dwQuCoChenRowTrTable .quChenRowTitleTr td.quChenRowTitleTrTd {
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
table.dwQuCoChenRowTrTable .dwQuOptionItemContent {
|
||||||
|
margin: 0px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
table.dwQuCoChenRowTrTable tr td .dwQuChenFbkOptionItemContent {
|
||||||
|
margin-top: 0px;
|
||||||
|
}
|
||||||
|
table.dwQuCoChenRowTrTable tr td .inputSytle_1,
|
||||||
|
table.dwQuCoChenRowTrTable tr td select {
|
||||||
|
margin: 0px;
|
||||||
|
border: none;
|
||||||
|
min-width: 100px;
|
||||||
|
}
|
||||||
|
table.quCoChenTable tr td {
|
||||||
|
word-break: keep-all;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
tr.quChenRowTitleTr .quChenRowTitleTrTd {
|
||||||
|
background: #f3f3f3;
|
||||||
|
}
|
||||||
|
.nextPage_a,
|
||||||
|
.submitSurvey {
|
||||||
|
background: dodgerblue;
|
||||||
|
border-radius: 0px;
|
||||||
|
background: -moz-linear-gradient(top, dodgerblue, dodgerblue);
|
||||||
|
background: -webkit-gradient(
|
||||||
|
linear,
|
||||||
|
0 0,
|
||||||
|
0 bottom,
|
||||||
|
from(dodgerblue),
|
||||||
|
to(dodgerblue)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="button"],
|
||||||
|
input[type="text"],
|
||||||
|
input[type="password"],
|
||||||
|
textarea,
|
||||||
|
button {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
outline: none;
|
||||||
|
-webkit-border-radius: 0px;
|
||||||
|
}
|
||||||
|
select {
|
||||||
|
-webkit-border-radius: 0px;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
.columnItemContnetTd .quCoItemUlLi {
|
||||||
|
margin-right: 20px;
|
||||||
|
}
|
||||||
|
.surveyQuItemContent .quCoChenTdRC .dwQuOptionItemContent {
|
||||||
|
margin: 0.5em auto;
|
||||||
|
width: 20px;
|
||||||
|
padding: 6px 4px;
|
||||||
|
/*量表11个选项不出滚动*/
|
||||||
|
/*
|
||||||
|
width: 18px;
|
||||||
|
padding: 6px 3px;*/
|
||||||
|
}
|
||||||
|
.dwQuOptionItemContent p {
|
||||||
|
display: inherit;
|
||||||
|
}
|
@ -0,0 +1,50 @@
|
|||||||
|
.edui-editor-iframeholder{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.edui-default .edui-editor-toolbarboxouter{
|
||||||
|
border: none! important;
|
||||||
|
}
|
||||||
|
#resultProgressRoot{
|
||||||
|
right: -80px;
|
||||||
|
bottom: 100px;
|
||||||
|
width: 200px;
|
||||||
|
z-index: 200;
|
||||||
|
position: fixed;
|
||||||
|
/*transform: rotate(90deg);
|
||||||
|
-moz-transform:rotate(90deg);
|
||||||
|
-webkit-transform:rotate(90deg);
|
||||||
|
transform:rotate(90deg);
|
||||||
|
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);*/
|
||||||
|
right: 10px;
|
||||||
|
bottom: 50px;
|
||||||
|
}
|
||||||
|
.progress-label {
|
||||||
|
font-size:14px;
|
||||||
|
font-family: "微软雅黑";
|
||||||
|
margin: 0px auto;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 1.4em;
|
||||||
|
color: #83AE00;
|
||||||
|
}
|
||||||
|
.progressbarDiv {
|
||||||
|
height: 10px! important;
|
||||||
|
box-shadow: none! important;
|
||||||
|
border: 1px solid #83AE00;
|
||||||
|
}
|
||||||
|
.progressbarDiv .ui-progressbar-value{
|
||||||
|
background: #83AE00! important;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
.ui-progressbar .ui-progressbar-value{
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
.ui-progressbar {
|
||||||
|
position: relative;
|
||||||
|
background: none! important;
|
||||||
|
}
|
||||||
|
.quOptionEditTd .editAble,.scoreNumTable tr td,.quCoItemTable{
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
label.error{
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
@ -0,0 +1,137 @@
|
|||||||
|
/* CSS Document */
|
||||||
|
body{margin:0;padding:0;background: white;}
|
||||||
|
ul{margin:0;padding:0;list-style:none;}
|
||||||
|
a{text-decoration:none;}
|
||||||
|
img{border:0;}
|
||||||
|
form{margin:0;padding:0;}
|
||||||
|
.dw_syk1{ height:402px; padding-top:86px; background:url(../images/dw_bg1.png) center;}
|
||||||
|
.dw_syk1n{ width:1000px; margin:0 auto; position:relative;}
|
||||||
|
.dw_syk1n img{ position:absolute; top:-40px; right:0;}
|
||||||
|
.dw_syk1wz{ font-family:Microsoft YaHei; color:#fff;}
|
||||||
|
.dw_syk1wz h1{ margin:30px 0; font-weight:normal; font-size:32px; font-weight:500;}
|
||||||
|
.dw_syk1wz p{ font-size:20px; line-height:30px;margin-bottom:20px;}
|
||||||
|
.dw_syk1yxzc{}
|
||||||
|
.dw_emailsr{ width:278px; height:44px; border:solid 1px #cbcbcb; padding-left:10px; font-size:15px; color:#636363;}
|
||||||
|
.syzcbtn{ width:165px; height:50px; background:url(../images/dw_bgico.png) no-repeat 0 0; border:0; color:#fff; font-size:20px; font-family:Microsoft YaHei; position:relative; top:3px; left:-15px; cursor:pointer;}
|
||||||
|
.dw_syk2{ height:147px; background-color:#f8f8f8;}
|
||||||
|
.dw_syk2n{ width:958px; margin:0 auto; padding-top:30px; background:url(../images/dw_pic07.png) no-repeat 0 60px; overflow:hidden;}
|
||||||
|
.dw_syk2n ul{ width:710px; margin:0 auto; overflow:hidden;}
|
||||||
|
.dw_syk2n ul li{ width:90px; text-align:center; float:left; margin:0 70px;}
|
||||||
|
.dw_syk2n ul li font{ font-size:16px; color:#595959; font-family:Microsoft YaHei;}
|
||||||
|
.sjwj_ico{ width:58px;height:58px; background:url(../images/dw_bgico.png) no-repeat -166px 0; display:block; margin:0 auto;}
|
||||||
|
.fbwj_ico{ width:58px;height:58px; background:url(../images/dw_bgico.png) no-repeat -229px 0; display:block; margin:0 auto;}
|
||||||
|
.sjsj_ico{ width:58px;height:58px; background:url(../images/dw_bgico.png) no-repeat -291px 0; display:block; margin:0 auto;}
|
||||||
|
.dw_syk3{ background:url(../images/dw_pic03.jpg) repeat-x 0 453px;}
|
||||||
|
.dw_syk3n{ text-align:center;}
|
||||||
|
.dw_syk3bt{ font-size:32px; font-family:SimHei; text-align:center; padding:15px 0;}
|
||||||
|
.dw_syk3nr{ width:1000px; margin:0 auto; font-size:16px; color:#686868; font-family:Microsoft YaHei; line-height:25px; letter-spacing:2px; text-align:center;}
|
||||||
|
.dw_syk4{ height:476px; background:url(../images/dw_pic06.png) center;}
|
||||||
|
.dw_syk4bt{ text-align:center; height:137px; line-height:137px; font-size:24px; color:#fff; font-family:Microsoft YaHei; letter-spacing:4px;}
|
||||||
|
.dw_sytxnr{ width:900px; margin:0 auto; overflow:hidden; font-size:16px; color:#fff; font-family:Microsoft YaHei;}
|
||||||
|
.dw_sytxnr ul li{ float:left; width:50px; margin:0 50px 80px 50px; text-align:center;}
|
||||||
|
.dw_sytxnr ul li s{ display:block; width:29px; height:29px; margin:0 auto;}
|
||||||
|
.dw_sywjbdk{ width:915px; margin:0 auto; padding-top:25px; padding-bottom:55px; overflow:hidden;}
|
||||||
|
.dw_sywj{ width:420px; border-right:dashed 1px #ebebeb; padding-right:39px; float:left;}
|
||||||
|
.dw_sybd{ width:410px; padding-left:40px; float:left;}
|
||||||
|
.dw_sywjbdbt{ overflow:hidden;}
|
||||||
|
.dw_sywjbdbtl{ width:380px; height:45px; line-height:45px; font-size:21px; font-family:Microsoft YaHei; color:#676767; float:left;}
|
||||||
|
.dw_sywjbdbtr{ width:30px; height:45px; line-height:45px; float:left;}
|
||||||
|
.dw_sywjbdbtr a{ color:#676767; font-size:15px;}
|
||||||
|
.dw_sywjbdbtr a:hover{ color:#f90;}
|
||||||
|
.dw_sywjbdlb{ padding-top:10px;}
|
||||||
|
.dw_sywjbdlb ul li{ padding-bottom:15px; font-size:15px; overflow:hidden;}
|
||||||
|
.dw_sywjbdlbl{ width:296px; float:left;}
|
||||||
|
.dw_sywjbdlbl a{ color:#676767;}
|
||||||
|
.dw_sywjbdlbr{ float:left; color:#B7B7B7; font-family:arial;}
|
||||||
|
.dw_sywjbdlbl a:hover{ color:#f90;}
|
||||||
|
.dw_mfzc{ height:118px; background-color:#ebebeb;}
|
||||||
|
.dw_mfzcn{ width:950px; margin:0 auto;}
|
||||||
|
.dw_mfzcl{ width:500px; height:118px; float:left; line-height:118px; font-size:21px; color:#676767; font-family:Microsoft YaHei;}
|
||||||
|
.dw_mfzcr{ width:450px; height:88px; padding-top:30px; float:left;}
|
||||||
|
.dw_foot{ padding-top:35px; text-align:center;padding-bottom: 10px;}
|
||||||
|
.dw_footnav{ color:#464646; margin-bottom:8px;}
|
||||||
|
.dw_footnav a{ color:#464646; font-family:Microsoft YaHei; margin:0px 10px;}
|
||||||
|
.dw_footnav a:hover{ color:#f90;}
|
||||||
|
.dw_footcopy{ color:#676767; text-align:center; font-family:Microsoft YaHei; line-height:22px;}
|
||||||
|
.dw_footcopy p{line-height: 30px;}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.dw_content{ width:1000px; margin:0 auto; padding-bottom:50px; overflow:hidden;}
|
||||||
|
.dw_topmfzc{ padding:35px 25px 35px 25px; overflow:hidden;}
|
||||||
|
.dw_mfzcwz{ width:365px; height:36px; line-height:36px; font-size:19px; color:#929191; font-family:Microsoft YaHei; float:left;}
|
||||||
|
.dw_mfzcnr{ width:585px; height:36px; float:left; padding:0;}
|
||||||
|
.dw_mfzcsr{ width:400px; height:34px; line-height:34px; padding:0 10px; border:solid 1px #cfcfcf; font-size:14px; font-family:Microsoft YaHei; vertical-align:top;}
|
||||||
|
.dw_mfzcbtn{ width:131px; height:36px; letter-spacing:2px; background:url(../images/dw_bgico.png) no-repeat 0 -61px; border:0; cursor:pointer; color:#fff; font-size:19px; font-family:Microsoft YaHei; position:relative; left:-5px; margin:0;}
|
||||||
|
.dw_left{ width:224px; float:left; margin-right:12px;}
|
||||||
|
.dw_leftmk{ border:solid 1px #b4cfe4; margin-bottom:10px;}
|
||||||
|
.dw_leftmkbt{ height:40px; background-color:#f7f7f7; line-height:40px; text-align:center; color:#333232; font-size:16px; font-family:Microsoft YaHei;}
|
||||||
|
.dw_leftmkbt s{ display:inline-block; width:16px; height:13px; background:url(../images/dw_bgico.png) no-repeat 0 -106px; margin-right:5px; position:relative; top:1px;}
|
||||||
|
.dw_leftmknr{ padding:7px 0 10px 0;}
|
||||||
|
.dw_leftmknr ul li{ height:37px; margin-bottom:9px; text-align:center; line-height:37px; font-family:Microsoft YaHei; font-size:15px;}
|
||||||
|
.dw_leftmknr ul li.cur{ background:url(../images/dw_pic08.png) repeat-y 0 0; border-top:solid 1px #F7F7F7; border-bottom:solid 1px #F7F7F7;}
|
||||||
|
.dw_leftmknr ul li a{ color:#81898D;}
|
||||||
|
.dw_leftmknr ul li a:hover{ color:#f90;}
|
||||||
|
.dw_right{ width:762px; float:left;}
|
||||||
|
.dw_mbgs{ border:solid 1px #b4cfe4;}
|
||||||
|
.dw_mbgsbt{ height:38px; line-height:38px; padding:0 20px; background-color:#f9f9f9; color:#343333; font-family:Microsoft YaHei; font-size:16px;}
|
||||||
|
.dw_mbgsbtl{ float:left;}
|
||||||
|
.dw_gsbtback{ float:right;}
|
||||||
|
.dw_gsbtback a{ color:#343333;}
|
||||||
|
.dw_gsbtback a:hover{ color:#f90;}
|
||||||
|
.dw_mbgsnr{ padding:20px;}
|
||||||
|
.dw_mbgsnrk1{ width:100%; border-bottom:solid 1px #edeeef; padding-bottom:20px; position:relative; display:table;}
|
||||||
|
.dw_zzsj{ width:455px; float:left; font-family:Microsoft YaHei; color:#81898d; font-size:13px;}
|
||||||
|
.dw_yyxzhd{ float:left;}
|
||||||
|
.dw_yyxzhd ul li.btn{ float:left; width:81px; height:32px; margin-left:5px; border:solid 1px #e2e6eb; font-size:14px; font-family:Microsoft YaHei; color:#81898d; text-align:center; line-height:32px; cursor:pointer; position:relative;}
|
||||||
|
.dw_yyxzhd ul li s{ width:9px; height:5px; display:inline-block; background:url(../images/dw_bgico.png) no-repeat -20px -106px; margin-left:3px; margin-bottom:2px;}
|
||||||
|
.xzlist{ position:absolute; left:-1px; top:32px; width:81px; border:solid 1px #e2e6eb; background-color:#fff; display:none;}
|
||||||
|
.xzlist ul li{ height:32px; line-height:32px; font-size:14px; color:#2f383e; font-family:Microsoft YaHei;}
|
||||||
|
.xzlist ul li:hover{ background-color:#5b9fd0; color:#fff;}
|
||||||
|
.yymb{ background-color:#5b9fd0; color:#fff !important;}
|
||||||
|
.dw_mbwjbt{ padding:22px 0; text-align:center; font-size:19px; font-family:Microsoft YaHei; color:#484646;}
|
||||||
|
.dw_mbwjgs{ padding:10px 0 15px 0;}
|
||||||
|
.dw_mbwjgs p{ font-size:15px; font-family:Microsoft YaHei; color:#6b6b6b; line-height:25px; text-indent:2em;}
|
||||||
|
.dw_mbwjlb{ padding-left:23px; padding-bottom:30px;}
|
||||||
|
.dw_mbwjlb ul li{ font-size:15px; font-family:Microsoft YaHei; color:#6b6b6b; line-height:25px;}
|
||||||
|
.dw_yyxzhd2{ width:264px; height:34px; margin:0 auto;}
|
||||||
|
.dw_yyxzhd2 ul li.btn{ float:left; width:81px; height:32px; margin-left:5px; border:solid 1px #e2e6eb; font-size:14px; font-family:Microsoft YaHei; color:#81898d; text-align:center; line-height:32px; cursor:pointer; position:relative;}
|
||||||
|
.dw_yyxzhd2 ul li s{ width:9px; height:5px; display:inline-block; background:url(../images/dw_bgico.png) no-repeat -20px -106px; margin-left:3px; margin-bottom:2px;}
|
||||||
|
|
||||||
|
|
||||||
|
.dw_gnydt{ width:100%; height:400px;
|
||||||
|
background:url(../images/dw_pic04.jpg) no-repeat center top;
|
||||||
|
/* background:url("../images/style-model/6608914805422388314.jpg") no-repeat center top; */
|
||||||
|
}
|
||||||
|
.dw_gnynr{ overflow:hidden; margin:0 auto;}
|
||||||
|
.dw_gnyzdy{ background-color:#fff; padding-bottom:77px;}
|
||||||
|
.dw_gnyzdywg{ width:1000px; margin:0 auto; padding-top:85px; overflow:hidden;}
|
||||||
|
.dw_gnyzdyl{ float:left; margin-right:53px;}
|
||||||
|
.dw_gnyzdyr{ float:left; width:340px; padding-top:85px;}
|
||||||
|
.dw_gnygnbt{ font-size:32px; font-family:'方正黑体简体'; margin-bottom:23px;}
|
||||||
|
.dw_gnymksm{ font-family:"微软雅黑"; color:#717171; font-size:16px; line-height:24px; margin-bottom:20px;}
|
||||||
|
.dw_gnyzdylb ul li{ background:url(../images/dw_pic09.png) no-repeat 0 6px; padding-left:15px; font-size:13px; color:#919191; font-family:"微软雅黑"; line-height:22px;}
|
||||||
|
.dw_gnysjbjw{ background-color:#F8F8F8; padding-top:112px; padding-bottom:178px;}
|
||||||
|
.dw_gnysjbj{ width:1000px; margin:0 auto; overflow:hidden;}
|
||||||
|
.dw_gnysjbjl{ width:350px; float:left; padding-top:125px; margin-right:50px;}
|
||||||
|
.dw_gnysjbjr{ width:600px; float:left;}
|
||||||
|
.dw_gnydtxw{ padding-top:84px; padding-bottom:84px;}
|
||||||
|
.dw_gnydtx{ overflow:hidden;width:1000px; margin:0 auto;}
|
||||||
|
.dw_gnydtxl{ width:465px; float:left; margin-right:145px;}
|
||||||
|
.dw_gnydtxr{ width:345px; float:left; padding-top:150px;}
|
||||||
|
.dw_gnydtljw{ padding-top:74px; padding-bottom:74px; background-color:#F8F8F8;}
|
||||||
|
.dw_gnydtlj{ overflow:hidden; width:1000px; margin:0 auto;}
|
||||||
|
.dw_gnydtljl{ width:345px; float:left; margin-right:105px; padding-top:140px;}
|
||||||
|
.dw_gnydtljr{ width:495px; float:left;}
|
||||||
|
.dw_gnysjtjw{ padding-top:108px; padding-bottom:105px;}
|
||||||
|
.dw_gnysjtj{ overflow:hidden; width:1000px; margin:0 auto;}
|
||||||
|
.dw_gnysjtjl{ width:555px; float:left; margin-right:65px;}
|
||||||
|
.dw_gnysjtjr{ width:340px; float:left; padding-top:130px;}
|
||||||
|
.dw_gnydqdw{ padding-top:128px; padding-bottom:142px; background-color:#F8F8F8;}
|
||||||
|
.dw_gnydqd{ overflow:hidden; width:1000px; margin:0 auto;}
|
||||||
|
.dw_gnydqdl{ width:338px; float:left; padding-top:100px; margin-right:75px;}
|
||||||
|
.dw_gnydqdr{ width:542px; float:left;}
|
||||||
|
|
||||||
|
.friend_links a{
|
||||||
|
color: gray! important;
|
||||||
|
}
|
@ -0,0 +1,312 @@
|
|||||||
|
@CHARSET "UTF-8";
|
||||||
|
body{
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
.root-body,.root-body1{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.root-body{
|
||||||
|
/*background:white;*/
|
||||||
|
}
|
||||||
|
a{
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-body{
|
||||||
|
|
||||||
|
/* -webkit-box-shadow: 0 0 25px #1F91E6;
|
||||||
|
box-shadow: 0 0 25px #1F91E6;
|
||||||
|
background-color: #DADADA; */
|
||||||
|
width: 100%;
|
||||||
|
position: fixed;
|
||||||
|
border-bottom: 3px solid #08A2BE;/* #1F91E6*/
|
||||||
|
opacity: .8;
|
||||||
|
filter: alpha(opacity=80);
|
||||||
|
-ms-filter: "alpha(opacity=80)";
|
||||||
|
background-color: white;
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
.top-body-content{
|
||||||
|
width: 80%;
|
||||||
|
margin: 0px auto;
|
||||||
|
}
|
||||||
|
.top-body-content-logo{
|
||||||
|
width: 220px;
|
||||||
|
height: 40px;
|
||||||
|
/* float: right; */
|
||||||
|
}
|
||||||
|
.top-body-content-h1 {
|
||||||
|
float: left;
|
||||||
|
height: 25px;
|
||||||
|
display: table;
|
||||||
|
padding-top: 10px;
|
||||||
|
}
|
||||||
|
.top-body-content-h1 h1{
|
||||||
|
font-size: 20px;
|
||||||
|
color: #333;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.middle-body,.middle-body1{
|
||||||
|
/* width: 80%; */
|
||||||
|
width:800px;
|
||||||
|
margin: 0px auto;
|
||||||
|
|
||||||
|
|
||||||
|
padding: 50px 20px 10px 20px;
|
||||||
|
*padding-top:40px;
|
||||||
|
_padding-top:10px;
|
||||||
|
background-position: center top;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
/*
|
||||||
|
-webkit-box-shadow: 0 0 5px #aaa;
|
||||||
|
box-shadow: 0 0 5px #aaa;
|
||||||
|
|
||||||
|
- webkit-border-radius: 5px;
|
||||||
|
-moz-border-radius: 5px;
|
||||||
|
border-radius: 5px; */
|
||||||
|
border: 1px solid rgb(219, 218, 218);
|
||||||
|
}
|
||||||
|
.middle-body{
|
||||||
|
height: 200px;
|
||||||
|
background: #EFEFEF;
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
.middle-body1{
|
||||||
|
margin-top:10px;
|
||||||
|
padding: 15px;
|
||||||
|
-webkit-box-shadow: 0 0 15px #aaa;
|
||||||
|
box-shadow: 0 0 15px #aaa;
|
||||||
|
}
|
||||||
|
|
||||||
|
.middle-body-title {
|
||||||
|
border-bottom: 3px solid #676767;
|
||||||
|
}
|
||||||
|
.middle-body-title h3{
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 5px;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
}
|
||||||
|
.middle-body-title h4{
|
||||||
|
margin: 0px;
|
||||||
|
padding-top: 5px;
|
||||||
|
color: #676767;
|
||||||
|
padding-bottom: 8px;
|
||||||
|
}
|
||||||
|
.middle-body-title p{
|
||||||
|
margin: 5px 0px;
|
||||||
|
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 20px;
|
||||||
|
text-indent: 2em;
|
||||||
|
padding: 0px 25px;
|
||||||
|
color: #333;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
}
|
||||||
|
.middle-body-content{
|
||||||
|
padding: 10px 35px;
|
||||||
|
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #373A3D;
|
||||||
|
}
|
||||||
|
.r-qu-body{
|
||||||
|
padding: 10px;
|
||||||
|
clear: both;
|
||||||
|
display: table;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.r-qu-body:HOVER{
|
||||||
|
background-color: #FBFBFB;
|
||||||
|
}
|
||||||
|
.r-qu-body-title{
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 5px;
|
||||||
|
/* background-color: #C2D7E8; */
|
||||||
|
/* border: 1px solid #97CAE8; */
|
||||||
|
}
|
||||||
|
.r-qu-body-title p{
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
.r-qu-body-ul1{
|
||||||
|
list-style: none;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 5px 10px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.r-qu-body-ul1 li{
|
||||||
|
padding: 5px;
|
||||||
|
padding-right: 25px;
|
||||||
|
display: table;
|
||||||
|
width: 95%;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.r-qu-body-ul1 li:HOVER {
|
||||||
|
/* background-color: #EAEAEA; */
|
||||||
|
cursor: default;
|
||||||
|
/* -webkit-box-shadow: 0 0 5px #aaa;
|
||||||
|
box-shadow: 0 0 5px #aaa; */
|
||||||
|
background: #E8F2FE;
|
||||||
|
}
|
||||||
|
.r-qu-body-ul3 li:HOVER{
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
.r-qu-body-ul2 li{
|
||||||
|
float: left;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quItem-ul{
|
||||||
|
list-style: none;
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
table-layout: fixed;
|
||||||
|
}
|
||||||
|
.quItem-ul .quItemOptionName{
|
||||||
|
margin-top: 1px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.quItem-ul .optionMulfbk{
|
||||||
|
margin-top: 6px;
|
||||||
|
}
|
||||||
|
.quItem-ul p{
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
.quItem-ul li{
|
||||||
|
float: left;
|
||||||
|
display: table;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
word-wrap: break-word;
|
||||||
|
word-break: break-all;
|
||||||
|
width: auto;
|
||||||
|
max-width: 930px;
|
||||||
|
line-height: 19px;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #373A3D;
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: inherit;
|
||||||
|
/* _line-height: 20px;
|
||||||
|
max-width: 95%; */
|
||||||
|
}
|
||||||
|
.quItem-ul input[type='checkbox'],.quItem-ul input[type='radio']{
|
||||||
|
/* margin-top: 0px; */
|
||||||
|
/* margin-top: 4px; */
|
||||||
|
/* _margin-top:0px; */
|
||||||
|
}
|
||||||
|
.quItem-ul01li input[type='checkbox'],.quItem-ul01li input[type='radio']{
|
||||||
|
/* margin-top: 3px; */
|
||||||
|
}
|
||||||
|
.quItem-ul01li div{
|
||||||
|
float: left;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.quItem-ul01li .inputCk{
|
||||||
|
padding-top: 4px;
|
||||||
|
}
|
||||||
|
.quItem-ul01li .quItemName{
|
||||||
|
padding-top: 5px;
|
||||||
|
}
|
||||||
|
.quItem-ul li:HOVER {
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-body-btn{
|
||||||
|
border-top:1px solid gray;
|
||||||
|
padding:15px 10px 10px 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-copyright{
|
||||||
|
margin-top:20px;
|
||||||
|
width: 100%;
|
||||||
|
height: 30px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.msg1{
|
||||||
|
color: #676767;
|
||||||
|
}
|
||||||
|
.msg2{
|
||||||
|
color: #D04E0F;
|
||||||
|
}
|
||||||
|
a.msg21:HOVER {
|
||||||
|
/* color: #2EADC7; */
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.qusTable{
|
||||||
|
margin-top: 5px;
|
||||||
|
margin-left: 20px;
|
||||||
|
border-collapse:collapse;
|
||||||
|
table-layout:fixed;
|
||||||
|
word-break: break-all;
|
||||||
|
/* border: 1px solid #CE74B1; */
|
||||||
|
|
||||||
|
/* -webkit-box-shadow: 0 0 5px #aaa;
|
||||||
|
box-shadow: 0 0 5px #aaa; */
|
||||||
|
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
.qusTable tr th{
|
||||||
|
background: #D3D3D3;
|
||||||
|
/* background:#CE74B1; */
|
||||||
|
padding: 3px 6px;
|
||||||
|
color: white;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
.qusTable tr td{
|
||||||
|
/* border-bottom: 1px solid gray; */
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
.qusTable tr:hover{
|
||||||
|
background: #E8F2FE;
|
||||||
|
}
|
||||||
|
.qusTable p{
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
.quItemNote{
|
||||||
|
float:left;
|
||||||
|
padding-left: 30px;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #939393;
|
||||||
|
}
|
||||||
|
|
||||||
|
.priviewPositionBtn{
|
||||||
|
position: fixed;
|
||||||
|
right: 20px;
|
||||||
|
top: 12px;
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
.suQuTable{
|
||||||
|
border: none;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.suQuTable tr{
|
||||||
|
|
||||||
|
}
|
||||||
|
.suQuTable tr td{
|
||||||
|
border: none! important;
|
||||||
|
height: 32px! important;
|
||||||
|
/* padding-right: 0px! important; */
|
||||||
|
}
|
||||||
|
.suQuTable tr td p{
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
.suQuTable tr:HOVER{
|
||||||
|
background: #E8F2FE! important;
|
||||||
|
}
|
||||||
|
.bfbTd{
|
||||||
|
color: #F68181;
|
||||||
|
}
|
||||||
|
.tdAnCount{
|
||||||
|
color: #5C5C5C;
|
||||||
|
}
|
@ -0,0 +1,43 @@
|
|||||||
|
select {
|
||||||
|
border: 1px #ddd solid;
|
||||||
|
outline: none;
|
||||||
|
height: 40px;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
.upFileDiv .upAppend {
|
||||||
|
margin-bottom: 8px;
|
||||||
|
border: 1px solid grey;
|
||||||
|
padding: 6px;
|
||||||
|
}
|
||||||
|
.upFileDiv .upAppend a {
|
||||||
|
float: right;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
.sbtn{
|
||||||
|
background: #0887d2;
|
||||||
|
width: 88px;
|
||||||
|
height: 30px;
|
||||||
|
color: #777;
|
||||||
|
background-position: 0 -240px;
|
||||||
|
font-size: 12px;
|
||||||
|
border: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
display: inline-block;
|
||||||
|
zoom: 1;
|
||||||
|
line-height: 30px;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
font-family: "Hiragino Sans GB","Microsoft YaHei","微软雅黑",tahoma,arial,simsun,"宋体";
|
||||||
|
background: rgb(79, 139, 255);
|
||||||
|
}
|
||||||
|
.sbtn_0{
|
||||||
|
background-position: 0 -200px;
|
||||||
|
background: white;
|
||||||
|
border: 1px dashed grey;
|
||||||
|
}
|
||||||
|
.sbtn_0:hover{
|
||||||
|
background-position: 0 -200px;
|
||||||
|
color: #fff;
|
||||||
|
background: dodgerblue;
|
||||||
|
border-color: dodgerblue;
|
||||||
|
}
|
@ -0,0 +1,304 @@
|
|||||||
|
body {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
color: #333;
|
||||||
|
font-family: Tahoma, Geneva, sans-serif;
|
||||||
|
font-size: 13px;
|
||||||
|
/* line-height: 1.7em; */
|
||||||
|
background-color: #e9e6e6;
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
background-position: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
a,a:link,a:visited {
|
||||||
|
color: #3d8e7d;
|
||||||
|
color: #4C4C4C;
|
||||||
|
font-weight: normal;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
color: #67ACC2;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
font-style: italic;
|
||||||
|
margin: 0 0 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
cite {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #3d8e7d;
|
||||||
|
}
|
||||||
|
|
||||||
|
cite span {
|
||||||
|
color: #3d8e7d;
|
||||||
|
}
|
||||||
|
|
||||||
|
em {
|
||||||
|
color: #3d8e7d;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,h2,h3,h4,h5,h6 {
|
||||||
|
color: #000;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 34px;
|
||||||
|
margin: 0 0 20px;
|
||||||
|
padding: 5px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 28px;
|
||||||
|
margin: 0 0 15px;
|
||||||
|
padding: 5px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 24px;
|
||||||
|
margin: 0 0 15px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size: 18px;
|
||||||
|
margin: 0 0 15px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-size: 16px;
|
||||||
|
margin: 0 0 10px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h6 {
|
||||||
|
font-size: 14px;
|
||||||
|
margin: 0 0 5px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cleaner {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h10 {
|
||||||
|
height: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h20 {
|
||||||
|
height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h30 {
|
||||||
|
height: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h40 {
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h50 {
|
||||||
|
height: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h60 {
|
||||||
|
height: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#body_wrapper {
|
||||||
|
width: 100%;
|
||||||
|
/* background: url(../images/body.png) top center no-repeat; */
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrapper {
|
||||||
|
/* width: 940px; */
|
||||||
|
width:1000px;
|
||||||
|
padding: 0 10px;
|
||||||
|
margin: 0 auto;
|
||||||
|
/* background: url(../images/body.png) top center no-repeat; */
|
||||||
|
}
|
||||||
|
#header {
|
||||||
|
/* width: 940px; */
|
||||||
|
width:1000px;
|
||||||
|
height: 50px;
|
||||||
|
padding-top: 5px;
|
||||||
|
}
|
||||||
|
#header a:hover{
|
||||||
|
/* text-decoration: none; */
|
||||||
|
}
|
||||||
|
|
||||||
|
#site_title {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#site_title h1 {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#site_title h1 a {
|
||||||
|
display: block;
|
||||||
|
width: 120px;
|
||||||
|
height: 45px;
|
||||||
|
color: #fff;
|
||||||
|
text-indent: -10000px;
|
||||||
|
background: url(../images/logo/logo.png) no-repeat top left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#search_box {
|
||||||
|
float: right;
|
||||||
|
margin-top: 20px;
|
||||||
|
/* width: 240px; */
|
||||||
|
height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#search_box form {
|
||||||
|
clear: both;
|
||||||
|
width: 240px;
|
||||||
|
height: 24px;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#searchfield {
|
||||||
|
display: block;
|
||||||
|
height: 24px;
|
||||||
|
width: 228px;
|
||||||
|
padding: 0 5px;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #333;
|
||||||
|
background: none;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* menu */
|
||||||
|
#menu {
|
||||||
|
clear: both;
|
||||||
|
/* width: 940px; */
|
||||||
|
width:1000px;
|
||||||
|
height: 50px;
|
||||||
|
background: url(../images/menu.png);
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
#menu ul{
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
#menu ul li {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
#menu ul li a {
|
||||||
|
float: left;
|
||||||
|
display: block;
|
||||||
|
width: 130px;
|
||||||
|
height: 30px;
|
||||||
|
padding: 10px 0 0 0;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #67acc2;
|
||||||
|
text-shadow: 1px 1px 1px #fff;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
font-weight: 700;
|
||||||
|
outline: none;
|
||||||
|
border: none;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
background: url(../images/menu_divider.png) right repeat-y;
|
||||||
|
}
|
||||||
|
#menu ul li a:hover,#menu ul li a.currentNav {
|
||||||
|
color: #666;
|
||||||
|
text-shadow: 1px 1px 1px #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#menu ul .last {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
.siteTitleNode{
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 65px;
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* end of menu */
|
||||||
|
#footer_wrapper {
|
||||||
|
clear: both;
|
||||||
|
width: 100%;
|
||||||
|
/* background: #EDEBEB; */
|
||||||
|
padding-top:15px;
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer {
|
||||||
|
clear: both;
|
||||||
|
padding: 10px 0;
|
||||||
|
color: #000;
|
||||||
|
text-align: center;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer_menu a{
|
||||||
|
color: #333;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.footer_menu a:HOVER{
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** ºǫ́²Ëµ¥ **/
|
||||||
|
#menuAdmin{
|
||||||
|
clear: both;
|
||||||
|
width: 100%;
|
||||||
|
height: 36px;
|
||||||
|
background: #459935;
|
||||||
|
/* background: #F59797; */
|
||||||
|
background-color: #65C9E6;
|
||||||
|
}
|
||||||
|
#menuAdmin ul {
|
||||||
|
/* width: 940px; */
|
||||||
|
width:1000px;
|
||||||
|
padding: 0px 10px;
|
||||||
|
margin: 0px auto;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
#menuAdmin ul li{
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
#menuAdmin ul li a {
|
||||||
|
float: left;
|
||||||
|
display: block;
|
||||||
|
width:120px;
|
||||||
|
margin-left:2px;
|
||||||
|
padding: 8px 0px;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 20px;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
border: none;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
}
|
||||||
|
#menuAdmin ul li a:hover,#menuAdmin ul li a.currentAdmin{
|
||||||
|
background: #37712b;
|
||||||
|
background: #61BCD7;
|
||||||
|
}
|
After Width: | Height: | Size: 774 B |
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 731 B |
After Width: | Height: | Size: 391 KiB |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 312 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 72 KiB |
After Width: | Height: | Size: 193 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 103 KiB |
After Width: | Height: | Size: 97 KiB |
After Width: | Height: | Size: 66 KiB |
After Width: | Height: | Size: 157 KiB |
After Width: | Height: | Size: 45 KiB |
After Width: | Height: | Size: 172 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 929 B |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 962 KiB |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 47 KiB |
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 103 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 697 B |
After Width: | Height: | Size: 5.8 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 5.8 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 84 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 961 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 526 B |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 635 B |