﻿

/* 提示框001 */
/* 字体 18px : 4.35vmin : 2.45vh
     16px : 3.8vmin : 2.19vh */
.W_PromptBox_001_Back{ z-index: 1000; position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.38); text-align: center; display: -webkit-flex; align-items: center; justify-content: center; }
.W_PromptBox_001_Box{ margin-bottom: 8vh; font-size: 0; background: #FFF; border-radius: 2vmin; max-width: 80vw; max-height: 50vh; box-shadow: 2px 2px 2px #888888; }
.W_PromptBox_001_Title { min-height: 22px; line-height: 22px; margin: 3.5vh 2vw 0vh; color: #303030; font-size: 18px; font-weight: bold; text-align: center; max-height: 5vh; max-width: 72vw; overflow: hidden; display: inline-block; text-overflow: ellipsis; white-space: nowrap; }
.W_PromptBox_001_Content{ min-width: 180px; padding: 1.75vh 8vw 2.5vh 8vw; font-size: 16px; text-align: center; color: #999999; overflow-y: auto; max-height: 28.5vh; }
.W_PromptBox_001_Operation{ font-size: 0; border-top: 1px solid #eee; height: 8vh; padding-bottom: 1px;}
.W_PromptBox_001_Operation_Refuse{ height: 8vh; width: 50%; font-size: 16px; color: #666; line-height: 8vh; text-align: center; display: inline-block; cursor: pointer; vertical-align: middle; }
.W_PromptBox_001_Operation_confirm{ height: 8vh; width: 50%; font-size: 16px; color: #2381E9; line-height: 8vh; text-align: center; display: inline-block; margin-left: -1px; border-left: 1px solid #eee; cursor: pointer; vertical-align: middle; }

/* 加载中 3/4圆环选择 */
.load_rotate { -webkit-transition-property: -webkit-transform; -webkit-transition-duration: .2s; -moz-transition-property: -moz-transform; -moz-transition-duration: .2s; -webkit-animation: rotate .6s linear infinite; -moz-animation: rotate .6s linear infinite; -o-animation: rotate .6s linear infinite; animation: rotate .6s linear infinite; }
        @-webkit-keyframes rotate { from { -webkit-transform: rotate(0deg);} to { -webkit-transform: rotate(360deg);} }
        @-moz-keyframes rotate { from { -moz-transform: rotate(0deg); } to { -moz-transform: rotate(359deg); } }
        @-o-keyframes rotate { from { -o-transform: rotate(0deg); } to { -o-transform: rotate(359deg); } }
        @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(359deg); } }
.load_center { margin: auto; position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.load_ring { border-radius: 50%; width: 100px; height: 100px; background: rgba(0,0,0,0); border: 10px solid aquamarine; border-top: 10px solid rgba(0,0,0,0); }


/* 提示框002 */
.W_PromptBox_002_Back { z-index: 1000; position: fixed; left: 0; top: 75vh; width: 100%; text-align: center; }
.W_PromptBox_002 { display: inline-block; color: white; background: rgba(0, 0, 0, 0.6); padding: 6px 12px; border-radius: 6px; font-family: Helvetica; font-size: 14px; }





















