
html 
{
	width	:	100%;
	height	:	100%;
	padding	:	0;
	margin	:	0px;
}

body {
	width	:	100%;
	height	:	100%;
	padding	:	0px;
    margin	:	0px;
    overflow-x: hidden;

    background-image: linear-gradient(#c5c8ce 0%, #fff 70%);
    background-size: 100% 200px;
    background-repeat:no-repeat;
    
    font-family: Arial, Helvetica, sans-serif;
}

.HDiv
{
    display: flex;
    
    justify-content:center;
    align-items:center;
}

.HDivS
{
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: space-between;
}
.VDiv
{
	display:flex;
    justify-content:center;
    align-items:center;
	flex-direction:column;
}

.Active:active
{
    opacity:0.5;
    transition:opacity 0.2s linear reverse;
    animation:AnimeActiveFlash 0.2s 1 reverse;
    -webkit-animation:AnimeActiveFlash 0.2s 1 reverse;
}

.AdDiv
{
    border: solid 0px #f00;
    width: calc( 100% - 30px );
    margin: 10px 15px;
    border-radius: 12px;
}

/************************ 水平分隔线 ************************/
.HLine
{
    width: calc( 100% - 2em );
    margin:1em;
	height: 1px;
	border-top: solid 1px #aaaaaa;
	border-bottom: solid 1px #FFFFFF;
	transform: scaleY(0.3);
}

/************************** 下载按钮 *********************/
.Download
{
    position: relative;
    height: 250px;
    width: 100%;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    background-color: #3478f6;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(45,140, 240, 0.3),	0 6px 32px rgba(45, 140, 240, 0.1 );
}

.Download .Title
{
    position: absolute;
    top: 30px;
    padding-bottom: 20px;
    font-size: 24px;
    color: #fff;
}

.Download .Loading
{
    position: absolute;
    width: calc( 100% - 40px );
    max-width: 600px;
    height: 10px;
    top: 160px;
    margin: 20px 0;
    border-radius: 5px;
    border: solid 0px #fff;
    box-shadow: 0 1px 2px #ccc inset;
    background-color: rgba(255,255,255,0.5);
    animation: LoadingHideKeyframes 5s ease-out 1;
    animation-fill-mode:forwards;
}
@keyframes LoadingHideKeyframes
{
    0% {    
        display: block;
    }
    90% {  
        display: block;
        opacity: 100%;
    }
    99% {  
        display: block;
        opacity: 0%;
    }
    100% {  
        display: none;
        opacity: 0%;
        animation-play-state:paused;
    }
}

.Download .Loading .Rate
{
    content: ' ';
    position: relative;
    height: calc( 100% - 0px );
    border-radius: 5px;
    border: solid 0px #fff;
    overflow: hidden;
    background-image: linear-gradient(to right, #fff 0%, #fff 100%);
    animation: DownloadLoadingKeyframes 5s ease-out 1;
}
@keyframes DownloadLoadingKeyframes
{
    0% {    
        width: 20px;
    }
    100% {  
        width: 100%;
    }
}

.Download .Loading .Anim
{
    position: absolute;
    content: ' ';
    height: 100%;
    width: 300px;
    animation: DownloadAnimKeyframes 2s  linear infinite;
    background-image: linear-gradient( to right, rgb(16, 142, 233, 0) 0%,
                                                rgb(135, 208, 104, 0.8 ) 30%,
                                                rgb(135, 208, 104, 0.8 ) 70%,
                                                rgb(135, 208, 104, 0 ) 100%
                                                 );
}
@keyframes DownloadAnimKeyframes
{
    0% {    
        left: -300px;
    }
    100% {  
        left: calc( 100% + 300px );
    }
}

.Download .Loading .Label
{
    width: 100%;
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
}

.Download .ButtonGroup
{
    position: absolute;
    bottom: 30px;
    width: 100%;
    animation: ButtonGroupKeyframes 5s ease-out 1;
    animation-fill-mode:forwards;
}
@keyframes ButtonGroupKeyframes
{
    0% {    
        display: none;
        opacity: 0;
    }
    97% {  
        display: none;
        opacity: 0;
    }
    98% {  
        display: flex;
        opacity: 0;
    }
    100% {  
        display: flex;
        opacity: 100%;
    }
}

.Download .Button
{
    width: calc( 100% - 40px );
    max-width: 600px;
    height: 50px;
    border: solid 0px #999;
    border-radius: 25px;
    background-color: #fff;
    margin: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease-out;
    box-shadow: 0 3px 6px rgba(0,0, 0, 0.15), 	0 6px 16px rgba(0, 0, 0, 0.05 );
}
.Download .Button:hover
{
    background-color: #5cadff;
    color: #fff;
}

.Download .Button img
{
    height: 36px;
    margin-top: 5px;
}

.Download .Label
{
    width: 160px;
    font-size: 20px;
    margin-left: 10px;
    font-weight: bold;
    color: #111;
}

/************************** 顶部样式 *********************/
.Top
{
    margin-top:3em;
    margin-bottom:1em;
}

.Top .Logo
{
    width:8em;
}

.Top .Logo img
{
    width:6em;
    border-radius: 24px;
    overflow: hidden;
    filter: drop-shadow( 0 0 0 rgba(255,255,255,0) ) 
            drop-shadow( 0 4px 6px rgba(0,0, 0, 0.15)) 	 	
            drop-shadow(0 6px 16px rgba(0, 0, 0, 0.05 ))
}

.Top .Right
{
    width:calc( 100% - 8em );
}

.Top .Name
{
    color:#111;
    font-weight: bold;
    font-size: 1.5em;
}

.Top .Remark
{
    color:#999;
    font-size:0.9em;
}

.Top .Button
{
    width: 6em;
    border-radius: 1em;
    background-color: #3478f6;
    color:#fff;
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;
    margin-top:1em;
    padding:0.3em;
    display: none;
}

.Top .Cost
{
    width:calc( 100% - 6em );
    padding-left:0px;
    font-size: 0.7em;
    color:#aaa;
    margin-top:1.75em;
}

/***********************   评分   *********************/
.Grade
{
    width:calc( 100% - 2em);
    margin:1em;
    margin-top:2em;
}

.Grade table
{
    width:100%;
}

.Grade table th
{
    color:#aaa;
    font-size:0.7em;
    font-weight: normal;
}

.Grade table td
{
    color:#aaa;
    font-size:1em;
    font-weight: bold;
}

/*********************** 屏幕截图 *********************/
.ScreenShot
{
    width:100%;
    height:21em;
    overflow-y: hidden;
    overflow-x: auto;
    box-sizing:border-box;
}

.ScreenShot table
{
    margin-left:0.7em;
    margin-right:1.4em;
    box-sizing:border-box;
}

.ScreenShot table td
{
    padding-left:0.2em;
    padding-right:0.2em;
}

.ScreenShot img
{
    height:20em;
    border-radius: 1em;
    overflow: hidden;
    box-shadow: 0px 0px 2px #aaa;
}

/************************ 功能信息 ************************/

.Depiction
{
    width:auto;
}

.Depiction .Title
{
    margin-left:1em;
    font-size: 1.3em;
    color:#3478f6;
    font-weight: bold;
}

.Depiction .Version
{
    margin:0.5em;
    margin-left:1em;
    font-size: 0.9em;
    color:#aaa;
}

.Depiction .Content
{
    color:#111;
    font-size: 0.95em;
    padding-left:1em;
    padding-right: 1em;
    box-sizing:border-box;
    text-indent:2em;
}

.Row
{
    width:auto;   
    display: flex;
    margin-left:1em;
    margin-right: 1em;
    width:calc( 100% - 2em );
    align-items:center;
}

.Row .Title
{
    text-align: left;
    white-space:nowrap;
    font-size: 0.9em;
    color:#aaa;
}

.Row .Content
{
    width:100%;
    text-align: right;
    white-space:nowrap;
    font-size: 0.9em;
}

.ClickTRMenu
{
    position: fixed;
    width:100%;
    height:100%;
    left:0em;
    top:0em;
    background-color: rgba(0, 0, 0, 0.8);
}

.ClickTRMenu img
{
    position: absolute;
    width:60%;
    right: 1em;
    top:0.2em;
}

.ClickTRMenu .Tip
{
    position: absolute;
    top:11em;
    color:#fff;
    font-size: 1.5em;
    padding-left:1em;
    padding-right:1em;
}

/***** Google play 下载窗口 *****/
.GooglePlayWin
{
    position: fixed;
    bottom: 5px;
    left: 5px;
    right: 5px;
    z-index: 100;
    background-color: #f2f2f6;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 0px 36px rgba( 0,0,0,0.3), 0 0 12px rgba(0,0,0,0.6);
}
.GooglePlayWin:hover
{
    background-color: #eeeeee;
}

.GooglePlayWin img
{
    width : 70%;
    max-width: 400px;
    
}