/*宽度设置*/
.cm-w {
    position: relative;
    width: 100%;
    background-color: #fefae7;
}

.cm-w-noBg {
    background-color: transparent;
}

.cm-w-white {
    background: #ffffff;
}

.cm-w-class {
    background: #ffdcb9;
}

.cm-w-1200 {
    position: relative;
    margin: 0 auto;
    width: 1200px;
}

ul li {
    float: left;
}

ul.cm-noFloat li {
    float: none;
}

body {
    overflow-x: hidden;
}

/*PC重置及公共样式*/
/* 清除内外边距 */
html, body, header, section, footer, div, ul, ol, li, img, a, span, em, del, legend, center, strong, var, fieldset, form, label, dl, dt, dd, cite, input, hr, time, mark, code, figcaption, figure, textarea, h1, h2, h3, h4, h5, h6, p, button {
    margin: 0;
    border: 0;
    padding: 0;
    font-style: normal;
    outline: none;
    list-style: none;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: none;

    -webkit-transition: all .3s; /* For Safari 3.1 to 6.0 */
    transition: all .3s;
}

/* 设置默认字体 */
html, body, div, p, span, label, i,
button, input, select, textarea { /* for ie */
    /*font-family: "Microsoft YaHei", "Heiti", Helvetica, Arial, "\5b8b\4f53", sans-serif; !* 用 ascii 字符表示，使得在任何编码下都无问题 *!*/
    font-family: "ff-tisa-web-pro-1","ff-tisa-web-pro-2","Lucida Grande","Helvetica Neue",Helvetica,Arial,"Hiragino Sans GB","Hiragino Sans GB W3","WenQuanYi Micro Hei",sans-serif;

    color: #222222;
    font-size: 14px;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

address, cite, dfn, em, var {
    font-style: normal;
}

/* 将斜体扶正 */
code, kbd, pre, samp, tt {
    font-family: "Courier New", Courier, monospace;
}

/* 统一等宽字体 */

/* 重置列表元素 */
img {
    display: block;
    width: 100%;
    height: 100%;
}

/* 重置文本格式元素 */
a {
    text-decoration: none;
    cursor: pointer;
}

a:hover, a:visited, a:link, a:active {
    text-decoration: none;
    color: #222;
}

i, span {
    display: inline-block;
}

abbr[title], acronym[title] { /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
    border-bottom: 1px dotted;
    cursor: help;
}

q:before, q:after {
    content: '';
}

/* 重置表单元素 */
legend {
    color: #000;
}

/* for ie6 */
fieldset, img {
    border: none;
}

/* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
}

/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 重置 hr */
hr {
    border: none;
    height: 1px;
}

/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
html {
    overflow-y: scroll;
}

/*select清除样式*/
select {
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: solid 1px transparent;
    /*很关键：将默认的select选择框样式清除*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    /*将背景改为红色*/
    background: transparent;
    /*加padding防止文字覆盖*/
    padding-right: 14px;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
    display: none;
}

/*chrome表单自动填充去掉input黄色背景解决方案*/
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0) inset;
}

/*清除input有值时的黄色背景*/
input[type=text]:focus,
input[type=password]:focus {
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

/*清除button默认样式*/
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    outline: none !important;
}

/*清除textarea默认样式*/
textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #999999 !important;
    font-size: 14px;
}

/*去掉IE10文本框后面的XX*/
input ::-ms-clear,
input ::-ms-reveal {
    display: none;
}

/*设置placeholder字体颜色及大小*/
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #999999 !important;
    font-size: 14px;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #999999 !important;
    opacity: 1;
    font-size: 14px;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #999999 !important;
    opacity: 1;
    font-size: 14px;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #999999 !important;
    font-size: 14px;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

input {
    padding: 0 10px;
}

/*动态获取带样式文本*/
pre {
    white-space: pre-wrap; /*css-3*/
    white-space: -moz-pre-wrap; /*Mozilla,since1999*/
    white-space: -pre-wrap; /*Opera4-6*/
    white-space: -o-pre-wrap; /*Opera7*/
    word-wrap: break-word; /*InternetExplorer5.5+*/
    line-height: 1.5;
    font-size: 12px;
}

/*文字省略*/
.overflow-line-2 {
    /*display: -webkit-box;*/
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    /*text-overflow: -o-ellipsis-lastline;*/
    /*word-wrap: break-word;*/
    /*word-break: break-all;*/
    /*white-space: normal;*/
    /*-webkit-line-clamp: 2;*/
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden !important;
    white-space: normal !important;
    text-overflow: ellipsis !important;
    word-break: normal !important;
}

.overflow-line-1 {
    /*display: -webkit-box;*/
    /*text-overflow: -o-ellipsis-lastline;*/
    /*word-wrap: break-word;*/
    /*word-break: break-all;*/
    /*white-space: normal!important;*/
    /*-webkit-box-orient: vertical;*/
    -webkit-line-clamp: 1;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    word-break: normal !important;
}

/*文字遮罩省略*/
.overflow-line-p {
    position: relative;
    line-height: 20px;
    max-height: 40px;
    overflow: hidden;
    color: #ffffff;
}

.overflow-line-p::after {
    content: "...";
    color: rgba(0, 0, 0, .5);
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 40px;
    background: -webkit-linear-gradient(left, transparent, rgba(0, 0, 0, .5) 55%);
    background: -o-linear-gradient(right, transparent, rgba(0, 0, 0, .5) 55%);
    background: -moz-linear-gradient(right, transparent, rgba(0, 0, 0, .5) 55%);
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, .5) 55%);
}

/*常用设置总结*/
/*正方图片*/
.img-container-square {
    position: relative;
    height: 0;
    padding-bottom: 100%;
}

