﻿/*公共通用样式开始*/

/*全局样式
 * * @ 取消获得焦点样式，设定所有元素的大小行为，取消外边距，取消内填充，取消元素边框
 * */
* {
    outline: none;
    box-sizing: content-box;
    margin: 0;
    padding: 0;
}

/* 全局图标文件，写在前面方便后期更新时修改版本 */
.icons,
.icons-after::after,
.icons-before::before {
    background-image: url(../Images/icons.png);
    background-repeat: no-repeat;
}


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;
}

/*body样式*/
body {
    margin: 0;
    padding: 0;
    background-color: #F2F2F2;
    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: 1080px;
    margin: 0 auto;
    position: relative;
}

.container:after {
    /*为容器添加清除浮动*/
    content: '';
    display: block;
    clear: both;
}


/*分栏容器*/
.row-box:after {
    /*为容器添加清除浮动*/
    content: '';
    display: block;
    clear: both;
}

.row-box>div {
    /*为容器的子DIV元素创建浮动*/
    float: left;
}

.row-box>div.right {
    float: right;
}

/*为更好的快速分栏，.col-* 方法，1-12等份，与分栏容器一起使用*/
.row-box.col-1>div {
    width: 100%;
}

.row-box.col-2>div {
    width: 50%;
}

.row-box.col-3>div {
    width: 33.33333%;
}

.row-box.col-4>div {
    width: 25%;
}

.row-box.col-5>div {
    width: 20%;
}

.row-box.col-6>div {
    width: 16.66666%;
}

.row-box.col-7>div {
    width: 14.28571%;
}

.row-box.col-8>div {
    width: 12.5%;
}

.row-box.col-9>div {
    width: 11.11111%;
}

.row-box.col-10>div {
    width: 10%;
}

.row-box.col-11>div {
    width: 9.090909%;
}

.row-box.col-12>div {
    width: 8.333333%;
}

/* 项目主要的分栏布局 */
.row-box>div.left-box {
    width: 720px;
}

.row-box>div.right-box {
    width: 344px;
    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;
}

/* margin设置*/
.mar-b-16 {
    margin-bottom: 16px;
}
.mar-b-32 {
    margin-bottom: 32px;
}
/*字体大小*/
.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;
}

/*字体其它设置*/

/*加粗*/
.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-xs {
    border-radius: 4px;
}

.radius-sm {
    border-radius: 6px;
}

.radius-md {
    border-radius: 8px;
}

.radius-lg {
    border-radius: 10px;
}

/*公共通用样式结束*/


/*公共项目样式开始*/
.header-nav {
    width: 100%;
    background-color: #0089FF;
    height: 80px;
}

.header-nav>div {
    height: 100%;
}


.header-nav .logo {
    padding-top: 24px;
}

.header-nav .logo>a {
    display: block;
    width: 210px;
    height: 33px;
    overflow: hidden;
}

.header-nav .logo img {
    display: block;
    height: 100%;
}

.header-nav .serch {
    width: 230px;
    padding-top: 20px;
}

.header-nav .serch>form {
    display: block;
    height: 40px;
    overflow: hidden;
    position: relative;
}

.header-nav .serch label {
    display: block;
    height: 40px;
    background-color: #99d0ff;
    border-radius: 20px;
    position: relative;
    line-height: 40px;
    padding-left: 16px;
}

.header-nav .serch a {
    display: none;
}

.header-nav .serch input {
    display: block;
    height: 28px;
    line-height: 28px;
    border: none;
    padding: 0;
    margin: 0;
    width: 170px;
    font-size: 16px;
    color: #0089FF;
    background-color: #99d0ff;
}

.header-nav .serch input::-webkit-input-placeholder {
    color: #0089FF;
    font-size: 16px;
}

.header-nav .serch input::-moz-placeholder {
    color: #0089FF;
    font-size: 16px;
}

