@charset "utf-8";
:root
{
    --normalTextSize:16px;
    --hoverTextSize:18px;
    --hoverTextColor:#ff0000;
    font-size: 16px;
}

body
{
	background-image:url(../images/bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
    background-attachment: fixed;/*让背景图片不随body滚动*/
    text-align:center;
    /*background-color: #ff000055;*/
    font-size: 16px;
}

a{
    text-decoration-line:none;
}
a:hover{
    font-size:calc(1rem + 0px);
    color:var(--hoverTextColor);
}

#title
{
	margin:50px;
	font-size:2.4rem;
	font-weight:bold;
	color:#000000 !important;
}

#inputOuter
{
    height: 50px;
    line-height:50px;
    vertical-align:middle;

    font-size: 0px;/*此处用于消除搜索按扭和输入框间的间隙*/
}

.txtInput
{
    color:#333;/*#a2a2a2*/
    /*width:400px;*/
    height:2.2rem;
    width: 50%;
    max-width: 400px;
    min-width: 150px;
    border:1px groove #a2a2a2;
    border-radius:0.4rem 0 0 0.4rem;
    text-indent:0.5rem;
    font-size:1rem;
    line-height:1.6rem;
    vertical-align:middle;
    margin-left: 1rem;
}

.btnFind
{
    width:4rem;
    height:2.2rem;
    border-radius:0 0.4rem 0.4rem 0;
    font-size:1rem;
    color:#333;
    font-weight: 500;
    text-align:center;
    vertical-align:middle;
    background-color:#f6f6f6;
    /*margin-left: 1rem;*/
    margin-right: 1rem;
    border:1px groove #a2a2a2;
    box-sizing: content-box;/*button默认将边框宽度包括在尺寸内，即border-box*/
}

.btnFind:hover
{
    background-color:#cacaca;
    font-size:1rem;
    cursor:pointer;
}

#resultDisplay
{
    display:none;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#resultNumbers
{
    margin: 0.5rem auto;
    color:#999;
}

#tableResult
{
    margin:0px auto;
    height:100%;
}

#tableResult td
{
    font-size: 1rem;
    border: 1px solid #ccc;
}

.resultStdNameCN, .resultStdNameEN, .resultStdDescCN, .resultStdDescEN
{
    max-width: 15rem;
}

#tableResult tr:nth-child(even)
{
    font-style: italic;
    /*color:#ca9310;*/
    /*color:#5c9f19;*/
    color:#b76013;
}

#tableResult tr:nth-child(even) .resultStdNo a, 
#tableResult tr:nth-child(even) .resultStdNameCN a, 
#tableResult tr:nth-child(even) .resultStdNameEN a
{
    font-style: italic;
    color:#b76013;
}

#tableResult tr:nth-child(odd) .resultStdNo a, 
#tableResult tr:nth-child(odd) .resultStdNameCN a, 
#tableResult tr:nth-child(odd) .resultStdNameEN a
{
    color:#555;
}

#tableResult td:nth-child(even)
{
    background-color: #ddd;
}

#tableResult td
{
    padding: 2px 2px;
}

#tableResult td:last-child
{
    padding-right: 4px;
}

#tableResult td a
{
    color:rgba(0,0,255,0.5);
}

.resultStdNo a, 
.resultStdNameCN a, 
.resultStdNameEN a
{    
    cursor: url(../images/preview.cur), url(../images/preview.png), pointer;
}

#tableResult tr .resultStdNo a:hover,
#tableResult tr .resultStdNameCN a:hover, 
#tableResult tr .resultStdNameEN a:hover
{    
    color:rgba(0,0,255,0.5);
}

.resultStdDescCN
{
    display: none;
}

.resultStdDescEN
{
    display: none;
}

.resultLastStdNo
{
    display: none;
}

.resultNextStdNo
{
    display: none;
}

.resultStdDownTimes
{
    display: none;
}

.tableLeft
{
    text-align:right;
    padding-right:10px;
}

.tableRight
{
    text-align:left;
    padding-left:10px;
}

#resultPageContainer
{
    margin: 0.5rem auto;
    color:#999;
    display: none;
}

.resultPageDv
{
    display: inline-block;
    cursor: pointer;
}

#resultPageTipCurrPage, #resultPageTipTotalPages
{
    cursor: auto;
}

.resultPageDv:hover
{
    text-decoration: underline;
    color:rgba(0,0,255,0.5);
}

#resultPageTipCurrPage:hover, #resultPageTipTotalPages:hover
{
    text-decoration: none;
    color:#999;
}

#resultPageGoContainer
{
    cursor: auto;
}

#resultPageGoContainer:hover
{
    text-decoration: none;
    color:#999;    
}

.resultPageGo
{
    display: inline-block;
}

#resultPageGoIn
{
    width: 2rem;
    min-width: 1rem;
    max-width: 5rem;
    text-align: center;
    border: 1px solid #999;
    border-radius: 0.25rem;
    height: 1.58rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

#resultPageGoBtn
{
    color:#999;
    /*border: 1px solid #999;*/
    border-radius: 0.25rem;
    padding-left: 0.18rem;
    padding-right: 0.18rem;    
    cursor: pointer;
    text-shadow: 1px 1px 1px #fff, -1px -1px 1px #000;
    box-shadow: 0px 0px 5px 3px #999;
    border-top: none;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    border-left: none;
}

#resultPageGoBtn:hover
{
    /*box-shadow: -1px -1px 5px 3px #999; */
    border-top: 1px solid #999;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid #999;
}

#noResultTip
{
    display:none;
    color:#ff0000;
}

#login_out
{
    display: inline-block;
    position: fixed;
    top:2rem;
    right: 2rem;
    width: 2rem;
    height: 2rem;
    overflow: hidden;
}

#login_out_img
{    
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    background: url(../images/login_out.png) 0rem 0rem no-repeat;
    background-size: cover;
}

#login_out_img:hover
{    
    width: 1.88rem;
    height: 1.88rem;
}

#ul_out_menu
{
    display: inline-block;
    position: fixed;
    top: 4rem;
    right: -4rem;
}

#ul_in_menu
{
    display: inline-block;
    position: fixed;
    top: 4rem;
    right: -4rem;
}

#ul_out_menu li, #ul_in_menu li
{
    cursor: pointer;
    border-bottom: 1px dotted #555;
}

#li_upload
{
    display: none;
}

#ul_out_menu li:last-child, #ul_in_menu li:last-child
{
    border-bottom: none;
}

#ul_out_menu li:hover, #ul_in_menu li:hover
{
    font-weight: bold;
    background-color:#ccc;
}

/*dialog start*/

#dialog
{
    
}

#dialog > div /*#dialog_my_info, #dialog_login, #dialog_reg*/
{
    width:66%;
    min-width: 250px;
    max-width: 350px;
    min-height: 150px;   
    
    position: fixed;
    left: -100%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1rem;
    box-shadow: 0px 0px 6px 3px #aaa;
    background-color: #dce3e6;

    /*-moz-transition: all 0.5s ease-out;*/
    transition: all 0.5s ease-out;

}

#dialog #dialog_my_info, #dialog #dialog_upload
{
    width:88%;
    /*min-width: 250px;
    max-width: 350px;
    min-height: 150px;   */

    /*left: 50%;*/

}

#dialog #dialog_change_pwd
{
    /*left:50%;*/
}

.dialog_tb_tips
{
    height: 1.5rem !important;
    color: red;
    font-weight: bold;
    cursor: pointer;
}


.dialog_title
{
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

.dialog_main
{
    width:88%;
    min-width: 200px;
    max-width: 300px;  
    margin:0.5rem auto;
}

#dialog_my_info_main
{
    border-collapse: separate;
    border-spacing: 0;
}

#dialog tr
{
    height: 2.5rem;
}

#dialog .orders_tr
{
    display: table;
    table-layout: fixed;
    width: 100%;
}

#dialog td
{
    /*border:1px solid red;*/
}


.dialog_my_info_head
{
    display: inline-block;
    padding: 0.25rem;
    cursor: pointer;
}

.dialog_my_info_head_current
{
    font-weight: bold;
    border: 1px solid #999;
    border-bottom: none;
    border-radius: 0.5rem 0.5rem 0 0;
}

#dialog_my_info_inf_main
{  
    height: calc(191px + 1rem);
    border: 1px solid #999;
    border-bottom: none;
    border-radius: 0.5rem 0.5rem 0 0;
    margin: 0px 1rem auto 1rem;  
}

#dialog_my_info_inf_main div
{  
    
}

.dialog_my_info_inf_span_left
{
    display: inline-block;
    width: 35%;    
    height: 2rem;
    line-height: 2rem;
    text-align: right;
}

.dialog_my_info_inf_span_right
{    
    display: inline-block;
    width: calc(65% - 2rem);
    height: 2rem;
    line-height: 2rem;
    text-align: left;
}

#dialog_my_info_orders
{
    display: none;
    font-size: 0.88rem;
}

#dialog_upload_file
{
    width: 88%;
}

#dialog_upload_file, #dialog_edit_file
{
    margin:0.5rem auto;
    cursor: pointer;
}


#dialog_upload_container, #dialog_edit_container
{
    display: none;
    font-size: 0.88rem;
}

#dialog_edit_container
{
    display: block;
}

#dialog_edit_file
{
    width:55%;
}

#dialog_my_info_orders_header, #dialog_upload_header, #dialog_edit_header
{
    width: calc(100% - 2rem - 2px);
    margin: 0 auto;
    border: 1px solid #999;
    border-bottom: none;
    border-radius: 0.5rem 0.5rem 0 0;
}

#dialog_upload_header, #dialog_edit_header
{
    height: 1rem;
}

#dialog_my_info_orders_main, #dialog_upload_main, #dialog_edit_main
{    
    height: 188px;
    overflow-y: scroll;
    border: 1px solid #999;
    margin: 0px 1rem auto 1rem;  
    border-top: none;
    border-bottom: none; 
}

#dialog_my_info_orders_main
{
    background-image: url(../images/progress.gif);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.dialog_upload_main_label, .dialog_upload_main_input, .dialog_upload_main_ta
{
    width: 88%;
    text-align: left;
    margin: 0 auto;
}

.dialog_upload_main_input
{
    border: 1px solid #999;
}

.dialog_upload_radio
{
    width: auto;
}

.dialog_upload_main_ta
{
    height: 2.5rem;
    border: 1px solid #999;
}

#in_is_not_valid
{
    margin-left: 5rem;
}

.btns
{
    margin:0.25rem auto;
}

.dialog_my_info_orders_left_span
{
    display: inline-block;
    width: 2rem;
}

.dialog_my_info_orders_mid_span
{
    display: inline-block;
    width: calc(100% - 11rem);
}

.dialog_my_info_orders_right_span
{
    display: inline-block;
    width: 8rem;
}

.dialog_main_gap
{
    height: 1rem;
    width: calc(100% - 2rem - 2px);
    margin: 0 auto;
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    border: 1px solid #999;
    border-top: none;
}

.dialog_lb
{
    max-width: 6rem;
    min-width:4rem;
    text-align: right;
    padding: 0 0.25rem;
}

.dialog_input
{
    /*width: calc(100% - 6rem - 2px);*/
    text-align: left;
    padding: 0 0.25rem;
}

.dialog_input input
{
    height: 1.8rem;
    font-size: 1rem;
    border: 1px solid #999;
    border-radius: 0.25rem;
    width: 95%;
    min-width: 100px;
    max-width: 225px;
}

.dialog_tips
{
    font-size: 0.8rem;
    color:red;
    height: 1.5rem !important;
}

.dialog_upload_tips
{
    color:red;
    font-weight: bold;
}

.dialog_btns input, .btn
{
    height: 2rem;
    background-color: #cdd4d7;
    font-size: 0.88rem;
    cursor: pointer;
    border-radius: 0.4rem;
    padding: 0 0.4rem;
    margin-right: 0.5rem;
}

#dialog_upload_result_tip
{
    display: none;
}


#dialog_reg_verify_btn
{
    background: #6495ed;
    border-radius: 50% 50%;
    border-color: #6495ed;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.66), -1px -1px 1px #fff;/*凸出效果*/
}

#dialog_reg_verify_btn:hover
{
    text-shadow: 1px 1px 1px #fff, -1px -1px 1px rgba(0,0,0,0.66);/*凹入效果*/
}

#email_dn_lb
{
    max-width: 3rem;
    min-width: 1rem;
}

#dn_tips
{
    text-align: left;
}

#dialog #dialog_pay_result
{
    min-height: 50px;
}

#dialog_pay_result_title, #dialog_logined_pay_detail_title
{
    color:#006400;
}

#dialog_pay_return_main
{
    text-align: center;
}

#dialog_pay_return
{
    transition: all 0.5s ease-out;
}

#dialog #dialog_logined_pay_detail
{
    min-height: 88px;
}

#dialog #dialog_pay_return
{
    min-height: 105px;
}

/*dialog end*/

#footer
{
    width: 100%;
    position: fixed;
    bottom: 1rem;
}

#footer p, #footer a
{
    font-size: 12px;
    color: #999;
}

#footer a:hover
{
    font-size: 12px;
    color: #666;
}

.spacing
{
    height: 0.5rem;
}

/*宝贝详情页开始-----------------------*/
#productDetailsTitle
{
    margin: 50px;
    font-size: 2.5rem;
    font-weight: bold;
    color:#000000 !important;
}

#productDetailsForm
{
    display: inline-block;
}
.productDetails
{
    margin: 0.5rem auto;
    color:#999;
}

.productDetails tr
{
    height: 2rem;
    min-height: 1.5rem;
}

.productDetails td
{
    font-size: 1rem;
}

.productDetailsPrice
{
    color:red;
    min-width: 3rem;
    text-align: center;
}

.productDetailsDesc
{
    color: #999;
    min-width: 3rem;
    text-align: left;
}

.productDetailsCount
{
    color: #999;  
    font-size: 1rem;
    width: 20rem;  
    min-width: 15rem;
    padding: 0.1rem;
    border-radius: 0.25rem;
    border: 1px solid transparent;
    text-align: center;
    background: transparent;
}

.productDetailsEmail
{
    color: red; 
    font-size: 1rem; 
    width: 20rem;  
    min-width: 15rem;
    padding: 0.1rem;
    border-radius: 0.25rem;
    border: 1px solid #ccc;
    text-align: center;
    background: transparent; 
}

#productDetailsPayBtn
{ 
    color: white;  
    background: rgb(51, 181, 51);
    width: 5rem;  
    min-width: 3rem;
    padding: 0.1rem;
    border-radius: 5rem;
    border: 1px solid #ccc;
    text-align: center;
    cursor: pointer;
    box-shadow: 1px 1px 4px 2px #999;
}

#productDetailsPayBtn:hover
{      
    /*background: rgb(15, 140, 15);*/
    box-shadow: -1px -1px 4px 2px #999;
}

.productDetailsLbl
{
    text-align: right;
    padding-right:1rem;
}

.productDetails .productDetailsPayBtnTr
{
    height: 3rem;
    min-height: 2rem;
}

#productDetailsImg
{
    width: 10rem;
    height: 10rem;
    display: inline-block;
    margin: auto 2rem;
    background: url(../images/product.png) center no-repeat;
    background-size: cover;
    background-color: transparent;
    box-shadow: 0px 0px 6px 5px #ccc;
    border-radius: 50%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.productDetailsEmailDesc
{
    width: 15rem;
    min-width: 10rem;
    text-align: left;
    color: lightblue;
    border: 1px dashed lightblue;
    padding: 0.5rem;
}

#productDetailsBody
{

}

#productDetailsBodyTitle
{
    color:#e3a81b;
    font-size: 1.88rem; 
    text-shadow: 1px 1px 1px #fff, -1px -1px 1px rgba(0,0,0,0.66);
}

#productDetailsBodyDesc
{
    box-shadow: 0px 0px 2px 2px #ccc;
    width: 50%;
    margin: 1rem auto;
    min-width: 50rem;
    max-width: 88%;
    padding: 1rem 0.5rem;
    border-radius: 2rem;
    height: 6rem;
    min-width: 3rem;
    background:rgba(0,0,0,0.18);
}

#productDetailsBodyDescContainer
{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 1rem;
    padding-right: 1rem;  
    text-align: left;
    text-indent: 2rem;  
}

#productDetailsBodyDescContainer p
{
    padding: 0.5rem 0px;
}

/*宝贝详情页结束-----------------------*/

/*预览开始----------------------------*/
#dialog #dialog_preview 
{
    width: inherit;
    min-width: inherit;
    max-width: inherit;
    min-height: inherit;
/*
    width: unset;
    min-width: unset;
    max-width: unset;
    min-height: unset;
*/    
    background: #000;
    box-shadow: 1px 1px 9px 3px #666, -2px -2px 1px 1px #fff;
}

#dialog_preview_main
{
/*
    min-width: unset;
    max-width: unset;
  */  
    min-width: inherit;
    max-width: inherit;
}

#dialog_preview_title
{
    color: #666;
    font-size: 1.3rem;
    text-shadow: 1px 1px 1px rgb(0, 0, 0), -1px -1px 1px #fff;
}

#dialog_preview_img_td
{
    
}

#dialog_preview_img_container
{
    /*width: unset;*/
    width: inherit;
    min-width: calc(100% - 1rem);
    height: auto;
    /*padding: 1rem;*/
    box-sizing: border-box;
    border: 0.5rem solid #000;
    border-top: none;
    border-bottom: none;
    background: white;
    cursor: grab;
    cursor: -webkit-grab;
    overflow:hidden;   
    font-size: 0px;   
    margin: auto; 
}

#dialog_preview_img_inner
{
    width: 100%;
    height: auto;
    position: relative;
    transition: all 0.1s ease-in-out 0s;    
}

#dialog_preview_img_inner img
{
    /*width: auto;
    height: 100%;*/
    width: 100%;
    height: auto;
    display: block;
}

#endTips
{
    display: none;
    width: 100%;
    position: fixed;
    bottom: 311px;
    left: 0px;
    color: red;
    font-size: 4rem;
    font-weight: bolder;
    transform: translateY(-50%);
}

#dialog_preview_close_btn
{
    background: #ccc;
    border-radius: 50%;
}
/*预览结束----------------------------*/

/*帮助开始----------------------------*/
#dialog #dialog_help
{
    width: inherit;
    min-width: 200px;
    max-width: inherit;
    min-height: inherit;
}

#dialog_help table tr td
{
    font-size: 1rem;
}

#dialog_help table tr td img
{
    max-width: 100%;
}

#dialog_help_main
{
    max-width: inherit;
}

#dialog_help_txt_td
{
    display: block;
    border: 2px dashed #999;
    padding: 0.5rem;
    border-radius: 1rem;
    /*margin: 0px 1rem;*/
}

#dialog_help_txt_dv
{
    overflow-y: scroll;
    height: 8.8rem;
}

#dialog_help_txt_wechat
{
    color:red;
}

/*帮助结束----------------------------*/

/*help开始----------------------------*/
#customer_service
{
    background: url(../images/help.gif) center no-repeat;
    background-size: auto;
    width: 4rem;
    height: auto;
    min-height: 5rem;
    background-size: contain;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out 0.1s;
    opacity: 0.3;/*Firefox, Safari(WebKit), Opera) */
    filter: "alpha(opacity=30)";　　   /* IE 8 */
    filter: alpha(opacity=30);　　  /* IE 4-7 */
}

#customer_service:hover
{
    background: url(../images/help.png) center no-repeat;
    opacity: 1;/*Firefox, Safari(WebKit), Opera) */
    filter: "alpha(opacity=100)";　　   /* IE 8 */
    filter: alpha(opacity=100);　　  /* IE 4-7 */
}
/*help结束----------------------------*/


#mask
{
    width: 100%;
    height: 500px;
    background-color:rgba(0,0,0,0.8);/*#000d*/
    position: fixed;
    left: 0;
    top: 0;
}

.cursor_pointer
{
    cursor: pointer;
}

.txtInput::-webkit-input-placeholder
{
    color:#ccc;
}

.txtInput::-moz-placeholder
{
    color:#ccc;
}

.txtInput:-moz-placeholder
{
    color:#ccc;
}

.txtInput:-ms-input-placeholder
{
    color:#ccc;
}


.dialog_txt_in::-webkit-input-placeholder
{
    color:#ccc;
    font-size: 1rem;
}

.dialog_txt_in::-moz-placeholder
{
    color:#ccc;
    font-size: 1rem;
}

.dialog_txt_in:-moz-placeholder
{
    color:#ccc;
    font-size: 1rem;
}

.dialog_txt_in:-ms-input-placeholder
{
    color:#ccc;
    font-size: 1rem;
}