﻿/* Document
   ========================================================================== */

/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 4. Set Antialising
 * 5. Set Box-sizing to border-box by default
 */


*, *:before, *:after {
    box-sizing: inherit;
    padding: 0;
    margin: 0;
}

em {
    font-style: normal;
    font-size: 12px;
}

a {
    text-decoration: none;
    color: #333;
}

    a.hover, a:link, a.redlink,a:active {
        color: #333;
        text-decoration: none;
    }

input[type='text'] {
    outline: none;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #d9d9d9;
    opacity: 1;
    font-size: 10px;
}

::-moz-placeholder {
    color: #d9d9d9;
    opacity: 1;
    font-size: 10px;
}

input:-ms-input-placeholder {
    color: #d9d9d9;
    opacity: 1;
    font-size: 10px;
}

input::-webkit-input-placeholder {
    color: #d9d9d9;
    opacity: 1;
    font-size: 10px;
}

input::input-placeholder {
    color: #d9d9d9;
    opacity: 1;
    font-size: 10px;
}

input[type="button"], input[type="submit"], input[type="search"], input[type="reset"] {
    -webkit-appearance: none;
}

textarea {
    -webkit-appearance: none;
}

li {
    list-style: none;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0);
    border-radius: 10px;
    background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

#ticon-right > path,
#ticon-left > path {
    fill: inherit;
}

.richtxt img {
    max-width: 100%;
}


