/* CSS Document */

/*所有页面共用样式*/
@charset "utf-8";

/*
//CSS Hack
property:value; 所有浏览器
_property:value; IE6
+property:value; IE7
*property:value; IE6/IE7
property:value \0; IE8/IE9
property:value \9; IE6/IE7/IE8
property:value \9\0; IE9

//最小高度HACK
min-height:500px;
height:auto !important;
height:500px;
overflow:visible;

//溢出文字用省略号点代替(慎用)
white-space:nowrap; text-overflow:ellipsis; overflow:hidden;

//文字两端对齐
text-align:Justify;(火狐)
text-justify:inter-ideograph;(IE)
*/

body {margin:0px; padding:0px; font-family:Arial, Helvetica, sans-serif,'Microsoft YaHei';}
input,textarea,radio,select
{outline:none;}

/* PC端样式 */
@media screen and (min-width:768px) {
    body
    {
        background: linear-gradient(to right,
        #b3d2e7,
        #b6d5ea);
    }
    p.color-a
    {color:#FFD78F;}
    p.color-b
    {color:#93794B;}

    .page
    {width:1080px; height:auto; overflow: hidden; margin:0px auto;}
    .page img
    {width:100%; float:left;}

    .page-min
    {display: none;}
}

/* Wap端样式 */
@media screen and (max-width:750px) {
    body
    {
        background: linear-gradient(to right,
        #b3d2e7,
        #b6d5ea);
    }
    p.color-a
    {color:#FFD78F;}
    p.color-b
    {color:#93794B;}

    .page-min
    {width:100%; height:auto; overflow: hidden; margin:0px auto;}
    .page-min img
    {width:100%; float:left;}

    .page
    {display: none;}
}