/*公共通用样式开始*/

/*全局样式
 * * @ 取消获得焦点样式，设定所有元素的大小行为，取消外边距，取消内填充，取消元素边框
 * */
* {
    outline: none;
    box-sizing: content-box;
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

img {
    border: none;
}

/*IE10下文本框删除按钮*/
input[type=text]::-ms-clear {
    display: none
}

/*CSS3 placeholder属性颜色*/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #CCCCCC;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #CCCCCC;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #CCCCCC;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #CCCCCC;
}

a{
    color: #FFFFFF;
}


/*body样式*/
body {
    margin: 0;
    padding: 0;
    background-color: #f6f6f6;
    font-size: 14px;
    font-family: 'Microsoft YaHei', 'Times New Roman', Times, serif;
    letter-spacing: 0;
    min-width: 1080px;
    color: #323232;
    word-wrap: break-word;
}

input,
select,
textarea {
    font-size: 14px;
    font-family: 'Microsoft YaHei', 'Times New Roman', Times, serif;
}

/*取消按钮浏览器默认样式*/
input[type='button'],
input[type='submit'],
button {
    -moz-appearance: none;
    -webkit-appearance: none;
}


/*主体容器*/
.container {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

/*为容器添加清除浮动*/
.container:after {
    content: '';
    display: block;
    clear: both;
}


/*分栏容器*/
.row-box:after {
    /*为容器添加清除浮动*/
    content: '';
    display: block;
    clear: both;
}

.row-box>* {
    /*为容器的子DIV元素创建浮动*/
    float: left;
}

.row-box>*.right {
    float: right;
}

/*为更好的快速分栏，.col-* 方法，1-12等份，与分栏容器一起使用*/
.row-box.col-1>* {
    width: 100%;
}

.row-box.col-2>* {
    width: 50%;
}

.row-box.col-3>* {
    width: 33.33333%;
}

.row-box.col-4>* {
    width: 25%;
}

.row-box.col-5>* {
    width: 20%;
}

.row-box.col-6>* {
    width: 16.66666%;
}

.row-box.col-7>* {
    width: 14.28571%;
}

.row-box.col-8>* {
    width: 12.5%;
}

.row-box.col-9>* {
    width: 11.11111%;
}

.row-box.col-10>* {
    width: 10%;
}

.row-box.col-11>* {
    width: 9.090909%;
}

.row-box.col-12>* {
    width: 8.333333%;
}

/* 项目主要的分栏布局 */
.row-box>*.left-box {
    width: 884px;
}

.row-box>*.right-box {
    width: 300px;
    margin-left: 16px;
}

/*超链接*/
a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/*字体颜色*/
.rgb-32 {
    color: #323232;
}

.rgb-50 {
    color: #505050;
}

.rgb-90 {
    color: #909090;
}

.rgb-09f {
    color: #0089FF;
}

/*背景色*/
.bg-fff {
    background-color: #ffffff;
}

.bg-f6 {
    background-color: #f6f6f6;
}

/*字体大小*/
.size-12 {
    font-size: 12px;
}

.size-14 {
    font-size: 14px;
}

.size-16 {
    font-size: 16px;
}

.size-18 {
    font-size: 18px;
}

.size-20 {
    font-size: 20px;
}

.size-22 {
    font-size: 22px;
}

.size-24 {
    font-size: 24px;
}
.size-28 {
    font-size: 28px;
}
.size-32 {
    font-size: 32px;
}
.size-42 {
    font-size: 42px;
}
.size-46 {
    font-size: 46px;
}

/*字体其它设置*/

/*加粗*/
.font-B {
    font-weight: bold;
}

/*倾斜*/
.font-I {
    font-style: italic;
}

/*下划线*/
.font-U {
    text-decoration: underline;
}


/*字体对齐*/
.font-c {
    text-align: center;
}

.font-r {
    text-align: right;
}

.font-l {
    text-align: left;
}

/*常用行高*/
.font-h-20 {
    line-height: 20px;
}

.font-h-22 {
    line-height: 22px;
}

.font-h-24 {
    line-height: 24px;
}

.font-h-26 {
    line-height: 26px;
}

.font-h-28 {
    line-height: 28px;
}

.font-h-30 {
    line-height: 30px;
}

.font-h-32 {
    line-height: 32px;
}


/* 圆角 */
.radius-4 {
    border-radius: 4px;
}

.radius-6 {
    border-radius: 6px;
}

.radius-8 {
    border-radius: 8px;
}

.radius-12 {
    border-radius: 10px;
}

/* 盒子模型 */
.m-16 {margin: 16px;}
.m-24 {margin: 24px;}
.m-32 {margin: 32px;}
.m-t-16 {margin-top: 16px;}
.m-t-24 {margin-top: 24px;}
.m-t-32 {margin-top: 32px;}
.m-r-16 {margin-right: 16px;}
.m-r-24 {margin-right: 24px;}
.m-r-32 {margin-right: 32px;}
.m-b-16 {margin-bottom: 16px;}
.m-b-24 {margin-bottom: 24px;}
.m-b-32 {margin-bottom: 32px;}
.m-l-16 {margin-left: 16px;}
.m-l-24 {margin-left: 24px;}
.m-l-32 {margin-left: 32px;}

.p-16 {padding: 16px;}
.p-24 {padding: 24px;}
.p-32 {padding: 32px;}
.p-t-16 {padding-top: 16px;}
.p-t-24 {padding-top: 24px;}
.p-t-32 {padding-top: 32px;}
.p-r-16 {padding-right: 16px;}
.p-r-24 {padding-right: 24px;}
.p-r-32 {padding-right: 32px;}
.p-b-16 {padding-bottom: 16px;}
.p-b-24 {padding-bottom: 24px;}
.p-b-32 {padding-bottom: 32px;}
.p-l-16 {padding-left: 16px;}
.p-l-24 {padding-left: 24px;}
.p-l-32 {padding-left: 32px;}


/*公共通用样式结束*/


/*公共项目样式开始*/
/* 头部导航 */




.footer {
    background-color: #474747;
    padding: 36px 0 16px 0;
}

.footer img.logo {
    height: 57px;
    display: block;
}

.footer .r1>div {
    margin-right: 16px;
}

.icon-qq {
    display: block;
    width: 40px;
    height: 40px;
    background-position: -1px 0;
}

.icon-qq .qq-box {
    position: absolute;
    left: -63px;
    bottom: 50px;
    display: none;
    width: 150px;
    padding: 8px;
    background-color: #fff;
    line-height: 18px;
    border: 1px solid #eee;
    z-index: 2;
}

.icon-qq .qq-box::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 71px;
    top: 104px;
    border-top: 10px solid #eee;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.icon-qq .qq-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 74px;
    top: 104px;
    border-top: 8px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.icon-qq:hover .qq-box {
    display: block;
}

.icon-qq .qq-box .line {
    margin-top: 8px;
    padding-top: 8px;
    border-top: #e5e5e5 dashed 1px;
}

.icon-wechat {
    display: block;
    width: 40px;
    height: 40px;
    background-position: -1px -100px;
}

.icon-wechat .wechat-box {
    position: absolute;
    top: -112px;
    left: -30px;
    display: none;
    width: 100px;
    height: 100px;
    background-image: url('/images/global/wechat_accounts.jpg');
    background-position: center;
    background-size: cover;
    border: 1px solid #eee;
}

.icon-wechat:hover .wechat-box {
    display: block;
}

.icon-wechat .wechat-box::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 39px;
    top: 100px;
    border-top: 10px solid #eee;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.icon-wechat .wechat-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 42px;
    top: 100px;
    border-top: 8px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.icon-weibo {
    display: block;
    width: 40px;
    height: 40px;
    background-position: -1px -200px;
}

/* 公共的下载面板 */
.download-panel-1 {
    padding: 24px 16px;
    height: 156px;
}
.download-panel-1 .information-box {
    width: 150px;
}
.download-panel-1 .name {
    height: 38px;
}
.download-panel-1 .name img {
    width: 150px;
    height: 38px;
}
.download-panel-1 .qrcode {
    width: 100px;
    height: 100px;
    display: block;
}

.download-panel-1 .r1>div {
    margin-right: 16px;
}

.download-panel-2 {
    padding: 24px 16px;
    height: 176px;
}

.download-panel-2 a {
    display: block;
    color: #909090;
    margin: 0 auto;
    text-decoration: none;
    width: 80px;
    padding-top: 64px;
    position: relative;
}

.download-panel-2 a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    width: 48px;
    height: 48px;
}

.download-panel-2 .icon-android::before {
    background-position: 4px -300px;
}

.download-panel-2 .icon-ios::before {
    background-position: 4px -400px;
}

.download-panel-2 .icon-pc::before {
    background-position: 4px -500px;
}


/* 角标容器 */
.markers {
    position: relative;
    border-radius: 16px;
}

.markers > img {
    position: absolute;
    width: 100%;
    height: auto;
}

/* 超出省略 */
.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

