/*
 * 支付端充值流程的统一客服入口。
 * 桌面布局仅依赖 IE6 可识别的浮动、固定尺寸和行高；圆角、阴影属于渐进增强，旧版 IE 忽略后仍可正常显示和点击。
 */
.ticket-service-wrapper {
    height: 40px;
    padding: 7px 12px;
    border: 1px solid #f25b61;
    margin: 10px 0;
    overflow: hidden;
    background: #fff7f7;
    border-radius: 5px;
}

.ticket-service-content {
    float: left;
    display: inline;
    height: 40px;
    line-height: 40px;
    white-space: nowrap;
}

.ticket-service-icon {
    float: left;
    display: inline;
    width: 32px;
    height: 32px;
    margin: 4px 10px 0 0;
    line-height: 32px;
    overflow: hidden;
    background: #ed2939;
    border-radius: 16px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.ticket-service-title {
    float: left;
    display: inline;
    margin-right: 16px;
    color: #d91e2c;
    font-size: 16px;
    font-weight: bold;
}

.ticket-service-text {
    float: left;
    display: inline;
    color: #555;
    font-size: 14px;
}

.ticket-service-button,
.ticket-service-button:link,
.ticket-service-button:visited {
    float: right;
    display: inline;
    width: 180px;
    height: 36px;
    margin-top: 2px;
    line-height: 36px;
    background: #ed2939;
    border-radius: 18px;
    box-shadow: 0 3px 8px #edb5b8;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

.ticket-service-button:hover,
.ticket-service-button:active {
    background: #d91e2c;
    color: #fff;
    text-decoration: none;
}

.ticket-service-chat {
    display: inline-block;
    *display: inline;
    width: 20px;
    height: 14px;
    margin-right: 7px;
    line-height: 10px;
    overflow: hidden;
    background: #fff;
    border-radius: 7px;
    color: #ed2939;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    zoom: 1;
}

.ticket-service-arrow {
    margin-left: 8px;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: normal;
    vertical-align: -1px;
}

/* 窄屏下改为上下两行，避免说明文字和客服按钮相互挤压。 */
@media (max-width: 768px) {
    .ticket-service-wrapper {
        height: auto;
        padding: 8px;
    }

    .ticket-service-content {
        float: none;
        display: block;
        height: 34px;
        line-height: 34px;
        overflow: hidden;
    }

    .ticket-service-icon {
        width: 30px;
        height: 30px;
        margin-top: 2px;
        line-height: 30px;
        border-radius: 15px;
        font-size: 17px;
    }

    .ticket-service-title {
        margin-right: 8px;
        font-size: 15px;
    }

    .ticket-service-text {
        font-size: 13px;
    }

    .ticket-service-button,
    .ticket-service-button:link,
    .ticket-service-button:visited {
        float: none;
        display: block;
        width: 100%;
        height: 34px;
        margin-top: 6px;
        line-height: 34px;
    }
}