.header-nav .serch input:-ms-input-placeholder {
    color: #0089FF;
    font-size: 16px;
}
.header-nav .serch .input-box {
    background: none;
}
.header-nav .serch .submit {
    width: 18px;
    height: 18px;
    position: absolute;
    background-position: -100px -2px;
    top: 12px;
    right: 16px;
    cursor: pointer;
    background-color: none;
}


.header-nav .item-box {
    height: 100%;
    width: 570px;
    padding: 0 20px;
}

.header-nav .item-box a {
    display: block;
    padding: 0 30px;
    position: relative;
    height: 80px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 80px;
}

.header-nav .item-box a:hover,
.header-nav .item-box a.active {
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    z-index: 9;
}

.header-nav-box {
    height: 48px;
    background-color: #fff;
    margin-bottom: 16px;
}
.header-nav-box .container {
    text-align: center;
}
.header-nav-box  a {
    display: inline-block;
    height: 48px;
    line-height: 48px;
    color: #505050;
    padding: 0 36px;
}
.header-nav-box  a:hover {
    text-decoration: none;
}
.header-nav-box  a.active {
    color: #0089FF;
    font-weight: bold;
}
.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: 0 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: 0 -50px;
}

.icon-wechat .wechat-box {
    position: absolute;
    top: -112px;
    left: -30px;
    display: none;
    width: 100px;
    height: 100px;
    background-image: url('../Images/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: 0 -100px;
}

/* 公共的下载面板 */
.download-panel-1 {
    padding: 16px;
}
.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 {
    height: 224px;
}

.download-panel-2>div {
    padding: 20px 10px;
}

.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 -150px;
}

.download-panel-2 .icon-ios::before {
    background-position: 4px -200px;
}

.download-panel-2 .icon-pc::before {
    background-position: 1px -250px;
}


/* 角标容器 */
.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;
}

/* 面包屑 */
.crumbs {
    width: 100%;
    height: 32px;
    padding: 8px 0;
    font-size: 12px;
    line-height: 16px;
    box-sizing: border-box;
    background: rgba(248, 248, 248, 1);
    box-shadow: 0px -1px 0px 0px rgba(232, 232, 232, 1);
}

.crumbs .crumbs-title {
    margin-right: 10px;
}

.crumbs .crumbs-after {
    width: 8px;
    height: 16px;
    background-position: -198px -95px;
    margin: 0 8px;
}

.crumbs a {
    color: #909090;
}

.crumbs a:hover {
    color: #909090;
}

/* 选项卡 */
.common-tab {
    height: 34px;
    margin: 16px 0;
}

.common-tab a {
    display: block;
    text-decoration: none;
    padding: 0 16px;
    height: 34px;
    background-color: #fff;
    border-radius: 17px;
    margin-right: 8px;
    text-align: center;
    line-height: 34px;
    font-size: 16px;
    color: #505050;
    float: left;
}

.common-tab a:hover {
    text-decoration: none;
}

.common-tab a.current {
    background-color: #0089FF;
    color: #fff;
}

/* 分页 */
.paging-box {
    margin-bottom: 16px;
    text-align: center;
}

.paging-box>div {
    display: inline-block;
}

.paging-box>div>div {
    min-width: 84px;
    height: 32px;
    margin: 0 8px;
}
.paging-box .hide {
    display: none;
}

.paging-box>div>div>a {
    display: block;
    line-height: 32px;
    background-color: #fff;
    color: #909090;
    text-decoration: none;
    border: #fff solid 1px;
    padding: 0 8px;
}

.paging-box>div>div>a:hover {
    border: #0089FF solid 1px;
    color: #0089FF;
}

.paging-box>div>div>a.active {
    color: #fff;
    background-color: #0089FF;
    border: #0089FF solid 1px;
}


/* 下载弹窗 */
.layui-layer.global-download-pop {
    border-radius: 8px;
}

.global-download-pop .dowload-pop-header {
    height: 80px;
    position: relative;
    padding: 24px 40px;
}

