/* 通用样式重置 */
input, textarea {
    outline: 0;
    resize: none;
}

body {
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
}

/* 页面布局 */
html {
    height: 100%;
}

body {
    font-family: 'Helvetica Neue', 'Hiragino Sans GB', 'Heiti SC', 'Microsoft YaHei', 微软雅黑, Arial, sans-serif;
    color: #6e6e6e;
    height: 100%;
    background: #dedede;
}

#box {
    margin: 0 auto;
    background: #fff;
    height: 100%;
    position: relative;
}

/* 非移动端设备，设置固定宽度 */
@media (min-width: 769px) {
    #box {
        width: 512px;
    }
}

/* 标题样式 */
.title {
    font-size: 22px;
    text-align: center;
    padding: 20px 0 20px 0;
}

h3.hidden-title {
    display: none;
}

/* 表格样式 */
table {
    font-family: verdana, arial, sans-serif;
    font-size: 11px;
    color: #f00;
    border: 0;
    border-collapse: collapse;
}

table td {
    border-width: 1px;
    padding: 2px;
    border-style: solid;
    border-color: #666;
    background-color: #fff;
}

.big {
    width: 342px;
    margin: 0 auto;
}

.block {
    width: 114px;
}

.block_line {
    border-color: #345345;
}

.InText {
    width: 100%;
    height: 100%;
    border: 0;
    font-size: 23px;
    text-align: center;
    font-weight: bold;
}

/* 按钮样式 */
button {
    width: 100px;
    height: 30px;
    cursor: pointer;
}

#box #get {
    margin-left: 40px;
}

#box #back {
    margin-left: 40px;
    display: none;
}

/* Loading 动画 */
#loading-center-absolute {
    display: none;
    z-index: 9;
    position: absolute;
    left: 50%;
    top: 226px;
    height: 72px;
    width: 72px;
    margin-top: -36px;
    margin-left: -36px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: loading-center-absolute 1.5s infinite;
    animation: loading-center-absolute 1.5s infinite;
}

.object {
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 255, 0.2);
    float: left;
}

#object_one {
    -webkit-animation: object_one 1.5s infinite;
    animation: object_one 1.5s infinite;
}

#object_two {
    -webkit-animation: object_two 1.5s infinite;
    animation: object_two 1.5s infinite;
}

#object_three {
    -webkit-animation: object_three 1.5s infinite;
    animation: object_three 1.5s infinite;
}

#object_four {
    -webkit-animation: object_four 1.5s infinite;
    animation: object_four 1.5s infinite;
}

@-webkit-keyframes loading-center-absolute {
    100% {
        -webkit-transform: rotate(-45deg);
    }
}

@keyframes loading-center-absolute {
    100% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
}

@-webkit-keyframes object_one {
    25% {
        -webkit-transform: translate(0, -50px) rotate(-180deg);
    }

    100% {
        -webkit-transform: translate(0, 0) rotate(-180deg);
    }
}

@keyframes object_one {
    25% {
        transform: translate(0, -50px) rotate(-180deg);
        -webkit-transform: translate(0, -50px) rotate(-180deg);
    }

    100% {
        transform: translate(0, 0) rotate(-180deg);
        -webkit-transform: translate(0, 0) rotate(-180deg);
    }
}

@-webkit-keyframes object_two {
    25% {
        -webkit-transform: translate(50px, 0) rotate(-180deg);
    }

    100% {
        -webkit-transform: translate(0, 0) rotate(-180deg);
    }
}

@keyframes object_two {
    25% {
        transform: translate(50px, 0) rotate(-180deg);
        -webkit-transform: translate(50px, 0) rotate(-180deg);
    }

    100% {
        transform: translate(0, 0) rotate(-180deg);
        -webkit-transform: translate(0, 0) rotate(-180deg);
    }
}

@-webkit-keyframes object_three {
    25% {
        -webkit-transform: translate(-50px, 0) rotate(-180deg);
    }

    100% {
        -webkit-transform: translate(0, 0) rotate(-180deg);
    }
}

@keyframes object_three {
    25% {
        transform: translate(-50px, 0) rotate(-180deg);
        -webkit-transform: translate(-50px, 0) rotate(-180deg);
    }

    100% {
        transform: translate(0, 0) rotate(-180deg);
        -webkit-transform: rtranslate(0, 0) rotate(-180deg);
    }
}

@-webkit-keyframes object_four {
    25% {
        -webkit-transform: translate(0, 50px) rotate(-180deg);
    }

    100% {
        -webkit-transform: translate(0, 0) rotate(-180deg);
    }
}

