|
@@ -1,280 +1,281 @@
|
|
|
/* 菜单部分 */
|
|
|
.main {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
}
|
|
|
|
|
|
.arrow {
|
|
|
- border-top: 10px solid #125DB2;
|
|
|
- border-bottom: 10px solid transparent;
|
|
|
- border-left: 10px solid transparent;
|
|
|
- border-right: 10px solid transparent;
|
|
|
- position: absolute;
|
|
|
- right: 26px;
|
|
|
- top: 60px;
|
|
|
-}
|
|
|
-.menu{
|
|
|
- width:100%;
|
|
|
- height:40px;
|
|
|
- box-sizing:border-box;
|
|
|
- overflow-x:auto;
|
|
|
- overflow-y:hidden;
|
|
|
- background: #EBF4FF;
|
|
|
-}
|
|
|
-.menu::-webkit-scrollbar{display:none;}
|
|
|
-.main .tabs{
|
|
|
- line-height:40px;
|
|
|
- white-space:nowrap;
|
|
|
- background: #EBF4FF;
|
|
|
+ border-top: 10px solid #125db2;
|
|
|
+ border-bottom: 10px solid transparent;
|
|
|
+ border-left: 10px solid transparent;
|
|
|
+ border-right: 10px solid transparent;
|
|
|
+ position: absolute;
|
|
|
+ right: 26px;
|
|
|
+ top: 60px;
|
|
|
+}
|
|
|
+.menu {
|
|
|
+ width: 100%;
|
|
|
+ height: 40px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ overflow-x: auto;
|
|
|
+ overflow-y: hidden;
|
|
|
+ background: #ebf4ff;
|
|
|
+}
|
|
|
+.menu::-webkit-scrollbar {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.main .tabs {
|
|
|
+ line-height: 40px;
|
|
|
+ white-space: nowrap;
|
|
|
+ background: #ebf4ff;
|
|
|
}
|
|
|
.main .tabs li {
|
|
|
- font-size: 16px;
|
|
|
- font-weight: bold;
|
|
|
- color: #333333;
|
|
|
- display:inline-block;
|
|
|
- width: 120px;
|
|
|
- height:100%;
|
|
|
- text-align:center;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #333333;
|
|
|
+ display: inline-block;
|
|
|
+ width: 120px;
|
|
|
+ height: 100%;
|
|
|
+ text-align: center;
|
|
|
}
|
|
|
-.main .tabs li .list{
|
|
|
- display: flex;
|
|
|
- height:40px;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-evenly;
|
|
|
+.main .tabs li .list {
|
|
|
+ display: flex;
|
|
|
+ height: 40px;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-evenly;
|
|
|
}
|
|
|
|
|
|
.main .tabs li.click {
|
|
|
- background: #125DB2;
|
|
|
- color: #fff;
|
|
|
+ background: #125db2;
|
|
|
+ color: #fff;
|
|
|
}
|
|
|
/* 公共样式 */
|
|
|
.content {
|
|
|
- margin-top: 20px;
|
|
|
+ margin-top: 20px;
|
|
|
}
|
|
|
-.content .items{
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
+.content .items {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
}
|
|
|
|
|
|
.content .year {
|
|
|
- width: 180px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- font-size: 16px;
|
|
|
- color: #333333;
|
|
|
- left: 50%;
|
|
|
- margin-left: -90px;
|
|
|
+ width: 180px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #333333;
|
|
|
+ left: 50%;
|
|
|
+ margin-left: -90px;
|
|
|
}
|
|
|
|
|
|
.content .year select {
|
|
|
- height: 34px;
|
|
|
- border: 1px solid #D5D5D5;
|
|
|
- background: #fff;
|
|
|
- border-radius: 4px;
|
|
|
- text-align: center;
|
|
|
- cursor: pointer;
|
|
|
- text-align: center;
|
|
|
- padding: 0 22%;
|
|
|
-}
|
|
|
-option{
|
|
|
- text-align: center;
|
|
|
+ height: 34px;
|
|
|
+ border: 1px solid #d5d5d5;
|
|
|
+ background: #fff;
|
|
|
+ border-radius: 4px;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+ text-align: center;
|
|
|
+ padding: 0 22%;
|
|
|
+}
|
|
|
+option {
|
|
|
+ text-align: center;
|
|
|
}
|
|
|
select {
|
|
|
- /*将默认的select选择框样式清除*/
|
|
|
- appearance:none;
|
|
|
- -moz-appearance:none;
|
|
|
- -webkit-appearance:none;
|
|
|
- }
|
|
|
- /*清除ie的默认选择框样式清除,隐藏下拉箭头*/
|
|
|
+ /*将默认的select选择框样式清除*/
|
|
|
+ appearance: none;
|
|
|
+ -moz-appearance: none;
|
|
|
+ -webkit-appearance: none;
|
|
|
+}
|
|
|
+/*清除ie的默认选择框样式清除,隐藏下拉箭头*/
|
|
|
select::-ms-expand {
|
|
|
- display: none;
|
|
|
+ display: none;
|
|
|
}
|
|
|
-.option{
|
|
|
- background: #fff !important;
|
|
|
+.option {
|
|
|
+ background: #fff !important;
|
|
|
}
|
|
|
/* 社会保障 */
|
|
|
.div-shbz .itemData {
|
|
|
- display: flex;
|
|
|
- flex-wrap: wrap;
|
|
|
- justify-content: space-evenly;
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ justify-content: space-evenly;
|
|
|
}
|
|
|
|
|
|
.div-shbz .itemData li {
|
|
|
- width: 176px;
|
|
|
- height: 72px;
|
|
|
- background: #F0F0F0;
|
|
|
- border-radius: 10px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- font-size: 12px;
|
|
|
- color: #333333;
|
|
|
- margin-top: 19px;
|
|
|
+ width: 176px;
|
|
|
+ height: 72px;
|
|
|
+ background: #f0f0f0;
|
|
|
+ border-radius: 10px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 12px;
|
|
|
+ color: #333333;
|
|
|
+ margin-top: 19px;
|
|
|
}
|
|
|
-.div-shbz .itemData li img{
|
|
|
- width: 70px;
|
|
|
+.div-shbz .itemData li img {
|
|
|
+ width: 70px;
|
|
|
}
|
|
|
|
|
|
.div-shbz .itemData li .right .bottom {
|
|
|
- display: flex;
|
|
|
- align-items: flex-end;
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-end;
|
|
|
}
|
|
|
|
|
|
.div-shbz .itemData li .right .bottom .number {
|
|
|
- font-size: 24px;
|
|
|
- font-weight: bold;
|
|
|
- font-style: italic;
|
|
|
- color: #004A93;
|
|
|
+ font-size: 24px;
|
|
|
+ font-weight: bold;
|
|
|
+ font-style: italic;
|
|
|
+ color: #004a93;
|
|
|
}
|
|
|
|
|
|
.div-shbz .itemData li .right .bottom .unit {
|
|
|
- color: #999999;
|
|
|
- margin-left: 10px;
|
|
|
+ color: #999999;
|
|
|
+ margin-left: 10px;
|
|
|
}
|
|
|
.div-shbz .shbzTablem {
|
|
|
- margin-top: 10px;
|
|
|
+ margin-top: 10px;
|
|
|
}
|
|
|
|
|
|
.div-shbz .shbzTablem .title,
|
|
|
.div-shbz .shbzTablem .number {
|
|
|
- display: flex;
|
|
|
- font-size: 14px;
|
|
|
- color: #FFFFFF;
|
|
|
- margin: 0 5px;
|
|
|
+ display: flex;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #ffffff;
|
|
|
+ margin: 0 5px;
|
|
|
}
|
|
|
|
|
|
.div-shbz .shbzTablem .title li,
|
|
|
.div-shbz .shbzTablem .number li {
|
|
|
- width: 120px;
|
|
|
- height: 60px;
|
|
|
- background: #7293B9;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- border-right: 1px solid #fff;
|
|
|
+ width: 120px;
|
|
|
+ height: 60px;
|
|
|
+ background: #7293b9;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ border-right: 1px solid #fff;
|
|
|
}
|
|
|
|
|
|
.div-shbz .shbzTablem .number li {
|
|
|
- background: #fff;
|
|
|
- color: #333;
|
|
|
- border: 1px solid #7293B9;
|
|
|
- border-right: none;
|
|
|
+ background: #fff;
|
|
|
+ color: #333;
|
|
|
+ border: 1px solid #7293b9;
|
|
|
+ border-right: none;
|
|
|
}
|
|
|
|
|
|
.div-shbz .shbzTablem .number li:last-child,
|
|
|
.div-shbz .shbzTablem .title li:last-child {
|
|
|
- border-right: 1px solid #7293B9;
|
|
|
+ border-right: 1px solid #7293b9;
|
|
|
}
|
|
|
|
|
|
/* 文化wenlv */
|
|
|
.div-whwl .wsylTable {
|
|
|
- margin-top: 20px;
|
|
|
+ margin-top: 20px;
|
|
|
}
|
|
|
|
|
|
.div-whwl .wsylTable .title,
|
|
|
.div-whwl .wsylTable .number {
|
|
|
- display: flex;
|
|
|
- font-size: 18px;
|
|
|
- font-family: Microsoft YaHei;
|
|
|
- color: #FFFFFF;
|
|
|
- margin: 0 5px;
|
|
|
+ display: flex;
|
|
|
+ font-size: 18px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ color: #ffffff;
|
|
|
+ margin: 0 5px;
|
|
|
}
|
|
|
|
|
|
.div-whwl .wsylTable .title li,
|
|
|
.div-whwl .wsylTable .number li {
|
|
|
- width: 160px;
|
|
|
- height: 60px;
|
|
|
- background: #7293B9;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- border-right: 1px solid #fff;
|
|
|
+ width: 160px;
|
|
|
+ height: 60px;
|
|
|
+ background: #7293b9;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ border-right: 1px solid #fff;
|
|
|
}
|
|
|
|
|
|
.div-whwl .wsylTable .number li {
|
|
|
- background: #fff;
|
|
|
- color: #333;
|
|
|
- border: 1px solid #7293B9;
|
|
|
- border-right: none;
|
|
|
- text-align: center;
|
|
|
+ background: #fff;
|
|
|
+ color: #333;
|
|
|
+ border: 1px solid #7293b9;
|
|
|
+ border-right: none;
|
|
|
+ text-align: center;
|
|
|
}
|
|
|
|
|
|
.div-whwl .wsylTable .number li:last-child,
|
|
|
.div-whwl .wsylTable .title li:last-child {
|
|
|
- border-right: 1px solid #7293B9;
|
|
|
+ border-right: 1px solid #7293b9;
|
|
|
}
|
|
|
|
|
|
.div-whwl .range {
|
|
|
- display: flex;
|
|
|
- justify-content: flex-end;
|
|
|
- padding-right: 5px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-end;
|
|
|
+ padding-right: 5px;
|
|
|
}
|
|
|
|
|
|
.div-whwl .range button {
|
|
|
- width: 156px;
|
|
|
- height: 34px;
|
|
|
- background: #FFFFFF;
|
|
|
- border: 1px solid #999999;
|
|
|
- color: #999999;
|
|
|
- font-size: 16px;
|
|
|
- font-family: Microsoft YaHei;
|
|
|
- cursor: pointer;
|
|
|
+ width: 156px;
|
|
|
+ height: 34px;
|
|
|
+ background: #ffffff;
|
|
|
+ border: 1px solid #999999;
|
|
|
+ color: #999999;
|
|
|
+ font-size: 16px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
|
|
|
.div-whwl .range button.click {
|
|
|
- border: 1px solid #4582EC !important;
|
|
|
- color: #4684ED;
|
|
|
+ border: 1px solid #4582ec !important;
|
|
|
+ color: #4684ed;
|
|
|
}
|
|
|
/* 卫生医疗 */
|
|
|
.div-wsyl {
|
|
|
- position: relative;
|
|
|
- margin-top: 20px;
|
|
|
+ position: relative;
|
|
|
+ margin-top: 20px;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
.div-wsyl .cont {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- align-items: center;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
}
|
|
|
.div-wsyl .cont .detail {
|
|
|
- width: 88%;
|
|
|
- border-radius: 10px;
|
|
|
- background-size: 100% 100%;
|
|
|
- padding: 30px 15px;
|
|
|
- box-sizing: border-box;
|
|
|
- margin-bottom: -15px;
|
|
|
+ width: 88%;
|
|
|
+ border-radius: 10px;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ padding: 30px 15px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ margin-bottom: -15px;
|
|
|
}
|
|
|
-.div-wsyl .cont img{
|
|
|
- width: 99%;
|
|
|
+.div-wsyl .cont img {
|
|
|
+ width: 99%;
|
|
|
}
|
|
|
.div-wsyl .cont .list li {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
}
|
|
|
|
|
|
.div-wsyl .cont .list li span:first-child {
|
|
|
- font-size: 16px;
|
|
|
- font-family: Microsoft YaHei;
|
|
|
- color: #666666;
|
|
|
- line-height: 36px;
|
|
|
+ font-size: 16px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ color: #666666;
|
|
|
+ line-height: 36px;
|
|
|
}
|
|
|
|
|
|
.div-wsyl .cont .list li span:last-child {
|
|
|
- width: 70px;
|
|
|
- font-size: 20px;
|
|
|
- font-family: Microsoft YaHei;
|
|
|
- font-weight: bold;
|
|
|
- font-style: italic;
|
|
|
- color: #125DB2;
|
|
|
- line-height: 36px;
|
|
|
+ width: 70px;
|
|
|
+ font-size: 20px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ font-weight: bold;
|
|
|
+ font-style: italic;
|
|
|
+ color: #125db2;
|
|
|
+ line-height: 36px;
|
|
|
}
|
|
|
|
|
|
.div-wsyl .right .title {
|
|
|
- width: 100vw;
|
|
|
+ /* width: 100vw;
|
|
|
height: 40px;
|
|
|
line-height: 40px;
|
|
|
text-align: center;
|
|
@@ -283,135 +284,153 @@ select::-ms-expand {
|
|
|
font-size: 18px;
|
|
|
color: #333333;
|
|
|
margin-left: 0;
|
|
|
- margin-bottom: -1px;
|
|
|
+ margin-bottom: -1px; */
|
|
|
+}
|
|
|
+
|
|
|
+.new-title {
|
|
|
+ background: url("../images/skill-title.png");
|
|
|
+ background-size: 100% 100%;
|
|
|
+ width: 160px;
|
|
|
+ line-height: 33px;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 16px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #0084ff;
|
|
|
+ margin: 40px auto;
|
|
|
+ margin-bottom: 25px;
|
|
|
}
|
|
|
|
|
|
.div-wsyl .title .select {
|
|
|
- background: #125DB2;
|
|
|
- color: #fff !important;
|
|
|
- overflow: auto;
|
|
|
- display: flex;
|
|
|
- white-space: normal;
|
|
|
- text-overflow: unset;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- line-height: 20px;
|
|
|
+ background: #125db2;
|
|
|
+ color: #fff !important;
|
|
|
+ overflow: auto;
|
|
|
+ display: flex;
|
|
|
+ white-space: normal;
|
|
|
+ text-overflow: unset;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ line-height: 20px;
|
|
|
}
|
|
|
/* 社会救助 */
|
|
|
-.div-shjz,.div-wsyl{
|
|
|
- /* overflow-x: scroll;
|
|
|
+.div-shjz,
|
|
|
+.div-wsyl {
|
|
|
+ /* overflow-x: scroll;
|
|
|
width: 1075px; */
|
|
|
}
|
|
|
-.div-shjz .title,.div-wsyl .title {
|
|
|
- width: 100%;
|
|
|
+.div-shjz .title,
|
|
|
+.div-wsyl .title {
|
|
|
+ /* width: 100%;
|
|
|
height: 50px;
|
|
|
- margin: 10px auto;
|
|
|
- background: #EBF4FF;
|
|
|
+ margin: 10px auto; */
|
|
|
+ /* background: #EBF4FF; */
|
|
|
}
|
|
|
|
|
|
-.div-shjz .title,.div-wsyl .title {
|
|
|
- display: flex;
|
|
|
- justify-content: space-evenly;
|
|
|
+.div-shjz .title,
|
|
|
+.div-wsyl .title {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-evenly;
|
|
|
}
|
|
|
|
|
|
-.div-shjz .title .list,.div-wsyl .title .list {
|
|
|
- width: 140px;
|
|
|
- height: 50px;
|
|
|
- line-height: 50px;
|
|
|
- font-size: 14px;
|
|
|
- font-family: Microsoft YaHei;
|
|
|
- color: #333333;
|
|
|
- text-align: center;
|
|
|
- cursor: pointer;
|
|
|
- padding: 0 5px;
|
|
|
- box-sizing: border-box;
|
|
|
- overflow: hidden;
|
|
|
- white-space: nowrap;
|
|
|
- text-overflow: ellipsis;
|
|
|
+.div-shjz .title .list,
|
|
|
+.div-wsyl .title .list {
|
|
|
+ width: 140px;
|
|
|
+ height: 50px;
|
|
|
+ line-height: 50px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ color: #333333;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+ padding: 0 5px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ overflow: hidden;
|
|
|
+ white-space: nowrap;
|
|
|
+ text-overflow: ellipsis;
|
|
|
}
|
|
|
|
|
|
.div-shjz .title .select {
|
|
|
- background: #125DB2;
|
|
|
- color: #fff !important;
|
|
|
- overflow: auto;
|
|
|
- display: flex;
|
|
|
- white-space: normal;
|
|
|
- text-overflow: unset;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- line-height: 20px;
|
|
|
+ background: #125db2;
|
|
|
+ color: #fff !important;
|
|
|
+ overflow: auto;
|
|
|
+ display: flex;
|
|
|
+ white-space: normal;
|
|
|
+ text-overflow: unset;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ line-height: 20px;
|
|
|
}
|
|
|
/* 教育领域 */
|
|
|
.div-jyly .title {
|
|
|
- font-size: 20px;
|
|
|
- color: #333333;
|
|
|
- margin: 20px auto;
|
|
|
- text-align: center;
|
|
|
+ font-size: 20px;
|
|
|
+ color: #333333;
|
|
|
+ margin: 20px auto;
|
|
|
+ text-align: center;
|
|
|
}
|
|
|
|
|
|
.div-jyly .itemData {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- align-items: center;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
}
|
|
|
|
|
|
.div-jyly .itemData li {
|
|
|
- width: 265px;
|
|
|
- height: 130px;
|
|
|
- border-radius: 10px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- font-size: 18px;
|
|
|
- color: #333333;
|
|
|
+ width: 265px;
|
|
|
+ height: 130px;
|
|
|
+ border-radius: 10px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 18px;
|
|
|
+ color: #333333;
|
|
|
}
|
|
|
|
|
|
.div-jyly .itemData li .right .bottom {
|
|
|
- display: flex;
|
|
|
- align-items: flex-end;
|
|
|
- margin-top: 16px;
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-end;
|
|
|
+ margin-top: 16px;
|
|
|
}
|
|
|
|
|
|
.div-jyly .itemData li .right .bottom .number {
|
|
|
- font-size: 34px;
|
|
|
- font-weight: bold;
|
|
|
- font-style: italic;
|
|
|
- color: #004A93;
|
|
|
+ font-size: 34px;
|
|
|
+ font-weight: bold;
|
|
|
+ font-style: italic;
|
|
|
+ color: #004a93;
|
|
|
}
|
|
|
|
|
|
.div-jyly .itemData li .right .bottom .unit {
|
|
|
- color: #999999;
|
|
|
- margin-left: 10px;
|
|
|
+ color: #999999;
|
|
|
+ margin-left: 10px;
|
|
|
}
|
|
|
|
|
|
.div-jyly .jylyTable .titleList,
|
|
|
.div-jyly .jylyTable .number {
|
|
|
- display: flex;
|
|
|
- font-size: 16px;
|
|
|
- font-family: Microsoft YaHei;
|
|
|
- color: #FFFFFF;
|
|
|
- margin: auto 10px;
|
|
|
+ display: flex;
|
|
|
+ font-size: 16px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ color: #ffffff;
|
|
|
+ margin: auto 10px;
|
|
|
}
|
|
|
|
|
|
.div-jyly .jylyTable .titleList li,
|
|
|
.div-jyly .jylyTable .number li {
|
|
|
- width: 500px;
|
|
|
- height: 60px;
|
|
|
- background: #7293B9;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- border-right: 1px solid #fff;
|
|
|
+ width: 500px;
|
|
|
+ height: 60px;
|
|
|
+ background: #7293b9;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ border-right: 1px solid #fff;
|
|
|
}
|
|
|
|
|
|
.div-jyly .jylyTable .number li {
|
|
|
- background: #fff;
|
|
|
- color: #333;
|
|
|
- border: 1px solid #7293B9;
|
|
|
- border-right: none;
|
|
|
+ background: #fff;
|
|
|
+ color: #333;
|
|
|
+ border: 1px solid #7293b9;
|
|
|
+ border-right: none;
|
|
|
}
|
|
|
|
|
|
.div-jyly .jylyTable .number li:last-child,
|
|
|
.div-jyly .jylyTable .titleList li:last-child {
|
|
|
- border-right: 1px solid #7293B9;
|
|
|
-}
|
|
|
+ border-right: 1px solid #7293b9;
|
|
|
+}
|