├── .gitignore
├── less
├── README.md
├── aiplat.less
├── cmreset.less
└── cmstyle.less
├── less.js
├── package.json
├── lib
├── aiplat.min.css
├── aiplat.min.wxss
├── aiplat.css
├── aiplat.wxss
├── cmreset.min.css
├── cmreset.min.wxss
├── cmreset.css
├── cmreset.wxss
├── cmstyle.min.css
└── cmstyle.min.wxss
├── LICENSE
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | .vscode/
3 | .idea/
4 | .vs/
5 | nbproject/
6 | npm-debug.log
--------------------------------------------------------------------------------
/less/README.md:
--------------------------------------------------------------------------------
1 | #创建者:womendi@qq.com
2 | #日期:2017-12-01
3 | #只需要在lessConf.js配置需要生成css的less文件
--------------------------------------------------------------------------------
/less.js:
--------------------------------------------------------------------------------
1 | const path = require('path');
2 | global.buildDir = path.join(__dirname, 'less');
3 | global.staticDir = path.join(__dirname, 'lib');
4 | require('./build/npmCss')();
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "cmui",
3 | "version": "1.0.0",
4 | "description": "aiplat.com",
5 | "author": "aiplat.com",
6 | "private": true,
7 | "scripts": {
8 | "build": "node less.js"
9 | },
10 | "dependencies": {},
11 | "devDependencies": {
12 | "less": "^2.7.3",
13 | "less-middleware": "^2.2.1"
14 | }
15 | }
--------------------------------------------------------------------------------
/lib/aiplat.min.css:
--------------------------------------------------------------------------------
1 | img[lazy=loading]{background:#f4f4f4;border-radius:.5em}img[lazy=error]{background:#f4f4f4;border-radius:.5em}.cm_c1b{background:#fd1414 !important}.cm_c1c{color:#fd1414 !important}.cm_c2b{background:#000 !important}.cm_c2c{color:#000 !important}.cm_c3b{background:#696867 !important}.cm_c3c{color:#696867 !important}.cm_c4b{background:#9b9b9b !important}.cm_c4c{color:#9b9b9b !important}.cm_c5b{background:#dfddda !important}.cm_c5c{color:#dfddda !important}.cm_c6b{background:#efefee !important}.cm_c6c{color:#efefee !important}.cm_c7b{background:#fff !important}.cm_c7c{color:#fff !important}.cm_c8b{background:#fd1414 !important}.cm_c8c{color:#fd1414 !important}.cm_c9b{background:#ff8200 !important}.cm_c9c{color:#ff8200 !important}
--------------------------------------------------------------------------------
/lib/aiplat.min.wxss:
--------------------------------------------------------------------------------
1 | img[lazy=loading]{background:#f4f4f4;border-radius:.5em}img[lazy=error]{background:#f4f4f4;border-radius:.5em}.cm_c1b{background:#fd1414 !important}.cm_c1c{color:#fd1414 !important}.cm_c2b{background:#000 !important}.cm_c2c{color:#000 !important}.cm_c3b{background:#696867 !important}.cm_c3c{color:#696867 !important}.cm_c4b{background:#9b9b9b !important}.cm_c4c{color:#9b9b9b !important}.cm_c5b{background:#dfddda !important}.cm_c5c{color:#dfddda !important}.cm_c6b{background:#efefee !important}.cm_c6c{color:#efefee !important}.cm_c7b{background:#fff !important}.cm_c7c{color:#fff !important}.cm_c8b{background:#fd1414 !important}.cm_c8c{color:#fd1414 !important}.cm_c9b{background:#ff8200 !important}.cm_c9c{color:#ff8200 !important}
--------------------------------------------------------------------------------
/less/aiplat.less:
--------------------------------------------------------------------------------
1 | /*by womendi*/
2 | img[lazy=loading] {
3 | background: #f4f4f4;
4 | border-radius: 0.5em;
5 | }
6 | img[lazy=error] {
7 | background: #f4f4f4;
8 | border-radius: 0.5em;
9 | }
10 | /*重置*/
11 | .cm_c1b{background:rgb(253,20,20)!important;}
12 | .cm_c1c{color:rgb(253,20,20)!important;}/*c1*/
13 | .cm_c2b{background:rgb(0,0,0)!important;}
14 | .cm_c2c{color:rgb(0,0,0)!important;}/*c2*/
15 | .cm_c3b{background:rgb(105,104,103)!important;}
16 | .cm_c3c{color:rgb(105,104,103)!important;}/*c3*/
17 | .cm_c4b{background:rgb(155,155,155)!important;}
18 | .cm_c4c{color:rgb(155,155,155)!important;}/*c4*/
19 | .cm_c5b{background:rgb(223,221,218)!important;}
20 | .cm_c5c{color:rgb(223,221,218)!important;}/*c5*/
21 | .cm_c6b{background:rgb(239,239,238)!important;}
22 | .cm_c6c{color:rgb(239,239,238)!important;}/*c6*/
23 | .cm_c7b{background:rgb(255,255,255)!important;}
24 | .cm_c7c{color:rgb(255,255,255)!important;}/*c7*/
25 | .cm_c8b{background:#fd1414!important;}
26 | .cm_c8c{color:#fd1414!important;}/*c8*/
27 | .cm_c9b{background:rgb(255,130,0)!important;}
28 | .cm_c9c{color:rgb(255,130,0)!important;}/*c9*/
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2011-2016 Twitter, Inc.
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
22 |
--------------------------------------------------------------------------------
/lib/aiplat.css:
--------------------------------------------------------------------------------
1 | /*by womendi*/
2 | img[lazy=loading] {
3 | background: #f4f4f4;
4 | border-radius: 0.5em;
5 | }
6 | img[lazy=error] {
7 | background: #f4f4f4;
8 | border-radius: 0.5em;
9 | }
10 | /*重置*/
11 | .cm_c1b {
12 | background: #fd1414 !important;
13 | }
14 | .cm_c1c {
15 | color: #fd1414 !important;
16 | }
17 | /*c1*/
18 | .cm_c2b {
19 | background: #000000 !important;
20 | }
21 | .cm_c2c {
22 | color: #000000 !important;
23 | }
24 | /*c2*/
25 | .cm_c3b {
26 | background: #696867 !important;
27 | }
28 | .cm_c3c {
29 | color: #696867 !important;
30 | }
31 | /*c3*/
32 | .cm_c4b {
33 | background: #9b9b9b !important;
34 | }
35 | .cm_c4c {
36 | color: #9b9b9b !important;
37 | }
38 | /*c4*/
39 | .cm_c5b {
40 | background: #dfddda !important;
41 | }
42 | .cm_c5c {
43 | color: #dfddda !important;
44 | }
45 | /*c5*/
46 | .cm_c6b {
47 | background: #efefee !important;
48 | }
49 | .cm_c6c {
50 | color: #efefee !important;
51 | }
52 | /*c6*/
53 | .cm_c7b {
54 | background: #ffffff !important;
55 | }
56 | .cm_c7c {
57 | color: #ffffff !important;
58 | }
59 | /*c7*/
60 | .cm_c8b {
61 | background: #fd1414!important;
62 | }
63 | .cm_c8c {
64 | color: #fd1414!important;
65 | }
66 | /*c8*/
67 | .cm_c9b {
68 | background: #ff8200 !important;
69 | }
70 | .cm_c9c {
71 | color: #ff8200 !important;
72 | }
73 | /*c9*/
74 |
--------------------------------------------------------------------------------
/lib/aiplat.wxss:
--------------------------------------------------------------------------------
1 | /*by womendi*/
2 | img[lazy=loading] {
3 | background: #f4f4f4;
4 | border-radius: 0.5em;
5 | }
6 | img[lazy=error] {
7 | background: #f4f4f4;
8 | border-radius: 0.5em;
9 | }
10 | /*重置*/
11 | .cm_c1b {
12 | background: #fd1414 !important;
13 | }
14 | .cm_c1c {
15 | color: #fd1414 !important;
16 | }
17 | /*c1*/
18 | .cm_c2b {
19 | background: #000000 !important;
20 | }
21 | .cm_c2c {
22 | color: #000000 !important;
23 | }
24 | /*c2*/
25 | .cm_c3b {
26 | background: #696867 !important;
27 | }
28 | .cm_c3c {
29 | color: #696867 !important;
30 | }
31 | /*c3*/
32 | .cm_c4b {
33 | background: #9b9b9b !important;
34 | }
35 | .cm_c4c {
36 | color: #9b9b9b !important;
37 | }
38 | /*c4*/
39 | .cm_c5b {
40 | background: #dfddda !important;
41 | }
42 | .cm_c5c {
43 | color: #dfddda !important;
44 | }
45 | /*c5*/
46 | .cm_c6b {
47 | background: #efefee !important;
48 | }
49 | .cm_c6c {
50 | color: #efefee !important;
51 | }
52 | /*c6*/
53 | .cm_c7b {
54 | background: #ffffff !important;
55 | }
56 | .cm_c7c {
57 | color: #ffffff !important;
58 | }
59 | /*c7*/
60 | .cm_c8b {
61 | background: #fd1414!important;
62 | }
63 | .cm_c8c {
64 | color: #fd1414!important;
65 | }
66 | /*c8*/
67 | .cm_c9b {
68 | background: #ff8200 !important;
69 | }
70 | .cm_c9c {
71 | color: #ff8200 !important;
72 | }
73 | /*c9*/
74 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # cmui
2 | ## 超萌框架,快捷布局
3 | - 自己写的布局框架,自适应跨平台设备
4 | - 可应用于web、app、小程序
5 | - 下一版本将添加组件形式
6 |
7 | - 实例1 webapp网站 AI智能空间 https://aiplat.com
8 | - 实例2 跨平台app 亲信地铁 腾讯应用宝或苹果appstore搜索‘亲信地铁’、web访问http://m.aiplat.com/metro
9 | - 实例3 微信小程序 娱乐计分器
10 |
11 | - cmui包含cmreset.css和cmstyle.css、aiplat.css三个css文件,同时生成可用于微信小程序开发的wxss文件
12 | - 三个文件,gzip压缩后12k
13 |
14 | ---
15 |
16 | # cmreset.css说明
17 | - 1,盒模型采用IE盒子,即css3中的box-sizing值为border-box
18 |
19 | ---
20 |
21 | # cmstyle.css说明
22 | ## 1,栅格系统
23 | - 请在cmstyle.css文件搜索 ‘栅格系统’
24 | - 兼容pc与mobile写法:(pc端以1200px居中,mobile以100%适配)
25 |
\
26 |
\
27 |
\
28 |
\- 显示主体div\<\/li\>
29 |
\ - 显示主体div\<\/li\>
30 |
\ - 显示主体div\<\/li\>
31 |
\ - 显示主体div\<\/li\>
32 |
\ - 显示主体div\<\/li\>
33 |
\<\/ul\>
34 |
\<\/div\>
35 |
\<\/div\>
36 |
37 | ## 2,div单位主要为em(优于rem),其他部分如border小尺寸单位为px
38 | - 例如: .cm_wh2{width:2em;height:2em} 1em等于一个字的字体大小
39 | - 例如: .cm_bb1ce{border-bottom:1px solid #eeeeee}
40 |
41 | ## 3,\cmui\<\/span\>
42 | - 意思cmui字体大小对应.cm_fs05{font-size:0.5em}
43 | - .cm_fs05中cm为cmui的前缀cm,
44 | - .cm_fs05中fs为font-size两个单词各自的首字母集合,所有类命名均类似
45 | - .cm_fs05中05为0.5em大小,em为如上2说明
46 | - .cm_fs06.....cm_fs3--06、07、08、09、1、11、12、13、15,2,3雷同 .cm_fs3{font-size:3em}
47 |
48 | ## 4,以上三个css文件的说明文档还有很多未写,后续完善,多谢支持与赞.
49 |
50 | ---
51 |
52 | # 兼容性
53 | - 1,实测兼容ie8
54 | - 2,兼容手机、电脑、平板等等一切联网设备
55 | - 3,一次布局,适配所有平台
56 | - 4,可应用于web、app、小程序
57 |
58 | # 构建
59 | - 1,$ git clone https://github.com/aiplat/cmui.git
60 | - 2, $ npm install
61 | - 3, 修改less目录下各文件
62 | - 4, $ npm run build
63 | - 5, 构建后的样式目录为lib
--------------------------------------------------------------------------------
/lib/cmreset.min.css:
--------------------------------------------------------------------------------
1 | html{margin:0;padding:0;border:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,code,del,dfn,em,q,dl,dt,dd,ol,ul,li,fieldset,form,legend,caption,tbody,tfoot,thead,article,aside,dialog,figure,footer,header,hgroup,nav,section,button,input,optgroup,select,textarea,view{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none !important}body{background:#fff;font-family:'Microsoft YaHei';word-break:break-all;word-wrap:break-word}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button{overflow:visible}button,select{text-transform:none}button,html input[type='button'],input[type='reset'],input[type='submit']{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}::-webkit-input-placeholder{color:#ccc}:-moz-placeholder{color:#ccc}::-moz-placeholder{color:#ccc}:-ms-input-placeholder{color:#ccc}textarea{overflow:auto}input:focus,textarea:focus,button:focus,select:focus{outline:none}input::-ms-clear{display:none}input[type='checkbox'],input[type='radio']{box-sizing:border-box;padding:0}input[type='number']::-webkit-inner-spin-button,input[type='number']::-webkit-outer-spin-button{height:auto}input[type='search']{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type='search']::-webkit-search-cancel-button,input[type='search']::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0}legend{padding:0;border:0}optgroup{font-weight:bold}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ol,ul,li,pre,th,td,img{border:medium none;margin:0;padding:0}body,button,input,select,textarea{font-size:1em !important;font-family:'Microsoft YaHei' !important}h1,h2,h3,h4,h5,h6{font-size:1em}em{font-style:normal}ul,ol{list-style:none;margin:0 !important}a{text-decoration:none;cursor:pointer;color:#000000}a:active,a:hover{outline:0}a:focus{border:none}a:hover{text-decoration:none}iframe{border:none;margin:0;padding:0}p{width:100%}p img{width:100%}img{border:0;vertical-align:bottom}label{margin:0 !important}
--------------------------------------------------------------------------------
/lib/cmreset.min.wxss:
--------------------------------------------------------------------------------
1 | html{margin:0;padding:0;border:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,code,del,dfn,em,q,dl,dt,dd,ol,ul,li,fieldset,form,legend,caption,tbody,tfoot,thead,article,aside,dialog,figure,footer,header,hgroup,nav,section,button,input,optgroup,select,textarea,view{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none !important}body{background:#fff;font-family:'Microsoft YaHei';word-break:break-all;word-wrap:break-word}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button{overflow:visible}button,select{text-transform:none}button,html input[type='button'],input[type='reset'],input[type='submit']{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}::-webkit-input-placeholder{color:#ccc}:-moz-placeholder{color:#ccc}::-moz-placeholder{color:#ccc}:-ms-input-placeholder{color:#ccc}textarea{overflow:auto}input:focus,textarea:focus,button:focus,select:focus{outline:none}input::-ms-clear{display:none}input[type='checkbox'],input[type='radio']{box-sizing:border-box;padding:0}input[type='number']::-webkit-inner-spin-button,input[type='number']::-webkit-outer-spin-button{height:auto}input[type='search']{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type='search']::-webkit-search-cancel-button,input[type='search']::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0}legend{padding:0;border:0}optgroup{font-weight:bold}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ol,ul,li,pre,th,td,img{border:medium none;margin:0;padding:0}body,button,input,select,textarea{font-size:1em !important;font-family:'Microsoft YaHei' !important}h1,h2,h3,h4,h5,h6{font-size:1em}em{font-style:normal}ul,ol{list-style:none;margin:0 !important}a{text-decoration:none;cursor:pointer;color:#000000}a:active,a:hover{outline:0}a:focus{border:none}a:hover{text-decoration:none}iframe{border:none;margin:0;padding:0}p{width:100%}p img{width:100%}img{border:0;vertical-align:bottom}label{margin:0 !important}
--------------------------------------------------------------------------------
/less/cmreset.less:
--------------------------------------------------------------------------------
1 | /*
2 | -----------------------------------------------------------------
3 | *修 改 人:梁超明 womendi@qq.com
4 | *最近修改:2018.02.07
5 | -----------------------------------------------------------------
6 | */
7 | html{margin:0;padding:0;border:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0, 0, 0, 0);}
8 | body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, q, dl, dt, dd, ol, ul, li, fieldset, form, legend, caption, tbody, tfoot, thead, article, aside, dialog, figure, footer, header, hgroup, nav, section,button,input,optgroup,select,textarea,view{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance: none!important;}
9 | body{background:#fff;font-family:'Microsoft YaHei';word-break:break-all;word-wrap: break-word;}
10 | article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}
11 | audio,canvas,progress,video{display:inline-block;vertical-align:baseline;}
12 | audio:not([controls]){display:none;height:0;}
13 | [hidden],template{display:none;}
14 | abbr[title]{border-bottom:1px dotted;}
15 | b,strong{font-weight:bold;}
16 | dfn{font-style:italic;}
17 | mark{color:#000;background:#ff0;}
18 | small{font-size:80%;}
19 | sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;}
20 | sup{top:-.5em;}
21 | sub{bottom:-.25em;}
22 | svg:not(:root){overflow:hidden;}
23 | figure{margin:1em 40px;}
24 | hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box;}
25 | pre{overflow:auto;}
26 | code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em;}
27 | button{overflow:visible;}
28 | button,select{text-transform:none;}
29 | button,html input[type='button'],input[type='reset'],input[type='submit']{-webkit-appearance:button;cursor:pointer;}
30 | button[disabled],html input[disabled]{cursor:default;}
31 | button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;}
32 | ::-webkit-input-placeholder{color:#ccc;}
33 | :-moz-placeholder{color:#ccc;}
34 | ::-moz-placeholder{color:#ccc;}
35 | :-ms-input-placeholder{color:#ccc;}
36 | textarea{overflow:auto;}
37 | input:focus,textarea:focus,button:focus,select:focus{outline:none;}
38 | input::-ms-clear{display:none;}
39 | input[type='checkbox'],input[type='radio']{box-sizing:border-box;padding:0;}
40 | input[type='number']::-webkit-inner-spin-button,input[type='number']::-webkit-outer-spin-button{height:auto;}
41 | input[type='search']{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;}
42 | input[type='search']::-webkit-search-cancel-button,input[type='search']::-webkit-search-decoration{-webkit-appearance:none;}
43 | fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0;}
44 | legend{padding:0;border:0;}
45 | optgroup{font-weight:bold;}
46 | table{border-spacing:0;border-collapse:collapse;}
47 | td,th{padding:0;}
48 | body, h1, h2, h3, h4, h5, h6, hr, p,blockquote,dl, dt, dd, ol, ul, li,pre,th, td, img{
49 | border:medium none;
50 | margin: 0;
51 | padding: 0;
52 | }
53 | body,button,input,select,textarea{font-size: 1em!important; font-family: 'Microsoft YaHei'!important; }
54 | h1, h2, h3, h4, h5, h6 { font-size: 1em; }
55 | em{font-style:normal;}
56 | ul, ol { list-style: none;margin:0!important;}
57 | a { text-decoration: none; cursor:pointer;color:#000000}
58 | a:active,a:hover{outline:0;}
59 | a:focus{border:none;}
60 | a:visited {}
61 | a:hover { text-decoration: none; }
62 | iframe{ border:none; margin: 0; padding: 0;}
63 | p{width:100%}
64 | p img{width:100%}
65 | img{border:0;vertical-align:bottom;}
66 | label{margin:0!important;}
67 | /*----------------------------------set------------------------------------*/
--------------------------------------------------------------------------------
/lib/cmreset.css:
--------------------------------------------------------------------------------
1 | /*
2 | -----------------------------------------------------------------
3 | *修 改 人:梁超明 womendi@qq.com
4 | *最近修改:2018.02.07
5 | -----------------------------------------------------------------
6 | */
7 | html {
8 | margin: 0;
9 | padding: 0;
10 | border: 0;
11 | -webkit-text-size-adjust: 100%;
12 | -ms-text-size-adjust: 100%;
13 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
14 | }
15 | body,
16 | div,
17 | span,
18 | object,
19 | iframe,
20 | h1,
21 | h2,
22 | h3,
23 | h4,
24 | h5,
25 | h6,
26 | p,
27 | blockquote,
28 | pre,
29 | a,
30 | abbr,
31 | acronym,
32 | address,
33 | code,
34 | del,
35 | dfn,
36 | em,
37 | q,
38 | dl,
39 | dt,
40 | dd,
41 | ol,
42 | ul,
43 | li,
44 | fieldset,
45 | form,
46 | legend,
47 | caption,
48 | tbody,
49 | tfoot,
50 | thead,
51 | article,
52 | aside,
53 | dialog,
54 | figure,
55 | footer,
56 | header,
57 | hgroup,
58 | nav,
59 | section,
60 | button,
61 | input,
62 | optgroup,
63 | select,
64 | textarea,
65 | view {
66 | margin: 0;
67 | padding: 0;
68 | border: 0;
69 | font: inherit;
70 | vertical-align: baseline;
71 | -webkit-box-sizing: border-box;
72 | -moz-box-sizing: border-box;
73 | box-sizing: border-box;
74 | -webkit-appearance: none!important;
75 | }
76 | body {
77 | background: #fff;
78 | font-family: 'Microsoft YaHei';
79 | word-break: break-all;
80 | word-wrap: break-word;
81 | }
82 | article,
83 | aside,
84 | details,
85 | figcaption,
86 | figure,
87 | footer,
88 | header,
89 | hgroup,
90 | main,
91 | nav,
92 | section,
93 | summary {
94 | display: block;
95 | }
96 | audio,
97 | canvas,
98 | progress,
99 | video {
100 | display: inline-block;
101 | vertical-align: baseline;
102 | }
103 | audio:not([controls]) {
104 | display: none;
105 | height: 0;
106 | }
107 | [hidden],
108 | template {
109 | display: none;
110 | }
111 | abbr[title] {
112 | border-bottom: 1px dotted;
113 | }
114 | b,
115 | strong {
116 | font-weight: bold;
117 | }
118 | dfn {
119 | font-style: italic;
120 | }
121 | mark {
122 | color: #000;
123 | background: #ff0;
124 | }
125 | small {
126 | font-size: 80%;
127 | }
128 | sub,
129 | sup {
130 | position: relative;
131 | font-size: 75%;
132 | line-height: 0;
133 | vertical-align: baseline;
134 | }
135 | sup {
136 | top: -0.5em;
137 | }
138 | sub {
139 | bottom: -0.25em;
140 | }
141 | svg:not(:root) {
142 | overflow: hidden;
143 | }
144 | figure {
145 | margin: 1em 40px;
146 | }
147 | hr {
148 | height: 0;
149 | -moz-box-sizing: content-box;
150 | box-sizing: content-box;
151 | }
152 | pre {
153 | overflow: auto;
154 | }
155 | code,
156 | kbd,
157 | pre,
158 | samp {
159 | font-family: monospace, monospace;
160 | font-size: 1em;
161 | }
162 | button {
163 | overflow: visible;
164 | }
165 | button,
166 | select {
167 | text-transform: none;
168 | }
169 | button,
170 | html input[type='button'],
171 | input[type='reset'],
172 | input[type='submit'] {
173 | -webkit-appearance: button;
174 | cursor: pointer;
175 | }
176 | button[disabled],
177 | html input[disabled] {
178 | cursor: default;
179 | }
180 | button::-moz-focus-inner,
181 | input::-moz-focus-inner {
182 | padding: 0;
183 | border: 0;
184 | }
185 | ::-webkit-input-placeholder {
186 | color: #ccc;
187 | }
188 | :-moz-placeholder {
189 | color: #ccc;
190 | }
191 | ::-moz-placeholder {
192 | color: #ccc;
193 | }
194 | :-ms-input-placeholder {
195 | color: #ccc;
196 | }
197 | textarea {
198 | overflow: auto;
199 | }
200 | input:focus,
201 | textarea:focus,
202 | button:focus,
203 | select:focus {
204 | outline: none;
205 | }
206 | input::-ms-clear {
207 | display: none;
208 | }
209 | input[type='checkbox'],
210 | input[type='radio'] {
211 | box-sizing: border-box;
212 | padding: 0;
213 | }
214 | input[type='number']::-webkit-inner-spin-button,
215 | input[type='number']::-webkit-outer-spin-button {
216 | height: auto;
217 | }
218 | input[type='search'] {
219 | -webkit-box-sizing: content-box;
220 | -moz-box-sizing: content-box;
221 | box-sizing: content-box;
222 | -webkit-appearance: textfield;
223 | }
224 | input[type='search']::-webkit-search-cancel-button,
225 | input[type='search']::-webkit-search-decoration {
226 | -webkit-appearance: none;
227 | }
228 | fieldset {
229 | padding: .35em .625em .75em;
230 | margin: 0 2px;
231 | border: 1px solid #c0c0c0;
232 | }
233 | legend {
234 | padding: 0;
235 | border: 0;
236 | }
237 | optgroup {
238 | font-weight: bold;
239 | }
240 | table {
241 | border-spacing: 0;
242 | border-collapse: collapse;
243 | }
244 | td,
245 | th {
246 | padding: 0;
247 | }
248 | body,
249 | h1,
250 | h2,
251 | h3,
252 | h4,
253 | h5,
254 | h6,
255 | hr,
256 | p,
257 | blockquote,
258 | dl,
259 | dt,
260 | dd,
261 | ol,
262 | ul,
263 | li,
264 | pre,
265 | th,
266 | td,
267 | img {
268 | border: medium none;
269 | margin: 0;
270 | padding: 0;
271 | }
272 | body,
273 | button,
274 | input,
275 | select,
276 | textarea {
277 | font-size: 1em!important;
278 | font-family: 'Microsoft YaHei' !important;
279 | }
280 | h1,
281 | h2,
282 | h3,
283 | h4,
284 | h5,
285 | h6 {
286 | font-size: 1em;
287 | }
288 | em {
289 | font-style: normal;
290 | }
291 | ul,
292 | ol {
293 | list-style: none;
294 | margin: 0!important;
295 | }
296 | a {
297 | text-decoration: none;
298 | cursor: pointer;
299 | color: #000000;
300 | }
301 | a:active,
302 | a:hover {
303 | outline: 0;
304 | }
305 | a:focus {
306 | border: none;
307 | }
308 | a:hover {
309 | text-decoration: none;
310 | }
311 | iframe {
312 | border: none;
313 | margin: 0;
314 | padding: 0;
315 | }
316 | p {
317 | width: 100%;
318 | }
319 | p img {
320 | width: 100%;
321 | }
322 | img {
323 | border: 0;
324 | vertical-align: bottom;
325 | }
326 | label {
327 | margin: 0!important;
328 | }
329 | /*----------------------------------set------------------------------------*/
330 |
--------------------------------------------------------------------------------
/lib/cmreset.wxss:
--------------------------------------------------------------------------------
1 | /*
2 | -----------------------------------------------------------------
3 | *修 改 人:梁超明 womendi@qq.com
4 | *最近修改:2018.02.07
5 | -----------------------------------------------------------------
6 | */
7 | html {
8 | margin: 0;
9 | padding: 0;
10 | border: 0;
11 | -webkit-text-size-adjust: 100%;
12 | -ms-text-size-adjust: 100%;
13 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
14 | }
15 | body,
16 | div,
17 | span,
18 | object,
19 | iframe,
20 | h1,
21 | h2,
22 | h3,
23 | h4,
24 | h5,
25 | h6,
26 | p,
27 | blockquote,
28 | pre,
29 | a,
30 | abbr,
31 | acronym,
32 | address,
33 | code,
34 | del,
35 | dfn,
36 | em,
37 | q,
38 | dl,
39 | dt,
40 | dd,
41 | ol,
42 | ul,
43 | li,
44 | fieldset,
45 | form,
46 | legend,
47 | caption,
48 | tbody,
49 | tfoot,
50 | thead,
51 | article,
52 | aside,
53 | dialog,
54 | figure,
55 | footer,
56 | header,
57 | hgroup,
58 | nav,
59 | section,
60 | button,
61 | input,
62 | optgroup,
63 | select,
64 | textarea,
65 | view {
66 | margin: 0;
67 | padding: 0;
68 | border: 0;
69 | font: inherit;
70 | vertical-align: baseline;
71 | -webkit-box-sizing: border-box;
72 | -moz-box-sizing: border-box;
73 | box-sizing: border-box;
74 | -webkit-appearance: none!important;
75 | }
76 | body {
77 | background: #fff;
78 | font-family: 'Microsoft YaHei';
79 | word-break: break-all;
80 | word-wrap: break-word;
81 | }
82 | article,
83 | aside,
84 | details,
85 | figcaption,
86 | figure,
87 | footer,
88 | header,
89 | hgroup,
90 | main,
91 | nav,
92 | section,
93 | summary {
94 | display: block;
95 | }
96 | audio,
97 | canvas,
98 | progress,
99 | video {
100 | display: inline-block;
101 | vertical-align: baseline;
102 | }
103 | audio:not([controls]) {
104 | display: none;
105 | height: 0;
106 | }
107 | [hidden],
108 | template {
109 | display: none;
110 | }
111 | abbr[title] {
112 | border-bottom: 1px dotted;
113 | }
114 | b,
115 | strong {
116 | font-weight: bold;
117 | }
118 | dfn {
119 | font-style: italic;
120 | }
121 | mark {
122 | color: #000;
123 | background: #ff0;
124 | }
125 | small {
126 | font-size: 80%;
127 | }
128 | sub,
129 | sup {
130 | position: relative;
131 | font-size: 75%;
132 | line-height: 0;
133 | vertical-align: baseline;
134 | }
135 | sup {
136 | top: -0.5em;
137 | }
138 | sub {
139 | bottom: -0.25em;
140 | }
141 | svg:not(:root) {
142 | overflow: hidden;
143 | }
144 | figure {
145 | margin: 1em 40px;
146 | }
147 | hr {
148 | height: 0;
149 | -moz-box-sizing: content-box;
150 | box-sizing: content-box;
151 | }
152 | pre {
153 | overflow: auto;
154 | }
155 | code,
156 | kbd,
157 | pre,
158 | samp {
159 | font-family: monospace, monospace;
160 | font-size: 1em;
161 | }
162 | button {
163 | overflow: visible;
164 | }
165 | button,
166 | select {
167 | text-transform: none;
168 | }
169 | button,
170 | html input[type='button'],
171 | input[type='reset'],
172 | input[type='submit'] {
173 | -webkit-appearance: button;
174 | cursor: pointer;
175 | }
176 | button[disabled],
177 | html input[disabled] {
178 | cursor: default;
179 | }
180 | button::-moz-focus-inner,
181 | input::-moz-focus-inner {
182 | padding: 0;
183 | border: 0;
184 | }
185 | ::-webkit-input-placeholder {
186 | color: #ccc;
187 | }
188 | :-moz-placeholder {
189 | color: #ccc;
190 | }
191 | ::-moz-placeholder {
192 | color: #ccc;
193 | }
194 | :-ms-input-placeholder {
195 | color: #ccc;
196 | }
197 | textarea {
198 | overflow: auto;
199 | }
200 | input:focus,
201 | textarea:focus,
202 | button:focus,
203 | select:focus {
204 | outline: none;
205 | }
206 | input::-ms-clear {
207 | display: none;
208 | }
209 | input[type='checkbox'],
210 | input[type='radio'] {
211 | box-sizing: border-box;
212 | padding: 0;
213 | }
214 | input[type='number']::-webkit-inner-spin-button,
215 | input[type='number']::-webkit-outer-spin-button {
216 | height: auto;
217 | }
218 | input[type='search'] {
219 | -webkit-box-sizing: content-box;
220 | -moz-box-sizing: content-box;
221 | box-sizing: content-box;
222 | -webkit-appearance: textfield;
223 | }
224 | input[type='search']::-webkit-search-cancel-button,
225 | input[type='search']::-webkit-search-decoration {
226 | -webkit-appearance: none;
227 | }
228 | fieldset {
229 | padding: .35em .625em .75em;
230 | margin: 0 2px;
231 | border: 1px solid #c0c0c0;
232 | }
233 | legend {
234 | padding: 0;
235 | border: 0;
236 | }
237 | optgroup {
238 | font-weight: bold;
239 | }
240 | table {
241 | border-spacing: 0;
242 | border-collapse: collapse;
243 | }
244 | td,
245 | th {
246 | padding: 0;
247 | }
248 | body,
249 | h1,
250 | h2,
251 | h3,
252 | h4,
253 | h5,
254 | h6,
255 | hr,
256 | p,
257 | blockquote,
258 | dl,
259 | dt,
260 | dd,
261 | ol,
262 | ul,
263 | li,
264 | pre,
265 | th,
266 | td,
267 | img {
268 | border: medium none;
269 | margin: 0;
270 | padding: 0;
271 | }
272 | body,
273 | button,
274 | input,
275 | select,
276 | textarea {
277 | font-size: 1em!important;
278 | font-family: 'Microsoft YaHei' !important;
279 | }
280 | h1,
281 | h2,
282 | h3,
283 | h4,
284 | h5,
285 | h6 {
286 | font-size: 1em;
287 | }
288 | em {
289 | font-style: normal;
290 | }
291 | ul,
292 | ol {
293 | list-style: none;
294 | margin: 0!important;
295 | }
296 | a {
297 | text-decoration: none;
298 | cursor: pointer;
299 | color: #000000;
300 | }
301 | a:active,
302 | a:hover {
303 | outline: 0;
304 | }
305 | a:focus {
306 | border: none;
307 | }
308 | a:hover {
309 | text-decoration: none;
310 | }
311 | iframe {
312 | border: none;
313 | margin: 0;
314 | padding: 0;
315 | }
316 | p {
317 | width: 100%;
318 | }
319 | p img {
320 | width: 100%;
321 | }
322 | img {
323 | border: 0;
324 | vertical-align: bottom;
325 | }
326 | label {
327 | margin: 0!important;
328 | }
329 | /*----------------------------------set------------------------------------*/
330 |
--------------------------------------------------------------------------------
/less/cmstyle.less:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (C) 2014 梁超明 版权所有。
3 | 文件名:cmstyle.css
4 | 文件功能描述:cmui框架 https://github.com/aiplat/cmui
5 |
6 | 创 建 人:梁超明 womendi@qq.com
7 | 创建日期:2017.11.11
8 |
9 | 修 改 人:梁超明 womendi@qq.com
10 | 最近修改:2019.02.28
11 | 修改描述:less打包
12 | */
13 | //兼容各浏览器通用方法
14 | //前缀:webkit,moz,ms,无
15 | .func(@attr,@val){
16 | -webkit-@{attr}:@val;
17 | -moz-@{attr}:@val;
18 | -ms-@{attr}:@val;
19 | @{attr}:@val;
20 | }
21 | //前缀:webkit,无
22 | .func2(@attr,@val){
23 | -webkit-@{attr}:@val;
24 | @{attr}:@val;
25 | }
26 | //前缀:无
27 | .func3(@attr,@val){
28 | @{attr}:@val;
29 | }
30 | //兼容各浏览器通用方法
31 |
32 | // 公共变量
33 | @num_bf1:1%;//百分之一值
34 | @num_1:1;//1
35 | @num_fs:1em;//1em
36 |
37 | //颜色变量
38 | @c1:rgb(253,20,20);
39 | @c2:#de4a4a;
40 | @c3:rgb(105,104,103);
41 | @c4:rgb(155,155,155);
42 | @c5:#999999;
43 | @c6:#f6f6f6;
44 | @c7:#333333;
45 | @c0:#000000;
46 | @cc:#cccccc;
47 | @cd:#dddddd;
48 | @ce:#eeeeee;
49 | @cf:#ffffff;
50 | @cf00:#ff0000;
51 | @c0f0:#00ff00;
52 | @c00f:#0000ff;
53 | //颜色变量
54 |
55 | // 公共变量
56 |
57 | //颜色方法
58 | .func_c(@c){
59 | color:@c!important;
60 | }
61 | .func_b(@c){
62 | background:@c!important;
63 | }
64 | .func_b2(@a,@b,@c,@size){
65 | background:rgba(@a,@b,@c,@size)!important;
66 | }
67 | //颜色方法
68 |
69 | //------------------------
70 | /*字体颜色 color*/
71 | .cm_c1c{
72 | .func_c(@c1);
73 | }
74 | .cm_c2c{
75 | .func_c(@c2);
76 | }
77 | .cm_c3c{
78 | .func_c(@c3);
79 | }
80 | .cm_c4c{
81 | .func_c(@c4);
82 | }
83 | .cm_c5c{
84 | .func_c(@c5);
85 | }
86 | .cm_c6c{
87 | .func_c(@c6);
88 | }
89 | .cm_c7c{
90 | .func_c(@c7);
91 | }
92 | .cm_c0{
93 | .func_c(@c0);
94 | }
95 | .cm_cc{
96 | .func_c(@cc);
97 | }
98 | .cm_cd{
99 | .func_c(@cd);
100 | }
101 | .cm_ce{
102 | .func_c(@ce);
103 | }
104 | .cm_cf{
105 | .func_c(@cf);
106 | }
107 | .cm_cf00{
108 | .func_c(@cf00);
109 | }
110 | .cm_c0f0{
111 | .func_c(@c0f0);
112 | }
113 | .cm_c00f{
114 | .func_c(@c00f);
115 | }
116 | // 字体颜色 color
117 | /*背景颜色 background*/
118 | .cm_c1b{
119 | .func_b(@c1);
120 | }
121 | .cm_c2b{
122 | .func_b(@c2);
123 | }
124 | .cm_c3b{
125 | .func_b(@c3);
126 | }
127 | .cm_c4b{
128 | .func_b(@c4);
129 | }
130 | .cm_c5b{
131 | .func_b(@c5);
132 | }
133 | .cm_c6b{
134 | .func_b(@c6);
135 | }
136 | .cm_c7b{
137 | .func_b(@c7);
138 | }
139 | .cm_b0{
140 | .func_b(@c0);
141 | }
142 | .cm_bc{
143 | .func_b(@cc);
144 | }
145 | .cm_bd{
146 | .func_b(@cd);
147 | }
148 | .cm_be{
149 | .func_b(@ce);
150 | }
151 | .cm_bf{
152 | .func_b(@cf);
153 | }
154 | .cm_bf00{
155 | .func_b(@cf00);
156 | }
157 | .cm_b0f0{
158 | .func_b(@c0f0);
159 | }
160 | .cm_b00f{
161 | .func_b(@c00f);
162 | }
163 | //背景颜色 background
164 | /*有透明度的背景颜色*/
165 | .cm_bco01{
166 | .func_b2(0,0,0,0.1);
167 | }
168 | .cm_bco02{
169 | .func_b2(0,0,0,0.2);
170 | }
171 | .cm_bco03{
172 | .func_b2(0,0,0,0.3);
173 | }
174 | .cm_bco04{
175 | .func_b2(0,0,0,0.4);
176 | }
177 | .cm_bco05{
178 | .func_b2(0,0,0,0.5);
179 | }
180 | .cm_bco06{
181 | .func_b2(0,0,0,0.6);
182 | }
183 | .cm_bco07{
184 | .func_b2(0,0,0,0.7);
185 | }
186 | .cm_bco08{
187 | .func_b2(0,0,0,0.8);
188 | }
189 | .cm_bco09{
190 | .func_b2(0,0,0,0.9);
191 | }
192 | //有透明度的背景颜色
193 | /*a 默认颜色*/
194 | .cm_ac1c a{.func_c(@c1)}
195 | .cm_ac2c a{.func_c(@c2)}
196 | .cm_ac3c a{.func_c(@c3)}
197 | .cm_ac4c a{.func_c(@c4)}
198 | .cm_ac5c a{.func_c(@c5)}
199 | .cm_ac6c a{.func_c(@c6)}
200 | .cm_ac7c a{.func_c(@c7)}
201 | .cm_a0c a{.func_c(@c0)}
202 | .cm_aec a{.func_c(@ce)}
203 | .cm_afc a{.func_c(@cf)}
204 | //a 默认颜色
205 | /*a:hover颜色*/
206 | .cm_hvc1c:hover{.func_c(@c1)}
207 | .cm_hvc2c:hover{.func_c(@c2)}
208 | .cm_hvc3c:hover{.func_c(@c3)}
209 | .cm_hvc4c:hover{.func_c(@c4)}
210 | .cm_hvc5c:hover{.func_c(@c5)}
211 | .cm_hvc6c:hover{.func_c(@c6)}
212 | .cm_hvc7c:hover{.func_c(@c7)}
213 | .cm_hv0c:hover{.func_c(@c0)}
214 | .cm_hvec:hover{.func_c(@ce)}
215 | .cm_hvfc:hover{.func_c(@cf)}
216 | //a:hover
217 | /*hover背景颜色*/
218 | .cm_hvc1b:hover{.func_b(@c1)}
219 | .cm_hvc2b:hover{.func_b(@c2)}
220 | .cm_hvc3b:hover{.func_b(@c3)}
221 | .cm_hvc4b:hover{.func_b(@c4)}
222 | .cm_hvc5b:hover{.func_b(@c5)}
223 | .cm_hvc6b:hover{.func_b(@c6)}
224 | .cm_hvc7b:hover{.func_b(@c7)}
225 | .cm_hv0b:hover{.func_b(@c0)}
226 | .cm_hveb:hover{.func_b(@ce)}
227 | .cm_hvfb:hover{.func_b(@cf)}
228 | //hover背景颜色
229 | //字体
230 | .func_fs(@c){
231 | font-size:@c*@num_fs;
232 | }
233 | //字体
234 | //字体大小 font-size
235 | .cm_fs05{.func_fs(0.5)}
236 | .cm_fs06{.func_fs(0.6)}
237 | .cm_fs07{.func_fs(0.7)}
238 | .cm_fs08{.func_fs(0.8)}
239 | .cm_fs09{.func_fs(0.9)}
240 | .cm_fs1{.func_fs(1)}
241 | .cm_fs11{.func_fs(1.1)}
242 | .cm_fs12{.func_fs(1.2)}
243 | .cm_fs13{.func_fs(1.3)}
244 | .cm_fs14{.func_fs(1.4)}
245 | .cm_fs15{.func_fs(1.5)}
246 | .cm_fs16{.func_fs(1.6)}
247 | .cm_fs17{.func_fs(1.7)}
248 | .cm_fs18{.func_fs(1.8)}
249 | .cm_fs19{.func_fs(1.9)}
250 | .cm_fs2{.func_fs(2)}
251 | .cm_fs3{.func_fs(3)}
252 | .cm_fs4{.func_fs(4)}
253 | .cm_fs5{.func_fs(5)}
254 | //字体大小 font-size
255 | //font-weight
256 | .func_fwb(@c){
257 | font-weight: @c;
258 | }
259 | .cm_fwn{.func_fwb(normal)}
260 | .cm_fwb{.func_fwb(bold)}
261 | .cm_fwbd{.func_fwb(bolder)}
262 | .cm_fwl{.func_fwb(lighter)}
263 | .cm_fwi{.func_fwb(inherit)}
264 | .cm_fw100{.func_fwb(100)}
265 | .cm_fw200{.func_fwb(200)}
266 | .cm_fw300{.func_fwb(300)}
267 | .cm_fw400{.func_fwb(400)}
268 | .cm_fw500{.func_fwb(500)}
269 | .cm_fw600{.func_fwb(600)}
270 | .cm_fw700{.func_fwb(700)}
271 | .cm_fw800{.func_fwb(800)}
272 | .cm_fw900{.func_fwb(900)}
273 | //font-weight
274 | //透明度
275 | .func_ot(@num){
276 | @bfnum:@num*100;
277 | -khtml-opacity:@num;
278 | -webkit-opacity:@num;
279 | -moz-opacity:@num;
280 | filter:Alpha(opacity=@bfnum);
281 | -ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=@bfnum);
282 | opacity:@num;
283 | }
284 | .cm_o0{.func_ot(0)}
285 | .cm_o01{.func_ot(0.1)}
286 | .cm_o02{.func_ot(0.2)}
287 | .cm_o03{.func_ot(0.3)}
288 | .cm_o04{.func_ot(0.4)}
289 | .cm_o05{.func_ot(0.5)}
290 | .cm_o06{.func_ot(0.6)}
291 | .cm_o07{.func_ot(0.7)}
292 | .cm_o08{.func_ot(0.8)}
293 | .cm_o09{.func_ot(0.9)}
294 | .cm_o1{.func_ot(1)}
295 | //透明度
296 | //display
297 | .func_d(@c){
298 | display: @c;
299 | }
300 | .cm_dn{
301 | .func_d(none);
302 | }
303 | .cm_db{
304 | .func_d(block);
305 | }
306 | .cm_di{
307 | .func_d(inline);
308 | }
309 | .cm_dib{
310 | .func_d(inline-block);
311 | }
312 | .cm_dih{
313 | .func_d(inherit);
314 | }
315 | .cm_dtab{
316 | .func_d(table);
317 | }
318 | .cm_dtc{
319 | .func_d(table-cell);
320 | }
321 | .cm_dit{
322 | .func_d(inline-table);
323 | }
324 | //display
325 | //float
326 | .cm_fl{
327 | .func3(float,left)
328 | }
329 | .cm_fr{
330 | .func3(float,right)
331 | }
332 | .cm_fn{
333 | .func3(float,none)
334 | }
335 | //float
336 | //align
337 | .func_ta(@t){
338 | text-align: @t;
339 | }
340 | .cm_tl{.func_ta(left)}
341 | .cm_tc{.func_ta(center)}
342 | .cm_tr{.func_ta(right)}
343 | .cm_tj{.func_ta(justify)}
344 | //align
345 | //text-indent
346 | .func_ti(@t){
347 | text-indent:@t*@num_fs;
348 | }
349 | .cm_ti05{.func_ti(0.5)}
350 | .cm_ti1{.func_ti(1)}
351 | .cm_ti105{.func_ti(1.5)}
352 | .cm_ti2{.func_ti(2)}
353 | .cm_ti205{.func_ti(2.5)}
354 | //text-indent
355 | //居中
356 | .cm_fc{
357 | .func3(float,none);
358 | .func3(display,block);
359 | .func3(margin-left,auto);
360 | .func3(margin-right,auto);
361 | }
362 | .cm_fc2{
363 | &:extend(.cm_fc);//继承写法
364 | .func3(margin-top,auto);
365 | .func3(margin-bottom,auto);
366 | }
367 | .cm_fc3{
368 | .func3(position,absolute);
369 | .func3(left,50*@num_bf1);
370 | .func3(top,50*@num_bf1);
371 | .func(transform,translate(-50*@num_bf1,-50*@num_bf1));
372 | }
373 | .cm_fc4{
374 | .func2(display,flex);
375 | .func2(align-items,center);
376 | .func2(justify-content,center);
377 | }
378 | //居中
379 | //垂直居中
380 | .cm_fc3tb{
381 | .func3(position,absolute);
382 | .func3(top,50*@num_bf1);
383 | .func(transform,translate(-50*@num_bf1,-50*@num_bf1));
384 | }
385 | //垂直居中
386 | //水平居中
387 | .cm_fc3rl{
388 | .func3(position,absolute);
389 | .func3(left,50*@num_bf1);
390 | .func(transform,translate(-50*@num_bf1,-50*@num_bf1));
391 | }
392 | //水平居中
393 | //position
394 | .func_pst(@p){
395 | position:@p!important;
396 | }
397 | .cm_ps{.func_pst(static)}
398 | .cm_pa{.func_pst(absolute)}
399 | .cm_pf{.func_pst(fixed)}
400 | .cm_pr{.func_pst(relative)}
401 | .cm_tl0{top:0;left:0}
402 | .cm_tr0{top:0;right:0}
403 | .cm_bl0{bottom:0;left:0}
404 | .cm_br0{bottom:0;right:0}
405 | //position
406 | //top
407 | .func_top(@t){
408 | top:@t*@num_fs!important;
409 | }
410 | .cm_t2f{.func_top(-2)}
411 | .cm_t105f{.func_top(-1.5)}
412 | .cm_t1f{.func_top(-1)}
413 | .cm_t05f{.func_top(-0.5)}
414 | .cm_t0{.func_top(0)}
415 | .cm_t01e{.func_top(0.1)}
416 | .cm_t02e{.func_top(0.2)}
417 | .cm_t025e{.func_top(0.25)}
418 | .cm_t05e{.func_top(0.5)}
419 | .cm_t1e{.func_top(1)}
420 | .cm_t2e{.func_top(2)}
421 | .cm_t3e{.func_top(3)}
422 | .cm_t4e{.func_top(4)}
423 | .cm_t5e{.func_top(5)}
424 | .cm_t6e{.func_top(6)}
425 | .cm_t7e{.func_top(7)}
426 | .cm_t8e{.func_top(8)}
427 | .cm_t9e{.func_top(9)}
428 | .cm_t10e{.func_top(10)}
429 | .cm_t11e{.func_top(11)}
430 | .cm_t12e{.func_top(12)}
431 | .cm_t13e{.func_top(13)}
432 | //top
433 | //bottom
434 | .func_bot(@t){
435 | bottom:@t*@num_fs!important;
436 | }
437 | .cm_b2f{.func_bot(-2)}
438 | .cm_b05f{.func_bot(-1.5)}
439 | .cm_b1f{.func_bot(-1)}
440 | .cm_b05f{.func_bot(-0.5)}
441 | .cm_b01e{.func_bot(0.1)}
442 | .cm_b02e{.func_bot(0.2)}
443 | .cm_b025e{.func_bot(0.25)}
444 | .cm_b05e{.func_bot(0.5)}
445 | .cm_b1e{.func_bot(1)}
446 | .cm_b2e{.func_bot(2)}
447 | .cm_b3e{.func_bot(3)}
448 | .cm_b4e{.func_bot(4)}
449 | .cm_b5e{.func_bot(5)}
450 | .cm_b6e{.func_bot(6)}
451 | .cm_b7e{.func_bot(7)}
452 | .cm_b8e{.func_bot(8)}
453 | .cm_b9e{.func_bot(9)}
454 | .cm_b10e{.func_bot(10)}
455 | .cm_b11e{.func_bot(11)}
456 | .cm_b12e{.func_bot(12)}
457 | .cm_b13e{.func_bot(13)}
458 | //bottom
459 | //left
460 | .func_left(@t){
461 | left:@t*@num_fs!important;
462 | }
463 | .cm_l2f{.func_left(-2)}
464 | .cm_l105f{.func_left(-1.5)}
465 | .cm_l1f{.func_left(-1)}
466 | .cm_l05f{.func_left(-0.5)}
467 | .cm_l01e{.func_left(0.1)}
468 | .cm_l02e{.func_left(0.2)}
469 | .cm_l025e{.func_left(0.25)}
470 | .cm_l05e{.func_left(0.5)}
471 | .cm_l1e{.func_left(1)}
472 | .cm_l2e{.func_left(2)}
473 | .cm_l3e{.func_left(3)}
474 | .cm_l4e{.func_left(4)}
475 | .cm_l5e{.func_left(5)}
476 | //left
477 | //right
478 | .func_right(@t){
479 | right:@t*@num_fs!important;
480 | }
481 | .cm_r2f{.func_right(-2)}
482 | .cm_r105f{.func_right(-1.5)}
483 | .cm_r1f{.func_right(-1)}
484 | .cm_r05f{.func_right(-0.5)}
485 | .cm_r0e{.func_right(0)}
486 | .cm_r01e{.func_right(0.1)}
487 | .cm_r02e{.func_right(0.2)}
488 | .cm_r025e{.func_right(0.25)}
489 | .cm_r05e{.func_right(0.5)}
490 | .cm_r1e{.func_right(1)}
491 | .cm_r2e{.func_right(2)}
492 | .cm_r3e{.func_right(3)}
493 | .cm_r4e{.func_right(4)}
494 | .cm_r5e{.func_right(5)}
495 | //right
496 | //堆叠顺序
497 | .func_zi(@z){
498 | z-index:@z!important;
499 | }
500 | .cm_z1{.func_zi(1)}
501 | .cm_z2{.func_zi(2)}
502 | .cm_z3{.func_zi(3)}
503 | .cm_z4{.func_zi(4)}
504 | .cm_z5{.func_zi(5)}
505 | .cm_z9{.func_zi(9)}
506 | .cm_z99{.func_zi(99)}
507 | .cm_z999{.func_zi(999)}
508 | .cm_z9999{.func_zi(9999)}
509 | .cm_z99999{.func_zi(99999)}
510 | .cm_z999999{.func_zi(999999)}
511 | //堆叠顺序
512 | //cursor
513 | .func_cs(@c){
514 | cursor:@c!important;
515 | }
516 | .cm_csd{.func_cs(default)}
517 | .cm_csa{.func_cs(auto)}
518 | .cm_csc{.func_cs(crosshair)}
519 | .cm_csp{.func_cs(pointer)}
520 | .cm_csm{.func_cs(move)}
521 | .cm_cse{.func_cs(e-resize)}
522 | .cm_csne{.func_cs(ne-resize)}
523 | .cm_csnw{.func_cs(nw-resize)}
524 | .cm_csn{.func_cs(n-resize)}
525 | .cm_csse{.func_cs(se-resize)}
526 | .cm_cssw{.func_cs(sw-resize)}
527 | .cm_css{.func_cs(s-resize)}
528 | .cm_cswr{.func_cs(w-resize)}
529 | .cm_cst{.func_cs(text)}
530 | .cm_csw{.func_cs(wait)}
531 | .cm_csh{.func_cs(help)}
532 | //cursor
533 | //高度
534 | //height
535 | .func_h(@num){
536 | height:@num*@num_fs!important;
537 | }
538 | .cm_h05{.func_h(0.5)}
539 | .cm_h075{.func_h(0.75)}
540 | .cm_h08{.func_h(0.8)}
541 | .cm_h1{.func_h(1)}
542 | .cm_h105{.func_h(1.5)}
543 | .cm_h2{.func_h(2)}
544 | .cm_h205{.func_h(2.5)}
545 | .cm_h3{.func_h(3)}
546 | .cm_h305{.func_h(3.5)}
547 | .cm_h4{.func_h(4)}
548 | .cm_h405{.func_h(4.5)}
549 | .cm_h5{.func_h(5)}
550 | .cm_h505{.func_h(5.5)}
551 | .cm_h6{.func_h(6)}
552 | .cm_h605{.func_h(6.5)}
553 | .cm_h7{.func_h(7)}
554 | .cm_h705{.func_h(7.5)}
555 | .cm_h8{.func_h(8)}
556 | .cm_h805{.func_h(8.5)}
557 | .cm_h9{.func_h(9)}
558 | .cm_h905{.func_h(9.5)}
559 | .cm_h10{.func_h(10)}
560 | .cm_h11{.func_h(11)}
561 | .cm_h12{.func_h(12)}
562 | .cm_h13{.func_h(13)}
563 | .cm_h14{.func_h(14)}
564 | .cm_h15{.func_h(15)}
565 | .cm_h16{.func_h(16)}
566 | .cm_h17{.func_h(17)}
567 | .cm_h18{.func_h(18)}
568 | .cm_h19{.func_h(19)}
569 | .cm_h20{.func_h(20)}
570 | .cm_h21{.func_h(21)}
571 | .cm_h22{.func_h(22)}
572 | .cm_h23{.func_h(23)}
573 | .cm_h24{.func_h(24)}
574 | .cm_h25{.func_h(25)}
575 | //height
576 | //height 百分
577 | .func_h2(@num){
578 | height:@num*@num_bf1!important;
579 | }
580 | .cm_h10f{.func_h2(10)}
581 | .cm_h20f{.func_h2(20)}
582 | .cm_h30f{.func_h2(30)}
583 | .cm_h40f{.func_h2(40)}
584 | .cm_h50f{.func_h2(50)}
585 | .cm_h60f{.func_h2(60)}
586 | .cm_h70f{.func_h2(70)}
587 | .cm_h80f{.func_h2(80)}
588 | .cm_h90f{.func_h2(90)}
589 | //height 百分
590 | //min-height
591 | .func_minh(@num){
592 | min-height:@num*@num_fs;
593 | height:auto!important;
594 | height:@num*@num_fs;
595 | }
596 | .cm_minh1{.func_minh(1)}
597 | .cm_minh2{.func_minh(2)}
598 | .cm_minh3{.func_minh(3)}
599 | .cm_minh4{.func_minh(4)}
600 | .cm_minh5{.func_minh(5)}
601 | .cm_minh6{.func_minh(6)}
602 | .cm_minh7{.func_minh(7)}
603 | .cm_minh8{.func_minh(8)}
604 | .cm_minh9{.func_minh(9)}
605 | .cm_minh10{.func_minh(10)}
606 | .cm_minh11{.func_minh(11)}
607 | .cm_minh12{.func_minh(12)}
608 | .cm_minh13{.func_minh(13)}
609 | //min-height
610 | //max-height
611 | .func_maxh(@num){
612 | max-height:@num*@num_fs;
613 | height:auto!important;
614 | height:@num*@num_fs;
615 | }
616 | .cm_maxh1{.func_maxh(1)}
617 | .cm_maxh2{.func_maxh(2)}
618 | .cm_maxh3{.func_maxh(3)}
619 | .cm_maxh4{.func_maxh(4)}
620 | .cm_maxh5{.func_maxh(5)}
621 | .cm_maxh6{.func_maxh(6)}
622 | .cm_maxh7{.func_maxh(7)}
623 | .cm_maxh8{.func_maxh(8)}
624 | .cm_maxh9{.func_maxh(9)}
625 | .cm_maxh10{.func_maxh(10)}
626 | .cm_maxh11{.func_maxh(11)}
627 | .cm_maxh12{.func_maxh(12)}
628 | .cm_maxh13{.func_maxh(13)}
629 | //max-height
630 | //line-height
631 | .func_lh(@num){
632 | line-height:@num*@num_fs!important;
633 | }
634 | .cm_lh1{.func_lh(1)}
635 | .cm_lh105{.func_lh(1.5)}
636 | .cm_lh2{.func_lh(2)}
637 | .cm_lh205{.func_lh(2.5)}
638 | .cm_lh3{.func_lh(3)}
639 | .cm_lh305{.func_lh(3.5)}
640 | .cm_lh4{.func_lh(4)}
641 | .cm_lh405{.func_lh(4.5)}
642 | .cm_lh5{.func_lh(5)}
643 | .cm_lh505{.func_lh(5.5)}
644 | .cm_lh6{.func_lh(6)}
645 | .cm_lh605{.func_lh(6.5)}
646 | .cm_lh7{.func_lh(7)}
647 | .cm_lh705{.func_lh(7.5)}
648 | .cm_lh8{.func_lh(8)}
649 | .cm_lh805{.func_lh(8.5)}
650 | .cm_lh9{.func_lh(9)}
651 | .cm_lh905{.func_lh(9.5)}
652 | //line-height
653 | .func_hl(@num){
654 | height:@num*@num_fs!important;
655 | line-height:@num*@num_fs!important;
656 | }
657 | //height and line-height
658 | .cm_hl08{.func_hl(0.8)}
659 | .cm_hl1{.func_hl(1)}
660 | .cm_hl105{.func_hl(1.5)}
661 | .cm_hl2{.func_hl(2)}
662 | .cm_hl205{.func_hl(2.5)}
663 | .cm_hl3{.func_hl(3)}
664 | .cm_hl305{.func_hl(3.5)}
665 | .cm_hl4{.func_hl(4)}
666 | .cm_hl405{.func_hl(4.5)}
667 | .cm_hl5{.func_hl(5)}
668 | .cm_hl505{.func_hl(5.5)}
669 | .cm_hl6{.func_hl(6)}
670 | .cm_hl7{.func_hl(7)}
671 | .cm_hl8{.func_hl(8)}
672 | .cm_hl9{.func_hl(9)}
673 | //height and line-height
674 | //高度
675 |
676 | //宽度
677 | //width
678 | .func_w(@num){
679 | width:@num*@num_fs!important;
680 | }
681 | .cm_w1{.func_w(1)}
682 | .cm_w105{.func_w(1.5)}
683 | .cm_w2{.func_w(2)}
684 | .cm_w205{.func_w(2.5)}
685 | .cm_w3{.func_w(3)}
686 | .cm_w305{.func_w(3.5)}
687 | .cm_w4{.func_w(4)}
688 | .cm_w405{.func_w(4.5)}
689 | .cm_w5{.func_w(5)}
690 | .cm_w505{.func_w(5.5)}
691 | .cm_w6{.func_w(6)}
692 | .cm_w605{.func_w(6.5)}
693 | .cm_w7{.func_w(7)}
694 | .cm_w705{.func_w(7.5)}
695 | .cm_w8{.func_w(8)}
696 | .cm_w805{.func_w(8.5)}
697 | .cm_w9{.func_w(9)}
698 | .cm_w905{.func_w(9.5)}
699 | .cm_w10{.func_w(10)}
700 | .cm_w11{.func_w(11)}
701 | .cm_w12{.func_w(12)}
702 | .cm_w13{.func_w(13)}
703 | //width
704 | //width 百分
705 | .func_w2(@num){
706 | width:@num*@num_bf1!important;
707 | }
708 | .cm_w10f{.func_w2(10)}
709 | .cm_w20f{.func_w2(20)}
710 | .cm_w30f{.func_w2(30)}
711 | .cm_w40f{.func_w2(40)}
712 | .cm_w50f{.func_w2(50)}
713 | .cm_w60f{.func_w2(60)}
714 | .cm_w70f{.func_w2(70)}
715 | .cm_w80f{.func_w2(80)}
716 | .cm_w90f{.func_w2(90)}
717 | //width 百分
718 | // min-width
719 | .func_minw(@num){
720 | min-width:@num*@num_fs;
721 | width:auto!important;
722 | width:@num*@num_fs;
723 | }
724 | .cm_minw1{.func_minw(1)}
725 | .cm_minw2{.func_minw(2)}
726 | .cm_minw3{.func_minw(3)}
727 | .cm_minw4{.func_minw(4)}
728 | .cm_minw5{.func_minw(5)}
729 | .cm_minw6{.func_minw(6)}
730 | .cm_minw7{.func_minw(7)}
731 | .cm_minw8{.func_minw(8)}
732 | .cm_minw9{.func_minw(9)}
733 | .cm_minw10{.func_minw(10)}
734 | .cm_minw11{.func_minw(11)}
735 | .cm_minw12{.func_minw(12)}
736 | .cm_minw13{.func_minw(13)}
737 | // min-width
738 | // max-width
739 | .func_maxw(@num){
740 | max-width:@num*@num_fs;
741 | width:auto!important;
742 | width:@num*@num_fs;
743 | }
744 | .cm_maxw1{.func_maxw(1)}
745 | .cm_maxw2{.func_maxw(2)}
746 | .cm_maxw3{.func_maxw(3)}
747 | .cm_maxw4{.func_maxw(4)}
748 | .cm_maxw5{.func_maxw(5)}
749 | .cm_maxw6{.func_maxw(6)}
750 | .cm_maxw7{.func_maxw(7)}
751 | .cm_maxw8{.func_maxw(8)}
752 | .cm_maxw9{.func_maxw(9)}
753 | .cm_maxw10{.func_maxw(10)}
754 | .cm_maxw11{.func_maxw(11)}
755 | .cm_maxw12{.func_maxw(12)}
756 | .cm_maxw13{.func_maxw(13)}
757 | // max-width
758 | //宽度
759 |
760 | //宽高
761 | .func_wh(@a){
762 | width:@a*@num_fs!important;
763 | height:@a*@num_fs!important;
764 | }
765 | .cm_wh05{.func_wh(0.5)}
766 | .cm_wh1{.func_wh(1)}
767 | .cm_wh105{.func_wh(1.5)}
768 | .cm_wh2{.func_wh(2)}
769 | .cm_wh205{.func_wh(2.5)}
770 | .cm_wh3{.func_wh(3)}
771 | .cm_wh305{.func_wh(3.5)}
772 | .cm_wh4{.func_wh(4)}
773 | .cm_wh405{.func_wh(4.5)}
774 | .cm_wh5{.func_wh(5)}
775 | .cm_wh505{.func_wh(5.5)}
776 | .cm_wh6{.func_wh(6)}
777 | .cm_wh605{.func_wh(6.5)}
778 | .cm_wh7{.func_wh(7)}
779 | .cm_wh705{.func_wh(7.5)}
780 | .cm_wh8{.func_wh(8)}
781 | .cm_wh805{.func_wh(8.5)}
782 | .cm_wh9{.func_wh(9)}
783 | .cm_wh905{.func_wh(9.5)}
784 | .cm_wh10{.func_wh(10)}
785 | //宽高
786 |
787 | //外边距 margin
788 | //margin:*
789 | .func_mg(@m){
790 | margin:@m*@num_fs!important;
791 | }
792 | .cm_m0{.func_mg(0)}
793 | .cm_m01{.func_mg(0.1)}
794 | .cm_m02{.func_mg(0.2)}
795 | .cm_m025{.func_mg(0.25)}
796 | .cm_m03{.func_mg(0.3)}
797 | .cm_m035{.func_mg(0.35)}
798 | .cm_m04{.func_mg(0.4)}
799 | .cm_m045{.func_mg(0.45)}
800 | .cm_m05{.func_mg(0.5)}
801 | .cm_m06{.func_mg(0.6)}
802 | .cm_m07{.func_mg(0.7)}
803 | .cm_m08{.func_mg(0.8)}
804 | .cm_m09{.func_mg(0.9)}
805 | .cm_m1{.func_mg(1)}
806 | .cm_m105{.func_mg(1.5)}
807 | .cm_m2{.func_mg(2)}
808 | .cm_m205{.func_mg(2.5)}
809 | .cm_m3{.func_mg(3)}
810 | //margin:*
811 | //margin:* *
812 | .func_mg2(@m1,@m2){
813 | margin:@m1*@num_fs @m2*@num_fs!important;
814 | }
815 | //margin:* 0
816 | .cm_mtb01{.func_mg2(0.1,0)}
817 | .cm_mtb02{.func_mg2(0.2,0)}
818 | .cm_mtb03{.func_mg2(0.3,0)}
819 | .cm_mtb04{.func_mg2(0.4,0)}
820 | .cm_mtb05{.func_mg2(0.5,0)}
821 | .cm_mtb06{.func_mg2(0.6,0)}
822 | .cm_mtb07{.func_mg2(0.7,0)}
823 | .cm_mtb08{.func_mg2(0.8,0)}
824 | .cm_mtb09{.func_mg2(0.9,0)}
825 | .cm_mtb1{.func_mg2(1,0)}
826 | .cm_mtb105{.func_mg2(1.5,0)}
827 | .cm_mtb2{.func_mg2(2,0)}
828 | .cm_mtb205{.func_mg2(2.5,0)}
829 | .cm_mtb3{.func_mg2(3,0)}
830 | .cm_mtb205{.func_mg2(2.5,0)}
831 | .cm_mtb4{.func_mg2(4,0)}
832 | .cm_mtb405{.func_mg2(4.5,0)}
833 | .cm_mtb5{.func_mg2(5,0)}
834 | .cm_mtb505{.func_mg2(5.5,0)}
835 | .cm_mtb6{.func_mg2(6,0)}
836 | //margin:* 0
837 | //margin:0 *
838 | .cm_mrl01{.func_mg2(0,0.1)}
839 | .cm_mrl02{.func_mg2(0,0.2)}
840 | .cm_mrl03{.func_mg2(0,0.3)}
841 | .cm_mrl04{.func_mg2(0,0.4)}
842 | .cm_mrl05{.func_mg2(0,0.5)}
843 | .cm_mrl06{.func_mg2(0,0.6)}
844 | .cm_mrl07{.func_mg2(0,0.7)}
845 | .cm_mrl08{.func_mg2(0,0.8)}
846 | .cm_mrl09{.func_mg2(0,0.9)}
847 | .cm_mrl1{.func_mg2(0,1)}
848 | .cm_mrl105{.func_mg2(0,1.5)}
849 | .cm_mrl2{.func_mg2(0,2)}
850 | .cm_mrl205{.func_mg2(0,2.5)}
851 | .cm_mrl3{.func_mg2(0,3)}
852 | .cm_mrl305{.func_mg2(0,3.5)}
853 | .cm_mrl4{.func_mg2(0,4)}
854 | .cm_mrl405{.func_mg2(0,4.5)}
855 | .cm_mrl5{.func_mg2(0,5)}
856 | .cm_mrl505{.func_mg2(0,5.5)}
857 | .cm_mrl6{.func_mg2(0,6)}
858 | //margin:0 *
859 | //margin:* *
860 |
861 | //margin-top
862 | .func_mt(@m){
863 | margin-top:@m*@num_fs!important;
864 | }
865 | .cm_mt2f{.func_mt(-2)}
866 | .cm_mt105f{.func_mt(-1.5)}
867 | .cm_mt1f{.func_mt(-1)}
868 | .cm_mt05f{.func_mt(-0.5)}
869 | .cm_mt01{.func_mt(0.1)}
870 | .cm_mt02{.func_mt(0.2)}
871 | .cm_mt03{.func_mt(0.3)}
872 | .cm_mt04{.func_mt(0.4)}
873 | .cm_mt05{.func_mt(0.5)}
874 | .cm_mt06{.func_mt(0.6)}
875 | .cm_mt07{.func_mt(0.7)}
876 | .cm_mt08{.func_mt(0.8)}
877 | .cm_mt09{.func_mt(0.9)}
878 | .cm_mt1{.func_mt(1)}
879 | .cm_mt101{.func_mt(1.1)}
880 | .cm_mt102{.func_mt(1.2)}
881 | .cm_mt103{.func_mt(1.3)}
882 | .cm_mt104{.func_mt(1.4)}
883 | .cm_mt105{.func_mt(1.5)}
884 | .cm_mt2{.func_mt(2)}
885 | .cm_mt205{.func_mt(2.5)}
886 | .cm_mt3{.func_mt(3)}
887 | .cm_mt305{.func_mt(3.5)}
888 | .cm_mt4{.func_mt(4)}
889 | .cm_mt405{.func_mt(4.5)}
890 | .cm_mt5{.func_mt(5)}
891 | .cm_mt6{.func_mt(6)}
892 | .cm_mt7{.func_mt(7)}
893 | .cm_mt8{.func_mt(8)}
894 | .cm_mt9{.func_mt(9)}
895 | //margin-top
896 | //margin-bottom
897 | .func_mb(@m){
898 | margin-bottom:@m*@num_fs!important;
899 | }
900 | .cm_mb2f{.func_mb(-2)}
901 | .cm_mb105f{.func_mb(-1.5)}
902 | .cm_mb1f{.func_mb(-1)}
903 | .cm_mb05f{.func_mb(-0.5)}
904 | .cm_mb01{.func_mb(0.1)}
905 | .cm_mb02{.func_mb(0.2)}
906 | .cm_mb03{.func_mb(0.3)}
907 | .cm_mb04{.func_mb(0.4)}
908 | .cm_mb05{.func_mb(0.5)}
909 | .cm_mb06{.func_mb(0.6)}
910 | .cm_mb07{.func_mb(0.7)}
911 | .cm_mb08{.func_mb(0.8)}
912 | .cm_mb09{.func_mb(0.9)}
913 | .cm_mb1{.func_mb(1)}
914 | .cm_mb105{.func_mb(1.5)}
915 | .cm_mb2{.func_mb(2)}
916 | .cm_mb205{.func_mb(2.5)}
917 | .cm_mb3{.func_mb(3)}
918 | .cm_mb305{.func_mb(3.5)}
919 | .cm_mb4{.func_mb(4)}
920 | .cm_mb405{.func_mb(4.5)}
921 | .cm_mb5{.func_mb(5)}
922 | .cm_mb6{.func_mb(6)}
923 | .cm_mb7{.func_mb(7)}
924 | .cm_mb8{.func_mb(8)}
925 | .cm_mb9{.func_mb(9)}
926 | //margin-bottom
927 | //margin-right
928 | .func_mr(@m){
929 | margin-right:@m*@num_fs!important;
930 | }
931 | .cm_mr01{.func_mr(-2)}
932 | .cm_mr01{.func_mr(-1.5)}
933 | .cm_mr01{.func_mr(-1)}
934 | .cm_mr05f{.func_mr(-0.5)}
935 | .cm_mr01{.func_mr(0.1)}
936 | .cm_mr02{.func_mr(0.2)}
937 | .cm_mr03{.func_mr(0.3)}
938 | .cm_mr04{.func_mr(0.4)}
939 | .cm_mr05{.func_mr(0.5)}
940 | .cm_mr06{.func_mr(0.6)}
941 | .cm_mr07{.func_mr(0.7)}
942 | .cm_mr08{.func_mr(0.8)}
943 | .cm_mr09{.func_mr(0.9)}
944 | .cm_mr1{.func_mr(1)}
945 | .cm_mr105{.func_mr(1.5)}
946 | .cm_mr2{.func_mr(2)}
947 | .cm_mr205{.func_mr(2.5)}
948 | .cm_mr3{.func_mr(3)}
949 | .cm_mr305{.func_mr(3.5)}
950 | .cm_mr4{.func_mr(4)}
951 | .cm_mr405{.func_mr(4.5)}
952 | .cm_mr5{.func_mr(5)}
953 | .cm_mr6{.func_mr(6)}
954 | .cm_mr7{.func_mr(7)}
955 | .cm_mr9{.func_mr(9)}
956 | .cm_mr8{.func_mr(8)}
957 | .cm_mr9{.func_mr(9)}
958 | //margin-right
959 | //margin-left
960 | .func_ml(@m){
961 | margin-left:@m*@num_fs!important;
962 | }
963 | .cm_ml2f{.func_ml(-2)}
964 | .cm_ml105f{.func_ml(-1.5)}
965 | .cm_ml1f{.func_ml(-1)}
966 | .cm_ml05f{.func_ml(-0.5)}
967 | .cm_ml01{.func_ml(0.1)}
968 | .cm_ml02{.func_ml(0.2)}
969 | .cm_ml03{.func_ml(0.3)}
970 | .cm_ml04{.func_ml(0.4)}
971 | .cm_ml05{.func_ml(0.5)}
972 | .cm_ml06{.func_ml(0.6)}
973 | .cm_ml07{.func_ml(0.7)}
974 | .cm_ml08{.func_ml(0.8)}
975 | .cm_ml09{.func_ml(0.9)}
976 | .cm_ml1{.func_ml(1)}
977 | .cm_ml105{.func_ml(1.5)}
978 | .cm_ml2{.func_ml(2)}
979 | .cm_ml205{.func_ml(2.5)}
980 | .cm_ml3{.func_ml(3)}
981 | .cm_ml305{.func_ml(3.5)}
982 | .cm_ml4{.func_ml(4)}
983 | .cm_ml405{.func_ml(4.5)}
984 | .cm_ml5{.func_ml(5)}
985 | .cm_ml6{.func_ml(6)}
986 | .cm_ml7{.func_ml(7)}
987 | .cm_ml9{.func_ml(9)}
988 | .cm_ml8{.func_ml(8)}
989 | .cm_ml9{.func_ml(9)}
990 | //margin-left
991 | //margin:*
992 | //外边距 margin
993 |
994 | //内边距padding
995 | //padding:*
996 | .func_pd(@m){
997 | padding:@m*@num_fs!important;
998 | }
999 | .cm_pd0{.func_pd(0)}
1000 | .cm_pd01{.func_pd(0.1)}
1001 | .cm_pd02{.func_pd(0.2)}
1002 | .cm_pd025{.func_pd(0.25)}
1003 | .cm_pd05{.func_pd(0.5)}
1004 | .cm_pd075{.func_pd(0.75)}
1005 | .cm_pd1{.func_pd(1)}
1006 | .cm_pd105{.func_pd(1.5)}
1007 | .cm_pd2{.func_pd(2)}
1008 | .cm_pd205{.func_pd(2.5)}
1009 | .cm_pd3{.func_pd(3)}
1010 | //padding:*
1011 | //padding:* 0
1012 | .func_pd2(@m){
1013 | padding:@m*@num_fs 0!important;
1014 | }
1015 | .cm_ptb01{.func_pd2(0.1)}
1016 | .cm_ptb02{.func_pd2(0.2)}
1017 | .cm_ptb025{.func_pd2(0.25)}
1018 | .cm_ptb05{.func_pd2(0.5)}
1019 | .cm_ptb075{.func_pd2(0.75)}
1020 | .cm_ptb1{.func_pd2(1)}
1021 | .cm_ptb105{.func_pd2(1.5)}
1022 | .cm_ptb2{.func_pd2(2)}
1023 | .cm_ptb205{.func_pd2(2.5)}
1024 | .cm_ptb3{.func_pd2(3)}
1025 | .cm_ptb305{.func_pd2(3.5)}
1026 | .cm_ptb4{.func_pd2(4)}
1027 | .cm_ptb405{.func_pd2(4.5)}
1028 | .cm_ptb5{.func_pd2(5)}
1029 | .cm_ptb505{.func_pd2(5.5)}
1030 | //padding:*
1031 | //padding:0 *
1032 | .func_pd3(@m){
1033 | padding:0 @m*@num_fs!important;
1034 | }
1035 | .cm_prl01{.func_pd3(0.1)}
1036 | .cm_prl02{.func_pd3(0.2)}
1037 | .cm_prl025{.func_pd3(0.25)}
1038 | .cm_prl05{.func_pd3(0.5)}
1039 | .cm_prl075{.func_pd3(0.75)}
1040 | .cm_prl1{.func_pd3(1)}
1041 | .cm_prl105{.func_pd3(1.5)}
1042 | .cm_prl2{.func_pd3(2)}
1043 | .cm_prl205{.func_pd3(2.5)}
1044 | .cm_prl3{.func_pd3(3)}
1045 | .cm_prl305{.func_pd3(3.5)}
1046 | .cm_prl4{.func_pd3(4)}
1047 | .cm_prl405{.func_pd3(4.5)}
1048 | .cm_prl5{.func_pd3(5)}
1049 | .cm_prl505{.func_pd3(5.5)}
1050 | .cm_prl6{.func_pd3(6)}
1051 | .cm_prl605{.func_pd3(6.5)}
1052 | .cm_prl7{.func_pd3(7)}
1053 | //padding:0 *
1054 | //padding-top
1055 | .func_pd4(@m){
1056 | padding-top:@m*@num_fs!important;
1057 | }
1058 | .cm_pt2f{.func_pd4(-2)}
1059 | .cm_pt105f{.func_pd4(-1.5)}
1060 | .cm_pt1f{.func_pd4(-1)}
1061 | .cm_pt05f{.func_pd4(-0.5)}
1062 | .cm_pt0{.func_pd4(0)}
1063 | .cm_pt01{.func_pd4(0.1)}
1064 | .cm_pt02{.func_pd4(0.2)}
1065 | .cm_pt025{.func_pd4(0.25)}
1066 | .cm_pt05{.func_pd4(0.5)}
1067 | .cm_pt075{.func_pd4(0.75)}
1068 | .cm_pt1{.func_pd4(1)}
1069 | .cm_pt2{.func_pd4(2)}
1070 | .cm_pt3{.func_pd4(3)}
1071 | .cm_pt4{.func_pd4(4)}
1072 | .cm_pt5{.func_pd4(5)}
1073 | //padding-top
1074 | //padding-bottom
1075 | .func_pd5(@m){
1076 | padding-bottom:@m*@num_fs!important;
1077 | }
1078 | .cm_pb2f{.func_pd5(-2)}
1079 | .cm_pb105f{.func_pd5(-1.5)}
1080 | .cm_pb1f{.func_pd5(-1)}
1081 | .cm_pb05f{.func_pd5(-0.5)}
1082 | .cm_pb0{.func_pd5(0)}
1083 | .cm_pb01{.func_pd5(0.1)}
1084 | .cm_pb02{.func_pd5(0.2)}
1085 | .cm_pb025{.func_pd5(0.25)}
1086 | .cm_pb05{.func_pd5(0.5)}
1087 | .cm_pb075{.func_pd5(0.75)}
1088 | .cm_pb1{.func_pd5(1)}
1089 | .cm_pb2{.func_pd5(2)}
1090 | .cm_pb3{.func_pd5(3)}
1091 | .cm_pb4{.func_pd5(4)}
1092 | .cm_pb5{.func_pd5(5)}
1093 | //padding-bottom
1094 | //padding-left
1095 | .func_pd6(@m){
1096 | padding-left:@m*@num_fs!important;
1097 | }
1098 | .cm_pl2f{.func_pd6(-2)}
1099 | .cm_pl105f{.func_pd6(-1.5)}
1100 | .cm_pl1f{.func_pd6(-1)}
1101 | .cm_pl05f{.func_pd6(-0.5)}
1102 | .cm_pl0{.func_pd6(0)}
1103 | .cm_pl01{.func_pd6(0.1)}
1104 | .cm_pl02{.func_pd6(0.2)}
1105 | .cm_pl025{.func_pd6(0.25)}
1106 | .cm_pl05{.func_pd6(0.5)}
1107 | .cm_pl075{.func_pd6(0.75)}
1108 | .cm_pl1{.func_pd6(1)}
1109 | .cm_pl105{.func_pd6(1.5)}
1110 | .cm_pl2{.func_pd6(2)}
1111 | .cm_pl205{.func_pd6(2.5)}
1112 | .cm_pl3{.func_pd6(3)}
1113 | .cm_pl305{.func_pd6(3.5)}
1114 | .cm_pl4{.func_pd6(4)}
1115 | .cm_pl405{.func_pd6(4.5)}
1116 | .cm_pl5{.func_pd6(5)}
1117 | .cm_pl505{.func_pd6(5.5)}
1118 | .cm_pl6{.func_pd6(6)}
1119 | .cm_pl605{.func_pd6(6.5)}
1120 | .cm_pl7{.func_pd6(7)}
1121 | .cm_pl705{.func_pd6(7.5)}
1122 | .cm_pl8{.func_pd6(8)}
1123 | .cm_pl805{.func_pd6(8.5)}
1124 | .cm_pl9{.func_pd6(9)}
1125 | .cm_pl905{.func_pd6(9.5)}
1126 | .cm_pl10{.func_pd6(10)}
1127 | //padding-left
1128 | //padding-right
1129 | .func_pd7(@m){
1130 | padding-right:@m*@num_fs!important;
1131 | }
1132 | .cm_pr2f{.func_pd7(-2)}
1133 | .cm_pr105f{.func_pd7(-1.5)}
1134 | .cm_pr1f{.func_pd7(-1)}
1135 | .cm_pr05f{.func_pd7(-0.5)}
1136 | .cm_pr0{.func_pd7(0)}
1137 | .cm_pr01{.func_pd7(0.1)}
1138 | .cm_pr02{.func_pd7(0.2)}
1139 | .cm_pr025{.func_pd7(0.25)}
1140 | .cm_pr05{.func_pd7(0.5)}
1141 | .cm_pr075{.func_pd7(0.75)}
1142 | .cm_pr1{.func_pd7(1)}
1143 | .cm_pr105{.func_pd7(1.5)}
1144 | .cm_pr2{.func_pd7(2)}
1145 | .cm_pr205{.func_pd7(2.5)}
1146 | .cm_pr3{.func_pd7(3)}
1147 | .cm_pr305{.func_pd7(3.5)}
1148 | .cm_pr4{.func_pd7(4)}
1149 | .cm_pr405{.func_pd7(4.5)}
1150 | .cm_pr5{.func_pd7(5)}
1151 | .cm_pr505{.func_pd7(5.5)}
1152 | .cm_pr6{.func_pd7(6)}
1153 | .cm_pr605{.func_pd7(6.5)}
1154 | .cm_pr7{.func_pd7(7)}
1155 | .cm_pr705{.func_pd7(7.5)}
1156 | .cm_pr8{.func_pd7(8)}
1157 | .cm_pr805{.func_pd7(8.5)}
1158 | .cm_pr9{.func_pd7(9)}
1159 | .cm_pr905{.func_pd7(9.5)}
1160 | .cm_pr10{.func_pd7(10)}
1161 | //padding-right
1162 | //内边距padding
1163 |
1164 | //边框border
1165 | .func_bd(@b){
1166 | border:@b!important;
1167 | }
1168 | //border
1169 | .cm_bd0{.func_bd(0)}
1170 |
1171 | .cm_b1c1d{.func_bd(1px dashed @c1)}
1172 | .cm_b1c2d{.func_bd(1px dashed @c2)}
1173 | .cm_b1c3d{.func_bd(1px dashed @c3)}
1174 | .cm_b1c4d{.func_bd(1px dashed @c4)}
1175 | .cm_b1c5d{.func_bd(1px dashed @c5)}
1176 | .cm_b1c6d{.func_bd(1px dashed @c6)}
1177 | .cm_b1c7d{.func_bd(1px dashed @c7)}
1178 | .cm_b1c0d{.func_bd(1px dashed @c0)}
1179 | .cm_b1ccd{.func_bd(1px dashed @cc)}
1180 | .cm_b1cdd{.func_bd(1px dashed @cd)}
1181 | .cm_b1ced{.func_bd(1px dashed @ce)}
1182 | .cm_b1cfd{.func_bd(1px dashed @cf)}
1183 |
1184 | .cm_b1c1{.func_bd(1px solid @c1)}
1185 | .cm_b1c2{.func_bd(1px solid @c2)}
1186 | .cm_b1c3{.func_bd(1px solid @c3)}
1187 | .cm_b1c4{.func_bd(1px solid @c4)}
1188 | .cm_b1c5{.func_bd(1px solid @c5)}
1189 | .cm_b1c6{.func_bd(1px solid @c6)}
1190 | .cm_b1c7{.func_bd(1px solid @c7)}
1191 | .cm_b1c0{.func_bd(1px solid @c0)}
1192 | .cm_b1cc{.func_bd(1px solid @cc)}
1193 | .cm_b1cd{.func_bd(1px solid @cd)}
1194 | .cm_b1ce{.func_bd(1px solid @ce)}
1195 | .cm_b1cf{.func_bd(1px solid @cf)}
1196 |
1197 | .cm_b2c1{.func_bd(2px solid @c1)}
1198 | .cm_b2c2{.func_bd(2px solid @c2)}
1199 | .cm_b2c3{.func_bd(2px solid @c3)}
1200 | .cm_b2c4{.func_bd(2px solid @c4)}
1201 | .cm_b2c5{.func_bd(2px solid @c5)}
1202 | .cm_b2c6{.func_bd(2px solid @c6)}
1203 | .cm_b2c7{.func_bd(2px solid @c7)}
1204 | .cm_b2c0{.func_bd(2px solid @c0)}
1205 | .cm_b2cc{.func_bd(2px solid @cc)}
1206 | .cm_b2cd{.func_bd(2px solid @cd)}
1207 | .cm_b2ce{.func_bd(2px solid @ce)}
1208 | .cm_b2cf{.func_bd(2px solid @cf)}
1209 |
1210 | .cm_b3c1{.func_bd(3px solid @c1)}
1211 | .cm_b3c2{.func_bd(3px solid @c2)}
1212 | .cm_b3c3{.func_bd(3px solid @c3)}
1213 | .cm_b3c4{.func_bd(3px solid @c4)}
1214 | .cm_b3c5{.func_bd(3px solid @c5)}
1215 | .cm_b3c6{.func_bd(3px solid @c6)}
1216 | .cm_b3c7{.func_bd(3px solid @c7)}
1217 | .cm_b3c0{.func_bd(3px solid @c0)}
1218 | .cm_b3cc{.func_bd(3px solid @cc)}
1219 | .cm_b3cd{.func_bd(3px solid @cd)}
1220 | .cm_b3ce{.func_bd(3px solid @ce)}
1221 | .cm_b3cf{.func_bd(3px solid @cf)}
1222 | //border
1223 | //border-top
1224 | .func_bt(@b){
1225 | border-top:@b!important;
1226 | }
1227 | .cm_bt1c1d{.func_bt(1px dashed @c1)}
1228 | .cm_bt1c2d{.func_bt(1px dashed @c2)}
1229 | .cm_bt1c3d{.func_bt(1px dashed @c3)}
1230 | .cm_bt1c4d{.func_bt(1px dashed @c4)}
1231 | .cm_bt1c5d{.func_bt(1px dashed @c5)}
1232 | .cm_bt1c6d{.func_bt(1px dashed @c6)}
1233 | .cm_bt1c7d{.func_bt(1px dashed @c7)}
1234 | .cm_bt1c0d{.func_bt(1px dashed @c0)}
1235 | .cm_bt1ccd{.func_bt(1px dashed @cc)}
1236 | .cm_bt1cdd{.func_bt(1px dashed @cd)}
1237 | .cm_bt1ced{.func_bt(1px dashed @ce)}
1238 | .cm_bt1cfd{.func_bt(1px dashed @cf)}
1239 |
1240 | .cm_bt1c1{.func_bt(1px solid @c1)}
1241 | .cm_bt1c2{.func_bt(1px solid @c2)}
1242 | .cm_bt1c3{.func_bt(1px solid @c3)}
1243 | .cm_bt1c4{.func_bt(1px solid @c4)}
1244 | .cm_bt1c5{.func_bt(1px solid @c5)}
1245 | .cm_bt1c6{.func_bt(1px solid @c6)}
1246 | .cm_bt1c7{.func_bt(1px solid @c7)}
1247 | .cm_bt1c0{.func_bt(1px solid @c0)}
1248 | .cm_bt1cc{.func_bt(1px solid @cc)}
1249 | .cm_bt1cd{.func_bt(1px solid @cd)}
1250 | .cm_bt1ce{.func_bt(1px solid @ce)}
1251 | .cm_bt1cf{.func_bt(1px solid @cf)}
1252 |
1253 | .cm_bt2c1{.func_bt(2px solid @c1)}
1254 | .cm_bt2c2{.func_bt(2px solid @c2)}
1255 | .cm_bt2c3{.func_bt(2px solid @c3)}
1256 | .cm_bt2c4{.func_bt(2px solid @c4)}
1257 | .cm_bt2c5{.func_bt(2px solid @c5)}
1258 | .cm_bt2c6{.func_bt(2px solid @c6)}
1259 | .cm_bt2c7{.func_bt(2px solid @c7)}
1260 | .cm_bt2c0{.func_bt(2px solid @c0)}
1261 | .cm_bt2cc{.func_bt(2px solid @cc)}
1262 | .cm_bt2cd{.func_bt(2px solid @cd)}
1263 | .cm_bt2ce{.func_bt(2px solid @ce)}
1264 | .cm_bt2cf{.func_bt(2px solid @cf)}
1265 |
1266 | .cm_bt3c1{.func_bt(3px solid @c1)}
1267 | .cm_bt3c2{.func_bt(3px solid @c2)}
1268 | .cm_bt3c3{.func_bt(3px solid @c3)}
1269 | .cm_bt3c4{.func_bt(3px solid @c4)}
1270 | .cm_bt3c5{.func_bt(3px solid @c5)}
1271 | .cm_bt3c6{.func_bt(3px solid @c6)}
1272 | .cm_bt3c7{.func_bt(3px solid @c7)}
1273 | .cm_bt3c0{.func_bt(3px solid @c0)}
1274 | .cm_bt3cc{.func_bt(3px solid @cc)}
1275 | .cm_bt3cd{.func_bt(3px solid @cd)}
1276 | .cm_bt3ce{.func_bt(3px solid @ce)}
1277 | .cm_bt3cf{.func_bt(3px solid @cf)}
1278 | //border-top
1279 | //border-bottom
1280 | .func_bb(@b){
1281 | border-bottom:@b!important;
1282 | }
1283 | .cm_bb1c1d{.func_bb(1px dashed @c1)}
1284 | .cm_bb1c2d{.func_bb(1px dashed @c2)}
1285 | .cm_bb1c3d{.func_bb(1px dashed @c3)}
1286 | .cm_bb1c4d{.func_bb(1px dashed @c4)}
1287 | .cm_bb1c5d{.func_bb(1px dashed @c5)}
1288 | .cm_bb1c6d{.func_bb(1px dashed @c6)}
1289 | .cm_bb1c7d{.func_bb(1px dashed @c7)}
1290 | .cm_bb1c0d{.func_bb(1px dashed @c0)}
1291 | .cm_bb1ccd{.func_bb(1px dashed @cc)}
1292 | .cm_bb1cdd{.func_bb(1px dashed @cd)}
1293 | .cm_bb1ced{.func_bb(1px dashed @ce)}
1294 | .cm_bb1cfd{.func_bb(1px dashed @cf)}
1295 |
1296 | .cm_bb1c1{.func_bb(1px solid @c1)}
1297 | .cm_bb1c2{.func_bb(1px solid @c2)}
1298 | .cm_bb1c3{.func_bb(1px solid @c3)}
1299 | .cm_bb1c4{.func_bb(1px solid @c4)}
1300 | .cm_bb1c5{.func_bb(1px solid @c5)}
1301 | .cm_bb1c6{.func_bb(1px solid @c6)}
1302 | .cm_bb1c7{.func_bb(1px solid @c7)}
1303 | .cm_bb1c0{.func_bb(1px solid @c0)}
1304 | .cm_bb1cc{.func_bb(1px solid @cc)}
1305 | .cm_bb1cd{.func_bb(1px solid @cd)}
1306 | .cm_bb1ce{.func_bb(1px solid @ce)}
1307 | .cm_bb1cf{.func_bb(1px solid @cf)}
1308 |
1309 | .cm_bb2c1{.func_bb(2px solid @c1)}
1310 | .cm_bb2c2{.func_bb(2px solid @c2)}
1311 | .cm_bb2c3{.func_bb(2px solid @c3)}
1312 | .cm_bb2c4{.func_bb(2px solid @c4)}
1313 | .cm_bb2c5{.func_bb(2px solid @c5)}
1314 | .cm_bb2c6{.func_bb(2px solid @c6)}
1315 | .cm_bb2c7{.func_bb(2px solid @c7)}
1316 | .cm_bb2c0{.func_bb(2px solid @c0)}
1317 | .cm_bb2cc{.func_bb(2px solid @cc)}
1318 | .cm_bb2cd{.func_bb(2px solid @cd)}
1319 | .cm_bb2ce{.func_bb(2px solid @ce)}
1320 | .cm_bb2cf{.func_bb(2px solid @cf)}
1321 |
1322 | .cm_bb3c1{.func_bb(3px solid @c1)}
1323 | .cm_bb3c2{.func_bb(3px solid @c2)}
1324 | .cm_bb3c3{.func_bb(3px solid @c3)}
1325 | .cm_bb3c4{.func_bb(3px solid @c4)}
1326 | .cm_bb3c5{.func_bb(3px solid @c5)}
1327 | .cm_bb3c6{.func_bb(3px solid @c6)}
1328 | .cm_bb3c7{.func_bb(3px solid @c7)}
1329 | .cm_bb3c0{.func_bb(3px solid @c0)}
1330 | .cm_bb3cc{.func_bb(3px solid @cc)}
1331 | .cm_bb3cd{.func_bb(3px solid @cd)}
1332 | .cm_bb3ce{.func_bb(3px solid @ce)}
1333 | .cm_bb3cf{.func_bb(3px solid @cf)}
1334 | //border-bottom
1335 | //border-left
1336 | .func_bl(@b){
1337 | border-left:@b!important;
1338 | }
1339 | .cm_bl1c1d{.func_bl(1px dashed @c1)}
1340 | .cm_bl1c2d{.func_bl(1px dashed @c2)}
1341 | .cm_bl1c3d{.func_bl(1px dashed @c3)}
1342 | .cm_bl1c4d{.func_bl(1px dashed @c4)}
1343 | .cm_bl1c5d{.func_bl(1px dashed @c5)}
1344 | .cm_bl1c6d{.func_bl(1px dashed @c6)}
1345 | .cm_bl1c7d{.func_bl(1px dashed @c7)}
1346 | .cm_bl1c0d{.func_bl(1px dashed @c0)}
1347 | .cm_bl1ccd{.func_bl(1px dashed @cc)}
1348 | .cm_bl1cdd{.func_bl(1px dashed @cd)}
1349 | .cm_bl1ced{.func_bl(1px dashed @ce)}
1350 | .cm_bl1cfd{.func_bl(1px dashed @cf)}
1351 |
1352 | .cm_bl1c1{.func_bl(1px solid @c1)}
1353 | .cm_bl1c2{.func_bl(1px solid @c2)}
1354 | .cm_bl1c3{.func_bl(1px solid @c3)}
1355 | .cm_bl1c4{.func_bl(1px solid @c4)}
1356 | .cm_bl1c5{.func_bl(1px solid @c5)}
1357 | .cm_bl1c6{.func_bl(1px solid @c6)}
1358 | .cm_bl1c7{.func_bl(1px solid @c7)}
1359 | .cm_bl1c0{.func_bl(1px solid @c0)}
1360 | .cm_bl1cc{.func_bl(1px solid @cc)}
1361 | .cm_bl1cd{.func_bl(1px solid @cd)}
1362 | .cm_bl1ce{.func_bl(1px solid @ce)}
1363 | .cm_bl1cf{.func_bl(1px solid @cf)}
1364 |
1365 | .cm_bl2c1{.func_bl(2px solid @c1)}
1366 | .cm_bl2c2{.func_bl(2px solid @c2)}
1367 | .cm_bl2c3{.func_bl(2px solid @c3)}
1368 | .cm_bl2c4{.func_bl(2px solid @c4)}
1369 | .cm_bl2c5{.func_bl(2px solid @c5)}
1370 | .cm_bl2c6{.func_bl(2px solid @c6)}
1371 | .cm_bl2c7{.func_bl(2px solid @c7)}
1372 | .cm_bl2c0{.func_bl(2px solid @c0)}
1373 | .cm_bl2cc{.func_bl(2px solid @cc)}
1374 | .cm_bl2cd{.func_bl(2px solid @cd)}
1375 | .cm_bl2ce{.func_bl(2px solid @ce)}
1376 | .cm_bl2cf{.func_bl(2px solid @cf)}
1377 |
1378 | .cm_bl3c1{.func_bl(3px solid @c1)}
1379 | .cm_bl3c2{.func_bl(3px solid @c2)}
1380 | .cm_bl3c3{.func_bl(3px solid @c3)}
1381 | .cm_bl3c4{.func_bl(3px solid @c4)}
1382 | .cm_bl3c5{.func_bl(3px solid @c5)}
1383 | .cm_bl3c6{.func_bl(3px solid @c6)}
1384 | .cm_bl3c7{.func_bl(3px solid @c7)}
1385 | .cm_bl3c0{.func_bl(3px solid @c0)}
1386 | .cm_bl3cc{.func_bl(3px solid @cc)}
1387 | .cm_bl3cd{.func_bl(3px solid @cd)}
1388 | .cm_bl3ce{.func_bl(3px solid @ce)}
1389 | .cm_bl3cf{.func_bl(3px solid @cf)}
1390 | //border-left
1391 | //border-right
1392 | .func_br(@b){
1393 | border-right:@b!important;
1394 | }
1395 | .cm_br1c1d{.func_br(1px dashed @c1)}
1396 | .cm_br1c2d{.func_br(1px dashed @c2)}
1397 | .cm_br1c3d{.func_br(1px dashed @c3)}
1398 | .cm_br1c4d{.func_br(1px dashed @c4)}
1399 | .cm_br1c5d{.func_br(1px dashed @c5)}
1400 | .cm_br1c6d{.func_br(1px dashed @c6)}
1401 | .cm_br1c7d{.func_br(1px dashed @c7)}
1402 | .cm_br1c0d{.func_br(1px dashed @c0)}
1403 | .cm_br1ccd{.func_br(1px dashed @cc)}
1404 | .cm_br1cdd{.func_br(1px dashed @cd)}
1405 | .cm_br1ced{.func_br(1px dashed @ce)}
1406 | .cm_br1cfd{.func_br(1px dashed @cf)}
1407 |
1408 | .cm_br1c1{.func_br(1px solid @c1)}
1409 | .cm_br1c2{.func_br(1px solid @c2)}
1410 | .cm_br1c3{.func_br(1px solid @c3)}
1411 | .cm_br1c4{.func_br(1px solid @c4)}
1412 | .cm_br1c5{.func_br(1px solid @c5)}
1413 | .cm_br1c6{.func_br(1px solid @c6)}
1414 | .cm_br1c7{.func_br(1px solid @c7)}
1415 | .cm_br1c0{.func_br(1px solid @c0)}
1416 | .cm_br1cc{.func_br(1px solid @cc)}
1417 | .cm_br1cd{.func_br(1px solid @cd)}
1418 | .cm_br1ce{.func_br(1px solid @ce)}
1419 | .cm_br1cf{.func_br(1px solid @cf)}
1420 |
1421 | .cm_br2c1{.func_br(2px solid @c1)}
1422 | .cm_br2c2{.func_br(2px solid @c2)}
1423 | .cm_br2c3{.func_br(2px solid @c3)}
1424 | .cm_br2c4{.func_br(2px solid @c4)}
1425 | .cm_br2c5{.func_br(2px solid @c5)}
1426 | .cm_br2c6{.func_br(2px solid @c6)}
1427 | .cm_br2c7{.func_br(2px solid @c7)}
1428 | .cm_br2c0{.func_br(2px solid @c0)}
1429 | .cm_br2cc{.func_br(2px solid @cc)}
1430 | .cm_br2cd{.func_br(2px solid @cd)}
1431 | .cm_br2ce{.func_br(2px solid @ce)}
1432 | .cm_br2cf{.func_br(2px solid @cf)}
1433 |
1434 | .cm_br3c1{.func_br(3px solid @c1)}
1435 | .cm_br3c2{.func_br(3px solid @c2)}
1436 | .cm_br3c3{.func_br(3px solid @c3)}
1437 | .cm_br3c4{.func_br(3px solid @c4)}
1438 | .cm_br3c5{.func_br(3px solid @c5)}
1439 | .cm_br3c6{.func_br(3px solid @c6)}
1440 | .cm_br3c7{.func_br(3px solid @c7)}
1441 | .cm_br3c0{.func_br(3px solid @c0)}
1442 | .cm_br3cc{.func_br(3px solid @cc)}
1443 | .cm_br3cd{.func_br(3px solid @cd)}
1444 | .cm_br3ce{.func_br(3px solid @ce)}
1445 | .cm_br3cf{.func_br(3px solid @cf)}
1446 | //border-right
1447 | //边框border
1448 |
1449 | //圆角
1450 | //border-radius
1451 | .func_bdr(@num){
1452 | .func(border-radius,@num*@num_fs);
1453 | }
1454 | .cm_br01{.func_bdr(0.1)}
1455 | .cm_br02{.func_bdr(0.2)}
1456 | .cm_br025{.func_bdr(0.25)}
1457 | .cm_br03{.func_bdr(0.3)}
1458 | .cm_br04{.func_bdr(0.4)}
1459 | .cm_br05{.func_bdr(0.5)}
1460 | .cm_br06{.func_bdr(0.6)}
1461 | .cm_br07{.func_bdr(0.7)}
1462 | .cm_br075{.func_bdr(0.75)}
1463 | .cm_br1{.func_bdr(1)}
1464 | .cm_br105{.func_bdr(1.5)}
1465 | .cm_br2{.func_bdr(2)}
1466 | .cm_br205{.func_bdr(2.5)}
1467 | .cm_br3{.func_bdr(3)}
1468 | .cm_br305{.func_bdr(3.5)}
1469 | .cm_br4{.func_bdr(4)}
1470 | .cm_br405{.func_bdr(4.5)}
1471 | .cm_br5{.func_bdr(5)}
1472 | //border-radius
1473 |
1474 | // border-top-right-radius
1475 | .func_btrr(@num){
1476 | .func(border-top-right-radius,@num*@num_fs);
1477 | }
1478 | .cm_brtr01{.func_btrr(0.1)}
1479 | .cm_brtr02{.func_btrr(0.2)}
1480 | .cm_brtr025{.func_btrr(0.25)}
1481 | .cm_brtr05{.func_btrr(0.5)}
1482 | .cm_brtr1{.func_btrr(1)}
1483 | .cm_brtr105{.func_btrr(1.5)}
1484 | .cm_brtr2{.func_btrr(2)}
1485 | // border-top-right-radius
1486 | // border-top-left-radius
1487 | .func_btlr(@num){
1488 | .func(border-top-left-radius,@num*@num_fs);
1489 | }
1490 | .cm_brtl01{.func_btlr(0.1)}
1491 | .cm_brtl02{.func_btlr(0.2)}
1492 | .cm_brtl025{.func_btlr(0.25)}
1493 | .cm_brtl05{.func_btlr(0.5)}
1494 | .cm_brtl1{.func_btlr(1)}
1495 | .cm_brtl105{.func_btlr(1.5)}
1496 | .cm_brtl2{.func_btlr(2)}
1497 | // border-top-left-radius
1498 | // border-bottom-right-radius
1499 | .func_bbrr(@num){
1500 | .func(border-bottom-right-radius,@num*@num_fs);
1501 | }
1502 | .cm_brbr01{.func_bbrr(0.1)}
1503 | .cm_brbr02{.func_bbrr(0.2)}
1504 | .cm_brbr025{.func_bbrr(0.25)}
1505 | .cm_brbr05{.func_bbrr(0.5)}
1506 | .cm_brbr1{.func_bbrr(1)}
1507 | .cm_brbr105{.func_bbrr(1.5)}
1508 | .cm_brbr2{.func_bbrr(2)}
1509 | // border-bottom-right-radius
1510 | // border-bottom-left-radius
1511 | .func_bblr(@num){
1512 | .func(border-bottom-left-radius,@num*@num_fs);
1513 | }
1514 | .cm_brbl01{.func_bblr(0.1)}
1515 | .cm_brbl02{.func_bblr(0.2)}
1516 | .cm_brbl025{.func_bblr(0.25)}
1517 | .cm_brbl05{.func_bblr(0.5)}
1518 | .cm_brbl1{.func_bblr(1)}
1519 | .cm_brbl105{.func_bblr(1.5)}
1520 | .cm_brbl2{.func_bblr(2)}
1521 | // border-bottom-left-radius
1522 | //圆角
1523 |
1524 | //box-shadow
1525 | .func_bs(@num,@c){
1526 | .func(box-shadow,@num*@num_fs @num*@num_fs @num*@num_fs @c);
1527 | }
1528 | .cm_bs01c1{.func_bs(0.1,@c1)}
1529 | .cm_bs01c2{.func_bs(0.1,@c2)}
1530 | .cm_bs01c3{.func_bs(0.1,@c3)}
1531 | .cm_bs01c4{.func_bs(0.1,@c4)}
1532 | .cm_bs01c5{.func_bs(0.1,@c5)}
1533 | .cm_bs01c6{.func_bs(0.1,@c6)}
1534 | .cm_bs01c7{.func_bs(0.1,@c7)}
1535 | .cm_bs01c0{.func_bs(0.1,@c0)}
1536 | .cm_bs01cc{.func_bs(0.1,@cc)}
1537 | .cm_bs01cd{.func_bs(0.1,@cd)}
1538 | .cm_bs01ce{.func_bs(0.1,@ce)}
1539 | .cm_bs01cf{.func_bs(0.1,@cf)}
1540 | .cm_bs02c1{.func_bs(0.2,@c1)}
1541 | .cm_bs02c2{.func_bs(0.2,@c2)}
1542 | .cm_bs02c3{.func_bs(0.2,@c3)}
1543 | .cm_bs02c4{.func_bs(0.2,@c4)}
1544 | .cm_bs02c5{.func_bs(0.2,@c5)}
1545 | .cm_bs02c6{.func_bs(0.2,@c6)}
1546 | .cm_bs02c7{.func_bs(0.2,@c7)}
1547 | .cm_bs02c0{.func_bs(0.2,@c0)}
1548 | .cm_bs02cc{.func_bs(0.2,@cc)}
1549 | .cm_bs02cd{.func_bs(0.2,@cd)}
1550 | .cm_bs02ce{.func_bs(0.2,@ce)}
1551 | .cm_bs02cf{.func_bs(0.2,@cf)}
1552 | .cm_bs05c1{.func_bs(0.5,@c1)}
1553 | .cm_bs05c2{.func_bs(0.5,@c2)}
1554 | .cm_bs05c3{.func_bs(0.5,@c3)}
1555 | .cm_bs05c4{.func_bs(0.5,@c4)}
1556 | .cm_bs05c5{.func_bs(0.5,@c5)}
1557 | .cm_bs05c6{.func_bs(0.5,@c6)}
1558 | .cm_bs05c7{.func_bs(0.5,@c7)}
1559 | .cm_bs05c0{.func_bs(0.5,@c0)}
1560 | .cm_bs05cc{.func_bs(0.5,@cc)}
1561 | .cm_bs05cd{.func_bs(0.5,@cd)}
1562 | .cm_bs05ce{.func_bs(0.5,@ce)}
1563 | .cm_bs05cf{.func_bs(0.5,@cf)}
1564 | .cm_bs1c1{.func_bs(1,@c1)}
1565 | .cm_bs1c2{.func_bs(1,@c2)}
1566 | .cm_bs1c3{.func_bs(1,@c3)}
1567 | .cm_bs1c4{.func_bs(1,@c4)}
1568 | .cm_bs1c5{.func_bs(1,@c5)}
1569 | .cm_bs1c6{.func_bs(1,@c6)}
1570 | .cm_bs1c7{.func_bs(1,@c7)}
1571 | .cm_bs1c0{.func_bs(1,@c0)}
1572 | .cm_bs1cc{.func_bs(1,@cc)}
1573 | .cm_bs1cd{.func_bs(1,@cd)}
1574 | .cm_bs1ce{.func_bs(1,@ce)}
1575 | .cm_bs1cf{.func_bs(1,@cf)}
1576 | //box-shadow
1577 |
1578 | // overflow
1579 | .func_of(@f){
1580 | overflow:@f;
1581 | }
1582 | .cm_oa{.func_of(auto)}
1583 | .cm_oh{.func_of(hidden)}
1584 | .cm_ov{.func_of(visible)}
1585 | .cm_os{.func_of(scroll)}
1586 | .cm_oi{.func_of(inherit)}
1587 | // overflow
1588 |
1589 | // overflow-x
1590 | .func_oxf(@f){
1591 | overflow-x:@f;
1592 | }
1593 | .cm_oxa{.func_oxf(auto)}
1594 | .cm_oxh{.func_oxf(hidden)}
1595 | .cm_oxv{.func_oxf(visible)}
1596 | .cm_oxs{.func_oxf(scroll)}
1597 | .cm_oxi{.func_oxf(inherit)}
1598 | // overflow-x
1599 | // overflow-y
1600 | .func_oyf(@f){
1601 | overflow-y:@f;
1602 | }
1603 | .cm_oya{.func_oyf(auto)}
1604 | .cm_oyh{.func_oyf(hidden)}
1605 | .cm_oyv{.func_oyf(visible)}
1606 | .cm_oys{.func_oyf(scroll)}
1607 | .cm_oyi{.func_oyf(inherit)}
1608 | // overflow-y
1609 |
1610 | //visible
1611 | .func_v(@v){
1612 | visibility:@v;
1613 | }
1614 | .cm_vh{.func_v(hidden)}
1615 | .cm_vv{.func_v(visible)}
1616 | .cm_vi{.func_v(inherit)}
1617 | .cm_vc{.func_v(collapse)}
1618 | //visible
1619 |
1620 | //list-style:
1621 | .func_li(@i){
1622 | list-style: @i;
1623 | }
1624 | .cm_lids li{.func_li(disc)}
1625 | .cm_lic li{.func_li(circle)}
1626 | .cm_lis li{.func_li(square)}
1627 | .cm_lidc li{.func_li(decimal)}
1628 | .cm_lilr li{.func_li(lower-roman)}
1629 | .cm_liur li{.func_li(upper-roman)}
1630 | .cm_lila li{.func_li(lower-alpha)}
1631 | .cm_liua li{.func_li(upper-alpha)}
1632 | .cm_lids2>li{.func_li(disc)}
1633 | .cm_lic2>li{.func_li(circle)}
1634 | .cm_lis2>li{.func_li(square)}
1635 | .cm_lidc2>li{.func_li(decimal)}
1636 | .cm_lilr2>li{.func_li(lower-roman)}
1637 | .cm_liur2>li{.func_li(upper-roman)}
1638 | .cm_lila2>li{.func_li(lower-alpha)}
1639 | .cm_liua2>li{.func_li(upper-alpha)}
1640 | //list-style:
1641 |
1642 | //设置图片
1643 | .func_img(@x,@y){
1644 | background-size:@x,@y!important;
1645 | }
1646 | .cm_bs100{.func_img(100%,100%)}
1647 | .cm_w100{width:100%;}
1648 | .cm_h100{height:100%;}
1649 | .cm_wh100{width:100%;height:100%;}
1650 | //设置图片
1651 |
1652 | //pre自动换行
1653 | pre {
1654 | white-space: pre-wrap;
1655 | word-wrap: break-word;
1656 | }
1657 | //pre自动换行
1658 | //省略文字..
1659 | .cm_ts{
1660 | text-overflow: ellipsis;
1661 | overflow: hidden;
1662 | white-space: nowrap !important;
1663 | outline: 0 !important
1664 | }
1665 | .cm_ws_nm{white-space:normal}
1666 | .cm_ws_p{white-space:pre}
1667 | .cm_ws_nw{white-space:nowrap}
1668 | .cm_wb_n{word-break:normal}
1669 | .cm_wb_b{word-break:break-all}
1670 | .cm_wb_k{word-break:keep-all}
1671 | .cm_ww_n{word-wrap:normal}
1672 | .cm_ww_b{word-wrap:break-word}
1673 | //省略文字..
1674 |
1675 | /*cmui栅格系统*/
1676 | //适配手机与PC
1677 | .cm_pc_1,.cm_pc_2,.cm_pc_3,.cm_pc_4,.cm_pc_5,.cm_pc_6,.cm_pc_7,.cm_pc_8,.cm_pc_9,.cm_pc_10,.cm_pc_11,.cm_pc_12,.cm_mob_1,.cm_mob_2,.cm_mob_3,.cm_mob_4,.cm_mob_5,.cm_mob_6,.cm_mob_7,.cm_mob_8,.cm_mob_9,.cm_mob_10,.cm_mob_11,.cm_mob_12,.cm_pc_1f,.cm_pc_2f,.cm_pc_3f,.cm_pc_4f,.cm_pc_5f,.cm_pc_6f,.cm_pc_7f,.cm_pc_8f,.cm_pc_9f,.cm_pc_10f,.cm_pc_11f,.cm_pc_12f,.cm_mob_1f,.cm_mob_2f,.cm_mob_3f,.cm_mob_4f,.cm_mob_5f,.cm_mob_6f,.cm_mob_7f,.cm_mob_8f,.cm_mob_9f,.cm_mob_10f,.cm_mob_11f,.cm_mob_12f{
1678 | position: relative;
1679 | float: left;
1680 | }
1681 | .func_pcmob(@n){
1682 | width: 100*@n*@num_bf1/12;
1683 | }
1684 | //pc布局
1685 | .cm_pc_1{.func_pcmob(1)}
1686 | .cm_pc_2{.func_pcmob(2)}
1687 | .cm_pc_3{.func_pcmob(3)}
1688 | .cm_pc_4{.func_pcmob(4)}
1689 | .cm_pc_5{.func_pcmob(5)}
1690 | .cm_pc_6{.func_pcmob(6)}
1691 | .cm_pc_7{.func_pcmob(7)}
1692 | .cm_pc_8{.func_pcmob(8)}
1693 | .cm_pc_9{.func_pcmob(9)}
1694 | .cm_pc_10{.func_pcmob(10)}
1695 | .cm_pc_11{.func_pcmob(11)}
1696 | .cm_pc_12{.func_pcmob(12)}
1697 | //pc布局
1698 | //栅格平均分
1699 | .func_fen(@num){
1700 | width:100/@num*@num_bf1;
1701 | }
1702 | .cm_pc_1f{.func_fen(1)}
1703 | .cm_pc_2f{.func_fen(2)}
1704 | .cm_pc_3f{.func_fen(3)}
1705 | .cm_pc_4f{.func_fen(4)}
1706 | .cm_pc_5f{.func_fen(5)}
1707 | .cm_pc_6f{.func_fen(6)}
1708 | .cm_pc_7f{.func_fen(7)}
1709 | .cm_pc_8f{.func_fen(8)}
1710 | .cm_pc_9f{.func_fen(9)}
1711 | .cm_pc_10f{.func_fen(10)}
1712 | .cm_pc_11f{.func_fen(11)}
1713 | .cm_pc_12f{.func_fen(12)}
1714 | //栅格平均分
1715 | //pc 1200px
1716 | .cm_main,.cm_main2 {
1717 | float:none;
1718 | padding: 0;
1719 | margin:0 auto;
1720 | }
1721 | .com_main:before,
1722 | .com_main:after,
1723 | .com_main2:before,
1724 | .com_main2:after{
1725 | display: table;
1726 | content: " ";
1727 | clear: both;
1728 | }
1729 | .cm_main{width: 1200px!important;}
1730 | .cm_main2{width: 100%;}
1731 | .cm_pc{
1732 | display:block!important;
1733 | }
1734 | .cm_pc_i{
1735 | display:inline-block!important;
1736 | }
1737 | .cm_mob{
1738 | display:none!important;
1739 | }
1740 | .cm_mob_i{
1741 | display:none!important;
1742 | }
1743 | //pc 1200px
1744 | //mobile布局
1745 | @media (max-width: 768px) {
1746 | .cm_mob_1{.func_pcmob(1)}
1747 | .cm_mob_2{.func_pcmob(2)}
1748 | .cm_mob_3{.func_pcmob(3)}
1749 | .cm_mob_4{.func_pcmob(4)}
1750 | .cm_mob_5{.func_pcmob(5)}
1751 | .cm_mob_6{.func_pcmob(6)}
1752 | .cm_mob_7{.func_pcmob(7)}
1753 | .cm_mob_8{.func_pcmob(8)}
1754 | .cm_mob_9{.func_pcmob(9)}
1755 | .cm_mob_10{.func_pcmob(10)}
1756 | .cm_mob_11{.func_pcmob(11)}
1757 | .cm_mob_12{.func_pcmob(12)}
1758 | .cm_mob_1f{.func_fen(1)}
1759 | .cm_mob_2f{.func_fen(2)}
1760 | .cm_mob_3f{.func_fen(3)}
1761 | .cm_mob_4f{.func_fen(4)}
1762 | .cm_mob_5f{.func_fen(5)}
1763 | .cm_mob_6f{.func_fen(6)}
1764 | .cm_mob_7f{.func_fen(7)}
1765 | .cm_mob_8f{.func_fen(8)}
1766 | .cm_mob_9f{.func_fen(9)}
1767 | .cm_mob_10f{.func_fen(10)}
1768 | .cm_mob_11f{.func_fen(11)}
1769 | .cm_mob_12f{.func_fen(12)}
1770 | .cm_main {
1771 | width: 100%!important;
1772 | }
1773 | .cm_main2 {
1774 | width: 100%!important;
1775 | }
1776 | .cm_pc{
1777 | display:none!important;
1778 | }
1779 | .cm_pc_i{
1780 | display:none!important;
1781 | }
1782 | .cm_mob{
1783 | display:block!important;
1784 | }
1785 | .cm_mob_i{
1786 | display:inline-block!important;
1787 | }
1788 | }
1789 | //mobile布局
1790 | /*cmui栅格系统*/
1791 | //input
1792 | .cm_input input{
1793 | margin: 0px;
1794 | border: 0px;
1795 | width: 100%;
1796 | height: 100%;
1797 | -webkit-appearance: none;
1798 | padding: 0;
1799 | background: none;
1800 | text-decoration: none;
1801 | display: block;
1802 | }
1803 | input::-webkit-input-placeholder{color:#9b9b9b;}
1804 | input:-moz-placeholder{color:#9b9b9b;}
1805 | .cm_input textarea{
1806 | margin: 0px;
1807 | border: 0px;
1808 | width: 100%;
1809 | height: 100%;
1810 | -webkit-appearance: none;
1811 | padding: 0;
1812 | background: none;
1813 | text-decoration: none;
1814 | display: block;
1815 | }
1816 | //input
1817 | /*-----radio----*/
1818 | label {
1819 | display: inline;
1820 | }
1821 | .radio-1 {
1822 | width: 193px;
1823 | }
1824 | .cm_radio {
1825 | display: none;
1826 | }
1827 | .cm_radio + label {
1828 | -webkit-appearance: none;
1829 | background-color: #fafafa;
1830 | border: 1px solid #5f5;
1831 | box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
1832 | padding: 9px;
1833 | border-radius: 50px;
1834 | display: inline-block;
1835 | position: relative;
1836 | }
1837 | .cm_radio:checked + label:after {
1838 | content: '\2714';
1839 | width: 12px;
1840 | height: 12px;
1841 | border-radius: 50px;
1842 | position: absolute;
1843 | top: 2px;
1844 | text-shadow: 0px;
1845 | left: 2px;
1846 | }
1847 | /*old 圆心*/
1848 | .cm_radio2:checked + label:after {
1849 | content: ' ';
1850 | width: 12px;
1851 | height: 12px;
1852 | border-radius: 50px;
1853 | position: absolute;
1854 | top: 3px;
1855 | background: #99a1a7;
1856 | box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
1857 | text-shadow: 0px;
1858 | left: 3px;
1859 | font-size: 32px;
1860 | }
1861 | .cm_radio:checked + label {
1862 | color: #5f5;
1863 | box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1), inset 0px 0px 10px rgba(0,0,0,0.1);
1864 | }
1865 | .cm_radio + label:active, .cm_radio:checked + label:active {
1866 | box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
1867 | }
1868 | .big_radio + label {
1869 | padding: 16px;
1870 | }
1871 | .big_radio:checked + label:after {
1872 | width: 24px;
1873 | height: 24px;
1874 | left: 8px;
1875 | top: 8px;
1876 | }
1877 | /*
1878 |
1879 |
1880 |
1881 |
1882 |
*/
1883 | /*-----radio----*/
1884 | /*-----checkbox----*/
1885 | .cm_checkbox {
1886 | display: none;
1887 | }
1888 | .cm_checkbox + label {
1889 | background-color: #fafafa;
1890 | border: 1px solid #5f5;
1891 | /*box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);*/
1892 | padding: 0.5em;
1893 | border-radius: 0.2em;
1894 | display: inline-block;
1895 | position: relative;
1896 | }
1897 | .cm_checkbox + label:active, .cm_checkbox:checked + label:active {
1898 | box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
1899 | }
1900 | .cm_checkbox:checked + label {
1901 | /*background-color: #e9ecee;*/
1902 | /*border: 1px solid #adb8c0;*/
1903 | /*box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);*/
1904 | color: #5f5;
1905 | }
1906 | .cm_checkbox:checked + label:after {
1907 | content: '\2714';
1908 | font-size: 14px;
1909 | position: absolute;
1910 | top: 2px;
1911 | left: 3px;
1912 | color: #5f5;
1913 | }
1914 | .big_checkbox + label {
1915 | padding: 18px;
1916 | }
1917 | .big_checkbox:checked + label:after {
1918 | font-size: 28px;
1919 | left: 6px;
1920 | }
1921 | .cm_page {
1922 | position: absolute;
1923 | top: 0px;
1924 | bottom: 0px;
1925 | height: 100%;
1926 | width: 100%;
1927 | right: 0;
1928 | left: 0;
1929 | z-index: 5;
1930 | }
1931 | /*
1932 |
1933 |
1934 |
1935 |
1936 |
*/
1937 | /*-----checkbox----*/
1938 | //一些组件
1939 | //窗口动画
1940 | .cm_load {
1941 | position: fixed;
1942 | top: 0;
1943 | bottom: 0;
1944 | width: 100%;
1945 | height: 100%;
1946 | z-index: 9999999;
1947 | }
1948 | .cm_ani(@name,@val){
1949 | @-webkit-keyframes @name {
1950 | 0% {.func(transform,@val);}
1951 | 100% {.func(transform,none);}
1952 | }
1953 | @-moz-keyframes @name {
1954 | 0% {.func(transform,@val);}
1955 | 100% {.func(transform,none);}
1956 | }
1957 | @-ms-keyframes @name {
1958 | 0% {.func(transform,@val);}
1959 | 100% {.func(transform,none);}
1960 | }
1961 | @keyframes @name {
1962 | 0% {.func(transform,@val);}
1963 | 100% {.func(transform,none);}
1964 | }
1965 | }
1966 | .cm_ani(cm_r2l,translate3d(100%,0,0));
1967 | .cm_ani(cm_l2r,translate3d(-100%,0,0));
1968 |
1969 | .cm_ani2(@name,@val){
1970 | animation-name:@name;
1971 | animation-duration:@val;
1972 | }
1973 |
1974 | .cm_Wr2l01{
1975 | .cm_ani2(cm_r2l,0.1s);
1976 | }
1977 | .cm_Wr2l02{
1978 | .cm_ani2(cm_r2l,0.2s);
1979 | }
1980 | .cm_Wr2l03{
1981 | .cm_ani2(cm_r2l,0.3s);
1982 | }
1983 | .cm_Wr2l04{
1984 | .cm_ani2(cm_r2l,0.4s);
1985 | }
1986 | .cm_Wr2l05{
1987 | .cm_ani2(cm_r2l,0.5s);
1988 | }
1989 | .cm_Wl2r01{
1990 | .cm_ani2(cm_l2r,0.1s);
1991 | }
1992 | .cm_Wl2r02{
1993 | .cm_ani2(cm_l2r,0.2s);
1994 | }
1995 | .cm_Wl2r03{
1996 | .cm_ani2(cm_l2r,0.3s);
1997 | }
1998 | .cm_Wl2r04{
1999 | .cm_ani2(cm_l2r,0.4s);
2000 | }
2001 | .cm_Wl2r05{
2002 | .cm_ani2(cm_l2r,0.5s);
2003 | }
2004 |
2005 | .cm_ani3(@name,@num){
2006 | @-webkit-keyframes @name {
2007 | 0% {.func_ot(@num);}
2008 | 100% {.func_ot(1);}
2009 | }
2010 | @-moz-keyframes @name {
2011 | 0% {.func_ot(@num);}
2012 | 100% {.func_ot(1);}
2013 | }
2014 | @-ms-keyframes @name {
2015 | 0% {.func_ot(@num);}
2016 | 100% {.func_ot(1);}
2017 | }
2018 | @keyframes @name {
2019 | 0% {.func_ot(@num);}
2020 | 100% {.func_ot(1);}
2021 | }
2022 | }
2023 | .cm_ani3(cm_o2o,0);
2024 | .cm_Wo2o01{
2025 | .cm_ani2(cm_o2o,0.1s);
2026 | }
2027 | .cm_Wo2o02{
2028 | .cm_ani2(cm_o2o,0.2s);
2029 | }
2030 | .cm_Wo2o03{
2031 | .cm_ani2(cm_o2o,0.3s);
2032 | }
2033 | .cm_Wo2o04{
2034 | .cm_ani2(cm_o2o,0.4s);
2035 | }
2036 | .cm_Wo2o05{
2037 | .cm_ani2(cm_o2o,0.5s);
2038 | }
2039 |
2040 | //窗口动画
2041 |
2042 | .cm_up{
2043 | .func(transform,rotate(0deg));
2044 | .func3(-webkit-transition,-webkit-transform 1s);
2045 | .func3(-moz-transition,-moz-transform 1s);
2046 | .func3(-ms-transition,-ms-transform 1s);
2047 | .func3(transition,transform 1s);
2048 | }
2049 | .cm_down{
2050 | .func(transform,rotate(-180deg));
2051 | .func3(-webkit-transition,-webkit-transform 1s);
2052 | .func3(-moz-transition,-moz-transform 1s);
2053 | .func3(-ms-transition,-ms-transform 1s);
2054 | .func3(transition,transform 1s);
2055 | }
2056 | .cm_upts{
2057 | display:block;
2058 | position:fixed;
2059 | z-index:33333333;
2060 | background:rgba(0,0,0,0.38);
2061 | width:100%;
2062 | height:100%;
2063 | top:0;
2064 | left:0;
2065 | }
2066 | .cm_tsdiv{
2067 | display:block;
2068 | background:rgba(255,255,255,0.94);
2069 | width:76%;
2070 | height:5em;
2071 | line-height:5em;
2072 | margin:10em 12% 0 12%;
2073 | border-radius:0.5em;
2074 | text-align:center;
2075 | }
2076 | .cmqdk{
2077 | display:block;
2078 | position:fixed;
2079 | z-index:33333333;
2080 | background:rgba(0,0,0,0.38);
2081 | width:100%;
2082 | height:100%;
2083 | top:0;
2084 | left:0;
2085 | }
2086 | .cm_tsdiv2 {
2087 | display: block;
2088 | background: rgba(255,255,255,0.94);
2089 | width: 100%;
2090 | min-height: 6em;
2091 | border-radius: 0.5em;
2092 | text-align: center;
2093 | position: relative;
2094 | }
2095 | .cm_qptop{float:left;background-color:#eee;padding:0 0.5em;width:100%;word-break:break-all;
2096 | -webkit-border-radius:0.5em;-moz-border-radius:0.5em;border-radius:0.5em;position:relative;
2097 | }
2098 | .cm_qptop:before{
2099 | position:absolute;
2100 | content:'\00a0';
2101 | width:0px;
2102 | height:0px;
2103 | border-left: 0.5em solid transparent;
2104 | border-right: 0.5em solid transparent;
2105 | border-bottom: 0.5em solid #eee;
2106 | top: -0.5em;
2107 | left: 1em;
2108 | }
2109 | .cm_qpleft{float:left;background-color:#fff;padding:10px;width:100%;word-break:break-all;
2110 | -webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;position:relative;
2111 | background-image:-moz-linear-gradient(hsla(0,0%,100%, 0.6), hsla(0, 0%, 100%, 0) 30px);
2112 | background-image:-webkie-gradient(linear, 0 0, 0 30, from(hsla(0, 0%, 100%, 0.6)), to(hsla(0, 0%, 100%, 0)));
2113 | }
2114 | .cm_qpleft:before{
2115 | position:absolute;
2116 | content:'\00a0';
2117 | width:0px;
2118 | height:0px;
2119 | border-width:8px 18px 8px 0;
2120 | border-style:solid;
2121 | border-color:transparent #fff transparent transparent;
2122 | top:10px;
2123 | left:-15px;
2124 | }
2125 | .cm_qpright{float:right;background-color:rgb(255,168,168);color:#fff;padding:10px;width:100%;word-break:break-all;
2126 | -webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;position:relative;
2127 | background-image:-moz-linear-gradient(hsla(0,0%,100%, 0.6), hsla(0, 0%, 100%, 0) 30px);
2128 | background-image:-webkie-gradient(linear, 0 0, 0 30, from(hsla(0, 0%, 100%, 0.6)), to(hsla(0, 0%, 100%, 0)));
2129 | }
2130 | .cm_qpright:before{
2131 | position:absolute;
2132 | content:'\00a0';
2133 | display:inline-block;
2134 | width:0px;
2135 | height:0px;
2136 | border-width:8px 0px 8px 18px;
2137 | border-style:solid;
2138 | border-color:transparent transparent transparent rgb(255,168,168);
2139 | right:-15px;
2140 | top:10px;
2141 | }
2142 | .cm_qpbottom {
2143 | width: 100%;
2144 | min-height: 1em;
2145 | line-height:1em;
2146 | position: relative;
2147 | background: #fff;
2148 | border: 1px solid #fff;
2149 | }
2150 | .cm_qpbottom:after, .cm_qpbottom:before {
2151 | top: 100%;
2152 | left: 50%;
2153 | border: solid transparent;
2154 | content: " ";
2155 | height: 0;
2156 | width: 0;
2157 | position: absolute;
2158 | pointer-events: none;
2159 | }
2160 |
2161 | .cm_qpbottom:after {
2162 | border-color: rgba(255, 255, 255, 0);
2163 | border-top-color: #fff;
2164 | border-width: 0.7em;
2165 | margin-left: -0.7em;
2166 | }
2167 | .cm_qpbottom:before {
2168 | border-color: rgba(255, 255, 255, 0);
2169 | border-top-color: #fff;
2170 | border-width: 0.7em;
2171 | margin-left: -0.7em;
2172 | }
2173 |
2174 |
2175 |
2176 | //一些组件
2177 | //公共less
--------------------------------------------------------------------------------
/lib/cmstyle.min.css:
--------------------------------------------------------------------------------
1 | .cm_c1c{color:#fd1414 !important}.cm_c2c{color:#de4a4a !important}.cm_c3c{color:#696867 !important}.cm_c4c{color:#9b9b9b !important}.cm_c5c{color:#999999 !important}.cm_c6c{color:#f6f6f6 !important}.cm_c7c{color:#333333 !important}.cm_c0{color:#000000 !important}.cm_cc{color:#cccccc !important}.cm_cd{color:#dddddd !important}.cm_ce{color:#eeeeee !important}.cm_cf{color:#ffffff !important}.cm_cf00{color:#ff0000 !important}.cm_c0f0{color:#00ff00 !important}.cm_c00f{color:#0000ff !important}.cm_c1b{background:#fd1414 !important}.cm_c2b{background:#de4a4a !important}.cm_c3b{background:#696867 !important}.cm_c4b{background:#9b9b9b !important}.cm_c5b{background:#999999 !important}.cm_c6b{background:#f6f6f6 !important}.cm_c7b{background:#333333 !important}.cm_b0{background:#000000 !important}.cm_bc{background:#cccccc !important}.cm_bd{background:#dddddd !important}.cm_be{background:#eeeeee !important}.cm_bf{background:#ffffff !important}.cm_bf00{background:#ff0000 !important}.cm_b0f0{background:#00ff00 !important}.cm_b00f{background:#0000ff !important}.cm_bco01{background:rgba(0,0,0,0.1) !important}.cm_bco02{background:rgba(0,0,0,0.2) !important}.cm_bco03{background:rgba(0,0,0,0.3) !important}.cm_bco04{background:rgba(0,0,0,0.4) !important}.cm_bco05{background:rgba(0,0,0,0.5) !important}.cm_bco06{background:rgba(0,0,0,0.6) !important}.cm_bco07{background:rgba(0,0,0,0.7) !important}.cm_bco08{background:rgba(0,0,0,0.8) !important}.cm_bco09{background:rgba(0,0,0,0.9) !important}.cm_ac1c a{color:#fd1414 !important}.cm_ac2c a{color:#de4a4a !important}.cm_ac3c a{color:#696867 !important}.cm_ac4c a{color:#9b9b9b !important}.cm_ac5c a{color:#999999 !important}.cm_ac6c a{color:#f6f6f6 !important}.cm_ac7c a{color:#333333 !important}.cm_a0c a{color:#000000 !important}.cm_aec a{color:#eeeeee !important}.cm_afc a{color:#ffffff !important}.cm_hvc1c:hover{color:#fd1414 !important}.cm_hvc2c:hover{color:#de4a4a !important}.cm_hvc3c:hover{color:#696867 !important}.cm_hvc4c:hover{color:#9b9b9b !important}.cm_hvc5c:hover{color:#999999 !important}.cm_hvc6c:hover{color:#f6f6f6 !important}.cm_hvc7c:hover{color:#333333 !important}.cm_hv0c:hover{color:#000000 !important}.cm_hvec:hover{color:#eeeeee !important}.cm_hvfc:hover{color:#ffffff !important}.cm_hvc1b:hover{background:#fd1414 !important}.cm_hvc2b:hover{background:#de4a4a !important}.cm_hvc3b:hover{background:#696867 !important}.cm_hvc4b:hover{background:#9b9b9b !important}.cm_hvc5b:hover{background:#999999 !important}.cm_hvc6b:hover{background:#f6f6f6 !important}.cm_hvc7b:hover{background:#333333 !important}.cm_hv0b:hover{background:#000000 !important}.cm_hveb:hover{background:#eeeeee !important}.cm_hvfb:hover{background:#ffffff !important}.cm_fs05{font-size:.5em}.cm_fs06{font-size:.6em}.cm_fs07{font-size:.7em}.cm_fs08{font-size:.8em}.cm_fs09{font-size:.9em}.cm_fs1{font-size:1em}.cm_fs11{font-size:1.1em}.cm_fs12{font-size:1.2em}.cm_fs13{font-size:1.3em}.cm_fs14{font-size:1.4em}.cm_fs15{font-size:1.5em}.cm_fs16{font-size:1.6em}.cm_fs17{font-size:1.7em}.cm_fs18{font-size:1.8em}.cm_fs19{font-size:1.9em}.cm_fs2{font-size:2em}.cm_fs3{font-size:3em}.cm_fs4{font-size:4em}.cm_fs5{font-size:5em}.cm_fwn{font-weight:normal}.cm_fwb{font-weight:bold}.cm_fwbd{font-weight:bolder}.cm_fwl{font-weight:lighter}.cm_fwi{font-weight:inherit}.cm_fw100{font-weight:100}.cm_fw200{font-weight:200}.cm_fw300{font-weight:300}.cm_fw400{font-weight:400}.cm_fw500{font-weight:500}.cm_fw600{font-weight:600}.cm_fw700{font-weight:700}.cm_fw800{font-weight:800}.cm_fw900{font-weight:900}.cm_o0{-khtml-opacity:0;-webkit-opacity:0;-moz-opacity:0;filter:alpha(opacity=0);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);opacity:0}.cm_o01{-khtml-opacity:.1;-webkit-opacity:.1;-moz-opacity:.1;filter:alpha(opacity=10);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=10);opacity:.1}.cm_o02{-khtml-opacity:.2;-webkit-opacity:.2;-moz-opacity:.2;filter:alpha(opacity=20);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=20);opacity:.2}.cm_o03{-khtml-opacity:.3;-webkit-opacity:.3;-moz-opacity:.3;filter:alpha(opacity=30);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30);opacity:.3}.cm_o04{-khtml-opacity:.4;-webkit-opacity:.4;-moz-opacity:.4;filter:alpha(opacity=40);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=40);opacity:.4}.cm_o05{-khtml-opacity:.5;-webkit-opacity:.5;-moz-opacity:.5;filter:alpha(opacity=50);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);opacity:.5}.cm_o06{-khtml-opacity:.6;-webkit-opacity:.6;-moz-opacity:.6;filter:alpha(opacity=60);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);opacity:.6}.cm_o07{-khtml-opacity:.7;-webkit-opacity:.7;-moz-opacity:.7;filter:alpha(opacity=70);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);opacity:.7}.cm_o08{-khtml-opacity:.8;-webkit-opacity:.8;-moz-opacity:.8;filter:alpha(opacity=80);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=80);opacity:.8}.cm_o09{-khtml-opacity:.9;-webkit-opacity:.9;-moz-opacity:.9;filter:alpha(opacity=90);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=90);opacity:.9}.cm_o1{-khtml-opacity:1;-webkit-opacity:1;-moz-opacity:1;filter:alpha(opacity=100);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);opacity:1}.cm_dn{display:none}.cm_db{display:block}.cm_di{display:inline}.cm_dib{display:inline-block}.cm_dih{display:inherit}.cm_dtab{display:table}.cm_dtc{display:table-cell}.cm_dit{display:inline-table}.cm_fl{float:left}.cm_fr{float:right}.cm_fn{float:none}.cm_tl{text-align:left}.cm_tc{text-align:center}.cm_tr{text-align:right}.cm_tj{text-align:justify}.cm_ti05{text-indent:.5em}.cm_ti1{text-indent:1em}.cm_ti105{text-indent:1.5em}.cm_ti2{text-indent:2em}.cm_ti205{text-indent:2.5em}.cm_fc,.cm_fc2{float:none;display:block;margin-left:auto;margin-right:auto}.cm_fc2{margin-top:auto;margin-bottom:auto}.cm_fc3{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.cm_fc4{-webkit-display:flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.cm_fc3tb{position:absolute;top:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.cm_fc3rl{position:absolute;left:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.cm_ps{position:static !important}.cm_pa{position:absolute !important}.cm_pf{position:fixed !important}.cm_pr{position:relative !important}.cm_tl0{top:0;left:0}.cm_tr0{top:0;right:0}.cm_bl0{bottom:0;left:0}.cm_br0{bottom:0;right:0}.cm_t2f{top:-2em !important}.cm_t105f{top:-1.5em !important}.cm_t1f{top:-1em !important}.cm_t05f{top:-0.5em !important}.cm_t0{top:0 !important}.cm_t01e{top:.1em !important}.cm_t02e{top:.2em !important}.cm_t025e{top:.25em !important}.cm_t05e{top:.5em !important}.cm_t1e{top:1em !important}.cm_t2e{top:2em !important}.cm_t3e{top:3em !important}.cm_t4e{top:4em !important}.cm_t5e{top:5em !important}.cm_t6e{top:6em !important}.cm_t7e{top:7em !important}.cm_t8e{top:8em !important}.cm_t9e{top:9em !important}.cm_t10e{top:10em !important}.cm_t11e{top:11em !important}.cm_t12e{top:12em !important}.cm_t13e{top:13em !important}.cm_b2f{bottom:-2em !important}.cm_b05f{bottom:-1.5em !important}.cm_b1f{bottom:-1em !important}.cm_b05f{bottom:-0.5em !important}.cm_b01e{bottom:.1em !important}.cm_b02e{bottom:.2em !important}.cm_b025e{bottom:.25em !important}.cm_b05e{bottom:.5em !important}.cm_b1e{bottom:1em !important}.cm_b2e{bottom:2em !important}.cm_b3e{bottom:3em !important}.cm_b4e{bottom:4em !important}.cm_b5e{bottom:5em !important}.cm_b6e{bottom:6em !important}.cm_b7e{bottom:7em !important}.cm_b8e{bottom:8em !important}.cm_b9e{bottom:9em !important}.cm_b10e{bottom:10em !important}.cm_b11e{bottom:11em !important}.cm_b12e{bottom:12em !important}.cm_b13e{bottom:13em !important}.cm_l2f{left:-2em !important}.cm_l105f{left:-1.5em !important}.cm_l1f{left:-1em !important}.cm_l05f{left:-0.5em !important}.cm_l01e{left:.1em !important}.cm_l02e{left:.2em !important}.cm_l025e{left:.25em !important}.cm_l05e{left:.5em !important}.cm_l1e{left:1em !important}.cm_l2e{left:2em !important}.cm_l3e{left:3em !important}.cm_l4e{left:4em !important}.cm_l5e{left:5em !important}.cm_r2f{right:-2em !important}.cm_r105f{right:-1.5em !important}.cm_r1f{right:-1em !important}.cm_r05f{right:-0.5em !important}.cm_r0e{right:0 !important}.cm_r01e{right:.1em !important}.cm_r02e{right:.2em !important}.cm_r025e{right:.25em !important}.cm_r05e{right:.5em !important}.cm_r1e{right:1em !important}.cm_r2e{right:2em !important}.cm_r3e{right:3em !important}.cm_r4e{right:4em !important}.cm_r5e{right:5em !important}.cm_z1{z-index:1 !important}.cm_z2{z-index:2 !important}.cm_z3{z-index:3 !important}.cm_z4{z-index:4 !important}.cm_z5{z-index:5 !important}.cm_z9{z-index:9 !important}.cm_z99{z-index:99 !important}.cm_z999{z-index:999 !important}.cm_z9999{z-index:9999 !important}.cm_z99999{z-index:99999 !important}.cm_z999999{z-index:999999 !important}.cm_csd{cursor:default !important}.cm_csa{cursor:auto !important}.cm_csc{cursor:crosshair !important}.cm_csp{cursor:pointer !important}.cm_csm{cursor:move !important}.cm_cse{cursor:e-resize !important}.cm_csne{cursor:ne-resize !important}.cm_csnw{cursor:nw-resize !important}.cm_csn{cursor:n-resize !important}.cm_csse{cursor:se-resize !important}.cm_cssw{cursor:sw-resize !important}.cm_css{cursor:s-resize !important}.cm_cswr{cursor:w-resize !important}.cm_cst{cursor:text !important}.cm_csw{cursor:wait !important}.cm_csh{cursor:help !important}.cm_h05{height:.5em !important}.cm_h075{height:.75em !important}.cm_h08{height:.8em !important}.cm_h1{height:1em !important}.cm_h105{height:1.5em !important}.cm_h2{height:2em !important}.cm_h205{height:2.5em !important}.cm_h3{height:3em !important}.cm_h305{height:3.5em !important}.cm_h4{height:4em !important}.cm_h405{height:4.5em !important}.cm_h5{height:5em !important}.cm_h505{height:5.5em !important}.cm_h6{height:6em !important}.cm_h605{height:6.5em !important}.cm_h7{height:7em !important}.cm_h705{height:7.5em !important}.cm_h8{height:8em !important}.cm_h805{height:8.5em !important}.cm_h9{height:9em !important}.cm_h905{height:9.5em !important}.cm_h10{height:10em !important}.cm_h11{height:11em !important}.cm_h12{height:12em !important}.cm_h13{height:13em !important}.cm_h14{height:14em !important}.cm_h15{height:15em !important}.cm_h16{height:16em !important}.cm_h17{height:17em !important}.cm_h18{height:18em !important}.cm_h19{height:19em !important}.cm_h20{height:20em !important}.cm_h21{height:21em !important}.cm_h22{height:22em !important}.cm_h23{height:23em !important}.cm_h24{height:24em !important}.cm_h25{height:25em !important}.cm_h10f{height:10% !important}.cm_h20f{height:20% !important}.cm_h30f{height:30% !important}.cm_h40f{height:40% !important}.cm_h50f{height:50% !important}.cm_h60f{height:60% !important}.cm_h70f{height:70% !important}.cm_h80f{height:80% !important}.cm_h90f{height:90% !important}.cm_minh1{min-height:1em;height:auto !important;height:1em}.cm_minh2{min-height:2em;height:auto !important;height:2em}.cm_minh3{min-height:3em;height:auto !important;height:3em}.cm_minh4{min-height:4em;height:auto !important;height:4em}.cm_minh5{min-height:5em;height:auto !important;height:5em}.cm_minh6{min-height:6em;height:auto !important;height:6em}.cm_minh7{min-height:7em;height:auto !important;height:7em}.cm_minh8{min-height:8em;height:auto !important;height:8em}.cm_minh9{min-height:9em;height:auto !important;height:9em}.cm_minh10{min-height:10em;height:auto !important;height:10em}.cm_minh11{min-height:11em;height:auto !important;height:11em}.cm_minh12{min-height:12em;height:auto !important;height:12em}.cm_minh13{min-height:13em;height:auto !important;height:13em}.cm_maxh1{max-height:1em;height:auto !important;height:1em}.cm_maxh2{max-height:2em;height:auto !important;height:2em}.cm_maxh3{max-height:3em;height:auto !important;height:3em}.cm_maxh4{max-height:4em;height:auto !important;height:4em}.cm_maxh5{max-height:5em;height:auto !important;height:5em}.cm_maxh6{max-height:6em;height:auto !important;height:6em}.cm_maxh7{max-height:7em;height:auto !important;height:7em}.cm_maxh8{max-height:8em;height:auto !important;height:8em}.cm_maxh9{max-height:9em;height:auto !important;height:9em}.cm_maxh10{max-height:10em;height:auto !important;height:10em}.cm_maxh11{max-height:11em;height:auto !important;height:11em}.cm_maxh12{max-height:12em;height:auto !important;height:12em}.cm_maxh13{max-height:13em;height:auto !important;height:13em}.cm_lh1{line-height:1em !important}.cm_lh105{line-height:1.5em !important}.cm_lh2{line-height:2em !important}.cm_lh205{line-height:2.5em !important}.cm_lh3{line-height:3em !important}.cm_lh305{line-height:3.5em !important}.cm_lh4{line-height:4em !important}.cm_lh405{line-height:4.5em !important}.cm_lh5{line-height:5em !important}.cm_lh505{line-height:5.5em !important}.cm_lh6{line-height:6em !important}.cm_lh605{line-height:6.5em !important}.cm_lh7{line-height:7em !important}.cm_lh705{line-height:7.5em !important}.cm_lh8{line-height:8em !important}.cm_lh805{line-height:8.5em !important}.cm_lh9{line-height:9em !important}.cm_lh905{line-height:9.5em !important}.cm_hl08{height:.8em !important;line-height:.8em !important}.cm_hl1{height:1em !important;line-height:1em !important}.cm_hl105{height:1.5em !important;line-height:1.5em !important}.cm_hl2{height:2em !important;line-height:2em !important}.cm_hl205{height:2.5em !important;line-height:2.5em !important}.cm_hl3{height:3em !important;line-height:3em !important}.cm_hl305{height:3.5em !important;line-height:3.5em !important}.cm_hl4{height:4em !important;line-height:4em !important}.cm_hl405{height:4.5em !important;line-height:4.5em !important}.cm_hl5{height:5em !important;line-height:5em !important}.cm_hl505{height:5.5em !important;line-height:5.5em !important}.cm_hl6{height:6em !important;line-height:6em !important}.cm_hl7{height:7em !important;line-height:7em !important}.cm_hl8{height:8em !important;line-height:8em !important}.cm_hl9{height:9em !important;line-height:9em !important}.cm_w1{width:1em !important}.cm_w105{width:1.5em !important}.cm_w2{width:2em !important}.cm_w205{width:2.5em !important}.cm_w3{width:3em !important}.cm_w305{width:3.5em !important}.cm_w4{width:4em !important}.cm_w405{width:4.5em !important}.cm_w5{width:5em !important}.cm_w505{width:5.5em !important}.cm_w6{width:6em !important}.cm_w605{width:6.5em !important}.cm_w7{width:7em !important}.cm_w705{width:7.5em !important}.cm_w8{width:8em !important}.cm_w805{width:8.5em !important}.cm_w9{width:9em !important}.cm_w905{width:9.5em !important}.cm_w10{width:10em !important}.cm_w11{width:11em !important}.cm_w12{width:12em !important}.cm_w13{width:13em !important}.cm_w10f{width:10% !important}.cm_w20f{width:20% !important}.cm_w30f{width:30% !important}.cm_w40f{width:40% !important}.cm_w50f{width:50% !important}.cm_w60f{width:60% !important}.cm_w70f{width:70% !important}.cm_w80f{width:80% !important}.cm_w90f{width:90% !important}.cm_minw1{min-width:1em;width:auto !important;width:1em}.cm_minw2{min-width:2em;width:auto !important;width:2em}.cm_minw3{min-width:3em;width:auto !important;width:3em}.cm_minw4{min-width:4em;width:auto !important;width:4em}.cm_minw5{min-width:5em;width:auto !important;width:5em}.cm_minw6{min-width:6em;width:auto !important;width:6em}.cm_minw7{min-width:7em;width:auto !important;width:7em}.cm_minw8{min-width:8em;width:auto !important;width:8em}.cm_minw9{min-width:9em;width:auto !important;width:9em}.cm_minw10{min-width:10em;width:auto !important;width:10em}.cm_minw11{min-width:11em;width:auto !important;width:11em}.cm_minw12{min-width:12em;width:auto !important;width:12em}.cm_minw13{min-width:13em;width:auto !important;width:13em}.cm_maxw1{max-width:1em;width:auto !important;width:1em}.cm_maxw2{max-width:2em;width:auto !important;width:2em}.cm_maxw3{max-width:3em;width:auto !important;width:3em}.cm_maxw4{max-width:4em;width:auto !important;width:4em}.cm_maxw5{max-width:5em;width:auto !important;width:5em}.cm_maxw6{max-width:6em;width:auto !important;width:6em}.cm_maxw7{max-width:7em;width:auto !important;width:7em}.cm_maxw8{max-width:8em;width:auto !important;width:8em}.cm_maxw9{max-width:9em;width:auto !important;width:9em}.cm_maxw10{max-width:10em;width:auto !important;width:10em}.cm_maxw11{max-width:11em;width:auto !important;width:11em}.cm_maxw12{max-width:12em;width:auto !important;width:12em}.cm_maxw13{max-width:13em;width:auto !important;width:13em}.cm_wh05{width:.5em !important;height:.5em !important}.cm_wh1{width:1em !important;height:1em !important}.cm_wh105{width:1.5em !important;height:1.5em !important}.cm_wh2{width:2em !important;height:2em !important}.cm_wh205{width:2.5em !important;height:2.5em !important}.cm_wh3{width:3em !important;height:3em !important}.cm_wh305{width:3.5em !important;height:3.5em !important}.cm_wh4{width:4em !important;height:4em !important}.cm_wh405{width:4.5em !important;height:4.5em !important}.cm_wh5{width:5em !important;height:5em !important}.cm_wh505{width:5.5em !important;height:5.5em !important}.cm_wh6{width:6em !important;height:6em !important}.cm_wh605{width:6.5em !important;height:6.5em !important}.cm_wh7{width:7em !important;height:7em !important}.cm_wh705{width:7.5em !important;height:7.5em !important}.cm_wh8{width:8em !important;height:8em !important}.cm_wh805{width:8.5em !important;height:8.5em !important}.cm_wh9{width:9em !important;height:9em !important}.cm_wh905{width:9.5em !important;height:9.5em !important}.cm_wh10{width:10em !important;height:10em !important}.cm_m0{margin:0 !important}.cm_m01{margin:.1em !important}.cm_m02{margin:.2em !important}.cm_m025{margin:.25em !important}.cm_m03{margin:.3em !important}.cm_m035{margin:.35em !important}.cm_m04{margin:.4em !important}.cm_m045{margin:.45em !important}.cm_m05{margin:.5em !important}.cm_m06{margin:.6em !important}.cm_m07{margin:.7em !important}.cm_m08{margin:.8em !important}.cm_m09{margin:.9em !important}.cm_m1{margin:1em !important}.cm_m105{margin:1.5em !important}.cm_m2{margin:2em !important}.cm_m205{margin:2.5em !important}.cm_m3{margin:3em !important}.cm_mtb01{margin:.1em 0 !important}.cm_mtb02{margin:.2em 0 !important}.cm_mtb03{margin:.3em 0 !important}.cm_mtb04{margin:.4em 0 !important}.cm_mtb05{margin:.5em 0 !important}.cm_mtb06{margin:.6em 0 !important}.cm_mtb07{margin:.7em 0 !important}.cm_mtb08{margin:.8em 0 !important}.cm_mtb09{margin:.9em 0 !important}.cm_mtb1{margin:1em 0 !important}.cm_mtb105{margin:1.5em 0 !important}.cm_mtb2{margin:2em 0 !important}.cm_mtb205{margin:2.5em 0 !important}.cm_mtb3{margin:3em 0 !important}.cm_mtb205{margin:2.5em 0 !important}.cm_mtb4{margin:4em 0 !important}.cm_mtb405{margin:4.5em 0 !important}.cm_mtb5{margin:5em 0 !important}.cm_mtb505{margin:5.5em 0 !important}.cm_mtb6{margin:6em 0 !important}.cm_mrl01{margin:0 .1em !important}.cm_mrl02{margin:0 .2em !important}.cm_mrl03{margin:0 .3em !important}.cm_mrl04{margin:0 .4em !important}.cm_mrl05{margin:0 .5em !important}.cm_mrl06{margin:0 .6em !important}.cm_mrl07{margin:0 .7em !important}.cm_mrl08{margin:0 .8em !important}.cm_mrl09{margin:0 .9em !important}.cm_mrl1{margin:0 1em !important}.cm_mrl105{margin:0 1.5em !important}.cm_mrl2{margin:0 2em !important}.cm_mrl205{margin:0 2.5em !important}.cm_mrl3{margin:0 3em !important}.cm_mrl305{margin:0 3.5em !important}.cm_mrl4{margin:0 4em !important}.cm_mrl405{margin:0 4.5em !important}.cm_mrl5{margin:0 5em !important}.cm_mrl505{margin:0 5.5em !important}.cm_mrl6{margin:0 6em !important}.cm_mt2f{margin-top:-2em !important}.cm_mt105f{margin-top:-1.5em !important}.cm_mt1f{margin-top:-1em !important}.cm_mt05f{margin-top:-0.5em !important}.cm_mt01{margin-top:.1em !important}.cm_mt02{margin-top:.2em !important}.cm_mt03{margin-top:.3em !important}.cm_mt04{margin-top:.4em !important}.cm_mt05{margin-top:.5em !important}.cm_mt06{margin-top:.6em !important}.cm_mt07{margin-top:.7em !important}.cm_mt08{margin-top:.8em !important}.cm_mt09{margin-top:.9em !important}.cm_mt1{margin-top:1em !important}.cm_mt101{margin-top:1.1em !important}.cm_mt102{margin-top:1.2em !important}.cm_mt103{margin-top:1.3em !important}.cm_mt104{margin-top:1.4em !important}.cm_mt105{margin-top:1.5em !important}.cm_mt2{margin-top:2em !important}.cm_mt205{margin-top:2.5em !important}.cm_mt3{margin-top:3em !important}.cm_mt305{margin-top:3.5em !important}.cm_mt4{margin-top:4em !important}.cm_mt405{margin-top:4.5em !important}.cm_mt5{margin-top:5em !important}.cm_mt6{margin-top:6em !important}.cm_mt7{margin-top:7em !important}.cm_mt8{margin-top:8em !important}.cm_mt9{margin-top:9em !important}.cm_mb2f{margin-bottom:-2em !important}.cm_mb105f{margin-bottom:-1.5em !important}.cm_mb1f{margin-bottom:-1em !important}.cm_mb05f{margin-bottom:-0.5em !important}.cm_mb01{margin-bottom:.1em !important}.cm_mb02{margin-bottom:.2em !important}.cm_mb03{margin-bottom:.3em !important}.cm_mb04{margin-bottom:.4em !important}.cm_mb05{margin-bottom:.5em !important}.cm_mb06{margin-bottom:.6em !important}.cm_mb07{margin-bottom:.7em !important}.cm_mb08{margin-bottom:.8em !important}.cm_mb09{margin-bottom:.9em !important}.cm_mb1{margin-bottom:1em !important}.cm_mb105{margin-bottom:1.5em !important}.cm_mb2{margin-bottom:2em !important}.cm_mb205{margin-bottom:2.5em !important}.cm_mb3{margin-bottom:3em !important}.cm_mb305{margin-bottom:3.5em !important}.cm_mb4{margin-bottom:4em !important}.cm_mb405{margin-bottom:4.5em !important}.cm_mb5{margin-bottom:5em !important}.cm_mb6{margin-bottom:6em !important}.cm_mb7{margin-bottom:7em !important}.cm_mb8{margin-bottom:8em !important}.cm_mb9{margin-bottom:9em !important}.cm_mr01{margin-right:-2em !important}.cm_mr01{margin-right:-1.5em !important}.cm_mr01{margin-right:-1em !important}.cm_mr05f{margin-right:-0.5em !important}.cm_mr01{margin-right:.1em !important}.cm_mr02{margin-right:.2em !important}.cm_mr03{margin-right:.3em !important}.cm_mr04{margin-right:.4em !important}.cm_mr05{margin-right:.5em !important}.cm_mr06{margin-right:.6em !important}.cm_mr07{margin-right:.7em !important}.cm_mr08{margin-right:.8em !important}.cm_mr09{margin-right:.9em !important}.cm_mr1{margin-right:1em !important}.cm_mr105{margin-right:1.5em !important}.cm_mr2{margin-right:2em !important}.cm_mr205{margin-right:2.5em !important}.cm_mr3{margin-right:3em !important}.cm_mr305{margin-right:3.5em !important}.cm_mr4{margin-right:4em !important}.cm_mr405{margin-right:4.5em !important}.cm_mr5{margin-right:5em !important}.cm_mr6{margin-right:6em !important}.cm_mr7{margin-right:7em !important}.cm_mr9{margin-right:9em !important}.cm_mr8{margin-right:8em !important}.cm_mr9{margin-right:9em !important}.cm_ml2f{margin-left:-2em !important}.cm_ml105f{margin-left:-1.5em !important}.cm_ml1f{margin-left:-1em !important}.cm_ml05f{margin-left:-0.5em !important}.cm_ml01{margin-left:.1em !important}.cm_ml02{margin-left:.2em !important}.cm_ml03{margin-left:.3em !important}.cm_ml04{margin-left:.4em !important}.cm_ml05{margin-left:.5em !important}.cm_ml06{margin-left:.6em !important}.cm_ml07{margin-left:.7em !important}.cm_ml08{margin-left:.8em !important}.cm_ml09{margin-left:.9em !important}.cm_ml1{margin-left:1em !important}.cm_ml105{margin-left:1.5em !important}.cm_ml2{margin-left:2em !important}.cm_ml205{margin-left:2.5em !important}.cm_ml3{margin-left:3em !important}.cm_ml305{margin-left:3.5em !important}.cm_ml4{margin-left:4em !important}.cm_ml405{margin-left:4.5em !important}.cm_ml5{margin-left:5em !important}.cm_ml6{margin-left:6em !important}.cm_ml7{margin-left:7em !important}.cm_ml9{margin-left:9em !important}.cm_ml8{margin-left:8em !important}.cm_ml9{margin-left:9em !important}.cm_pd0{padding:0 !important}.cm_pd01{padding:.1em !important}.cm_pd02{padding:.2em !important}.cm_pd025{padding:.25em !important}.cm_pd05{padding:.5em !important}.cm_pd075{padding:.75em !important}.cm_pd1{padding:1em !important}.cm_pd105{padding:1.5em !important}.cm_pd2{padding:2em !important}.cm_pd205{padding:2.5em !important}.cm_pd3{padding:3em !important}.cm_ptb01{padding:.1em 0 !important}.cm_ptb02{padding:.2em 0 !important}.cm_ptb025{padding:.25em 0 !important}.cm_ptb05{padding:.5em 0 !important}.cm_ptb075{padding:.75em 0 !important}.cm_ptb1{padding:1em 0 !important}.cm_ptb105{padding:1.5em 0 !important}.cm_ptb2{padding:2em 0 !important}.cm_ptb205{padding:2.5em 0 !important}.cm_ptb3{padding:3em 0 !important}.cm_ptb305{padding:3.5em 0 !important}.cm_ptb4{padding:4em 0 !important}.cm_ptb405{padding:4.5em 0 !important}.cm_ptb5{padding:5em 0 !important}.cm_ptb505{padding:5.5em 0 !important}.cm_prl01{padding:0 .1em !important}.cm_prl02{padding:0 .2em !important}.cm_prl025{padding:0 .25em !important}.cm_prl05{padding:0 .5em !important}.cm_prl075{padding:0 .75em !important}.cm_prl1{padding:0 1em !important}.cm_prl105{padding:0 1.5em !important}.cm_prl2{padding:0 2em !important}.cm_prl205{padding:0 2.5em !important}.cm_prl3{padding:0 3em !important}.cm_prl305{padding:0 3.5em !important}.cm_prl4{padding:0 4em !important}.cm_prl405{padding:0 4.5em !important}.cm_prl5{padding:0 5em !important}.cm_prl505{padding:0 5.5em !important}.cm_prl6{padding:0 6em !important}.cm_prl605{padding:0 6.5em !important}.cm_prl7{padding:0 7em !important}.cm_pt2f{padding-top:-2em !important}.cm_pt105f{padding-top:-1.5em !important}.cm_pt1f{padding-top:-1em !important}.cm_pt05f{padding-top:-0.5em !important}.cm_pt0{padding-top:0 !important}.cm_pt01{padding-top:.1em !important}.cm_pt02{padding-top:.2em !important}.cm_pt025{padding-top:.25em !important}.cm_pt05{padding-top:.5em !important}.cm_pt075{padding-top:.75em !important}.cm_pt1{padding-top:1em !important}.cm_pt2{padding-top:2em !important}.cm_pt3{padding-top:3em !important}.cm_pt4{padding-top:4em !important}.cm_pt5{padding-top:5em !important}.cm_pb2f{padding-bottom:-2em !important}.cm_pb105f{padding-bottom:-1.5em !important}.cm_pb1f{padding-bottom:-1em !important}.cm_pb05f{padding-bottom:-0.5em !important}.cm_pb0{padding-bottom:0 !important}.cm_pb01{padding-bottom:.1em !important}.cm_pb02{padding-bottom:.2em !important}.cm_pb025{padding-bottom:.25em !important}.cm_pb05{padding-bottom:.5em !important}.cm_pb075{padding-bottom:.75em !important}.cm_pb1{padding-bottom:1em !important}.cm_pb2{padding-bottom:2em !important}.cm_pb3{padding-bottom:3em !important}.cm_pb4{padding-bottom:4em !important}.cm_pb5{padding-bottom:5em !important}.cm_pl2f{padding-left:-2em !important}.cm_pl105f{padding-left:-1.5em !important}.cm_pl1f{padding-left:-1em !important}.cm_pl05f{padding-left:-0.5em !important}.cm_pl0{padding-left:0 !important}.cm_pl01{padding-left:.1em !important}.cm_pl02{padding-left:.2em !important}.cm_pl025{padding-left:.25em !important}.cm_pl05{padding-left:.5em !important}.cm_pl075{padding-left:.75em !important}.cm_pl1{padding-left:1em !important}.cm_pl105{padding-left:1.5em !important}.cm_pl2{padding-left:2em !important}.cm_pl205{padding-left:2.5em !important}.cm_pl3{padding-left:3em !important}.cm_pl305{padding-left:3.5em !important}.cm_pl4{padding-left:4em !important}.cm_pl405{padding-left:4.5em !important}.cm_pl5{padding-left:5em !important}.cm_pl505{padding-left:5.5em !important}.cm_pl6{padding-left:6em !important}.cm_pl605{padding-left:6.5em !important}.cm_pl7{padding-left:7em !important}.cm_pl705{padding-left:7.5em !important}.cm_pl8{padding-left:8em !important}.cm_pl805{padding-left:8.5em !important}.cm_pl9{padding-left:9em !important}.cm_pl905{padding-left:9.5em !important}.cm_pl10{padding-left:10em !important}.cm_pr2f{padding-right:-2em !important}.cm_pr105f{padding-right:-1.5em !important}.cm_pr1f{padding-right:-1em !important}.cm_pr05f{padding-right:-0.5em !important}.cm_pr0{padding-right:0 !important}.cm_pr01{padding-right:.1em !important}.cm_pr02{padding-right:.2em !important}.cm_pr025{padding-right:.25em !important}.cm_pr05{padding-right:.5em !important}.cm_pr075{padding-right:.75em !important}.cm_pr1{padding-right:1em !important}.cm_pr105{padding-right:1.5em !important}.cm_pr2{padding-right:2em !important}.cm_pr205{padding-right:2.5em !important}.cm_pr3{padding-right:3em !important}.cm_pr305{padding-right:3.5em !important}.cm_pr4{padding-right:4em !important}.cm_pr405{padding-right:4.5em !important}.cm_pr5{padding-right:5em !important}.cm_pr505{padding-right:5.5em !important}.cm_pr6{padding-right:6em !important}.cm_pr605{padding-right:6.5em !important}.cm_pr7{padding-right:7em !important}.cm_pr705{padding-right:7.5em !important}.cm_pr8{padding-right:8em !important}.cm_pr805{padding-right:8.5em !important}.cm_pr9{padding-right:9em !important}.cm_pr905{padding-right:9.5em !important}.cm_pr10{padding-right:10em !important}.cm_bd0{border:0 !important}.cm_b1c1d{border:1px dashed #fd1414 !important}.cm_b1c2d{border:1px dashed #de4a4a !important}.cm_b1c3d{border:1px dashed #696867 !important}.cm_b1c4d{border:1px dashed #9b9b9b !important}.cm_b1c5d{border:1px dashed #999999 !important}.cm_b1c6d{border:1px dashed #f6f6f6 !important}.cm_b1c7d{border:1px dashed #333333 !important}.cm_b1c0d{border:1px dashed #000000 !important}.cm_b1ccd{border:1px dashed #cccccc !important}.cm_b1cdd{border:1px dashed #dddddd !important}.cm_b1ced{border:1px dashed #eeeeee !important}.cm_b1cfd{border:1px dashed #ffffff !important}.cm_b1c1{border:1px solid #fd1414 !important}.cm_b1c2{border:1px solid #de4a4a !important}.cm_b1c3{border:1px solid #696867 !important}.cm_b1c4{border:1px solid #9b9b9b !important}.cm_b1c5{border:1px solid #999999 !important}.cm_b1c6{border:1px solid #f6f6f6 !important}.cm_b1c7{border:1px solid #333333 !important}.cm_b1c0{border:1px solid #000000 !important}.cm_b1cc{border:1px solid #cccccc !important}.cm_b1cd{border:1px solid #dddddd !important}.cm_b1ce{border:1px solid #eeeeee !important}.cm_b1cf{border:1px solid #ffffff !important}.cm_b2c1{border:2px solid #fd1414 !important}.cm_b2c2{border:2px solid #de4a4a !important}.cm_b2c3{border:2px solid #696867 !important}.cm_b2c4{border:2px solid #9b9b9b !important}.cm_b2c5{border:2px solid #999999 !important}.cm_b2c6{border:2px solid #f6f6f6 !important}.cm_b2c7{border:2px solid #333333 !important}.cm_b2c0{border:2px solid #000000 !important}.cm_b2cc{border:2px solid #cccccc !important}.cm_b2cd{border:2px solid #dddddd !important}.cm_b2ce{border:2px solid #eeeeee !important}.cm_b2cf{border:2px solid #ffffff !important}.cm_b3c1{border:3px solid #fd1414 !important}.cm_b3c2{border:3px solid #de4a4a !important}.cm_b3c3{border:3px solid #696867 !important}.cm_b3c4{border:3px solid #9b9b9b !important}.cm_b3c5{border:3px solid #999999 !important}.cm_b3c6{border:3px solid #f6f6f6 !important}.cm_b3c7{border:3px solid #333333 !important}.cm_b3c0{border:3px solid #000000 !important}.cm_b3cc{border:3px solid #cccccc !important}.cm_b3cd{border:3px solid #dddddd !important}.cm_b3ce{border:3px solid #eeeeee !important}.cm_b3cf{border:3px solid #ffffff !important}.cm_bt1c1d{border-top:1px dashed #fd1414 !important}.cm_bt1c2d{border-top:1px dashed #de4a4a !important}.cm_bt1c3d{border-top:1px dashed #696867 !important}.cm_bt1c4d{border-top:1px dashed #9b9b9b !important}.cm_bt1c5d{border-top:1px dashed #999999 !important}.cm_bt1c6d{border-top:1px dashed #f6f6f6 !important}.cm_bt1c7d{border-top:1px dashed #333333 !important}.cm_bt1c0d{border-top:1px dashed #000000 !important}.cm_bt1ccd{border-top:1px dashed #cccccc !important}.cm_bt1cdd{border-top:1px dashed #dddddd !important}.cm_bt1ced{border-top:1px dashed #eeeeee !important}.cm_bt1cfd{border-top:1px dashed #ffffff !important}.cm_bt1c1{border-top:1px solid #fd1414 !important}.cm_bt1c2{border-top:1px solid #de4a4a !important}.cm_bt1c3{border-top:1px solid #696867 !important}.cm_bt1c4{border-top:1px solid #9b9b9b !important}.cm_bt1c5{border-top:1px solid #999999 !important}.cm_bt1c6{border-top:1px solid #f6f6f6 !important}.cm_bt1c7{border-top:1px solid #333333 !important}.cm_bt1c0{border-top:1px solid #000000 !important}.cm_bt1cc{border-top:1px solid #cccccc !important}.cm_bt1cd{border-top:1px solid #dddddd !important}.cm_bt1ce{border-top:1px solid #eeeeee !important}.cm_bt1cf{border-top:1px solid #ffffff !important}.cm_bt2c1{border-top:2px solid #fd1414 !important}.cm_bt2c2{border-top:2px solid #de4a4a !important}.cm_bt2c3{border-top:2px solid #696867 !important}.cm_bt2c4{border-top:2px solid #9b9b9b !important}.cm_bt2c5{border-top:2px solid #999999 !important}.cm_bt2c6{border-top:2px solid #f6f6f6 !important}.cm_bt2c7{border-top:2px solid #333333 !important}.cm_bt2c0{border-top:2px solid #000000 !important}.cm_bt2cc{border-top:2px solid #cccccc !important}.cm_bt2cd{border-top:2px solid #dddddd !important}.cm_bt2ce{border-top:2px solid #eeeeee !important}.cm_bt2cf{border-top:2px solid #ffffff !important}.cm_bt3c1{border-top:3px solid #fd1414 !important}.cm_bt3c2{border-top:3px solid #de4a4a !important}.cm_bt3c3{border-top:3px solid #696867 !important}.cm_bt3c4{border-top:3px solid #9b9b9b !important}.cm_bt3c5{border-top:3px solid #999999 !important}.cm_bt3c6{border-top:3px solid #f6f6f6 !important}.cm_bt3c7{border-top:3px solid #333333 !important}.cm_bt3c0{border-top:3px solid #000000 !important}.cm_bt3cc{border-top:3px solid #cccccc !important}.cm_bt3cd{border-top:3px solid #dddddd !important}.cm_bt3ce{border-top:3px solid #eeeeee !important}.cm_bt3cf{border-top:3px solid #ffffff !important}.cm_bb1c1d{border-bottom:1px dashed #fd1414 !important}.cm_bb1c2d{border-bottom:1px dashed #de4a4a !important}.cm_bb1c3d{border-bottom:1px dashed #696867 !important}.cm_bb1c4d{border-bottom:1px dashed #9b9b9b !important}.cm_bb1c5d{border-bottom:1px dashed #999999 !important}.cm_bb1c6d{border-bottom:1px dashed #f6f6f6 !important}.cm_bb1c7d{border-bottom:1px dashed #333333 !important}.cm_bb1c0d{border-bottom:1px dashed #000000 !important}.cm_bb1ccd{border-bottom:1px dashed #cccccc !important}.cm_bb1cdd{border-bottom:1px dashed #dddddd !important}.cm_bb1ced{border-bottom:1px dashed #eeeeee !important}.cm_bb1cfd{border-bottom:1px dashed #ffffff !important}.cm_bb1c1{border-bottom:1px solid #fd1414 !important}.cm_bb1c2{border-bottom:1px solid #de4a4a !important}.cm_bb1c3{border-bottom:1px solid #696867 !important}.cm_bb1c4{border-bottom:1px solid #9b9b9b !important}.cm_bb1c5{border-bottom:1px solid #999999 !important}.cm_bb1c6{border-bottom:1px solid #f6f6f6 !important}.cm_bb1c7{border-bottom:1px solid #333333 !important}.cm_bb1c0{border-bottom:1px solid #000000 !important}.cm_bb1cc{border-bottom:1px solid #cccccc !important}.cm_bb1cd{border-bottom:1px solid #dddddd !important}.cm_bb1ce{border-bottom:1px solid #eeeeee !important}.cm_bb1cf{border-bottom:1px solid #ffffff !important}.cm_bb2c1{border-bottom:2px solid #fd1414 !important}.cm_bb2c2{border-bottom:2px solid #de4a4a !important}.cm_bb2c3{border-bottom:2px solid #696867 !important}.cm_bb2c4{border-bottom:2px solid #9b9b9b !important}.cm_bb2c5{border-bottom:2px solid #999999 !important}.cm_bb2c6{border-bottom:2px solid #f6f6f6 !important}.cm_bb2c7{border-bottom:2px solid #333333 !important}.cm_bb2c0{border-bottom:2px solid #000000 !important}.cm_bb2cc{border-bottom:2px solid #cccccc !important}.cm_bb2cd{border-bottom:2px solid #dddddd !important}.cm_bb2ce{border-bottom:2px solid #eeeeee !important}.cm_bb2cf{border-bottom:2px solid #ffffff !important}.cm_bb3c1{border-bottom:3px solid #fd1414 !important}.cm_bb3c2{border-bottom:3px solid #de4a4a !important}.cm_bb3c3{border-bottom:3px solid #696867 !important}.cm_bb3c4{border-bottom:3px solid #9b9b9b !important}.cm_bb3c5{border-bottom:3px solid #999999 !important}.cm_bb3c6{border-bottom:3px solid #f6f6f6 !important}.cm_bb3c7{border-bottom:3px solid #333333 !important}.cm_bb3c0{border-bottom:3px solid #000000 !important}.cm_bb3cc{border-bottom:3px solid #cccccc !important}.cm_bb3cd{border-bottom:3px solid #dddddd !important}.cm_bb3ce{border-bottom:3px solid #eeeeee !important}.cm_bb3cf{border-bottom:3px solid #ffffff !important}.cm_bl1c1d{border-left:1px dashed #fd1414 !important}.cm_bl1c2d{border-left:1px dashed #de4a4a !important}.cm_bl1c3d{border-left:1px dashed #696867 !important}.cm_bl1c4d{border-left:1px dashed #9b9b9b !important}.cm_bl1c5d{border-left:1px dashed #999999 !important}.cm_bl1c6d{border-left:1px dashed #f6f6f6 !important}.cm_bl1c7d{border-left:1px dashed #333333 !important}.cm_bl1c0d{border-left:1px dashed #000000 !important}.cm_bl1ccd{border-left:1px dashed #cccccc !important}.cm_bl1cdd{border-left:1px dashed #dddddd !important}.cm_bl1ced{border-left:1px dashed #eeeeee !important}.cm_bl1cfd{border-left:1px dashed #ffffff !important}.cm_bl1c1{border-left:1px solid #fd1414 !important}.cm_bl1c2{border-left:1px solid #de4a4a !important}.cm_bl1c3{border-left:1px solid #696867 !important}.cm_bl1c4{border-left:1px solid #9b9b9b !important}.cm_bl1c5{border-left:1px solid #999999 !important}.cm_bl1c6{border-left:1px solid #f6f6f6 !important}.cm_bl1c7{border-left:1px solid #333333 !important}.cm_bl1c0{border-left:1px solid #000000 !important}.cm_bl1cc{border-left:1px solid #cccccc !important}.cm_bl1cd{border-left:1px solid #dddddd !important}.cm_bl1ce{border-left:1px solid #eeeeee !important}.cm_bl1cf{border-left:1px solid #ffffff !important}.cm_bl2c1{border-left:2px solid #fd1414 !important}.cm_bl2c2{border-left:2px solid #de4a4a !important}.cm_bl2c3{border-left:2px solid #696867 !important}.cm_bl2c4{border-left:2px solid #9b9b9b !important}.cm_bl2c5{border-left:2px solid #999999 !important}.cm_bl2c6{border-left:2px solid #f6f6f6 !important}.cm_bl2c7{border-left:2px solid #333333 !important}.cm_bl2c0{border-left:2px solid #000000 !important}.cm_bl2cc{border-left:2px solid #cccccc !important}.cm_bl2cd{border-left:2px solid #dddddd !important}.cm_bl2ce{border-left:2px solid #eeeeee !important}.cm_bl2cf{border-left:2px solid #ffffff !important}.cm_bl3c1{border-left:3px solid #fd1414 !important}.cm_bl3c2{border-left:3px solid #de4a4a !important}.cm_bl3c3{border-left:3px solid #696867 !important}.cm_bl3c4{border-left:3px solid #9b9b9b !important}.cm_bl3c5{border-left:3px solid #999999 !important}.cm_bl3c6{border-left:3px solid #f6f6f6 !important}.cm_bl3c7{border-left:3px solid #333333 !important}.cm_bl3c0{border-left:3px solid #000000 !important}.cm_bl3cc{border-left:3px solid #cccccc !important}.cm_bl3cd{border-left:3px solid #dddddd !important}.cm_bl3ce{border-left:3px solid #eeeeee !important}.cm_bl3cf{border-left:3px solid #ffffff !important}.cm_br1c1d{border-right:1px dashed #fd1414 !important}.cm_br1c2d{border-right:1px dashed #de4a4a !important}.cm_br1c3d{border-right:1px dashed #696867 !important}.cm_br1c4d{border-right:1px dashed #9b9b9b !important}.cm_br1c5d{border-right:1px dashed #999999 !important}.cm_br1c6d{border-right:1px dashed #f6f6f6 !important}.cm_br1c7d{border-right:1px dashed #333333 !important}.cm_br1c0d{border-right:1px dashed #000000 !important}.cm_br1ccd{border-right:1px dashed #cccccc !important}.cm_br1cdd{border-right:1px dashed #dddddd !important}.cm_br1ced{border-right:1px dashed #eeeeee !important}.cm_br1cfd{border-right:1px dashed #ffffff !important}.cm_br1c1{border-right:1px solid #fd1414 !important}.cm_br1c2{border-right:1px solid #de4a4a !important}.cm_br1c3{border-right:1px solid #696867 !important}.cm_br1c4{border-right:1px solid #9b9b9b !important}.cm_br1c5{border-right:1px solid #999999 !important}.cm_br1c6{border-right:1px solid #f6f6f6 !important}.cm_br1c7{border-right:1px solid #333333 !important}.cm_br1c0{border-right:1px solid #000000 !important}.cm_br1cc{border-right:1px solid #cccccc !important}.cm_br1cd{border-right:1px solid #dddddd !important}.cm_br1ce{border-right:1px solid #eeeeee !important}.cm_br1cf{border-right:1px solid #ffffff !important}.cm_br2c1{border-right:2px solid #fd1414 !important}.cm_br2c2{border-right:2px solid #de4a4a !important}.cm_br2c3{border-right:2px solid #696867 !important}.cm_br2c4{border-right:2px solid #9b9b9b !important}.cm_br2c5{border-right:2px solid #999999 !important}.cm_br2c6{border-right:2px solid #f6f6f6 !important}.cm_br2c7{border-right:2px solid #333333 !important}.cm_br2c0{border-right:2px solid #000000 !important}.cm_br2cc{border-right:2px solid #cccccc !important}.cm_br2cd{border-right:2px solid #dddddd !important}.cm_br2ce{border-right:2px solid #eeeeee !important}.cm_br2cf{border-right:2px solid #ffffff !important}.cm_br3c1{border-right:3px solid #fd1414 !important}.cm_br3c2{border-right:3px solid #de4a4a !important}.cm_br3c3{border-right:3px solid #696867 !important}.cm_br3c4{border-right:3px solid #9b9b9b !important}.cm_br3c5{border-right:3px solid #999999 !important}.cm_br3c6{border-right:3px solid #f6f6f6 !important}.cm_br3c7{border-right:3px solid #333333 !important}.cm_br3c0{border-right:3px solid #000000 !important}.cm_br3cc{border-right:3px solid #cccccc !important}.cm_br3cd{border-right:3px solid #dddddd !important}.cm_br3ce{border-right:3px solid #eeeeee !important}.cm_br3cf{border-right:3px solid #ffffff !important}.cm_br01{-webkit-border-radius:.1em;-moz-border-radius:.1em;-ms-border-radius:.1em;border-radius:.1em}.cm_br02{-webkit-border-radius:.2em;-moz-border-radius:.2em;-ms-border-radius:.2em;border-radius:.2em}.cm_br025{-webkit-border-radius:.25em;-moz-border-radius:.25em;-ms-border-radius:.25em;border-radius:.25em}.cm_br03{-webkit-border-radius:.3em;-moz-border-radius:.3em;-ms-border-radius:.3em;border-radius:.3em}.cm_br04{-webkit-border-radius:.4em;-moz-border-radius:.4em;-ms-border-radius:.4em;border-radius:.4em}.cm_br05{-webkit-border-radius:.5em;-moz-border-radius:.5em;-ms-border-radius:.5em;border-radius:.5em}.cm_br06{-webkit-border-radius:.6em;-moz-border-radius:.6em;-ms-border-radius:.6em;border-radius:.6em}.cm_br07{-webkit-border-radius:.7em;-moz-border-radius:.7em;-ms-border-radius:.7em;border-radius:.7em}.cm_br075{-webkit-border-radius:.75em;-moz-border-radius:.75em;-ms-border-radius:.75em;border-radius:.75em}.cm_br1{-webkit-border-radius:1em;-moz-border-radius:1em;-ms-border-radius:1em;border-radius:1em}.cm_br105{-webkit-border-radius:1.5em;-moz-border-radius:1.5em;-ms-border-radius:1.5em;border-radius:1.5em}.cm_br2{-webkit-border-radius:2em;-moz-border-radius:2em;-ms-border-radius:2em;border-radius:2em}.cm_br205{-webkit-border-radius:2.5em;-moz-border-radius:2.5em;-ms-border-radius:2.5em;border-radius:2.5em}.cm_br3{-webkit-border-radius:3em;-moz-border-radius:3em;-ms-border-radius:3em;border-radius:3em}.cm_br305{-webkit-border-radius:3.5em;-moz-border-radius:3.5em;-ms-border-radius:3.5em;border-radius:3.5em}.cm_br4{-webkit-border-radius:4em;-moz-border-radius:4em;-ms-border-radius:4em;border-radius:4em}.cm_br405{-webkit-border-radius:4.5em;-moz-border-radius:4.5em;-ms-border-radius:4.5em;border-radius:4.5em}.cm_br5{-webkit-border-radius:5em;-moz-border-radius:5em;-ms-border-radius:5em;border-radius:5em}.cm_brtr01{-webkit-border-top-right-radius:.1em;-moz-border-top-right-radius:.1em;-ms-border-top-right-radius:.1em;border-top-right-radius:.1em}.cm_brtr02{-webkit-border-top-right-radius:.2em;-moz-border-top-right-radius:.2em;-ms-border-top-right-radius:.2em;border-top-right-radius:.2em}.cm_brtr025{-webkit-border-top-right-radius:.25em;-moz-border-top-right-radius:.25em;-ms-border-top-right-radius:.25em;border-top-right-radius:.25em}.cm_brtr05{-webkit-border-top-right-radius:.5em;-moz-border-top-right-radius:.5em;-ms-border-top-right-radius:.5em;border-top-right-radius:.5em}.cm_brtr1{-webkit-border-top-right-radius:1em;-moz-border-top-right-radius:1em;-ms-border-top-right-radius:1em;border-top-right-radius:1em}.cm_brtr105{-webkit-border-top-right-radius:1.5em;-moz-border-top-right-radius:1.5em;-ms-border-top-right-radius:1.5em;border-top-right-radius:1.5em}.cm_brtr2{-webkit-border-top-right-radius:2em;-moz-border-top-right-radius:2em;-ms-border-top-right-radius:2em;border-top-right-radius:2em}.cm_brtl01{-webkit-border-top-left-radius:.1em;-moz-border-top-left-radius:.1em;-ms-border-top-left-radius:.1em;border-top-left-radius:.1em}.cm_brtl02{-webkit-border-top-left-radius:.2em;-moz-border-top-left-radius:.2em;-ms-border-top-left-radius:.2em;border-top-left-radius:.2em}.cm_brtl025{-webkit-border-top-left-radius:.25em;-moz-border-top-left-radius:.25em;-ms-border-top-left-radius:.25em;border-top-left-radius:.25em}.cm_brtl05{-webkit-border-top-left-radius:.5em;-moz-border-top-left-radius:.5em;-ms-border-top-left-radius:.5em;border-top-left-radius:.5em}.cm_brtl1{-webkit-border-top-left-radius:1em;-moz-border-top-left-radius:1em;-ms-border-top-left-radius:1em;border-top-left-radius:1em}.cm_brtl105{-webkit-border-top-left-radius:1.5em;-moz-border-top-left-radius:1.5em;-ms-border-top-left-radius:1.5em;border-top-left-radius:1.5em}.cm_brtl2{-webkit-border-top-left-radius:2em;-moz-border-top-left-radius:2em;-ms-border-top-left-radius:2em;border-top-left-radius:2em}.cm_brbr01{-webkit-border-bottom-right-radius:.1em;-moz-border-bottom-right-radius:.1em;-ms-border-bottom-right-radius:.1em;border-bottom-right-radius:.1em}.cm_brbr02{-webkit-border-bottom-right-radius:.2em;-moz-border-bottom-right-radius:.2em;-ms-border-bottom-right-radius:.2em;border-bottom-right-radius:.2em}.cm_brbr025{-webkit-border-bottom-right-radius:.25em;-moz-border-bottom-right-radius:.25em;-ms-border-bottom-right-radius:.25em;border-bottom-right-radius:.25em}.cm_brbr05{-webkit-border-bottom-right-radius:.5em;-moz-border-bottom-right-radius:.5em;-ms-border-bottom-right-radius:.5em;border-bottom-right-radius:.5em}.cm_brbr1{-webkit-border-bottom-right-radius:1em;-moz-border-bottom-right-radius:1em;-ms-border-bottom-right-radius:1em;border-bottom-right-radius:1em}.cm_brbr105{-webkit-border-bottom-right-radius:1.5em;-moz-border-bottom-right-radius:1.5em;-ms-border-bottom-right-radius:1.5em;border-bottom-right-radius:1.5em}.cm_brbr2{-webkit-border-bottom-right-radius:2em;-moz-border-bottom-right-radius:2em;-ms-border-bottom-right-radius:2em;border-bottom-right-radius:2em}.cm_brbl01{-webkit-border-bottom-left-radius:.1em;-moz-border-bottom-left-radius:.1em;-ms-border-bottom-left-radius:.1em;border-bottom-left-radius:.1em}.cm_brbl02{-webkit-border-bottom-left-radius:.2em;-moz-border-bottom-left-radius:.2em;-ms-border-bottom-left-radius:.2em;border-bottom-left-radius:.2em}.cm_brbl025{-webkit-border-bottom-left-radius:.25em;-moz-border-bottom-left-radius:.25em;-ms-border-bottom-left-radius:.25em;border-bottom-left-radius:.25em}.cm_brbl05{-webkit-border-bottom-left-radius:.5em;-moz-border-bottom-left-radius:.5em;-ms-border-bottom-left-radius:.5em;border-bottom-left-radius:.5em}.cm_brbl1{-webkit-border-bottom-left-radius:1em;-moz-border-bottom-left-radius:1em;-ms-border-bottom-left-radius:1em;border-bottom-left-radius:1em}.cm_brbl105{-webkit-border-bottom-left-radius:1.5em;-moz-border-bottom-left-radius:1.5em;-ms-border-bottom-left-radius:1.5em;border-bottom-left-radius:1.5em}.cm_brbl2{-webkit-border-bottom-left-radius:2em;-moz-border-bottom-left-radius:2em;-ms-border-bottom-left-radius:2em;border-bottom-left-radius:2em}.cm_bs01c1{-webkit-box-shadow:.1em .1em .1em #fd1414;-moz-box-shadow:.1em .1em .1em #fd1414;-ms-box-shadow:.1em .1em .1em #fd1414;box-shadow:.1em .1em .1em #fd1414}.cm_bs01c2{-webkit-box-shadow:.1em .1em .1em #de4a4a;-moz-box-shadow:.1em .1em .1em #de4a4a;-ms-box-shadow:.1em .1em .1em #de4a4a;box-shadow:.1em .1em .1em #de4a4a}.cm_bs01c3{-webkit-box-shadow:.1em .1em .1em #696867;-moz-box-shadow:.1em .1em .1em #696867;-ms-box-shadow:.1em .1em .1em #696867;box-shadow:.1em .1em .1em #696867}.cm_bs01c4{-webkit-box-shadow:.1em .1em .1em #9b9b9b;-moz-box-shadow:.1em .1em .1em #9b9b9b;-ms-box-shadow:.1em .1em .1em #9b9b9b;box-shadow:.1em .1em .1em #9b9b9b}.cm_bs01c5{-webkit-box-shadow:.1em .1em .1em #999999;-moz-box-shadow:.1em .1em .1em #999999;-ms-box-shadow:.1em .1em .1em #999999;box-shadow:.1em .1em .1em #999999}.cm_bs01c6{-webkit-box-shadow:.1em .1em .1em #f6f6f6;-moz-box-shadow:.1em .1em .1em #f6f6f6;-ms-box-shadow:.1em .1em .1em #f6f6f6;box-shadow:.1em .1em .1em #f6f6f6}.cm_bs01c7{-webkit-box-shadow:.1em .1em .1em #333333;-moz-box-shadow:.1em .1em .1em #333333;-ms-box-shadow:.1em .1em .1em #333333;box-shadow:.1em .1em .1em #333333}.cm_bs01c0{-webkit-box-shadow:.1em .1em .1em #000000;-moz-box-shadow:.1em .1em .1em #000000;-ms-box-shadow:.1em .1em .1em #000000;box-shadow:.1em .1em .1em #000000}.cm_bs01cc{-webkit-box-shadow:.1em .1em .1em #cccccc;-moz-box-shadow:.1em .1em .1em #cccccc;-ms-box-shadow:.1em .1em .1em #cccccc;box-shadow:.1em .1em .1em #cccccc}.cm_bs01cd{-webkit-box-shadow:.1em .1em .1em #dddddd;-moz-box-shadow:.1em .1em .1em #dddddd;-ms-box-shadow:.1em .1em .1em #dddddd;box-shadow:.1em .1em .1em #dddddd}.cm_bs01ce{-webkit-box-shadow:.1em .1em .1em #eeeeee;-moz-box-shadow:.1em .1em .1em #eeeeee;-ms-box-shadow:.1em .1em .1em #eeeeee;box-shadow:.1em .1em .1em #eeeeee}.cm_bs01cf{-webkit-box-shadow:.1em .1em .1em #ffffff;-moz-box-shadow:.1em .1em .1em #ffffff;-ms-box-shadow:.1em .1em .1em #ffffff;box-shadow:.1em .1em .1em #ffffff}.cm_bs02c1{-webkit-box-shadow:.2em .2em .2em #fd1414;-moz-box-shadow:.2em .2em .2em #fd1414;-ms-box-shadow:.2em .2em .2em #fd1414;box-shadow:.2em .2em .2em #fd1414}.cm_bs02c2{-webkit-box-shadow:.2em .2em .2em #de4a4a;-moz-box-shadow:.2em .2em .2em #de4a4a;-ms-box-shadow:.2em .2em .2em #de4a4a;box-shadow:.2em .2em .2em #de4a4a}.cm_bs02c3{-webkit-box-shadow:.2em .2em .2em #696867;-moz-box-shadow:.2em .2em .2em #696867;-ms-box-shadow:.2em .2em .2em #696867;box-shadow:.2em .2em .2em #696867}.cm_bs02c4{-webkit-box-shadow:.2em .2em .2em #9b9b9b;-moz-box-shadow:.2em .2em .2em #9b9b9b;-ms-box-shadow:.2em .2em .2em #9b9b9b;box-shadow:.2em .2em .2em #9b9b9b}.cm_bs02c5{-webkit-box-shadow:.2em .2em .2em #999999;-moz-box-shadow:.2em .2em .2em #999999;-ms-box-shadow:.2em .2em .2em #999999;box-shadow:.2em .2em .2em #999999}.cm_bs02c6{-webkit-box-shadow:.2em .2em .2em #f6f6f6;-moz-box-shadow:.2em .2em .2em #f6f6f6;-ms-box-shadow:.2em .2em .2em #f6f6f6;box-shadow:.2em .2em .2em #f6f6f6}.cm_bs02c7{-webkit-box-shadow:.2em .2em .2em #333333;-moz-box-shadow:.2em .2em .2em #333333;-ms-box-shadow:.2em .2em .2em #333333;box-shadow:.2em .2em .2em #333333}.cm_bs02c0{-webkit-box-shadow:.2em .2em .2em #000000;-moz-box-shadow:.2em .2em .2em #000000;-ms-box-shadow:.2em .2em .2em #000000;box-shadow:.2em .2em .2em #000000}.cm_bs02cc{-webkit-box-shadow:.2em .2em .2em #cccccc;-moz-box-shadow:.2em .2em .2em #cccccc;-ms-box-shadow:.2em .2em .2em #cccccc;box-shadow:.2em .2em .2em #cccccc}.cm_bs02cd{-webkit-box-shadow:.2em .2em .2em #dddddd;-moz-box-shadow:.2em .2em .2em #dddddd;-ms-box-shadow:.2em .2em .2em #dddddd;box-shadow:.2em .2em .2em #dddddd}.cm_bs02ce{-webkit-box-shadow:.2em .2em .2em #eeeeee;-moz-box-shadow:.2em .2em .2em #eeeeee;-ms-box-shadow:.2em .2em .2em #eeeeee;box-shadow:.2em .2em .2em #eeeeee}.cm_bs02cf{-webkit-box-shadow:.2em .2em .2em #ffffff;-moz-box-shadow:.2em .2em .2em #ffffff;-ms-box-shadow:.2em .2em .2em #ffffff;box-shadow:.2em .2em .2em #ffffff}.cm_bs05c1{-webkit-box-shadow:.5em .5em .5em #fd1414;-moz-box-shadow:.5em .5em .5em #fd1414;-ms-box-shadow:.5em .5em .5em #fd1414;box-shadow:.5em .5em .5em #fd1414}.cm_bs05c2{-webkit-box-shadow:.5em .5em .5em #de4a4a;-moz-box-shadow:.5em .5em .5em #de4a4a;-ms-box-shadow:.5em .5em .5em #de4a4a;box-shadow:.5em .5em .5em #de4a4a}.cm_bs05c3{-webkit-box-shadow:.5em .5em .5em #696867;-moz-box-shadow:.5em .5em .5em #696867;-ms-box-shadow:.5em .5em .5em #696867;box-shadow:.5em .5em .5em #696867}.cm_bs05c4{-webkit-box-shadow:.5em .5em .5em #9b9b9b;-moz-box-shadow:.5em .5em .5em #9b9b9b;-ms-box-shadow:.5em .5em .5em #9b9b9b;box-shadow:.5em .5em .5em #9b9b9b}.cm_bs05c5{-webkit-box-shadow:.5em .5em .5em #999999;-moz-box-shadow:.5em .5em .5em #999999;-ms-box-shadow:.5em .5em .5em #999999;box-shadow:.5em .5em .5em #999999}.cm_bs05c6{-webkit-box-shadow:.5em .5em .5em #f6f6f6;-moz-box-shadow:.5em .5em .5em #f6f6f6;-ms-box-shadow:.5em .5em .5em #f6f6f6;box-shadow:.5em .5em .5em #f6f6f6}.cm_bs05c7{-webkit-box-shadow:.5em .5em .5em #333333;-moz-box-shadow:.5em .5em .5em #333333;-ms-box-shadow:.5em .5em .5em #333333;box-shadow:.5em .5em .5em #333333}.cm_bs05c0{-webkit-box-shadow:.5em .5em .5em #000000;-moz-box-shadow:.5em .5em .5em #000000;-ms-box-shadow:.5em .5em .5em #000000;box-shadow:.5em .5em .5em #000000}.cm_bs05cc{-webkit-box-shadow:.5em .5em .5em #cccccc;-moz-box-shadow:.5em .5em .5em #cccccc;-ms-box-shadow:.5em .5em .5em #cccccc;box-shadow:.5em .5em .5em #cccccc}.cm_bs05cd{-webkit-box-shadow:.5em .5em .5em #dddddd;-moz-box-shadow:.5em .5em .5em #dddddd;-ms-box-shadow:.5em .5em .5em #dddddd;box-shadow:.5em .5em .5em #dddddd}.cm_bs05ce{-webkit-box-shadow:.5em .5em .5em #eeeeee;-moz-box-shadow:.5em .5em .5em #eeeeee;-ms-box-shadow:.5em .5em .5em #eeeeee;box-shadow:.5em .5em .5em #eeeeee}.cm_bs05cf{-webkit-box-shadow:.5em .5em .5em #ffffff;-moz-box-shadow:.5em .5em .5em #ffffff;-ms-box-shadow:.5em .5em .5em #ffffff;box-shadow:.5em .5em .5em #ffffff}.cm_bs1c1{-webkit-box-shadow:1em 1em 1em #fd1414;-moz-box-shadow:1em 1em 1em #fd1414;-ms-box-shadow:1em 1em 1em #fd1414;box-shadow:1em 1em 1em #fd1414}.cm_bs1c2{-webkit-box-shadow:1em 1em 1em #de4a4a;-moz-box-shadow:1em 1em 1em #de4a4a;-ms-box-shadow:1em 1em 1em #de4a4a;box-shadow:1em 1em 1em #de4a4a}.cm_bs1c3{-webkit-box-shadow:1em 1em 1em #696867;-moz-box-shadow:1em 1em 1em #696867;-ms-box-shadow:1em 1em 1em #696867;box-shadow:1em 1em 1em #696867}.cm_bs1c4{-webkit-box-shadow:1em 1em 1em #9b9b9b;-moz-box-shadow:1em 1em 1em #9b9b9b;-ms-box-shadow:1em 1em 1em #9b9b9b;box-shadow:1em 1em 1em #9b9b9b}.cm_bs1c5{-webkit-box-shadow:1em 1em 1em #999999;-moz-box-shadow:1em 1em 1em #999999;-ms-box-shadow:1em 1em 1em #999999;box-shadow:1em 1em 1em #999999}.cm_bs1c6{-webkit-box-shadow:1em 1em 1em #f6f6f6;-moz-box-shadow:1em 1em 1em #f6f6f6;-ms-box-shadow:1em 1em 1em #f6f6f6;box-shadow:1em 1em 1em #f6f6f6}.cm_bs1c7{-webkit-box-shadow:1em 1em 1em #333333;-moz-box-shadow:1em 1em 1em #333333;-ms-box-shadow:1em 1em 1em #333333;box-shadow:1em 1em 1em #333333}.cm_bs1c0{-webkit-box-shadow:1em 1em 1em #000000;-moz-box-shadow:1em 1em 1em #000000;-ms-box-shadow:1em 1em 1em #000000;box-shadow:1em 1em 1em #000000}.cm_bs1cc{-webkit-box-shadow:1em 1em 1em #cccccc;-moz-box-shadow:1em 1em 1em #cccccc;-ms-box-shadow:1em 1em 1em #cccccc;box-shadow:1em 1em 1em #cccccc}.cm_bs1cd{-webkit-box-shadow:1em 1em 1em #dddddd;-moz-box-shadow:1em 1em 1em #dddddd;-ms-box-shadow:1em 1em 1em #dddddd;box-shadow:1em 1em 1em #dddddd}.cm_bs1ce{-webkit-box-shadow:1em 1em 1em #eeeeee;-moz-box-shadow:1em 1em 1em #eeeeee;-ms-box-shadow:1em 1em 1em #eeeeee;box-shadow:1em 1em 1em #eeeeee}.cm_bs1cf{-webkit-box-shadow:1em 1em 1em #ffffff;-moz-box-shadow:1em 1em 1em #ffffff;-ms-box-shadow:1em 1em 1em #ffffff;box-shadow:1em 1em 1em #ffffff}.cm_oa{overflow:auto}.cm_oh{overflow:hidden}.cm_ov{overflow:visible}.cm_os{overflow:scroll}.cm_oi{overflow:inherit}.cm_oxa{overflow-x:auto}.cm_oxh{overflow-x:hidden}.cm_oxv{overflow-x:visible}.cm_oxs{overflow-x:scroll}.cm_oxi{overflow-x:inherit}.cm_oya{overflow-y:auto}.cm_oyh{overflow-y:hidden}.cm_oyv{overflow-y:visible}.cm_oys{overflow-y:scroll}.cm_oyi{overflow-y:inherit}.cm_vh{visibility:hidden}.cm_vv{visibility:visible}.cm_vi{visibility:inherit}.cm_vc{visibility:collapse}.cm_lids li{list-style:disc}.cm_lic li{list-style:circle}.cm_lis li{list-style:square}.cm_lidc li{list-style:decimal}.cm_lilr li{list-style:lower-roman}.cm_liur li{list-style:upper-roman}.cm_lila li{list-style:lower-alpha}.cm_liua li{list-style:upper-alpha}.cm_lids2>li{list-style:disc}.cm_lic2>li{list-style:circle}.cm_lis2>li{list-style:square}.cm_lidc2>li{list-style:decimal}.cm_lilr2>li{list-style:lower-roman}.cm_liur2>li{list-style:upper-roman}.cm_lila2>li{list-style:lower-alpha}.cm_liua2>li{list-style:upper-alpha}.cm_bs100{background-size:100%,100% !important}.cm_w100{width:100%}.cm_h100{height:100%}.cm_wh100{width:100%;height:100%}pre{white-space:pre-wrap;word-wrap:break-word}.cm_ts{text-overflow:ellipsis;overflow:hidden;white-space:nowrap !important;outline:0 !important}.cm_ws_nm{white-space:normal}.cm_ws_p{white-space:pre}.cm_ws_nw{white-space:nowrap}.cm_wb_n{word-break:normal}.cm_wb_b{word-break:break-all}.cm_wb_k{word-break:keep-all}.cm_ww_n{word-wrap:normal}.cm_ww_b{word-wrap:break-word}.cm_pc_1,.cm_pc_2,.cm_pc_3,.cm_pc_4,.cm_pc_5,.cm_pc_6,.cm_pc_7,.cm_pc_8,.cm_pc_9,.cm_pc_10,.cm_pc_11,.cm_pc_12,.cm_mob_1,.cm_mob_2,.cm_mob_3,.cm_mob_4,.cm_mob_5,.cm_mob_6,.cm_mob_7,.cm_mob_8,.cm_mob_9,.cm_mob_10,.cm_mob_11,.cm_mob_12,.cm_pc_1f,.cm_pc_2f,.cm_pc_3f,.cm_pc_4f,.cm_pc_5f,.cm_pc_6f,.cm_pc_7f,.cm_pc_8f,.cm_pc_9f,.cm_pc_10f,.cm_pc_11f,.cm_pc_12f,.cm_mob_1f,.cm_mob_2f,.cm_mob_3f,.cm_mob_4f,.cm_mob_5f,.cm_mob_6f,.cm_mob_7f,.cm_mob_8f,.cm_mob_9f,.cm_mob_10f,.cm_mob_11f,.cm_mob_12f{position:relative;float:left}.cm_pc_1{width:8.33333333%}.cm_pc_2{width:16.66666667%}.cm_pc_3{width:25%}.cm_pc_4{width:33.33333333%}.cm_pc_5{width:41.66666667%}.cm_pc_6{width:50%}.cm_pc_7{width:58.33333333%}.cm_pc_8{width:66.66666667%}.cm_pc_9{width:75%}.cm_pc_10{width:83.33333333%}.cm_pc_11{width:91.66666667%}.cm_pc_12{width:100%}.cm_pc_1f{width:100%}.cm_pc_2f{width:50%}.cm_pc_3f{width:33.33333333%}.cm_pc_4f{width:25%}.cm_pc_5f{width:20%}.cm_pc_6f{width:16.66666667%}.cm_pc_7f{width:14.28571429%}.cm_pc_8f{width:12.5%}.cm_pc_9f{width:11.11111111%}.cm_pc_10f{width:10%}.cm_pc_11f{width:9.09090909%}.cm_pc_12f{width:8.33333333%}.cm_main,.cm_main2{float:none;padding:0;margin:0 auto}.com_main:before,.com_main:after,.com_main2:before,.com_main2:after{display:table;content:" ";clear:both}.cm_main{width:1200px !important}.cm_main2{width:100%}.cm_pc{display:block !important}.cm_pc_i{display:inline-block !important}.cm_mob{display:none !important}.cm_mob_i{display:none !important}@media (max-width:768px){.cm_mob_1{width:8.33333333%}.cm_mob_2{width:16.66666667%}.cm_mob_3{width:25%}.cm_mob_4{width:33.33333333%}.cm_mob_5{width:41.66666667%}.cm_mob_6{width:50%}.cm_mob_7{width:58.33333333%}.cm_mob_8{width:66.66666667%}.cm_mob_9{width:75%}.cm_mob_10{width:83.33333333%}.cm_mob_11{width:91.66666667%}.cm_mob_12{width:100%}.cm_mob_1f{width:100%}.cm_mob_2f{width:50%}.cm_mob_3f{width:33.33333333%}.cm_mob_4f{width:25%}.cm_mob_5f{width:20%}.cm_mob_6f{width:16.66666667%}.cm_mob_7f{width:14.28571429%}.cm_mob_8f{width:12.5%}.cm_mob_9f{width:11.11111111%}.cm_mob_10f{width:10%}.cm_mob_11f{width:9.09090909%}.cm_mob_12f{width:8.33333333%}.cm_main{width:100% !important}.cm_main2{width:100% !important}.cm_pc{display:none !important}.cm_pc_i{display:none !important}.cm_mob{display:block !important}.cm_mob_i{display:inline-block !important}}.cm_input input{margin:0;border:0;width:100%;height:100%;-webkit-appearance:none;padding:0;background:none;text-decoration:none;display:block}input::-webkit-input-placeholder{color:#9b9b9b}input:-moz-placeholder{color:#9b9b9b}.cm_input textarea{margin:0;border:0;width:100%;height:100%;-webkit-appearance:none;padding:0;background:none;text-decoration:none;display:block}label{display:inline}.radio-1{width:193px}.cm_radio{display:none}.cm_radio+label{-webkit-appearance:none;background-color:#fafafa;border:1px solid #5f5;box-shadow:0 1px 2px rgba(0,0,0,0.05),inset 0 -15px 10px -12px rgba(0,0,0,0.05);padding:9px;border-radius:50px;display:inline-block;position:relative}.cm_radio:checked+label:after{content:'\2714';width:12px;height:12px;border-radius:50px;position:absolute;top:2px;text-shadow:0;left:2px}.cm_radio2:checked+label:after{content:' ';width:12px;height:12px;border-radius:50px;position:absolute;top:3px;background:#99a1a7;box-shadow:inset 0 0 10px rgba(0,0,0,0.3);text-shadow:0;left:3px;font-size:32px}.cm_radio:checked+label{color:#5f5;box-shadow:0 1px 2px rgba(0,0,0,0.05),inset 0 -15px 10px -12px rgba(0,0,0,0.05),inset 15px 10px -12px rgba(255,255,255,0.1),inset 0 0 10px rgba(0,0,0,0.1)}.cm_radio+label:active,.cm_radio:checked+label:active{box-shadow:0 1px 2px rgba(0,0,0,0.05),inset 0 1px 3px rgba(0,0,0,0.1)}.big_radio+label{padding:16px}.big_radio:checked+label:after{width:24px;height:24px;left:8px;top:8px}.cm_checkbox{display:none}.cm_checkbox+label{background-color:#fafafa;border:1px solid #5f5;padding:.5em;border-radius:.2em;display:inline-block;position:relative}.cm_checkbox+label:active,.cm_checkbox:checked+label:active{box-shadow:0 1px 2px rgba(0,0,0,0.05),inset 0 1px 3px rgba(0,0,0,0.1)}.cm_checkbox:checked+label{color:#5f5}.cm_checkbox:checked+label:after{content:'\2714';font-size:14px;position:absolute;top:2px;left:3px;color:#5f5}.big_checkbox+label{padding:18px}.big_checkbox:checked+label:after{font-size:28px;left:6px}.cm_page{position:absolute;top:0;bottom:0;height:100%;width:100%;right:0;left:0;z-index:5}.cm_load{position:fixed;top:0;bottom:0;width:100%;height:100%;z-index:9999999}@-webkit-keyframes cm_r2l{0%{-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@-moz-keyframes cm_r2l{0%{-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@-ms-keyframes cm_r2l{0%{-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@keyframes cm_r2l{0%{-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@-webkit-keyframes cm_l2r{0%{-webkit-transform:translate3d(-100%, 0, 0);-moz-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@-moz-keyframes cm_l2r{0%{-webkit-transform:translate3d(-100%, 0, 0);-moz-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@-ms-keyframes cm_l2r{0%{-webkit-transform:translate3d(-100%, 0, 0);-moz-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@keyframes cm_l2r{0%{-webkit-transform:translate3d(-100%, 0, 0);-moz-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}.cm_Wr2l01{animation-name:cm_r2l;animation-duration:.1s}.cm_Wr2l02{animation-name:cm_r2l;animation-duration:.2s}.cm_Wr2l03{animation-name:cm_r2l;animation-duration:.3s}.cm_Wr2l04{animation-name:cm_r2l;animation-duration:.4s}.cm_Wr2l05{animation-name:cm_r2l;animation-duration:.5s}.cm_Wl2r01{animation-name:cm_l2r;animation-duration:.1s}.cm_Wl2r02{animation-name:cm_l2r;animation-duration:.2s}.cm_Wl2r03{animation-name:cm_l2r;animation-duration:.3s}.cm_Wl2r04{animation-name:cm_l2r;animation-duration:.4s}.cm_Wl2r05{animation-name:cm_l2r;animation-duration:.5s}@-webkit-keyframes cm_o2o{0%{-khtml-opacity:0;-webkit-opacity:0;-moz-opacity:0;filter:alpha(opacity=0);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);opacity:0}100%{-khtml-opacity:1;-webkit-opacity:1;-moz-opacity:1;filter:alpha(opacity=100);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);opacity:1}}@-moz-keyframes cm_o2o{0%{-khtml-opacity:0;-webkit-opacity:0;-moz-opacity:0;filter:alpha(opacity=0);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);opacity:0}100%{-khtml-opacity:1;-webkit-opacity:1;-moz-opacity:1;filter:alpha(opacity=100);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);opacity:1}}@-ms-keyframes cm_o2o{0%{-khtml-opacity:0;-webkit-opacity:0;-moz-opacity:0;filter:alpha(opacity=0);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);opacity:0}100%{-khtml-opacity:1;-webkit-opacity:1;-moz-opacity:1;filter:alpha(opacity=100);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);opacity:1}}@keyframes cm_o2o{0%{-khtml-opacity:0;-webkit-opacity:0;-moz-opacity:0;filter:alpha(opacity=0);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);opacity:0}100%{-khtml-opacity:1;-webkit-opacity:1;-moz-opacity:1;filter:alpha(opacity=100);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);opacity:1}}.cm_Wo2o01{animation-name:cm_o2o;animation-duration:.1s}.cm_Wo2o02{animation-name:cm_o2o;animation-duration:.2s}.cm_Wo2o03{animation-name:cm_o2o;animation-duration:.3s}.cm_Wo2o04{animation-name:cm_o2o;animation-duration:.4s}.cm_Wo2o05{animation-name:cm_o2o;animation-duration:.5s}.cm_up{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);-webkit-transition:-webkit-transform 1s;-moz-transition:-moz-transform 1s;-ms-transition:-ms-transform 1s;transition:transform 1s}.cm_down{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);-webkit-transition:-webkit-transform 1s;-moz-transition:-moz-transform 1s;-ms-transition:-ms-transform 1s;transition:transform 1s}.cm_upts{display:block;position:fixed;z-index:33333333;background:rgba(0,0,0,0.38);width:100%;height:100%;top:0;left:0}.cm_tsdiv{display:block;background:rgba(255,255,255,0.94);width:76%;height:5em;line-height:5em;margin:10em 12% 0 12%;border-radius:.5em;text-align:center}.cmqdk{display:block;position:fixed;z-index:33333333;background:rgba(0,0,0,0.38);width:100%;height:100%;top:0;left:0}.cm_tsdiv2{display:block;background:rgba(255,255,255,0.94);width:100%;min-height:6em;border-radius:.5em;text-align:center;position:relative}.cm_qptop{float:left;background-color:#eee;padding:0 .5em;width:100%;word-break:break-all;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;position:relative}.cm_qptop:before{position:absolute;content:'\00a0';width:0;height:0;border-left:.5em solid transparent;border-right:.5em solid transparent;border-bottom:.5em solid #eee;top:-0.5em;left:1em}.cm_qpleft{float:left;background-color:#fff;padding:10px;width:100%;word-break:break-all;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;position:relative;background-image:-moz-linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0) 30px);background-image:-webkie-gradient(linear, 0 0, 0 30, from(rgba(255,255,255,0.6)), to(rgba(255,255,255,0)))}.cm_qpleft:before{position:absolute;content:'\00a0';width:0;height:0;border-width:8px 18px 8px 0;border-style:solid;border-color:transparent #fff transparent transparent;top:10px;left:-15px}.cm_qpright{float:right;background-color:#ffa8a8;color:#fff;padding:10px;width:100%;word-break:break-all;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;position:relative;background-image:-moz-linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0) 30px);background-image:-webkie-gradient(linear, 0 0, 0 30, from(rgba(255,255,255,0.6)), to(rgba(255,255,255,0)))}.cm_qpright:before{position:absolute;content:'\00a0';display:inline-block;width:0;height:0;border-width:8px 0 8px 18px;border-style:solid;border-color:transparent transparent transparent #ffa8a8;right:-15px;top:10px}.cm_qpbottom{width:100%;min-height:1em;line-height:1em;position:relative;background:#fff;border:1px solid #fff}.cm_qpbottom:after,.cm_qpbottom:before{top:100%;left:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.cm_qpbottom:after{border-color:rgba(255,255,255,0);border-top-color:#fff;border-width:.7em;margin-left:-0.7em}.cm_qpbottom:before{border-color:rgba(255,255,255,0);border-top-color:#fff;border-width:.7em;margin-left:-0.7em}
--------------------------------------------------------------------------------
/lib/cmstyle.min.wxss:
--------------------------------------------------------------------------------
1 | .cm_c1c{color:#fd1414 !important}.cm_c2c{color:#de4a4a !important}.cm_c3c{color:#696867 !important}.cm_c4c{color:#9b9b9b !important}.cm_c5c{color:#999999 !important}.cm_c6c{color:#f6f6f6 !important}.cm_c7c{color:#333333 !important}.cm_c0{color:#000000 !important}.cm_cc{color:#cccccc !important}.cm_cd{color:#dddddd !important}.cm_ce{color:#eeeeee !important}.cm_cf{color:#ffffff !important}.cm_cf00{color:#ff0000 !important}.cm_c0f0{color:#00ff00 !important}.cm_c00f{color:#0000ff !important}.cm_c1b{background:#fd1414 !important}.cm_c2b{background:#de4a4a !important}.cm_c3b{background:#696867 !important}.cm_c4b{background:#9b9b9b !important}.cm_c5b{background:#999999 !important}.cm_c6b{background:#f6f6f6 !important}.cm_c7b{background:#333333 !important}.cm_b0{background:#000000 !important}.cm_bc{background:#cccccc !important}.cm_bd{background:#dddddd !important}.cm_be{background:#eeeeee !important}.cm_bf{background:#ffffff !important}.cm_bf00{background:#ff0000 !important}.cm_b0f0{background:#00ff00 !important}.cm_b00f{background:#0000ff !important}.cm_bco01{background:rgba(0,0,0,0.1) !important}.cm_bco02{background:rgba(0,0,0,0.2) !important}.cm_bco03{background:rgba(0,0,0,0.3) !important}.cm_bco04{background:rgba(0,0,0,0.4) !important}.cm_bco05{background:rgba(0,0,0,0.5) !important}.cm_bco06{background:rgba(0,0,0,0.6) !important}.cm_bco07{background:rgba(0,0,0,0.7) !important}.cm_bco08{background:rgba(0,0,0,0.8) !important}.cm_bco09{background:rgba(0,0,0,0.9) !important}.cm_ac1c a{color:#fd1414 !important}.cm_ac2c a{color:#de4a4a !important}.cm_ac3c a{color:#696867 !important}.cm_ac4c a{color:#9b9b9b !important}.cm_ac5c a{color:#999999 !important}.cm_ac6c a{color:#f6f6f6 !important}.cm_ac7c a{color:#333333 !important}.cm_a0c a{color:#000000 !important}.cm_aec a{color:#eeeeee !important}.cm_afc a{color:#ffffff !important}.cm_hvc1c:hover{color:#fd1414 !important}.cm_hvc2c:hover{color:#de4a4a !important}.cm_hvc3c:hover{color:#696867 !important}.cm_hvc4c:hover{color:#9b9b9b !important}.cm_hvc5c:hover{color:#999999 !important}.cm_hvc6c:hover{color:#f6f6f6 !important}.cm_hvc7c:hover{color:#333333 !important}.cm_hv0c:hover{color:#000000 !important}.cm_hvec:hover{color:#eeeeee !important}.cm_hvfc:hover{color:#ffffff !important}.cm_hvc1b:hover{background:#fd1414 !important}.cm_hvc2b:hover{background:#de4a4a !important}.cm_hvc3b:hover{background:#696867 !important}.cm_hvc4b:hover{background:#9b9b9b !important}.cm_hvc5b:hover{background:#999999 !important}.cm_hvc6b:hover{background:#f6f6f6 !important}.cm_hvc7b:hover{background:#333333 !important}.cm_hv0b:hover{background:#000000 !important}.cm_hveb:hover{background:#eeeeee !important}.cm_hvfb:hover{background:#ffffff !important}.cm_fs05{font-size:.5em}.cm_fs06{font-size:.6em}.cm_fs07{font-size:.7em}.cm_fs08{font-size:.8em}.cm_fs09{font-size:.9em}.cm_fs1{font-size:1em}.cm_fs11{font-size:1.1em}.cm_fs12{font-size:1.2em}.cm_fs13{font-size:1.3em}.cm_fs14{font-size:1.4em}.cm_fs15{font-size:1.5em}.cm_fs16{font-size:1.6em}.cm_fs17{font-size:1.7em}.cm_fs18{font-size:1.8em}.cm_fs19{font-size:1.9em}.cm_fs2{font-size:2em}.cm_fs3{font-size:3em}.cm_fs4{font-size:4em}.cm_fs5{font-size:5em}.cm_fwn{font-weight:normal}.cm_fwb{font-weight:bold}.cm_fwbd{font-weight:bolder}.cm_fwl{font-weight:lighter}.cm_fwi{font-weight:inherit}.cm_fw100{font-weight:100}.cm_fw200{font-weight:200}.cm_fw300{font-weight:300}.cm_fw400{font-weight:400}.cm_fw500{font-weight:500}.cm_fw600{font-weight:600}.cm_fw700{font-weight:700}.cm_fw800{font-weight:800}.cm_fw900{font-weight:900}.cm_o0{-khtml-opacity:0;-webkit-opacity:0;-moz-opacity:0;filter:alpha(opacity=0);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);opacity:0}.cm_o01{-khtml-opacity:.1;-webkit-opacity:.1;-moz-opacity:.1;filter:alpha(opacity=10);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=10);opacity:.1}.cm_o02{-khtml-opacity:.2;-webkit-opacity:.2;-moz-opacity:.2;filter:alpha(opacity=20);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=20);opacity:.2}.cm_o03{-khtml-opacity:.3;-webkit-opacity:.3;-moz-opacity:.3;filter:alpha(opacity=30);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30);opacity:.3}.cm_o04{-khtml-opacity:.4;-webkit-opacity:.4;-moz-opacity:.4;filter:alpha(opacity=40);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=40);opacity:.4}.cm_o05{-khtml-opacity:.5;-webkit-opacity:.5;-moz-opacity:.5;filter:alpha(opacity=50);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);opacity:.5}.cm_o06{-khtml-opacity:.6;-webkit-opacity:.6;-moz-opacity:.6;filter:alpha(opacity=60);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);opacity:.6}.cm_o07{-khtml-opacity:.7;-webkit-opacity:.7;-moz-opacity:.7;filter:alpha(opacity=70);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);opacity:.7}.cm_o08{-khtml-opacity:.8;-webkit-opacity:.8;-moz-opacity:.8;filter:alpha(opacity=80);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=80);opacity:.8}.cm_o09{-khtml-opacity:.9;-webkit-opacity:.9;-moz-opacity:.9;filter:alpha(opacity=90);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=90);opacity:.9}.cm_o1{-khtml-opacity:1;-webkit-opacity:1;-moz-opacity:1;filter:alpha(opacity=100);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);opacity:1}.cm_dn{display:none}.cm_db{display:block}.cm_di{display:inline}.cm_dib{display:inline-block}.cm_dih{display:inherit}.cm_dtab{display:table}.cm_dtc{display:table-cell}.cm_dit{display:inline-table}.cm_fl{float:left}.cm_fr{float:right}.cm_fn{float:none}.cm_tl{text-align:left}.cm_tc{text-align:center}.cm_tr{text-align:right}.cm_tj{text-align:justify}.cm_ti05{text-indent:.5em}.cm_ti1{text-indent:1em}.cm_ti105{text-indent:1.5em}.cm_ti2{text-indent:2em}.cm_ti205{text-indent:2.5em}.cm_fc,.cm_fc2{float:none;display:block;margin-left:auto;margin-right:auto}.cm_fc2{margin-top:auto;margin-bottom:auto}.cm_fc3{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.cm_fc4{-webkit-display:flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.cm_fc3tb{position:absolute;top:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.cm_fc3rl{position:absolute;left:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.cm_ps{position:static !important}.cm_pa{position:absolute !important}.cm_pf{position:fixed !important}.cm_pr{position:relative !important}.cm_tl0{top:0;left:0}.cm_tr0{top:0;right:0}.cm_bl0{bottom:0;left:0}.cm_br0{bottom:0;right:0}.cm_t2f{top:-2em !important}.cm_t105f{top:-1.5em !important}.cm_t1f{top:-1em !important}.cm_t05f{top:-0.5em !important}.cm_t0{top:0 !important}.cm_t01e{top:.1em !important}.cm_t02e{top:.2em !important}.cm_t025e{top:.25em !important}.cm_t05e{top:.5em !important}.cm_t1e{top:1em !important}.cm_t2e{top:2em !important}.cm_t3e{top:3em !important}.cm_t4e{top:4em !important}.cm_t5e{top:5em !important}.cm_t6e{top:6em !important}.cm_t7e{top:7em !important}.cm_t8e{top:8em !important}.cm_t9e{top:9em !important}.cm_t10e{top:10em !important}.cm_t11e{top:11em !important}.cm_t12e{top:12em !important}.cm_t13e{top:13em !important}.cm_b2f{bottom:-2em !important}.cm_b05f{bottom:-1.5em !important}.cm_b1f{bottom:-1em !important}.cm_b05f{bottom:-0.5em !important}.cm_b01e{bottom:.1em !important}.cm_b02e{bottom:.2em !important}.cm_b025e{bottom:.25em !important}.cm_b05e{bottom:.5em !important}.cm_b1e{bottom:1em !important}.cm_b2e{bottom:2em !important}.cm_b3e{bottom:3em !important}.cm_b4e{bottom:4em !important}.cm_b5e{bottom:5em !important}.cm_b6e{bottom:6em !important}.cm_b7e{bottom:7em !important}.cm_b8e{bottom:8em !important}.cm_b9e{bottom:9em !important}.cm_b10e{bottom:10em !important}.cm_b11e{bottom:11em !important}.cm_b12e{bottom:12em !important}.cm_b13e{bottom:13em !important}.cm_l2f{left:-2em !important}.cm_l105f{left:-1.5em !important}.cm_l1f{left:-1em !important}.cm_l05f{left:-0.5em !important}.cm_l01e{left:.1em !important}.cm_l02e{left:.2em !important}.cm_l025e{left:.25em !important}.cm_l05e{left:.5em !important}.cm_l1e{left:1em !important}.cm_l2e{left:2em !important}.cm_l3e{left:3em !important}.cm_l4e{left:4em !important}.cm_l5e{left:5em !important}.cm_r2f{right:-2em !important}.cm_r105f{right:-1.5em !important}.cm_r1f{right:-1em !important}.cm_r05f{right:-0.5em !important}.cm_r0e{right:0 !important}.cm_r01e{right:.1em !important}.cm_r02e{right:.2em !important}.cm_r025e{right:.25em !important}.cm_r05e{right:.5em !important}.cm_r1e{right:1em !important}.cm_r2e{right:2em !important}.cm_r3e{right:3em !important}.cm_r4e{right:4em !important}.cm_r5e{right:5em !important}.cm_z1{z-index:1 !important}.cm_z2{z-index:2 !important}.cm_z3{z-index:3 !important}.cm_z4{z-index:4 !important}.cm_z5{z-index:5 !important}.cm_z9{z-index:9 !important}.cm_z99{z-index:99 !important}.cm_z999{z-index:999 !important}.cm_z9999{z-index:9999 !important}.cm_z99999{z-index:99999 !important}.cm_z999999{z-index:999999 !important}.cm_csd{cursor:default !important}.cm_csa{cursor:auto !important}.cm_csc{cursor:crosshair !important}.cm_csp{cursor:pointer !important}.cm_csm{cursor:move !important}.cm_cse{cursor:e-resize !important}.cm_csne{cursor:ne-resize !important}.cm_csnw{cursor:nw-resize !important}.cm_csn{cursor:n-resize !important}.cm_csse{cursor:se-resize !important}.cm_cssw{cursor:sw-resize !important}.cm_css{cursor:s-resize !important}.cm_cswr{cursor:w-resize !important}.cm_cst{cursor:text !important}.cm_csw{cursor:wait !important}.cm_csh{cursor:help !important}.cm_h05{height:.5em !important}.cm_h075{height:.75em !important}.cm_h08{height:.8em !important}.cm_h1{height:1em !important}.cm_h105{height:1.5em !important}.cm_h2{height:2em !important}.cm_h205{height:2.5em !important}.cm_h3{height:3em !important}.cm_h305{height:3.5em !important}.cm_h4{height:4em !important}.cm_h405{height:4.5em !important}.cm_h5{height:5em !important}.cm_h505{height:5.5em !important}.cm_h6{height:6em !important}.cm_h605{height:6.5em !important}.cm_h7{height:7em !important}.cm_h705{height:7.5em !important}.cm_h8{height:8em !important}.cm_h805{height:8.5em !important}.cm_h9{height:9em !important}.cm_h905{height:9.5em !important}.cm_h10{height:10em !important}.cm_h11{height:11em !important}.cm_h12{height:12em !important}.cm_h13{height:13em !important}.cm_h14{height:14em !important}.cm_h15{height:15em !important}.cm_h16{height:16em !important}.cm_h17{height:17em !important}.cm_h18{height:18em !important}.cm_h19{height:19em !important}.cm_h20{height:20em !important}.cm_h21{height:21em !important}.cm_h22{height:22em !important}.cm_h23{height:23em !important}.cm_h24{height:24em !important}.cm_h25{height:25em !important}.cm_h10f{height:10% !important}.cm_h20f{height:20% !important}.cm_h30f{height:30% !important}.cm_h40f{height:40% !important}.cm_h50f{height:50% !important}.cm_h60f{height:60% !important}.cm_h70f{height:70% !important}.cm_h80f{height:80% !important}.cm_h90f{height:90% !important}.cm_minh1{min-height:1em;height:auto !important;height:1em}.cm_minh2{min-height:2em;height:auto !important;height:2em}.cm_minh3{min-height:3em;height:auto !important;height:3em}.cm_minh4{min-height:4em;height:auto !important;height:4em}.cm_minh5{min-height:5em;height:auto !important;height:5em}.cm_minh6{min-height:6em;height:auto !important;height:6em}.cm_minh7{min-height:7em;height:auto !important;height:7em}.cm_minh8{min-height:8em;height:auto !important;height:8em}.cm_minh9{min-height:9em;height:auto !important;height:9em}.cm_minh10{min-height:10em;height:auto !important;height:10em}.cm_minh11{min-height:11em;height:auto !important;height:11em}.cm_minh12{min-height:12em;height:auto !important;height:12em}.cm_minh13{min-height:13em;height:auto !important;height:13em}.cm_maxh1{max-height:1em;height:auto !important;height:1em}.cm_maxh2{max-height:2em;height:auto !important;height:2em}.cm_maxh3{max-height:3em;height:auto !important;height:3em}.cm_maxh4{max-height:4em;height:auto !important;height:4em}.cm_maxh5{max-height:5em;height:auto !important;height:5em}.cm_maxh6{max-height:6em;height:auto !important;height:6em}.cm_maxh7{max-height:7em;height:auto !important;height:7em}.cm_maxh8{max-height:8em;height:auto !important;height:8em}.cm_maxh9{max-height:9em;height:auto !important;height:9em}.cm_maxh10{max-height:10em;height:auto !important;height:10em}.cm_maxh11{max-height:11em;height:auto !important;height:11em}.cm_maxh12{max-height:12em;height:auto !important;height:12em}.cm_maxh13{max-height:13em;height:auto !important;height:13em}.cm_lh1{line-height:1em !important}.cm_lh105{line-height:1.5em !important}.cm_lh2{line-height:2em !important}.cm_lh205{line-height:2.5em !important}.cm_lh3{line-height:3em !important}.cm_lh305{line-height:3.5em !important}.cm_lh4{line-height:4em !important}.cm_lh405{line-height:4.5em !important}.cm_lh5{line-height:5em !important}.cm_lh505{line-height:5.5em !important}.cm_lh6{line-height:6em !important}.cm_lh605{line-height:6.5em !important}.cm_lh7{line-height:7em !important}.cm_lh705{line-height:7.5em !important}.cm_lh8{line-height:8em !important}.cm_lh805{line-height:8.5em !important}.cm_lh9{line-height:9em !important}.cm_lh905{line-height:9.5em !important}.cm_hl08{height:.8em !important;line-height:.8em !important}.cm_hl1{height:1em !important;line-height:1em !important}.cm_hl105{height:1.5em !important;line-height:1.5em !important}.cm_hl2{height:2em !important;line-height:2em !important}.cm_hl205{height:2.5em !important;line-height:2.5em !important}.cm_hl3{height:3em !important;line-height:3em !important}.cm_hl305{height:3.5em !important;line-height:3.5em !important}.cm_hl4{height:4em !important;line-height:4em !important}.cm_hl405{height:4.5em !important;line-height:4.5em !important}.cm_hl5{height:5em !important;line-height:5em !important}.cm_hl505{height:5.5em !important;line-height:5.5em !important}.cm_hl6{height:6em !important;line-height:6em !important}.cm_hl7{height:7em !important;line-height:7em !important}.cm_hl8{height:8em !important;line-height:8em !important}.cm_hl9{height:9em !important;line-height:9em !important}.cm_w1{width:1em !important}.cm_w105{width:1.5em !important}.cm_w2{width:2em !important}.cm_w205{width:2.5em !important}.cm_w3{width:3em !important}.cm_w305{width:3.5em !important}.cm_w4{width:4em !important}.cm_w405{width:4.5em !important}.cm_w5{width:5em !important}.cm_w505{width:5.5em !important}.cm_w6{width:6em !important}.cm_w605{width:6.5em !important}.cm_w7{width:7em !important}.cm_w705{width:7.5em !important}.cm_w8{width:8em !important}.cm_w805{width:8.5em !important}.cm_w9{width:9em !important}.cm_w905{width:9.5em !important}.cm_w10{width:10em !important}.cm_w11{width:11em !important}.cm_w12{width:12em !important}.cm_w13{width:13em !important}.cm_w10f{width:10% !important}.cm_w20f{width:20% !important}.cm_w30f{width:30% !important}.cm_w40f{width:40% !important}.cm_w50f{width:50% !important}.cm_w60f{width:60% !important}.cm_w70f{width:70% !important}.cm_w80f{width:80% !important}.cm_w90f{width:90% !important}.cm_minw1{min-width:1em;width:auto !important;width:1em}.cm_minw2{min-width:2em;width:auto !important;width:2em}.cm_minw3{min-width:3em;width:auto !important;width:3em}.cm_minw4{min-width:4em;width:auto !important;width:4em}.cm_minw5{min-width:5em;width:auto !important;width:5em}.cm_minw6{min-width:6em;width:auto !important;width:6em}.cm_minw7{min-width:7em;width:auto !important;width:7em}.cm_minw8{min-width:8em;width:auto !important;width:8em}.cm_minw9{min-width:9em;width:auto !important;width:9em}.cm_minw10{min-width:10em;width:auto !important;width:10em}.cm_minw11{min-width:11em;width:auto !important;width:11em}.cm_minw12{min-width:12em;width:auto !important;width:12em}.cm_minw13{min-width:13em;width:auto !important;width:13em}.cm_maxw1{max-width:1em;width:auto !important;width:1em}.cm_maxw2{max-width:2em;width:auto !important;width:2em}.cm_maxw3{max-width:3em;width:auto !important;width:3em}.cm_maxw4{max-width:4em;width:auto !important;width:4em}.cm_maxw5{max-width:5em;width:auto !important;width:5em}.cm_maxw6{max-width:6em;width:auto !important;width:6em}.cm_maxw7{max-width:7em;width:auto !important;width:7em}.cm_maxw8{max-width:8em;width:auto !important;width:8em}.cm_maxw9{max-width:9em;width:auto !important;width:9em}.cm_maxw10{max-width:10em;width:auto !important;width:10em}.cm_maxw11{max-width:11em;width:auto !important;width:11em}.cm_maxw12{max-width:12em;width:auto !important;width:12em}.cm_maxw13{max-width:13em;width:auto !important;width:13em}.cm_wh05{width:.5em !important;height:.5em !important}.cm_wh1{width:1em !important;height:1em !important}.cm_wh105{width:1.5em !important;height:1.5em !important}.cm_wh2{width:2em !important;height:2em !important}.cm_wh205{width:2.5em !important;height:2.5em !important}.cm_wh3{width:3em !important;height:3em !important}.cm_wh305{width:3.5em !important;height:3.5em !important}.cm_wh4{width:4em !important;height:4em !important}.cm_wh405{width:4.5em !important;height:4.5em !important}.cm_wh5{width:5em !important;height:5em !important}.cm_wh505{width:5.5em !important;height:5.5em !important}.cm_wh6{width:6em !important;height:6em !important}.cm_wh605{width:6.5em !important;height:6.5em !important}.cm_wh7{width:7em !important;height:7em !important}.cm_wh705{width:7.5em !important;height:7.5em !important}.cm_wh8{width:8em !important;height:8em !important}.cm_wh805{width:8.5em !important;height:8.5em !important}.cm_wh9{width:9em !important;height:9em !important}.cm_wh905{width:9.5em !important;height:9.5em !important}.cm_wh10{width:10em !important;height:10em !important}.cm_m0{margin:0 !important}.cm_m01{margin:.1em !important}.cm_m02{margin:.2em !important}.cm_m025{margin:.25em !important}.cm_m03{margin:.3em !important}.cm_m035{margin:.35em !important}.cm_m04{margin:.4em !important}.cm_m045{margin:.45em !important}.cm_m05{margin:.5em !important}.cm_m06{margin:.6em !important}.cm_m07{margin:.7em !important}.cm_m08{margin:.8em !important}.cm_m09{margin:.9em !important}.cm_m1{margin:1em !important}.cm_m105{margin:1.5em !important}.cm_m2{margin:2em !important}.cm_m205{margin:2.5em !important}.cm_m3{margin:3em !important}.cm_mtb01{margin:.1em 0 !important}.cm_mtb02{margin:.2em 0 !important}.cm_mtb03{margin:.3em 0 !important}.cm_mtb04{margin:.4em 0 !important}.cm_mtb05{margin:.5em 0 !important}.cm_mtb06{margin:.6em 0 !important}.cm_mtb07{margin:.7em 0 !important}.cm_mtb08{margin:.8em 0 !important}.cm_mtb09{margin:.9em 0 !important}.cm_mtb1{margin:1em 0 !important}.cm_mtb105{margin:1.5em 0 !important}.cm_mtb2{margin:2em 0 !important}.cm_mtb205{margin:2.5em 0 !important}.cm_mtb3{margin:3em 0 !important}.cm_mtb205{margin:2.5em 0 !important}.cm_mtb4{margin:4em 0 !important}.cm_mtb405{margin:4.5em 0 !important}.cm_mtb5{margin:5em 0 !important}.cm_mtb505{margin:5.5em 0 !important}.cm_mtb6{margin:6em 0 !important}.cm_mrl01{margin:0 .1em !important}.cm_mrl02{margin:0 .2em !important}.cm_mrl03{margin:0 .3em !important}.cm_mrl04{margin:0 .4em !important}.cm_mrl05{margin:0 .5em !important}.cm_mrl06{margin:0 .6em !important}.cm_mrl07{margin:0 .7em !important}.cm_mrl08{margin:0 .8em !important}.cm_mrl09{margin:0 .9em !important}.cm_mrl1{margin:0 1em !important}.cm_mrl105{margin:0 1.5em !important}.cm_mrl2{margin:0 2em !important}.cm_mrl205{margin:0 2.5em !important}.cm_mrl3{margin:0 3em !important}.cm_mrl305{margin:0 3.5em !important}.cm_mrl4{margin:0 4em !important}.cm_mrl405{margin:0 4.5em !important}.cm_mrl5{margin:0 5em !important}.cm_mrl505{margin:0 5.5em !important}.cm_mrl6{margin:0 6em !important}.cm_mt2f{margin-top:-2em !important}.cm_mt105f{margin-top:-1.5em !important}.cm_mt1f{margin-top:-1em !important}.cm_mt05f{margin-top:-0.5em !important}.cm_mt01{margin-top:.1em !important}.cm_mt02{margin-top:.2em !important}.cm_mt03{margin-top:.3em !important}.cm_mt04{margin-top:.4em !important}.cm_mt05{margin-top:.5em !important}.cm_mt06{margin-top:.6em !important}.cm_mt07{margin-top:.7em !important}.cm_mt08{margin-top:.8em !important}.cm_mt09{margin-top:.9em !important}.cm_mt1{margin-top:1em !important}.cm_mt101{margin-top:1.1em !important}.cm_mt102{margin-top:1.2em !important}.cm_mt103{margin-top:1.3em !important}.cm_mt104{margin-top:1.4em !important}.cm_mt105{margin-top:1.5em !important}.cm_mt2{margin-top:2em !important}.cm_mt205{margin-top:2.5em !important}.cm_mt3{margin-top:3em !important}.cm_mt305{margin-top:3.5em !important}.cm_mt4{margin-top:4em !important}.cm_mt405{margin-top:4.5em !important}.cm_mt5{margin-top:5em !important}.cm_mt6{margin-top:6em !important}.cm_mt7{margin-top:7em !important}.cm_mt8{margin-top:8em !important}.cm_mt9{margin-top:9em !important}.cm_mb2f{margin-bottom:-2em !important}.cm_mb105f{margin-bottom:-1.5em !important}.cm_mb1f{margin-bottom:-1em !important}.cm_mb05f{margin-bottom:-0.5em !important}.cm_mb01{margin-bottom:.1em !important}.cm_mb02{margin-bottom:.2em !important}.cm_mb03{margin-bottom:.3em !important}.cm_mb04{margin-bottom:.4em !important}.cm_mb05{margin-bottom:.5em !important}.cm_mb06{margin-bottom:.6em !important}.cm_mb07{margin-bottom:.7em !important}.cm_mb08{margin-bottom:.8em !important}.cm_mb09{margin-bottom:.9em !important}.cm_mb1{margin-bottom:1em !important}.cm_mb105{margin-bottom:1.5em !important}.cm_mb2{margin-bottom:2em !important}.cm_mb205{margin-bottom:2.5em !important}.cm_mb3{margin-bottom:3em !important}.cm_mb305{margin-bottom:3.5em !important}.cm_mb4{margin-bottom:4em !important}.cm_mb405{margin-bottom:4.5em !important}.cm_mb5{margin-bottom:5em !important}.cm_mb6{margin-bottom:6em !important}.cm_mb7{margin-bottom:7em !important}.cm_mb8{margin-bottom:8em !important}.cm_mb9{margin-bottom:9em !important}.cm_mr01{margin-right:-2em !important}.cm_mr01{margin-right:-1.5em !important}.cm_mr01{margin-right:-1em !important}.cm_mr05f{margin-right:-0.5em !important}.cm_mr01{margin-right:.1em !important}.cm_mr02{margin-right:.2em !important}.cm_mr03{margin-right:.3em !important}.cm_mr04{margin-right:.4em !important}.cm_mr05{margin-right:.5em !important}.cm_mr06{margin-right:.6em !important}.cm_mr07{margin-right:.7em !important}.cm_mr08{margin-right:.8em !important}.cm_mr09{margin-right:.9em !important}.cm_mr1{margin-right:1em !important}.cm_mr105{margin-right:1.5em !important}.cm_mr2{margin-right:2em !important}.cm_mr205{margin-right:2.5em !important}.cm_mr3{margin-right:3em !important}.cm_mr305{margin-right:3.5em !important}.cm_mr4{margin-right:4em !important}.cm_mr405{margin-right:4.5em !important}.cm_mr5{margin-right:5em !important}.cm_mr6{margin-right:6em !important}.cm_mr7{margin-right:7em !important}.cm_mr9{margin-right:9em !important}.cm_mr8{margin-right:8em !important}.cm_mr9{margin-right:9em !important}.cm_ml2f{margin-left:-2em !important}.cm_ml105f{margin-left:-1.5em !important}.cm_ml1f{margin-left:-1em !important}.cm_ml05f{margin-left:-0.5em !important}.cm_ml01{margin-left:.1em !important}.cm_ml02{margin-left:.2em !important}.cm_ml03{margin-left:.3em !important}.cm_ml04{margin-left:.4em !important}.cm_ml05{margin-left:.5em !important}.cm_ml06{margin-left:.6em !important}.cm_ml07{margin-left:.7em !important}.cm_ml08{margin-left:.8em !important}.cm_ml09{margin-left:.9em !important}.cm_ml1{margin-left:1em !important}.cm_ml105{margin-left:1.5em !important}.cm_ml2{margin-left:2em !important}.cm_ml205{margin-left:2.5em !important}.cm_ml3{margin-left:3em !important}.cm_ml305{margin-left:3.5em !important}.cm_ml4{margin-left:4em !important}.cm_ml405{margin-left:4.5em !important}.cm_ml5{margin-left:5em !important}.cm_ml6{margin-left:6em !important}.cm_ml7{margin-left:7em !important}.cm_ml9{margin-left:9em !important}.cm_ml8{margin-left:8em !important}.cm_ml9{margin-left:9em !important}.cm_pd0{padding:0 !important}.cm_pd01{padding:.1em !important}.cm_pd02{padding:.2em !important}.cm_pd025{padding:.25em !important}.cm_pd05{padding:.5em !important}.cm_pd075{padding:.75em !important}.cm_pd1{padding:1em !important}.cm_pd105{padding:1.5em !important}.cm_pd2{padding:2em !important}.cm_pd205{padding:2.5em !important}.cm_pd3{padding:3em !important}.cm_ptb01{padding:.1em 0 !important}.cm_ptb02{padding:.2em 0 !important}.cm_ptb025{padding:.25em 0 !important}.cm_ptb05{padding:.5em 0 !important}.cm_ptb075{padding:.75em 0 !important}.cm_ptb1{padding:1em 0 !important}.cm_ptb105{padding:1.5em 0 !important}.cm_ptb2{padding:2em 0 !important}.cm_ptb205{padding:2.5em 0 !important}.cm_ptb3{padding:3em 0 !important}.cm_ptb305{padding:3.5em 0 !important}.cm_ptb4{padding:4em 0 !important}.cm_ptb405{padding:4.5em 0 !important}.cm_ptb5{padding:5em 0 !important}.cm_ptb505{padding:5.5em 0 !important}.cm_prl01{padding:0 .1em !important}.cm_prl02{padding:0 .2em !important}.cm_prl025{padding:0 .25em !important}.cm_prl05{padding:0 .5em !important}.cm_prl075{padding:0 .75em !important}.cm_prl1{padding:0 1em !important}.cm_prl105{padding:0 1.5em !important}.cm_prl2{padding:0 2em !important}.cm_prl205{padding:0 2.5em !important}.cm_prl3{padding:0 3em !important}.cm_prl305{padding:0 3.5em !important}.cm_prl4{padding:0 4em !important}.cm_prl405{padding:0 4.5em !important}.cm_prl5{padding:0 5em !important}.cm_prl505{padding:0 5.5em !important}.cm_prl6{padding:0 6em !important}.cm_prl605{padding:0 6.5em !important}.cm_prl7{padding:0 7em !important}.cm_pt2f{padding-top:-2em !important}.cm_pt105f{padding-top:-1.5em !important}.cm_pt1f{padding-top:-1em !important}.cm_pt05f{padding-top:-0.5em !important}.cm_pt0{padding-top:0 !important}.cm_pt01{padding-top:.1em !important}.cm_pt02{padding-top:.2em !important}.cm_pt025{padding-top:.25em !important}.cm_pt05{padding-top:.5em !important}.cm_pt075{padding-top:.75em !important}.cm_pt1{padding-top:1em !important}.cm_pt2{padding-top:2em !important}.cm_pt3{padding-top:3em !important}.cm_pt4{padding-top:4em !important}.cm_pt5{padding-top:5em !important}.cm_pb2f{padding-bottom:-2em !important}.cm_pb105f{padding-bottom:-1.5em !important}.cm_pb1f{padding-bottom:-1em !important}.cm_pb05f{padding-bottom:-0.5em !important}.cm_pb0{padding-bottom:0 !important}.cm_pb01{padding-bottom:.1em !important}.cm_pb02{padding-bottom:.2em !important}.cm_pb025{padding-bottom:.25em !important}.cm_pb05{padding-bottom:.5em !important}.cm_pb075{padding-bottom:.75em !important}.cm_pb1{padding-bottom:1em !important}.cm_pb2{padding-bottom:2em !important}.cm_pb3{padding-bottom:3em !important}.cm_pb4{padding-bottom:4em !important}.cm_pb5{padding-bottom:5em !important}.cm_pl2f{padding-left:-2em !important}.cm_pl105f{padding-left:-1.5em !important}.cm_pl1f{padding-left:-1em !important}.cm_pl05f{padding-left:-0.5em !important}.cm_pl0{padding-left:0 !important}.cm_pl01{padding-left:.1em !important}.cm_pl02{padding-left:.2em !important}.cm_pl025{padding-left:.25em !important}.cm_pl05{padding-left:.5em !important}.cm_pl075{padding-left:.75em !important}.cm_pl1{padding-left:1em !important}.cm_pl105{padding-left:1.5em !important}.cm_pl2{padding-left:2em !important}.cm_pl205{padding-left:2.5em !important}.cm_pl3{padding-left:3em !important}.cm_pl305{padding-left:3.5em !important}.cm_pl4{padding-left:4em !important}.cm_pl405{padding-left:4.5em !important}.cm_pl5{padding-left:5em !important}.cm_pl505{padding-left:5.5em !important}.cm_pl6{padding-left:6em !important}.cm_pl605{padding-left:6.5em !important}.cm_pl7{padding-left:7em !important}.cm_pl705{padding-left:7.5em !important}.cm_pl8{padding-left:8em !important}.cm_pl805{padding-left:8.5em !important}.cm_pl9{padding-left:9em !important}.cm_pl905{padding-left:9.5em !important}.cm_pl10{padding-left:10em !important}.cm_pr2f{padding-right:-2em !important}.cm_pr105f{padding-right:-1.5em !important}.cm_pr1f{padding-right:-1em !important}.cm_pr05f{padding-right:-0.5em !important}.cm_pr0{padding-right:0 !important}.cm_pr01{padding-right:.1em !important}.cm_pr02{padding-right:.2em !important}.cm_pr025{padding-right:.25em !important}.cm_pr05{padding-right:.5em !important}.cm_pr075{padding-right:.75em !important}.cm_pr1{padding-right:1em !important}.cm_pr105{padding-right:1.5em !important}.cm_pr2{padding-right:2em !important}.cm_pr205{padding-right:2.5em !important}.cm_pr3{padding-right:3em !important}.cm_pr305{padding-right:3.5em !important}.cm_pr4{padding-right:4em !important}.cm_pr405{padding-right:4.5em !important}.cm_pr5{padding-right:5em !important}.cm_pr505{padding-right:5.5em !important}.cm_pr6{padding-right:6em !important}.cm_pr605{padding-right:6.5em !important}.cm_pr7{padding-right:7em !important}.cm_pr705{padding-right:7.5em !important}.cm_pr8{padding-right:8em !important}.cm_pr805{padding-right:8.5em !important}.cm_pr9{padding-right:9em !important}.cm_pr905{padding-right:9.5em !important}.cm_pr10{padding-right:10em !important}.cm_bd0{border:0 !important}.cm_b1c1d{border:1px dashed #fd1414 !important}.cm_b1c2d{border:1px dashed #de4a4a !important}.cm_b1c3d{border:1px dashed #696867 !important}.cm_b1c4d{border:1px dashed #9b9b9b !important}.cm_b1c5d{border:1px dashed #999999 !important}.cm_b1c6d{border:1px dashed #f6f6f6 !important}.cm_b1c7d{border:1px dashed #333333 !important}.cm_b1c0d{border:1px dashed #000000 !important}.cm_b1ccd{border:1px dashed #cccccc !important}.cm_b1cdd{border:1px dashed #dddddd !important}.cm_b1ced{border:1px dashed #eeeeee !important}.cm_b1cfd{border:1px dashed #ffffff !important}.cm_b1c1{border:1px solid #fd1414 !important}.cm_b1c2{border:1px solid #de4a4a !important}.cm_b1c3{border:1px solid #696867 !important}.cm_b1c4{border:1px solid #9b9b9b !important}.cm_b1c5{border:1px solid #999999 !important}.cm_b1c6{border:1px solid #f6f6f6 !important}.cm_b1c7{border:1px solid #333333 !important}.cm_b1c0{border:1px solid #000000 !important}.cm_b1cc{border:1px solid #cccccc !important}.cm_b1cd{border:1px solid #dddddd !important}.cm_b1ce{border:1px solid #eeeeee !important}.cm_b1cf{border:1px solid #ffffff !important}.cm_b2c1{border:2px solid #fd1414 !important}.cm_b2c2{border:2px solid #de4a4a !important}.cm_b2c3{border:2px solid #696867 !important}.cm_b2c4{border:2px solid #9b9b9b !important}.cm_b2c5{border:2px solid #999999 !important}.cm_b2c6{border:2px solid #f6f6f6 !important}.cm_b2c7{border:2px solid #333333 !important}.cm_b2c0{border:2px solid #000000 !important}.cm_b2cc{border:2px solid #cccccc !important}.cm_b2cd{border:2px solid #dddddd !important}.cm_b2ce{border:2px solid #eeeeee !important}.cm_b2cf{border:2px solid #ffffff !important}.cm_b3c1{border:3px solid #fd1414 !important}.cm_b3c2{border:3px solid #de4a4a !important}.cm_b3c3{border:3px solid #696867 !important}.cm_b3c4{border:3px solid #9b9b9b !important}.cm_b3c5{border:3px solid #999999 !important}.cm_b3c6{border:3px solid #f6f6f6 !important}.cm_b3c7{border:3px solid #333333 !important}.cm_b3c0{border:3px solid #000000 !important}.cm_b3cc{border:3px solid #cccccc !important}.cm_b3cd{border:3px solid #dddddd !important}.cm_b3ce{border:3px solid #eeeeee !important}.cm_b3cf{border:3px solid #ffffff !important}.cm_bt1c1d{border-top:1px dashed #fd1414 !important}.cm_bt1c2d{border-top:1px dashed #de4a4a !important}.cm_bt1c3d{border-top:1px dashed #696867 !important}.cm_bt1c4d{border-top:1px dashed #9b9b9b !important}.cm_bt1c5d{border-top:1px dashed #999999 !important}.cm_bt1c6d{border-top:1px dashed #f6f6f6 !important}.cm_bt1c7d{border-top:1px dashed #333333 !important}.cm_bt1c0d{border-top:1px dashed #000000 !important}.cm_bt1ccd{border-top:1px dashed #cccccc !important}.cm_bt1cdd{border-top:1px dashed #dddddd !important}.cm_bt1ced{border-top:1px dashed #eeeeee !important}.cm_bt1cfd{border-top:1px dashed #ffffff !important}.cm_bt1c1{border-top:1px solid #fd1414 !important}.cm_bt1c2{border-top:1px solid #de4a4a !important}.cm_bt1c3{border-top:1px solid #696867 !important}.cm_bt1c4{border-top:1px solid #9b9b9b !important}.cm_bt1c5{border-top:1px solid #999999 !important}.cm_bt1c6{border-top:1px solid #f6f6f6 !important}.cm_bt1c7{border-top:1px solid #333333 !important}.cm_bt1c0{border-top:1px solid #000000 !important}.cm_bt1cc{border-top:1px solid #cccccc !important}.cm_bt1cd{border-top:1px solid #dddddd !important}.cm_bt1ce{border-top:1px solid #eeeeee !important}.cm_bt1cf{border-top:1px solid #ffffff !important}.cm_bt2c1{border-top:2px solid #fd1414 !important}.cm_bt2c2{border-top:2px solid #de4a4a !important}.cm_bt2c3{border-top:2px solid #696867 !important}.cm_bt2c4{border-top:2px solid #9b9b9b !important}.cm_bt2c5{border-top:2px solid #999999 !important}.cm_bt2c6{border-top:2px solid #f6f6f6 !important}.cm_bt2c7{border-top:2px solid #333333 !important}.cm_bt2c0{border-top:2px solid #000000 !important}.cm_bt2cc{border-top:2px solid #cccccc !important}.cm_bt2cd{border-top:2px solid #dddddd !important}.cm_bt2ce{border-top:2px solid #eeeeee !important}.cm_bt2cf{border-top:2px solid #ffffff !important}.cm_bt3c1{border-top:3px solid #fd1414 !important}.cm_bt3c2{border-top:3px solid #de4a4a !important}.cm_bt3c3{border-top:3px solid #696867 !important}.cm_bt3c4{border-top:3px solid #9b9b9b !important}.cm_bt3c5{border-top:3px solid #999999 !important}.cm_bt3c6{border-top:3px solid #f6f6f6 !important}.cm_bt3c7{border-top:3px solid #333333 !important}.cm_bt3c0{border-top:3px solid #000000 !important}.cm_bt3cc{border-top:3px solid #cccccc !important}.cm_bt3cd{border-top:3px solid #dddddd !important}.cm_bt3ce{border-top:3px solid #eeeeee !important}.cm_bt3cf{border-top:3px solid #ffffff !important}.cm_bb1c1d{border-bottom:1px dashed #fd1414 !important}.cm_bb1c2d{border-bottom:1px dashed #de4a4a !important}.cm_bb1c3d{border-bottom:1px dashed #696867 !important}.cm_bb1c4d{border-bottom:1px dashed #9b9b9b !important}.cm_bb1c5d{border-bottom:1px dashed #999999 !important}.cm_bb1c6d{border-bottom:1px dashed #f6f6f6 !important}.cm_bb1c7d{border-bottom:1px dashed #333333 !important}.cm_bb1c0d{border-bottom:1px dashed #000000 !important}.cm_bb1ccd{border-bottom:1px dashed #cccccc !important}.cm_bb1cdd{border-bottom:1px dashed #dddddd !important}.cm_bb1ced{border-bottom:1px dashed #eeeeee !important}.cm_bb1cfd{border-bottom:1px dashed #ffffff !important}.cm_bb1c1{border-bottom:1px solid #fd1414 !important}.cm_bb1c2{border-bottom:1px solid #de4a4a !important}.cm_bb1c3{border-bottom:1px solid #696867 !important}.cm_bb1c4{border-bottom:1px solid #9b9b9b !important}.cm_bb1c5{border-bottom:1px solid #999999 !important}.cm_bb1c6{border-bottom:1px solid #f6f6f6 !important}.cm_bb1c7{border-bottom:1px solid #333333 !important}.cm_bb1c0{border-bottom:1px solid #000000 !important}.cm_bb1cc{border-bottom:1px solid #cccccc !important}.cm_bb1cd{border-bottom:1px solid #dddddd !important}.cm_bb1ce{border-bottom:1px solid #eeeeee !important}.cm_bb1cf{border-bottom:1px solid #ffffff !important}.cm_bb2c1{border-bottom:2px solid #fd1414 !important}.cm_bb2c2{border-bottom:2px solid #de4a4a !important}.cm_bb2c3{border-bottom:2px solid #696867 !important}.cm_bb2c4{border-bottom:2px solid #9b9b9b !important}.cm_bb2c5{border-bottom:2px solid #999999 !important}.cm_bb2c6{border-bottom:2px solid #f6f6f6 !important}.cm_bb2c7{border-bottom:2px solid #333333 !important}.cm_bb2c0{border-bottom:2px solid #000000 !important}.cm_bb2cc{border-bottom:2px solid #cccccc !important}.cm_bb2cd{border-bottom:2px solid #dddddd !important}.cm_bb2ce{border-bottom:2px solid #eeeeee !important}.cm_bb2cf{border-bottom:2px solid #ffffff !important}.cm_bb3c1{border-bottom:3px solid #fd1414 !important}.cm_bb3c2{border-bottom:3px solid #de4a4a !important}.cm_bb3c3{border-bottom:3px solid #696867 !important}.cm_bb3c4{border-bottom:3px solid #9b9b9b !important}.cm_bb3c5{border-bottom:3px solid #999999 !important}.cm_bb3c6{border-bottom:3px solid #f6f6f6 !important}.cm_bb3c7{border-bottom:3px solid #333333 !important}.cm_bb3c0{border-bottom:3px solid #000000 !important}.cm_bb3cc{border-bottom:3px solid #cccccc !important}.cm_bb3cd{border-bottom:3px solid #dddddd !important}.cm_bb3ce{border-bottom:3px solid #eeeeee !important}.cm_bb3cf{border-bottom:3px solid #ffffff !important}.cm_bl1c1d{border-left:1px dashed #fd1414 !important}.cm_bl1c2d{border-left:1px dashed #de4a4a !important}.cm_bl1c3d{border-left:1px dashed #696867 !important}.cm_bl1c4d{border-left:1px dashed #9b9b9b !important}.cm_bl1c5d{border-left:1px dashed #999999 !important}.cm_bl1c6d{border-left:1px dashed #f6f6f6 !important}.cm_bl1c7d{border-left:1px dashed #333333 !important}.cm_bl1c0d{border-left:1px dashed #000000 !important}.cm_bl1ccd{border-left:1px dashed #cccccc !important}.cm_bl1cdd{border-left:1px dashed #dddddd !important}.cm_bl1ced{border-left:1px dashed #eeeeee !important}.cm_bl1cfd{border-left:1px dashed #ffffff !important}.cm_bl1c1{border-left:1px solid #fd1414 !important}.cm_bl1c2{border-left:1px solid #de4a4a !important}.cm_bl1c3{border-left:1px solid #696867 !important}.cm_bl1c4{border-left:1px solid #9b9b9b !important}.cm_bl1c5{border-left:1px solid #999999 !important}.cm_bl1c6{border-left:1px solid #f6f6f6 !important}.cm_bl1c7{border-left:1px solid #333333 !important}.cm_bl1c0{border-left:1px solid #000000 !important}.cm_bl1cc{border-left:1px solid #cccccc !important}.cm_bl1cd{border-left:1px solid #dddddd !important}.cm_bl1ce{border-left:1px solid #eeeeee !important}.cm_bl1cf{border-left:1px solid #ffffff !important}.cm_bl2c1{border-left:2px solid #fd1414 !important}.cm_bl2c2{border-left:2px solid #de4a4a !important}.cm_bl2c3{border-left:2px solid #696867 !important}.cm_bl2c4{border-left:2px solid #9b9b9b !important}.cm_bl2c5{border-left:2px solid #999999 !important}.cm_bl2c6{border-left:2px solid #f6f6f6 !important}.cm_bl2c7{border-left:2px solid #333333 !important}.cm_bl2c0{border-left:2px solid #000000 !important}.cm_bl2cc{border-left:2px solid #cccccc !important}.cm_bl2cd{border-left:2px solid #dddddd !important}.cm_bl2ce{border-left:2px solid #eeeeee !important}.cm_bl2cf{border-left:2px solid #ffffff !important}.cm_bl3c1{border-left:3px solid #fd1414 !important}.cm_bl3c2{border-left:3px solid #de4a4a !important}.cm_bl3c3{border-left:3px solid #696867 !important}.cm_bl3c4{border-left:3px solid #9b9b9b !important}.cm_bl3c5{border-left:3px solid #999999 !important}.cm_bl3c6{border-left:3px solid #f6f6f6 !important}.cm_bl3c7{border-left:3px solid #333333 !important}.cm_bl3c0{border-left:3px solid #000000 !important}.cm_bl3cc{border-left:3px solid #cccccc !important}.cm_bl3cd{border-left:3px solid #dddddd !important}.cm_bl3ce{border-left:3px solid #eeeeee !important}.cm_bl3cf{border-left:3px solid #ffffff !important}.cm_br1c1d{border-right:1px dashed #fd1414 !important}.cm_br1c2d{border-right:1px dashed #de4a4a !important}.cm_br1c3d{border-right:1px dashed #696867 !important}.cm_br1c4d{border-right:1px dashed #9b9b9b !important}.cm_br1c5d{border-right:1px dashed #999999 !important}.cm_br1c6d{border-right:1px dashed #f6f6f6 !important}.cm_br1c7d{border-right:1px dashed #333333 !important}.cm_br1c0d{border-right:1px dashed #000000 !important}.cm_br1ccd{border-right:1px dashed #cccccc !important}.cm_br1cdd{border-right:1px dashed #dddddd !important}.cm_br1ced{border-right:1px dashed #eeeeee !important}.cm_br1cfd{border-right:1px dashed #ffffff !important}.cm_br1c1{border-right:1px solid #fd1414 !important}.cm_br1c2{border-right:1px solid #de4a4a !important}.cm_br1c3{border-right:1px solid #696867 !important}.cm_br1c4{border-right:1px solid #9b9b9b !important}.cm_br1c5{border-right:1px solid #999999 !important}.cm_br1c6{border-right:1px solid #f6f6f6 !important}.cm_br1c7{border-right:1px solid #333333 !important}.cm_br1c0{border-right:1px solid #000000 !important}.cm_br1cc{border-right:1px solid #cccccc !important}.cm_br1cd{border-right:1px solid #dddddd !important}.cm_br1ce{border-right:1px solid #eeeeee !important}.cm_br1cf{border-right:1px solid #ffffff !important}.cm_br2c1{border-right:2px solid #fd1414 !important}.cm_br2c2{border-right:2px solid #de4a4a !important}.cm_br2c3{border-right:2px solid #696867 !important}.cm_br2c4{border-right:2px solid #9b9b9b !important}.cm_br2c5{border-right:2px solid #999999 !important}.cm_br2c6{border-right:2px solid #f6f6f6 !important}.cm_br2c7{border-right:2px solid #333333 !important}.cm_br2c0{border-right:2px solid #000000 !important}.cm_br2cc{border-right:2px solid #cccccc !important}.cm_br2cd{border-right:2px solid #dddddd !important}.cm_br2ce{border-right:2px solid #eeeeee !important}.cm_br2cf{border-right:2px solid #ffffff !important}.cm_br3c1{border-right:3px solid #fd1414 !important}.cm_br3c2{border-right:3px solid #de4a4a !important}.cm_br3c3{border-right:3px solid #696867 !important}.cm_br3c4{border-right:3px solid #9b9b9b !important}.cm_br3c5{border-right:3px solid #999999 !important}.cm_br3c6{border-right:3px solid #f6f6f6 !important}.cm_br3c7{border-right:3px solid #333333 !important}.cm_br3c0{border-right:3px solid #000000 !important}.cm_br3cc{border-right:3px solid #cccccc !important}.cm_br3cd{border-right:3px solid #dddddd !important}.cm_br3ce{border-right:3px solid #eeeeee !important}.cm_br3cf{border-right:3px solid #ffffff !important}.cm_br01{-webkit-border-radius:.1em;-moz-border-radius:.1em;-ms-border-radius:.1em;border-radius:.1em}.cm_br02{-webkit-border-radius:.2em;-moz-border-radius:.2em;-ms-border-radius:.2em;border-radius:.2em}.cm_br025{-webkit-border-radius:.25em;-moz-border-radius:.25em;-ms-border-radius:.25em;border-radius:.25em}.cm_br03{-webkit-border-radius:.3em;-moz-border-radius:.3em;-ms-border-radius:.3em;border-radius:.3em}.cm_br04{-webkit-border-radius:.4em;-moz-border-radius:.4em;-ms-border-radius:.4em;border-radius:.4em}.cm_br05{-webkit-border-radius:.5em;-moz-border-radius:.5em;-ms-border-radius:.5em;border-radius:.5em}.cm_br06{-webkit-border-radius:.6em;-moz-border-radius:.6em;-ms-border-radius:.6em;border-radius:.6em}.cm_br07{-webkit-border-radius:.7em;-moz-border-radius:.7em;-ms-border-radius:.7em;border-radius:.7em}.cm_br075{-webkit-border-radius:.75em;-moz-border-radius:.75em;-ms-border-radius:.75em;border-radius:.75em}.cm_br1{-webkit-border-radius:1em;-moz-border-radius:1em;-ms-border-radius:1em;border-radius:1em}.cm_br105{-webkit-border-radius:1.5em;-moz-border-radius:1.5em;-ms-border-radius:1.5em;border-radius:1.5em}.cm_br2{-webkit-border-radius:2em;-moz-border-radius:2em;-ms-border-radius:2em;border-radius:2em}.cm_br205{-webkit-border-radius:2.5em;-moz-border-radius:2.5em;-ms-border-radius:2.5em;border-radius:2.5em}.cm_br3{-webkit-border-radius:3em;-moz-border-radius:3em;-ms-border-radius:3em;border-radius:3em}.cm_br305{-webkit-border-radius:3.5em;-moz-border-radius:3.5em;-ms-border-radius:3.5em;border-radius:3.5em}.cm_br4{-webkit-border-radius:4em;-moz-border-radius:4em;-ms-border-radius:4em;border-radius:4em}.cm_br405{-webkit-border-radius:4.5em;-moz-border-radius:4.5em;-ms-border-radius:4.5em;border-radius:4.5em}.cm_br5{-webkit-border-radius:5em;-moz-border-radius:5em;-ms-border-radius:5em;border-radius:5em}.cm_brtr01{-webkit-border-top-right-radius:.1em;-moz-border-top-right-radius:.1em;-ms-border-top-right-radius:.1em;border-top-right-radius:.1em}.cm_brtr02{-webkit-border-top-right-radius:.2em;-moz-border-top-right-radius:.2em;-ms-border-top-right-radius:.2em;border-top-right-radius:.2em}.cm_brtr025{-webkit-border-top-right-radius:.25em;-moz-border-top-right-radius:.25em;-ms-border-top-right-radius:.25em;border-top-right-radius:.25em}.cm_brtr05{-webkit-border-top-right-radius:.5em;-moz-border-top-right-radius:.5em;-ms-border-top-right-radius:.5em;border-top-right-radius:.5em}.cm_brtr1{-webkit-border-top-right-radius:1em;-moz-border-top-right-radius:1em;-ms-border-top-right-radius:1em;border-top-right-radius:1em}.cm_brtr105{-webkit-border-top-right-radius:1.5em;-moz-border-top-right-radius:1.5em;-ms-border-top-right-radius:1.5em;border-top-right-radius:1.5em}.cm_brtr2{-webkit-border-top-right-radius:2em;-moz-border-top-right-radius:2em;-ms-border-top-right-radius:2em;border-top-right-radius:2em}.cm_brtl01{-webkit-border-top-left-radius:.1em;-moz-border-top-left-radius:.1em;-ms-border-top-left-radius:.1em;border-top-left-radius:.1em}.cm_brtl02{-webkit-border-top-left-radius:.2em;-moz-border-top-left-radius:.2em;-ms-border-top-left-radius:.2em;border-top-left-radius:.2em}.cm_brtl025{-webkit-border-top-left-radius:.25em;-moz-border-top-left-radius:.25em;-ms-border-top-left-radius:.25em;border-top-left-radius:.25em}.cm_brtl05{-webkit-border-top-left-radius:.5em;-moz-border-top-left-radius:.5em;-ms-border-top-left-radius:.5em;border-top-left-radius:.5em}.cm_brtl1{-webkit-border-top-left-radius:1em;-moz-border-top-left-radius:1em;-ms-border-top-left-radius:1em;border-top-left-radius:1em}.cm_brtl105{-webkit-border-top-left-radius:1.5em;-moz-border-top-left-radius:1.5em;-ms-border-top-left-radius:1.5em;border-top-left-radius:1.5em}.cm_brtl2{-webkit-border-top-left-radius:2em;-moz-border-top-left-radius:2em;-ms-border-top-left-radius:2em;border-top-left-radius:2em}.cm_brbr01{-webkit-border-bottom-right-radius:.1em;-moz-border-bottom-right-radius:.1em;-ms-border-bottom-right-radius:.1em;border-bottom-right-radius:.1em}.cm_brbr02{-webkit-border-bottom-right-radius:.2em;-moz-border-bottom-right-radius:.2em;-ms-border-bottom-right-radius:.2em;border-bottom-right-radius:.2em}.cm_brbr025{-webkit-border-bottom-right-radius:.25em;-moz-border-bottom-right-radius:.25em;-ms-border-bottom-right-radius:.25em;border-bottom-right-radius:.25em}.cm_brbr05{-webkit-border-bottom-right-radius:.5em;-moz-border-bottom-right-radius:.5em;-ms-border-bottom-right-radius:.5em;border-bottom-right-radius:.5em}.cm_brbr1{-webkit-border-bottom-right-radius:1em;-moz-border-bottom-right-radius:1em;-ms-border-bottom-right-radius:1em;border-bottom-right-radius:1em}.cm_brbr105{-webkit-border-bottom-right-radius:1.5em;-moz-border-bottom-right-radius:1.5em;-ms-border-bottom-right-radius:1.5em;border-bottom-right-radius:1.5em}.cm_brbr2{-webkit-border-bottom-right-radius:2em;-moz-border-bottom-right-radius:2em;-ms-border-bottom-right-radius:2em;border-bottom-right-radius:2em}.cm_brbl01{-webkit-border-bottom-left-radius:.1em;-moz-border-bottom-left-radius:.1em;-ms-border-bottom-left-radius:.1em;border-bottom-left-radius:.1em}.cm_brbl02{-webkit-border-bottom-left-radius:.2em;-moz-border-bottom-left-radius:.2em;-ms-border-bottom-left-radius:.2em;border-bottom-left-radius:.2em}.cm_brbl025{-webkit-border-bottom-left-radius:.25em;-moz-border-bottom-left-radius:.25em;-ms-border-bottom-left-radius:.25em;border-bottom-left-radius:.25em}.cm_brbl05{-webkit-border-bottom-left-radius:.5em;-moz-border-bottom-left-radius:.5em;-ms-border-bottom-left-radius:.5em;border-bottom-left-radius:.5em}.cm_brbl1{-webkit-border-bottom-left-radius:1em;-moz-border-bottom-left-radius:1em;-ms-border-bottom-left-radius:1em;border-bottom-left-radius:1em}.cm_brbl105{-webkit-border-bottom-left-radius:1.5em;-moz-border-bottom-left-radius:1.5em;-ms-border-bottom-left-radius:1.5em;border-bottom-left-radius:1.5em}.cm_brbl2{-webkit-border-bottom-left-radius:2em;-moz-border-bottom-left-radius:2em;-ms-border-bottom-left-radius:2em;border-bottom-left-radius:2em}.cm_bs01c1{-webkit-box-shadow:.1em .1em .1em #fd1414;-moz-box-shadow:.1em .1em .1em #fd1414;-ms-box-shadow:.1em .1em .1em #fd1414;box-shadow:.1em .1em .1em #fd1414}.cm_bs01c2{-webkit-box-shadow:.1em .1em .1em #de4a4a;-moz-box-shadow:.1em .1em .1em #de4a4a;-ms-box-shadow:.1em .1em .1em #de4a4a;box-shadow:.1em .1em .1em #de4a4a}.cm_bs01c3{-webkit-box-shadow:.1em .1em .1em #696867;-moz-box-shadow:.1em .1em .1em #696867;-ms-box-shadow:.1em .1em .1em #696867;box-shadow:.1em .1em .1em #696867}.cm_bs01c4{-webkit-box-shadow:.1em .1em .1em #9b9b9b;-moz-box-shadow:.1em .1em .1em #9b9b9b;-ms-box-shadow:.1em .1em .1em #9b9b9b;box-shadow:.1em .1em .1em #9b9b9b}.cm_bs01c5{-webkit-box-shadow:.1em .1em .1em #999999;-moz-box-shadow:.1em .1em .1em #999999;-ms-box-shadow:.1em .1em .1em #999999;box-shadow:.1em .1em .1em #999999}.cm_bs01c6{-webkit-box-shadow:.1em .1em .1em #f6f6f6;-moz-box-shadow:.1em .1em .1em #f6f6f6;-ms-box-shadow:.1em .1em .1em #f6f6f6;box-shadow:.1em .1em .1em #f6f6f6}.cm_bs01c7{-webkit-box-shadow:.1em .1em .1em #333333;-moz-box-shadow:.1em .1em .1em #333333;-ms-box-shadow:.1em .1em .1em #333333;box-shadow:.1em .1em .1em #333333}.cm_bs01c0{-webkit-box-shadow:.1em .1em .1em #000000;-moz-box-shadow:.1em .1em .1em #000000;-ms-box-shadow:.1em .1em .1em #000000;box-shadow:.1em .1em .1em #000000}.cm_bs01cc{-webkit-box-shadow:.1em .1em .1em #cccccc;-moz-box-shadow:.1em .1em .1em #cccccc;-ms-box-shadow:.1em .1em .1em #cccccc;box-shadow:.1em .1em .1em #cccccc}.cm_bs01cd{-webkit-box-shadow:.1em .1em .1em #dddddd;-moz-box-shadow:.1em .1em .1em #dddddd;-ms-box-shadow:.1em .1em .1em #dddddd;box-shadow:.1em .1em .1em #dddddd}.cm_bs01ce{-webkit-box-shadow:.1em .1em .1em #eeeeee;-moz-box-shadow:.1em .1em .1em #eeeeee;-ms-box-shadow:.1em .1em .1em #eeeeee;box-shadow:.1em .1em .1em #eeeeee}.cm_bs01cf{-webkit-box-shadow:.1em .1em .1em #ffffff;-moz-box-shadow:.1em .1em .1em #ffffff;-ms-box-shadow:.1em .1em .1em #ffffff;box-shadow:.1em .1em .1em #ffffff}.cm_bs02c1{-webkit-box-shadow:.2em .2em .2em #fd1414;-moz-box-shadow:.2em .2em .2em #fd1414;-ms-box-shadow:.2em .2em .2em #fd1414;box-shadow:.2em .2em .2em #fd1414}.cm_bs02c2{-webkit-box-shadow:.2em .2em .2em #de4a4a;-moz-box-shadow:.2em .2em .2em #de4a4a;-ms-box-shadow:.2em .2em .2em #de4a4a;box-shadow:.2em .2em .2em #de4a4a}.cm_bs02c3{-webkit-box-shadow:.2em .2em .2em #696867;-moz-box-shadow:.2em .2em .2em #696867;-ms-box-shadow:.2em .2em .2em #696867;box-shadow:.2em .2em .2em #696867}.cm_bs02c4{-webkit-box-shadow:.2em .2em .2em #9b9b9b;-moz-box-shadow:.2em .2em .2em #9b9b9b;-ms-box-shadow:.2em .2em .2em #9b9b9b;box-shadow:.2em .2em .2em #9b9b9b}.cm_bs02c5{-webkit-box-shadow:.2em .2em .2em #999999;-moz-box-shadow:.2em .2em .2em #999999;-ms-box-shadow:.2em .2em .2em #999999;box-shadow:.2em .2em .2em #999999}.cm_bs02c6{-webkit-box-shadow:.2em .2em .2em #f6f6f6;-moz-box-shadow:.2em .2em .2em #f6f6f6;-ms-box-shadow:.2em .2em .2em #f6f6f6;box-shadow:.2em .2em .2em #f6f6f6}.cm_bs02c7{-webkit-box-shadow:.2em .2em .2em #333333;-moz-box-shadow:.2em .2em .2em #333333;-ms-box-shadow:.2em .2em .2em #333333;box-shadow:.2em .2em .2em #333333}.cm_bs02c0{-webkit-box-shadow:.2em .2em .2em #000000;-moz-box-shadow:.2em .2em .2em #000000;-ms-box-shadow:.2em .2em .2em #000000;box-shadow:.2em .2em .2em #000000}.cm_bs02cc{-webkit-box-shadow:.2em .2em .2em #cccccc;-moz-box-shadow:.2em .2em .2em #cccccc;-ms-box-shadow:.2em .2em .2em #cccccc;box-shadow:.2em .2em .2em #cccccc}.cm_bs02cd{-webkit-box-shadow:.2em .2em .2em #dddddd;-moz-box-shadow:.2em .2em .2em #dddddd;-ms-box-shadow:.2em .2em .2em #dddddd;box-shadow:.2em .2em .2em #dddddd}.cm_bs02ce{-webkit-box-shadow:.2em .2em .2em #eeeeee;-moz-box-shadow:.2em .2em .2em #eeeeee;-ms-box-shadow:.2em .2em .2em #eeeeee;box-shadow:.2em .2em .2em #eeeeee}.cm_bs02cf{-webkit-box-shadow:.2em .2em .2em #ffffff;-moz-box-shadow:.2em .2em .2em #ffffff;-ms-box-shadow:.2em .2em .2em #ffffff;box-shadow:.2em .2em .2em #ffffff}.cm_bs05c1{-webkit-box-shadow:.5em .5em .5em #fd1414;-moz-box-shadow:.5em .5em .5em #fd1414;-ms-box-shadow:.5em .5em .5em #fd1414;box-shadow:.5em .5em .5em #fd1414}.cm_bs05c2{-webkit-box-shadow:.5em .5em .5em #de4a4a;-moz-box-shadow:.5em .5em .5em #de4a4a;-ms-box-shadow:.5em .5em .5em #de4a4a;box-shadow:.5em .5em .5em #de4a4a}.cm_bs05c3{-webkit-box-shadow:.5em .5em .5em #696867;-moz-box-shadow:.5em .5em .5em #696867;-ms-box-shadow:.5em .5em .5em #696867;box-shadow:.5em .5em .5em #696867}.cm_bs05c4{-webkit-box-shadow:.5em .5em .5em #9b9b9b;-moz-box-shadow:.5em .5em .5em #9b9b9b;-ms-box-shadow:.5em .5em .5em #9b9b9b;box-shadow:.5em .5em .5em #9b9b9b}.cm_bs05c5{-webkit-box-shadow:.5em .5em .5em #999999;-moz-box-shadow:.5em .5em .5em #999999;-ms-box-shadow:.5em .5em .5em #999999;box-shadow:.5em .5em .5em #999999}.cm_bs05c6{-webkit-box-shadow:.5em .5em .5em #f6f6f6;-moz-box-shadow:.5em .5em .5em #f6f6f6;-ms-box-shadow:.5em .5em .5em #f6f6f6;box-shadow:.5em .5em .5em #f6f6f6}.cm_bs05c7{-webkit-box-shadow:.5em .5em .5em #333333;-moz-box-shadow:.5em .5em .5em #333333;-ms-box-shadow:.5em .5em .5em #333333;box-shadow:.5em .5em .5em #333333}.cm_bs05c0{-webkit-box-shadow:.5em .5em .5em #000000;-moz-box-shadow:.5em .5em .5em #000000;-ms-box-shadow:.5em .5em .5em #000000;box-shadow:.5em .5em .5em #000000}.cm_bs05cc{-webkit-box-shadow:.5em .5em .5em #cccccc;-moz-box-shadow:.5em .5em .5em #cccccc;-ms-box-shadow:.5em .5em .5em #cccccc;box-shadow:.5em .5em .5em #cccccc}.cm_bs05cd{-webkit-box-shadow:.5em .5em .5em #dddddd;-moz-box-shadow:.5em .5em .5em #dddddd;-ms-box-shadow:.5em .5em .5em #dddddd;box-shadow:.5em .5em .5em #dddddd}.cm_bs05ce{-webkit-box-shadow:.5em .5em .5em #eeeeee;-moz-box-shadow:.5em .5em .5em #eeeeee;-ms-box-shadow:.5em .5em .5em #eeeeee;box-shadow:.5em .5em .5em #eeeeee}.cm_bs05cf{-webkit-box-shadow:.5em .5em .5em #ffffff;-moz-box-shadow:.5em .5em .5em #ffffff;-ms-box-shadow:.5em .5em .5em #ffffff;box-shadow:.5em .5em .5em #ffffff}.cm_bs1c1{-webkit-box-shadow:1em 1em 1em #fd1414;-moz-box-shadow:1em 1em 1em #fd1414;-ms-box-shadow:1em 1em 1em #fd1414;box-shadow:1em 1em 1em #fd1414}.cm_bs1c2{-webkit-box-shadow:1em 1em 1em #de4a4a;-moz-box-shadow:1em 1em 1em #de4a4a;-ms-box-shadow:1em 1em 1em #de4a4a;box-shadow:1em 1em 1em #de4a4a}.cm_bs1c3{-webkit-box-shadow:1em 1em 1em #696867;-moz-box-shadow:1em 1em 1em #696867;-ms-box-shadow:1em 1em 1em #696867;box-shadow:1em 1em 1em #696867}.cm_bs1c4{-webkit-box-shadow:1em 1em 1em #9b9b9b;-moz-box-shadow:1em 1em 1em #9b9b9b;-ms-box-shadow:1em 1em 1em #9b9b9b;box-shadow:1em 1em 1em #9b9b9b}.cm_bs1c5{-webkit-box-shadow:1em 1em 1em #999999;-moz-box-shadow:1em 1em 1em #999999;-ms-box-shadow:1em 1em 1em #999999;box-shadow:1em 1em 1em #999999}.cm_bs1c6{-webkit-box-shadow:1em 1em 1em #f6f6f6;-moz-box-shadow:1em 1em 1em #f6f6f6;-ms-box-shadow:1em 1em 1em #f6f6f6;box-shadow:1em 1em 1em #f6f6f6}.cm_bs1c7{-webkit-box-shadow:1em 1em 1em #333333;-moz-box-shadow:1em 1em 1em #333333;-ms-box-shadow:1em 1em 1em #333333;box-shadow:1em 1em 1em #333333}.cm_bs1c0{-webkit-box-shadow:1em 1em 1em #000000;-moz-box-shadow:1em 1em 1em #000000;-ms-box-shadow:1em 1em 1em #000000;box-shadow:1em 1em 1em #000000}.cm_bs1cc{-webkit-box-shadow:1em 1em 1em #cccccc;-moz-box-shadow:1em 1em 1em #cccccc;-ms-box-shadow:1em 1em 1em #cccccc;box-shadow:1em 1em 1em #cccccc}.cm_bs1cd{-webkit-box-shadow:1em 1em 1em #dddddd;-moz-box-shadow:1em 1em 1em #dddddd;-ms-box-shadow:1em 1em 1em #dddddd;box-shadow:1em 1em 1em #dddddd}.cm_bs1ce{-webkit-box-shadow:1em 1em 1em #eeeeee;-moz-box-shadow:1em 1em 1em #eeeeee;-ms-box-shadow:1em 1em 1em #eeeeee;box-shadow:1em 1em 1em #eeeeee}.cm_bs1cf{-webkit-box-shadow:1em 1em 1em #ffffff;-moz-box-shadow:1em 1em 1em #ffffff;-ms-box-shadow:1em 1em 1em #ffffff;box-shadow:1em 1em 1em #ffffff}.cm_oa{overflow:auto}.cm_oh{overflow:hidden}.cm_ov{overflow:visible}.cm_os{overflow:scroll}.cm_oi{overflow:inherit}.cm_oxa{overflow-x:auto}.cm_oxh{overflow-x:hidden}.cm_oxv{overflow-x:visible}.cm_oxs{overflow-x:scroll}.cm_oxi{overflow-x:inherit}.cm_oya{overflow-y:auto}.cm_oyh{overflow-y:hidden}.cm_oyv{overflow-y:visible}.cm_oys{overflow-y:scroll}.cm_oyi{overflow-y:inherit}.cm_vh{visibility:hidden}.cm_vv{visibility:visible}.cm_vi{visibility:inherit}.cm_vc{visibility:collapse}.cm_lids li{list-style:disc}.cm_lic li{list-style:circle}.cm_lis li{list-style:square}.cm_lidc li{list-style:decimal}.cm_lilr li{list-style:lower-roman}.cm_liur li{list-style:upper-roman}.cm_lila li{list-style:lower-alpha}.cm_liua li{list-style:upper-alpha}.cm_lids2>li{list-style:disc}.cm_lic2>li{list-style:circle}.cm_lis2>li{list-style:square}.cm_lidc2>li{list-style:decimal}.cm_lilr2>li{list-style:lower-roman}.cm_liur2>li{list-style:upper-roman}.cm_lila2>li{list-style:lower-alpha}.cm_liua2>li{list-style:upper-alpha}.cm_bs100{background-size:100%,100% !important}.cm_w100{width:100%}.cm_h100{height:100%}.cm_wh100{width:100%;height:100%}pre{white-space:pre-wrap;word-wrap:break-word}.cm_ts{text-overflow:ellipsis;overflow:hidden;white-space:nowrap !important;outline:0 !important}.cm_ws_nm{white-space:normal}.cm_ws_p{white-space:pre}.cm_ws_nw{white-space:nowrap}.cm_wb_n{word-break:normal}.cm_wb_b{word-break:break-all}.cm_wb_k{word-break:keep-all}.cm_ww_n{word-wrap:normal}.cm_ww_b{word-wrap:break-word}.cm_pc_1,.cm_pc_2,.cm_pc_3,.cm_pc_4,.cm_pc_5,.cm_pc_6,.cm_pc_7,.cm_pc_8,.cm_pc_9,.cm_pc_10,.cm_pc_11,.cm_pc_12,.cm_mob_1,.cm_mob_2,.cm_mob_3,.cm_mob_4,.cm_mob_5,.cm_mob_6,.cm_mob_7,.cm_mob_8,.cm_mob_9,.cm_mob_10,.cm_mob_11,.cm_mob_12,.cm_pc_1f,.cm_pc_2f,.cm_pc_3f,.cm_pc_4f,.cm_pc_5f,.cm_pc_6f,.cm_pc_7f,.cm_pc_8f,.cm_pc_9f,.cm_pc_10f,.cm_pc_11f,.cm_pc_12f,.cm_mob_1f,.cm_mob_2f,.cm_mob_3f,.cm_mob_4f,.cm_mob_5f,.cm_mob_6f,.cm_mob_7f,.cm_mob_8f,.cm_mob_9f,.cm_mob_10f,.cm_mob_11f,.cm_mob_12f{position:relative;float:left}.cm_pc_1{width:8.33333333%}.cm_pc_2{width:16.66666667%}.cm_pc_3{width:25%}.cm_pc_4{width:33.33333333%}.cm_pc_5{width:41.66666667%}.cm_pc_6{width:50%}.cm_pc_7{width:58.33333333%}.cm_pc_8{width:66.66666667%}.cm_pc_9{width:75%}.cm_pc_10{width:83.33333333%}.cm_pc_11{width:91.66666667%}.cm_pc_12{width:100%}.cm_pc_1f{width:100%}.cm_pc_2f{width:50%}.cm_pc_3f{width:33.33333333%}.cm_pc_4f{width:25%}.cm_pc_5f{width:20%}.cm_pc_6f{width:16.66666667%}.cm_pc_7f{width:14.28571429%}.cm_pc_8f{width:12.5%}.cm_pc_9f{width:11.11111111%}.cm_pc_10f{width:10%}.cm_pc_11f{width:9.09090909%}.cm_pc_12f{width:8.33333333%}.cm_main,.cm_main2{float:none;padding:0;margin:0 auto}.com_main:before,.com_main:after,.com_main2:before,.com_main2:after{display:table;content:" ";clear:both}.cm_main{width:1200px !important}.cm_main2{width:100%}.cm_pc{display:block !important}.cm_pc_i{display:inline-block !important}.cm_mob{display:none !important}.cm_mob_i{display:none !important}@media (max-width:768px){.cm_mob_1{width:8.33333333%}.cm_mob_2{width:16.66666667%}.cm_mob_3{width:25%}.cm_mob_4{width:33.33333333%}.cm_mob_5{width:41.66666667%}.cm_mob_6{width:50%}.cm_mob_7{width:58.33333333%}.cm_mob_8{width:66.66666667%}.cm_mob_9{width:75%}.cm_mob_10{width:83.33333333%}.cm_mob_11{width:91.66666667%}.cm_mob_12{width:100%}.cm_mob_1f{width:100%}.cm_mob_2f{width:50%}.cm_mob_3f{width:33.33333333%}.cm_mob_4f{width:25%}.cm_mob_5f{width:20%}.cm_mob_6f{width:16.66666667%}.cm_mob_7f{width:14.28571429%}.cm_mob_8f{width:12.5%}.cm_mob_9f{width:11.11111111%}.cm_mob_10f{width:10%}.cm_mob_11f{width:9.09090909%}.cm_mob_12f{width:8.33333333%}.cm_main{width:100% !important}.cm_main2{width:100% !important}.cm_pc{display:none !important}.cm_pc_i{display:none !important}.cm_mob{display:block !important}.cm_mob_i{display:inline-block !important}}.cm_input input{margin:0;border:0;width:100%;height:100%;-webkit-appearance:none;padding:0;background:none;text-decoration:none;display:block}input::-webkit-input-placeholder{color:#9b9b9b}input:-moz-placeholder{color:#9b9b9b}.cm_input textarea{margin:0;border:0;width:100%;height:100%;-webkit-appearance:none;padding:0;background:none;text-decoration:none;display:block}label{display:inline}.radio-1{width:193px}.cm_radio{display:none}.cm_radio+label{-webkit-appearance:none;background-color:#fafafa;border:1px solid #5f5;box-shadow:0 1px 2px rgba(0,0,0,0.05),inset 0 -15px 10px -12px rgba(0,0,0,0.05);padding:9px;border-radius:50px;display:inline-block;position:relative}.cm_radio:checked+label:after{content:'\2714';width:12px;height:12px;border-radius:50px;position:absolute;top:2px;text-shadow:0;left:2px}.cm_radio2:checked+label:after{content:' ';width:12px;height:12px;border-radius:50px;position:absolute;top:3px;background:#99a1a7;box-shadow:inset 0 0 10px rgba(0,0,0,0.3);text-shadow:0;left:3px;font-size:32px}.cm_radio:checked+label{color:#5f5;box-shadow:0 1px 2px rgba(0,0,0,0.05),inset 0 -15px 10px -12px rgba(0,0,0,0.05),inset 15px 10px -12px rgba(255,255,255,0.1),inset 0 0 10px rgba(0,0,0,0.1)}.cm_radio+label:active,.cm_radio:checked+label:active{box-shadow:0 1px 2px rgba(0,0,0,0.05),inset 0 1px 3px rgba(0,0,0,0.1)}.big_radio+label{padding:16px}.big_radio:checked+label:after{width:24px;height:24px;left:8px;top:8px}.cm_checkbox{display:none}.cm_checkbox+label{background-color:#fafafa;border:1px solid #5f5;padding:.5em;border-radius:.2em;display:inline-block;position:relative}.cm_checkbox+label:active,.cm_checkbox:checked+label:active{box-shadow:0 1px 2px rgba(0,0,0,0.05),inset 0 1px 3px rgba(0,0,0,0.1)}.cm_checkbox:checked+label{color:#5f5}.cm_checkbox:checked+label:after{content:'\2714';font-size:14px;position:absolute;top:2px;left:3px;color:#5f5}.big_checkbox+label{padding:18px}.big_checkbox:checked+label:after{font-size:28px;left:6px}.cm_page{position:absolute;top:0;bottom:0;height:100%;width:100%;right:0;left:0;z-index:5}.cm_load{position:fixed;top:0;bottom:0;width:100%;height:100%;z-index:9999999}@-webkit-keyframes cm_r2l{0%{-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@-moz-keyframes cm_r2l{0%{-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@-ms-keyframes cm_r2l{0%{-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@keyframes cm_r2l{0%{-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@-webkit-keyframes cm_l2r{0%{-webkit-transform:translate3d(-100%, 0, 0);-moz-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@-moz-keyframes cm_l2r{0%{-webkit-transform:translate3d(-100%, 0, 0);-moz-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@-ms-keyframes cm_l2r{0%{-webkit-transform:translate3d(-100%, 0, 0);-moz-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}@keyframes cm_l2r{0%{-webkit-transform:translate3d(-100%, 0, 0);-moz-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}100%{-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none}}.cm_Wr2l01{animation-name:cm_r2l;animation-duration:.1s}.cm_Wr2l02{animation-name:cm_r2l;animation-duration:.2s}.cm_Wr2l03{animation-name:cm_r2l;animation-duration:.3s}.cm_Wr2l04{animation-name:cm_r2l;animation-duration:.4s}.cm_Wr2l05{animation-name:cm_r2l;animation-duration:.5s}.cm_Wl2r01{animation-name:cm_l2r;animation-duration:.1s}.cm_Wl2r02{animation-name:cm_l2r;animation-duration:.2s}.cm_Wl2r03{animation-name:cm_l2r;animation-duration:.3s}.cm_Wl2r04{animation-name:cm_l2r;animation-duration:.4s}.cm_Wl2r05{animation-name:cm_l2r;animation-duration:.5s}@-webkit-keyframes cm_o2o{0%{-khtml-opacity:0;-webkit-opacity:0;-moz-opacity:0;filter:alpha(opacity=0);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);opacity:0}100%{-khtml-opacity:1;-webkit-opacity:1;-moz-opacity:1;filter:alpha(opacity=100);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);opacity:1}}@-moz-keyframes cm_o2o{0%{-khtml-opacity:0;-webkit-opacity:0;-moz-opacity:0;filter:alpha(opacity=0);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);opacity:0}100%{-khtml-opacity:1;-webkit-opacity:1;-moz-opacity:1;filter:alpha(opacity=100);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);opacity:1}}@-ms-keyframes cm_o2o{0%{-khtml-opacity:0;-webkit-opacity:0;-moz-opacity:0;filter:alpha(opacity=0);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);opacity:0}100%{-khtml-opacity:1;-webkit-opacity:1;-moz-opacity:1;filter:alpha(opacity=100);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);opacity:1}}@keyframes cm_o2o{0%{-khtml-opacity:0;-webkit-opacity:0;-moz-opacity:0;filter:alpha(opacity=0);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);opacity:0}100%{-khtml-opacity:1;-webkit-opacity:1;-moz-opacity:1;filter:alpha(opacity=100);-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);opacity:1}}.cm_Wo2o01{animation-name:cm_o2o;animation-duration:.1s}.cm_Wo2o02{animation-name:cm_o2o;animation-duration:.2s}.cm_Wo2o03{animation-name:cm_o2o;animation-duration:.3s}.cm_Wo2o04{animation-name:cm_o2o;animation-duration:.4s}.cm_Wo2o05{animation-name:cm_o2o;animation-duration:.5s}.cm_up{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);-webkit-transition:-webkit-transform 1s;-moz-transition:-moz-transform 1s;-ms-transition:-ms-transform 1s;transition:transform 1s}.cm_down{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);-webkit-transition:-webkit-transform 1s;-moz-transition:-moz-transform 1s;-ms-transition:-ms-transform 1s;transition:transform 1s}.cm_upts{display:block;position:fixed;z-index:33333333;background:rgba(0,0,0,0.38);width:100%;height:100%;top:0;left:0}.cm_tsdiv{display:block;background:rgba(255,255,255,0.94);width:76%;height:5em;line-height:5em;margin:10em 12% 0 12%;border-radius:.5em;text-align:center}.cmqdk{display:block;position:fixed;z-index:33333333;background:rgba(0,0,0,0.38);width:100%;height:100%;top:0;left:0}.cm_tsdiv2{display:block;background:rgba(255,255,255,0.94);width:100%;min-height:6em;border-radius:.5em;text-align:center;position:relative}.cm_qptop{float:left;background-color:#eee;padding:0 .5em;width:100%;word-break:break-all;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;position:relative}.cm_qptop:before{position:absolute;content:'\00a0';width:0;height:0;border-left:.5em solid transparent;border-right:.5em solid transparent;border-bottom:.5em solid #eee;top:-0.5em;left:1em}.cm_qpleft{float:left;background-color:#fff;padding:10px;width:100%;word-break:break-all;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;position:relative;background-image:-moz-linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0) 30px);background-image:-webkie-gradient(linear, 0 0, 0 30, from(rgba(255,255,255,0.6)), to(rgba(255,255,255,0)))}.cm_qpleft:before{position:absolute;content:'\00a0';width:0;height:0;border-width:8px 18px 8px 0;border-style:solid;border-color:transparent #fff transparent transparent;top:10px;left:-15px}.cm_qpright{float:right;background-color:#ffa8a8;color:#fff;padding:10px;width:100%;word-break:break-all;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;position:relative;background-image:-moz-linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0) 30px);background-image:-webkie-gradient(linear, 0 0, 0 30, from(rgba(255,255,255,0.6)), to(rgba(255,255,255,0)))}.cm_qpright:before{position:absolute;content:'\00a0';display:inline-block;width:0;height:0;border-width:8px 0 8px 18px;border-style:solid;border-color:transparent transparent transparent #ffa8a8;right:-15px;top:10px}.cm_qpbottom{width:100%;min-height:1em;line-height:1em;position:relative;background:#fff;border:1px solid #fff}.cm_qpbottom:after,.cm_qpbottom:before{top:100%;left:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.cm_qpbottom:after{border-color:rgba(255,255,255,0);border-top-color:#fff;border-width:.7em;margin-left:-0.7em}.cm_qpbottom:before{border-color:rgba(255,255,255,0);border-top-color:#fff;border-width:.7em;margin-left:-0.7em}
--------------------------------------------------------------------------------