.dowload-pop-header .global-download-pop-close {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 20px;
    right: 20px;
    background-position: -295px -195px;
}

.dowload-pop-header .global-download-pop-close:hover {
    background-color: #f5f5f5;
    cursor: pointer;
}

.dowload-pop-header .pop-header-img {
    width: 80px;
    height: 80px;
    background-position: center;
    background-size: cover;
    border-radius: 12px;
}

.dowload-pop-header .pop-header-content {
    max-width: 400px;
    margin-left: 24px;
    padding-top: 8px;
}

.pop-header-content .pop-header-title {
    height: 31px;
    line-height: 31px;
}

.global-download-pop .dowload-pop-content {
    height: 272px;
    box-sizing: border-box;
    background-color: #F5F6FA;
    padding: 24px 0px 34px;
}

.dowload-pop-content .dowload-code {
    width: 162px;
    height: 162px;
    margin-left: 66px;
    border: #ccc solid 1px;
}

.dowload-pop-content .dowload-code>img {
    width: 100%;
    height: 100%;
    display: block;
}

.dowload-pop-content .content-item {
    line-height: 21px;
    margin-bottom: 12px;
}

.global-download-pop .dowload-pop-bottom {
    padding: 24px 78px;
}

.dowload-pop-bottom a {
    display: inline-block;
    width: 200px;
    height: 58px;
    box-sizing: border-box;
    border: 1px solid #0089ff;
    border-radius: 8px;
    text-align: center;
    padding: 15px 0;
    font-size: 20px;
    line-height: 26px;
    text-decoration: none;
    color: #0089ff;
}

.dowload-pop-bottom .download-app-btn {
    margin-left: 32px;
    color: #fff;
    background-color: #0089ff;
}

/* 水平线 */
hr.line-1{
    height: 1px;
    background: #E8E8E8;
    border-radius: 4px;
    border: none;
}
hr.line-2{
    height: 2px;
    background: #E8E8E8;
    border-radius: 8px;
    border: none;
}

/* 代金券下载引导 */
.layui-layer.global-tpl-share-archive-pop{
    border-radius: 24px ;
}
.global-tpl-share-archive-pop .global-download-pop-close {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 20px;
    right: 20px;
    background-position: -96px -45px;
}
.global-tpl-share-archive-pop .global-download-pop-close:hover{
    background-color: #f5f5f5;
    cursor: pointer;
}

.global-tpl-share-archive-pop .btn{
    display: block;
    width: 248px;
    line-height: 40px;
    margin: 0 auto;
    background-color: #0089FF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
}

.global-tpl-share-archive-pop .checkbox{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: #ccc solid 1px;
    box-sizing: border-box;
    margin-right: 8px;
    cursor: pointer;
}

.global-tpl-share-archive-pop .checkbox.active{
    border: none;
    background-image: url(../Images/checkbox-fill.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* 完美加速下载引导 */
.layui-layer.global-tpl-perfect-download-pop{
    border-radius: 24px ;
}
.global-tpl-perfect-download-pop .global-download-pop-close {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 20px;
    right: 20px;
    background-position: -96px -45px;
}
.global-tpl-perfect-download-pop .global-download-pop-close:hover{
    background-color: #f5f5f5;
    cursor: pointer;
}

.global-tpl-perfect-download-pop .btn{
    display: block;
    width: 248px;
    line-height: 40px;
    margin: 0 auto;
    background-color: #0089FF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
}

.global-tpl-perfect-download-pop .checkbox{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: #ccc solid 1px;
    box-sizing: border-box;
    margin-right: 8px;
    cursor: pointer;
}

.global-tpl-perfect-download-pop .checkbox.active{
    border: none;
    background-image: url(../Images/checkbox-fill.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.icon_12377 {
    width: 100%;
    height: auto;
    display: block;
}
.m-b-16 {
    margin-bottom: 16px;
}