.img-container-square img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: palevioletred;
}

/*小箭头*/
.cm-arrow {
    position: relative;
}

.cm-arrow:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-width: 1px 1px 0 0;
    border-color: #ccc;
    border-style: solid;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -4px;
    transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
}

/*文字提示*/
/*.cm-mask {*/
/*position: fixed;*/
/*top: 0;*/
/*bottom: 0;*/
/*left: 0;*/
/*right: 0;*/
/*width: 100%;*/
/*height: 100%;*/
/*background: #000000;*/
/*z-index: 1;*/
/*!* older safari/Chrome browsers *!*/
/*-webkit-opacity: 0.3;*/
/*!* Netscape and Older than Firefox 0.9 *!*/
/*-moz-opacity: 0.3;*/
/*!* Safari 1.x (pre WebKit!) 老式khtml内核的Safari浏览器*!*/
/*-khtml-opacity: 0.3;*/
/*!* IE9 + etc...modern browsers *!*/
/*opacity: .3;*/
/*!* IE 4-9 *!*/
/*filter:alpha(opacity=30);*/
/*!*This works in IE 8 & 9 too*!*/
/*-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";*/
/*!*IE4-IE9*!*/
/*filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=30);*/
/*}*/
.cm-mask {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.cm-mask-pop {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    margin-top: -200px;
    margin-left: -200px;
    padding: 0.5rem 1.5rem;
    color: #222;
    text-align: center;
    background-color: #ffffff;
    z-index: 99999;
}

/*颜色设置*/
.cm-color-txt {
    color: #283d4d;
}

.cm-color-txt2 {
    color: #bac2c9;
}

.cm-color-blue {
    color: #3a89f4;
}

.cm-color-black {
    color: #313131;
}

.cm-color-white {
    color: #ffffff;
}

/*文字粗体设置*/
.cm-bold {
    font-weight: 600;
}

/*文字对齐设置*/
.text-eg {
    text-align: justify;
    text-justify: inter-ideograph;
}

.cm-text-center {
    text-align: center;
}

.cm-text-left {
    text-align: left;
}

.cm-text-right {
    text-align: right;
}

/*对齐,显示，隐藏等*/
.cm-hide {
    display: none !important;
}

.cm-show {
    display: block !important;
}

.cm-visibilityH {
    visibility: hidden;
}

.cm-show {
    display: block !important;
}

/*浮动设置*/
.cm-pull-right {
    float: right !important;
}

.cm-pull-left {
    float: left !important;
}

/*清除浮动*/
.clearfloat:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.clearfloat {
    *zoom: 1;
}

/*按钮设置*/
.cm-btn-1 {
    padding: 0 30px;
    height: 50px;
    line-height: 48px;
    text-align: center;
    cursor: pointer;

    position: relative;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    behavior: url(../css/PIE.htc);
    transition: all .2s ease;
    -webkit-transition: all .2s ease; /* Safari */

    border: 1px solid #4e99fd;
    color: #4e99fd;
    background: none;
}

.cm-btn-1:hover {
    border: 1px solid #4e99fd;
    color: #ffffff;
    background: #4e99fd;
}

.cm-btn-2 {
    padding: 0 20px;
    height: 30px;
    line-height: 28px;
    font-size: 12px;
}

.cm-btn-2:hover {
    border: 1px solid #4e99fd;
    color: #ffffff;
    background: #4e99fd;
}

.cm-btn-3 {
    color: #ffffff;
    background: #4e99fd;
}

.cm-btn-3:hover {
    background: #62a4fd;
}

.cm-btn-4 {
    color: #aabbcb;
    background: #f3f4f6;
    border: 1px solid #f1f2f2;
}

.cm-btn-4 i {
    position: absolute;
    top: 15px;
    left: 100px;
    width: 20px;
    height: 20px;
    background: url("../images/more.png") no-repeat;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease; /* Safari */
}

.cm-btn-4:hover {
    color: #283d4d;
    background: #f3f4f6;
    border: 1px solid #f1f2f2;
}

.cm-btn-4:hover i {
    background: url("../images/more2.png") no-repeat;
}

.cm-btn-5 {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cm-btn-5:hover {
    background: #468dec;
    border: 1px solid #ffffff;
}

/*ie使用PIE实例*/
/*border-radius*/
.index-icon-list i {
    width: 250px;
    height: 250px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease; /* Safari */
    transform: rotate(0deg);
    position: relative; /*relative必需*/
    border-radius: 500px;
    -moz-border-radius: 500px;
    -webkit-border-radius: 500px;
    behavior: url(../css/PIE.htc); /*注意路径，此实例PCcommon.css文件和PIE.htc同级*/
}

.index-icon-list i:hover {
    transform: rotate(360deg);
    -moz-box-shadow: 0px 23px 24px rgba(80, 154, 254, 0.2);
    -webkit-box-shadow: 0px 23px 24px rgba(80, 154, 254, 0.2);
    box-shadow: 0px 23px 24px rgba(80, 154, 254, 0.2);
}

/*shadow*/
.business-list li {
    margin-left: 125px;
    width: 300px;
    height: 374px;
    background: #ffffff;
    -moz-box-shadow: 0px 0px 30px rgba(80, 154, 254, 0.25);
    -webkit-box-shadow: 0px 0px 30px rgba(80, 154, 254, 0.25);
    box-shadow: 0px 0px 30px rgba(80, 154, 254, 0.25);
    text-align: center;

    position: relative;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    behavior: url(../css/PIE.htc);
    transition: all .2s ease;
    -webkit-transition: all .2s ease; /* Safari */
}











