| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- //基本样式
- //面包屑导航与搜索框
- .breadcrumb {
- width: 1200px;
- margin: 0 auto;
- height: 52px;
- margin-bottom: 30px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 20px;
- color: #666666;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- border-bottom: 1px solid #D9D9D9;
- :deep(.el-breadcrumb) {
- display: inline-block;
- vertical-align: -4px;
- }
- :deep(.el-breadcrumb__inner a),
- :deep(.el-breadcrumb__inner.is-link) {
- color: #666666;
- font-weight: 400;
- text-decoration: none;
- transition: var(--el-transition-color);
- }
- span {
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 20px;
- color: #666666;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- span:hover {
- color: #666666;
- }
- .location {
- margin-right: 20px;
- width: 100px;
- height: 22px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 20px;
- color: #666666;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- .empty {
- div {
- display: flex;
- justify-content: center;
- align-items: center;
- padding-top: 200px;
- }
- width: 100%;
- height: 600px;
- font-size: 26px;
- color: #CCCCCC;
- img {
- display: inline-block;
- }
- }
- .searchBox {
- text-align: center;
- padding-bottom: 40px;
- }
- .search {
- width: 100%;
- height: 100px;
- // background-color: #f5f5f5;
- .inner {
- width: 1200px;
- padding-top: 10px;
- display: flex;
- justify-content: center;
- align-items: center;
- input {
- width: 582px;
- height: 46px;
- outline: none;
- border: 1px solid #E6E6E6;
- border-radius: 0;
- padding-left: 20px;
- vertical-align: 0px;
- font-size: 16px;
- color: #666666
- }
- button {
- width: 120px;
- height: 48px;
- color: #fff;
- border: none;
- border-radius: 0;
- cursor: pointer;
- }
- }
- }
- //搜索框样式
- //皮肤样式1
- .searchStyle1 {
- background-color: #1C5468;
- }
- //皮肤样式2
- .searchStyle2 {
- background-color: #A91B33;
- }
- //分页与列表基本样式
- .newsList {
- width: 1200px;
- margin: 0 auto;
- margin-bottom: 40px;
- .inner {
- width: 1200px;
- .innerLeft {
- width: 100%;
- clear: both;
- float: none;
- >.pagination {
- width: 100%;
- height: 34px;
- margin-left: 141px;
- display: flex;
- justify-content: center;
- margin: 0;
- margin-top: 40px;
- .el-pagination.is-background::v-deep .btn-next,
- .el-pagination.is-background::v-deep .btn-prev {
- width: 70px;
- height: 34px;
- margin: 0px 10px;
- border-radius: 4px;
- }
- .el-pagination.is-background::v-deep .el-pager li {
- margin: 0px 10px;
- width: 38px;
- height: 34px;
- border-radius: 4px;
- }
- .el-pagination.is-background::v-deep .btn-next.is-active,
- .el-pagination.is-background::v-deep .btn-prev.is-active,
- .el-pagination.is-background::v-deep .el-pager li.is-active {
- color: #fff;
- }
- }
- }
- }
- }
- //分页样式1
- .newsListStyle1 {
- .inner {
- .innerLeft {
- >.pagination {
- .el-pagination::v-deep :hover {
- color: #1C5468;
- }
- .el-pagination.is-background::v-deep .btn-next.is-active,
- .el-pagination.is-background::v-deep .btn-prev.is-active,
- .el-pagination.is-background::v-deep .el-pager li.is-active {
- background-color: #1C5468;
- }
- }
- }
- }
- }
- //分页样式2
- .newsListStyle2 {
- .inner {
- .innerLeft {
- >.pagination {
- .el-pagination::v-deep :hover {
- color: #A91B33;
- }
- .el-pagination.is-background::v-deep .btn-next.is-active,
- .el-pagination.is-background::v-deep .btn-prev.is-active,
- .el-pagination.is-background::v-deep .el-pager li.is-active {
- background-color: #A91B33;
- }
- }
- }
- }
- }
|