﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "SimSun", "宋体", serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.header h1 {
    color: #8B0000;
    font-size: 24px;
    margin-bottom: 10px;
}

.basic-info {
    margin-bottom: 25px;
}

.basic-info table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.basic-info td {
    padding: 8px 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.basic-info td:first-child {
    width: 25%;
    background-color: #f9f9f9;
    font-weight: bold;
    text-align: left;
}

.destiny-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.destiny-table th, .destiny-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.destiny-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.red-text {
    color: #8B0000;
}

.section-title {
    font-size: 18px;
    color: #8B0000;
    margin: 20px 0 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
}

.lucky-cycle {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.lucky-cycle th, .lucky-cycle td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.lucky-cycle th {
    background-color: #f2f2f2;
}

.footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.yin-yang-symbol {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    opacity: 0.1;
}












/* -------------------------------------------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    height:100%;
}

.container2 {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.form-container {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 20px;
}

.form-header {
    padding: 15px;
    font-size: 16px;
    color: #999;
    border-bottom: 1px solid #eee;
}

.form-group {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.form-label {
    width: 110px;
    font-size: 16px;
    color: #333;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    padding-top: 5px;
}

.form-label.required::before {
    content: "*";
    color: #f44;
    margin-right: 5px;
}

.form-input {
    flex: 1;
    border: none;
    font-size: 16px;
    color: #333;
    outline: none;
    background-color: transparent;
}

.form-input::placeholder {
    color: #ccc;
}

.date-time-picker {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-time-value {
    color: #333;
}

.arrow-icon {
    color: #ccc;
    font-size: 18px;
}

.submit-btn {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #4285f4;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    /* margin-top: 60%; */
    cursor: pointer;
    position: relative;
    
    
}

.submit-btn:active {
    background-color: #3367d6;
}
.select_on{
    width: 230px;
    height: 36px;
    /* border: 1px solid #808080; */
}
.input_onm{
    width: 245px;
    border: 1px solid #808080;
}
.radio-inputp{
    margin-bottom: 10px;
    margin-top: 8px;
}
.mxts_css{
    
    word-wrap: break-word; /* 允许在单词内换行 */
    overflow-wrap: break-word;
}

/* #overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
#login-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 5px;
    z-index: 1000;
} */

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    display: none; /* 初始隐藏 */
    z-index: 1000; /* 位于最上层 */
}
/* 加载动画样式 */
.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #ccc;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

.submit-btn2 {
    /* display: block; */
    width: 49%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #4285f4;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    /* margin-top: 60%; */
    cursor: pointer;
    position: relative;
    
    
}

.submit-btn2:active {
    background-color: #3367d6;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