@keyframes object_four {
    25% {
        transform: translate(0, 50px) rotate(-180deg);
        -webkit-transform: translate(0, 50px) rotate(-180deg);
    }

    100% {
        transform: translate(0, 0) rotate(-180deg);
        -webkit-transform: translate(0, 0) rotate(-180deg);
    }
}

/* 页面布局辅助类 */
.container-100 {
    height: 100%;
}

.height-2px {
    height: 2px;
}

.height-8px {
    height: 8px;
    background: #ffffff;
}

.height-10px {
    height: 10px;
}

.height-14px {
    height: 14px;
    background: #ffffff;
}

.height-16px {
    height: 16px;
    background: #ffffff;
}

.height-18px {
    height: 18px;
    background: #ffffff;
    border-bottom: 1px #ccc dashed;
}

.height-30px {
    height: 30px;
}

.height-50px {
    height: 50px;
}

.height-100px {
    height: 100px;
}

.height-160px {
    height: 160px;
}

.height-180px {
    height: 180px;
}

.height-180px-min {
    min-height: 180px;
}

.bg-white {
    background: #ffffff;
}

.padding-content {
    padding: 5px 20px;
}

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

.margin-auto {
    margin: 0 auto;
}

.color-black {
    color: #000;
}

.color-222 {
    color: #222;
}

.color-red {
    color: red;
}

.color-green {
    color: #42C02E;
}

.color-ea6f5a {
    color: #ea6f5a;
}

.color-ccc {
    color: #ccc;
}

.font-size-10px {
    font-size: 10px;
}

.font-size-12px {
    font-size: 12px;
}

.font-weight-bold {
    font-weight: bold;
}

.text-indent-2em {
    text-indent: 2em;
}

.margin-top-4px {
    margin-top: 4px;
}

.margin-top-5px {
    margin-top: 5px;
}

.margin-top-6px {
    margin-top: 6px;
}

.margin-top-18px {
    margin-top: 18px;
}

.border-1px-ccc {
    border: 1px solid #ccc;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-both {
    clear: both;
}

.display-block {
    display: block;
}

.width-calc-full {
    width: calc(100% - 20px);
}

.width-288px {
    width: 288px;
}

.width-110px {
    width: 110px;
}

.width-height-110px {
    width: 110px;
    height: 110px;
}

/* 按钮容器 */
.button-container {
    text-align: center;
    margin: 0 auto;
    height: 50px;
    background: #ffffff;
}

/* 公告区域 */
.announcement {
    padding: 5px 20px 10px 20px;
    font-size: 12px;
    background: #ffffff;

}

.announcement .content {
    color: #000;
    height: 100px;
}

.announcement .content p {
    font-weight: bold;
}

.announcement .content .notice-text {
    text-indent: 2em;
    margin-top: 5px;
}

.announcement .content .contact-text {
    text-indent: 2em;
    margin-top: 5px;
    color: red;
    font-weight: bold;
}

/* 小程序二维码区域 */
.miniprogram-section {
    height: 180px;
    background: #ffffff;
}

.miniprogram-section .container {
    width: calc(100% - 20px);
    margin: 0 auto;
}

.miniprogram-section .img {
    margin: 0 auto;
    display: block;
    border: 1px solid #ccc;
    width: 110px;
}

.miniprogram-section .desc {
    font-size: 10px;
    text-align: center;
    color: #42C02E;
}

.miniprogram-section .desc .highlight {
    color: red;
    font-weight: bold;
}

/* 页脚区域 */
.footer {
    height: 8px;
    background: #ffffff;
}

.footer-divider {
    height: 18px;
    background: #ffffff;
    border-bottom: 1px #ccc dashed;
}

.footer-spacer {
    height: 16px;
    background: #ffffff;
}

.footer-content {
    text-align: center;
    margin: 0 auto;
    background: #ffffff;
}

.footer-content .container {
    min-height: 180px;
    background: #ffffff;
}

.footer-content .inner-container {
    width: calc(100% - 20px);
    margin: 0 auto;
}

.footer-content .qr-container {
    width: 288px;
    margin: 0 auto;
}

.footer-content .qr-img {
    margin: 0 auto;
    display: block;
    border: 1px solid #ccc;
    width: 110px;
    height: 110px;
}

.footer-content .qr-label {
    font-size: 12px;
    text-align: center;
    color: #ff0000;
}


.author-info {
    color: #ea6f5a;
    margin-top: 4px;
}

.author-info a {
    color: #ea6f5a;
}

.icp-info {
    font-size: 10px;
    color: #ccc;
    margin-top: 6px;
}

.icp-info a {
    color: #cccccc;
}

/* 链接样式 */
a {
    text-decoration: none;
}

.daily-count{
    font-size: 14px;
    margin: 0 auto;
    text-align: center;
}
